blob: 79bb8afa9c0c0990729a781acc7220a78ee317af [file] [log] [blame]
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001/*
2 * bcm.c - Broadcast Manager to filter/send (cyclic) CAN content
3 *
Oliver Hartkopp384317e2017-04-25 08:19:42 +02004 * Copyright (c) 2002-2017 Volkswagen Group Electronic Research
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08005 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of Volkswagen nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * Alternatively, provided that this notice is retained in full, this
20 * software may be distributed under the terms of the GNU General
21 * Public License ("GPL") version 2, in which case the provisions of the
22 * GPL apply INSTEAD OF those given above.
23 *
24 * The provided data structures and external interfaces from this code
25 * are not restricted to be used by modules with a GPL compatible license.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
38 * DAMAGE.
39 *
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080040 */
41
42#include <linux/module.h>
43#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000044#include <linux/interrupt.h>
Oliver Hartkopp73e87e02008-04-15 19:29:14 -070045#include <linux/hrtimer.h>
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080046#include <linux/list.h>
47#include <linux/proc_fs.h>
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +000048#include <linux/seq_file.h>
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080049#include <linux/uio.h>
50#include <linux/net.h>
51#include <linux/netdevice.h>
52#include <linux/socket.h>
53#include <linux/if_arp.h>
54#include <linux/skbuff.h>
55#include <linux/can.h>
56#include <linux/can/core.h>
Oliver Hartkopp156c2bb2013-01-17 18:43:39 +010057#include <linux/can/skb.h>
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080058#include <linux/can/bcm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090059#include <linux/slab.h>
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080060#include <net/sock.h>
61#include <net/net_namespace.h>
62
Oliver Hartkopp5b75c492010-08-11 16:12:35 -070063/*
64 * To send multiple CAN frame content within TX_SETUP or to filter
65 * CAN messages with multiplex index within RX_SETUP, the number of
66 * different filters is limited to 256 due to the one byte index value.
67 */
68#define MAX_NFRAMES 256
69
Oliver Hartkopp576f4742019-01-13 19:31:43 +010070/* limit timers to 400 days for sending/timeouts */
71#define BCM_TIMER_SEC_MAX (400 * 24 * 60 * 60)
72
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +020073/* use of last_frames[index].flags */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080074#define RX_RECV 0x40 /* received data for this element */
75#define RX_THR 0x80 /* element not been sent due to throttle feature */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +020076#define BCM_CAN_FLAGS_MASK 0x3F /* to clean private flags after usage */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080077
78/* get best masking value for can_rx_register() for a given single can_id */
Oliver Hartkoppd253eee2008-12-03 15:52:35 -080079#define REGMASK(id) ((id & CAN_EFF_FLAG) ? \
80 (CAN_EFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG) : \
81 (CAN_SFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG))
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080082
Oliver Hartkopp384317e2017-04-25 08:19:42 +020083#define CAN_BCM_VERSION "20170425"
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080084
85MODULE_DESCRIPTION("PF_CAN broadcast manager protocol");
86MODULE_LICENSE("Dual BSD/GPL");
87MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
Lothar Waßmannb13bb2e2009-07-14 23:12:25 +000088MODULE_ALIAS("can-proto-2");
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080089
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +020090/*
91 * easy access to the first 64 bit of can(fd)_frame payload. cp->data is
92 * 64 bit aligned so the offset has to be multiples of 8 which is ensured
93 * by the only callers in bcm_rx_cmp_to_index() bcm_rx_handler().
94 */
95static inline u64 get_u64(const struct canfd_frame *cp, int offset)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080096{
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +020097 return *(u64 *)(cp->data + offset);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080098}
99
100struct bcm_op {
101 struct list_head list;
102 int ifindex;
103 canid_t can_id;
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700104 u32 flags;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800105 unsigned long frames_abs, frames_filtered;
Arnd Bergmannba61a8d2015-09-30 13:26:42 +0200106 struct bcm_timeval ival1, ival2;
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700107 struct hrtimer timer, thrtimer;
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800108 struct tasklet_struct tsklet, thrtsklet;
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700109 ktime_t rx_stamp, kt_ival1, kt_ival2, kt_lastmsg;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800110 int rx_ifindex;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200111 int cfsiz;
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700112 u32 count;
113 u32 nframes;
114 u32 currframe;
Oliver Hartkopp5499a6b2016-11-23 14:33:25 +0100115 /* void pointers to arrays of struct can[fd]_frame */
116 void *frames;
117 void *last_frames;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200118 struct canfd_frame sframe;
119 struct canfd_frame last_sframe;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800120 struct sock *sk;
121 struct net_device *rx_reg_dev;
122};
123
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800124struct bcm_sock {
125 struct sock sk;
126 int bound;
127 int ifindex;
128 struct notifier_block notifier;
129 struct list_head rx_ops;
130 struct list_head tx_ops;
131 unsigned long dropped_usr_msgs;
132 struct proc_dir_entry *bcm_proc_read;
Dan Rosenberg9f260e02010-12-26 06:54:53 +0000133 char procname [32]; /* inode number in decimal with \0 */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800134};
135
136static inline struct bcm_sock *bcm_sk(const struct sock *sk)
137{
138 return (struct bcm_sock *)sk;
139}
140
Arnd Bergmannba61a8d2015-09-30 13:26:42 +0200141static inline ktime_t bcm_timeval_to_ktime(struct bcm_timeval tv)
142{
143 return ktime_set(tv.tv_sec, tv.tv_usec * NSEC_PER_USEC);
144}
145
Oliver Hartkopp576f4742019-01-13 19:31:43 +0100146/* check limitations for timeval provided by user */
147static bool bcm_is_invalid_tv(struct bcm_msg_head *msg_head)
148{
149 if ((msg_head->ival1.tv_sec < 0) ||
150 (msg_head->ival1.tv_sec > BCM_TIMER_SEC_MAX) ||
151 (msg_head->ival1.tv_usec < 0) ||
152 (msg_head->ival1.tv_usec >= USEC_PER_SEC) ||
153 (msg_head->ival2.tv_sec < 0) ||
154 (msg_head->ival2.tv_sec > BCM_TIMER_SEC_MAX) ||
155 (msg_head->ival2.tv_usec < 0) ||
156 (msg_head->ival2.tv_usec >= USEC_PER_SEC))
157 return true;
158
159 return false;
160}
161
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200162#define CFSIZ(flags) ((flags & CAN_FD_FRAME) ? CANFD_MTU : CAN_MTU)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800163#define OPSIZ sizeof(struct bcm_op)
164#define MHSIZ sizeof(struct bcm_msg_head)
165
166/*
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800167 * procfs functions
168 */
Oliver Hartkoppc2701b32017-04-26 20:14:34 +0200169#if IS_ENABLED(CONFIG_PROC_FS)
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200170static char *bcm_proc_getifname(struct net *net, char *result, int ifindex)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800171{
172 struct net_device *dev;
173
174 if (!ifindex)
175 return "any";
176
stephen hemmingerff879eb2009-11-10 07:54:56 +0000177 rcu_read_lock();
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200178 dev = dev_get_by_index_rcu(net, ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800179 if (dev)
Eric Dumazet6755aeb2009-11-06 00:23:01 +0000180 strcpy(result, dev->name);
181 else
182 strcpy(result, "???");
stephen hemmingerff879eb2009-11-10 07:54:56 +0000183 rcu_read_unlock();
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800184
Eric Dumazet6755aeb2009-11-06 00:23:01 +0000185 return result;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800186}
187
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000188static int bcm_proc_show(struct seq_file *m, void *v)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800189{
Eric Dumazet6755aeb2009-11-06 00:23:01 +0000190 char ifname[IFNAMSIZ];
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200191 struct net *net = m->private;
192 struct sock *sk = (struct sock *)PDE_DATA(m->file->f_inode);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800193 struct bcm_sock *bo = bcm_sk(sk);
194 struct bcm_op *op;
195
Dan Rosenberg71338aa2011-05-23 12:17:35 +0000196 seq_printf(m, ">>> socket %pK", sk->sk_socket);
197 seq_printf(m, " / sk %pK", sk);
198 seq_printf(m, " / bo %pK", bo);
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000199 seq_printf(m, " / dropped %lu", bo->dropped_usr_msgs);
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200200 seq_printf(m, " / bound %s", bcm_proc_getifname(net, ifname, bo->ifindex));
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000201 seq_printf(m, " <<<\n");
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800202
203 list_for_each_entry(op, &bo->rx_ops, list) {
204
205 unsigned long reduction;
206
207 /* print only active entries & prevent division by zero */
208 if (!op->frames_abs)
209 continue;
210
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200211 seq_printf(m, "rx_op: %03X %-5s ", op->can_id,
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200212 bcm_proc_getifname(net, ifname, op->ifindex));
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200213
214 if (op->flags & CAN_FD_FRAME)
215 seq_printf(m, "(%u)", op->nframes);
216 else
217 seq_printf(m, "[%u]", op->nframes);
218
219 seq_printf(m, "%c ", (op->flags & RX_CHECK_DLC) ? 'd' : ' ');
220
Thomas Gleixner2456e852016-12-25 11:38:40 +0100221 if (op->kt_ival1)
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000222 seq_printf(m, "timeo=%lld ",
Oliver Hartkopp95acb492016-06-17 15:35:24 +0200223 (long long)ktime_to_us(op->kt_ival1));
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800224
Thomas Gleixner2456e852016-12-25 11:38:40 +0100225 if (op->kt_ival2)
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000226 seq_printf(m, "thr=%lld ",
Oliver Hartkopp95acb492016-06-17 15:35:24 +0200227 (long long)ktime_to_us(op->kt_ival2));
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800228
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000229 seq_printf(m, "# recv %ld (%ld) => reduction: ",
Oliver Hartkopp95acb492016-06-17 15:35:24 +0200230 op->frames_filtered, op->frames_abs);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800231
232 reduction = 100 - (op->frames_filtered * 100) / op->frames_abs;
233
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000234 seq_printf(m, "%s%ld%%\n",
Oliver Hartkopp95acb492016-06-17 15:35:24 +0200235 (reduction == 100) ? "near " : "", reduction);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800236 }
237
238 list_for_each_entry(op, &bo->tx_ops, list) {
239
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200240 seq_printf(m, "tx_op: %03X %s ", op->can_id,
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200241 bcm_proc_getifname(net, ifname, op->ifindex));
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200242
243 if (op->flags & CAN_FD_FRAME)
244 seq_printf(m, "(%u) ", op->nframes);
245 else
246 seq_printf(m, "[%u] ", op->nframes);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800247
Thomas Gleixner2456e852016-12-25 11:38:40 +0100248 if (op->kt_ival1)
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000249 seq_printf(m, "t1=%lld ",
Oliver Hartkopp95acb492016-06-17 15:35:24 +0200250 (long long)ktime_to_us(op->kt_ival1));
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700251
Thomas Gleixner2456e852016-12-25 11:38:40 +0100252 if (op->kt_ival2)
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000253 seq_printf(m, "t2=%lld ",
Oliver Hartkopp95acb492016-06-17 15:35:24 +0200254 (long long)ktime_to_us(op->kt_ival2));
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800255
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000256 seq_printf(m, "# sent %ld\n", op->frames_abs);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800257 }
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000258 seq_putc(m, '\n');
259 return 0;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800260}
Oliver Hartkoppc2701b32017-04-26 20:14:34 +0200261#endif /* CONFIG_PROC_FS */
Alexey Dobriyanea00b8e2009-08-28 09:57:21 +0000262
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800263/*
264 * bcm_can_tx - send the (next) CAN frame to the appropriate CAN interface
265 * of the given bcm tx op
266 */
267static void bcm_can_tx(struct bcm_op *op)
268{
269 struct sk_buff *skb;
270 struct net_device *dev;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200271 struct canfd_frame *cf = op->frames + op->cfsiz * op->currframe;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800272
273 /* no target device? => exit */
274 if (!op->ifindex)
275 return;
276
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200277 dev = dev_get_by_index(sock_net(op->sk), op->ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800278 if (!dev) {
279 /* RFC: should this bcm_op remove itself here? */
280 return;
281 }
282
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200283 skb = alloc_skb(op->cfsiz + sizeof(struct can_skb_priv), gfp_any());
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800284 if (!skb)
285 goto out;
286
Oliver Hartkopp2bf34402013-01-28 08:33:33 +0000287 can_skb_reserve(skb);
288 can_skb_prv(skb)->ifindex = dev->ifindex;
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +0200289 can_skb_prv(skb)->skbcnt = 0;
Oliver Hartkopp156c2bb2013-01-17 18:43:39 +0100290
Johannes Berg59ae1d12017-06-16 14:29:20 +0200291 skb_put_data(skb, cf, op->cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800292
293 /* send with loopback */
294 skb->dev = dev;
Oliver Hartkopp0ae89be2014-01-30 10:11:28 +0100295 can_skb_set_owner(skb, op->sk);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800296 can_send(skb, 1);
297
298 /* update statistics */
299 op->currframe++;
300 op->frames_abs++;
301
302 /* reached last frame? */
303 if (op->currframe >= op->nframes)
304 op->currframe = 0;
Oliver Hartkopp95acb492016-06-17 15:35:24 +0200305out:
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800306 dev_put(dev);
307}
308
309/*
310 * bcm_send_to_user - send a BCM message to the userspace
311 * (consisting of bcm_msg_head + x CAN frames)
312 */
313static void bcm_send_to_user(struct bcm_op *op, struct bcm_msg_head *head,
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200314 struct canfd_frame *frames, int has_timestamp)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800315{
316 struct sk_buff *skb;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200317 struct canfd_frame *firstframe;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800318 struct sockaddr_can *addr;
319 struct sock *sk = op->sk;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200320 unsigned int datalen = head->nframes * op->cfsiz;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800321 int err;
322
323 skb = alloc_skb(sizeof(*head) + datalen, gfp_any());
324 if (!skb)
325 return;
326
Johannes Berg59ae1d12017-06-16 14:29:20 +0200327 skb_put_data(skb, head, sizeof(*head));
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800328
329 if (head->nframes) {
Oliver Hartkopp72c8a892016-06-17 15:35:25 +0200330 /* CAN frames starting here */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200331 firstframe = (struct canfd_frame *)skb_tail_pointer(skb);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800332
Johannes Berg59ae1d12017-06-16 14:29:20 +0200333 skb_put_data(skb, frames, datalen);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800334
335 /*
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200336 * the BCM uses the flags-element of the canfd_frame
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800337 * structure for internal purposes. This is only
338 * relevant for updates that are generated by the
339 * BCM, where nframes is 1
340 */
341 if (head->nframes == 1)
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200342 firstframe->flags &= BCM_CAN_FLAGS_MASK;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800343 }
344
345 if (has_timestamp) {
346 /* restore rx timestamp */
347 skb->tstamp = op->rx_stamp;
348 }
349
350 /*
351 * Put the datagram to the queue so that bcm_recvmsg() can
352 * get it from there. We need to pass the interface index to
353 * bcm_recvmsg(). We pass a whole struct sockaddr_can in skb->cb
354 * containing the interface index.
355 */
356
Eyal Birgerb4772ef2015-03-01 14:58:29 +0200357 sock_skb_cb_check_size(sizeof(struct sockaddr_can));
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800358 addr = (struct sockaddr_can *)skb->cb;
359 memset(addr, 0, sizeof(*addr));
360 addr->can_family = AF_CAN;
361 addr->can_ifindex = op->rx_ifindex;
362
363 err = sock_queue_rcv_skb(sk, skb);
364 if (err < 0) {
365 struct bcm_sock *bo = bcm_sk(sk);
366
367 kfree_skb(skb);
368 /* don't care about overflows in this statistic */
369 bo->dropped_usr_msgs++;
370 }
371}
372
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -0400373static void bcm_tx_start_timer(struct bcm_op *op)
374{
Thomas Gleixner2456e852016-12-25 11:38:40 +0100375 if (op->kt_ival1 && op->count)
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -0400376 hrtimer_start(&op->timer,
377 ktime_add(ktime_get(), op->kt_ival1),
378 HRTIMER_MODE_ABS);
Thomas Gleixner2456e852016-12-25 11:38:40 +0100379 else if (op->kt_ival2)
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -0400380 hrtimer_start(&op->timer,
381 ktime_add(ktime_get(), op->kt_ival2),
382 HRTIMER_MODE_ABS);
383}
384
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800385static void bcm_tx_timeout_tsklet(unsigned long data)
386{
387 struct bcm_op *op = (struct bcm_op *)data;
388 struct bcm_msg_head msg_head;
389
Thomas Gleixner2456e852016-12-25 11:38:40 +0100390 if (op->kt_ival1 && (op->count > 0)) {
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800391
Oliver Hartkoppc53a6ee2009-01-14 21:06:55 -0800392 op->count--;
393 if (!op->count && (op->flags & TX_COUNTEVT)) {
394
395 /* create notification to user */
396 msg_head.opcode = TX_EXPIRED;
397 msg_head.flags = op->flags;
398 msg_head.count = op->count;
399 msg_head.ival1 = op->ival1;
400 msg_head.ival2 = op->ival2;
401 msg_head.can_id = op->can_id;
402 msg_head.nframes = 0;
403
404 bcm_send_to_user(op, &msg_head, NULL, 0);
405 }
Oliver Hartkoppc53a6ee2009-01-14 21:06:55 -0800406 bcm_can_tx(op);
Oliver Hartkoppc53a6ee2009-01-14 21:06:55 -0800407
Thomas Gleixner2456e852016-12-25 11:38:40 +0100408 } else if (op->kt_ival2)
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -0400409 bcm_can_tx(op);
Oliver Hartkoppc53a6ee2009-01-14 21:06:55 -0800410
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -0400411 bcm_tx_start_timer(op);
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800412}
413
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800414/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300415 * bcm_tx_timeout_handler - performs cyclic CAN frame transmissions
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800416 */
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700417static enum hrtimer_restart bcm_tx_timeout_handler(struct hrtimer *hrtimer)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800418{
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700419 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800420
Oliver Hartkoppc53a6ee2009-01-14 21:06:55 -0800421 tasklet_schedule(&op->tsklet);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800422
Oliver Hartkoppc53a6ee2009-01-14 21:06:55 -0800423 return HRTIMER_NORESTART;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800424}
425
426/*
427 * bcm_rx_changed - create a RX_CHANGED notification due to changed content
428 */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200429static void bcm_rx_changed(struct bcm_op *op, struct canfd_frame *data)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800430{
431 struct bcm_msg_head head;
432
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800433 /* update statistics */
434 op->frames_filtered++;
435
436 /* prevent statistics overflow */
437 if (op->frames_filtered > ULONG_MAX/100)
438 op->frames_filtered = op->frames_abs = 0;
439
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800440 /* this element is not throttled anymore */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200441 data->flags &= (BCM_CAN_FLAGS_MASK|RX_RECV);
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800442
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800443 head.opcode = RX_CHANGED;
444 head.flags = op->flags;
445 head.count = op->count;
446 head.ival1 = op->ival1;
447 head.ival2 = op->ival2;
448 head.can_id = op->can_id;
449 head.nframes = 1;
450
451 bcm_send_to_user(op, &head, data, 1);
452}
453
454/*
455 * bcm_rx_update_and_send - process a detected relevant receive content change
456 * 1. update the last received data
457 * 2. send a notification to the user (if possible)
458 */
459static void bcm_rx_update_and_send(struct bcm_op *op,
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200460 struct canfd_frame *lastdata,
461 const struct canfd_frame *rxdata)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800462{
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200463 memcpy(lastdata, rxdata, op->cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800464
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800465 /* mark as used and throttled by default */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200466 lastdata->flags |= (RX_RECV|RX_THR);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800467
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800468 /* throttling mode inactive ? */
Thomas Gleixner2456e852016-12-25 11:38:40 +0100469 if (!op->kt_ival2) {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800470 /* send RX_CHANGED to the user immediately */
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800471 bcm_rx_changed(op, lastdata);
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700472 return;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800473 }
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700474
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800475 /* with active throttling timer we are just done here */
476 if (hrtimer_active(&op->thrtimer))
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700477 return;
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700478
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800479 /* first reception with enabled throttling mode */
Thomas Gleixner2456e852016-12-25 11:38:40 +0100480 if (!op->kt_lastmsg)
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800481 goto rx_changed_settime;
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700482
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800483 /* got a second frame inside a potential throttle period? */
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700484 if (ktime_us_delta(ktime_get(), op->kt_lastmsg) <
485 ktime_to_us(op->kt_ival2)) {
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800486 /* do not send the saved data - only start throttle timer */
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700487 hrtimer_start(&op->thrtimer,
488 ktime_add(op->kt_lastmsg, op->kt_ival2),
489 HRTIMER_MODE_ABS);
490 return;
491 }
492
493 /* the gap was that big, that throttling was not needed here */
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800494rx_changed_settime:
495 bcm_rx_changed(op, lastdata);
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700496 op->kt_lastmsg = ktime_get();
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800497}
498
499/*
500 * bcm_rx_cmp_to_index - (bit)compares the currently received data to formerly
501 * received data stored in op->last_frames[]
502 */
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700503static void bcm_rx_cmp_to_index(struct bcm_op *op, unsigned int index,
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200504 const struct canfd_frame *rxdata)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800505{
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200506 struct canfd_frame *cf = op->frames + op->cfsiz * index;
507 struct canfd_frame *lcf = op->last_frames + op->cfsiz * index;
508 int i;
509
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800510 /*
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200511 * no one uses the MSBs of flags for comparison,
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800512 * so we use it here to detect the first time of reception
513 */
514
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200515 if (!(lcf->flags & RX_RECV)) {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800516 /* received data for the first time => send update to user */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200517 bcm_rx_update_and_send(op, lcf, rxdata);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800518 return;
519 }
520
Oliver Hartkopp72c8a892016-06-17 15:35:25 +0200521 /* do a real check in CAN frame data section */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200522 for (i = 0; i < rxdata->len; i += 8) {
523 if ((get_u64(cf, i) & get_u64(rxdata, i)) !=
524 (get_u64(cf, i) & get_u64(lcf, i))) {
525 bcm_rx_update_and_send(op, lcf, rxdata);
526 return;
527 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800528 }
529
530 if (op->flags & RX_CHECK_DLC) {
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200531 /* do a real check in CAN frame length */
532 if (rxdata->len != lcf->len) {
533 bcm_rx_update_and_send(op, lcf, rxdata);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800534 return;
535 }
536 }
537}
538
539/*
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800540 * bcm_rx_starttimer - enable timeout monitoring for CAN frame reception
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800541 */
542static void bcm_rx_starttimer(struct bcm_op *op)
543{
544 if (op->flags & RX_NO_AUTOTIMER)
545 return;
546
Thomas Gleixner2456e852016-12-25 11:38:40 +0100547 if (op->kt_ival1)
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700548 hrtimer_start(&op->timer, op->kt_ival1, HRTIMER_MODE_REL);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800549}
550
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800551static void bcm_rx_timeout_tsklet(unsigned long data)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800552{
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800553 struct bcm_op *op = (struct bcm_op *)data;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800554 struct bcm_msg_head msg_head;
555
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800556 /* create notification to user */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800557 msg_head.opcode = RX_TIMEOUT;
558 msg_head.flags = op->flags;
559 msg_head.count = op->count;
560 msg_head.ival1 = op->ival1;
561 msg_head.ival2 = op->ival2;
562 msg_head.can_id = op->can_id;
563 msg_head.nframes = 0;
564
565 bcm_send_to_user(op, &msg_head, NULL, 0);
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800566}
567
568/*
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800569 * bcm_rx_timeout_handler - when the (cyclic) CAN frame reception timed out
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800570 */
571static enum hrtimer_restart bcm_rx_timeout_handler(struct hrtimer *hrtimer)
572{
573 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer);
574
575 /* schedule before NET_RX_SOFTIRQ */
576 tasklet_hi_schedule(&op->tsklet);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800577
578 /* no restart of the timer is done here! */
579
580 /* if user wants to be informed, when cyclic CAN-Messages come back */
581 if ((op->flags & RX_ANNOUNCE_RESUME) && op->last_frames) {
Oliver Hartkopp72c8a892016-06-17 15:35:25 +0200582 /* clear received CAN frames to indicate 'nothing received' */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200583 memset(op->last_frames, 0, op->nframes * op->cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800584 }
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700585
586 return HRTIMER_NORESTART;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800587}
588
589/*
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800590 * bcm_rx_do_flush - helper for bcm_rx_thr_flush
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800591 */
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700592static inline int bcm_rx_do_flush(struct bcm_op *op, int update,
593 unsigned int index)
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800594{
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200595 struct canfd_frame *lcf = op->last_frames + op->cfsiz * index;
596
597 if ((op->last_frames) && (lcf->flags & RX_THR)) {
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800598 if (update)
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200599 bcm_rx_changed(op, lcf);
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800600 return 1;
601 }
602 return 0;
603}
604
605/*
606 * bcm_rx_thr_flush - Check for throttled data and send it to the userspace
607 *
608 * update == 0 : just check if throttled data is available (any irq context)
609 * update == 1 : check and send throttled data to userspace (soft_irq context)
610 */
611static int bcm_rx_thr_flush(struct bcm_op *op, int update)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800612{
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700613 int updated = 0;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800614
615 if (op->nframes > 1) {
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700616 unsigned int i;
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700617
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800618 /* for MUX filter we start at index 1 */
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800619 for (i = 1; i < op->nframes; i++)
620 updated += bcm_rx_do_flush(op, update, i);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800621
622 } else {
623 /* for RX_FILTER_ID and simple filter */
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800624 updated += bcm_rx_do_flush(op, update, 0);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800625 }
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700626
627 return updated;
628}
629
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800630static void bcm_rx_thr_tsklet(unsigned long data)
631{
632 struct bcm_op *op = (struct bcm_op *)data;
633
634 /* push the changed data to the userspace */
635 bcm_rx_thr_flush(op, 1);
636}
637
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700638/*
639 * bcm_rx_thr_handler - the time for blocked content updates is over now:
640 * Check for throttled data and send it to the userspace
641 */
642static enum hrtimer_restart bcm_rx_thr_handler(struct hrtimer *hrtimer)
643{
644 struct bcm_op *op = container_of(hrtimer, struct bcm_op, thrtimer);
645
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800646 tasklet_schedule(&op->thrtsklet);
647
648 if (bcm_rx_thr_flush(op, 0)) {
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700649 hrtimer_forward(hrtimer, ktime_get(), op->kt_ival2);
650 return HRTIMER_RESTART;
651 } else {
652 /* rearm throttle handling */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100653 op->kt_lastmsg = 0;
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700654 return HRTIMER_NORESTART;
655 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800656}
657
658/*
Jeremiah Mahler069f8452014-12-05 09:54:38 -0800659 * bcm_rx_handler - handle a CAN frame reception
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800660 */
661static void bcm_rx_handler(struct sk_buff *skb, void *data)
662{
663 struct bcm_op *op = (struct bcm_op *)data;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200664 const struct canfd_frame *rxframe = (struct canfd_frame *)skb->data;
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700665 unsigned int i;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800666
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800667 if (op->can_id != rxframe->can_id)
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800668 return;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800669
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200670 /* make sure to handle the correct frame type (CAN / CAN FD) */
671 if (skb->len != op->cfsiz)
672 return;
673
674 /* disable timeout */
675 hrtimer_cancel(&op->timer);
676
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800677 /* save rx timestamp */
678 op->rx_stamp = skb->tstamp;
679 /* save originator for recvfrom() */
680 op->rx_ifindex = skb->dev->ifindex;
681 /* update statistics */
682 op->frames_abs++;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800683
684 if (op->flags & RX_RTR_FRAME) {
685 /* send reply for RTR-request (placed in op->frames[0]) */
686 bcm_can_tx(op);
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800687 return;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800688 }
689
690 if (op->flags & RX_FILTER_ID) {
691 /* the easiest case */
Oliver Hartkopp5499a6b2016-11-23 14:33:25 +0100692 bcm_rx_update_and_send(op, op->last_frames, rxframe);
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800693 goto rx_starttimer;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800694 }
695
696 if (op->nframes == 1) {
697 /* simple compare with index 0 */
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800698 bcm_rx_cmp_to_index(op, 0, rxframe);
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800699 goto rx_starttimer;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800700 }
701
702 if (op->nframes > 1) {
703 /*
704 * multiplex compare
705 *
706 * find the first multiplex mask that fits.
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200707 * Remark: The MUX-mask is stored in index 0 - but only the
708 * first 64 bits of the frame data[] are relevant (CAN FD)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800709 */
710
711 for (i = 1; i < op->nframes; i++) {
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200712 if ((get_u64(op->frames, 0) & get_u64(rxframe, 0)) ==
713 (get_u64(op->frames, 0) &
714 get_u64(op->frames + op->cfsiz * i, 0))) {
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800715 bcm_rx_cmp_to_index(op, i, rxframe);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800716 break;
717 }
718 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800719 }
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800720
Oliver Hartkopp1fa17d42009-01-06 11:07:54 -0800721rx_starttimer:
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800722 bcm_rx_starttimer(op);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800723}
724
725/*
726 * helpers for bcm_op handling: find & delete bcm [rx|tx] op elements
727 */
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +0200728static struct bcm_op *bcm_find_op(struct list_head *ops,
729 struct bcm_msg_head *mh, int ifindex)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800730{
731 struct bcm_op *op;
732
733 list_for_each_entry(op, ops, list) {
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200734 if ((op->can_id == mh->can_id) && (op->ifindex == ifindex) &&
735 (op->flags & CAN_FD_FRAME) == (mh->flags & CAN_FD_FRAME))
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800736 return op;
737 }
738
739 return NULL;
740}
741
742static void bcm_remove_op(struct bcm_op *op)
743{
Oliver Hartkoppa06393ed02017-01-18 21:30:51 +0100744 if (op->tsklet.func) {
745 while (test_bit(TASKLET_STATE_SCHED, &op->tsklet.state) ||
746 test_bit(TASKLET_STATE_RUN, &op->tsklet.state) ||
747 hrtimer_active(&op->timer)) {
748 hrtimer_cancel(&op->timer);
749 tasklet_kill(&op->tsklet);
750 }
751 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800752
Oliver Hartkoppa06393ed02017-01-18 21:30:51 +0100753 if (op->thrtsklet.func) {
754 while (test_bit(TASKLET_STATE_SCHED, &op->thrtsklet.state) ||
755 test_bit(TASKLET_STATE_RUN, &op->thrtsklet.state) ||
756 hrtimer_active(&op->thrtimer)) {
757 hrtimer_cancel(&op->thrtimer);
758 tasklet_kill(&op->thrtsklet);
759 }
760 }
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800761
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800762 if ((op->frames) && (op->frames != &op->sframe))
763 kfree(op->frames);
764
765 if ((op->last_frames) && (op->last_frames != &op->last_sframe))
766 kfree(op->last_frames);
767
768 kfree(op);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800769}
770
771static void bcm_rx_unreg(struct net_device *dev, struct bcm_op *op)
772{
773 if (op->rx_reg_dev == dev) {
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200774 can_rx_unregister(dev_net(dev), dev, op->can_id,
Mario Kicherer8e8cda62017-02-21 12:19:47 +0100775 REGMASK(op->can_id), bcm_rx_handler, op);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800776
777 /* mark as removed subscription */
778 op->rx_reg_dev = NULL;
779 } else
780 printk(KERN_ERR "can-bcm: bcm_rx_unreg: registered device "
781 "mismatch %p %p\n", op->rx_reg_dev, dev);
782}
783
784/*
785 * bcm_delete_rx_op - find and remove a rx op (returns number of removed ops)
786 */
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +0200787static int bcm_delete_rx_op(struct list_head *ops, struct bcm_msg_head *mh,
788 int ifindex)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800789{
790 struct bcm_op *op, *n;
791
792 list_for_each_entry_safe(op, n, ops, list) {
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200793 if ((op->can_id == mh->can_id) && (op->ifindex == ifindex) &&
794 (op->flags & CAN_FD_FRAME) == (mh->flags & CAN_FD_FRAME)) {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800795
796 /*
797 * Don't care if we're bound or not (due to netdev
798 * problems) can_rx_unregister() is always a save
799 * thing to do here.
800 */
801 if (op->ifindex) {
802 /*
803 * Only remove subscriptions that had not
804 * been removed due to NETDEV_UNREGISTER
805 * in bcm_notifier()
806 */
807 if (op->rx_reg_dev) {
808 struct net_device *dev;
809
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200810 dev = dev_get_by_index(sock_net(op->sk),
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800811 op->ifindex);
812 if (dev) {
813 bcm_rx_unreg(dev, op);
814 dev_put(dev);
815 }
816 }
817 } else
Oliver Hartkopp384317e2017-04-25 08:19:42 +0200818 can_rx_unregister(sock_net(op->sk), NULL,
819 op->can_id,
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800820 REGMASK(op->can_id),
821 bcm_rx_handler, op);
822
823 list_del(&op->list);
824 bcm_remove_op(op);
825 return 1; /* done */
826 }
827 }
828
829 return 0; /* not found */
830}
831
832/*
833 * bcm_delete_tx_op - find and remove a tx op (returns number of removed ops)
834 */
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +0200835static int bcm_delete_tx_op(struct list_head *ops, struct bcm_msg_head *mh,
836 int ifindex)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800837{
838 struct bcm_op *op, *n;
839
840 list_for_each_entry_safe(op, n, ops, list) {
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200841 if ((op->can_id == mh->can_id) && (op->ifindex == ifindex) &&
842 (op->flags & CAN_FD_FRAME) == (mh->flags & CAN_FD_FRAME)) {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800843 list_del(&op->list);
844 bcm_remove_op(op);
845 return 1; /* done */
846 }
847 }
848
849 return 0; /* not found */
850}
851
852/*
853 * bcm_read_op - read out a bcm_op and send it to the user (for bcm_sendmsg)
854 */
855static int bcm_read_op(struct list_head *ops, struct bcm_msg_head *msg_head,
856 int ifindex)
857{
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +0200858 struct bcm_op *op = bcm_find_op(ops, msg_head, ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800859
860 if (!op)
861 return -EINVAL;
862
863 /* put current values into msg_head */
864 msg_head->flags = op->flags;
865 msg_head->count = op->count;
866 msg_head->ival1 = op->ival1;
867 msg_head->ival2 = op->ival2;
868 msg_head->nframes = op->nframes;
869
870 bcm_send_to_user(op, msg_head, op->frames, 0);
871
872 return MHSIZ;
873}
874
875/*
876 * bcm_tx_setup - create or update a bcm tx op (for bcm_sendmsg)
877 */
878static int bcm_tx_setup(struct bcm_msg_head *msg_head, struct msghdr *msg,
879 int ifindex, struct sock *sk)
880{
881 struct bcm_sock *bo = bcm_sk(sk);
882 struct bcm_op *op;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200883 struct canfd_frame *cf;
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700884 unsigned int i;
885 int err;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800886
887 /* we need a real device to send frames */
888 if (!ifindex)
889 return -ENODEV;
890
Oliver Hartkopp72c8a892016-06-17 15:35:25 +0200891 /* check nframes boundaries - we need at least one CAN frame */
Oliver Hartkopp5b75c492010-08-11 16:12:35 -0700892 if (msg_head->nframes < 1 || msg_head->nframes > MAX_NFRAMES)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800893 return -EINVAL;
894
Oliver Hartkopp576f4742019-01-13 19:31:43 +0100895 /* check timeval limitations */
896 if ((msg_head->flags & SETTIMER) && bcm_is_invalid_tv(msg_head))
897 return -EINVAL;
898
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800899 /* check the given can_id */
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +0200900 op = bcm_find_op(&bo->tx_ops, msg_head, ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800901 if (op) {
902 /* update existing BCM operation */
903
904 /*
Oliver Hartkopp72c8a892016-06-17 15:35:25 +0200905 * Do we need more space for the CAN frames than currently
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800906 * allocated? -> This is a _really_ unusual use-case and
907 * therefore (complexity / locking) it is not supported.
908 */
909 if (msg_head->nframes > op->nframes)
910 return -E2BIG;
911
Oliver Hartkopp72c8a892016-06-17 15:35:25 +0200912 /* update CAN frames content */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800913 for (i = 0; i < msg_head->nframes; i++) {
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700914
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200915 cf = op->frames + op->cfsiz * i;
916 err = memcpy_from_msg((u8 *)cf, msg, op->cfsiz);
917
918 if (op->flags & CAN_FD_FRAME) {
919 if (cf->len > 64)
920 err = -EINVAL;
921 } else {
922 if (cf->len > 8)
923 err = -EINVAL;
924 }
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700925
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800926 if (err < 0)
927 return err;
928
929 if (msg_head->flags & TX_CP_CAN_ID) {
930 /* copy can_id into frame */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200931 cf->can_id = msg_head->can_id;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800932 }
933 }
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200934 op->flags = msg_head->flags;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800935
936 } else {
937 /* insert new BCM operation for the given can_id */
938
939 op = kzalloc(OPSIZ, GFP_KERNEL);
940 if (!op)
941 return -ENOMEM;
942
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200943 op->can_id = msg_head->can_id;
944 op->cfsiz = CFSIZ(msg_head->flags);
945 op->flags = msg_head->flags;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800946
Oliver Hartkopp72c8a892016-06-17 15:35:25 +0200947 /* create array for CAN frames and copy the data */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800948 if (msg_head->nframes > 1) {
Kees Cook6da2ec52018-06-12 13:55:00 -0700949 op->frames = kmalloc_array(msg_head->nframes,
950 op->cfsiz,
951 GFP_KERNEL);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800952 if (!op->frames) {
953 kfree(op);
954 return -ENOMEM;
955 }
956 } else
957 op->frames = &op->sframe;
958
959 for (i = 0; i < msg_head->nframes; i++) {
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700960
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200961 cf = op->frames + op->cfsiz * i;
962 err = memcpy_from_msg((u8 *)cf, msg, op->cfsiz);
963
964 if (op->flags & CAN_FD_FRAME) {
965 if (cf->len > 64)
966 err = -EINVAL;
967 } else {
968 if (cf->len > 8)
969 err = -EINVAL;
970 }
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -0700971
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800972 if (err < 0) {
973 if (op->frames != &op->sframe)
974 kfree(op->frames);
975 kfree(op);
976 return err;
977 }
978
979 if (msg_head->flags & TX_CP_CAN_ID) {
980 /* copy can_id into frame */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +0200981 cf->can_id = msg_head->can_id;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800982 }
983 }
984
985 /* tx_ops never compare with previous received messages */
986 op->last_frames = NULL;
987
988 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
989 op->sk = sk;
990 op->ifindex = ifindex;
991
992 /* initialize uninitialized (kzalloc) structure */
Oliver Hartkopp73e87e02008-04-15 19:29:14 -0700993 hrtimer_init(&op->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
994 op->timer.function = bcm_tx_timeout_handler;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -0800995
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -0800996 /* initialize tasklet for tx countevent notification */
997 tasklet_init(&op->tsklet, bcm_tx_timeout_tsklet,
998 (unsigned long) op);
999
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001000 /* currently unused in tx_ops */
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001001 hrtimer_init(&op->thrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001002
1003 /* add this bcm_op to the list of the tx_ops */
1004 list_add(&op->list, &bo->tx_ops);
1005
1006 } /* if ((op = bcm_find_op(&bo->tx_ops, msg_head->can_id, ifindex))) */
1007
1008 if (op->nframes != msg_head->nframes) {
1009 op->nframes = msg_head->nframes;
1010 /* start multiple frame transmission with index 0 */
1011 op->currframe = 0;
1012 }
1013
1014 /* check flags */
1015
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001016 if (op->flags & TX_RESET_MULTI_IDX) {
1017 /* start multiple frame transmission with index 0 */
1018 op->currframe = 0;
1019 }
1020
1021 if (op->flags & SETTIMER) {
1022 /* set timer values */
1023 op->count = msg_head->count;
1024 op->ival1 = msg_head->ival1;
1025 op->ival2 = msg_head->ival2;
Arnd Bergmannba61a8d2015-09-30 13:26:42 +02001026 op->kt_ival1 = bcm_timeval_to_ktime(msg_head->ival1);
1027 op->kt_ival2 = bcm_timeval_to_ktime(msg_head->ival2);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001028
1029 /* disable an active timer due to zero values? */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001030 if (!op->kt_ival1 && !op->kt_ival2)
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001031 hrtimer_cancel(&op->timer);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001032 }
1033
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -04001034 if (op->flags & STARTTIMER) {
1035 hrtimer_cancel(&op->timer);
Oliver Hartkopp72c8a892016-06-17 15:35:25 +02001036 /* spec: send CAN frame when starting timer */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001037 op->flags |= TX_ANNOUNCE;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001038 }
1039
Oliver Hartkoppaabdcb02011-09-23 08:23:47 +00001040 if (op->flags & TX_ANNOUNCE) {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001041 bcm_can_tx(op);
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -04001042 if (op->count)
Oliver Hartkoppaabdcb02011-09-23 08:23:47 +00001043 op->count--;
1044 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001045
Oliver Hartkopp12d0d0d2011-09-29 15:33:47 -04001046 if (op->flags & STARTTIMER)
1047 bcm_tx_start_timer(op);
1048
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001049 return msg_head->nframes * op->cfsiz + MHSIZ;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001050}
1051
1052/*
1053 * bcm_rx_setup - create or update a bcm rx op (for bcm_sendmsg)
1054 */
1055static int bcm_rx_setup(struct bcm_msg_head *msg_head, struct msghdr *msg,
1056 int ifindex, struct sock *sk)
1057{
1058 struct bcm_sock *bo = bcm_sk(sk);
1059 struct bcm_op *op;
1060 int do_rx_register;
1061 int err = 0;
1062
1063 if ((msg_head->flags & RX_FILTER_ID) || (!(msg_head->nframes))) {
1064 /* be robust against wrong usage ... */
1065 msg_head->flags |= RX_FILTER_ID;
1066 /* ignore trailing garbage */
1067 msg_head->nframes = 0;
1068 }
1069
Oliver Hartkopp5b75c492010-08-11 16:12:35 -07001070 /* the first element contains the mux-mask => MAX_NFRAMES + 1 */
1071 if (msg_head->nframes > MAX_NFRAMES + 1)
1072 return -EINVAL;
1073
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001074 if ((msg_head->flags & RX_RTR_FRAME) &&
1075 ((msg_head->nframes != 1) ||
1076 (!(msg_head->can_id & CAN_RTR_FLAG))))
1077 return -EINVAL;
1078
Oliver Hartkopp576f4742019-01-13 19:31:43 +01001079 /* check timeval limitations */
1080 if ((msg_head->flags & SETTIMER) && bcm_is_invalid_tv(msg_head))
1081 return -EINVAL;
1082
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001083 /* check the given can_id */
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001084 op = bcm_find_op(&bo->rx_ops, msg_head, ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001085 if (op) {
1086 /* update existing BCM operation */
1087
1088 /*
Oliver Hartkopp72c8a892016-06-17 15:35:25 +02001089 * Do we need more space for the CAN frames than currently
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001090 * allocated? -> This is a _really_ unusual use-case and
1091 * therefore (complexity / locking) it is not supported.
1092 */
1093 if (msg_head->nframes > op->nframes)
1094 return -E2BIG;
1095
1096 if (msg_head->nframes) {
Oliver Hartkopp72c8a892016-06-17 15:35:25 +02001097 /* update CAN frames content */
Oliver Hartkopp5499a6b2016-11-23 14:33:25 +01001098 err = memcpy_from_msg(op->frames, msg,
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001099 msg_head->nframes * op->cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001100 if (err < 0)
1101 return err;
1102
1103 /* clear last_frames to indicate 'nothing received' */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001104 memset(op->last_frames, 0, msg_head->nframes * op->cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001105 }
1106
1107 op->nframes = msg_head->nframes;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001108 op->flags = msg_head->flags;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001109
1110 /* Only an update -> do not call can_rx_register() */
1111 do_rx_register = 0;
1112
1113 } else {
1114 /* insert new BCM operation for the given can_id */
1115 op = kzalloc(OPSIZ, GFP_KERNEL);
1116 if (!op)
1117 return -ENOMEM;
1118
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001119 op->can_id = msg_head->can_id;
1120 op->nframes = msg_head->nframes;
1121 op->cfsiz = CFSIZ(msg_head->flags);
1122 op->flags = msg_head->flags;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001123
1124 if (msg_head->nframes > 1) {
Oliver Hartkopp72c8a892016-06-17 15:35:25 +02001125 /* create array for CAN frames and copy the data */
Kees Cook6da2ec52018-06-12 13:55:00 -07001126 op->frames = kmalloc_array(msg_head->nframes,
1127 op->cfsiz,
1128 GFP_KERNEL);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001129 if (!op->frames) {
1130 kfree(op);
1131 return -ENOMEM;
1132 }
1133
Oliver Hartkopp72c8a892016-06-17 15:35:25 +02001134 /* create and init array for received CAN frames */
Kees Cook6396bb22018-06-12 14:03:40 -07001135 op->last_frames = kcalloc(msg_head->nframes,
1136 op->cfsiz,
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001137 GFP_KERNEL);
1138 if (!op->last_frames) {
1139 kfree(op->frames);
1140 kfree(op);
1141 return -ENOMEM;
1142 }
1143
1144 } else {
1145 op->frames = &op->sframe;
1146 op->last_frames = &op->last_sframe;
1147 }
1148
1149 if (msg_head->nframes) {
Oliver Hartkopp5499a6b2016-11-23 14:33:25 +01001150 err = memcpy_from_msg(op->frames, msg,
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001151 msg_head->nframes * op->cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001152 if (err < 0) {
1153 if (op->frames != &op->sframe)
1154 kfree(op->frames);
1155 if (op->last_frames != &op->last_sframe)
1156 kfree(op->last_frames);
1157 kfree(op);
1158 return err;
1159 }
1160 }
1161
1162 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
1163 op->sk = sk;
1164 op->ifindex = ifindex;
1165
Oliver Hartkopp81b40112012-11-26 22:24:23 +01001166 /* ifindex for timeout events w/o previous frame reception */
1167 op->rx_ifindex = ifindex;
1168
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001169 /* initialize uninitialized (kzalloc) structure */
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001170 hrtimer_init(&op->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1171 op->timer.function = bcm_rx_timeout_handler;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001172
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -08001173 /* initialize tasklet for rx timeout notification */
1174 tasklet_init(&op->tsklet, bcm_rx_timeout_tsklet,
1175 (unsigned long) op);
1176
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001177 hrtimer_init(&op->thrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1178 op->thrtimer.function = bcm_rx_thr_handler;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001179
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -08001180 /* initialize tasklet for rx throttle handling */
1181 tasklet_init(&op->thrtsklet, bcm_rx_thr_tsklet,
1182 (unsigned long) op);
1183
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001184 /* add this bcm_op to the list of the rx_ops */
1185 list_add(&op->list, &bo->rx_ops);
1186
1187 /* call can_rx_register() */
1188 do_rx_register = 1;
1189
1190 } /* if ((op = bcm_find_op(&bo->rx_ops, msg_head->can_id, ifindex))) */
1191
1192 /* check flags */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001193
1194 if (op->flags & RX_RTR_FRAME) {
Oliver Hartkopp5499a6b2016-11-23 14:33:25 +01001195 struct canfd_frame *frame0 = op->frames;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001196
1197 /* no timers in RTR-mode */
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001198 hrtimer_cancel(&op->thrtimer);
1199 hrtimer_cancel(&op->timer);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001200
1201 /*
1202 * funny feature in RX(!)_SETUP only for RTR-mode:
1203 * copy can_id into frame BUT without RTR-flag to
1204 * prevent a full-load-loopback-test ... ;-]
1205 */
1206 if ((op->flags & TX_CP_CAN_ID) ||
Oliver Hartkopp5499a6b2016-11-23 14:33:25 +01001207 (frame0->can_id == op->can_id))
1208 frame0->can_id = op->can_id & ~CAN_RTR_FLAG;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001209
1210 } else {
1211 if (op->flags & SETTIMER) {
1212
1213 /* set timer value */
1214 op->ival1 = msg_head->ival1;
1215 op->ival2 = msg_head->ival2;
Arnd Bergmannba61a8d2015-09-30 13:26:42 +02001216 op->kt_ival1 = bcm_timeval_to_ktime(msg_head->ival1);
1217 op->kt_ival2 = bcm_timeval_to_ktime(msg_head->ival2);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001218
1219 /* disable an active timer due to zero value? */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001220 if (!op->kt_ival1)
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001221 hrtimer_cancel(&op->timer);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001222
1223 /*
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001224 * In any case cancel the throttle timer, flush
1225 * potentially blocked msgs and reset throttle handling
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001226 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001227 op->kt_lastmsg = 0;
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001228 hrtimer_cancel(&op->thrtimer);
Oliver Hartkopp6e5c1722009-01-04 17:31:18 -08001229 bcm_rx_thr_flush(op, 1);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001230 }
1231
Thomas Gleixner2456e852016-12-25 11:38:40 +01001232 if ((op->flags & STARTTIMER) && op->kt_ival1)
Oliver Hartkopp73e87e02008-04-15 19:29:14 -07001233 hrtimer_start(&op->timer, op->kt_ival1,
1234 HRTIMER_MODE_REL);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001235 }
1236
1237 /* now we can register for can_ids, if we added a new bcm_op */
1238 if (do_rx_register) {
1239 if (ifindex) {
1240 struct net_device *dev;
1241
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001242 dev = dev_get_by_index(sock_net(sk), ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001243 if (dev) {
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001244 err = can_rx_register(sock_net(sk), dev,
Mario Kicherer8e8cda62017-02-21 12:19:47 +01001245 op->can_id,
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001246 REGMASK(op->can_id),
1247 bcm_rx_handler, op,
Eric Dumazetf1712c72017-01-27 08:11:44 -08001248 "bcm", sk);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001249
1250 op->rx_reg_dev = dev;
1251 dev_put(dev);
1252 }
1253
1254 } else
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001255 err = can_rx_register(sock_net(sk), NULL, op->can_id,
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001256 REGMASK(op->can_id),
Eric Dumazetf1712c72017-01-27 08:11:44 -08001257 bcm_rx_handler, op, "bcm", sk);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001258 if (err) {
1259 /* this bcm rx op is broken -> remove it */
1260 list_del(&op->list);
1261 bcm_remove_op(op);
1262 return err;
1263 }
1264 }
1265
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001266 return msg_head->nframes * op->cfsiz + MHSIZ;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001267}
1268
1269/*
1270 * bcm_tx_send - send a single CAN frame to the CAN interface (for bcm_sendmsg)
1271 */
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001272static int bcm_tx_send(struct msghdr *msg, int ifindex, struct sock *sk,
1273 int cfsiz)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001274{
1275 struct sk_buff *skb;
1276 struct net_device *dev;
1277 int err;
1278
1279 /* we need a real device to send frames */
1280 if (!ifindex)
1281 return -ENODEV;
1282
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001283 skb = alloc_skb(cfsiz + sizeof(struct can_skb_priv), GFP_KERNEL);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001284 if (!skb)
1285 return -ENOMEM;
1286
Oliver Hartkopp2bf34402013-01-28 08:33:33 +00001287 can_skb_reserve(skb);
Oliver Hartkopp156c2bb2013-01-17 18:43:39 +01001288
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001289 err = memcpy_from_msg(skb_put(skb, cfsiz), msg, cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001290 if (err < 0) {
1291 kfree_skb(skb);
1292 return err;
1293 }
1294
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001295 dev = dev_get_by_index(sock_net(sk), ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001296 if (!dev) {
1297 kfree_skb(skb);
1298 return -ENODEV;
1299 }
1300
Oliver Hartkopp2bf34402013-01-28 08:33:33 +00001301 can_skb_prv(skb)->ifindex = dev->ifindex;
Oliver Hartkoppd3b58c42015-06-26 11:58:19 +02001302 can_skb_prv(skb)->skbcnt = 0;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001303 skb->dev = dev;
Oliver Hartkopp0ae89be2014-01-30 10:11:28 +01001304 can_skb_set_owner(skb, sk);
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -07001305 err = can_send(skb, 1); /* send with loopback */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001306 dev_put(dev);
1307
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -07001308 if (err)
1309 return err;
1310
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001311 return cfsiz + MHSIZ;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001312}
1313
1314/*
1315 * bcm_sendmsg - process BCM commands (opcodes) from the userspace
1316 */
Ying Xue1b784142015-03-02 15:37:48 +08001317static int bcm_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001318{
1319 struct sock *sk = sock->sk;
1320 struct bcm_sock *bo = bcm_sk(sk);
1321 int ifindex = bo->ifindex; /* default ifindex for this bcm_op */
1322 struct bcm_msg_head msg_head;
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001323 int cfsiz;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001324 int ret; /* read bytes or error codes as return value */
1325
1326 if (!bo->bound)
1327 return -ENOTCONN;
1328
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -07001329 /* check for valid message length from userspace */
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001330 if (size < MHSIZ)
1331 return -EINVAL;
1332
1333 /* read message head information */
1334 ret = memcpy_from_msg((u8 *)&msg_head, msg, MHSIZ);
1335 if (ret < 0)
1336 return ret;
1337
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001338 cfsiz = CFSIZ(msg_head.flags);
1339 if ((size - MHSIZ) % cfsiz)
Oliver Hartkopp7f2d38e2008-07-05 23:38:43 -07001340 return -EINVAL;
1341
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001342 /* check for alternative ifindex for this bcm_op */
1343
1344 if (!ifindex && msg->msg_name) {
1345 /* no bound device as default => check msg_name */
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001346 DECLARE_SOCKADDR(struct sockaddr_can *, addr, msg->msg_name);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001347
Kurt Van Dijck5e5073282011-01-15 20:56:42 -08001348 if (msg->msg_namelen < sizeof(*addr))
1349 return -EINVAL;
1350
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001351 if (addr->can_family != AF_CAN)
1352 return -EINVAL;
1353
1354 /* ifindex from sendto() */
1355 ifindex = addr->can_ifindex;
1356
1357 if (ifindex) {
1358 struct net_device *dev;
1359
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001360 dev = dev_get_by_index(sock_net(sk), ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001361 if (!dev)
1362 return -ENODEV;
1363
1364 if (dev->type != ARPHRD_CAN) {
1365 dev_put(dev);
1366 return -ENODEV;
1367 }
1368
1369 dev_put(dev);
1370 }
1371 }
1372
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001373 lock_sock(sk);
1374
1375 switch (msg_head.opcode) {
1376
1377 case TX_SETUP:
1378 ret = bcm_tx_setup(&msg_head, msg, ifindex, sk);
1379 break;
1380
1381 case RX_SETUP:
1382 ret = bcm_rx_setup(&msg_head, msg, ifindex, sk);
1383 break;
1384
1385 case TX_DELETE:
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001386 if (bcm_delete_tx_op(&bo->tx_ops, &msg_head, ifindex))
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001387 ret = MHSIZ;
1388 else
1389 ret = -EINVAL;
1390 break;
1391
1392 case RX_DELETE:
Oliver Hartkopp2b5f5f52016-06-17 15:35:26 +02001393 if (bcm_delete_rx_op(&bo->rx_ops, &msg_head, ifindex))
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001394 ret = MHSIZ;
1395 else
1396 ret = -EINVAL;
1397 break;
1398
1399 case TX_READ:
1400 /* reuse msg_head for the reply to TX_READ */
1401 msg_head.opcode = TX_STATUS;
1402 ret = bcm_read_op(&bo->tx_ops, &msg_head, ifindex);
1403 break;
1404
1405 case RX_READ:
1406 /* reuse msg_head for the reply to RX_READ */
1407 msg_head.opcode = RX_STATUS;
1408 ret = bcm_read_op(&bo->rx_ops, &msg_head, ifindex);
1409 break;
1410
1411 case TX_SEND:
Oliver Hartkopp72c8a892016-06-17 15:35:25 +02001412 /* we need exactly one CAN frame behind the msg head */
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001413 if ((msg_head.nframes != 1) || (size != cfsiz + MHSIZ))
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001414 ret = -EINVAL;
1415 else
Oliver Hartkopp6f3b9112016-06-17 15:35:27 +02001416 ret = bcm_tx_send(msg, ifindex, sk, cfsiz);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001417 break;
1418
1419 default:
1420 ret = -EINVAL;
1421 break;
1422 }
1423
1424 release_sock(sk);
1425
1426 return ret;
1427}
1428
1429/*
1430 * notification handler for netdevice status changes
1431 */
1432static int bcm_notifier(struct notifier_block *nb, unsigned long msg,
Jiri Pirko351638e2013-05-28 01:30:21 +00001433 void *ptr)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001434{
Jiri Pirko351638e2013-05-28 01:30:21 +00001435 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001436 struct bcm_sock *bo = container_of(nb, struct bcm_sock, notifier);
1437 struct sock *sk = &bo->sk;
1438 struct bcm_op *op;
1439 int notify_enodev = 0;
1440
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001441 if (!net_eq(dev_net(dev), sock_net(sk)))
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001442 return NOTIFY_DONE;
1443
1444 if (dev->type != ARPHRD_CAN)
1445 return NOTIFY_DONE;
1446
1447 switch (msg) {
1448
1449 case NETDEV_UNREGISTER:
1450 lock_sock(sk);
1451
1452 /* remove device specific receive entries */
1453 list_for_each_entry(op, &bo->rx_ops, list)
1454 if (op->rx_reg_dev == dev)
1455 bcm_rx_unreg(dev, op);
1456
1457 /* remove device reference, if this is our bound device */
1458 if (bo->bound && bo->ifindex == dev->ifindex) {
1459 bo->bound = 0;
1460 bo->ifindex = 0;
1461 notify_enodev = 1;
1462 }
1463
1464 release_sock(sk);
1465
1466 if (notify_enodev) {
1467 sk->sk_err = ENODEV;
1468 if (!sock_flag(sk, SOCK_DEAD))
1469 sk->sk_error_report(sk);
1470 }
1471 break;
1472
1473 case NETDEV_DOWN:
1474 if (bo->bound && bo->ifindex == dev->ifindex) {
1475 sk->sk_err = ENETDOWN;
1476 if (!sock_flag(sk, SOCK_DEAD))
1477 sk->sk_error_report(sk);
1478 }
1479 }
1480
1481 return NOTIFY_DONE;
1482}
1483
1484/*
1485 * initial settings for all BCM sockets to be set at socket creation time
1486 */
1487static int bcm_init(struct sock *sk)
1488{
1489 struct bcm_sock *bo = bcm_sk(sk);
1490
1491 bo->bound = 0;
1492 bo->ifindex = 0;
1493 bo->dropped_usr_msgs = 0;
1494 bo->bcm_proc_read = NULL;
1495
1496 INIT_LIST_HEAD(&bo->tx_ops);
1497 INIT_LIST_HEAD(&bo->rx_ops);
1498
1499 /* set notifier */
1500 bo->notifier.notifier_call = bcm_notifier;
1501
1502 register_netdevice_notifier(&bo->notifier);
1503
1504 return 0;
1505}
1506
1507/*
1508 * standard socket functions
1509 */
1510static int bcm_release(struct socket *sock)
1511{
1512 struct sock *sk = sock->sk;
Colin Ian King62c04642017-09-08 16:02:35 +01001513 struct net *net;
Dave Jonesc6914a62011-04-19 20:36:59 -07001514 struct bcm_sock *bo;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001515 struct bcm_op *op, *next;
1516
Colin Ian King62c04642017-09-08 16:02:35 +01001517 if (!sk)
Dave Jonesc6914a62011-04-19 20:36:59 -07001518 return 0;
1519
Colin Ian King62c04642017-09-08 16:02:35 +01001520 net = sock_net(sk);
Dave Jonesc6914a62011-04-19 20:36:59 -07001521 bo = bcm_sk(sk);
1522
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001523 /* remove bcm_ops, timer, rx_unregister(), etc. */
1524
1525 unregister_netdevice_notifier(&bo->notifier);
1526
1527 lock_sock(sk);
1528
1529 list_for_each_entry_safe(op, next, &bo->tx_ops, list)
1530 bcm_remove_op(op);
1531
1532 list_for_each_entry_safe(op, next, &bo->rx_ops, list) {
1533 /*
1534 * Don't care if we're bound or not (due to netdev problems)
1535 * can_rx_unregister() is always a save thing to do here.
1536 */
1537 if (op->ifindex) {
1538 /*
1539 * Only remove subscriptions that had not
1540 * been removed due to NETDEV_UNREGISTER
1541 * in bcm_notifier()
1542 */
1543 if (op->rx_reg_dev) {
1544 struct net_device *dev;
1545
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001546 dev = dev_get_by_index(net, op->ifindex);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001547 if (dev) {
1548 bcm_rx_unreg(dev, op);
1549 dev_put(dev);
1550 }
1551 }
1552 } else
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001553 can_rx_unregister(net, NULL, op->can_id,
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001554 REGMASK(op->can_id),
1555 bcm_rx_handler, op);
1556
1557 bcm_remove_op(op);
1558 }
1559
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001560#if IS_ENABLED(CONFIG_PROC_FS)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001561 /* remove procfs entry */
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001562 if (net->can.bcmproc_dir && bo->bcm_proc_read)
1563 remove_proc_entry(bo->procname, net->can.bcmproc_dir);
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001564#endif /* CONFIG_PROC_FS */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001565
1566 /* remove device reference */
1567 if (bo->bound) {
1568 bo->bound = 0;
1569 bo->ifindex = 0;
1570 }
1571
Lothar Waßmannf7e5cc02009-07-14 23:10:21 +00001572 sock_orphan(sk);
1573 sock->sk = NULL;
1574
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001575 release_sock(sk);
1576 sock_put(sk);
1577
1578 return 0;
1579}
1580
1581static int bcm_connect(struct socket *sock, struct sockaddr *uaddr, int len,
1582 int flags)
1583{
1584 struct sockaddr_can *addr = (struct sockaddr_can *)uaddr;
1585 struct sock *sk = sock->sk;
1586 struct bcm_sock *bo = bcm_sk(sk);
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001587 struct net *net = sock_net(sk);
Oliver Hartkoppdeb507f2016-10-24 21:11:26 +02001588 int ret = 0;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001589
Changli Gao6503d962010-03-31 22:58:26 +00001590 if (len < sizeof(*addr))
1591 return -EINVAL;
1592
Oliver Hartkoppdeb507f2016-10-24 21:11:26 +02001593 lock_sock(sk);
1594
1595 if (bo->bound) {
1596 ret = -EISCONN;
1597 goto fail;
1598 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001599
1600 /* bind a device to this socket */
1601 if (addr->can_ifindex) {
1602 struct net_device *dev;
1603
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001604 dev = dev_get_by_index(net, addr->can_ifindex);
Oliver Hartkoppdeb507f2016-10-24 21:11:26 +02001605 if (!dev) {
1606 ret = -ENODEV;
1607 goto fail;
1608 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001609 if (dev->type != ARPHRD_CAN) {
1610 dev_put(dev);
Oliver Hartkoppdeb507f2016-10-24 21:11:26 +02001611 ret = -ENODEV;
1612 goto fail;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001613 }
1614
1615 bo->ifindex = dev->ifindex;
1616 dev_put(dev);
1617
1618 } else {
1619 /* no interface reference for ifindex = 0 ('any' CAN device) */
1620 bo->ifindex = 0;
1621 }
1622
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001623#if IS_ENABLED(CONFIG_PROC_FS)
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001624 if (net->can.bcmproc_dir) {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001625 /* unique socket address as filename */
Dan Rosenberg9f260e02010-12-26 06:54:53 +00001626 sprintf(bo->procname, "%lu", sock_i_ino(sk));
Christoph Hellwig3617d942018-04-13 20:38:35 +02001627 bo->bcm_proc_read = proc_create_net_single(bo->procname, 0644,
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001628 net->can.bcmproc_dir,
Christoph Hellwig3617d942018-04-13 20:38:35 +02001629 bcm_proc_show, sk);
Oliver Hartkoppdeb507f2016-10-24 21:11:26 +02001630 if (!bo->bcm_proc_read) {
1631 ret = -ENOMEM;
1632 goto fail;
1633 }
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001634 }
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001635#endif /* CONFIG_PROC_FS */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001636
Oliver Hartkoppdeb507f2016-10-24 21:11:26 +02001637 bo->bound = 1;
1638
1639fail:
1640 release_sock(sk);
1641
1642 return ret;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001643}
1644
Ying Xue1b784142015-03-02 15:37:48 +08001645static int bcm_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
1646 int flags)
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001647{
1648 struct sock *sk = sock->sk;
1649 struct sk_buff *skb;
1650 int error = 0;
1651 int noblock;
1652 int err;
1653
1654 noblock = flags & MSG_DONTWAIT;
1655 flags &= ~MSG_DONTWAIT;
1656 skb = skb_recv_datagram(sk, flags, noblock, &error);
1657 if (!skb)
1658 return error;
1659
1660 if (skb->len < size)
1661 size = skb->len;
1662
Al Viro7eab8d92014-04-06 21:51:23 -04001663 err = memcpy_to_msg(msg, skb->data, size);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001664 if (err < 0) {
1665 skb_free_datagram(sk, skb);
1666 return err;
1667 }
1668
Neil Horman3b885782009-10-12 13:26:31 -07001669 sock_recv_ts_and_drops(msg, sk, skb);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001670
1671 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001672 __sockaddr_check_size(sizeof(struct sockaddr_can));
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001673 msg->msg_namelen = sizeof(struct sockaddr_can);
1674 memcpy(msg->msg_name, skb->cb, msg->msg_namelen);
1675 }
1676
1677 skb_free_datagram(sk, skb);
1678
1679 return size;
1680}
1681
Oliver Hartkopp53914b62011-03-22 08:27:25 +00001682static const struct proto_ops bcm_ops = {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001683 .family = PF_CAN,
1684 .release = bcm_release,
1685 .bind = sock_no_bind,
1686 .connect = bcm_connect,
1687 .socketpair = sock_no_socketpair,
1688 .accept = sock_no_accept,
1689 .getname = sock_no_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001690 .poll = datagram_poll,
Oliver Hartkopp53914b62011-03-22 08:27:25 +00001691 .ioctl = can_ioctl, /* use can_ioctl() from af_can.c */
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001692 .listen = sock_no_listen,
1693 .shutdown = sock_no_shutdown,
1694 .setsockopt = sock_no_setsockopt,
1695 .getsockopt = sock_no_getsockopt,
1696 .sendmsg = bcm_sendmsg,
1697 .recvmsg = bcm_recvmsg,
1698 .mmap = sock_no_mmap,
1699 .sendpage = sock_no_sendpage,
1700};
1701
1702static struct proto bcm_proto __read_mostly = {
1703 .name = "CAN_BCM",
1704 .owner = THIS_MODULE,
1705 .obj_size = sizeof(struct bcm_sock),
1706 .init = bcm_init,
1707};
1708
Kurt Van Dijck16506292011-05-03 18:40:57 +00001709static const struct can_proto bcm_can_proto = {
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001710 .type = SOCK_DGRAM,
1711 .protocol = CAN_BCM,
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001712 .ops = &bcm_ops,
1713 .prot = &bcm_proto,
1714};
1715
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001716static int canbcm_pernet_init(struct net *net)
1717{
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001718#if IS_ENABLED(CONFIG_PROC_FS)
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001719 /* create /proc/net/can-bcm directory */
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001720 net->can.bcmproc_dir = proc_net_mkdir(net, "can-bcm", net->proc_net);
1721#endif /* CONFIG_PROC_FS */
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001722
1723 return 0;
1724}
1725
1726static void canbcm_pernet_exit(struct net *net)
1727{
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001728#if IS_ENABLED(CONFIG_PROC_FS)
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001729 /* remove /proc/net/can-bcm directory */
Oliver Hartkoppc2701b32017-04-26 20:14:34 +02001730 if (net->can.bcmproc_dir)
1731 remove_proc_entry("can-bcm", net->proc_net);
1732#endif /* CONFIG_PROC_FS */
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001733}
1734
1735static struct pernet_operations canbcm_pernet_ops __read_mostly = {
1736 .init = canbcm_pernet_init,
1737 .exit = canbcm_pernet_exit,
1738};
1739
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001740static int __init bcm_module_init(void)
1741{
1742 int err;
1743
Jeremiah Mahlerb111b782014-11-21 23:42:35 -08001744 pr_info("can: broadcast manager protocol (rev " CAN_BCM_VERSION " t)\n");
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001745
1746 err = can_proto_register(&bcm_can_proto);
1747 if (err < 0) {
1748 printk(KERN_ERR "can: registration of bcm protocol failed\n");
1749 return err;
1750 }
1751
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001752 register_pernet_subsys(&canbcm_pernet_ops);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001753 return 0;
1754}
1755
1756static void __exit bcm_module_exit(void)
1757{
1758 can_proto_unregister(&bcm_can_proto);
Oliver Hartkopp384317e2017-04-25 08:19:42 +02001759 unregister_pernet_subsys(&canbcm_pernet_ops);
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001760}
1761
1762module_init(bcm_module_init);
1763module_exit(bcm_module_exit);