2 * bcm.c - Broadcast Manager to filter/send (cyclic) CAN content
4 * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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.
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.
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
40 * Send feedback to <socketcan-users@lists.berlios.de>
44 #include <linux/module.h>
45 #include <linux/init.h>
46 #include <linux/hrtimer.h>
47 #include <linux/list.h>
48 #include <linux/proc_fs.h>
49 #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>
57 #include <linux/can/bcm.h>
59 #include <net/net_namespace.h>
61 /* use of last_frames[index].can_dlc */
62 #define RX_RECV 0x40 /* received data for this element */
63 #define RX_THR 0x80 /* element not been sent due to throttle feature */
64 #define BCM_CAN_DLC_MASK 0x0F /* clean private flags in can_dlc by masking */
66 /* get best masking value for can_rx_register() for a given single can_id */
67 #define REGMASK(id) ((id & CAN_EFF_FLAG) ? \
68 (CAN_EFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG) : \
69 (CAN_SFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG))
71 #define CAN_BCM_VERSION CAN_VERSION
72 static __initdata
const char banner
[] = KERN_INFO
73 "can: broadcast manager protocol (rev " CAN_BCM_VERSION
" t)\n";
75 MODULE_DESCRIPTION("PF_CAN broadcast manager protocol");
76 MODULE_LICENSE("Dual BSD/GPL");
77 MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
78 MODULE_ALIAS("can-proto-2");
80 /* easy access to can_frame payload */
81 static inline u64
GET_U64(const struct can_frame
*cp
)
83 return *(u64
*)cp
->data
;
87 struct list_head list
;
91 unsigned long frames_abs
, frames_filtered
;
92 struct timeval ival1
, ival2
;
93 struct hrtimer timer
, thrtimer
;
94 struct tasklet_struct tsklet
, thrtsklet
;
95 ktime_t rx_stamp
, kt_ival1
, kt_ival2
, kt_lastmsg
;
100 struct can_frame
*frames
;
101 struct can_frame
*last_frames
;
102 struct can_frame sframe
;
103 struct can_frame last_sframe
;
105 struct net_device
*rx_reg_dev
;
108 static struct proc_dir_entry
*proc_dir
;
114 struct notifier_block notifier
;
115 struct list_head rx_ops
;
116 struct list_head tx_ops
;
117 unsigned long dropped_usr_msgs
;
118 struct proc_dir_entry
*bcm_proc_read
;
119 char procname
[9]; /* pointer printed in ASCII with \0 */
122 static inline struct bcm_sock
*bcm_sk(const struct sock
*sk
)
124 return (struct bcm_sock
*)sk
;
127 #define CFSIZ sizeof(struct can_frame)
128 #define OPSIZ sizeof(struct bcm_op)
129 #define MHSIZ sizeof(struct bcm_msg_head)
134 static char *bcm_proc_getifname(int ifindex
)
136 struct net_device
*dev
;
141 /* no usage counting */
142 dev
= __dev_get_by_index(&init_net
, ifindex
);
149 static int bcm_read_proc(char *page
, char **start
, off_t off
,
150 int count
, int *eof
, void *data
)
153 struct sock
*sk
= (struct sock
*)data
;
154 struct bcm_sock
*bo
= bcm_sk(sk
);
157 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, ">>> socket %p",
159 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / sk %p", sk
);
160 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / bo %p", bo
);
161 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / dropped %lu",
162 bo
->dropped_usr_msgs
);
163 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / bound %s",
164 bcm_proc_getifname(bo
->ifindex
));
165 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " <<<\n");
167 list_for_each_entry(op
, &bo
->rx_ops
, list
) {
169 unsigned long reduction
;
171 /* print only active entries & prevent division by zero */
175 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
177 op
->can_id
, bcm_proc_getifname(op
->ifindex
));
178 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "[%d]%c ",
180 (op
->flags
& RX_CHECK_DLC
)?'d':' ');
181 if (op
->kt_ival1
.tv64
)
182 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
185 ktime_to_us(op
->kt_ival1
));
187 if (op
->kt_ival2
.tv64
)
188 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
191 ktime_to_us(op
->kt_ival2
));
193 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
194 "# recv %ld (%ld) => reduction: ",
195 op
->frames_filtered
, op
->frames_abs
);
197 reduction
= 100 - (op
->frames_filtered
* 100) / op
->frames_abs
;
199 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "%s%ld%%\n",
200 (reduction
== 100)?"near ":"", reduction
);
202 if (len
> PAGE_SIZE
- 200) {
203 /* mark output cut off */
204 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "(..)\n");
209 list_for_each_entry(op
, &bo
->tx_ops
, list
) {
211 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
212 "tx_op: %03X %s [%d] ",
213 op
->can_id
, bcm_proc_getifname(op
->ifindex
),
216 if (op
->kt_ival1
.tv64
)
217 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "t1=%lld ",
218 (long long) ktime_to_us(op
->kt_ival1
));
220 if (op
->kt_ival2
.tv64
)
221 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "t2=%lld ",
222 (long long) ktime_to_us(op
->kt_ival2
));
224 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "# sent %ld\n",
227 if (len
> PAGE_SIZE
- 100) {
228 /* mark output cut off */
229 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "(..)\n");
234 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "\n");
241 * bcm_can_tx - send the (next) CAN frame to the appropriate CAN interface
242 * of the given bcm tx op
244 static void bcm_can_tx(struct bcm_op
*op
)
247 struct net_device
*dev
;
248 struct can_frame
*cf
= &op
->frames
[op
->currframe
];
250 /* no target device? => exit */
254 dev
= dev_get_by_index(&init_net
, op
->ifindex
);
256 /* RFC: should this bcm_op remove itself here? */
260 skb
= alloc_skb(CFSIZ
, gfp_any());
264 memcpy(skb_put(skb
, CFSIZ
), cf
, CFSIZ
);
266 /* send with loopback */
271 /* update statistics */
275 /* reached last frame? */
276 if (op
->currframe
>= op
->nframes
)
283 * bcm_send_to_user - send a BCM message to the userspace
284 * (consisting of bcm_msg_head + x CAN frames)
286 static void bcm_send_to_user(struct bcm_op
*op
, struct bcm_msg_head
*head
,
287 struct can_frame
*frames
, int has_timestamp
)
290 struct can_frame
*firstframe
;
291 struct sockaddr_can
*addr
;
292 struct sock
*sk
= op
->sk
;
293 int datalen
= head
->nframes
* CFSIZ
;
296 skb
= alloc_skb(sizeof(*head
) + datalen
, gfp_any());
300 memcpy(skb_put(skb
, sizeof(*head
)), head
, sizeof(*head
));
303 /* can_frames starting here */
304 firstframe
= (struct can_frame
*)skb_tail_pointer(skb
);
306 memcpy(skb_put(skb
, datalen
), frames
, datalen
);
309 * the BCM uses the can_dlc-element of the can_frame
310 * structure for internal purposes. This is only
311 * relevant for updates that are generated by the
312 * BCM, where nframes is 1
314 if (head
->nframes
== 1)
315 firstframe
->can_dlc
&= BCM_CAN_DLC_MASK
;
319 /* restore rx timestamp */
320 skb
->tstamp
= op
->rx_stamp
;
324 * Put the datagram to the queue so that bcm_recvmsg() can
325 * get it from there. We need to pass the interface index to
326 * bcm_recvmsg(). We pass a whole struct sockaddr_can in skb->cb
327 * containing the interface index.
330 BUILD_BUG_ON(sizeof(skb
->cb
) < sizeof(struct sockaddr_can
));
331 addr
= (struct sockaddr_can
*)skb
->cb
;
332 memset(addr
, 0, sizeof(*addr
));
333 addr
->can_family
= AF_CAN
;
334 addr
->can_ifindex
= op
->rx_ifindex
;
336 err
= sock_queue_rcv_skb(sk
, skb
);
338 struct bcm_sock
*bo
= bcm_sk(sk
);
341 /* don't care about overflows in this statistic */
342 bo
->dropped_usr_msgs
++;
346 static void bcm_tx_timeout_tsklet(unsigned long data
)
348 struct bcm_op
*op
= (struct bcm_op
*)data
;
349 struct bcm_msg_head msg_head
;
351 if (op
->kt_ival1
.tv64
&& (op
->count
> 0)) {
354 if (!op
->count
&& (op
->flags
& TX_COUNTEVT
)) {
356 /* create notification to user */
357 msg_head
.opcode
= TX_EXPIRED
;
358 msg_head
.flags
= op
->flags
;
359 msg_head
.count
= op
->count
;
360 msg_head
.ival1
= op
->ival1
;
361 msg_head
.ival2
= op
->ival2
;
362 msg_head
.can_id
= op
->can_id
;
363 msg_head
.nframes
= 0;
365 bcm_send_to_user(op
, &msg_head
, NULL
, 0);
369 if (op
->kt_ival1
.tv64
&& (op
->count
> 0)) {
371 /* send (next) frame */
373 hrtimer_start(&op
->timer
,
374 ktime_add(ktime_get(), op
->kt_ival1
),
378 if (op
->kt_ival2
.tv64
) {
380 /* send (next) frame */
382 hrtimer_start(&op
->timer
,
383 ktime_add(ktime_get(), op
->kt_ival2
),
390 * bcm_tx_timeout_handler - performes cyclic CAN frame transmissions
392 static enum hrtimer_restart
bcm_tx_timeout_handler(struct hrtimer
*hrtimer
)
394 struct bcm_op
*op
= container_of(hrtimer
, struct bcm_op
, timer
);
396 tasklet_schedule(&op
->tsklet
);
398 return HRTIMER_NORESTART
;
402 * bcm_rx_changed - create a RX_CHANGED notification due to changed content
404 static void bcm_rx_changed(struct bcm_op
*op
, struct can_frame
*data
)
406 struct bcm_msg_head head
;
408 /* update statistics */
409 op
->frames_filtered
++;
411 /* prevent statistics overflow */
412 if (op
->frames_filtered
> ULONG_MAX
/100)
413 op
->frames_filtered
= op
->frames_abs
= 0;
415 /* this element is not throttled anymore */
416 data
->can_dlc
&= (BCM_CAN_DLC_MASK
|RX_RECV
);
418 head
.opcode
= RX_CHANGED
;
419 head
.flags
= op
->flags
;
420 head
.count
= op
->count
;
421 head
.ival1
= op
->ival1
;
422 head
.ival2
= op
->ival2
;
423 head
.can_id
= op
->can_id
;
426 bcm_send_to_user(op
, &head
, data
, 1);
430 * bcm_rx_update_and_send - process a detected relevant receive content change
431 * 1. update the last received data
432 * 2. send a notification to the user (if possible)
434 static void bcm_rx_update_and_send(struct bcm_op
*op
,
435 struct can_frame
*lastdata
,
436 const struct can_frame
*rxdata
)
438 memcpy(lastdata
, rxdata
, CFSIZ
);
440 /* mark as used and throttled by default */
441 lastdata
->can_dlc
|= (RX_RECV
|RX_THR
);
443 /* throtteling mode inactive ? */
444 if (!op
->kt_ival2
.tv64
) {
445 /* send RX_CHANGED to the user immediately */
446 bcm_rx_changed(op
, lastdata
);
450 /* with active throttling timer we are just done here */
451 if (hrtimer_active(&op
->thrtimer
))
454 /* first receiption with enabled throttling mode */
455 if (!op
->kt_lastmsg
.tv64
)
456 goto rx_changed_settime
;
458 /* got a second frame inside a potential throttle period? */
459 if (ktime_us_delta(ktime_get(), op
->kt_lastmsg
) <
460 ktime_to_us(op
->kt_ival2
)) {
461 /* do not send the saved data - only start throttle timer */
462 hrtimer_start(&op
->thrtimer
,
463 ktime_add(op
->kt_lastmsg
, op
->kt_ival2
),
468 /* the gap was that big, that throttling was not needed here */
470 bcm_rx_changed(op
, lastdata
);
471 op
->kt_lastmsg
= ktime_get();
475 * bcm_rx_cmp_to_index - (bit)compares the currently received data to formerly
476 * received data stored in op->last_frames[]
478 static void bcm_rx_cmp_to_index(struct bcm_op
*op
, int index
,
479 const struct can_frame
*rxdata
)
482 * no one uses the MSBs of can_dlc for comparation,
483 * so we use it here to detect the first time of reception
486 if (!(op
->last_frames
[index
].can_dlc
& RX_RECV
)) {
487 /* received data for the first time => send update to user */
488 bcm_rx_update_and_send(op
, &op
->last_frames
[index
], rxdata
);
492 /* do a real check in can_frame data section */
494 if ((GET_U64(&op
->frames
[index
]) & GET_U64(rxdata
)) !=
495 (GET_U64(&op
->frames
[index
]) & GET_U64(&op
->last_frames
[index
]))) {
496 bcm_rx_update_and_send(op
, &op
->last_frames
[index
], rxdata
);
500 if (op
->flags
& RX_CHECK_DLC
) {
501 /* do a real check in can_frame dlc */
502 if (rxdata
->can_dlc
!= (op
->last_frames
[index
].can_dlc
&
504 bcm_rx_update_and_send(op
, &op
->last_frames
[index
],
512 * bcm_rx_starttimer - enable timeout monitoring for CAN frame receiption
514 static void bcm_rx_starttimer(struct bcm_op
*op
)
516 if (op
->flags
& RX_NO_AUTOTIMER
)
519 if (op
->kt_ival1
.tv64
)
520 hrtimer_start(&op
->timer
, op
->kt_ival1
, HRTIMER_MODE_REL
);
523 static void bcm_rx_timeout_tsklet(unsigned long data
)
525 struct bcm_op
*op
= (struct bcm_op
*)data
;
526 struct bcm_msg_head msg_head
;
528 /* create notification to user */
529 msg_head
.opcode
= RX_TIMEOUT
;
530 msg_head
.flags
= op
->flags
;
531 msg_head
.count
= op
->count
;
532 msg_head
.ival1
= op
->ival1
;
533 msg_head
.ival2
= op
->ival2
;
534 msg_head
.can_id
= op
->can_id
;
535 msg_head
.nframes
= 0;
537 bcm_send_to_user(op
, &msg_head
, NULL
, 0);
541 * bcm_rx_timeout_handler - when the (cyclic) CAN frame receiption timed out
543 static enum hrtimer_restart
bcm_rx_timeout_handler(struct hrtimer
*hrtimer
)
545 struct bcm_op
*op
= container_of(hrtimer
, struct bcm_op
, timer
);
547 /* schedule before NET_RX_SOFTIRQ */
548 tasklet_hi_schedule(&op
->tsklet
);
550 /* no restart of the timer is done here! */
552 /* if user wants to be informed, when cyclic CAN-Messages come back */
553 if ((op
->flags
& RX_ANNOUNCE_RESUME
) && op
->last_frames
) {
554 /* clear received can_frames to indicate 'nothing received' */
555 memset(op
->last_frames
, 0, op
->nframes
* CFSIZ
);
558 return HRTIMER_NORESTART
;
562 * bcm_rx_do_flush - helper for bcm_rx_thr_flush
564 static inline int bcm_rx_do_flush(struct bcm_op
*op
, int update
, int index
)
566 if ((op
->last_frames
) && (op
->last_frames
[index
].can_dlc
& RX_THR
)) {
568 bcm_rx_changed(op
, &op
->last_frames
[index
]);
575 * bcm_rx_thr_flush - Check for throttled data and send it to the userspace
577 * update == 0 : just check if throttled data is available (any irq context)
578 * update == 1 : check and send throttled data to userspace (soft_irq context)
580 static int bcm_rx_thr_flush(struct bcm_op
*op
, int update
)
584 if (op
->nframes
> 1) {
587 /* for MUX filter we start at index 1 */
588 for (i
= 1; i
< op
->nframes
; i
++)
589 updated
+= bcm_rx_do_flush(op
, update
, i
);
592 /* for RX_FILTER_ID and simple filter */
593 updated
+= bcm_rx_do_flush(op
, update
, 0);
599 static void bcm_rx_thr_tsklet(unsigned long data
)
601 struct bcm_op
*op
= (struct bcm_op
*)data
;
603 /* push the changed data to the userspace */
604 bcm_rx_thr_flush(op
, 1);
608 * bcm_rx_thr_handler - the time for blocked content updates is over now:
609 * Check for throttled data and send it to the userspace
611 static enum hrtimer_restart
bcm_rx_thr_handler(struct hrtimer
*hrtimer
)
613 struct bcm_op
*op
= container_of(hrtimer
, struct bcm_op
, thrtimer
);
615 tasklet_schedule(&op
->thrtsklet
);
617 if (bcm_rx_thr_flush(op
, 0)) {
618 hrtimer_forward(hrtimer
, ktime_get(), op
->kt_ival2
);
619 return HRTIMER_RESTART
;
621 /* rearm throttle handling */
622 op
->kt_lastmsg
= ktime_set(0, 0);
623 return HRTIMER_NORESTART
;
628 * bcm_rx_handler - handle a CAN frame receiption
630 static void bcm_rx_handler(struct sk_buff
*skb
, void *data
)
632 struct bcm_op
*op
= (struct bcm_op
*)data
;
633 const struct can_frame
*rxframe
= (struct can_frame
*)skb
->data
;
636 /* disable timeout */
637 hrtimer_cancel(&op
->timer
);
639 if (op
->can_id
!= rxframe
->can_id
)
642 /* save rx timestamp */
643 op
->rx_stamp
= skb
->tstamp
;
644 /* save originator for recvfrom() */
645 op
->rx_ifindex
= skb
->dev
->ifindex
;
646 /* update statistics */
649 if (op
->flags
& RX_RTR_FRAME
) {
650 /* send reply for RTR-request (placed in op->frames[0]) */
655 if (op
->flags
& RX_FILTER_ID
) {
656 /* the easiest case */
657 bcm_rx_update_and_send(op
, &op
->last_frames
[0], rxframe
);
661 if (op
->nframes
== 1) {
662 /* simple compare with index 0 */
663 bcm_rx_cmp_to_index(op
, 0, rxframe
);
667 if (op
->nframes
> 1) {
671 * find the first multiplex mask that fits.
672 * Remark: The MUX-mask is stored in index 0
675 for (i
= 1; i
< op
->nframes
; i
++) {
676 if ((GET_U64(&op
->frames
[0]) & GET_U64(rxframe
)) ==
677 (GET_U64(&op
->frames
[0]) &
678 GET_U64(&op
->frames
[i
]))) {
679 bcm_rx_cmp_to_index(op
, i
, rxframe
);
686 bcm_rx_starttimer(op
);
690 * helpers for bcm_op handling: find & delete bcm [rx|tx] op elements
692 static struct bcm_op
*bcm_find_op(struct list_head
*ops
, canid_t can_id
,
697 list_for_each_entry(op
, ops
, list
) {
698 if ((op
->can_id
== can_id
) && (op
->ifindex
== ifindex
))
705 static void bcm_remove_op(struct bcm_op
*op
)
707 hrtimer_cancel(&op
->timer
);
708 hrtimer_cancel(&op
->thrtimer
);
711 tasklet_kill(&op
->tsklet
);
713 if (op
->thrtsklet
.func
)
714 tasklet_kill(&op
->thrtsklet
);
716 if ((op
->frames
) && (op
->frames
!= &op
->sframe
))
719 if ((op
->last_frames
) && (op
->last_frames
!= &op
->last_sframe
))
720 kfree(op
->last_frames
);
727 static void bcm_rx_unreg(struct net_device
*dev
, struct bcm_op
*op
)
729 if (op
->rx_reg_dev
== dev
) {
730 can_rx_unregister(dev
, op
->can_id
, REGMASK(op
->can_id
),
733 /* mark as removed subscription */
734 op
->rx_reg_dev
= NULL
;
736 printk(KERN_ERR
"can-bcm: bcm_rx_unreg: registered device "
737 "mismatch %p %p\n", op
->rx_reg_dev
, dev
);
741 * bcm_delete_rx_op - find and remove a rx op (returns number of removed ops)
743 static int bcm_delete_rx_op(struct list_head
*ops
, canid_t can_id
, int ifindex
)
745 struct bcm_op
*op
, *n
;
747 list_for_each_entry_safe(op
, n
, ops
, list
) {
748 if ((op
->can_id
== can_id
) && (op
->ifindex
== ifindex
)) {
751 * Don't care if we're bound or not (due to netdev
752 * problems) can_rx_unregister() is always a save
757 * Only remove subscriptions that had not
758 * been removed due to NETDEV_UNREGISTER
761 if (op
->rx_reg_dev
) {
762 struct net_device
*dev
;
764 dev
= dev_get_by_index(&init_net
,
767 bcm_rx_unreg(dev
, op
);
772 can_rx_unregister(NULL
, op
->can_id
,
782 return 0; /* not found */
786 * bcm_delete_tx_op - find and remove a tx op (returns number of removed ops)
788 static int bcm_delete_tx_op(struct list_head
*ops
, canid_t can_id
, int ifindex
)
790 struct bcm_op
*op
, *n
;
792 list_for_each_entry_safe(op
, n
, ops
, list
) {
793 if ((op
->can_id
== can_id
) && (op
->ifindex
== ifindex
)) {
800 return 0; /* not found */
804 * bcm_read_op - read out a bcm_op and send it to the user (for bcm_sendmsg)
806 static int bcm_read_op(struct list_head
*ops
, struct bcm_msg_head
*msg_head
,
809 struct bcm_op
*op
= bcm_find_op(ops
, msg_head
->can_id
, ifindex
);
814 /* put current values into msg_head */
815 msg_head
->flags
= op
->flags
;
816 msg_head
->count
= op
->count
;
817 msg_head
->ival1
= op
->ival1
;
818 msg_head
->ival2
= op
->ival2
;
819 msg_head
->nframes
= op
->nframes
;
821 bcm_send_to_user(op
, msg_head
, op
->frames
, 0);
827 * bcm_tx_setup - create or update a bcm tx op (for bcm_sendmsg)
829 static int bcm_tx_setup(struct bcm_msg_head
*msg_head
, struct msghdr
*msg
,
830 int ifindex
, struct sock
*sk
)
832 struct bcm_sock
*bo
= bcm_sk(sk
);
836 /* we need a real device to send frames */
840 /* we need at least one can_frame */
841 if (msg_head
->nframes
< 1)
844 /* check the given can_id */
845 op
= bcm_find_op(&bo
->tx_ops
, msg_head
->can_id
, ifindex
);
848 /* update existing BCM operation */
851 * Do we need more space for the can_frames than currently
852 * allocated? -> This is a _really_ unusual use-case and
853 * therefore (complexity / locking) it is not supported.
855 if (msg_head
->nframes
> op
->nframes
)
858 /* update can_frames content */
859 for (i
= 0; i
< msg_head
->nframes
; i
++) {
860 err
= memcpy_fromiovec((u8
*)&op
->frames
[i
],
861 msg
->msg_iov
, CFSIZ
);
863 if (op
->frames
[i
].can_dlc
> 8)
869 if (msg_head
->flags
& TX_CP_CAN_ID
) {
870 /* copy can_id into frame */
871 op
->frames
[i
].can_id
= msg_head
->can_id
;
876 /* insert new BCM operation for the given can_id */
878 op
= kzalloc(OPSIZ
, GFP_KERNEL
);
882 op
->can_id
= msg_head
->can_id
;
884 /* create array for can_frames and copy the data */
885 if (msg_head
->nframes
> 1) {
886 op
->frames
= kmalloc(msg_head
->nframes
* CFSIZ
,
893 op
->frames
= &op
->sframe
;
895 for (i
= 0; i
< msg_head
->nframes
; i
++) {
896 err
= memcpy_fromiovec((u8
*)&op
->frames
[i
],
897 msg
->msg_iov
, CFSIZ
);
899 if (op
->frames
[i
].can_dlc
> 8)
903 if (op
->frames
!= &op
->sframe
)
909 if (msg_head
->flags
& TX_CP_CAN_ID
) {
910 /* copy can_id into frame */
911 op
->frames
[i
].can_id
= msg_head
->can_id
;
915 /* tx_ops never compare with previous received messages */
916 op
->last_frames
= NULL
;
918 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
920 op
->ifindex
= ifindex
;
922 /* initialize uninitialized (kzalloc) structure */
923 hrtimer_init(&op
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
924 op
->timer
.function
= bcm_tx_timeout_handler
;
926 /* initialize tasklet for tx countevent notification */
927 tasklet_init(&op
->tsklet
, bcm_tx_timeout_tsklet
,
930 /* currently unused in tx_ops */
931 hrtimer_init(&op
->thrtimer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
933 /* add this bcm_op to the list of the tx_ops */
934 list_add(&op
->list
, &bo
->tx_ops
);
936 } /* if ((op = bcm_find_op(&bo->tx_ops, msg_head->can_id, ifindex))) */
938 if (op
->nframes
!= msg_head
->nframes
) {
939 op
->nframes
= msg_head
->nframes
;
940 /* start multiple frame transmission with index 0 */
946 op
->flags
= msg_head
->flags
;
948 if (op
->flags
& TX_RESET_MULTI_IDX
) {
949 /* start multiple frame transmission with index 0 */
953 if (op
->flags
& SETTIMER
) {
954 /* set timer values */
955 op
->count
= msg_head
->count
;
956 op
->ival1
= msg_head
->ival1
;
957 op
->ival2
= msg_head
->ival2
;
958 op
->kt_ival1
= timeval_to_ktime(msg_head
->ival1
);
959 op
->kt_ival2
= timeval_to_ktime(msg_head
->ival2
);
961 /* disable an active timer due to zero values? */
962 if (!op
->kt_ival1
.tv64
&& !op
->kt_ival2
.tv64
)
963 hrtimer_cancel(&op
->timer
);
966 if ((op
->flags
& STARTTIMER
) &&
967 ((op
->kt_ival1
.tv64
&& op
->count
) || op
->kt_ival2
.tv64
)) {
969 /* spec: send can_frame when starting timer */
970 op
->flags
|= TX_ANNOUNCE
;
972 if (op
->kt_ival1
.tv64
&& (op
->count
> 0)) {
973 /* op->count-- is done in bcm_tx_timeout_handler */
974 hrtimer_start(&op
->timer
, op
->kt_ival1
,
977 hrtimer_start(&op
->timer
, op
->kt_ival2
,
981 if (op
->flags
& TX_ANNOUNCE
)
984 return msg_head
->nframes
* CFSIZ
+ MHSIZ
;
988 * bcm_rx_setup - create or update a bcm rx op (for bcm_sendmsg)
990 static int bcm_rx_setup(struct bcm_msg_head
*msg_head
, struct msghdr
*msg
,
991 int ifindex
, struct sock
*sk
)
993 struct bcm_sock
*bo
= bcm_sk(sk
);
998 if ((msg_head
->flags
& RX_FILTER_ID
) || (!(msg_head
->nframes
))) {
999 /* be robust against wrong usage ... */
1000 msg_head
->flags
|= RX_FILTER_ID
;
1001 /* ignore trailing garbage */
1002 msg_head
->nframes
= 0;
1005 if ((msg_head
->flags
& RX_RTR_FRAME
) &&
1006 ((msg_head
->nframes
!= 1) ||
1007 (!(msg_head
->can_id
& CAN_RTR_FLAG
))))
1010 /* check the given can_id */
1011 op
= bcm_find_op(&bo
->rx_ops
, msg_head
->can_id
, ifindex
);
1013 /* update existing BCM operation */
1016 * Do we need more space for the can_frames than currently
1017 * allocated? -> This is a _really_ unusual use-case and
1018 * therefore (complexity / locking) it is not supported.
1020 if (msg_head
->nframes
> op
->nframes
)
1023 if (msg_head
->nframes
) {
1024 /* update can_frames content */
1025 err
= memcpy_fromiovec((u8
*)op
->frames
,
1027 msg_head
->nframes
* CFSIZ
);
1031 /* clear last_frames to indicate 'nothing received' */
1032 memset(op
->last_frames
, 0, msg_head
->nframes
* CFSIZ
);
1035 op
->nframes
= msg_head
->nframes
;
1037 /* Only an update -> do not call can_rx_register() */
1041 /* insert new BCM operation for the given can_id */
1042 op
= kzalloc(OPSIZ
, GFP_KERNEL
);
1046 op
->can_id
= msg_head
->can_id
;
1047 op
->nframes
= msg_head
->nframes
;
1049 if (msg_head
->nframes
> 1) {
1050 /* create array for can_frames and copy the data */
1051 op
->frames
= kmalloc(msg_head
->nframes
* CFSIZ
,
1058 /* create and init array for received can_frames */
1059 op
->last_frames
= kzalloc(msg_head
->nframes
* CFSIZ
,
1061 if (!op
->last_frames
) {
1068 op
->frames
= &op
->sframe
;
1069 op
->last_frames
= &op
->last_sframe
;
1072 if (msg_head
->nframes
) {
1073 err
= memcpy_fromiovec((u8
*)op
->frames
, msg
->msg_iov
,
1074 msg_head
->nframes
* CFSIZ
);
1076 if (op
->frames
!= &op
->sframe
)
1078 if (op
->last_frames
!= &op
->last_sframe
)
1079 kfree(op
->last_frames
);
1085 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
1087 op
->ifindex
= ifindex
;
1089 /* initialize uninitialized (kzalloc) structure */
1090 hrtimer_init(&op
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
1091 op
->timer
.function
= bcm_rx_timeout_handler
;
1093 /* initialize tasklet for rx timeout notification */
1094 tasklet_init(&op
->tsklet
, bcm_rx_timeout_tsklet
,
1095 (unsigned long) op
);
1097 hrtimer_init(&op
->thrtimer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
1098 op
->thrtimer
.function
= bcm_rx_thr_handler
;
1100 /* initialize tasklet for rx throttle handling */
1101 tasklet_init(&op
->thrtsklet
, bcm_rx_thr_tsklet
,
1102 (unsigned long) op
);
1104 /* add this bcm_op to the list of the rx_ops */
1105 list_add(&op
->list
, &bo
->rx_ops
);
1107 /* call can_rx_register() */
1110 } /* if ((op = bcm_find_op(&bo->rx_ops, msg_head->can_id, ifindex))) */
1113 op
->flags
= msg_head
->flags
;
1115 if (op
->flags
& RX_RTR_FRAME
) {
1117 /* no timers in RTR-mode */
1118 hrtimer_cancel(&op
->thrtimer
);
1119 hrtimer_cancel(&op
->timer
);
1122 * funny feature in RX(!)_SETUP only for RTR-mode:
1123 * copy can_id into frame BUT without RTR-flag to
1124 * prevent a full-load-loopback-test ... ;-]
1126 if ((op
->flags
& TX_CP_CAN_ID
) ||
1127 (op
->frames
[0].can_id
== op
->can_id
))
1128 op
->frames
[0].can_id
= op
->can_id
& ~CAN_RTR_FLAG
;
1131 if (op
->flags
& SETTIMER
) {
1133 /* set timer value */
1134 op
->ival1
= msg_head
->ival1
;
1135 op
->ival2
= msg_head
->ival2
;
1136 op
->kt_ival1
= timeval_to_ktime(msg_head
->ival1
);
1137 op
->kt_ival2
= timeval_to_ktime(msg_head
->ival2
);
1139 /* disable an active timer due to zero value? */
1140 if (!op
->kt_ival1
.tv64
)
1141 hrtimer_cancel(&op
->timer
);
1144 * In any case cancel the throttle timer, flush
1145 * potentially blocked msgs and reset throttle handling
1147 op
->kt_lastmsg
= ktime_set(0, 0);
1148 hrtimer_cancel(&op
->thrtimer
);
1149 bcm_rx_thr_flush(op
, 1);
1152 if ((op
->flags
& STARTTIMER
) && op
->kt_ival1
.tv64
)
1153 hrtimer_start(&op
->timer
, op
->kt_ival1
,
1157 /* now we can register for can_ids, if we added a new bcm_op */
1158 if (do_rx_register
) {
1160 struct net_device
*dev
;
1162 dev
= dev_get_by_index(&init_net
, ifindex
);
1164 err
= can_rx_register(dev
, op
->can_id
,
1165 REGMASK(op
->can_id
),
1169 op
->rx_reg_dev
= dev
;
1174 err
= can_rx_register(NULL
, op
->can_id
,
1175 REGMASK(op
->can_id
),
1176 bcm_rx_handler
, op
, "bcm");
1178 /* this bcm rx op is broken -> remove it */
1179 list_del(&op
->list
);
1185 return msg_head
->nframes
* CFSIZ
+ MHSIZ
;
1189 * bcm_tx_send - send a single CAN frame to the CAN interface (for bcm_sendmsg)
1191 static int bcm_tx_send(struct msghdr
*msg
, int ifindex
, struct sock
*sk
)
1193 struct sk_buff
*skb
;
1194 struct net_device
*dev
;
1197 /* we need a real device to send frames */
1201 skb
= alloc_skb(CFSIZ
, GFP_KERNEL
);
1206 err
= memcpy_fromiovec(skb_put(skb
, CFSIZ
), msg
->msg_iov
, CFSIZ
);
1212 dev
= dev_get_by_index(&init_net
, ifindex
);
1220 err
= can_send(skb
, 1); /* send with loopback */
1226 return CFSIZ
+ MHSIZ
;
1230 * bcm_sendmsg - process BCM commands (opcodes) from the userspace
1232 static int bcm_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1233 struct msghdr
*msg
, size_t size
)
1235 struct sock
*sk
= sock
->sk
;
1236 struct bcm_sock
*bo
= bcm_sk(sk
);
1237 int ifindex
= bo
->ifindex
; /* default ifindex for this bcm_op */
1238 struct bcm_msg_head msg_head
;
1239 int ret
; /* read bytes or error codes as return value */
1244 /* check for valid message length from userspace */
1245 if (size
< MHSIZ
|| (size
- MHSIZ
) % CFSIZ
)
1248 /* check for alternative ifindex for this bcm_op */
1250 if (!ifindex
&& msg
->msg_name
) {
1251 /* no bound device as default => check msg_name */
1252 struct sockaddr_can
*addr
=
1253 (struct sockaddr_can
*)msg
->msg_name
;
1255 if (addr
->can_family
!= AF_CAN
)
1258 /* ifindex from sendto() */
1259 ifindex
= addr
->can_ifindex
;
1262 struct net_device
*dev
;
1264 dev
= dev_get_by_index(&init_net
, ifindex
);
1268 if (dev
->type
!= ARPHRD_CAN
) {
1277 /* read message head information */
1279 ret
= memcpy_fromiovec((u8
*)&msg_head
, msg
->msg_iov
, MHSIZ
);
1285 switch (msg_head
.opcode
) {
1288 ret
= bcm_tx_setup(&msg_head
, msg
, ifindex
, sk
);
1292 ret
= bcm_rx_setup(&msg_head
, msg
, ifindex
, sk
);
1296 if (bcm_delete_tx_op(&bo
->tx_ops
, msg_head
.can_id
, ifindex
))
1303 if (bcm_delete_rx_op(&bo
->rx_ops
, msg_head
.can_id
, ifindex
))
1310 /* reuse msg_head for the reply to TX_READ */
1311 msg_head
.opcode
= TX_STATUS
;
1312 ret
= bcm_read_op(&bo
->tx_ops
, &msg_head
, ifindex
);
1316 /* reuse msg_head for the reply to RX_READ */
1317 msg_head
.opcode
= RX_STATUS
;
1318 ret
= bcm_read_op(&bo
->rx_ops
, &msg_head
, ifindex
);
1322 /* we need exactly one can_frame behind the msg head */
1323 if ((msg_head
.nframes
!= 1) || (size
!= CFSIZ
+ MHSIZ
))
1326 ret
= bcm_tx_send(msg
, ifindex
, sk
);
1340 * notification handler for netdevice status changes
1342 static int bcm_notifier(struct notifier_block
*nb
, unsigned long msg
,
1345 struct net_device
*dev
= (struct net_device
*)data
;
1346 struct bcm_sock
*bo
= container_of(nb
, struct bcm_sock
, notifier
);
1347 struct sock
*sk
= &bo
->sk
;
1349 int notify_enodev
= 0;
1351 if (!net_eq(dev_net(dev
), &init_net
))
1354 if (dev
->type
!= ARPHRD_CAN
)
1359 case NETDEV_UNREGISTER
:
1362 /* remove device specific receive entries */
1363 list_for_each_entry(op
, &bo
->rx_ops
, list
)
1364 if (op
->rx_reg_dev
== dev
)
1365 bcm_rx_unreg(dev
, op
);
1367 /* remove device reference, if this is our bound device */
1368 if (bo
->bound
&& bo
->ifindex
== dev
->ifindex
) {
1376 if (notify_enodev
) {
1377 sk
->sk_err
= ENODEV
;
1378 if (!sock_flag(sk
, SOCK_DEAD
))
1379 sk
->sk_error_report(sk
);
1384 if (bo
->bound
&& bo
->ifindex
== dev
->ifindex
) {
1385 sk
->sk_err
= ENETDOWN
;
1386 if (!sock_flag(sk
, SOCK_DEAD
))
1387 sk
->sk_error_report(sk
);
1395 * initial settings for all BCM sockets to be set at socket creation time
1397 static int bcm_init(struct sock
*sk
)
1399 struct bcm_sock
*bo
= bcm_sk(sk
);
1403 bo
->dropped_usr_msgs
= 0;
1404 bo
->bcm_proc_read
= NULL
;
1406 INIT_LIST_HEAD(&bo
->tx_ops
);
1407 INIT_LIST_HEAD(&bo
->rx_ops
);
1410 bo
->notifier
.notifier_call
= bcm_notifier
;
1412 register_netdevice_notifier(&bo
->notifier
);
1418 * standard socket functions
1420 static int bcm_release(struct socket
*sock
)
1422 struct sock
*sk
= sock
->sk
;
1423 struct bcm_sock
*bo
= bcm_sk(sk
);
1424 struct bcm_op
*op
, *next
;
1426 /* remove bcm_ops, timer, rx_unregister(), etc. */
1428 unregister_netdevice_notifier(&bo
->notifier
);
1432 list_for_each_entry_safe(op
, next
, &bo
->tx_ops
, list
)
1435 list_for_each_entry_safe(op
, next
, &bo
->rx_ops
, list
) {
1437 * Don't care if we're bound or not (due to netdev problems)
1438 * can_rx_unregister() is always a save thing to do here.
1442 * Only remove subscriptions that had not
1443 * been removed due to NETDEV_UNREGISTER
1446 if (op
->rx_reg_dev
) {
1447 struct net_device
*dev
;
1449 dev
= dev_get_by_index(&init_net
, op
->ifindex
);
1451 bcm_rx_unreg(dev
, op
);
1456 can_rx_unregister(NULL
, op
->can_id
,
1457 REGMASK(op
->can_id
),
1458 bcm_rx_handler
, op
);
1463 /* remove procfs entry */
1464 if (proc_dir
&& bo
->bcm_proc_read
)
1465 remove_proc_entry(bo
->procname
, proc_dir
);
1467 /* remove device reference */
1482 static int bcm_connect(struct socket
*sock
, struct sockaddr
*uaddr
, int len
,
1485 struct sockaddr_can
*addr
= (struct sockaddr_can
*)uaddr
;
1486 struct sock
*sk
= sock
->sk
;
1487 struct bcm_sock
*bo
= bcm_sk(sk
);
1492 /* bind a device to this socket */
1493 if (addr
->can_ifindex
) {
1494 struct net_device
*dev
;
1496 dev
= dev_get_by_index(&init_net
, addr
->can_ifindex
);
1500 if (dev
->type
!= ARPHRD_CAN
) {
1505 bo
->ifindex
= dev
->ifindex
;
1509 /* no interface reference for ifindex = 0 ('any' CAN device) */
1516 /* unique socket address as filename */
1517 sprintf(bo
->procname
, "%p", sock
);
1518 bo
->bcm_proc_read
= create_proc_read_entry(bo
->procname
, 0644,
1526 static int bcm_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1527 struct msghdr
*msg
, size_t size
, int flags
)
1529 struct sock
*sk
= sock
->sk
;
1530 struct sk_buff
*skb
;
1535 noblock
= flags
& MSG_DONTWAIT
;
1536 flags
&= ~MSG_DONTWAIT
;
1537 skb
= skb_recv_datagram(sk
, flags
, noblock
, &error
);
1541 if (skb
->len
< size
)
1544 err
= memcpy_toiovec(msg
->msg_iov
, skb
->data
, size
);
1546 skb_free_datagram(sk
, skb
);
1550 sock_recv_timestamp(msg
, sk
, skb
);
1552 if (msg
->msg_name
) {
1553 msg
->msg_namelen
= sizeof(struct sockaddr_can
);
1554 memcpy(msg
->msg_name
, skb
->cb
, msg
->msg_namelen
);
1557 skb_free_datagram(sk
, skb
);
1562 static struct proto_ops bcm_ops __read_mostly
= {
1564 .release
= bcm_release
,
1565 .bind
= sock_no_bind
,
1566 .connect
= bcm_connect
,
1567 .socketpair
= sock_no_socketpair
,
1568 .accept
= sock_no_accept
,
1569 .getname
= sock_no_getname
,
1570 .poll
= datagram_poll
,
1571 .ioctl
= NULL
, /* use can_ioctl() from af_can.c */
1572 .listen
= sock_no_listen
,
1573 .shutdown
= sock_no_shutdown
,
1574 .setsockopt
= sock_no_setsockopt
,
1575 .getsockopt
= sock_no_getsockopt
,
1576 .sendmsg
= bcm_sendmsg
,
1577 .recvmsg
= bcm_recvmsg
,
1578 .mmap
= sock_no_mmap
,
1579 .sendpage
= sock_no_sendpage
,
1582 static struct proto bcm_proto __read_mostly
= {
1584 .owner
= THIS_MODULE
,
1585 .obj_size
= sizeof(struct bcm_sock
),
1589 static struct can_proto bcm_can_proto __read_mostly
= {
1591 .protocol
= CAN_BCM
,
1597 static int __init
bcm_module_init(void)
1603 err
= can_proto_register(&bcm_can_proto
);
1605 printk(KERN_ERR
"can: registration of bcm protocol failed\n");
1609 /* create /proc/net/can-bcm directory */
1610 proc_dir
= proc_mkdir("can-bcm", init_net
.proc_net
);
1614 static void __exit
bcm_module_exit(void)
1616 can_proto_unregister(&bcm_can_proto
);
1619 proc_net_remove(&init_net
, "can-bcm");
1622 module_init(bcm_module_init
);
1623 module_exit(bcm_module_exit
);