]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - net/can/bcm.c
can bcm: fix tx_setup off-by-one errors
[mirror_ubuntu-bionic-kernel.git] / net / can / bcm.c
1 /*
2 * bcm.c - Broadcast Manager to filter/send (cyclic) CAN content
3 *
4 * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
5 * 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 *
40 * Send feedback to <socketcan-users@lists.berlios.de>
41 *
42 */
43
44 #include <linux/module.h>
45 #include <linux/init.h>
46 #include <linux/interrupt.h>
47 #include <linux/hrtimer.h>
48 #include <linux/list.h>
49 #include <linux/proc_fs.h>
50 #include <linux/seq_file.h>
51 #include <linux/uio.h>
52 #include <linux/net.h>
53 #include <linux/netdevice.h>
54 #include <linux/socket.h>
55 #include <linux/if_arp.h>
56 #include <linux/skbuff.h>
57 #include <linux/can.h>
58 #include <linux/can/core.h>
59 #include <linux/can/bcm.h>
60 #include <linux/slab.h>
61 #include <net/sock.h>
62 #include <net/net_namespace.h>
63
64 /*
65 * To send multiple CAN frame content within TX_SETUP or to filter
66 * CAN messages with multiplex index within RX_SETUP, the number of
67 * different filters is limited to 256 due to the one byte index value.
68 */
69 #define MAX_NFRAMES 256
70
71 /* use of last_frames[index].can_dlc */
72 #define RX_RECV 0x40 /* received data for this element */
73 #define RX_THR 0x80 /* element not been sent due to throttle feature */
74 #define BCM_CAN_DLC_MASK 0x0F /* clean private flags in can_dlc by masking */
75
76 /* get best masking value for can_rx_register() for a given single can_id */
77 #define REGMASK(id) ((id & CAN_EFF_FLAG) ? \
78 (CAN_EFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG) : \
79 (CAN_SFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG))
80
81 #define CAN_BCM_VERSION CAN_VERSION
82 static __initdata const char banner[] = KERN_INFO
83 "can: broadcast manager protocol (rev " CAN_BCM_VERSION " t)\n";
84
85 MODULE_DESCRIPTION("PF_CAN broadcast manager protocol");
86 MODULE_LICENSE("Dual BSD/GPL");
87 MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
88 MODULE_ALIAS("can-proto-2");
89
90 /* easy access to can_frame payload */
91 static inline u64 GET_U64(const struct can_frame *cp)
92 {
93 return *(u64 *)cp->data;
94 }
95
96 struct bcm_op {
97 struct list_head list;
98 int ifindex;
99 canid_t can_id;
100 u32 flags;
101 unsigned long frames_abs, frames_filtered;
102 struct timeval ival1, ival2;
103 struct hrtimer timer, thrtimer;
104 struct tasklet_struct tsklet, thrtsklet;
105 ktime_t rx_stamp, kt_ival1, kt_ival2, kt_lastmsg;
106 int rx_ifindex;
107 u32 count;
108 u32 nframes;
109 u32 currframe;
110 struct can_frame *frames;
111 struct can_frame *last_frames;
112 struct can_frame sframe;
113 struct can_frame last_sframe;
114 struct sock *sk;
115 struct net_device *rx_reg_dev;
116 };
117
118 static struct proc_dir_entry *proc_dir;
119
120 struct bcm_sock {
121 struct sock sk;
122 int bound;
123 int ifindex;
124 struct notifier_block notifier;
125 struct list_head rx_ops;
126 struct list_head tx_ops;
127 unsigned long dropped_usr_msgs;
128 struct proc_dir_entry *bcm_proc_read;
129 char procname [32]; /* inode number in decimal with \0 */
130 };
131
132 static inline struct bcm_sock *bcm_sk(const struct sock *sk)
133 {
134 return (struct bcm_sock *)sk;
135 }
136
137 #define CFSIZ sizeof(struct can_frame)
138 #define OPSIZ sizeof(struct bcm_op)
139 #define MHSIZ sizeof(struct bcm_msg_head)
140
141 /*
142 * procfs functions
143 */
144 static char *bcm_proc_getifname(char *result, int ifindex)
145 {
146 struct net_device *dev;
147
148 if (!ifindex)
149 return "any";
150
151 rcu_read_lock();
152 dev = dev_get_by_index_rcu(&init_net, ifindex);
153 if (dev)
154 strcpy(result, dev->name);
155 else
156 strcpy(result, "???");
157 rcu_read_unlock();
158
159 return result;
160 }
161
162 static int bcm_proc_show(struct seq_file *m, void *v)
163 {
164 char ifname[IFNAMSIZ];
165 struct sock *sk = (struct sock *)m->private;
166 struct bcm_sock *bo = bcm_sk(sk);
167 struct bcm_op *op;
168
169 seq_printf(m, ">>> socket %pK", sk->sk_socket);
170 seq_printf(m, " / sk %pK", sk);
171 seq_printf(m, " / bo %pK", bo);
172 seq_printf(m, " / dropped %lu", bo->dropped_usr_msgs);
173 seq_printf(m, " / bound %s", bcm_proc_getifname(ifname, bo->ifindex));
174 seq_printf(m, " <<<\n");
175
176 list_for_each_entry(op, &bo->rx_ops, list) {
177
178 unsigned long reduction;
179
180 /* print only active entries & prevent division by zero */
181 if (!op->frames_abs)
182 continue;
183
184 seq_printf(m, "rx_op: %03X %-5s ",
185 op->can_id, bcm_proc_getifname(ifname, op->ifindex));
186 seq_printf(m, "[%u]%c ", op->nframes,
187 (op->flags & RX_CHECK_DLC)?'d':' ');
188 if (op->kt_ival1.tv64)
189 seq_printf(m, "timeo=%lld ",
190 (long long)
191 ktime_to_us(op->kt_ival1));
192
193 if (op->kt_ival2.tv64)
194 seq_printf(m, "thr=%lld ",
195 (long long)
196 ktime_to_us(op->kt_ival2));
197
198 seq_printf(m, "# recv %ld (%ld) => reduction: ",
199 op->frames_filtered, op->frames_abs);
200
201 reduction = 100 - (op->frames_filtered * 100) / op->frames_abs;
202
203 seq_printf(m, "%s%ld%%\n",
204 (reduction == 100)?"near ":"", reduction);
205 }
206
207 list_for_each_entry(op, &bo->tx_ops, list) {
208
209 seq_printf(m, "tx_op: %03X %s [%u] ",
210 op->can_id,
211 bcm_proc_getifname(ifname, op->ifindex),
212 op->nframes);
213
214 if (op->kt_ival1.tv64)
215 seq_printf(m, "t1=%lld ",
216 (long long) ktime_to_us(op->kt_ival1));
217
218 if (op->kt_ival2.tv64)
219 seq_printf(m, "t2=%lld ",
220 (long long) ktime_to_us(op->kt_ival2));
221
222 seq_printf(m, "# sent %ld\n", op->frames_abs);
223 }
224 seq_putc(m, '\n');
225 return 0;
226 }
227
228 static int bcm_proc_open(struct inode *inode, struct file *file)
229 {
230 return single_open(file, bcm_proc_show, PDE(inode)->data);
231 }
232
233 static const struct file_operations bcm_proc_fops = {
234 .owner = THIS_MODULE,
235 .open = bcm_proc_open,
236 .read = seq_read,
237 .llseek = seq_lseek,
238 .release = single_release,
239 };
240
241 /*
242 * bcm_can_tx - send the (next) CAN frame to the appropriate CAN interface
243 * of the given bcm tx op
244 */
245 static void bcm_can_tx(struct bcm_op *op)
246 {
247 struct sk_buff *skb;
248 struct net_device *dev;
249 struct can_frame *cf = &op->frames[op->currframe];
250
251 /* no target device? => exit */
252 if (!op->ifindex)
253 return;
254
255 dev = dev_get_by_index(&init_net, op->ifindex);
256 if (!dev) {
257 /* RFC: should this bcm_op remove itself here? */
258 return;
259 }
260
261 skb = alloc_skb(CFSIZ, gfp_any());
262 if (!skb)
263 goto out;
264
265 memcpy(skb_put(skb, CFSIZ), cf, CFSIZ);
266
267 /* send with loopback */
268 skb->dev = dev;
269 skb->sk = op->sk;
270 can_send(skb, 1);
271
272 /* update statistics */
273 op->currframe++;
274 op->frames_abs++;
275
276 /* reached last frame? */
277 if (op->currframe >= op->nframes)
278 op->currframe = 0;
279 out:
280 dev_put(dev);
281 }
282
283 /*
284 * bcm_send_to_user - send a BCM message to the userspace
285 * (consisting of bcm_msg_head + x CAN frames)
286 */
287 static void bcm_send_to_user(struct bcm_op *op, struct bcm_msg_head *head,
288 struct can_frame *frames, int has_timestamp)
289 {
290 struct sk_buff *skb;
291 struct can_frame *firstframe;
292 struct sockaddr_can *addr;
293 struct sock *sk = op->sk;
294 unsigned int datalen = head->nframes * CFSIZ;
295 int err;
296
297 skb = alloc_skb(sizeof(*head) + datalen, gfp_any());
298 if (!skb)
299 return;
300
301 memcpy(skb_put(skb, sizeof(*head)), head, sizeof(*head));
302
303 if (head->nframes) {
304 /* can_frames starting here */
305 firstframe = (struct can_frame *)skb_tail_pointer(skb);
306
307 memcpy(skb_put(skb, datalen), frames, datalen);
308
309 /*
310 * the BCM uses the can_dlc-element of the can_frame
311 * structure for internal purposes. This is only
312 * relevant for updates that are generated by the
313 * BCM, where nframes is 1
314 */
315 if (head->nframes == 1)
316 firstframe->can_dlc &= BCM_CAN_DLC_MASK;
317 }
318
319 if (has_timestamp) {
320 /* restore rx timestamp */
321 skb->tstamp = op->rx_stamp;
322 }
323
324 /*
325 * Put the datagram to the queue so that bcm_recvmsg() can
326 * get it from there. We need to pass the interface index to
327 * bcm_recvmsg(). We pass a whole struct sockaddr_can in skb->cb
328 * containing the interface index.
329 */
330
331 BUILD_BUG_ON(sizeof(skb->cb) < sizeof(struct sockaddr_can));
332 addr = (struct sockaddr_can *)skb->cb;
333 memset(addr, 0, sizeof(*addr));
334 addr->can_family = AF_CAN;
335 addr->can_ifindex = op->rx_ifindex;
336
337 err = sock_queue_rcv_skb(sk, skb);
338 if (err < 0) {
339 struct bcm_sock *bo = bcm_sk(sk);
340
341 kfree_skb(skb);
342 /* don't care about overflows in this statistic */
343 bo->dropped_usr_msgs++;
344 }
345 }
346
347 static void bcm_tx_timeout_tsklet(unsigned long data)
348 {
349 struct bcm_op *op = (struct bcm_op *)data;
350 struct bcm_msg_head msg_head;
351
352 if (op->kt_ival1.tv64 && (op->count > 0)) {
353
354 op->count--;
355 if (!op->count && (op->flags & TX_COUNTEVT)) {
356
357 /* create notification to user */
358 msg_head.opcode = TX_EXPIRED;
359 msg_head.flags = op->flags;
360 msg_head.count = op->count;
361 msg_head.ival1 = op->ival1;
362 msg_head.ival2 = op->ival2;
363 msg_head.can_id = op->can_id;
364 msg_head.nframes = 0;
365
366 bcm_send_to_user(op, &msg_head, NULL, 0);
367 }
368
369 /* send (next) frame */
370 bcm_can_tx(op);
371 hrtimer_start(&op->timer,
372 ktime_add(ktime_get(), op->kt_ival1),
373 HRTIMER_MODE_ABS);
374
375 } else {
376 if (op->kt_ival2.tv64) {
377
378 /* send (next) frame */
379 bcm_can_tx(op);
380 hrtimer_start(&op->timer,
381 ktime_add(ktime_get(), op->kt_ival2),
382 HRTIMER_MODE_ABS);
383 }
384 }
385 }
386
387 /*
388 * bcm_tx_timeout_handler - performs cyclic CAN frame transmissions
389 */
390 static enum hrtimer_restart bcm_tx_timeout_handler(struct hrtimer *hrtimer)
391 {
392 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer);
393
394 tasklet_schedule(&op->tsklet);
395
396 return HRTIMER_NORESTART;
397 }
398
399 /*
400 * bcm_rx_changed - create a RX_CHANGED notification due to changed content
401 */
402 static void bcm_rx_changed(struct bcm_op *op, struct can_frame *data)
403 {
404 struct bcm_msg_head head;
405
406 /* update statistics */
407 op->frames_filtered++;
408
409 /* prevent statistics overflow */
410 if (op->frames_filtered > ULONG_MAX/100)
411 op->frames_filtered = op->frames_abs = 0;
412
413 /* this element is not throttled anymore */
414 data->can_dlc &= (BCM_CAN_DLC_MASK|RX_RECV);
415
416 head.opcode = RX_CHANGED;
417 head.flags = op->flags;
418 head.count = op->count;
419 head.ival1 = op->ival1;
420 head.ival2 = op->ival2;
421 head.can_id = op->can_id;
422 head.nframes = 1;
423
424 bcm_send_to_user(op, &head, data, 1);
425 }
426
427 /*
428 * bcm_rx_update_and_send - process a detected relevant receive content change
429 * 1. update the last received data
430 * 2. send a notification to the user (if possible)
431 */
432 static void bcm_rx_update_and_send(struct bcm_op *op,
433 struct can_frame *lastdata,
434 const struct can_frame *rxdata)
435 {
436 memcpy(lastdata, rxdata, CFSIZ);
437
438 /* mark as used and throttled by default */
439 lastdata->can_dlc |= (RX_RECV|RX_THR);
440
441 /* throtteling mode inactive ? */
442 if (!op->kt_ival2.tv64) {
443 /* send RX_CHANGED to the user immediately */
444 bcm_rx_changed(op, lastdata);
445 return;
446 }
447
448 /* with active throttling timer we are just done here */
449 if (hrtimer_active(&op->thrtimer))
450 return;
451
452 /* first receiption with enabled throttling mode */
453 if (!op->kt_lastmsg.tv64)
454 goto rx_changed_settime;
455
456 /* got a second frame inside a potential throttle period? */
457 if (ktime_us_delta(ktime_get(), op->kt_lastmsg) <
458 ktime_to_us(op->kt_ival2)) {
459 /* do not send the saved data - only start throttle timer */
460 hrtimer_start(&op->thrtimer,
461 ktime_add(op->kt_lastmsg, op->kt_ival2),
462 HRTIMER_MODE_ABS);
463 return;
464 }
465
466 /* the gap was that big, that throttling was not needed here */
467 rx_changed_settime:
468 bcm_rx_changed(op, lastdata);
469 op->kt_lastmsg = ktime_get();
470 }
471
472 /*
473 * bcm_rx_cmp_to_index - (bit)compares the currently received data to formerly
474 * received data stored in op->last_frames[]
475 */
476 static void bcm_rx_cmp_to_index(struct bcm_op *op, unsigned int index,
477 const struct can_frame *rxdata)
478 {
479 /*
480 * no one uses the MSBs of can_dlc for comparation,
481 * so we use it here to detect the first time of reception
482 */
483
484 if (!(op->last_frames[index].can_dlc & RX_RECV)) {
485 /* received data for the first time => send update to user */
486 bcm_rx_update_and_send(op, &op->last_frames[index], rxdata);
487 return;
488 }
489
490 /* do a real check in can_frame data section */
491
492 if ((GET_U64(&op->frames[index]) & GET_U64(rxdata)) !=
493 (GET_U64(&op->frames[index]) & GET_U64(&op->last_frames[index]))) {
494 bcm_rx_update_and_send(op, &op->last_frames[index], rxdata);
495 return;
496 }
497
498 if (op->flags & RX_CHECK_DLC) {
499 /* do a real check in can_frame dlc */
500 if (rxdata->can_dlc != (op->last_frames[index].can_dlc &
501 BCM_CAN_DLC_MASK)) {
502 bcm_rx_update_and_send(op, &op->last_frames[index],
503 rxdata);
504 return;
505 }
506 }
507 }
508
509 /*
510 * bcm_rx_starttimer - enable timeout monitoring for CAN frame receiption
511 */
512 static void bcm_rx_starttimer(struct bcm_op *op)
513 {
514 if (op->flags & RX_NO_AUTOTIMER)
515 return;
516
517 if (op->kt_ival1.tv64)
518 hrtimer_start(&op->timer, op->kt_ival1, HRTIMER_MODE_REL);
519 }
520
521 static void bcm_rx_timeout_tsklet(unsigned long data)
522 {
523 struct bcm_op *op = (struct bcm_op *)data;
524 struct bcm_msg_head msg_head;
525
526 /* create notification to user */
527 msg_head.opcode = RX_TIMEOUT;
528 msg_head.flags = op->flags;
529 msg_head.count = op->count;
530 msg_head.ival1 = op->ival1;
531 msg_head.ival2 = op->ival2;
532 msg_head.can_id = op->can_id;
533 msg_head.nframes = 0;
534
535 bcm_send_to_user(op, &msg_head, NULL, 0);
536 }
537
538 /*
539 * bcm_rx_timeout_handler - when the (cyclic) CAN frame receiption timed out
540 */
541 static enum hrtimer_restart bcm_rx_timeout_handler(struct hrtimer *hrtimer)
542 {
543 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer);
544
545 /* schedule before NET_RX_SOFTIRQ */
546 tasklet_hi_schedule(&op->tsklet);
547
548 /* no restart of the timer is done here! */
549
550 /* if user wants to be informed, when cyclic CAN-Messages come back */
551 if ((op->flags & RX_ANNOUNCE_RESUME) && op->last_frames) {
552 /* clear received can_frames to indicate 'nothing received' */
553 memset(op->last_frames, 0, op->nframes * CFSIZ);
554 }
555
556 return HRTIMER_NORESTART;
557 }
558
559 /*
560 * bcm_rx_do_flush - helper for bcm_rx_thr_flush
561 */
562 static inline int bcm_rx_do_flush(struct bcm_op *op, int update,
563 unsigned int index)
564 {
565 if ((op->last_frames) && (op->last_frames[index].can_dlc & RX_THR)) {
566 if (update)
567 bcm_rx_changed(op, &op->last_frames[index]);
568 return 1;
569 }
570 return 0;
571 }
572
573 /*
574 * bcm_rx_thr_flush - Check for throttled data and send it to the userspace
575 *
576 * update == 0 : just check if throttled data is available (any irq context)
577 * update == 1 : check and send throttled data to userspace (soft_irq context)
578 */
579 static int bcm_rx_thr_flush(struct bcm_op *op, int update)
580 {
581 int updated = 0;
582
583 if (op->nframes > 1) {
584 unsigned int i;
585
586 /* for MUX filter we start at index 1 */
587 for (i = 1; i < op->nframes; i++)
588 updated += bcm_rx_do_flush(op, update, i);
589
590 } else {
591 /* for RX_FILTER_ID and simple filter */
592 updated += bcm_rx_do_flush(op, update, 0);
593 }
594
595 return updated;
596 }
597
598 static void bcm_rx_thr_tsklet(unsigned long data)
599 {
600 struct bcm_op *op = (struct bcm_op *)data;
601
602 /* push the changed data to the userspace */
603 bcm_rx_thr_flush(op, 1);
604 }
605
606 /*
607 * bcm_rx_thr_handler - the time for blocked content updates is over now:
608 * Check for throttled data and send it to the userspace
609 */
610 static enum hrtimer_restart bcm_rx_thr_handler(struct hrtimer *hrtimer)
611 {
612 struct bcm_op *op = container_of(hrtimer, struct bcm_op, thrtimer);
613
614 tasklet_schedule(&op->thrtsklet);
615
616 if (bcm_rx_thr_flush(op, 0)) {
617 hrtimer_forward(hrtimer, ktime_get(), op->kt_ival2);
618 return HRTIMER_RESTART;
619 } else {
620 /* rearm throttle handling */
621 op->kt_lastmsg = ktime_set(0, 0);
622 return HRTIMER_NORESTART;
623 }
624 }
625
626 /*
627 * bcm_rx_handler - handle a CAN frame receiption
628 */
629 static void bcm_rx_handler(struct sk_buff *skb, void *data)
630 {
631 struct bcm_op *op = (struct bcm_op *)data;
632 const struct can_frame *rxframe = (struct can_frame *)skb->data;
633 unsigned int i;
634
635 /* disable timeout */
636 hrtimer_cancel(&op->timer);
637
638 if (op->can_id != rxframe->can_id)
639 return;
640
641 /* save rx timestamp */
642 op->rx_stamp = skb->tstamp;
643 /* save originator for recvfrom() */
644 op->rx_ifindex = skb->dev->ifindex;
645 /* update statistics */
646 op->frames_abs++;
647
648 if (op->flags & RX_RTR_FRAME) {
649 /* send reply for RTR-request (placed in op->frames[0]) */
650 bcm_can_tx(op);
651 return;
652 }
653
654 if (op->flags & RX_FILTER_ID) {
655 /* the easiest case */
656 bcm_rx_update_and_send(op, &op->last_frames[0], rxframe);
657 goto rx_starttimer;
658 }
659
660 if (op->nframes == 1) {
661 /* simple compare with index 0 */
662 bcm_rx_cmp_to_index(op, 0, rxframe);
663 goto rx_starttimer;
664 }
665
666 if (op->nframes > 1) {
667 /*
668 * multiplex compare
669 *
670 * find the first multiplex mask that fits.
671 * Remark: The MUX-mask is stored in index 0
672 */
673
674 for (i = 1; i < op->nframes; i++) {
675 if ((GET_U64(&op->frames[0]) & GET_U64(rxframe)) ==
676 (GET_U64(&op->frames[0]) &
677 GET_U64(&op->frames[i]))) {
678 bcm_rx_cmp_to_index(op, i, rxframe);
679 break;
680 }
681 }
682 }
683
684 rx_starttimer:
685 bcm_rx_starttimer(op);
686 }
687
688 /*
689 * helpers for bcm_op handling: find & delete bcm [rx|tx] op elements
690 */
691 static struct bcm_op *bcm_find_op(struct list_head *ops, canid_t can_id,
692 int ifindex)
693 {
694 struct bcm_op *op;
695
696 list_for_each_entry(op, ops, list) {
697 if ((op->can_id == can_id) && (op->ifindex == ifindex))
698 return op;
699 }
700
701 return NULL;
702 }
703
704 static void bcm_remove_op(struct bcm_op *op)
705 {
706 hrtimer_cancel(&op->timer);
707 hrtimer_cancel(&op->thrtimer);
708
709 if (op->tsklet.func)
710 tasklet_kill(&op->tsklet);
711
712 if (op->thrtsklet.func)
713 tasklet_kill(&op->thrtsklet);
714
715 if ((op->frames) && (op->frames != &op->sframe))
716 kfree(op->frames);
717
718 if ((op->last_frames) && (op->last_frames != &op->last_sframe))
719 kfree(op->last_frames);
720
721 kfree(op);
722 }
723
724 static void bcm_rx_unreg(struct net_device *dev, struct bcm_op *op)
725 {
726 if (op->rx_reg_dev == dev) {
727 can_rx_unregister(dev, op->can_id, REGMASK(op->can_id),
728 bcm_rx_handler, op);
729
730 /* mark as removed subscription */
731 op->rx_reg_dev = NULL;
732 } else
733 printk(KERN_ERR "can-bcm: bcm_rx_unreg: registered device "
734 "mismatch %p %p\n", op->rx_reg_dev, dev);
735 }
736
737 /*
738 * bcm_delete_rx_op - find and remove a rx op (returns number of removed ops)
739 */
740 static int bcm_delete_rx_op(struct list_head *ops, canid_t can_id, int ifindex)
741 {
742 struct bcm_op *op, *n;
743
744 list_for_each_entry_safe(op, n, ops, list) {
745 if ((op->can_id == can_id) && (op->ifindex == ifindex)) {
746
747 /*
748 * Don't care if we're bound or not (due to netdev
749 * problems) can_rx_unregister() is always a save
750 * thing to do here.
751 */
752 if (op->ifindex) {
753 /*
754 * Only remove subscriptions that had not
755 * been removed due to NETDEV_UNREGISTER
756 * in bcm_notifier()
757 */
758 if (op->rx_reg_dev) {
759 struct net_device *dev;
760
761 dev = dev_get_by_index(&init_net,
762 op->ifindex);
763 if (dev) {
764 bcm_rx_unreg(dev, op);
765 dev_put(dev);
766 }
767 }
768 } else
769 can_rx_unregister(NULL, op->can_id,
770 REGMASK(op->can_id),
771 bcm_rx_handler, op);
772
773 list_del(&op->list);
774 bcm_remove_op(op);
775 return 1; /* done */
776 }
777 }
778
779 return 0; /* not found */
780 }
781
782 /*
783 * bcm_delete_tx_op - find and remove a tx op (returns number of removed ops)
784 */
785 static int bcm_delete_tx_op(struct list_head *ops, canid_t can_id, int ifindex)
786 {
787 struct bcm_op *op, *n;
788
789 list_for_each_entry_safe(op, n, ops, list) {
790 if ((op->can_id == can_id) && (op->ifindex == ifindex)) {
791 list_del(&op->list);
792 bcm_remove_op(op);
793 return 1; /* done */
794 }
795 }
796
797 return 0; /* not found */
798 }
799
800 /*
801 * bcm_read_op - read out a bcm_op and send it to the user (for bcm_sendmsg)
802 */
803 static int bcm_read_op(struct list_head *ops, struct bcm_msg_head *msg_head,
804 int ifindex)
805 {
806 struct bcm_op *op = bcm_find_op(ops, msg_head->can_id, ifindex);
807
808 if (!op)
809 return -EINVAL;
810
811 /* put current values into msg_head */
812 msg_head->flags = op->flags;
813 msg_head->count = op->count;
814 msg_head->ival1 = op->ival1;
815 msg_head->ival2 = op->ival2;
816 msg_head->nframes = op->nframes;
817
818 bcm_send_to_user(op, msg_head, op->frames, 0);
819
820 return MHSIZ;
821 }
822
823 /*
824 * bcm_tx_setup - create or update a bcm tx op (for bcm_sendmsg)
825 */
826 static int bcm_tx_setup(struct bcm_msg_head *msg_head, struct msghdr *msg,
827 int ifindex, struct sock *sk)
828 {
829 struct bcm_sock *bo = bcm_sk(sk);
830 struct bcm_op *op;
831 unsigned int i;
832 int err;
833
834 /* we need a real device to send frames */
835 if (!ifindex)
836 return -ENODEV;
837
838 /* check nframes boundaries - we need at least one can_frame */
839 if (msg_head->nframes < 1 || msg_head->nframes > MAX_NFRAMES)
840 return -EINVAL;
841
842 /* check the given can_id */
843 op = bcm_find_op(&bo->tx_ops, msg_head->can_id, ifindex);
844
845 if (op) {
846 /* update existing BCM operation */
847
848 /*
849 * Do we need more space for the can_frames than currently
850 * allocated? -> This is a _really_ unusual use-case and
851 * therefore (complexity / locking) it is not supported.
852 */
853 if (msg_head->nframes > op->nframes)
854 return -E2BIG;
855
856 /* update can_frames content */
857 for (i = 0; i < msg_head->nframes; i++) {
858 err = memcpy_fromiovec((u8 *)&op->frames[i],
859 msg->msg_iov, CFSIZ);
860
861 if (op->frames[i].can_dlc > 8)
862 err = -EINVAL;
863
864 if (err < 0)
865 return err;
866
867 if (msg_head->flags & TX_CP_CAN_ID) {
868 /* copy can_id into frame */
869 op->frames[i].can_id = msg_head->can_id;
870 }
871 }
872
873 } else {
874 /* insert new BCM operation for the given can_id */
875
876 op = kzalloc(OPSIZ, GFP_KERNEL);
877 if (!op)
878 return -ENOMEM;
879
880 op->can_id = msg_head->can_id;
881
882 /* create array for can_frames and copy the data */
883 if (msg_head->nframes > 1) {
884 op->frames = kmalloc(msg_head->nframes * CFSIZ,
885 GFP_KERNEL);
886 if (!op->frames) {
887 kfree(op);
888 return -ENOMEM;
889 }
890 } else
891 op->frames = &op->sframe;
892
893 for (i = 0; i < msg_head->nframes; i++) {
894 err = memcpy_fromiovec((u8 *)&op->frames[i],
895 msg->msg_iov, CFSIZ);
896
897 if (op->frames[i].can_dlc > 8)
898 err = -EINVAL;
899
900 if (err < 0) {
901 if (op->frames != &op->sframe)
902 kfree(op->frames);
903 kfree(op);
904 return err;
905 }
906
907 if (msg_head->flags & TX_CP_CAN_ID) {
908 /* copy can_id into frame */
909 op->frames[i].can_id = msg_head->can_id;
910 }
911 }
912
913 /* tx_ops never compare with previous received messages */
914 op->last_frames = NULL;
915
916 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
917 op->sk = sk;
918 op->ifindex = ifindex;
919
920 /* initialize uninitialized (kzalloc) structure */
921 hrtimer_init(&op->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
922 op->timer.function = bcm_tx_timeout_handler;
923
924 /* initialize tasklet for tx countevent notification */
925 tasklet_init(&op->tsklet, bcm_tx_timeout_tsklet,
926 (unsigned long) op);
927
928 /* currently unused in tx_ops */
929 hrtimer_init(&op->thrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
930
931 /* add this bcm_op to the list of the tx_ops */
932 list_add(&op->list, &bo->tx_ops);
933
934 } /* if ((op = bcm_find_op(&bo->tx_ops, msg_head->can_id, ifindex))) */
935
936 if (op->nframes != msg_head->nframes) {
937 op->nframes = msg_head->nframes;
938 /* start multiple frame transmission with index 0 */
939 op->currframe = 0;
940 }
941
942 /* check flags */
943
944 op->flags = msg_head->flags;
945
946 if (op->flags & TX_RESET_MULTI_IDX) {
947 /* start multiple frame transmission with index 0 */
948 op->currframe = 0;
949 }
950
951 if (op->flags & SETTIMER) {
952 /* set timer values */
953 op->count = msg_head->count;
954 op->ival1 = msg_head->ival1;
955 op->ival2 = msg_head->ival2;
956 op->kt_ival1 = timeval_to_ktime(msg_head->ival1);
957 op->kt_ival2 = timeval_to_ktime(msg_head->ival2);
958
959 /* disable an active timer due to zero values? */
960 if (!op->kt_ival1.tv64 && !op->kt_ival2.tv64)
961 hrtimer_cancel(&op->timer);
962 }
963
964 if ((op->flags & STARTTIMER) &&
965 ((op->kt_ival1.tv64 && op->count) || op->kt_ival2.tv64)) {
966
967 /* spec: send can_frame when starting timer */
968 op->flags |= TX_ANNOUNCE;
969
970 /* only start timer when having more frames than sent below */
971 if (op->kt_ival1.tv64 && (op->count > 1)) {
972 /* op->count-- is done in bcm_tx_timeout_tsklet */
973 hrtimer_start(&op->timer, op->kt_ival1,
974 HRTIMER_MODE_REL);
975 } else
976 hrtimer_start(&op->timer, op->kt_ival2,
977 HRTIMER_MODE_REL);
978 }
979
980 if (op->flags & TX_ANNOUNCE) {
981 bcm_can_tx(op);
982 if (op->kt_ival1.tv64 && (op->count > 0))
983 op->count--;
984 }
985
986 return msg_head->nframes * CFSIZ + MHSIZ;
987 }
988
989 /*
990 * bcm_rx_setup - create or update a bcm rx op (for bcm_sendmsg)
991 */
992 static int bcm_rx_setup(struct bcm_msg_head *msg_head, struct msghdr *msg,
993 int ifindex, struct sock *sk)
994 {
995 struct bcm_sock *bo = bcm_sk(sk);
996 struct bcm_op *op;
997 int do_rx_register;
998 int err = 0;
999
1000 if ((msg_head->flags & RX_FILTER_ID) || (!(msg_head->nframes))) {
1001 /* be robust against wrong usage ... */
1002 msg_head->flags |= RX_FILTER_ID;
1003 /* ignore trailing garbage */
1004 msg_head->nframes = 0;
1005 }
1006
1007 /* the first element contains the mux-mask => MAX_NFRAMES + 1 */
1008 if (msg_head->nframes > MAX_NFRAMES + 1)
1009 return -EINVAL;
1010
1011 if ((msg_head->flags & RX_RTR_FRAME) &&
1012 ((msg_head->nframes != 1) ||
1013 (!(msg_head->can_id & CAN_RTR_FLAG))))
1014 return -EINVAL;
1015
1016 /* check the given can_id */
1017 op = bcm_find_op(&bo->rx_ops, msg_head->can_id, ifindex);
1018 if (op) {
1019 /* update existing BCM operation */
1020
1021 /*
1022 * Do we need more space for the can_frames than currently
1023 * allocated? -> This is a _really_ unusual use-case and
1024 * therefore (complexity / locking) it is not supported.
1025 */
1026 if (msg_head->nframes > op->nframes)
1027 return -E2BIG;
1028
1029 if (msg_head->nframes) {
1030 /* update can_frames content */
1031 err = memcpy_fromiovec((u8 *)op->frames,
1032 msg->msg_iov,
1033 msg_head->nframes * CFSIZ);
1034 if (err < 0)
1035 return err;
1036
1037 /* clear last_frames to indicate 'nothing received' */
1038 memset(op->last_frames, 0, msg_head->nframes * CFSIZ);
1039 }
1040
1041 op->nframes = msg_head->nframes;
1042
1043 /* Only an update -> do not call can_rx_register() */
1044 do_rx_register = 0;
1045
1046 } else {
1047 /* insert new BCM operation for the given can_id */
1048 op = kzalloc(OPSIZ, GFP_KERNEL);
1049 if (!op)
1050 return -ENOMEM;
1051
1052 op->can_id = msg_head->can_id;
1053 op->nframes = msg_head->nframes;
1054
1055 if (msg_head->nframes > 1) {
1056 /* create array for can_frames and copy the data */
1057 op->frames = kmalloc(msg_head->nframes * CFSIZ,
1058 GFP_KERNEL);
1059 if (!op->frames) {
1060 kfree(op);
1061 return -ENOMEM;
1062 }
1063
1064 /* create and init array for received can_frames */
1065 op->last_frames = kzalloc(msg_head->nframes * CFSIZ,
1066 GFP_KERNEL);
1067 if (!op->last_frames) {
1068 kfree(op->frames);
1069 kfree(op);
1070 return -ENOMEM;
1071 }
1072
1073 } else {
1074 op->frames = &op->sframe;
1075 op->last_frames = &op->last_sframe;
1076 }
1077
1078 if (msg_head->nframes) {
1079 err = memcpy_fromiovec((u8 *)op->frames, msg->msg_iov,
1080 msg_head->nframes * CFSIZ);
1081 if (err < 0) {
1082 if (op->frames != &op->sframe)
1083 kfree(op->frames);
1084 if (op->last_frames != &op->last_sframe)
1085 kfree(op->last_frames);
1086 kfree(op);
1087 return err;
1088 }
1089 }
1090
1091 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
1092 op->sk = sk;
1093 op->ifindex = ifindex;
1094
1095 /* initialize uninitialized (kzalloc) structure */
1096 hrtimer_init(&op->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1097 op->timer.function = bcm_rx_timeout_handler;
1098
1099 /* initialize tasklet for rx timeout notification */
1100 tasklet_init(&op->tsklet, bcm_rx_timeout_tsklet,
1101 (unsigned long) op);
1102
1103 hrtimer_init(&op->thrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1104 op->thrtimer.function = bcm_rx_thr_handler;
1105
1106 /* initialize tasklet for rx throttle handling */
1107 tasklet_init(&op->thrtsklet, bcm_rx_thr_tsklet,
1108 (unsigned long) op);
1109
1110 /* add this bcm_op to the list of the rx_ops */
1111 list_add(&op->list, &bo->rx_ops);
1112
1113 /* call can_rx_register() */
1114 do_rx_register = 1;
1115
1116 } /* if ((op = bcm_find_op(&bo->rx_ops, msg_head->can_id, ifindex))) */
1117
1118 /* check flags */
1119 op->flags = msg_head->flags;
1120
1121 if (op->flags & RX_RTR_FRAME) {
1122
1123 /* no timers in RTR-mode */
1124 hrtimer_cancel(&op->thrtimer);
1125 hrtimer_cancel(&op->timer);
1126
1127 /*
1128 * funny feature in RX(!)_SETUP only for RTR-mode:
1129 * copy can_id into frame BUT without RTR-flag to
1130 * prevent a full-load-loopback-test ... ;-]
1131 */
1132 if ((op->flags & TX_CP_CAN_ID) ||
1133 (op->frames[0].can_id == op->can_id))
1134 op->frames[0].can_id = op->can_id & ~CAN_RTR_FLAG;
1135
1136 } else {
1137 if (op->flags & SETTIMER) {
1138
1139 /* set timer value */
1140 op->ival1 = msg_head->ival1;
1141 op->ival2 = msg_head->ival2;
1142 op->kt_ival1 = timeval_to_ktime(msg_head->ival1);
1143 op->kt_ival2 = timeval_to_ktime(msg_head->ival2);
1144
1145 /* disable an active timer due to zero value? */
1146 if (!op->kt_ival1.tv64)
1147 hrtimer_cancel(&op->timer);
1148
1149 /*
1150 * In any case cancel the throttle timer, flush
1151 * potentially blocked msgs and reset throttle handling
1152 */
1153 op->kt_lastmsg = ktime_set(0, 0);
1154 hrtimer_cancel(&op->thrtimer);
1155 bcm_rx_thr_flush(op, 1);
1156 }
1157
1158 if ((op->flags & STARTTIMER) && op->kt_ival1.tv64)
1159 hrtimer_start(&op->timer, op->kt_ival1,
1160 HRTIMER_MODE_REL);
1161 }
1162
1163 /* now we can register for can_ids, if we added a new bcm_op */
1164 if (do_rx_register) {
1165 if (ifindex) {
1166 struct net_device *dev;
1167
1168 dev = dev_get_by_index(&init_net, ifindex);
1169 if (dev) {
1170 err = can_rx_register(dev, op->can_id,
1171 REGMASK(op->can_id),
1172 bcm_rx_handler, op,
1173 "bcm");
1174
1175 op->rx_reg_dev = dev;
1176 dev_put(dev);
1177 }
1178
1179 } else
1180 err = can_rx_register(NULL, op->can_id,
1181 REGMASK(op->can_id),
1182 bcm_rx_handler, op, "bcm");
1183 if (err) {
1184 /* this bcm rx op is broken -> remove it */
1185 list_del(&op->list);
1186 bcm_remove_op(op);
1187 return err;
1188 }
1189 }
1190
1191 return msg_head->nframes * CFSIZ + MHSIZ;
1192 }
1193
1194 /*
1195 * bcm_tx_send - send a single CAN frame to the CAN interface (for bcm_sendmsg)
1196 */
1197 static int bcm_tx_send(struct msghdr *msg, int ifindex, struct sock *sk)
1198 {
1199 struct sk_buff *skb;
1200 struct net_device *dev;
1201 int err;
1202
1203 /* we need a real device to send frames */
1204 if (!ifindex)
1205 return -ENODEV;
1206
1207 skb = alloc_skb(CFSIZ, GFP_KERNEL);
1208
1209 if (!skb)
1210 return -ENOMEM;
1211
1212 err = memcpy_fromiovec(skb_put(skb, CFSIZ), msg->msg_iov, CFSIZ);
1213 if (err < 0) {
1214 kfree_skb(skb);
1215 return err;
1216 }
1217
1218 dev = dev_get_by_index(&init_net, ifindex);
1219 if (!dev) {
1220 kfree_skb(skb);
1221 return -ENODEV;
1222 }
1223
1224 skb->dev = dev;
1225 skb->sk = sk;
1226 err = can_send(skb, 1); /* send with loopback */
1227 dev_put(dev);
1228
1229 if (err)
1230 return err;
1231
1232 return CFSIZ + MHSIZ;
1233 }
1234
1235 /*
1236 * bcm_sendmsg - process BCM commands (opcodes) from the userspace
1237 */
1238 static int bcm_sendmsg(struct kiocb *iocb, struct socket *sock,
1239 struct msghdr *msg, size_t size)
1240 {
1241 struct sock *sk = sock->sk;
1242 struct bcm_sock *bo = bcm_sk(sk);
1243 int ifindex = bo->ifindex; /* default ifindex for this bcm_op */
1244 struct bcm_msg_head msg_head;
1245 int ret; /* read bytes or error codes as return value */
1246
1247 if (!bo->bound)
1248 return -ENOTCONN;
1249
1250 /* check for valid message length from userspace */
1251 if (size < MHSIZ || (size - MHSIZ) % CFSIZ)
1252 return -EINVAL;
1253
1254 /* check for alternative ifindex for this bcm_op */
1255
1256 if (!ifindex && msg->msg_name) {
1257 /* no bound device as default => check msg_name */
1258 struct sockaddr_can *addr =
1259 (struct sockaddr_can *)msg->msg_name;
1260
1261 if (msg->msg_namelen < sizeof(*addr))
1262 return -EINVAL;
1263
1264 if (addr->can_family != AF_CAN)
1265 return -EINVAL;
1266
1267 /* ifindex from sendto() */
1268 ifindex = addr->can_ifindex;
1269
1270 if (ifindex) {
1271 struct net_device *dev;
1272
1273 dev = dev_get_by_index(&init_net, ifindex);
1274 if (!dev)
1275 return -ENODEV;
1276
1277 if (dev->type != ARPHRD_CAN) {
1278 dev_put(dev);
1279 return -ENODEV;
1280 }
1281
1282 dev_put(dev);
1283 }
1284 }
1285
1286 /* read message head information */
1287
1288 ret = memcpy_fromiovec((u8 *)&msg_head, msg->msg_iov, MHSIZ);
1289 if (ret < 0)
1290 return ret;
1291
1292 lock_sock(sk);
1293
1294 switch (msg_head.opcode) {
1295
1296 case TX_SETUP:
1297 ret = bcm_tx_setup(&msg_head, msg, ifindex, sk);
1298 break;
1299
1300 case RX_SETUP:
1301 ret = bcm_rx_setup(&msg_head, msg, ifindex, sk);
1302 break;
1303
1304 case TX_DELETE:
1305 if (bcm_delete_tx_op(&bo->tx_ops, msg_head.can_id, ifindex))
1306 ret = MHSIZ;
1307 else
1308 ret = -EINVAL;
1309 break;
1310
1311 case RX_DELETE:
1312 if (bcm_delete_rx_op(&bo->rx_ops, msg_head.can_id, ifindex))
1313 ret = MHSIZ;
1314 else
1315 ret = -EINVAL;
1316 break;
1317
1318 case TX_READ:
1319 /* reuse msg_head for the reply to TX_READ */
1320 msg_head.opcode = TX_STATUS;
1321 ret = bcm_read_op(&bo->tx_ops, &msg_head, ifindex);
1322 break;
1323
1324 case RX_READ:
1325 /* reuse msg_head for the reply to RX_READ */
1326 msg_head.opcode = RX_STATUS;
1327 ret = bcm_read_op(&bo->rx_ops, &msg_head, ifindex);
1328 break;
1329
1330 case TX_SEND:
1331 /* we need exactly one can_frame behind the msg head */
1332 if ((msg_head.nframes != 1) || (size != CFSIZ + MHSIZ))
1333 ret = -EINVAL;
1334 else
1335 ret = bcm_tx_send(msg, ifindex, sk);
1336 break;
1337
1338 default:
1339 ret = -EINVAL;
1340 break;
1341 }
1342
1343 release_sock(sk);
1344
1345 return ret;
1346 }
1347
1348 /*
1349 * notification handler for netdevice status changes
1350 */
1351 static int bcm_notifier(struct notifier_block *nb, unsigned long msg,
1352 void *data)
1353 {
1354 struct net_device *dev = (struct net_device *)data;
1355 struct bcm_sock *bo = container_of(nb, struct bcm_sock, notifier);
1356 struct sock *sk = &bo->sk;
1357 struct bcm_op *op;
1358 int notify_enodev = 0;
1359
1360 if (!net_eq(dev_net(dev), &init_net))
1361 return NOTIFY_DONE;
1362
1363 if (dev->type != ARPHRD_CAN)
1364 return NOTIFY_DONE;
1365
1366 switch (msg) {
1367
1368 case NETDEV_UNREGISTER:
1369 lock_sock(sk);
1370
1371 /* remove device specific receive entries */
1372 list_for_each_entry(op, &bo->rx_ops, list)
1373 if (op->rx_reg_dev == dev)
1374 bcm_rx_unreg(dev, op);
1375
1376 /* remove device reference, if this is our bound device */
1377 if (bo->bound && bo->ifindex == dev->ifindex) {
1378 bo->bound = 0;
1379 bo->ifindex = 0;
1380 notify_enodev = 1;
1381 }
1382
1383 release_sock(sk);
1384
1385 if (notify_enodev) {
1386 sk->sk_err = ENODEV;
1387 if (!sock_flag(sk, SOCK_DEAD))
1388 sk->sk_error_report(sk);
1389 }
1390 break;
1391
1392 case NETDEV_DOWN:
1393 if (bo->bound && bo->ifindex == dev->ifindex) {
1394 sk->sk_err = ENETDOWN;
1395 if (!sock_flag(sk, SOCK_DEAD))
1396 sk->sk_error_report(sk);
1397 }
1398 }
1399
1400 return NOTIFY_DONE;
1401 }
1402
1403 /*
1404 * initial settings for all BCM sockets to be set at socket creation time
1405 */
1406 static int bcm_init(struct sock *sk)
1407 {
1408 struct bcm_sock *bo = bcm_sk(sk);
1409
1410 bo->bound = 0;
1411 bo->ifindex = 0;
1412 bo->dropped_usr_msgs = 0;
1413 bo->bcm_proc_read = NULL;
1414
1415 INIT_LIST_HEAD(&bo->tx_ops);
1416 INIT_LIST_HEAD(&bo->rx_ops);
1417
1418 /* set notifier */
1419 bo->notifier.notifier_call = bcm_notifier;
1420
1421 register_netdevice_notifier(&bo->notifier);
1422
1423 return 0;
1424 }
1425
1426 /*
1427 * standard socket functions
1428 */
1429 static int bcm_release(struct socket *sock)
1430 {
1431 struct sock *sk = sock->sk;
1432 struct bcm_sock *bo;
1433 struct bcm_op *op, *next;
1434
1435 if (sk == NULL)
1436 return 0;
1437
1438 bo = bcm_sk(sk);
1439
1440 /* remove bcm_ops, timer, rx_unregister(), etc. */
1441
1442 unregister_netdevice_notifier(&bo->notifier);
1443
1444 lock_sock(sk);
1445
1446 list_for_each_entry_safe(op, next, &bo->tx_ops, list)
1447 bcm_remove_op(op);
1448
1449 list_for_each_entry_safe(op, next, &bo->rx_ops, list) {
1450 /*
1451 * Don't care if we're bound or not (due to netdev problems)
1452 * can_rx_unregister() is always a save thing to do here.
1453 */
1454 if (op->ifindex) {
1455 /*
1456 * Only remove subscriptions that had not
1457 * been removed due to NETDEV_UNREGISTER
1458 * in bcm_notifier()
1459 */
1460 if (op->rx_reg_dev) {
1461 struct net_device *dev;
1462
1463 dev = dev_get_by_index(&init_net, op->ifindex);
1464 if (dev) {
1465 bcm_rx_unreg(dev, op);
1466 dev_put(dev);
1467 }
1468 }
1469 } else
1470 can_rx_unregister(NULL, op->can_id,
1471 REGMASK(op->can_id),
1472 bcm_rx_handler, op);
1473
1474 bcm_remove_op(op);
1475 }
1476
1477 /* remove procfs entry */
1478 if (proc_dir && bo->bcm_proc_read)
1479 remove_proc_entry(bo->procname, proc_dir);
1480
1481 /* remove device reference */
1482 if (bo->bound) {
1483 bo->bound = 0;
1484 bo->ifindex = 0;
1485 }
1486
1487 sock_orphan(sk);
1488 sock->sk = NULL;
1489
1490 release_sock(sk);
1491 sock_put(sk);
1492
1493 return 0;
1494 }
1495
1496 static int bcm_connect(struct socket *sock, struct sockaddr *uaddr, int len,
1497 int flags)
1498 {
1499 struct sockaddr_can *addr = (struct sockaddr_can *)uaddr;
1500 struct sock *sk = sock->sk;
1501 struct bcm_sock *bo = bcm_sk(sk);
1502
1503 if (len < sizeof(*addr))
1504 return -EINVAL;
1505
1506 if (bo->bound)
1507 return -EISCONN;
1508
1509 /* bind a device to this socket */
1510 if (addr->can_ifindex) {
1511 struct net_device *dev;
1512
1513 dev = dev_get_by_index(&init_net, addr->can_ifindex);
1514 if (!dev)
1515 return -ENODEV;
1516
1517 if (dev->type != ARPHRD_CAN) {
1518 dev_put(dev);
1519 return -ENODEV;
1520 }
1521
1522 bo->ifindex = dev->ifindex;
1523 dev_put(dev);
1524
1525 } else {
1526 /* no interface reference for ifindex = 0 ('any' CAN device) */
1527 bo->ifindex = 0;
1528 }
1529
1530 bo->bound = 1;
1531
1532 if (proc_dir) {
1533 /* unique socket address as filename */
1534 sprintf(bo->procname, "%lu", sock_i_ino(sk));
1535 bo->bcm_proc_read = proc_create_data(bo->procname, 0644,
1536 proc_dir,
1537 &bcm_proc_fops, sk);
1538 }
1539
1540 return 0;
1541 }
1542
1543 static int bcm_recvmsg(struct kiocb *iocb, struct socket *sock,
1544 struct msghdr *msg, size_t size, int flags)
1545 {
1546 struct sock *sk = sock->sk;
1547 struct sk_buff *skb;
1548 int error = 0;
1549 int noblock;
1550 int err;
1551
1552 noblock = flags & MSG_DONTWAIT;
1553 flags &= ~MSG_DONTWAIT;
1554 skb = skb_recv_datagram(sk, flags, noblock, &error);
1555 if (!skb)
1556 return error;
1557
1558 if (skb->len < size)
1559 size = skb->len;
1560
1561 err = memcpy_toiovec(msg->msg_iov, skb->data, size);
1562 if (err < 0) {
1563 skb_free_datagram(sk, skb);
1564 return err;
1565 }
1566
1567 sock_recv_ts_and_drops(msg, sk, skb);
1568
1569 if (msg->msg_name) {
1570 msg->msg_namelen = sizeof(struct sockaddr_can);
1571 memcpy(msg->msg_name, skb->cb, msg->msg_namelen);
1572 }
1573
1574 skb_free_datagram(sk, skb);
1575
1576 return size;
1577 }
1578
1579 static const struct proto_ops bcm_ops = {
1580 .family = PF_CAN,
1581 .release = bcm_release,
1582 .bind = sock_no_bind,
1583 .connect = bcm_connect,
1584 .socketpair = sock_no_socketpair,
1585 .accept = sock_no_accept,
1586 .getname = sock_no_getname,
1587 .poll = datagram_poll,
1588 .ioctl = can_ioctl, /* use can_ioctl() from af_can.c */
1589 .listen = sock_no_listen,
1590 .shutdown = sock_no_shutdown,
1591 .setsockopt = sock_no_setsockopt,
1592 .getsockopt = sock_no_getsockopt,
1593 .sendmsg = bcm_sendmsg,
1594 .recvmsg = bcm_recvmsg,
1595 .mmap = sock_no_mmap,
1596 .sendpage = sock_no_sendpage,
1597 };
1598
1599 static struct proto bcm_proto __read_mostly = {
1600 .name = "CAN_BCM",
1601 .owner = THIS_MODULE,
1602 .obj_size = sizeof(struct bcm_sock),
1603 .init = bcm_init,
1604 };
1605
1606 static const struct can_proto bcm_can_proto = {
1607 .type = SOCK_DGRAM,
1608 .protocol = CAN_BCM,
1609 .ops = &bcm_ops,
1610 .prot = &bcm_proto,
1611 };
1612
1613 static int __init bcm_module_init(void)
1614 {
1615 int err;
1616
1617 printk(banner);
1618
1619 err = can_proto_register(&bcm_can_proto);
1620 if (err < 0) {
1621 printk(KERN_ERR "can: registration of bcm protocol failed\n");
1622 return err;
1623 }
1624
1625 /* create /proc/net/can-bcm directory */
1626 proc_dir = proc_mkdir("can-bcm", init_net.proc_net);
1627 return 0;
1628 }
1629
1630 static void __exit bcm_module_exit(void)
1631 {
1632 can_proto_unregister(&bcm_can_proto);
1633
1634 if (proc_dir)
1635 proc_net_remove(&init_net, "can-bcm");
1636 }
1637
1638 module_init(bcm_module_init);
1639 module_exit(bcm_module_exit);