blob: e8fd5dc1780aeb0a5b2f6b888052938c931913a5 [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);
102}
103
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000104static const struct can_proto *can_get_proto(int protocol)
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000105{
Kurt Van Dijck16506292011-05-03 18:40:57 +0000106 const struct can_proto *cp;
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000107
108 rcu_read_lock();
109 cp = rcu_dereference(proto_tab[protocol]);
110 if (cp && !try_module_get(cp->prot->owner))
111 cp = NULL;
112 rcu_read_unlock();
113
114 return cp;
115}
116
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000117static inline void can_put_proto(const struct can_proto *cp)
118{
119 module_put(cp->prot->owner);
120}
121
Eric Paris3f378b62009-11-05 22:18:14 -0800122static int can_create(struct net *net, struct socket *sock, int protocol,
123 int kern)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800124{
125 struct sock *sk;
Kurt Van Dijck16506292011-05-03 18:40:57 +0000126 const struct can_proto *cp;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800127 int err = 0;
128
129 sock->state = SS_UNCONNECTED;
130
131 if (protocol < 0 || protocol >= CAN_NPROTO)
132 return -EINVAL;
133
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000134 cp = can_get_proto(protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000135
Johannes Berg95a5afc2008-10-16 15:24:51 -0700136#ifdef CONFIG_MODULES
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000137 if (!cp) {
138 /* try to load protocol module if kernel is modular */
139
Urs Thuermann5423dd62008-02-07 18:04:21 -0800140 err = request_module("can-proto-%d", protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800141
142 /*
143 * In case of error we only print a message but don't
144 * return the error code immediately. Below we will
145 * return -EPROTONOSUPPORT
146 */
Manuel Zerpiesd751e622011-06-16 02:08:01 +0000147 if (err)
148 printk_ratelimited(KERN_ERR "can: request_module "
Urs Thuermann5423dd62008-02-07 18:04:21 -0800149 "(can-proto-%d) failed.\n", protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000150
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000151 cp = can_get_proto(protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800152 }
Urs Thuermann5423dd62008-02-07 18:04:21 -0800153#endif
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800154
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800155 /* check for available protocol and correct usage */
156
157 if (!cp)
158 return -EPROTONOSUPPORT;
159
160 if (cp->type != sock->type) {
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000161 err = -EPROTOTYPE;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800162 goto errout;
163 }
164
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800165 sock->ops = cp->ops;
166
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500167 sk = sk_alloc(net, PF_CAN, GFP_KERNEL, cp->prot, kern);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800168 if (!sk) {
169 err = -ENOMEM;
170 goto errout;
171 }
172
173 sock_init_data(sock, sk);
174 sk->sk_destruct = can_sock_destruct;
175
176 if (sk->sk_prot->init)
177 err = sk->sk_prot->init(sk);
178
179 if (err) {
180 /* release sk on errors */
181 sock_orphan(sk);
182 sock_put(sk);
183 }
184
185 errout:
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000186 can_put_proto(cp);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800187 return err;
188}
189
190/*
191 * af_can tx path
192 */
193
194/**
195 * can_send - transmit a CAN frame (optional with local loopback)
196 * @skb: pointer to socket buffer with CAN frame in data section
197 * @loop: loopback for listeners on local CAN sockets (recommended default!)
198 *
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700199 * Due to the loopback this routine must not be called from hardirq context.
200 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800201 * Return:
202 * 0 on success
203 * -ENETDOWN when the selected interface is down
204 * -ENOBUFS on full driver queue (see net_xmit_errno())
205 * -ENOMEM when local loopback failed at calling skb_clone()
206 * -EPERM when trying to send on a non-CAN interface
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200207 * -EMSGSIZE CAN frame size is bigger than CAN interface MTU
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700208 * -EINVAL when the skb->data does not contain a valid CAN frame
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800209 */
210int can_send(struct sk_buff *skb, int loop)
211{
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700212 struct sk_buff *newskb = NULL;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200213 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200214 struct s_stats *can_stats = dev_net(skb->dev)->can.can_stats;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200215 int err = -EINVAL;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800216
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200217 if (skb->len == CAN_MTU) {
218 skb->protocol = htons(ETH_P_CAN);
219 if (unlikely(cfd->len > CAN_MAX_DLEN))
220 goto inval_skb;
221 } else if (skb->len == CANFD_MTU) {
222 skb->protocol = htons(ETH_P_CANFD);
223 if (unlikely(cfd->len > CANFD_MAX_DLEN))
224 goto inval_skb;
225 } else
226 goto inval_skb;
227
228 /*
229 * Make sure the CAN frame can pass the selected CAN netdevice.
230 * As structs can_frame and canfd_frame are similar, we can provide
231 * CAN FD frames to legacy CAN drivers as long as the length is <= 8
232 */
233 if (unlikely(skb->len > skb->dev->mtu && cfd->len > CAN_MAX_DLEN)) {
234 err = -EMSGSIZE;
235 goto inval_skb;
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700236 }
237
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200238 if (unlikely(skb->dev->type != ARPHRD_CAN)) {
239 err = -EPERM;
240 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800241 }
242
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200243 if (unlikely(!(skb->dev->flags & IFF_UP))) {
244 err = -ENETDOWN;
245 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800246 }
247
Oliver Hartkopp9694390162015-02-23 20:37:54 +0100248 skb->ip_summed = CHECKSUM_UNNECESSARY;
249
250 skb_reset_mac_header(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800251 skb_reset_network_header(skb);
252 skb_reset_transport_header(skb);
253
254 if (loop) {
255 /* local loopback of sent CAN frames */
256
257 /* indication for the CAN driver: do loopback */
258 skb->pkt_type = PACKET_LOOPBACK;
259
260 /*
261 * The reference to the originating sock may be required
262 * by the receiving socket to check whether the frame is
263 * its own. Example: can_raw sockopt CAN_RAW_RECV_OWN_MSGS
264 * Therefore we have to ensure that skb->sk remains the
265 * reference to the originating sock by restoring skb->sk
266 * after each skb_clone() or skb_orphan() usage.
267 */
268
269 if (!(skb->dev->flags & IFF_ECHO)) {
270 /*
271 * If the interface is not capable to do loopback
272 * itself, we do it here.
273 */
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700274 newskb = skb_clone(skb, GFP_ATOMIC);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800275 if (!newskb) {
276 kfree_skb(skb);
277 return -ENOMEM;
278 }
279
Oliver Hartkopp0ae89be2014-01-30 10:11:28 +0100280 can_skb_set_owner(newskb, skb->sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800281 newskb->ip_summed = CHECKSUM_UNNECESSARY;
282 newskb->pkt_type = PACKET_BROADCAST;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800283 }
284 } else {
285 /* indication for the CAN driver: no loopback required */
286 skb->pkt_type = PACKET_HOST;
287 }
288
289 /* send to netdevice */
290 err = dev_queue_xmit(skb);
291 if (err > 0)
292 err = net_xmit_errno(err);
293
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700294 if (err) {
Wei Yongjunce030ed2009-02-25 00:35:44 +0000295 kfree_skb(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700296 return err;
297 }
298
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200299 if (newskb)
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700300 netif_rx_ni(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700301
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800302 /* update statistics */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200303 can_stats->tx_frames++;
304 can_stats->tx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800305
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700306 return 0;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200307
308inval_skb:
309 kfree_skb(skb);
310 return err;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800311}
312EXPORT_SYMBOL(can_send);
313
314/*
315 * af_can rx path
316 */
317
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200318static struct can_dev_rcv_lists *find_dev_rcv_lists(struct net *net,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100319 struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800320{
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000321 if (!dev)
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100322 return net->can.can_rx_alldev_list;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000323 else
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200324 return (struct can_dev_rcv_lists *)dev->ml_priv;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800325}
326
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800327/**
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200328 * effhash - hash function for 29 bit CAN identifier reduction
329 * @can_id: 29 bit CAN identifier
330 *
331 * Description:
332 * To reduce the linear traversal in one linked list of _single_ EFF CAN
333 * frame subscriptions the 29 bit identifier is mapped to 10 bits.
334 * (see CAN_EFF_RCV_HASH_BITS definition)
335 *
336 * Return:
337 * Hash value from 0x000 - 0x3FF ( enforced by CAN_EFF_RCV_HASH_BITS mask )
338 */
339static unsigned int effhash(canid_t can_id)
340{
341 unsigned int hash;
342
343 hash = can_id;
344 hash ^= can_id >> CAN_EFF_RCV_HASH_BITS;
345 hash ^= can_id >> (2 * CAN_EFF_RCV_HASH_BITS);
346
347 return hash & ((1 << CAN_EFF_RCV_HASH_BITS) - 1);
348}
349
350/**
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800351 * find_rcv_list - determine optimal filterlist inside device filter struct
352 * @can_id: pointer to CAN identifier of a given can_filter
353 * @mask: pointer to CAN mask of a given can_filter
354 * @d: pointer to the device filter struct
355 *
356 * Description:
357 * Returns the optimal filterlist to reduce the filter handling in the
358 * receive path. This function is called by service functions that need
359 * to register or unregister a can_filter in the filter lists.
360 *
361 * A filter matches in general, when
362 *
363 * <received_can_id> & mask == can_id & mask
364 *
365 * so every bit set in the mask (even CAN_EFF_FLAG, CAN_RTR_FLAG) describe
366 * relevant bits for the filter.
367 *
368 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200369 * filter for error messages (CAN_ERR_FLAG bit set in mask). For error msg
370 * frames there is a special filterlist and a special rx path filter handling.
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800371 *
372 * Return:
373 * Pointer to optimal filterlist for the given can_id/mask pair.
374 * Constistency checked mask.
375 * Reduced can_id to have a preprocessed filter compare value.
376 */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800377static struct hlist_head *find_rcv_list(canid_t *can_id, canid_t *mask,
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200378 struct can_dev_rcv_lists *d)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800379{
380 canid_t inv = *can_id & CAN_INV_FILTER; /* save flag before masking */
381
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200382 /* filter for error message frames in extra filterlist */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800383 if (*mask & CAN_ERR_FLAG) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800384 /* clear CAN_ERR_FLAG in filter entry */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800385 *mask &= CAN_ERR_MASK;
386 return &d->rx[RX_ERR];
387 }
388
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800389 /* with cleared CAN_ERR_FLAG we have a simple mask/value filterpair */
390
391#define CAN_EFF_RTR_FLAGS (CAN_EFF_FLAG | CAN_RTR_FLAG)
392
393 /* ensure valid values in can_mask for 'SFF only' frame filtering */
394 if ((*mask & CAN_EFF_FLAG) && !(*can_id & CAN_EFF_FLAG))
395 *mask &= (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800396
397 /* reduce condition testing at receive time */
398 *can_id &= *mask;
399
400 /* inverse can_id/can_mask filter */
401 if (inv)
402 return &d->rx[RX_INV];
403
404 /* mask == 0 => no condition testing at receive time */
405 if (!(*mask))
406 return &d->rx[RX_ALL];
407
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800408 /* extra filterlists for the subscription of a single non-RTR can_id */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800409 if (((*mask & CAN_EFF_RTR_FLAGS) == CAN_EFF_RTR_FLAGS) &&
410 !(*can_id & CAN_RTR_FLAG)) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800411
412 if (*can_id & CAN_EFF_FLAG) {
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200413 if (*mask == (CAN_EFF_MASK | CAN_EFF_RTR_FLAGS))
414 return &d->rx_eff[effhash(*can_id)];
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800415 } else {
416 if (*mask == (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS))
417 return &d->rx_sff[*can_id];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800418 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800419 }
420
421 /* default: filter via can_id/can_mask */
422 return &d->rx[RX_FIL];
423}
424
425/**
426 * can_rx_register - subscribe CAN frames from a specific interface
427 * @dev: pointer to netdevice (NULL => subcribe from 'all' CAN devices list)
428 * @can_id: CAN identifier (see description)
429 * @mask: CAN mask (see description)
430 * @func: callback function on filter match
431 * @data: returned parameter for callback function
Maxime Jayat3f794102013-10-12 01:29:46 +0200432 * @ident: string for calling module identification
Eric Dumazetf1712c72017-01-27 08:11:44 -0800433 * @sk: socket pointer (might be NULL)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800434 *
435 * Description:
436 * Invokes the callback function with the received sk_buff and the given
437 * parameter 'data' on a matching receive filter. A filter matches, when
438 *
439 * <received_can_id> & mask == can_id & mask
440 *
441 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200442 * filter for error message frames (CAN_ERR_FLAG bit set in mask).
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800443 *
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800444 * The provided pointer to the sk_buff is guaranteed to be valid as long as
445 * the callback function is running. The callback function must *not* free
446 * the given sk_buff while processing it's task. When the given sk_buff is
447 * needed after the end of the callback function it must be cloned inside
448 * the callback function with skb_clone().
449 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800450 * Return:
451 * 0 on success
452 * -ENOMEM on missing cache mem to create subscription entry
453 * -ENODEV unknown device
454 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100455int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id,
456 canid_t mask, void (*func)(struct sk_buff *, void *),
457 void *data, char *ident, struct sock *sk)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800458{
459 struct receiver *r;
460 struct hlist_head *rl;
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200461 struct can_dev_rcv_lists *d;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200462 struct s_pstats *can_pstats = net->can.can_pstats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800463 int err = 0;
464
465 /* insert new receiver (dev,canid,mask) -> (func,data) */
466
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800467 if (dev && dev->type != ARPHRD_CAN)
468 return -ENODEV;
469
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100470 if (dev && !net_eq(net, dev_net(dev)))
471 return -ENODEV;
472
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800473 r = kmem_cache_alloc(rcv_cache, GFP_KERNEL);
474 if (!r)
475 return -ENOMEM;
476
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100477 spin_lock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800478
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100479 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800480 if (d) {
481 rl = find_rcv_list(&can_id, &mask, d);
482
483 r->can_id = can_id;
484 r->mask = mask;
485 r->matches = 0;
486 r->func = func;
487 r->data = data;
488 r->ident = ident;
Eric Dumazetf1712c72017-01-27 08:11:44 -0800489 r->sk = sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800490
491 hlist_add_head_rcu(&r->list, rl);
492 d->entries++;
493
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200494 can_pstats->rcv_entries++;
495 if (can_pstats->rcv_entries_max < can_pstats->rcv_entries)
496 can_pstats->rcv_entries_max = can_pstats->rcv_entries;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800497 } else {
498 kmem_cache_free(rcv_cache, r);
499 err = -ENODEV;
500 }
501
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100502 spin_unlock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800503
504 return err;
505}
506EXPORT_SYMBOL(can_rx_register);
507
508/*
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800509 * can_rx_delete_receiver - rcu callback for single receiver entry removal
510 */
511static void can_rx_delete_receiver(struct rcu_head *rp)
512{
513 struct receiver *r = container_of(rp, struct receiver, rcu);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800514 struct sock *sk = r->sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800515
516 kmem_cache_free(rcv_cache, r);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800517 if (sk)
518 sock_put(sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800519}
520
521/**
522 * can_rx_unregister - unsubscribe CAN frames from a specific interface
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800523 * @dev: pointer to netdevice (NULL => unsubscribe from 'all' CAN devices list)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800524 * @can_id: CAN identifier
525 * @mask: CAN mask
526 * @func: callback function on filter match
527 * @data: returned parameter for callback function
528 *
529 * Description:
530 * Removes subscription entry depending on given (subscription) values.
531 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100532void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id,
533 canid_t mask, void (*func)(struct sk_buff *, void *),
534 void *data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800535{
536 struct receiver *r = NULL;
537 struct hlist_head *rl;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200538 struct s_pstats *can_pstats = net->can.can_pstats;
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200539 struct can_dev_rcv_lists *d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800540
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800541 if (dev && dev->type != ARPHRD_CAN)
542 return;
543
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100544 if (dev && !net_eq(net, dev_net(dev)))
545 return;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800546
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100547 spin_lock(&net->can.can_rcvlists_lock);
548
549 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800550 if (!d) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000551 pr_err("BUG: receive list not found for "
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800552 "dev %s, id %03X, mask %03X\n",
553 DNAME(dev), can_id, mask);
554 goto out;
555 }
556
557 rl = find_rcv_list(&can_id, &mask, d);
558
559 /*
560 * Search the receiver list for the item to delete. This should
561 * exist, since no receiver may be unregistered that hasn't
562 * been registered before.
563 */
564
Sasha Levinb67bfe02013-02-27 17:06:00 -0800565 hlist_for_each_entry_rcu(r, rl, list) {
Joe Perchesf64f9e72009-11-29 16:55:45 -0800566 if (r->can_id == can_id && r->mask == mask &&
567 r->func == func && r->data == data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800568 break;
569 }
570
571 /*
Oliver Hartkoppc9bbb752013-03-18 07:52:06 +0000572 * Check for bugs in CAN protocol implementations using af_can.c:
573 * 'r' will be NULL if no matching list item was found for removal.
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800574 */
575
Sasha Levinb67bfe02013-02-27 17:06:00 -0800576 if (!r) {
Oliver Hartkoppc9bbb752013-03-18 07:52:06 +0000577 WARN(1, "BUG: receive list entry not found for dev %s, "
578 "id %03X, mask %03X\n", DNAME(dev), can_id, mask);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800579 goto out;
580 }
581
582 hlist_del_rcu(&r->list);
583 d->entries--;
584
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200585 if (can_pstats->rcv_entries > 0)
586 can_pstats->rcv_entries--;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800587
588 /* remove device structure requested by NETDEV_UNREGISTER */
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000589 if (d->remove_on_zero_entries && !d->entries) {
590 kfree(d);
591 dev->ml_priv = NULL;
592 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800593
594 out:
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100595 spin_unlock(&net->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800596
597 /* schedule the receiver item for deletion */
Eric Dumazetf1712c72017-01-27 08:11:44 -0800598 if (r) {
599 if (r->sk)
600 sock_hold(r->sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800601 call_rcu(&r->rcu, can_rx_delete_receiver);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800602 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800603}
604EXPORT_SYMBOL(can_rx_unregister);
605
606static inline void deliver(struct sk_buff *skb, struct receiver *r)
607{
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800608 r->func(skb, r->data);
609 r->matches++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800610}
611
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200612static int can_rcv_filter(struct can_dev_rcv_lists *d, struct sk_buff *skb)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800613{
614 struct receiver *r;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800615 int matches = 0;
616 struct can_frame *cf = (struct can_frame *)skb->data;
617 canid_t can_id = cf->can_id;
618
619 if (d->entries == 0)
620 return 0;
621
622 if (can_id & CAN_ERR_FLAG) {
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200623 /* check for error message frame entries only */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800624 hlist_for_each_entry_rcu(r, &d->rx[RX_ERR], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800625 if (can_id & r->mask) {
626 deliver(skb, r);
627 matches++;
628 }
629 }
630 return matches;
631 }
632
633 /* check for unfiltered entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800634 hlist_for_each_entry_rcu(r, &d->rx[RX_ALL], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800635 deliver(skb, r);
636 matches++;
637 }
638
639 /* check for can_id/mask entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800640 hlist_for_each_entry_rcu(r, &d->rx[RX_FIL], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800641 if ((can_id & r->mask) == r->can_id) {
642 deliver(skb, r);
643 matches++;
644 }
645 }
646
647 /* check for inverted can_id/mask entries */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800648 hlist_for_each_entry_rcu(r, &d->rx[RX_INV], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800649 if ((can_id & r->mask) != r->can_id) {
650 deliver(skb, r);
651 matches++;
652 }
653 }
654
Oliver Hartkoppf706644d2008-12-04 15:01:08 -0800655 /* check filterlists for single non-RTR can_ids */
656 if (can_id & CAN_RTR_FLAG)
657 return matches;
658
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800659 if (can_id & CAN_EFF_FLAG) {
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200660 hlist_for_each_entry_rcu(r, &d->rx_eff[effhash(can_id)], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800661 if (r->can_id == can_id) {
662 deliver(skb, r);
663 matches++;
664 }
665 }
666 } else {
667 can_id &= CAN_SFF_MASK;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800668 hlist_for_each_entry_rcu(r, &d->rx_sff[can_id], list) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800669 deliver(skb, r);
670 matches++;
671 }
672 }
673
674 return matches;
675}
676
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200677static void can_receive(struct sk_buff *skb, struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800678{
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200679 struct can_dev_rcv_lists *d;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200680 struct net *net = dev_net(dev);
681 struct s_stats *can_stats = net->can.can_stats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800682 int matches;
683
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800684 /* update statistics */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200685 can_stats->rx_frames++;
686 can_stats->rx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800687
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200688 /* create non-zero unique skb identifier together with *skb */
689 while (!(can_skb_prv(skb)->skbcnt))
690 can_skb_prv(skb)->skbcnt = atomic_inc_return(&skbcounter);
691
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800692 rcu_read_lock();
693
694 /* deliver the packet to sockets listening on all devices */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200695 matches = can_rcv_filter(net->can.can_rx_alldev_list, skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800696
697 /* find receive list for this device */
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200698 d = find_dev_rcv_lists(net, dev);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800699 if (d)
700 matches += can_rcv_filter(d, skb);
701
702 rcu_read_unlock();
703
Oliver Hartkopp62bcaa12009-04-17 01:38:46 -0700704 /* consume the skbuff allocated by the netdevice driver */
705 consume_skb(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800706
707 if (matches > 0) {
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200708 can_stats->matches++;
709 can_stats->matches_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800710 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200711}
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800712
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200713static int can_rcv(struct sk_buff *skb, struct net_device *dev,
714 struct packet_type *pt, struct net_device *orig_dev)
715{
716 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
717
Marc Kleine-Budde8cb68752018-01-16 19:30:14 +0100718 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CAN_MTU ||
719 cfd->len > CAN_MAX_DLEN)) {
720 pr_warn_once("PF_CAN: dropped non conform CAN skbuf: dev type %d, len %d, datalen %d\n",
721 dev->type, skb->len, cfd->len);
722 kfree_skb(skb);
723 return NET_RX_DROP;
724 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200725
726 can_receive(skb, dev);
727 return NET_RX_SUCCESS;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200728}
729
730static int canfd_rcv(struct sk_buff *skb, struct net_device *dev,
731 struct packet_type *pt, struct net_device *orig_dev)
732{
733 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
734
Marc Kleine-Budded4689842018-01-16 19:30:14 +0100735 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CANFD_MTU ||
736 cfd->len > CANFD_MAX_DLEN)) {
737 pr_warn_once("PF_CAN: dropped non conform CAN FD skbuf: dev type %d, len %d, datalen %d\n",
738 dev->type, skb->len, cfd->len);
739 kfree_skb(skb);
740 return NET_RX_DROP;
741 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200742
743 can_receive(skb, dev);
Oliver Hartkopp6ca8b992009-08-29 06:45:09 +0000744 return NET_RX_SUCCESS;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800745}
746
747/*
748 * af_can protocol functions
749 */
750
751/**
752 * can_proto_register - register CAN transport protocol
753 * @cp: pointer to CAN protocol structure
754 *
755 * Return:
756 * 0 on success
757 * -EINVAL invalid (out of range) protocol number
758 * -EBUSY protocol already in use
759 * -ENOBUF if proto_register() fails
760 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000761int can_proto_register(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800762{
763 int proto = cp->protocol;
764 int err = 0;
765
766 if (proto < 0 || proto >= CAN_NPROTO) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000767 pr_err("can: protocol number %d out of range\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800768 return -EINVAL;
769 }
770
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800771 err = proto_register(cp->prot, 0);
772 if (err < 0)
773 return err;
774
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000775 mutex_lock(&proto_tab_lock);
776
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200777 if (rcu_access_pointer(proto_tab[proto])) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000778 pr_err("can: protocol %d already registered\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800779 err = -EBUSY;
Oliver Hartkopp53914b62011-03-22 08:27:25 +0000780 } else
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000781 RCU_INIT_POINTER(proto_tab[proto], cp);
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800782
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000783 mutex_unlock(&proto_tab_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800784
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800785 if (err < 0)
786 proto_unregister(cp->prot);
787
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800788 return err;
789}
790EXPORT_SYMBOL(can_proto_register);
791
792/**
793 * can_proto_unregister - unregister CAN transport protocol
794 * @cp: pointer to CAN protocol structure
795 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000796void can_proto_unregister(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800797{
798 int proto = cp->protocol;
799
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000800 mutex_lock(&proto_tab_lock);
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200801 BUG_ON(rcu_access_pointer(proto_tab[proto]) != cp);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000802 RCU_INIT_POINTER(proto_tab[proto], NULL);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000803 mutex_unlock(&proto_tab_lock);
804
805 synchronize_rcu();
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800806
807 proto_unregister(cp->prot);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800808}
809EXPORT_SYMBOL(can_proto_unregister);
810
811/*
812 * af_can notifier to create/remove CAN netdevice specific structs
813 */
814static int can_notifier(struct notifier_block *nb, unsigned long msg,
Jiri Pirko351638e2013-05-28 01:30:21 +0000815 void *ptr)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800816{
Jiri Pirko351638e2013-05-28 01:30:21 +0000817 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200818 struct can_dev_rcv_lists *d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800819
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800820 if (dev->type != ARPHRD_CAN)
821 return NOTIFY_DONE;
822
823 switch (msg) {
824
825 case NETDEV_REGISTER:
826
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000827 /* create new dev_rcv_lists for this device */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800828 d = kzalloc(sizeof(*d), GFP_KERNEL);
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000829 if (!d)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800830 return NOTIFY_DONE;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000831 BUG_ON(dev->ml_priv);
832 dev->ml_priv = d;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800833
834 break;
835
836 case NETDEV_UNREGISTER:
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100837 spin_lock(&dev_net(dev)->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800838
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000839 d = dev->ml_priv;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800840 if (d) {
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000841 if (d->entries)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800842 d->remove_on_zero_entries = 1;
Oliver Hartkopp20dd3852009-12-25 06:47:47 +0000843 else {
844 kfree(d);
845 dev->ml_priv = NULL;
846 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800847 } else
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000848 pr_err("can: notifier: receive list not found for dev "
849 "%s\n", dev->name);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800850
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100851 spin_unlock(&dev_net(dev)->can.can_rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800852
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800853 break;
854 }
855
856 return NOTIFY_DONE;
857}
858
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100859static int can_pernet_init(struct net *net)
860{
Marc Kleine-Budde74b7b4902017-06-06 13:53:16 +0200861 spin_lock_init(&net->can.can_rcvlists_lock);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100862 net->can.can_rx_alldev_list =
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200863 kzalloc(sizeof(struct can_dev_rcv_lists), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200864 if (!net->can.can_rx_alldev_list)
865 goto out;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200866 net->can.can_stats = kzalloc(sizeof(struct s_stats), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200867 if (!net->can.can_stats)
868 goto out_free_alldev_list;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200869 net->can.can_pstats = kzalloc(sizeof(struct s_pstats), GFP_KERNEL);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200870 if (!net->can.can_pstats)
871 goto out_free_can_stats;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200872
873 if (IS_ENABLED(CONFIG_PROC_FS)) {
874 /* the statistics are updated every second (timer triggered) */
875 if (stats_timer) {
Kees Cook1fccb562017-10-16 17:29:06 -0700876 timer_setup(&net->can.can_stattimer, can_stat_update,
877 0);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200878 mod_timer(&net->can.can_stattimer,
879 round_jiffies(jiffies + HZ));
880 }
881 net->can.can_stats->jiffies_init = jiffies;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100882 can_init_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200883 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100884
885 return 0;
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200886
887 out_free_can_stats:
888 kfree(net->can.can_stats);
889 out_free_alldev_list:
890 kfree(net->can.can_rx_alldev_list);
891 out:
892 return -ENOMEM;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100893}
894
895static void can_pernet_exit(struct net *net)
896{
897 struct net_device *dev;
898
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200899 if (IS_ENABLED(CONFIG_PROC_FS)) {
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100900 can_remove_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200901 if (stats_timer)
902 del_timer_sync(&net->can.can_stattimer);
903 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100904
905 /* remove created dev_rcv_lists from still registered CAN devices */
906 rcu_read_lock();
907 for_each_netdev_rcu(net, dev) {
908 if (dev->type == ARPHRD_CAN && dev->ml_priv) {
Marc Kleine-Buddeff847ee2017-06-03 20:10:03 +0200909 struct can_dev_rcv_lists *d = dev->ml_priv;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100910
911 BUG_ON(d->entries);
912 kfree(d);
913 dev->ml_priv = NULL;
914 }
915 }
916 rcu_read_unlock();
Oliver Hartkoppa7bbd282017-04-25 08:19:38 +0200917
918 kfree(net->can.can_rx_alldev_list);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200919 kfree(net->can.can_stats);
920 kfree(net->can.can_pstats);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100921}
922
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800923/*
924 * af_can module init/exit functions
925 */
926
927static struct packet_type can_packet __read_mostly = {
Harvey Harrison09640e632009-02-01 00:45:17 -0800928 .type = cpu_to_be16(ETH_P_CAN),
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800929 .func = can_rcv,
930};
931
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200932static struct packet_type canfd_packet __read_mostly = {
933 .type = cpu_to_be16(ETH_P_CANFD),
934 .func = canfd_rcv,
935};
936
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000937static const struct net_proto_family can_family_ops = {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800938 .family = PF_CAN,
939 .create = can_create,
940 .owner = THIS_MODULE,
941};
942
943/* notifier block for netdevice event */
944static struct notifier_block can_netdev_notifier __read_mostly = {
945 .notifier_call = can_notifier,
946};
947
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100948static struct pernet_operations can_pernet_ops __read_mostly = {
949 .init = can_pernet_init,
950 .exit = can_pernet_exit,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100951};
952
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800953static __init int can_init(void)
954{
Oliver Hartkopp7c941632012-06-13 20:04:33 +0200955 /* check for correct padding to be able to use the structs similarly */
956 BUILD_BUG_ON(offsetof(struct can_frame, can_dlc) !=
957 offsetof(struct canfd_frame, len) ||
958 offsetof(struct can_frame, data) !=
959 offsetof(struct canfd_frame, data));
960
Jeremiah Mahlerb111b782014-11-21 23:42:35 -0800961 pr_info("can: controller area network core (" CAN_VERSION_STRING ")\n");
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800962
963 rcv_cache = kmem_cache_create("can_receiver", sizeof(struct receiver),
964 0, 0, NULL);
965 if (!rcv_cache)
966 return -ENOMEM;
967
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100968 register_pernet_subsys(&can_pernet_ops);
969
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800970 /* protocol register */
971 sock_register(&can_family_ops);
972 register_netdevice_notifier(&can_netdev_notifier);
973 dev_add_pack(&can_packet);
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200974 dev_add_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800975
976 return 0;
977}
978
979static __exit void can_exit(void)
980{
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800981 /* protocol unregister */
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200982 dev_remove_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800983 dev_remove_pack(&can_packet);
984 unregister_netdevice_notifier(&can_netdev_notifier);
985 sock_unregister(PF_CAN);
986
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100987 unregister_pernet_subsys(&can_pernet_ops);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800988
Jesper Dangaard Brouer382bfee2009-06-08 03:11:38 +0000989 rcu_barrier(); /* Wait for completion of call_rcu()'s */
990
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800991 kmem_cache_destroy(rcv_cache);
992}
993
994module_init(can_init);
995module_exit(can_exit);