blob: 80281ef2ccbd227fcdb6a2f482c70c35dd1c1def [file] [log] [blame]
Oliver Hartkopp0d665482007-11-16 15:52:17 -08001/*
2 * af_can.c - Protocol family CAN core module
3 * (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
Oliver Hartkopp0d665482007-11-16 15:52:17 -080086/*
87 * af_can socket functions
88 */
89
Oliver Hartkopp53914b62011-03-22 08:27:25 +000090int can_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
Oliver Hartkopp0d665482007-11-16 15:52:17 -080091{
Oliver Hartkopp0d665482007-11-16 15:52:17 -080092 switch (cmd) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -080093 default:
94 return -ENOIOCTLCMD;
95 }
96}
Oliver Hartkopp53914b62011-03-22 08:27:25 +000097EXPORT_SYMBOL(can_ioctl);
Oliver Hartkopp0d665482007-11-16 15:52:17 -080098
99static void can_sock_destruct(struct sock *sk)
100{
101 skb_queue_purge(&sk->sk_receive_queue);
Willem de Bruijnfd704bd2019-06-07 16:46:07 -0400102 skb_queue_purge(&sk->sk_error_queue);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800103}
104
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000105static const struct can_proto *can_get_proto(int protocol)
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000106{
Kurt Van Dijck16506292011-05-03 18:40:57 +0000107 const struct can_proto *cp;
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000108
109 rcu_read_lock();
110 cp = rcu_dereference(proto_tab[protocol]);
111 if (cp && !try_module_get(cp->prot->owner))
112 cp = NULL;
113 rcu_read_unlock();
114
115 return cp;
116}
117
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000118static inline void can_put_proto(const struct can_proto *cp)
119{
120 module_put(cp->prot->owner);
121}
122
Eric Paris3f378b62009-11-05 22:18:14 -0800123static int can_create(struct net *net, struct socket *sock, int protocol,
124 int kern)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800125{
126 struct sock *sk;
Kurt Van Dijck16506292011-05-03 18:40:57 +0000127 const struct can_proto *cp;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800128 int err = 0;
129
130 sock->state = SS_UNCONNECTED;
131
132 if (protocol < 0 || protocol >= CAN_NPROTO)
133 return -EINVAL;
134
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000135 cp = can_get_proto(protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000136
Johannes Berg95a5afc2008-10-16 15:24:51 -0700137#ifdef CONFIG_MODULES
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000138 if (!cp) {
139 /* try to load protocol module if kernel is modular */
140
Urs Thuermann5423dd62008-02-07 18:04:21 -0800141 err = request_module("can-proto-%d", protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800142
143 /*
144 * In case of error we only print a message but don't
145 * return the error code immediately. Below we will
146 * return -EPROTONOSUPPORT
147 */
Manuel Zerpiesd751e622011-06-16 02:08:01 +0000148 if (err)
149 printk_ratelimited(KERN_ERR "can: request_module "
Urs Thuermann5423dd62008-02-07 18:04:21 -0800150 "(can-proto-%d) failed.\n", protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000151
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000152 cp = can_get_proto(protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800153 }
Urs Thuermann5423dd62008-02-07 18:04:21 -0800154#endif
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800155
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800156 /* check for available protocol and correct usage */
157
158 if (!cp)
159 return -EPROTONOSUPPORT;
160
161 if (cp->type != sock->type) {
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000162 err = -EPROTOTYPE;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800163 goto errout;
164 }
165
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800166 sock->ops = cp->ops;
167
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500168 sk = sk_alloc(net, PF_CAN, GFP_KERNEL, cp->prot, kern);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800169 if (!sk) {
170 err = -ENOMEM;
171 goto errout;
172 }
173
174 sock_init_data(sock, sk);
175 sk->sk_destruct = can_sock_destruct;
176
177 if (sk->sk_prot->init)
178 err = sk->sk_prot->init(sk);
179
180 if (err) {
181 /* release sk on errors */
182 sock_orphan(sk);
183 sock_put(sk);
184 }
185
186 errout:
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000187 can_put_proto(cp);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800188 return err;
189}
190
191/*
192 * af_can tx path
193 */
194
195/**
196 * can_send - transmit a CAN frame (optional with local loopback)
197 * @skb: pointer to socket buffer with CAN frame in data section
198 * @loop: loopback for listeners on local CAN sockets (recommended default!)
199 *
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700200 * Due to the loopback this routine must not be called from hardirq context.
201 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800202 * Return:
203 * 0 on success
204 * -ENETDOWN when the selected interface is down
205 * -ENOBUFS on full driver queue (see net_xmit_errno())
206 * -ENOMEM when local loopback failed at calling skb_clone()
207 * -EPERM when trying to send on a non-CAN interface
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200208 * -EMSGSIZE CAN frame size is bigger than CAN interface MTU
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700209 * -EINVAL when the skb->data does not contain a valid CAN frame
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800210 */
211int can_send(struct sk_buff *skb, int loop)
212{
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700213 struct sk_buff *newskb = NULL;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200214 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200215 struct s_stats *can_stats = dev_net(skb->dev)->can.can_stats;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200216 int err = -EINVAL;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800217
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200218 if (skb->len == CAN_MTU) {
219 skb->protocol = htons(ETH_P_CAN);
220 if (unlikely(cfd->len > CAN_MAX_DLEN))
221 goto inval_skb;
222 } else if (skb->len == CANFD_MTU) {
223 skb->protocol = htons(ETH_P_CANFD);
224 if (unlikely(cfd->len > CANFD_MAX_DLEN))
225 goto inval_skb;
226 } else
227 goto inval_skb;
228
229 /*
230 * Make sure the CAN frame can pass the selected CAN netdevice.
231 * As structs can_frame and canfd_frame are similar, we can provide
232 * CAN FD frames to legacy CAN drivers as long as the length is <= 8
233 */
234 if (unlikely(skb->len > skb->dev->mtu && cfd->len > CAN_MAX_DLEN)) {
235 err = -EMSGSIZE;
236 goto inval_skb;
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700237 }
238
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200239 if (unlikely(skb->dev->type != ARPHRD_CAN)) {
240 err = -EPERM;
241 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800242 }
243
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200244 if (unlikely(!(skb->dev->flags & IFF_UP))) {
245 err = -ENETDOWN;
246 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800247 }
248
Oliver Hartkopp9694390162015-02-23 20:37:54 +0100249 skb->ip_summed = CHECKSUM_UNNECESSARY;
250
251 skb_reset_mac_header(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800252 skb_reset_network_header(skb);
253 skb_reset_transport_header(skb);
254
255 if (loop) {
256 /* local loopback of sent CAN frames */
257
258 /* indication for the CAN driver: do loopback */
259 skb->pkt_type = PACKET_LOOPBACK;
260
261 /*
262 * The reference to the originating sock may be required
263 * by the receiving socket to check whether the frame is
264 * its own. Example: can_raw sockopt CAN_RAW_RECV_OWN_MSGS
265 * Therefore we have to ensure that skb->sk remains the
266 * reference to the originating sock by restoring skb->sk
267 * after each skb_clone() or skb_orphan() usage.
268 */
269
270 if (!(skb->dev->flags & IFF_ECHO)) {
271 /*
272 * If the interface is not capable to do loopback
273 * itself, we do it here.
274 */
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700275 newskb = skb_clone(skb, GFP_ATOMIC);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800276 if (!newskb) {
277 kfree_skb(skb);
278 return -ENOMEM;
279 }
280
Oliver Hartkopp0ae89be2014-01-30 10:11:28 +0100281 can_skb_set_owner(newskb, skb->sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800282 newskb->ip_summed = CHECKSUM_UNNECESSARY;
283 newskb->pkt_type = PACKET_BROADCAST;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800284 }
285 } else {
286 /* indication for the CAN driver: no loopback required */
287 skb->pkt_type = PACKET_HOST;
288 }
289
290 /* send to netdevice */
291 err = dev_queue_xmit(skb);
292 if (err > 0)
293 err = net_xmit_errno(err);
294
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700295 if (err) {
Wei Yongjunce030ed2009-02-25 00:35:44 +0000296 kfree_skb(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700297 return err;
298 }
299
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200300 if (newskb)
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700301 netif_rx_ni(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700302
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800303 /* update statistics */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200304 can_stats->tx_frames++;
305 can_stats->tx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800306
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700307 return 0;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200308
309inval_skb:
310 kfree_skb(skb);
311 return err;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800312}
313EXPORT_SYMBOL(can_send);
314
315/*
316 * af_can rx path
317 */
318
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200319static struct can_dev_rcv_lists *find_dev_rcv_lists(struct net *net,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100320 struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800321{
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000322 if (!dev)
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100323 return net->can.can_rx_alldev_list;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000324 else
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200325 return (struct can_dev_rcv_lists *)dev->ml_priv;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800326}
327
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800328/**
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200329 * effhash - hash function for 29 bit CAN identifier reduction
330 * @can_id: 29 bit CAN identifier
331 *
332 * Description:
333 * To reduce the linear traversal in one linked list of _single_ EFF CAN
334 * frame subscriptions the 29 bit identifier is mapped to 10 bits.
335 * (see CAN_EFF_RCV_HASH_BITS definition)
336 *
337 * Return:
338 * Hash value from 0x000 - 0x3FF ( enforced by CAN_EFF_RCV_HASH_BITS mask )
339 */
340static unsigned int effhash(canid_t can_id)
341{
342 unsigned int hash;
343
344 hash = can_id;
345 hash ^= can_id >> CAN_EFF_RCV_HASH_BITS;
346 hash ^= can_id >> (2 * CAN_EFF_RCV_HASH_BITS);
347
348 return hash & ((1 << CAN_EFF_RCV_HASH_BITS) - 1);
349}
350
351/**
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800352 * find_rcv_list - determine optimal filterlist inside device filter struct
353 * @can_id: pointer to CAN identifier of a given can_filter
354 * @mask: pointer to CAN mask of a given can_filter
355 * @d: pointer to the device filter struct
356 *
357 * Description:
358 * Returns the optimal filterlist to reduce the filter handling in the
359 * receive path. This function is called by service functions that need
360 * to register or unregister a can_filter in the filter lists.
361 *
362 * A filter matches in general, when
363 *
364 * <received_can_id> & mask == can_id & mask
365 *
366 * so every bit set in the mask (even CAN_EFF_FLAG, CAN_RTR_FLAG) describe
367 * relevant bits for the filter.
368 *
369 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200370 * filter for error messages (CAN_ERR_FLAG bit set in mask). For error msg
371 * frames there is a special filterlist and a special rx path filter handling.
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800372 *
373 * Return:
374 * Pointer to optimal filterlist for the given can_id/mask pair.
375 * Constistency checked mask.
376 * Reduced can_id to have a preprocessed filter compare value.
377 */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800378static struct hlist_head *find_rcv_list(canid_t *can_id, canid_t *mask,
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200379 struct can_dev_rcv_lists *d)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800380{
381 canid_t inv = *can_id & CAN_INV_FILTER; /* save flag before masking */
382
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200383 /* filter for error message frames in extra filterlist */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800384 if (*mask & CAN_ERR_FLAG) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800385 /* clear CAN_ERR_FLAG in filter entry */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800386 *mask &= CAN_ERR_MASK;
387 return &d->rx[RX_ERR];
388 }
389
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800390 /* with cleared CAN_ERR_FLAG we have a simple mask/value filterpair */
391
392#define CAN_EFF_RTR_FLAGS (CAN_EFF_FLAG | CAN_RTR_FLAG)
393
394 /* ensure valid values in can_mask for 'SFF only' frame filtering */
395 if ((*mask & CAN_EFF_FLAG) && !(*can_id & CAN_EFF_FLAG))
396 *mask &= (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800397
398 /* reduce condition testing at receive time */
399 *can_id &= *mask;
400
401 /* inverse can_id/can_mask filter */
402 if (inv)
403 return &d->rx[RX_INV];
404
405 /* mask == 0 => no condition testing at receive time */
406 if (!(*mask))
407 return &d->rx[RX_ALL];
408
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800409 /* extra filterlists for the subscription of a single non-RTR can_id */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800410 if (((*mask & CAN_EFF_RTR_FLAGS) == CAN_EFF_RTR_FLAGS) &&
411 !(*can_id & CAN_RTR_FLAG)) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800412
413 if (*can_id & CAN_EFF_FLAG) {
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200414 if (*mask == (CAN_EFF_MASK | CAN_EFF_RTR_FLAGS))
415 return &d->rx_eff[effhash(*can_id)];
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800416 } else {
417 if (*mask == (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS))
418 return &d->rx_sff[*can_id];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800419 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800420 }
421
422 /* default: filter via can_id/can_mask */
423 return &d->rx[RX_FIL];
424}
425
426/**
427 * can_rx_register - subscribe CAN frames from a specific interface
428 * @dev: pointer to netdevice (NULL => subcribe from 'all' CAN devices list)
429 * @can_id: CAN identifier (see description)
430 * @mask: CAN mask (see description)
431 * @func: callback function on filter match
432 * @data: returned parameter for callback function
Maxime Jayat3f794102013-10-12 01:29:46 +0200433 * @ident: string for calling module identification
Eric Dumazetf1712c72017-01-27 08:11:44 -0800434 * @sk: socket pointer (might be NULL)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800435 *
436 * Description:
437 * Invokes the callback function with the received sk_buff and the given
438 * parameter 'data' on a matching receive filter. A filter matches, when
439 *
440 * <received_can_id> & mask == can_id & mask
441 *
442 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200443 * filter for error message frames (CAN_ERR_FLAG bit set in mask).
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800444 *
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800445 * The provided pointer to the sk_buff is guaranteed to be valid as long as
446 * the callback function is running. The callback function must *not* free
447 * the given sk_buff while processing it's task. When the given sk_buff is
448 * needed after the end of the callback function it must be cloned inside
449 * the callback function with skb_clone().
450 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800451 * Return:
452 * 0 on success
453 * -ENOMEM on missing cache mem to create subscription entry
454 * -ENODEV unknown device
455 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100456int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id,
457 canid_t mask, void (*func)(struct sk_buff *, void *),
458 void *data, char *ident, struct sock *sk)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800459{
460 struct receiver *r;
461 struct hlist_head *rl;
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200462 struct can_dev_rcv_lists *d;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200463 struct s_pstats *can_pstats = net->can.can_pstats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800464 int err = 0;
465
466 /* insert new receiver (dev,canid,mask) -> (func,data) */
467
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800468 if (dev && dev->type != ARPHRD_CAN)
469 return -ENODEV;
470
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100471 if (dev && !net_eq(net, dev_net(dev)))
472 return -ENODEV;
473
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800474 r = kmem_cache_alloc(rcv_cache, GFP_KERNEL);
475 if (!r)
476 return -ENOMEM;
477
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100478 spin_lock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800479
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100480 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800481 if (d) {
482 rl = find_rcv_list(&can_id, &mask, d);
483
484 r->can_id = can_id;
485 r->mask = mask;
486 r->matches = 0;
487 r->func = func;
488 r->data = data;
489 r->ident = ident;
Eric Dumazetf1712c72017-01-27 08:11:44 -0800490 r->sk = sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800491
492 hlist_add_head_rcu(&r->list, rl);
493 d->entries++;
494
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200495 can_pstats->rcv_entries++;
496 if (can_pstats->rcv_entries_max < can_pstats->rcv_entries)
497 can_pstats->rcv_entries_max = can_pstats->rcv_entries;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800498 } else {
499 kmem_cache_free(rcv_cache, r);
500 err = -ENODEV;
501 }
502
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100503 spin_unlock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800504
505 return err;
506}
507EXPORT_SYMBOL(can_rx_register);
508
509/*
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800510 * can_rx_delete_receiver - rcu callback for single receiver entry removal
511 */
512static void can_rx_delete_receiver(struct rcu_head *rp)
513{
514 struct receiver *r = container_of(rp, struct receiver, rcu);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800515 struct sock *sk = r->sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800516
517 kmem_cache_free(rcv_cache, r);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800518 if (sk)
519 sock_put(sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800520}
521
522/**
523 * can_rx_unregister - unsubscribe CAN frames from a specific interface
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800524 * @dev: pointer to netdevice (NULL => unsubscribe from 'all' CAN devices list)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800525 * @can_id: CAN identifier
526 * @mask: CAN mask
527 * @func: callback function on filter match
528 * @data: returned parameter for callback function
529 *
530 * Description:
531 * Removes subscription entry depending on given (subscription) values.
532 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100533void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id,
534 canid_t mask, void (*func)(struct sk_buff *, void *),
535 void *data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800536{
537 struct receiver *r = NULL;
538 struct hlist_head *rl;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200539 struct s_pstats *can_pstats = net->can.can_pstats;
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200540 struct can_dev_rcv_lists *d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800541
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800542 if (dev && dev->type != ARPHRD_CAN)
543 return;
544
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100545 if (dev && !net_eq(net, dev_net(dev)))
546 return;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800547
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100548 spin_lock(&net->can.can_rcvlists_lock);
549
550 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800551 if (!d) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000552 pr_err("BUG: receive list not found for "
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800553 "dev %s, id %03X, mask %03X\n",
554 DNAME(dev), can_id, mask);
555 goto out;
556 }
557
558 rl = find_rcv_list(&can_id, &mask, d);
559
560 /*
561 * Search the receiver list for the item to delete. This should
562 * exist, since no receiver may be unregistered that hasn't
563 * been registered before.
564 */
565
Sasha Levinb67bfe02013-02-27 17:06:00 -0800566 hlist_for_each_entry_rcu(r, rl, list) {
Joe Perchesf64f9e72009-11-29 16:55:45 -0800567 if (r->can_id == can_id && r->mask == mask &&
568 r->func == func && r->data == data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800569 break;
570 }
571
572 /*
Oliver Hartkoppc9bbb752013-03-18 07:52:06 +0000573 * Check for bugs in CAN protocol implementations using af_can.c:
574 * 'r' will be NULL if no matching list item was found for removal.
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800575 */
576
Sasha Levinb67bfe02013-02-27 17:06:00 -0800577 if (!r) {
Oliver Hartkoppc9bbb752013-03-18 07:52:06 +0000578 WARN(1, "BUG: receive list entry not found for dev %s, "
579 "id %03X, mask %03X\n", DNAME(dev), can_id, mask);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800580 goto out;
581 }
582
583 hlist_del_rcu(&r->list);
584 d->entries--;
585
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200586 if (can_pstats->rcv_entries > 0)
587 can_pstats->rcv_entries--;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800588
589 /* remove device structure requested by NETDEV_UNREGISTER */
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000590 if (d->remove_on_zero_entries && !d->entries) {
591 kfree(d);
592 dev->ml_priv = NULL;
593 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800594
595 out:
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100596 spin_unlock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800597
598 /* schedule the receiver item for deletion */
Eric Dumazetf1712c72017-01-27 08:11:44 -0800599 if (r) {
600 if (r->sk)
601 sock_hold(r->sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800602 call_rcu(&r->rcu, can_rx_delete_receiver);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800603 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800604}
605EXPORT_SYMBOL(can_rx_unregister);
606
607static inline void deliver(struct sk_buff *skb, struct receiver *r)
608{
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800609 r->func(skb, r->data);
610 r->matches++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800611}
612
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200613static int can_rcv_filter(struct can_dev_rcv_lists *d, struct sk_buff *skb)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800614{
615 struct receiver *r;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800616 int matches = 0;
617 struct can_frame *cf = (struct can_frame *)skb->data;
618 canid_t can_id = cf->can_id;
619
620 if (d->entries == 0)
621 return 0;
622
623 if (can_id & CAN_ERR_FLAG) {
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200624 /* check for error message frame entries only */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800625 hlist_for_each_entry_rcu(r, &d->rx[RX_ERR], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800626 if (can_id & r->mask) {
627 deliver(skb, r);
628 matches++;
629 }
630 }
631 return matches;
632 }
633
634 /* check for unfiltered entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800635 hlist_for_each_entry_rcu(r, &d->rx[RX_ALL], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800636 deliver(skb, r);
637 matches++;
638 }
639
640 /* check for can_id/mask entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800641 hlist_for_each_entry_rcu(r, &d->rx[RX_FIL], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800642 if ((can_id & r->mask) == r->can_id) {
643 deliver(skb, r);
644 matches++;
645 }
646 }
647
648 /* check for inverted can_id/mask entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800649 hlist_for_each_entry_rcu(r, &d->rx[RX_INV], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800650 if ((can_id & r->mask) != r->can_id) {
651 deliver(skb, r);
652 matches++;
653 }
654 }
655
Oliver Hartkoppf706644d2008-12-04 15:01:08 -0800656 /* check filterlists for single non-RTR can_ids */
657 if (can_id & CAN_RTR_FLAG)
658 return matches;
659
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800660 if (can_id & CAN_EFF_FLAG) {
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200661 hlist_for_each_entry_rcu(r, &d->rx_eff[effhash(can_id)], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800662 if (r->can_id == can_id) {
663 deliver(skb, r);
664 matches++;
665 }
666 }
667 } else {
668 can_id &= CAN_SFF_MASK;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800669 hlist_for_each_entry_rcu(r, &d->rx_sff[can_id], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800670 deliver(skb, r);
671 matches++;
672 }
673 }
674
675 return matches;
676}
677
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200678static void can_receive(struct sk_buff *skb, struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800679{
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200680 struct can_dev_rcv_lists *d;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200681 struct net *net = dev_net(dev);
682 struct s_stats *can_stats = net->can.can_stats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800683 int matches;
684
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800685 /* update statistics */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200686 can_stats->rx_frames++;
687 can_stats->rx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800688
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200689 /* create non-zero unique skb identifier together with *skb */
690 while (!(can_skb_prv(skb)->skbcnt))
691 can_skb_prv(skb)->skbcnt = atomic_inc_return(&skbcounter);
692
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800693 rcu_read_lock();
694
695 /* deliver the packet to sockets listening on all devices */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200696 matches = can_rcv_filter(net->can.can_rx_alldev_list, skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800697
698 /* find receive list for this device */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200699 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800700 if (d)
701 matches += can_rcv_filter(d, skb);
702
703 rcu_read_unlock();
704
Oliver Hartkopp62bcaa12009-04-17 01:38:46 -0700705 /* consume the skbuff allocated by the netdevice driver */
706 consume_skb(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800707
708 if (matches > 0) {
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200709 can_stats->matches++;
710 can_stats->matches_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800711 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200712}
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800713
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200714static int can_rcv(struct sk_buff *skb, struct net_device *dev,
715 struct packet_type *pt, struct net_device *orig_dev)
716{
717 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
718
Marc Kleine-Budde8cb68752018-01-16 19:30:14 +0100719 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CAN_MTU ||
720 cfd->len > CAN_MAX_DLEN)) {
721 pr_warn_once("PF_CAN: dropped non conform CAN skbuf: dev type %d, len %d, datalen %d\n",
722 dev->type, skb->len, cfd->len);
723 kfree_skb(skb);
724 return NET_RX_DROP;
725 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200726
727 can_receive(skb, dev);
728 return NET_RX_SUCCESS;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200729}
730
731static int canfd_rcv(struct sk_buff *skb, struct net_device *dev,
732 struct packet_type *pt, struct net_device *orig_dev)
733{
734 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
735
Marc Kleine-Budded4689842018-01-16 19:30:14 +0100736 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CANFD_MTU ||
737 cfd->len > CANFD_MAX_DLEN)) {
738 pr_warn_once("PF_CAN: dropped non conform CAN FD skbuf: dev type %d, len %d, datalen %d\n",
739 dev->type, skb->len, cfd->len);
740 kfree_skb(skb);
741 return NET_RX_DROP;
742 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200743
744 can_receive(skb, dev);
Oliver Hartkopp6ca8b992009-08-29 06:45:09 +0000745 return NET_RX_SUCCESS;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800746}
747
748/*
749 * af_can protocol functions
750 */
751
752/**
753 * can_proto_register - register CAN transport protocol
754 * @cp: pointer to CAN protocol structure
755 *
756 * Return:
757 * 0 on success
758 * -EINVAL invalid (out of range) protocol number
759 * -EBUSY protocol already in use
760 * -ENOBUF if proto_register() fails
761 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000762int can_proto_register(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800763{
764 int proto = cp->protocol;
765 int err = 0;
766
767 if (proto < 0 || proto >= CAN_NPROTO) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000768 pr_err("can: protocol number %d out of range\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800769 return -EINVAL;
770 }
771
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800772 err = proto_register(cp->prot, 0);
773 if (err < 0)
774 return err;
775
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000776 mutex_lock(&proto_tab_lock);
777
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200778 if (rcu_access_pointer(proto_tab[proto])) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000779 pr_err("can: protocol %d already registered\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800780 err = -EBUSY;
Oliver Hartkopp53914b62011-03-22 08:27:25 +0000781 } else
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000782 RCU_INIT_POINTER(proto_tab[proto], cp);
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800783
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000784 mutex_unlock(&proto_tab_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800785
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800786 if (err < 0)
787 proto_unregister(cp->prot);
788
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800789 return err;
790}
791EXPORT_SYMBOL(can_proto_register);
792
793/**
794 * can_proto_unregister - unregister CAN transport protocol
795 * @cp: pointer to CAN protocol structure
796 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000797void can_proto_unregister(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800798{
799 int proto = cp->protocol;
800
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000801 mutex_lock(&proto_tab_lock);
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200802 BUG_ON(rcu_access_pointer(proto_tab[proto]) != cp);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000803 RCU_INIT_POINTER(proto_tab[proto], NULL);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000804 mutex_unlock(&proto_tab_lock);
805
806 synchronize_rcu();
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800807
808 proto_unregister(cp->prot);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800809}
810EXPORT_SYMBOL(can_proto_unregister);
811
812/*
813 * af_can notifier to create/remove CAN netdevice specific structs
814 */
815static int can_notifier(struct notifier_block *nb, unsigned long msg,
Jiri Pirko351638e2013-05-28 01:30:21 +0000816 void *ptr)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800817{
Jiri Pirko351638e2013-05-28 01:30:21 +0000818 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200819 struct can_dev_rcv_lists *d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800820
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800821 if (dev->type != ARPHRD_CAN)
822 return NOTIFY_DONE;
823
824 switch (msg) {
825
826 case NETDEV_REGISTER:
827
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000828 /* create new dev_rcv_lists for this device */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800829 d = kzalloc(sizeof(*d), GFP_KERNEL);
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000830 if (!d)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800831 return NOTIFY_DONE;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000832 BUG_ON(dev->ml_priv);
833 dev->ml_priv = d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800834
835 break;
836
837 case NETDEV_UNREGISTER:
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100838 spin_lock(&dev_net(dev)->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800839
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000840 d = dev->ml_priv;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800841 if (d) {
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000842 if (d->entries)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800843 d->remove_on_zero_entries = 1;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000844 else {
845 kfree(d);
846 dev->ml_priv = NULL;
847 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800848 } else
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000849 pr_err("can: notifier: receive list not found for dev "
850 "%s\n", dev->name);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800851
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100852 spin_unlock(&dev_net(dev)->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800853
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800854 break;
855 }
856
857 return NOTIFY_DONE;
858}
859
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100860static int can_pernet_init(struct net *net)
861{
Marc Kleine-Budde74b7b4902017-06-06 13:53:16 +0200862 spin_lock_init(&net->can.can_rcvlists_lock);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100863 net->can.can_rx_alldev_list =
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200864 kzalloc(sizeof(struct can_dev_rcv_lists), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200865 if (!net->can.can_rx_alldev_list)
866 goto out;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200867 net->can.can_stats = kzalloc(sizeof(struct s_stats), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200868 if (!net->can.can_stats)
869 goto out_free_alldev_list;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200870 net->can.can_pstats = kzalloc(sizeof(struct s_pstats), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200871 if (!net->can.can_pstats)
872 goto out_free_can_stats;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200873
874 if (IS_ENABLED(CONFIG_PROC_FS)) {
875 /* the statistics are updated every second (timer triggered) */
876 if (stats_timer) {
Kees Cook1fccb562017-10-16 17:29:06 -0700877 timer_setup(&net->can.can_stattimer, can_stat_update,
878 0);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200879 mod_timer(&net->can.can_stattimer,
880 round_jiffies(jiffies + HZ));
881 }
882 net->can.can_stats->jiffies_init = jiffies;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100883 can_init_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200884 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100885
886 return 0;
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200887
888 out_free_can_stats:
889 kfree(net->can.can_stats);
890 out_free_alldev_list:
891 kfree(net->can.can_rx_alldev_list);
892 out:
893 return -ENOMEM;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100894}
895
896static void can_pernet_exit(struct net *net)
897{
898 struct net_device *dev;
899
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200900 if (IS_ENABLED(CONFIG_PROC_FS)) {
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100901 can_remove_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200902 if (stats_timer)
903 del_timer_sync(&net->can.can_stattimer);
904 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100905
906 /* remove created dev_rcv_lists from still registered CAN devices */
907 rcu_read_lock();
908 for_each_netdev_rcu(net, dev) {
909 if (dev->type == ARPHRD_CAN && dev->ml_priv) {
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200910 struct can_dev_rcv_lists *d = dev->ml_priv;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100911
912 BUG_ON(d->entries);
913 kfree(d);
914 dev->ml_priv = NULL;
915 }
916 }
917 rcu_read_unlock();
Oliver Hartkoppa7bbd282017-04-25 08:19:38 +0200918
919 kfree(net->can.can_rx_alldev_list);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200920 kfree(net->can.can_stats);
921 kfree(net->can.can_pstats);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100922}
923
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800924/*
925 * af_can module init/exit functions
926 */
927
928static struct packet_type can_packet __read_mostly = {
Harvey Harrison09640e632009-02-01 00:45:17 -0800929 .type = cpu_to_be16(ETH_P_CAN),
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800930 .func = can_rcv,
931};
932
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200933static struct packet_type canfd_packet __read_mostly = {
934 .type = cpu_to_be16(ETH_P_CANFD),
935 .func = canfd_rcv,
936};
937
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000938static const struct net_proto_family can_family_ops = {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800939 .family = PF_CAN,
940 .create = can_create,
941 .owner = THIS_MODULE,
942};
943
944/* notifier block for netdevice event */
945static struct notifier_block can_netdev_notifier __read_mostly = {
946 .notifier_call = can_notifier,
947};
948
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100949static struct pernet_operations can_pernet_ops __read_mostly = {
950 .init = can_pernet_init,
951 .exit = can_pernet_exit,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100952};
953
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800954static __init int can_init(void)
955{
YueHaibingc5a3aed2019-05-16 22:36:26 +0800956 int err;
957
Oliver Hartkopp7c941632012-06-13 20:04:33 +0200958 /* check for correct padding to be able to use the structs similarly */
959 BUILD_BUG_ON(offsetof(struct can_frame, can_dlc) !=
960 offsetof(struct canfd_frame, len) ||
961 offsetof(struct can_frame, data) !=
962 offsetof(struct canfd_frame, data));
963
Jeremiah Mahlerb111b782014-11-21 23:42:35 -0800964 pr_info("can: controller area network core (" CAN_VERSION_STRING ")\n");
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800965
966 rcv_cache = kmem_cache_create("can_receiver", sizeof(struct receiver),
967 0, 0, NULL);
968 if (!rcv_cache)
969 return -ENOMEM;
970
YueHaibingc5a3aed2019-05-16 22:36:26 +0800971 err = register_pernet_subsys(&can_pernet_ops);
972 if (err)
973 goto out_pernet;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100974
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800975 /* protocol register */
YueHaibingc5a3aed2019-05-16 22:36:26 +0800976 err = sock_register(&can_family_ops);
977 if (err)
978 goto out_sock;
979 err = register_netdevice_notifier(&can_netdev_notifier);
980 if (err)
981 goto out_notifier;
982
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800983 dev_add_pack(&can_packet);
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200984 dev_add_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800985
986 return 0;
YueHaibingc5a3aed2019-05-16 22:36:26 +0800987
988out_notifier:
989 sock_unregister(PF_CAN);
990out_sock:
991 unregister_pernet_subsys(&can_pernet_ops);
992out_pernet:
993 kmem_cache_destroy(rcv_cache);
994
995 return err;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800996}
997
998static __exit void can_exit(void)
999{
Oliver Hartkopp0d665482007-11-16 15:52:17 -08001000 /* protocol unregister */
Oliver Hartkopp8b019392012-06-13 20:33:02 +02001001 dev_remove_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -08001002 dev_remove_pack(&can_packet);
1003 unregister_netdevice_notifier(&can_netdev_notifier);
1004 sock_unregister(PF_CAN);
1005
Mario Kicherer8e8cda62017-02-21 12:19:47 +01001006 unregister_pernet_subsys(&can_pernet_ops);
Oliver Hartkopp0d665482007-11-16 15:52:17 -08001007
Jesper Dangaard Brouer382bfee2009-06-08 03:11:38 +00001008 rcu_barrier(); /* Wait for completion of call_rcu()'s */
1009
Oliver Hartkopp0d665482007-11-16 15:52:17 -08001010 kmem_cache_destroy(rcv_cache);
1011}
1012
1013module_init(can_init);
1014module_exit(can_exit);