blob: dc8f9720d5cde91562f5f791428259132e235714 [file] [log] [blame]
Oliver Hartkoppfba76a52019-07-23 15:17:55 +02001// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +02002/* af_can.c - Protocol family CAN core module
Oliver Hartkopp0d665482007-11-16 15:52:17 -08003 * (used by different CAN protocol modules)
4 *
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +02005 * Copyright (c) 2002-2017 Volkswagen Group Electronic Research
Oliver Hartkopp0d665482007-11-16 15:52:17 -08006 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of Volkswagen nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * Alternatively, provided that this notice is retained in full, this
21 * software may be distributed under the terms of the GNU General
22 * Public License ("GPL") version 2, in which case the provisions of the
23 * GPL apply INSTEAD OF those given above.
24 *
25 * The provided data structures and external interfaces from this code
26 * are not restricted to be used by modules with a GPL compatible license.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
39 * DAMAGE.
40 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -080041 */
42
43#include <linux/module.h>
Oliver Hartkopp7c941632012-06-13 20:04:33 +020044#include <linux/stddef.h>
Oliver Hartkopp0d665482007-11-16 15:52:17 -080045#include <linux/init.h>
46#include <linux/kmod.h>
47#include <linux/slab.h>
48#include <linux/list.h>
49#include <linux/spinlock.h>
50#include <linux/rcupdate.h>
51#include <linux/uaccess.h>
52#include <linux/net.h>
53#include <linux/netdevice.h>
54#include <linux/socket.h>
55#include <linux/if_ether.h>
56#include <linux/if_arp.h>
57#include <linux/skbuff.h>
58#include <linux/can.h>
59#include <linux/can/core.h>
Oliver Hartkopp0ae89be2014-01-30 10:11:28 +010060#include <linux/can/skb.h>
Manuel Zerpiesd751e622011-06-16 02:08:01 +000061#include <linux/ratelimit.h>
Oliver Hartkopp0d665482007-11-16 15:52:17 -080062#include <net/net_namespace.h>
63#include <net/sock.h>
64
65#include "af_can.h"
66
Oliver Hartkopp0d665482007-11-16 15:52:17 -080067MODULE_DESCRIPTION("Controller Area Network PF_CAN core");
68MODULE_LICENSE("Dual BSD/GPL");
69MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>, "
70 "Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
71
72MODULE_ALIAS_NETPROTO(PF_CAN);
73
74static int stats_timer __read_mostly = 1;
Joe Perchesd6444062018-03-23 15:54:38 -070075module_param(stats_timer, int, 0444);
Oliver Hartkopp0d665482007-11-16 15:52:17 -080076MODULE_PARM_DESC(stats_timer, "enable timer for statistics (default:on)");
77
Oliver Hartkopp0d665482007-11-16 15:52:17 -080078static struct kmem_cache *rcv_cache __read_mostly;
79
80/* table of registered CAN protocols */
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +020081static const struct can_proto __rcu *proto_tab[CAN_NPROTO] __read_mostly;
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +000082static DEFINE_MUTEX(proto_tab_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -080083
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +020084static atomic_t skbcounter = ATOMIC_INIT(0);
85
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +020086/* af_can socket functions */
Oliver Hartkopp0d665482007-11-16 15:52:17 -080087
Oliver Hartkopp0d665482007-11-16 15:52:17 -080088static void can_sock_destruct(struct sock *sk)
89{
90 skb_queue_purge(&sk->sk_receive_queue);
Willem de Bruijnfd704bd2019-06-07 16:46:07 -040091 skb_queue_purge(&sk->sk_error_queue);
Oliver Hartkopp0d665482007-11-16 15:52:17 -080092}
93
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +000094static const struct can_proto *can_get_proto(int protocol)
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +000095{
Kurt Van Dijck16506292011-05-03 18:40:57 +000096 const struct can_proto *cp;
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +000097
98 rcu_read_lock();
99 cp = rcu_dereference(proto_tab[protocol]);
100 if (cp && !try_module_get(cp->prot->owner))
101 cp = NULL;
102 rcu_read_unlock();
103
104 return cp;
105}
106
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000107static inline void can_put_proto(const struct can_proto *cp)
108{
109 module_put(cp->prot->owner);
110}
111
Eric Paris3f378b62009-11-05 22:18:14 -0800112static int can_create(struct net *net, struct socket *sock, int protocol,
113 int kern)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800114{
115 struct sock *sk;
Kurt Van Dijck16506292011-05-03 18:40:57 +0000116 const struct can_proto *cp;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800117 int err = 0;
118
119 sock->state = SS_UNCONNECTED;
120
121 if (protocol < 0 || protocol >= CAN_NPROTO)
122 return -EINVAL;
123
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000124 cp = can_get_proto(protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000125
Johannes Berg95a5afc2008-10-16 15:24:51 -0700126#ifdef CONFIG_MODULES
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000127 if (!cp) {
128 /* try to load protocol module if kernel is modular */
129
Urs Thuermann5423dd62008-02-07 18:04:21 -0800130 err = request_module("can-proto-%d", protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800131
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200132 /* In case of error we only print a message but don't
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800133 * return the error code immediately. Below we will
134 * return -EPROTONOSUPPORT
135 */
Manuel Zerpiesd751e622011-06-16 02:08:01 +0000136 if (err)
137 printk_ratelimited(KERN_ERR "can: request_module "
Urs Thuermann5423dd62008-02-07 18:04:21 -0800138 "(can-proto-%d) failed.\n", protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000139
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000140 cp = can_get_proto(protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800141 }
Urs Thuermann5423dd62008-02-07 18:04:21 -0800142#endif
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800143
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800144 /* check for available protocol and correct usage */
145
146 if (!cp)
147 return -EPROTONOSUPPORT;
148
149 if (cp->type != sock->type) {
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000150 err = -EPROTOTYPE;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800151 goto errout;
152 }
153
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800154 sock->ops = cp->ops;
155
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500156 sk = sk_alloc(net, PF_CAN, GFP_KERNEL, cp->prot, kern);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800157 if (!sk) {
158 err = -ENOMEM;
159 goto errout;
160 }
161
162 sock_init_data(sock, sk);
163 sk->sk_destruct = can_sock_destruct;
164
165 if (sk->sk_prot->init)
166 err = sk->sk_prot->init(sk);
167
168 if (err) {
169 /* release sk on errors */
170 sock_orphan(sk);
171 sock_put(sk);
172 }
173
174 errout:
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000175 can_put_proto(cp);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800176 return err;
177}
178
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200179/* af_can tx path */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800180
181/**
182 * can_send - transmit a CAN frame (optional with local loopback)
183 * @skb: pointer to socket buffer with CAN frame in data section
184 * @loop: loopback for listeners on local CAN sockets (recommended default!)
185 *
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700186 * Due to the loopback this routine must not be called from hardirq context.
187 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800188 * Return:
189 * 0 on success
190 * -ENETDOWN when the selected interface is down
191 * -ENOBUFS on full driver queue (see net_xmit_errno())
192 * -ENOMEM when local loopback failed at calling skb_clone()
193 * -EPERM when trying to send on a non-CAN interface
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200194 * -EMSGSIZE CAN frame size is bigger than CAN interface MTU
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700195 * -EINVAL when the skb->data does not contain a valid CAN frame
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800196 */
197int can_send(struct sk_buff *skb, int loop)
198{
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700199 struct sk_buff *newskb = NULL;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200200 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200201 struct s_stats *can_stats = dev_net(skb->dev)->can.can_stats;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200202 int err = -EINVAL;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800203
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200204 if (skb->len == CAN_MTU) {
205 skb->protocol = htons(ETH_P_CAN);
206 if (unlikely(cfd->len > CAN_MAX_DLEN))
207 goto inval_skb;
208 } else if (skb->len == CANFD_MTU) {
209 skb->protocol = htons(ETH_P_CANFD);
210 if (unlikely(cfd->len > CANFD_MAX_DLEN))
211 goto inval_skb;
212 } else
213 goto inval_skb;
214
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200215 /* Make sure the CAN frame can pass the selected CAN netdevice.
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200216 * As structs can_frame and canfd_frame are similar, we can provide
217 * CAN FD frames to legacy CAN drivers as long as the length is <= 8
218 */
219 if (unlikely(skb->len > skb->dev->mtu && cfd->len > CAN_MAX_DLEN)) {
220 err = -EMSGSIZE;
221 goto inval_skb;
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700222 }
223
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200224 if (unlikely(skb->dev->type != ARPHRD_CAN)) {
225 err = -EPERM;
226 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800227 }
228
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200229 if (unlikely(!(skb->dev->flags & IFF_UP))) {
230 err = -ENETDOWN;
231 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800232 }
233
Oliver Hartkopp9694390162015-02-23 20:37:54 +0100234 skb->ip_summed = CHECKSUM_UNNECESSARY;
235
236 skb_reset_mac_header(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800237 skb_reset_network_header(skb);
238 skb_reset_transport_header(skb);
239
240 if (loop) {
241 /* local loopback of sent CAN frames */
242
243 /* indication for the CAN driver: do loopback */
244 skb->pkt_type = PACKET_LOOPBACK;
245
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200246 /* The reference to the originating sock may be required
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800247 * by the receiving socket to check whether the frame is
248 * its own. Example: can_raw sockopt CAN_RAW_RECV_OWN_MSGS
249 * Therefore we have to ensure that skb->sk remains the
250 * reference to the originating sock by restoring skb->sk
251 * after each skb_clone() or skb_orphan() usage.
252 */
253
254 if (!(skb->dev->flags & IFF_ECHO)) {
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200255 /* If the interface is not capable to do loopback
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800256 * itself, we do it here.
257 */
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700258 newskb = skb_clone(skb, GFP_ATOMIC);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800259 if (!newskb) {
260 kfree_skb(skb);
261 return -ENOMEM;
262 }
263
Oliver Hartkopp0ae89be2014-01-30 10:11:28 +0100264 can_skb_set_owner(newskb, skb->sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800265 newskb->ip_summed = CHECKSUM_UNNECESSARY;
266 newskb->pkt_type = PACKET_BROADCAST;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800267 }
268 } else {
269 /* indication for the CAN driver: no loopback required */
270 skb->pkt_type = PACKET_HOST;
271 }
272
273 /* send to netdevice */
274 err = dev_queue_xmit(skb);
275 if (err > 0)
276 err = net_xmit_errno(err);
277
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700278 if (err) {
Wei Yongjunce030ed2009-02-25 00:35:44 +0000279 kfree_skb(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700280 return err;
281 }
282
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200283 if (newskb)
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700284 netif_rx_ni(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700285
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800286 /* update statistics */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200287 can_stats->tx_frames++;
288 can_stats->tx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800289
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700290 return 0;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200291
292inval_skb:
293 kfree_skb(skb);
294 return err;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800295}
296EXPORT_SYMBOL(can_send);
297
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200298/* af_can rx path */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800299
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200300static struct can_dev_rcv_lists *find_dev_rcv_lists(struct net *net,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100301 struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800302{
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000303 if (!dev)
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100304 return net->can.can_rx_alldev_list;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000305 else
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200306 return (struct can_dev_rcv_lists *)dev->ml_priv;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800307}
308
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800309/**
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200310 * effhash - hash function for 29 bit CAN identifier reduction
311 * @can_id: 29 bit CAN identifier
312 *
313 * Description:
314 * To reduce the linear traversal in one linked list of _single_ EFF CAN
315 * frame subscriptions the 29 bit identifier is mapped to 10 bits.
316 * (see CAN_EFF_RCV_HASH_BITS definition)
317 *
318 * Return:
319 * Hash value from 0x000 - 0x3FF ( enforced by CAN_EFF_RCV_HASH_BITS mask )
320 */
321static unsigned int effhash(canid_t can_id)
322{
323 unsigned int hash;
324
325 hash = can_id;
326 hash ^= can_id >> CAN_EFF_RCV_HASH_BITS;
327 hash ^= can_id >> (2 * CAN_EFF_RCV_HASH_BITS);
328
329 return hash & ((1 << CAN_EFF_RCV_HASH_BITS) - 1);
330}
331
332/**
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800333 * find_rcv_list - determine optimal filterlist inside device filter struct
334 * @can_id: pointer to CAN identifier of a given can_filter
335 * @mask: pointer to CAN mask of a given can_filter
336 * @d: pointer to the device filter struct
337 *
338 * Description:
339 * Returns the optimal filterlist to reduce the filter handling in the
340 * receive path. This function is called by service functions that need
341 * to register or unregister a can_filter in the filter lists.
342 *
343 * A filter matches in general, when
344 *
345 * <received_can_id> & mask == can_id & mask
346 *
347 * so every bit set in the mask (even CAN_EFF_FLAG, CAN_RTR_FLAG) describe
348 * relevant bits for the filter.
349 *
350 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200351 * filter for error messages (CAN_ERR_FLAG bit set in mask). For error msg
352 * frames there is a special filterlist and a special rx path filter handling.
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800353 *
354 * Return:
355 * Pointer to optimal filterlist for the given can_id/mask pair.
356 * Constistency checked mask.
357 * Reduced can_id to have a preprocessed filter compare value.
358 */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800359static struct hlist_head *find_rcv_list(canid_t *can_id, canid_t *mask,
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200360 struct can_dev_rcv_lists *d)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800361{
362 canid_t inv = *can_id & CAN_INV_FILTER; /* save flag before masking */
363
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200364 /* filter for error message frames in extra filterlist */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800365 if (*mask & CAN_ERR_FLAG) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800366 /* clear CAN_ERR_FLAG in filter entry */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800367 *mask &= CAN_ERR_MASK;
368 return &d->rx[RX_ERR];
369 }
370
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800371 /* with cleared CAN_ERR_FLAG we have a simple mask/value filterpair */
372
373#define CAN_EFF_RTR_FLAGS (CAN_EFF_FLAG | CAN_RTR_FLAG)
374
375 /* ensure valid values in can_mask for 'SFF only' frame filtering */
376 if ((*mask & CAN_EFF_FLAG) && !(*can_id & CAN_EFF_FLAG))
377 *mask &= (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800378
379 /* reduce condition testing at receive time */
380 *can_id &= *mask;
381
382 /* inverse can_id/can_mask filter */
383 if (inv)
384 return &d->rx[RX_INV];
385
386 /* mask == 0 => no condition testing at receive time */
387 if (!(*mask))
388 return &d->rx[RX_ALL];
389
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800390 /* extra filterlists for the subscription of a single non-RTR can_id */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800391 if (((*mask & CAN_EFF_RTR_FLAGS) == CAN_EFF_RTR_FLAGS) &&
392 !(*can_id & CAN_RTR_FLAG)) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800393
394 if (*can_id & CAN_EFF_FLAG) {
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200395 if (*mask == (CAN_EFF_MASK | CAN_EFF_RTR_FLAGS))
396 return &d->rx_eff[effhash(*can_id)];
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800397 } else {
398 if (*mask == (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS))
399 return &d->rx_sff[*can_id];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800400 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800401 }
402
403 /* default: filter via can_id/can_mask */
404 return &d->rx[RX_FIL];
405}
406
407/**
408 * can_rx_register - subscribe CAN frames from a specific interface
409 * @dev: pointer to netdevice (NULL => subcribe from 'all' CAN devices list)
410 * @can_id: CAN identifier (see description)
411 * @mask: CAN mask (see description)
412 * @func: callback function on filter match
413 * @data: returned parameter for callback function
Maxime Jayat3f794102013-10-12 01:29:46 +0200414 * @ident: string for calling module identification
Eric Dumazetf1712c72017-01-27 08:11:44 -0800415 * @sk: socket pointer (might be NULL)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800416 *
417 * Description:
418 * Invokes the callback function with the received sk_buff and the given
419 * parameter 'data' on a matching receive filter. A filter matches, when
420 *
421 * <received_can_id> & mask == can_id & mask
422 *
423 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200424 * filter for error message frames (CAN_ERR_FLAG bit set in mask).
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800425 *
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800426 * The provided pointer to the sk_buff is guaranteed to be valid as long as
427 * the callback function is running. The callback function must *not* free
428 * the given sk_buff while processing it's task. When the given sk_buff is
429 * needed after the end of the callback function it must be cloned inside
430 * the callback function with skb_clone().
431 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800432 * Return:
433 * 0 on success
434 * -ENOMEM on missing cache mem to create subscription entry
435 * -ENODEV unknown device
436 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100437int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id,
438 canid_t mask, void (*func)(struct sk_buff *, void *),
439 void *data, char *ident, struct sock *sk)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800440{
441 struct receiver *r;
442 struct hlist_head *rl;
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200443 struct can_dev_rcv_lists *d;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200444 struct s_pstats *can_pstats = net->can.can_pstats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800445 int err = 0;
446
447 /* insert new receiver (dev,canid,mask) -> (func,data) */
448
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800449 if (dev && dev->type != ARPHRD_CAN)
450 return -ENODEV;
451
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100452 if (dev && !net_eq(net, dev_net(dev)))
453 return -ENODEV;
454
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800455 r = kmem_cache_alloc(rcv_cache, GFP_KERNEL);
456 if (!r)
457 return -ENOMEM;
458
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100459 spin_lock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800460
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100461 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800462 if (d) {
463 rl = find_rcv_list(&can_id, &mask, d);
464
465 r->can_id = can_id;
466 r->mask = mask;
467 r->matches = 0;
468 r->func = func;
469 r->data = data;
470 r->ident = ident;
Eric Dumazetf1712c72017-01-27 08:11:44 -0800471 r->sk = sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800472
473 hlist_add_head_rcu(&r->list, rl);
474 d->entries++;
475
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200476 can_pstats->rcv_entries++;
477 if (can_pstats->rcv_entries_max < can_pstats->rcv_entries)
478 can_pstats->rcv_entries_max = can_pstats->rcv_entries;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800479 } else {
480 kmem_cache_free(rcv_cache, r);
481 err = -ENODEV;
482 }
483
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100484 spin_unlock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800485
486 return err;
487}
488EXPORT_SYMBOL(can_rx_register);
489
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200490/* can_rx_delete_receiver - rcu callback for single receiver entry removal */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800491static void can_rx_delete_receiver(struct rcu_head *rp)
492{
493 struct receiver *r = container_of(rp, struct receiver, rcu);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800494 struct sock *sk = r->sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800495
496 kmem_cache_free(rcv_cache, r);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800497 if (sk)
498 sock_put(sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800499}
500
501/**
502 * can_rx_unregister - unsubscribe CAN frames from a specific interface
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800503 * @dev: pointer to netdevice (NULL => unsubscribe from 'all' CAN devices list)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800504 * @can_id: CAN identifier
505 * @mask: CAN mask
506 * @func: callback function on filter match
507 * @data: returned parameter for callback function
508 *
509 * Description:
510 * Removes subscription entry depending on given (subscription) values.
511 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100512void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id,
513 canid_t mask, void (*func)(struct sk_buff *, void *),
514 void *data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800515{
516 struct receiver *r = NULL;
517 struct hlist_head *rl;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200518 struct s_pstats *can_pstats = net->can.can_pstats;
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200519 struct can_dev_rcv_lists *d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800520
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800521 if (dev && dev->type != ARPHRD_CAN)
522 return;
523
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100524 if (dev && !net_eq(net, dev_net(dev)))
525 return;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800526
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100527 spin_lock(&net->can.can_rcvlists_lock);
528
529 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800530 if (!d) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000531 pr_err("BUG: receive list not found for "
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800532 "dev %s, id %03X, mask %03X\n",
533 DNAME(dev), can_id, mask);
534 goto out;
535 }
536
537 rl = find_rcv_list(&can_id, &mask, d);
538
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200539 /* Search the receiver list for the item to delete. This should
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800540 * exist, since no receiver may be unregistered that hasn't
541 * been registered before.
542 */
543
Sasha Levinb67bfe02013-02-27 17:06:00 -0800544 hlist_for_each_entry_rcu(r, rl, list) {
Joe Perchesf64f9e72009-11-29 16:55:45 -0800545 if (r->can_id == can_id && r->mask == mask &&
546 r->func == func && r->data == data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800547 break;
548 }
549
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200550 /* Check for bugs in CAN protocol implementations using af_can.c:
Oliver Hartkoppc9bbb752013-03-18 07:52:06 +0000551 * 'r' will be NULL if no matching list item was found for removal.
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800552 */
553
Sasha Levinb67bfe02013-02-27 17:06:00 -0800554 if (!r) {
Oliver Hartkoppc9bbb752013-03-18 07:52:06 +0000555 WARN(1, "BUG: receive list entry not found for dev %s, "
556 "id %03X, mask %03X\n", DNAME(dev), can_id, mask);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800557 goto out;
558 }
559
560 hlist_del_rcu(&r->list);
561 d->entries--;
562
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200563 if (can_pstats->rcv_entries > 0)
564 can_pstats->rcv_entries--;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800565
566 /* remove device structure requested by NETDEV_UNREGISTER */
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000567 if (d->remove_on_zero_entries && !d->entries) {
568 kfree(d);
569 dev->ml_priv = NULL;
570 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800571
572 out:
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100573 spin_unlock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800574
575 /* schedule the receiver item for deletion */
Eric Dumazetf1712c72017-01-27 08:11:44 -0800576 if (r) {
577 if (r->sk)
578 sock_hold(r->sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800579 call_rcu(&r->rcu, can_rx_delete_receiver);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800580 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800581}
582EXPORT_SYMBOL(can_rx_unregister);
583
584static inline void deliver(struct sk_buff *skb, struct receiver *r)
585{
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800586 r->func(skb, r->data);
587 r->matches++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800588}
589
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200590static int can_rcv_filter(struct can_dev_rcv_lists *d, struct sk_buff *skb)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800591{
592 struct receiver *r;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800593 int matches = 0;
594 struct can_frame *cf = (struct can_frame *)skb->data;
595 canid_t can_id = cf->can_id;
596
597 if (d->entries == 0)
598 return 0;
599
600 if (can_id & CAN_ERR_FLAG) {
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200601 /* check for error message frame entries only */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800602 hlist_for_each_entry_rcu(r, &d->rx[RX_ERR], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800603 if (can_id & r->mask) {
604 deliver(skb, r);
605 matches++;
606 }
607 }
608 return matches;
609 }
610
611 /* check for unfiltered entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800612 hlist_for_each_entry_rcu(r, &d->rx[RX_ALL], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800613 deliver(skb, r);
614 matches++;
615 }
616
617 /* check for can_id/mask entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800618 hlist_for_each_entry_rcu(r, &d->rx[RX_FIL], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800619 if ((can_id & r->mask) == r->can_id) {
620 deliver(skb, r);
621 matches++;
622 }
623 }
624
625 /* check for inverted can_id/mask entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800626 hlist_for_each_entry_rcu(r, &d->rx[RX_INV], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800627 if ((can_id & r->mask) != r->can_id) {
628 deliver(skb, r);
629 matches++;
630 }
631 }
632
Oliver Hartkoppf706644d2008-12-04 15:01:08 -0800633 /* check filterlists for single non-RTR can_ids */
634 if (can_id & CAN_RTR_FLAG)
635 return matches;
636
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800637 if (can_id & CAN_EFF_FLAG) {
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200638 hlist_for_each_entry_rcu(r, &d->rx_eff[effhash(can_id)], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800639 if (r->can_id == can_id) {
640 deliver(skb, r);
641 matches++;
642 }
643 }
644 } else {
645 can_id &= CAN_SFF_MASK;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800646 hlist_for_each_entry_rcu(r, &d->rx_sff[can_id], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800647 deliver(skb, r);
648 matches++;
649 }
650 }
651
652 return matches;
653}
654
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200655static void can_receive(struct sk_buff *skb, struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800656{
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200657 struct can_dev_rcv_lists *d;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200658 struct net *net = dev_net(dev);
659 struct s_stats *can_stats = net->can.can_stats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800660 int matches;
661
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800662 /* update statistics */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200663 can_stats->rx_frames++;
664 can_stats->rx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800665
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200666 /* create non-zero unique skb identifier together with *skb */
667 while (!(can_skb_prv(skb)->skbcnt))
668 can_skb_prv(skb)->skbcnt = atomic_inc_return(&skbcounter);
669
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800670 rcu_read_lock();
671
672 /* deliver the packet to sockets listening on all devices */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200673 matches = can_rcv_filter(net->can.can_rx_alldev_list, skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800674
675 /* find receive list for this device */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200676 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800677 if (d)
678 matches += can_rcv_filter(d, skb);
679
680 rcu_read_unlock();
681
Oliver Hartkopp62bcaa12009-04-17 01:38:46 -0700682 /* consume the skbuff allocated by the netdevice driver */
683 consume_skb(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800684
685 if (matches > 0) {
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200686 can_stats->matches++;
687 can_stats->matches_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800688 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200689}
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800690
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200691static int can_rcv(struct sk_buff *skb, struct net_device *dev,
692 struct packet_type *pt, struct net_device *orig_dev)
693{
694 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
695
Marc Kleine-Budde8cb68752018-01-16 19:30:14 +0100696 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CAN_MTU ||
697 cfd->len > CAN_MAX_DLEN)) {
698 pr_warn_once("PF_CAN: dropped non conform CAN skbuf: dev type %d, len %d, datalen %d\n",
699 dev->type, skb->len, cfd->len);
700 kfree_skb(skb);
701 return NET_RX_DROP;
702 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200703
704 can_receive(skb, dev);
705 return NET_RX_SUCCESS;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200706}
707
708static int canfd_rcv(struct sk_buff *skb, struct net_device *dev,
709 struct packet_type *pt, struct net_device *orig_dev)
710{
711 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
712
Marc Kleine-Budded4689842018-01-16 19:30:14 +0100713 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CANFD_MTU ||
714 cfd->len > CANFD_MAX_DLEN)) {
715 pr_warn_once("PF_CAN: dropped non conform CAN FD skbuf: dev type %d, len %d, datalen %d\n",
716 dev->type, skb->len, cfd->len);
717 kfree_skb(skb);
718 return NET_RX_DROP;
719 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200720
721 can_receive(skb, dev);
Oliver Hartkopp6ca8b992009-08-29 06:45:09 +0000722 return NET_RX_SUCCESS;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800723}
724
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200725/* af_can protocol functions */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800726
727/**
728 * can_proto_register - register CAN transport protocol
729 * @cp: pointer to CAN protocol structure
730 *
731 * Return:
732 * 0 on success
733 * -EINVAL invalid (out of range) protocol number
734 * -EBUSY protocol already in use
735 * -ENOBUF if proto_register() fails
736 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000737int can_proto_register(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800738{
739 int proto = cp->protocol;
740 int err = 0;
741
742 if (proto < 0 || proto >= CAN_NPROTO) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000743 pr_err("can: protocol number %d out of range\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800744 return -EINVAL;
745 }
746
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800747 err = proto_register(cp->prot, 0);
748 if (err < 0)
749 return err;
750
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000751 mutex_lock(&proto_tab_lock);
752
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200753 if (rcu_access_pointer(proto_tab[proto])) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000754 pr_err("can: protocol %d already registered\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800755 err = -EBUSY;
Oliver Hartkopp53914b62011-03-22 08:27:25 +0000756 } else
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000757 RCU_INIT_POINTER(proto_tab[proto], cp);
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800758
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000759 mutex_unlock(&proto_tab_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800760
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800761 if (err < 0)
762 proto_unregister(cp->prot);
763
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800764 return err;
765}
766EXPORT_SYMBOL(can_proto_register);
767
768/**
769 * can_proto_unregister - unregister CAN transport protocol
770 * @cp: pointer to CAN protocol structure
771 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000772void can_proto_unregister(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800773{
774 int proto = cp->protocol;
775
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000776 mutex_lock(&proto_tab_lock);
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200777 BUG_ON(rcu_access_pointer(proto_tab[proto]) != cp);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000778 RCU_INIT_POINTER(proto_tab[proto], NULL);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000779 mutex_unlock(&proto_tab_lock);
780
781 synchronize_rcu();
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800782
783 proto_unregister(cp->prot);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800784}
785EXPORT_SYMBOL(can_proto_unregister);
786
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200787/* af_can notifier to create/remove CAN netdevice specific structs */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800788static int can_notifier(struct notifier_block *nb, unsigned long msg,
Jiri Pirko351638e2013-05-28 01:30:21 +0000789 void *ptr)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800790{
Jiri Pirko351638e2013-05-28 01:30:21 +0000791 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200792 struct can_dev_rcv_lists *d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800793
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800794 if (dev->type != ARPHRD_CAN)
795 return NOTIFY_DONE;
796
797 switch (msg) {
798
799 case NETDEV_REGISTER:
800
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000801 /* create new dev_rcv_lists for this device */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800802 d = kzalloc(sizeof(*d), GFP_KERNEL);
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000803 if (!d)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800804 return NOTIFY_DONE;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000805 BUG_ON(dev->ml_priv);
806 dev->ml_priv = d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800807
808 break;
809
810 case NETDEV_UNREGISTER:
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100811 spin_lock(&dev_net(dev)->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800812
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000813 d = dev->ml_priv;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800814 if (d) {
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000815 if (d->entries)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800816 d->remove_on_zero_entries = 1;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000817 else {
818 kfree(d);
819 dev->ml_priv = NULL;
820 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800821 } else
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000822 pr_err("can: notifier: receive list not found for dev "
823 "%s\n", dev->name);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800824
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100825 spin_unlock(&dev_net(dev)->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800826
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800827 break;
828 }
829
830 return NOTIFY_DONE;
831}
832
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100833static int can_pernet_init(struct net *net)
834{
Marc Kleine-Budde74b7b4902017-06-06 13:53:16 +0200835 spin_lock_init(&net->can.can_rcvlists_lock);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100836 net->can.can_rx_alldev_list =
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200837 kzalloc(sizeof(struct can_dev_rcv_lists), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200838 if (!net->can.can_rx_alldev_list)
839 goto out;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200840 net->can.can_stats = kzalloc(sizeof(struct s_stats), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200841 if (!net->can.can_stats)
842 goto out_free_alldev_list;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200843 net->can.can_pstats = kzalloc(sizeof(struct s_pstats), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200844 if (!net->can.can_pstats)
845 goto out_free_can_stats;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200846
847 if (IS_ENABLED(CONFIG_PROC_FS)) {
848 /* the statistics are updated every second (timer triggered) */
849 if (stats_timer) {
Kees Cook1fccb562017-10-16 17:29:06 -0700850 timer_setup(&net->can.can_stattimer, can_stat_update,
851 0);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200852 mod_timer(&net->can.can_stattimer,
853 round_jiffies(jiffies + HZ));
854 }
855 net->can.can_stats->jiffies_init = jiffies;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100856 can_init_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200857 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100858
859 return 0;
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200860
861 out_free_can_stats:
862 kfree(net->can.can_stats);
863 out_free_alldev_list:
864 kfree(net->can.can_rx_alldev_list);
865 out:
866 return -ENOMEM;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100867}
868
869static void can_pernet_exit(struct net *net)
870{
871 struct net_device *dev;
872
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200873 if (IS_ENABLED(CONFIG_PROC_FS)) {
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100874 can_remove_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200875 if (stats_timer)
876 del_timer_sync(&net->can.can_stattimer);
877 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100878
879 /* remove created dev_rcv_lists from still registered CAN devices */
880 rcu_read_lock();
881 for_each_netdev_rcu(net, dev) {
882 if (dev->type == ARPHRD_CAN && dev->ml_priv) {
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200883 struct can_dev_rcv_lists *d = dev->ml_priv;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100884
885 BUG_ON(d->entries);
886 kfree(d);
887 dev->ml_priv = NULL;
888 }
889 }
890 rcu_read_unlock();
Oliver Hartkoppa7bbd282017-04-25 08:19:38 +0200891
892 kfree(net->can.can_rx_alldev_list);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200893 kfree(net->can.can_stats);
894 kfree(net->can.can_pstats);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100895}
896
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200897/* af_can module init/exit functions */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800898
899static struct packet_type can_packet __read_mostly = {
Harvey Harrison09640e632009-02-01 00:45:17 -0800900 .type = cpu_to_be16(ETH_P_CAN),
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800901 .func = can_rcv,
902};
903
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200904static struct packet_type canfd_packet __read_mostly = {
905 .type = cpu_to_be16(ETH_P_CANFD),
906 .func = canfd_rcv,
907};
908
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000909static const struct net_proto_family can_family_ops = {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800910 .family = PF_CAN,
911 .create = can_create,
912 .owner = THIS_MODULE,
913};
914
915/* notifier block for netdevice event */
916static struct notifier_block can_netdev_notifier __read_mostly = {
917 .notifier_call = can_notifier,
918};
919
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100920static struct pernet_operations can_pernet_ops __read_mostly = {
921 .init = can_pernet_init,
922 .exit = can_pernet_exit,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100923};
924
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800925static __init int can_init(void)
926{
YueHaibingc5a3aed2019-05-16 22:36:26 +0800927 int err;
928
Oliver Hartkopp7c941632012-06-13 20:04:33 +0200929 /* check for correct padding to be able to use the structs similarly */
930 BUILD_BUG_ON(offsetof(struct can_frame, can_dlc) !=
931 offsetof(struct canfd_frame, len) ||
932 offsetof(struct can_frame, data) !=
933 offsetof(struct canfd_frame, data));
934
Jeremiah Mahlerb111b782014-11-21 23:42:35 -0800935 pr_info("can: controller area network core (" CAN_VERSION_STRING ")\n");
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800936
937 rcv_cache = kmem_cache_create("can_receiver", sizeof(struct receiver),
938 0, 0, NULL);
939 if (!rcv_cache)
940 return -ENOMEM;
941
YueHaibingc5a3aed2019-05-16 22:36:26 +0800942 err = register_pernet_subsys(&can_pernet_ops);
943 if (err)
944 goto out_pernet;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100945
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800946 /* protocol register */
YueHaibingc5a3aed2019-05-16 22:36:26 +0800947 err = sock_register(&can_family_ops);
948 if (err)
949 goto out_sock;
950 err = register_netdevice_notifier(&can_netdev_notifier);
951 if (err)
952 goto out_notifier;
953
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800954 dev_add_pack(&can_packet);
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200955 dev_add_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800956
957 return 0;
YueHaibingc5a3aed2019-05-16 22:36:26 +0800958
959out_notifier:
960 sock_unregister(PF_CAN);
961out_sock:
962 unregister_pernet_subsys(&can_pernet_ops);
963out_pernet:
964 kmem_cache_destroy(rcv_cache);
965
966 return err;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800967}
968
969static __exit void can_exit(void)
970{
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800971 /* protocol unregister */
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200972 dev_remove_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800973 dev_remove_pack(&can_packet);
974 unregister_netdevice_notifier(&can_netdev_notifier);
975 sock_unregister(PF_CAN);
976
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100977 unregister_pernet_subsys(&can_pernet_ops);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800978
Jesper Dangaard Brouer382bfee2009-06-08 03:11:38 +0000979 rcu_barrier(); /* Wait for completion of call_rcu()'s */
980
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800981 kmem_cache_destroy(rcv_cache);
982}
983
984module_init(can_init);
985module_exit(can_exit);