blob: 5518a7d9eed922c88d496fa2dbaba3ac4d775790 [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>
Marc Kleine-Buddeffd956e2018-10-08 09:02:38 +020061#include <linux/can/can-ml.h>
Manuel Zerpiesd751e622011-06-16 02:08:01 +000062#include <linux/ratelimit.h>
Oliver Hartkopp0d665482007-11-16 15:52:17 -080063#include <net/net_namespace.h>
64#include <net/sock.h>
65
66#include "af_can.h"
67
Oliver Hartkopp0d665482007-11-16 15:52:17 -080068MODULE_DESCRIPTION("Controller Area Network PF_CAN core");
69MODULE_LICENSE("Dual BSD/GPL");
70MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>, "
71 "Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
72
73MODULE_ALIAS_NETPROTO(PF_CAN);
74
75static int stats_timer __read_mostly = 1;
Joe Perchesd6444062018-03-23 15:54:38 -070076module_param(stats_timer, int, 0444);
Oliver Hartkopp0d665482007-11-16 15:52:17 -080077MODULE_PARM_DESC(stats_timer, "enable timer for statistics (default:on)");
78
Oliver Hartkopp0d665482007-11-16 15:52:17 -080079static struct kmem_cache *rcv_cache __read_mostly;
80
81/* table of registered CAN protocols */
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +020082static const struct can_proto __rcu *proto_tab[CAN_NPROTO] __read_mostly;
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +000083static DEFINE_MUTEX(proto_tab_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -080084
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +020085static atomic_t skbcounter = ATOMIC_INIT(0);
86
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +020087/* af_can socket functions */
Oliver Hartkopp0d665482007-11-16 15:52:17 -080088
Oliver Hartkopp0d665482007-11-16 15:52:17 -080089static void can_sock_destruct(struct sock *sk)
90{
91 skb_queue_purge(&sk->sk_receive_queue);
Willem de Bruijnfd704bd2019-06-07 16:46:07 -040092 skb_queue_purge(&sk->sk_error_queue);
Oliver Hartkopp0d665482007-11-16 15:52:17 -080093}
94
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +000095static const struct can_proto *can_get_proto(int protocol)
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +000096{
Kurt Van Dijck16506292011-05-03 18:40:57 +000097 const struct can_proto *cp;
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +000098
99 rcu_read_lock();
100 cp = rcu_dereference(proto_tab[protocol]);
101 if (cp && !try_module_get(cp->prot->owner))
102 cp = NULL;
103 rcu_read_unlock();
104
105 return cp;
106}
107
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000108static inline void can_put_proto(const struct can_proto *cp)
109{
110 module_put(cp->prot->owner);
111}
112
Eric Paris3f378b62009-11-05 22:18:14 -0800113static int can_create(struct net *net, struct socket *sock, int protocol,
114 int kern)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800115{
116 struct sock *sk;
Kurt Van Dijck16506292011-05-03 18:40:57 +0000117 const struct can_proto *cp;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800118 int err = 0;
119
120 sock->state = SS_UNCONNECTED;
121
122 if (protocol < 0 || protocol >= CAN_NPROTO)
123 return -EINVAL;
124
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000125 cp = can_get_proto(protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000126
Johannes Berg95a5afc2008-10-16 15:24:51 -0700127#ifdef CONFIG_MODULES
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000128 if (!cp) {
129 /* try to load protocol module if kernel is modular */
130
Urs Thuermann5423dd62008-02-07 18:04:21 -0800131 err = request_module("can-proto-%d", protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800132
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200133 /* In case of error we only print a message but don't
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800134 * return the error code immediately. Below we will
135 * return -EPROTONOSUPPORT
136 */
Manuel Zerpiesd751e622011-06-16 02:08:01 +0000137 if (err)
Marc Kleine-Budde1cf571e2019-08-13 09:29:10 +0200138 pr_err_ratelimited("can: request_module (can-proto-%d) failed.\n",
139 protocol);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000140
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000141 cp = can_get_proto(protocol);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800142 }
Urs Thuermann5423dd62008-02-07 18:04:21 -0800143#endif
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800144
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800145 /* check for available protocol and correct usage */
146
147 if (!cp)
148 return -EPROTONOSUPPORT;
149
150 if (cp->type != sock->type) {
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000151 err = -EPROTOTYPE;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800152 goto errout;
153 }
154
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800155 sock->ops = cp->ops;
156
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500157 sk = sk_alloc(net, PF_CAN, GFP_KERNEL, cp->prot, kern);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800158 if (!sk) {
159 err = -ENOMEM;
160 goto errout;
161 }
162
163 sock_init_data(sock, sk);
164 sk->sk_destruct = can_sock_destruct;
165
166 if (sk->sk_prot->init)
167 err = sk->sk_prot->init(sk);
168
169 if (err) {
170 /* release sk on errors */
171 sock_orphan(sk);
172 sock_put(sk);
173 }
174
175 errout:
Kurt Van Dijckc8d55a92011-05-03 18:42:04 +0000176 can_put_proto(cp);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800177 return err;
178}
179
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200180/* af_can tx path */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800181
182/**
183 * can_send - transmit a CAN frame (optional with local loopback)
184 * @skb: pointer to socket buffer with CAN frame in data section
185 * @loop: loopback for listeners on local CAN sockets (recommended default!)
186 *
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700187 * Due to the loopback this routine must not be called from hardirq context.
188 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800189 * Return:
190 * 0 on success
191 * -ENETDOWN when the selected interface is down
192 * -ENOBUFS on full driver queue (see net_xmit_errno())
193 * -ENOMEM when local loopback failed at calling skb_clone()
194 * -EPERM when trying to send on a non-CAN interface
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200195 * -EMSGSIZE CAN frame size is bigger than CAN interface MTU
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700196 * -EINVAL when the skb->data does not contain a valid CAN frame
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800197 */
198int can_send(struct sk_buff *skb, int loop)
199{
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700200 struct sk_buff *newskb = NULL;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200201 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200202 struct can_pkg_stats *pkg_stats = dev_net(skb->dev)->can.pkg_stats;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200203 int err = -EINVAL;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800204
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200205 if (skb->len == CAN_MTU) {
206 skb->protocol = htons(ETH_P_CAN);
207 if (unlikely(cfd->len > CAN_MAX_DLEN))
208 goto inval_skb;
209 } else if (skb->len == CANFD_MTU) {
210 skb->protocol = htons(ETH_P_CANFD);
211 if (unlikely(cfd->len > CANFD_MAX_DLEN))
212 goto inval_skb;
Marc Kleine-Budde8325ce92019-08-13 09:03:55 +0200213 } else {
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200214 goto inval_skb;
Marc Kleine-Budde8325ce92019-08-13 09:03:55 +0200215 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200216
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200217 /* Make sure the CAN frame can pass the selected CAN netdevice.
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200218 * As structs can_frame and canfd_frame are similar, we can provide
219 * CAN FD frames to legacy CAN drivers as long as the length is <= 8
220 */
221 if (unlikely(skb->len > skb->dev->mtu && cfd->len > CAN_MAX_DLEN)) {
222 err = -EMSGSIZE;
223 goto inval_skb;
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700224 }
225
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200226 if (unlikely(skb->dev->type != ARPHRD_CAN)) {
227 err = -EPERM;
228 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800229 }
230
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200231 if (unlikely(!(skb->dev->flags & IFF_UP))) {
232 err = -ENETDOWN;
233 goto inval_skb;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800234 }
235
Oliver Hartkopp9694390162015-02-23 20:37:54 +0100236 skb->ip_summed = CHECKSUM_UNNECESSARY;
237
238 skb_reset_mac_header(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800239 skb_reset_network_header(skb);
240 skb_reset_transport_header(skb);
241
242 if (loop) {
243 /* local loopback of sent CAN frames */
244
245 /* indication for the CAN driver: do loopback */
246 skb->pkt_type = PACKET_LOOPBACK;
247
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200248 /* The reference to the originating sock may be required
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800249 * by the receiving socket to check whether the frame is
250 * its own. Example: can_raw sockopt CAN_RAW_RECV_OWN_MSGS
251 * Therefore we have to ensure that skb->sk remains the
252 * reference to the originating sock by restoring skb->sk
253 * after each skb_clone() or skb_orphan() usage.
254 */
255
256 if (!(skb->dev->flags & IFF_ECHO)) {
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200257 /* If the interface is not capable to do loopback
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800258 * itself, we do it here.
259 */
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700260 newskb = skb_clone(skb, GFP_ATOMIC);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800261 if (!newskb) {
262 kfree_skb(skb);
263 return -ENOMEM;
264 }
265
Oliver Hartkopp0ae89be2014-01-30 10:11:28 +0100266 can_skb_set_owner(newskb, skb->sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800267 newskb->ip_summed = CHECKSUM_UNNECESSARY;
268 newskb->pkt_type = PACKET_BROADCAST;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800269 }
270 } else {
271 /* indication for the CAN driver: no loopback required */
272 skb->pkt_type = PACKET_HOST;
273 }
274
275 /* send to netdevice */
276 err = dev_queue_xmit(skb);
277 if (err > 0)
278 err = net_xmit_errno(err);
279
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700280 if (err) {
Wei Yongjunce030ed2009-02-25 00:35:44 +0000281 kfree_skb(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700282 return err;
283 }
284
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200285 if (newskb)
Oliver Hartkopp481a8192009-09-15 01:31:34 -0700286 netif_rx_ni(newskb);
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700287
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800288 /* update statistics */
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200289 pkg_stats->tx_frames++;
290 pkg_stats->tx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800291
Oliver Hartkoppc2ab7ac2008-05-08 02:49:55 -0700292 return 0;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200293
294inval_skb:
295 kfree_skb(skb);
296 return err;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800297}
298EXPORT_SYMBOL(can_send);
299
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200300/* af_can rx path */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800301
Marc Kleine-Buddefac78502018-10-08 09:02:34 +0200302static struct can_dev_rcv_lists *can_dev_rcv_lists_find(struct net *net,
303 struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800304{
Marc Kleine-Budde8df9ffb2018-10-08 09:02:39 +0200305 if (dev) {
306 struct can_ml_priv *ml_priv = dev->ml_priv;
307 return &ml_priv->dev_rcv_lists;
308 } else {
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200309 return net->can.rx_alldev_list;
Marc Kleine-Budde8df9ffb2018-10-08 09:02:39 +0200310 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800311}
312
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800313/**
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200314 * effhash - hash function for 29 bit CAN identifier reduction
315 * @can_id: 29 bit CAN identifier
316 *
317 * Description:
318 * To reduce the linear traversal in one linked list of _single_ EFF CAN
319 * frame subscriptions the 29 bit identifier is mapped to 10 bits.
320 * (see CAN_EFF_RCV_HASH_BITS definition)
321 *
322 * Return:
323 * Hash value from 0x000 - 0x3FF ( enforced by CAN_EFF_RCV_HASH_BITS mask )
324 */
325static unsigned int effhash(canid_t can_id)
326{
327 unsigned int hash;
328
329 hash = can_id;
330 hash ^= can_id >> CAN_EFF_RCV_HASH_BITS;
331 hash ^= can_id >> (2 * CAN_EFF_RCV_HASH_BITS);
332
333 return hash & ((1 << CAN_EFF_RCV_HASH_BITS) - 1);
334}
335
336/**
Marc Kleine-Budde3ee6d2b2018-10-08 09:02:33 +0200337 * can_rcv_list_find - determine optimal filterlist inside device filter struct
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800338 * @can_id: pointer to CAN identifier of a given can_filter
339 * @mask: pointer to CAN mask of a given can_filter
340 * @d: pointer to the device filter struct
341 *
342 * Description:
343 * Returns the optimal filterlist to reduce the filter handling in the
344 * receive path. This function is called by service functions that need
345 * to register or unregister a can_filter in the filter lists.
346 *
347 * A filter matches in general, when
348 *
349 * <received_can_id> & mask == can_id & mask
350 *
351 * so every bit set in the mask (even CAN_EFF_FLAG, CAN_RTR_FLAG) describe
352 * relevant bits for the filter.
353 *
354 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200355 * filter for error messages (CAN_ERR_FLAG bit set in mask). For error msg
356 * frames there is a special filterlist and a special rx path filter handling.
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800357 *
358 * Return:
359 * Pointer to optimal filterlist for the given can_id/mask pair.
360 * Constistency checked mask.
361 * Reduced can_id to have a preprocessed filter compare value.
362 */
Marc Kleine-Budde3ee6d2b2018-10-08 09:02:33 +0200363static struct hlist_head *can_rcv_list_find(canid_t *can_id, canid_t *mask,
364 struct can_dev_rcv_lists *dev_rcv_lists)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800365{
366 canid_t inv = *can_id & CAN_INV_FILTER; /* save flag before masking */
367
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200368 /* filter for error message frames in extra filterlist */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800369 if (*mask & CAN_ERR_FLAG) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800370 /* clear CAN_ERR_FLAG in filter entry */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800371 *mask &= CAN_ERR_MASK;
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200372 return &dev_rcv_lists->rx[RX_ERR];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800373 }
374
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800375 /* with cleared CAN_ERR_FLAG we have a simple mask/value filterpair */
376
377#define CAN_EFF_RTR_FLAGS (CAN_EFF_FLAG | CAN_RTR_FLAG)
378
379 /* ensure valid values in can_mask for 'SFF only' frame filtering */
380 if ((*mask & CAN_EFF_FLAG) && !(*can_id & CAN_EFF_FLAG))
381 *mask &= (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800382
383 /* reduce condition testing at receive time */
384 *can_id &= *mask;
385
386 /* inverse can_id/can_mask filter */
387 if (inv)
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200388 return &dev_rcv_lists->rx[RX_INV];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800389
390 /* mask == 0 => no condition testing at receive time */
391 if (!(*mask))
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200392 return &dev_rcv_lists->rx[RX_ALL];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800393
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800394 /* extra filterlists for the subscription of a single non-RTR can_id */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800395 if (((*mask & CAN_EFF_RTR_FLAGS) == CAN_EFF_RTR_FLAGS) &&
396 !(*can_id & CAN_RTR_FLAG)) {
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800397 if (*can_id & CAN_EFF_FLAG) {
Oliver Hartkopp45c70022014-04-02 20:25:26 +0200398 if (*mask == (CAN_EFF_MASK | CAN_EFF_RTR_FLAGS))
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200399 return &dev_rcv_lists->rx_eff[effhash(*can_id)];
Oliver Hartkoppd253eee2008-12-03 15:52:35 -0800400 } else {
401 if (*mask == (CAN_SFF_MASK | CAN_EFF_RTR_FLAGS))
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200402 return &dev_rcv_lists->rx_sff[*can_id];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800403 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800404 }
405
406 /* default: filter via can_id/can_mask */
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200407 return &dev_rcv_lists->rx[RX_FIL];
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800408}
409
410/**
411 * can_rx_register - subscribe CAN frames from a specific interface
412 * @dev: pointer to netdevice (NULL => subcribe from 'all' CAN devices list)
413 * @can_id: CAN identifier (see description)
414 * @mask: CAN mask (see description)
415 * @func: callback function on filter match
416 * @data: returned parameter for callback function
Maxime Jayat3f794102013-10-12 01:29:46 +0200417 * @ident: string for calling module identification
Eric Dumazetf1712c72017-01-27 08:11:44 -0800418 * @sk: socket pointer (might be NULL)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800419 *
420 * Description:
421 * Invokes the callback function with the received sk_buff and the given
422 * parameter 'data' on a matching receive filter. A filter matches, when
423 *
424 * <received_can_id> & mask == can_id & mask
425 *
426 * The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200427 * filter for error message frames (CAN_ERR_FLAG bit set in mask).
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800428 *
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800429 * The provided pointer to the sk_buff is guaranteed to be valid as long as
430 * the callback function is running. The callback function must *not* free
431 * the given sk_buff while processing it's task. When the given sk_buff is
432 * needed after the end of the callback function it must be cloned inside
433 * the callback function with skb_clone().
434 *
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800435 * Return:
436 * 0 on success
437 * -ENOMEM on missing cache mem to create subscription entry
438 * -ENODEV unknown device
439 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100440int can_rx_register(struct net *net, struct net_device *dev, canid_t can_id,
441 canid_t mask, void (*func)(struct sk_buff *, void *),
442 void *data, char *ident, struct sock *sk)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800443{
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200444 struct receiver *rcv;
445 struct hlist_head *rcv_list;
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200446 struct can_dev_rcv_lists *dev_rcv_lists;
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200447 struct can_rcv_lists_stats *rcv_lists_stats = net->can.rcv_lists_stats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800448 int err = 0;
449
450 /* insert new receiver (dev,canid,mask) -> (func,data) */
451
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800452 if (dev && dev->type != ARPHRD_CAN)
453 return -ENODEV;
454
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100455 if (dev && !net_eq(net, dev_net(dev)))
456 return -ENODEV;
457
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200458 rcv = kmem_cache_alloc(rcv_cache, GFP_KERNEL);
459 if (!rcv)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800460 return -ENOMEM;
461
Oleksij Rempel24efc6d2018-10-30 09:00:34 +0100462 spin_lock_bh(&net->can.rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800463
Marc Kleine-Buddefac78502018-10-08 09:02:34 +0200464 dev_rcv_lists = can_dev_rcv_lists_find(net, dev);
Marc Kleine-Buddebdfb5762018-10-08 09:02:40 +0200465 rcv_list = can_rcv_list_find(&can_id, &mask, dev_rcv_lists);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800466
Marc Kleine-Buddebdfb5762018-10-08 09:02:40 +0200467 rcv->can_id = can_id;
468 rcv->mask = mask;
469 rcv->matches = 0;
470 rcv->func = func;
471 rcv->data = data;
472 rcv->ident = ident;
473 rcv->sk = sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800474
Marc Kleine-Buddebdfb5762018-10-08 09:02:40 +0200475 hlist_add_head_rcu(&rcv->list, rcv_list);
476 dev_rcv_lists->entries++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800477
Marc Kleine-Buddebdfb5762018-10-08 09:02:40 +0200478 rcv_lists_stats->rcv_entries++;
479 rcv_lists_stats->rcv_entries_max = max(rcv_lists_stats->rcv_entries_max,
480 rcv_lists_stats->rcv_entries);
Oleksij Rempel24efc6d2018-10-30 09:00:34 +0100481 spin_unlock_bh(&net->can.rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800482
483 return err;
484}
485EXPORT_SYMBOL(can_rx_register);
486
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200487/* can_rx_delete_receiver - rcu callback for single receiver entry removal */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800488static void can_rx_delete_receiver(struct rcu_head *rp)
489{
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200490 struct receiver *rcv = container_of(rp, struct receiver, rcu);
491 struct sock *sk = rcv->sk;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800492
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200493 kmem_cache_free(rcv_cache, rcv);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800494 if (sk)
495 sock_put(sk);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800496}
497
498/**
499 * can_rx_unregister - unsubscribe CAN frames from a specific interface
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800500 * @dev: pointer to netdevice (NULL => unsubscribe from 'all' CAN devices list)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800501 * @can_id: CAN identifier
502 * @mask: CAN mask
503 * @func: callback function on filter match
504 * @data: returned parameter for callback function
505 *
506 * Description:
507 * Removes subscription entry depending on given (subscription) values.
508 */
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100509void can_rx_unregister(struct net *net, struct net_device *dev, canid_t can_id,
510 canid_t mask, void (*func)(struct sk_buff *, void *),
511 void *data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800512{
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200513 struct receiver *rcv = NULL;
514 struct hlist_head *rcv_list;
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200515 struct can_rcv_lists_stats *rcv_lists_stats = net->can.rcv_lists_stats;
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200516 struct can_dev_rcv_lists *dev_rcv_lists;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800517
Oliver Hartkopp8b640562010-02-02 07:21:34 -0800518 if (dev && dev->type != ARPHRD_CAN)
519 return;
520
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100521 if (dev && !net_eq(net, dev_net(dev)))
522 return;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800523
Oleksij Rempel24efc6d2018-10-30 09:00:34 +0100524 spin_lock_bh(&net->can.rcvlists_lock);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100525
Marc Kleine-Buddefac78502018-10-08 09:02:34 +0200526 dev_rcv_lists = can_dev_rcv_lists_find(net, dev);
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200527 rcv_list = can_rcv_list_find(&can_id, &mask, dev_rcv_lists);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800528
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200529 /* Search the receiver list for the item to delete. This should
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800530 * exist, since no receiver may be unregistered that hasn't
531 * been registered before.
532 */
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200533 hlist_for_each_entry_rcu(rcv, rcv_list, list) {
534 if (rcv->can_id == can_id && rcv->mask == mask &&
535 rcv->func == func && rcv->data == data)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800536 break;
537 }
538
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200539 /* Check for bugs in CAN protocol implementations using af_can.c:
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200540 * 'rcv' will be NULL if no matching list item was found for removal.
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800541 */
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200542 if (!rcv) {
Marc Kleine-Budde1cf571e2019-08-13 09:29:10 +0200543 WARN(1, "BUG: receive list entry not found for dev %s, id %03X, mask %03X\n",
544 DNAME(dev), can_id, mask);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800545 goto out;
546 }
547
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200548 hlist_del_rcu(&rcv->list);
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200549 dev_rcv_lists->entries--;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800550
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200551 if (rcv_lists_stats->rcv_entries > 0)
552 rcv_lists_stats->rcv_entries--;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800553
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800554 out:
Oleksij Rempel24efc6d2018-10-30 09:00:34 +0100555 spin_unlock_bh(&net->can.rcvlists_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800556
557 /* schedule the receiver item for deletion */
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200558 if (rcv) {
559 if (rcv->sk)
560 sock_hold(rcv->sk);
561 call_rcu(&rcv->rcu, can_rx_delete_receiver);
Eric Dumazetf1712c72017-01-27 08:11:44 -0800562 }
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800563}
564EXPORT_SYMBOL(can_rx_unregister);
565
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200566static inline void deliver(struct sk_buff *skb, struct receiver *rcv)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800567{
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200568 rcv->func(skb, rcv->data);
569 rcv->matches++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800570}
571
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200572static int can_rcv_filter(struct can_dev_rcv_lists *dev_rcv_lists, struct sk_buff *skb)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800573{
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200574 struct receiver *rcv;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800575 int matches = 0;
576 struct can_frame *cf = (struct can_frame *)skb->data;
577 canid_t can_id = cf->can_id;
578
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200579 if (dev_rcv_lists->entries == 0)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800580 return 0;
581
582 if (can_id & CAN_ERR_FLAG) {
Oliver Hartkoppd6e640f2012-05-08 22:20:33 +0200583 /* check for error message frame entries only */
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200584 hlist_for_each_entry_rcu(rcv, &dev_rcv_lists->rx[RX_ERR], list) {
585 if (can_id & rcv->mask) {
586 deliver(skb, rcv);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800587 matches++;
588 }
589 }
590 return matches;
591 }
592
593 /* check for unfiltered entries */
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200594 hlist_for_each_entry_rcu(rcv, &dev_rcv_lists->rx[RX_ALL], list) {
595 deliver(skb, rcv);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800596 matches++;
597 }
598
599 /* check for can_id/mask entries */
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200600 hlist_for_each_entry_rcu(rcv, &dev_rcv_lists->rx[RX_FIL], list) {
601 if ((can_id & rcv->mask) == rcv->can_id) {
602 deliver(skb, rcv);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800603 matches++;
604 }
605 }
606
607 /* check for inverted can_id/mask entries */
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200608 hlist_for_each_entry_rcu(rcv, &dev_rcv_lists->rx[RX_INV], list) {
609 if ((can_id & rcv->mask) != rcv->can_id) {
610 deliver(skb, rcv);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800611 matches++;
612 }
613 }
614
Oliver Hartkoppf706644d2008-12-04 15:01:08 -0800615 /* check filterlists for single non-RTR can_ids */
616 if (can_id & CAN_RTR_FLAG)
617 return matches;
618
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800619 if (can_id & CAN_EFF_FLAG) {
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200620 hlist_for_each_entry_rcu(rcv, &dev_rcv_lists->rx_eff[effhash(can_id)], list) {
621 if (rcv->can_id == can_id) {
622 deliver(skb, rcv);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800623 matches++;
624 }
625 }
626 } else {
627 can_id &= CAN_SFF_MASK;
Marc Kleine-Budde6625a182018-10-08 09:02:35 +0200628 hlist_for_each_entry_rcu(rcv, &dev_rcv_lists->rx_sff[can_id], list) {
629 deliver(skb, rcv);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800630 matches++;
631 }
632 }
633
634 return matches;
635}
636
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200637static void can_receive(struct sk_buff *skb, struct net_device *dev)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800638{
Marc Kleine-Budde56be1d52018-10-08 09:02:31 +0200639 struct can_dev_rcv_lists *dev_rcv_lists;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200640 struct net *net = dev_net(dev);
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200641 struct can_pkg_stats *pkg_stats = net->can.pkg_stats;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800642 int matches;
643
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800644 /* update statistics */
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200645 pkg_stats->rx_frames++;
646 pkg_stats->rx_frames_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800647
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200648 /* create non-zero unique skb identifier together with *skb */
649 while (!(can_skb_prv(skb)->skbcnt))
650 can_skb_prv(skb)->skbcnt = atomic_inc_return(&skbcounter);
651
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800652 rcu_read_lock();
653
654 /* deliver the packet to sockets listening on all devices */
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200655 matches = can_rcv_filter(net->can.rx_alldev_list, skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800656
657 /* find receive list for this device */
Marc Kleine-Buddefac78502018-10-08 09:02:34 +0200658 dev_rcv_lists = can_dev_rcv_lists_find(net, dev);
Marc Kleine-Buddebdfb5762018-10-08 09:02:40 +0200659 matches += can_rcv_filter(dev_rcv_lists, skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800660
661 rcu_read_unlock();
662
Oliver Hartkopp62bcaa12009-04-17 01:38:46 -0700663 /* consume the skbuff allocated by the netdevice driver */
664 consume_skb(skb);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800665
666 if (matches > 0) {
Marc Kleine-Buddee2c1f5c2018-10-08 09:02:28 +0200667 pkg_stats->matches++;
668 pkg_stats->matches_delta++;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800669 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200670}
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800671
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200672static int can_rcv(struct sk_buff *skb, struct net_device *dev,
673 struct packet_type *pt, struct net_device *orig_dev)
674{
675 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
676
Marc Kleine-Budde8cb68752018-01-16 19:30:14 +0100677 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CAN_MTU ||
678 cfd->len > CAN_MAX_DLEN)) {
679 pr_warn_once("PF_CAN: dropped non conform CAN skbuf: dev type %d, len %d, datalen %d\n",
680 dev->type, skb->len, cfd->len);
681 kfree_skb(skb);
682 return NET_RX_DROP;
683 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200684
685 can_receive(skb, dev);
686 return NET_RX_SUCCESS;
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200687}
688
689static int canfd_rcv(struct sk_buff *skb, struct net_device *dev,
Marc Kleine-Buddeb11844b2019-08-13 09:06:17 +0200690 struct packet_type *pt, struct net_device *orig_dev)
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200691{
692 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
693
Marc Kleine-Budded4689842018-01-16 19:30:14 +0100694 if (unlikely(dev->type != ARPHRD_CAN || skb->len != CANFD_MTU ||
695 cfd->len > CANFD_MAX_DLEN)) {
696 pr_warn_once("PF_CAN: dropped non conform CAN FD skbuf: dev type %d, len %d, datalen %d\n",
697 dev->type, skb->len, cfd->len);
698 kfree_skb(skb);
699 return NET_RX_DROP;
700 }
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200701
702 can_receive(skb, dev);
Oliver Hartkopp6ca8b992009-08-29 06:45:09 +0000703 return NET_RX_SUCCESS;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800704}
705
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200706/* af_can protocol functions */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800707
708/**
709 * can_proto_register - register CAN transport protocol
710 * @cp: pointer to CAN protocol structure
711 *
712 * Return:
713 * 0 on success
714 * -EINVAL invalid (out of range) protocol number
715 * -EBUSY protocol already in use
716 * -ENOBUF if proto_register() fails
717 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000718int can_proto_register(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800719{
720 int proto = cp->protocol;
721 int err = 0;
722
723 if (proto < 0 || proto >= CAN_NPROTO) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000724 pr_err("can: protocol number %d out of range\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800725 return -EINVAL;
726 }
727
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800728 err = proto_register(cp->prot, 0);
729 if (err < 0)
730 return err;
731
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000732 mutex_lock(&proto_tab_lock);
733
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200734 if (rcu_access_pointer(proto_tab[proto])) {
Valentin Ilief4f3efd2013-03-10 11:15:13 +0000735 pr_err("can: protocol %d already registered\n", proto);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800736 err = -EBUSY;
Marc Kleine-Budde8325ce92019-08-13 09:03:55 +0200737 } else {
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000738 RCU_INIT_POINTER(proto_tab[proto], cp);
Marc Kleine-Budde8325ce92019-08-13 09:03:55 +0200739 }
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800740
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000741 mutex_unlock(&proto_tab_lock);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800742
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800743 if (err < 0)
744 proto_unregister(cp->prot);
745
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800746 return err;
747}
748EXPORT_SYMBOL(can_proto_register);
749
750/**
751 * can_proto_unregister - unregister CAN transport protocol
752 * @cp: pointer to CAN protocol structure
753 */
Kurt Van Dijck16506292011-05-03 18:40:57 +0000754void can_proto_unregister(const struct can_proto *cp)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800755{
756 int proto = cp->protocol;
757
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000758 mutex_lock(&proto_tab_lock);
Marc Kleine-Buddecae1d5b2017-10-17 07:18:35 +0200759 BUG_ON(rcu_access_pointer(proto_tab[proto]) != cp);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000760 RCU_INIT_POINTER(proto_tab[proto], NULL);
Oliver Hartkopp1ca050d2011-04-05 08:01:16 +0000761 mutex_unlock(&proto_tab_lock);
762
763 synchronize_rcu();
Urs Thuermanna2fea5f2008-02-07 18:04:45 -0800764
765 proto_unregister(cp->prot);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800766}
767EXPORT_SYMBOL(can_proto_unregister);
768
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200769/* af_can notifier to create/remove CAN netdevice specific structs */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800770static int can_notifier(struct notifier_block *nb, unsigned long msg,
Jiri Pirko351638e2013-05-28 01:30:21 +0000771 void *ptr)
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800772{
Jiri Pirko351638e2013-05-28 01:30:21 +0000773 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800774
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800775 if (dev->type != ARPHRD_CAN)
776 return NOTIFY_DONE;
777
778 switch (msg) {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800779 case NETDEV_REGISTER:
Marc Kleine-Budde8df9ffb2018-10-08 09:02:39 +0200780 WARN(!dev->ml_priv,
781 "No CAN mid layer private allocated, please fix your driver and use alloc_candev()!\n");
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800782 break;
783 }
784
785 return NOTIFY_DONE;
786}
787
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100788static int can_pernet_init(struct net *net)
789{
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200790 spin_lock_init(&net->can.rcvlists_lock);
791 net->can.rx_alldev_list =
792 kzalloc(sizeof(*net->can.rx_alldev_list), GFP_KERNEL);
793 if (!net->can.rx_alldev_list)
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200794 goto out;
Marc Kleine-Budde23410862018-10-08 09:02:27 +0200795 net->can.pkg_stats = kzalloc(sizeof(*net->can.pkg_stats), GFP_KERNEL);
796 if (!net->can.pkg_stats)
797 goto out_free_rx_alldev_list;
798 net->can.rcv_lists_stats = kzalloc(sizeof(*net->can.rcv_lists_stats), GFP_KERNEL);
799 if (!net->can.rcv_lists_stats)
800 goto out_free_pkg_stats;
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200801
802 if (IS_ENABLED(CONFIG_PROC_FS)) {
803 /* the statistics are updated every second (timer triggered) */
804 if (stats_timer) {
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200805 timer_setup(&net->can.stattimer, can_stat_update,
Kees Cook1fccb562017-10-16 17:29:06 -0700806 0);
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200807 mod_timer(&net->can.stattimer,
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200808 round_jiffies(jiffies + HZ));
809 }
Marc Kleine-Budde23410862018-10-08 09:02:27 +0200810 net->can.pkg_stats->jiffies_init = jiffies;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100811 can_init_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200812 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100813
814 return 0;
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200815
Marc Kleine-Budde23410862018-10-08 09:02:27 +0200816 out_free_pkg_stats:
817 kfree(net->can.pkg_stats);
818 out_free_rx_alldev_list:
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200819 kfree(net->can.rx_alldev_list);
Marc Kleine-Budde5a606222017-07-29 11:51:01 +0200820 out:
821 return -ENOMEM;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100822}
823
824static void can_pernet_exit(struct net *net)
825{
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200826 if (IS_ENABLED(CONFIG_PROC_FS)) {
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100827 can_remove_proc(net);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200828 if (stats_timer)
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200829 del_timer_sync(&net->can.stattimer);
Oliver Hartkoppcb5635a2017-04-25 08:19:41 +0200830 }
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100831
Marc Kleine-Budde564577d2018-10-08 09:02:30 +0200832 kfree(net->can.rx_alldev_list);
Marc Kleine-Budde23410862018-10-08 09:02:27 +0200833 kfree(net->can.pkg_stats);
834 kfree(net->can.rcv_lists_stats);
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100835}
836
Marc Kleine-Budde147d9e92019-07-24 14:16:29 +0200837/* af_can module init/exit functions */
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800838
839static struct packet_type can_packet __read_mostly = {
Harvey Harrison09640e632009-02-01 00:45:17 -0800840 .type = cpu_to_be16(ETH_P_CAN),
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800841 .func = can_rcv,
842};
843
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200844static struct packet_type canfd_packet __read_mostly = {
845 .type = cpu_to_be16(ETH_P_CANFD),
846 .func = canfd_rcv,
847};
848
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000849static const struct net_proto_family can_family_ops = {
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800850 .family = PF_CAN,
851 .create = can_create,
852 .owner = THIS_MODULE,
853};
854
855/* notifier block for netdevice event */
856static struct notifier_block can_netdev_notifier __read_mostly = {
857 .notifier_call = can_notifier,
858};
859
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100860static struct pernet_operations can_pernet_ops __read_mostly = {
861 .init = can_pernet_init,
862 .exit = can_pernet_exit,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100863};
864
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800865static __init int can_init(void)
866{
YueHaibingc5a3aed2019-05-16 22:36:26 +0800867 int err;
868
Oliver Hartkopp7c941632012-06-13 20:04:33 +0200869 /* check for correct padding to be able to use the structs similarly */
870 BUILD_BUG_ON(offsetof(struct can_frame, can_dlc) !=
871 offsetof(struct canfd_frame, len) ||
872 offsetof(struct can_frame, data) !=
873 offsetof(struct canfd_frame, data));
874
Jeremiah Mahlerb111b782014-11-21 23:42:35 -0800875 pr_info("can: controller area network core (" CAN_VERSION_STRING ")\n");
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800876
877 rcv_cache = kmem_cache_create("can_receiver", sizeof(struct receiver),
878 0, 0, NULL);
879 if (!rcv_cache)
880 return -ENOMEM;
881
YueHaibingc5a3aed2019-05-16 22:36:26 +0800882 err = register_pernet_subsys(&can_pernet_ops);
883 if (err)
884 goto out_pernet;
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100885
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800886 /* protocol register */
YueHaibingc5a3aed2019-05-16 22:36:26 +0800887 err = sock_register(&can_family_ops);
888 if (err)
889 goto out_sock;
890 err = register_netdevice_notifier(&can_netdev_notifier);
891 if (err)
892 goto out_notifier;
893
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800894 dev_add_pack(&can_packet);
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200895 dev_add_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800896
897 return 0;
YueHaibingc5a3aed2019-05-16 22:36:26 +0800898
899out_notifier:
900 sock_unregister(PF_CAN);
901out_sock:
902 unregister_pernet_subsys(&can_pernet_ops);
903out_pernet:
904 kmem_cache_destroy(rcv_cache);
905
906 return err;
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800907}
908
909static __exit void can_exit(void)
910{
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800911 /* protocol unregister */
Oliver Hartkopp8b019392012-06-13 20:33:02 +0200912 dev_remove_pack(&canfd_packet);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800913 dev_remove_pack(&can_packet);
914 unregister_netdevice_notifier(&can_netdev_notifier);
915 sock_unregister(PF_CAN);
916
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100917 unregister_pernet_subsys(&can_pernet_ops);
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800918
Jesper Dangaard Brouer382bfee2009-06-08 03:11:38 +0000919 rcu_barrier(); /* Wait for completion of call_rcu()'s */
920
Oliver Hartkopp0d665482007-11-16 15:52:17 -0800921 kmem_cache_destroy(rcv_cache);
922}
923
924module_init(can_init);
925module_exit(can_exit);