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_RTR_FLAG) | ((id & CAN_EFF_FLAG) ? \
68 (CAN_EFF_MASK | CAN_EFF_FLAG) : CAN_SFF_MASK))
70 #define CAN_BCM_VERSION "20080415"
71 static __initdata
const char banner
[] = KERN_INFO
72 "can: broadcast manager protocol (rev " CAN_BCM_VERSION
")\n";
74 MODULE_DESCRIPTION("PF_CAN broadcast manager protocol");
75 MODULE_LICENSE("Dual BSD/GPL");
76 MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
78 /* easy access to can_frame payload */
79 static inline u64
GET_U64(const struct can_frame
*cp
)
81 return *(u64
*)cp
->data
;
85 struct list_head list
;
89 unsigned long frames_abs
, frames_filtered
;
90 struct timeval ival1
, ival2
;
91 struct hrtimer timer
, thrtimer
;
92 ktime_t rx_stamp
, kt_ival1
, kt_ival2
, kt_lastmsg
;
97 struct can_frame
*frames
;
98 struct can_frame
*last_frames
;
99 struct can_frame sframe
;
100 struct can_frame last_sframe
;
102 struct net_device
*rx_reg_dev
;
105 static struct proc_dir_entry
*proc_dir
;
111 struct notifier_block notifier
;
112 struct list_head rx_ops
;
113 struct list_head tx_ops
;
114 unsigned long dropped_usr_msgs
;
115 struct proc_dir_entry
*bcm_proc_read
;
116 char procname
[9]; /* pointer printed in ASCII with \0 */
119 static inline struct bcm_sock
*bcm_sk(const struct sock
*sk
)
121 return (struct bcm_sock
*)sk
;
124 #define CFSIZ sizeof(struct can_frame)
125 #define OPSIZ sizeof(struct bcm_op)
126 #define MHSIZ sizeof(struct bcm_msg_head)
131 static char *bcm_proc_getifname(int ifindex
)
133 struct net_device
*dev
;
138 /* no usage counting */
139 dev
= __dev_get_by_index(&init_net
, ifindex
);
146 static int bcm_read_proc(char *page
, char **start
, off_t off
,
147 int count
, int *eof
, void *data
)
150 struct sock
*sk
= (struct sock
*)data
;
151 struct bcm_sock
*bo
= bcm_sk(sk
);
154 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, ">>> socket %p",
156 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / sk %p", sk
);
157 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / bo %p", bo
);
158 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / dropped %lu",
159 bo
->dropped_usr_msgs
);
160 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " / bound %s",
161 bcm_proc_getifname(bo
->ifindex
));
162 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, " <<<\n");
164 list_for_each_entry(op
, &bo
->rx_ops
, list
) {
166 unsigned long reduction
;
168 /* print only active entries & prevent division by zero */
172 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
174 op
->can_id
, bcm_proc_getifname(op
->ifindex
));
175 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "[%d]%c ",
177 (op
->flags
& RX_CHECK_DLC
)?'d':' ');
178 if (op
->kt_ival1
.tv64
)
179 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
182 ktime_to_us(op
->kt_ival1
));
184 if (op
->kt_ival2
.tv64
)
185 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
188 ktime_to_us(op
->kt_ival2
));
190 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
191 "# recv %ld (%ld) => reduction: ",
192 op
->frames_filtered
, op
->frames_abs
);
194 reduction
= 100 - (op
->frames_filtered
* 100) / op
->frames_abs
;
196 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "%s%ld%%\n",
197 (reduction
== 100)?"near ":"", reduction
);
199 if (len
> PAGE_SIZE
- 200) {
200 /* mark output cut off */
201 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "(..)\n");
206 list_for_each_entry(op
, &bo
->tx_ops
, list
) {
208 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
,
209 "tx_op: %03X %s [%d] ",
210 op
->can_id
, bcm_proc_getifname(op
->ifindex
),
213 if (op
->kt_ival1
.tv64
)
214 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "t1=%lld ",
215 (long long) ktime_to_us(op
->kt_ival1
));
217 if (op
->kt_ival2
.tv64
)
218 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "t2=%lld ",
219 (long long) ktime_to_us(op
->kt_ival2
));
221 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "# sent %ld\n",
224 if (len
> PAGE_SIZE
- 100) {
225 /* mark output cut off */
226 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "(..)\n");
231 len
+= snprintf(page
+ len
, PAGE_SIZE
- len
, "\n");
238 * bcm_can_tx - send the (next) CAN frame to the appropriate CAN interface
239 * of the given bcm tx op
241 static void bcm_can_tx(struct bcm_op
*op
)
244 struct net_device
*dev
;
245 struct can_frame
*cf
= &op
->frames
[op
->currframe
];
247 /* no target device? => exit */
251 dev
= dev_get_by_index(&init_net
, op
->ifindex
);
253 /* RFC: should this bcm_op remove itself here? */
257 skb
= alloc_skb(CFSIZ
, gfp_any());
261 memcpy(skb_put(skb
, CFSIZ
), cf
, CFSIZ
);
263 /* send with loopback */
268 /* update statistics */
272 /* reached last frame? */
273 if (op
->currframe
>= op
->nframes
)
280 * bcm_send_to_user - send a BCM message to the userspace
281 * (consisting of bcm_msg_head + x CAN frames)
283 static void bcm_send_to_user(struct bcm_op
*op
, struct bcm_msg_head
*head
,
284 struct can_frame
*frames
, int has_timestamp
)
287 struct can_frame
*firstframe
;
288 struct sockaddr_can
*addr
;
289 struct sock
*sk
= op
->sk
;
290 int datalen
= head
->nframes
* CFSIZ
;
293 skb
= alloc_skb(sizeof(*head
) + datalen
, gfp_any());
297 memcpy(skb_put(skb
, sizeof(*head
)), head
, sizeof(*head
));
300 /* can_frames starting here */
301 firstframe
= (struct can_frame
*) skb_tail_pointer(skb
);
303 memcpy(skb_put(skb
, datalen
), frames
, datalen
);
306 * the BCM uses the can_dlc-element of the can_frame
307 * structure for internal purposes. This is only
308 * relevant for updates that are generated by the
309 * BCM, where nframes is 1
311 if (head
->nframes
== 1)
312 firstframe
->can_dlc
&= BCM_CAN_DLC_MASK
;
316 /* restore rx timestamp */
317 skb
->tstamp
= op
->rx_stamp
;
321 * Put the datagram to the queue so that bcm_recvmsg() can
322 * get it from there. We need to pass the interface index to
323 * bcm_recvmsg(). We pass a whole struct sockaddr_can in skb->cb
324 * containing the interface index.
327 BUILD_BUG_ON(sizeof(skb
->cb
) < sizeof(struct sockaddr_can
));
328 addr
= (struct sockaddr_can
*)skb
->cb
;
329 memset(addr
, 0, sizeof(*addr
));
330 addr
->can_family
= AF_CAN
;
331 addr
->can_ifindex
= op
->rx_ifindex
;
333 err
= sock_queue_rcv_skb(sk
, skb
);
335 struct bcm_sock
*bo
= bcm_sk(sk
);
338 /* don't care about overflows in this statistic */
339 bo
->dropped_usr_msgs
++;
344 * bcm_tx_timeout_handler - performes cyclic CAN frame transmissions
346 static enum hrtimer_restart
bcm_tx_timeout_handler(struct hrtimer
*hrtimer
)
348 struct bcm_op
*op
= container_of(hrtimer
, struct bcm_op
, timer
);
349 enum hrtimer_restart ret
= HRTIMER_NORESTART
;
351 if (op
->kt_ival1
.tv64
&& (op
->count
> 0)) {
354 if (!op
->count
&& (op
->flags
& TX_COUNTEVT
)) {
355 struct bcm_msg_head msg_head
;
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;
366 bcm_send_to_user(op
, &msg_head
, NULL
, 0);
370 if (op
->kt_ival1
.tv64
&& (op
->count
> 0)) {
372 /* send (next) frame */
374 hrtimer_forward(hrtimer
, ktime_get(), op
->kt_ival1
);
375 ret
= HRTIMER_RESTART
;
378 if (op
->kt_ival2
.tv64
) {
380 /* send (next) frame */
382 hrtimer_forward(hrtimer
, ktime_get(), op
->kt_ival2
);
383 ret
= HRTIMER_RESTART
;
391 * bcm_rx_changed - create a RX_CHANGED notification due to changed content
393 static void bcm_rx_changed(struct bcm_op
*op
, struct can_frame
*data
)
395 struct bcm_msg_head head
;
397 /* update statistics */
398 op
->frames_filtered
++;
400 /* prevent statistics overflow */
401 if (op
->frames_filtered
> ULONG_MAX
/100)
402 op
->frames_filtered
= op
->frames_abs
= 0;
404 head
.opcode
= RX_CHANGED
;
405 head
.flags
= op
->flags
;
406 head
.count
= op
->count
;
407 head
.ival1
= op
->ival1
;
408 head
.ival2
= op
->ival2
;
409 head
.can_id
= op
->can_id
;
412 bcm_send_to_user(op
, &head
, data
, 1);
416 * bcm_rx_update_and_send - process a detected relevant receive content change
417 * 1. update the last received data
418 * 2. send a notification to the user (if possible)
420 static void bcm_rx_update_and_send(struct bcm_op
*op
,
421 struct can_frame
*lastdata
,
422 struct can_frame
*rxdata
)
424 memcpy(lastdata
, rxdata
, CFSIZ
);
427 lastdata
->can_dlc
|= RX_RECV
;
429 /* throtteling mode inactive OR data update already on the run ? */
430 if (!op
->kt_ival2
.tv64
|| hrtimer_callback_running(&op
->thrtimer
)) {
431 /* send RX_CHANGED to the user immediately */
432 bcm_rx_changed(op
, rxdata
);
436 if (hrtimer_active(&op
->thrtimer
)) {
437 /* mark as 'throttled' */
438 lastdata
->can_dlc
|= RX_THR
;
442 if (!op
->kt_lastmsg
.tv64
) {
443 /* send first RX_CHANGED to the user immediately */
444 bcm_rx_changed(op
, rxdata
);
445 op
->kt_lastmsg
= ktime_get();
449 if (ktime_us_delta(ktime_get(), op
->kt_lastmsg
) <
450 ktime_to_us(op
->kt_ival2
)) {
451 /* mark as 'throttled' and start timer */
452 lastdata
->can_dlc
|= RX_THR
;
453 hrtimer_start(&op
->thrtimer
,
454 ktime_add(op
->kt_lastmsg
, op
->kt_ival2
),
459 /* the gap was that big, that throttling was not needed here */
460 bcm_rx_changed(op
, rxdata
);
461 op
->kt_lastmsg
= ktime_get();
465 * bcm_rx_cmp_to_index - (bit)compares the currently received data to formerly
466 * received data stored in op->last_frames[]
468 static void bcm_rx_cmp_to_index(struct bcm_op
*op
, int index
,
469 struct can_frame
*rxdata
)
472 * no one uses the MSBs of can_dlc for comparation,
473 * so we use it here to detect the first time of reception
476 if (!(op
->last_frames
[index
].can_dlc
& RX_RECV
)) {
477 /* received data for the first time => send update to user */
478 bcm_rx_update_and_send(op
, &op
->last_frames
[index
], rxdata
);
482 /* do a real check in can_frame data section */
484 if ((GET_U64(&op
->frames
[index
]) & GET_U64(rxdata
)) !=
485 (GET_U64(&op
->frames
[index
]) & GET_U64(&op
->last_frames
[index
]))) {
486 bcm_rx_update_and_send(op
, &op
->last_frames
[index
], rxdata
);
490 if (op
->flags
& RX_CHECK_DLC
) {
491 /* do a real check in can_frame dlc */
492 if (rxdata
->can_dlc
!= (op
->last_frames
[index
].can_dlc
&
494 bcm_rx_update_and_send(op
, &op
->last_frames
[index
],
502 * bcm_rx_starttimer - enable timeout monitoring for CAN frame receiption
504 static void bcm_rx_starttimer(struct bcm_op
*op
)
506 if (op
->flags
& RX_NO_AUTOTIMER
)
509 if (op
->kt_ival1
.tv64
)
510 hrtimer_start(&op
->timer
, op
->kt_ival1
, HRTIMER_MODE_REL
);
514 * bcm_rx_timeout_handler - when the (cyclic) CAN frame receiption timed out
516 static enum hrtimer_restart
bcm_rx_timeout_handler(struct hrtimer
*hrtimer
)
518 struct bcm_op
*op
= container_of(hrtimer
, struct bcm_op
, timer
);
519 struct bcm_msg_head msg_head
;
521 msg_head
.opcode
= RX_TIMEOUT
;
522 msg_head
.flags
= op
->flags
;
523 msg_head
.count
= op
->count
;
524 msg_head
.ival1
= op
->ival1
;
525 msg_head
.ival2
= op
->ival2
;
526 msg_head
.can_id
= op
->can_id
;
527 msg_head
.nframes
= 0;
529 bcm_send_to_user(op
, &msg_head
, NULL
, 0);
531 /* no restart of the timer is done here! */
533 /* if user wants to be informed, when cyclic CAN-Messages come back */
534 if ((op
->flags
& RX_ANNOUNCE_RESUME
) && op
->last_frames
) {
535 /* clear received can_frames to indicate 'nothing received' */
536 memset(op
->last_frames
, 0, op
->nframes
* CFSIZ
);
539 return HRTIMER_NORESTART
;
543 * bcm_rx_thr_flush - Check for throttled data and send it to the userspace
545 static int bcm_rx_thr_flush(struct bcm_op
*op
)
549 if (op
->nframes
> 1) {
552 /* for MUX filter we start at index 1 */
553 for (i
= 1; i
< op
->nframes
; i
++) {
554 if ((op
->last_frames
) &&
555 (op
->last_frames
[i
].can_dlc
& RX_THR
)) {
556 op
->last_frames
[i
].can_dlc
&= ~RX_THR
;
557 bcm_rx_changed(op
, &op
->last_frames
[i
]);
563 /* for RX_FILTER_ID and simple filter */
564 if (op
->last_frames
&& (op
->last_frames
[0].can_dlc
& RX_THR
)) {
565 op
->last_frames
[0].can_dlc
&= ~RX_THR
;
566 bcm_rx_changed(op
, &op
->last_frames
[0]);
575 * bcm_rx_thr_handler - the time for blocked content updates is over now:
576 * Check for throttled data and send it to the userspace
578 static enum hrtimer_restart
bcm_rx_thr_handler(struct hrtimer
*hrtimer
)
580 struct bcm_op
*op
= container_of(hrtimer
, struct bcm_op
, thrtimer
);
582 if (bcm_rx_thr_flush(op
)) {
583 hrtimer_forward(hrtimer
, ktime_get(), op
->kt_ival2
);
584 return HRTIMER_RESTART
;
586 /* rearm throttle handling */
587 op
->kt_lastmsg
= ktime_set(0, 0);
588 return HRTIMER_NORESTART
;
593 * bcm_rx_handler - handle a CAN frame receiption
595 static void bcm_rx_handler(struct sk_buff
*skb
, void *data
)
597 struct bcm_op
*op
= (struct bcm_op
*)data
;
598 struct can_frame rxframe
;
601 /* disable timeout */
602 hrtimer_cancel(&op
->timer
);
604 if (skb
->len
== sizeof(rxframe
)) {
605 memcpy(&rxframe
, skb
->data
, sizeof(rxframe
));
606 /* save rx timestamp */
607 op
->rx_stamp
= skb
->tstamp
;
608 /* save originator for recvfrom() */
609 op
->rx_ifindex
= skb
->dev
->ifindex
;
610 /* update statistics */
619 if (op
->can_id
!= rxframe
.can_id
)
622 if (op
->flags
& RX_RTR_FRAME
) {
623 /* send reply for RTR-request (placed in op->frames[0]) */
628 if (op
->flags
& RX_FILTER_ID
) {
629 /* the easiest case */
630 bcm_rx_update_and_send(op
, &op
->last_frames
[0], &rxframe
);
631 bcm_rx_starttimer(op
);
635 if (op
->nframes
== 1) {
636 /* simple compare with index 0 */
637 bcm_rx_cmp_to_index(op
, 0, &rxframe
);
638 bcm_rx_starttimer(op
);
642 if (op
->nframes
> 1) {
646 * find the first multiplex mask that fits.
647 * Remark: The MUX-mask is stored in index 0
650 for (i
= 1; i
< op
->nframes
; i
++) {
651 if ((GET_U64(&op
->frames
[0]) & GET_U64(&rxframe
)) ==
652 (GET_U64(&op
->frames
[0]) &
653 GET_U64(&op
->frames
[i
]))) {
654 bcm_rx_cmp_to_index(op
, i
, &rxframe
);
658 bcm_rx_starttimer(op
);
663 * helpers for bcm_op handling: find & delete bcm [rx|tx] op elements
665 static struct bcm_op
*bcm_find_op(struct list_head
*ops
, canid_t can_id
,
670 list_for_each_entry(op
, ops
, list
) {
671 if ((op
->can_id
== can_id
) && (op
->ifindex
== ifindex
))
678 static void bcm_remove_op(struct bcm_op
*op
)
680 hrtimer_cancel(&op
->timer
);
681 hrtimer_cancel(&op
->thrtimer
);
683 if ((op
->frames
) && (op
->frames
!= &op
->sframe
))
686 if ((op
->last_frames
) && (op
->last_frames
!= &op
->last_sframe
))
687 kfree(op
->last_frames
);
694 static void bcm_rx_unreg(struct net_device
*dev
, struct bcm_op
*op
)
696 if (op
->rx_reg_dev
== dev
) {
697 can_rx_unregister(dev
, op
->can_id
, REGMASK(op
->can_id
),
700 /* mark as removed subscription */
701 op
->rx_reg_dev
= NULL
;
703 printk(KERN_ERR
"can-bcm: bcm_rx_unreg: registered device "
704 "mismatch %p %p\n", op
->rx_reg_dev
, dev
);
708 * bcm_delete_rx_op - find and remove a rx op (returns number of removed ops)
710 static int bcm_delete_rx_op(struct list_head
*ops
, canid_t can_id
, int ifindex
)
712 struct bcm_op
*op
, *n
;
714 list_for_each_entry_safe(op
, n
, ops
, list
) {
715 if ((op
->can_id
== can_id
) && (op
->ifindex
== ifindex
)) {
718 * Don't care if we're bound or not (due to netdev
719 * problems) can_rx_unregister() is always a save
724 * Only remove subscriptions that had not
725 * been removed due to NETDEV_UNREGISTER
728 if (op
->rx_reg_dev
) {
729 struct net_device
*dev
;
731 dev
= dev_get_by_index(&init_net
,
734 bcm_rx_unreg(dev
, op
);
739 can_rx_unregister(NULL
, op
->can_id
,
749 return 0; /* not found */
753 * bcm_delete_tx_op - find and remove a tx op (returns number of removed ops)
755 static int bcm_delete_tx_op(struct list_head
*ops
, canid_t can_id
, int ifindex
)
757 struct bcm_op
*op
, *n
;
759 list_for_each_entry_safe(op
, n
, ops
, list
) {
760 if ((op
->can_id
== can_id
) && (op
->ifindex
== ifindex
)) {
767 return 0; /* not found */
771 * bcm_read_op - read out a bcm_op and send it to the user (for bcm_sendmsg)
773 static int bcm_read_op(struct list_head
*ops
, struct bcm_msg_head
*msg_head
,
776 struct bcm_op
*op
= bcm_find_op(ops
, msg_head
->can_id
, ifindex
);
781 /* put current values into msg_head */
782 msg_head
->flags
= op
->flags
;
783 msg_head
->count
= op
->count
;
784 msg_head
->ival1
= op
->ival1
;
785 msg_head
->ival2
= op
->ival2
;
786 msg_head
->nframes
= op
->nframes
;
788 bcm_send_to_user(op
, msg_head
, op
->frames
, 0);
794 * bcm_tx_setup - create or update a bcm tx op (for bcm_sendmsg)
796 static int bcm_tx_setup(struct bcm_msg_head
*msg_head
, struct msghdr
*msg
,
797 int ifindex
, struct sock
*sk
)
799 struct bcm_sock
*bo
= bcm_sk(sk
);
803 /* we need a real device to send frames */
807 /* we need at least one can_frame */
808 if (msg_head
->nframes
< 1)
811 /* check the given can_id */
812 op
= bcm_find_op(&bo
->tx_ops
, msg_head
->can_id
, ifindex
);
815 /* update existing BCM operation */
818 * Do we need more space for the can_frames than currently
819 * allocated? -> This is a _really_ unusual use-case and
820 * therefore (complexity / locking) it is not supported.
822 if (msg_head
->nframes
> op
->nframes
)
825 /* update can_frames content */
826 for (i
= 0; i
< msg_head
->nframes
; i
++) {
827 err
= memcpy_fromiovec((u8
*)&op
->frames
[i
],
828 msg
->msg_iov
, CFSIZ
);
832 if (msg_head
->flags
& TX_CP_CAN_ID
) {
833 /* copy can_id into frame */
834 op
->frames
[i
].can_id
= msg_head
->can_id
;
839 /* insert new BCM operation for the given can_id */
841 op
= kzalloc(OPSIZ
, GFP_KERNEL
);
845 op
->can_id
= msg_head
->can_id
;
847 /* create array for can_frames and copy the data */
848 if (msg_head
->nframes
> 1) {
849 op
->frames
= kmalloc(msg_head
->nframes
* CFSIZ
,
856 op
->frames
= &op
->sframe
;
858 for (i
= 0; i
< msg_head
->nframes
; i
++) {
859 err
= memcpy_fromiovec((u8
*)&op
->frames
[i
],
860 msg
->msg_iov
, CFSIZ
);
862 if (op
->frames
!= &op
->sframe
)
868 if (msg_head
->flags
& TX_CP_CAN_ID
) {
869 /* copy can_id into frame */
870 op
->frames
[i
].can_id
= msg_head
->can_id
;
874 /* tx_ops never compare with previous received messages */
875 op
->last_frames
= NULL
;
877 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
879 op
->ifindex
= ifindex
;
881 /* initialize uninitialized (kzalloc) structure */
882 hrtimer_init(&op
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
883 op
->timer
.function
= bcm_tx_timeout_handler
;
885 /* currently unused in tx_ops */
886 hrtimer_init(&op
->thrtimer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
888 /* add this bcm_op to the list of the tx_ops */
889 list_add(&op
->list
, &bo
->tx_ops
);
891 } /* if ((op = bcm_find_op(&bo->tx_ops, msg_head->can_id, ifindex))) */
893 if (op
->nframes
!= msg_head
->nframes
) {
894 op
->nframes
= msg_head
->nframes
;
895 /* start multiple frame transmission with index 0 */
901 op
->flags
= msg_head
->flags
;
903 if (op
->flags
& TX_RESET_MULTI_IDX
) {
904 /* start multiple frame transmission with index 0 */
908 if (op
->flags
& SETTIMER
) {
909 /* set timer values */
910 op
->count
= msg_head
->count
;
911 op
->ival1
= msg_head
->ival1
;
912 op
->ival2
= msg_head
->ival2
;
913 op
->kt_ival1
= timeval_to_ktime(msg_head
->ival1
);
914 op
->kt_ival2
= timeval_to_ktime(msg_head
->ival2
);
916 /* disable an active timer due to zero values? */
917 if (!op
->kt_ival1
.tv64
&& !op
->kt_ival2
.tv64
)
918 hrtimer_cancel(&op
->timer
);
921 if ((op
->flags
& STARTTIMER
) &&
922 ((op
->kt_ival1
.tv64
&& op
->count
) || op
->kt_ival2
.tv64
)) {
924 /* spec: send can_frame when starting timer */
925 op
->flags
|= TX_ANNOUNCE
;
927 if (op
->kt_ival1
.tv64
&& (op
->count
> 0)) {
928 /* op->count-- is done in bcm_tx_timeout_handler */
929 hrtimer_start(&op
->timer
, op
->kt_ival1
,
932 hrtimer_start(&op
->timer
, op
->kt_ival2
,
936 if (op
->flags
& TX_ANNOUNCE
)
939 return msg_head
->nframes
* CFSIZ
+ MHSIZ
;
943 * bcm_rx_setup - create or update a bcm rx op (for bcm_sendmsg)
945 static int bcm_rx_setup(struct bcm_msg_head
*msg_head
, struct msghdr
*msg
,
946 int ifindex
, struct sock
*sk
)
948 struct bcm_sock
*bo
= bcm_sk(sk
);
953 if ((msg_head
->flags
& RX_FILTER_ID
) || (!(msg_head
->nframes
))) {
954 /* be robust against wrong usage ... */
955 msg_head
->flags
|= RX_FILTER_ID
;
956 /* ignore trailing garbage */
957 msg_head
->nframes
= 0;
960 if ((msg_head
->flags
& RX_RTR_FRAME
) &&
961 ((msg_head
->nframes
!= 1) ||
962 (!(msg_head
->can_id
& CAN_RTR_FLAG
))))
965 /* check the given can_id */
966 op
= bcm_find_op(&bo
->rx_ops
, msg_head
->can_id
, ifindex
);
968 /* update existing BCM operation */
971 * Do we need more space for the can_frames than currently
972 * allocated? -> This is a _really_ unusual use-case and
973 * therefore (complexity / locking) it is not supported.
975 if (msg_head
->nframes
> op
->nframes
)
978 if (msg_head
->nframes
) {
979 /* update can_frames content */
980 err
= memcpy_fromiovec((u8
*)op
->frames
,
982 msg_head
->nframes
* CFSIZ
);
986 /* clear last_frames to indicate 'nothing received' */
987 memset(op
->last_frames
, 0, msg_head
->nframes
* CFSIZ
);
990 op
->nframes
= msg_head
->nframes
;
992 /* Only an update -> do not call can_rx_register() */
996 /* insert new BCM operation for the given can_id */
997 op
= kzalloc(OPSIZ
, GFP_KERNEL
);
1001 op
->can_id
= msg_head
->can_id
;
1002 op
->nframes
= msg_head
->nframes
;
1004 if (msg_head
->nframes
> 1) {
1005 /* create array for can_frames and copy the data */
1006 op
->frames
= kmalloc(msg_head
->nframes
* CFSIZ
,
1013 /* create and init array for received can_frames */
1014 op
->last_frames
= kzalloc(msg_head
->nframes
* CFSIZ
,
1016 if (!op
->last_frames
) {
1023 op
->frames
= &op
->sframe
;
1024 op
->last_frames
= &op
->last_sframe
;
1027 if (msg_head
->nframes
) {
1028 err
= memcpy_fromiovec((u8
*)op
->frames
, msg
->msg_iov
,
1029 msg_head
->nframes
* CFSIZ
);
1031 if (op
->frames
!= &op
->sframe
)
1033 if (op
->last_frames
!= &op
->last_sframe
)
1034 kfree(op
->last_frames
);
1040 /* bcm_can_tx / bcm_tx_timeout_handler needs this */
1042 op
->ifindex
= ifindex
;
1044 /* initialize uninitialized (kzalloc) structure */
1045 hrtimer_init(&op
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
1046 op
->timer
.function
= bcm_rx_timeout_handler
;
1048 hrtimer_init(&op
->thrtimer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
1049 op
->thrtimer
.function
= bcm_rx_thr_handler
;
1051 /* add this bcm_op to the list of the rx_ops */
1052 list_add(&op
->list
, &bo
->rx_ops
);
1054 /* call can_rx_register() */
1057 } /* if ((op = bcm_find_op(&bo->rx_ops, msg_head->can_id, ifindex))) */
1060 op
->flags
= msg_head
->flags
;
1062 if (op
->flags
& RX_RTR_FRAME
) {
1064 /* no timers in RTR-mode */
1065 hrtimer_cancel(&op
->thrtimer
);
1066 hrtimer_cancel(&op
->timer
);
1069 * funny feature in RX(!)_SETUP only for RTR-mode:
1070 * copy can_id into frame BUT without RTR-flag to
1071 * prevent a full-load-loopback-test ... ;-]
1073 if ((op
->flags
& TX_CP_CAN_ID
) ||
1074 (op
->frames
[0].can_id
== op
->can_id
))
1075 op
->frames
[0].can_id
= op
->can_id
& ~CAN_RTR_FLAG
;
1078 if (op
->flags
& SETTIMER
) {
1080 /* set timer value */
1081 op
->ival1
= msg_head
->ival1
;
1082 op
->ival2
= msg_head
->ival2
;
1083 op
->kt_ival1
= timeval_to_ktime(msg_head
->ival1
);
1084 op
->kt_ival2
= timeval_to_ktime(msg_head
->ival2
);
1086 /* disable an active timer due to zero value? */
1087 if (!op
->kt_ival1
.tv64
)
1088 hrtimer_cancel(&op
->timer
);
1091 * In any case cancel the throttle timer, flush
1092 * potentially blocked msgs and reset throttle handling
1094 op
->kt_lastmsg
= ktime_set(0, 0);
1095 hrtimer_cancel(&op
->thrtimer
);
1096 bcm_rx_thr_flush(op
);
1099 if ((op
->flags
& STARTTIMER
) && op
->kt_ival1
.tv64
)
1100 hrtimer_start(&op
->timer
, op
->kt_ival1
,
1104 /* now we can register for can_ids, if we added a new bcm_op */
1105 if (do_rx_register
) {
1107 struct net_device
*dev
;
1109 dev
= dev_get_by_index(&init_net
, ifindex
);
1111 err
= can_rx_register(dev
, op
->can_id
,
1112 REGMASK(op
->can_id
),
1116 op
->rx_reg_dev
= dev
;
1121 err
= can_rx_register(NULL
, op
->can_id
,
1122 REGMASK(op
->can_id
),
1123 bcm_rx_handler
, op
, "bcm");
1125 /* this bcm rx op is broken -> remove it */
1126 list_del(&op
->list
);
1132 return msg_head
->nframes
* CFSIZ
+ MHSIZ
;
1136 * bcm_tx_send - send a single CAN frame to the CAN interface (for bcm_sendmsg)
1138 static int bcm_tx_send(struct msghdr
*msg
, int ifindex
, struct sock
*sk
)
1140 struct sk_buff
*skb
;
1141 struct net_device
*dev
;
1144 /* we need a real device to send frames */
1148 skb
= alloc_skb(CFSIZ
, GFP_KERNEL
);
1153 err
= memcpy_fromiovec(skb_put(skb
, CFSIZ
), msg
->msg_iov
, CFSIZ
);
1159 dev
= dev_get_by_index(&init_net
, ifindex
);
1167 can_send(skb
, 1); /* send with loopback */
1170 return CFSIZ
+ MHSIZ
;
1174 * bcm_sendmsg - process BCM commands (opcodes) from the userspace
1176 static int bcm_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1177 struct msghdr
*msg
, size_t size
)
1179 struct sock
*sk
= sock
->sk
;
1180 struct bcm_sock
*bo
= bcm_sk(sk
);
1181 int ifindex
= bo
->ifindex
; /* default ifindex for this bcm_op */
1182 struct bcm_msg_head msg_head
;
1183 int ret
; /* read bytes or error codes as return value */
1188 /* check for alternative ifindex for this bcm_op */
1190 if (!ifindex
&& msg
->msg_name
) {
1191 /* no bound device as default => check msg_name */
1192 struct sockaddr_can
*addr
=
1193 (struct sockaddr_can
*)msg
->msg_name
;
1195 if (addr
->can_family
!= AF_CAN
)
1198 /* ifindex from sendto() */
1199 ifindex
= addr
->can_ifindex
;
1202 struct net_device
*dev
;
1204 dev
= dev_get_by_index(&init_net
, ifindex
);
1208 if (dev
->type
!= ARPHRD_CAN
) {
1217 /* read message head information */
1219 ret
= memcpy_fromiovec((u8
*)&msg_head
, msg
->msg_iov
, MHSIZ
);
1225 switch (msg_head
.opcode
) {
1228 ret
= bcm_tx_setup(&msg_head
, msg
, ifindex
, sk
);
1232 ret
= bcm_rx_setup(&msg_head
, msg
, ifindex
, sk
);
1236 if (bcm_delete_tx_op(&bo
->tx_ops
, msg_head
.can_id
, ifindex
))
1243 if (bcm_delete_rx_op(&bo
->rx_ops
, msg_head
.can_id
, ifindex
))
1250 /* reuse msg_head for the reply to TX_READ */
1251 msg_head
.opcode
= TX_STATUS
;
1252 ret
= bcm_read_op(&bo
->tx_ops
, &msg_head
, ifindex
);
1256 /* reuse msg_head for the reply to RX_READ */
1257 msg_head
.opcode
= RX_STATUS
;
1258 ret
= bcm_read_op(&bo
->rx_ops
, &msg_head
, ifindex
);
1262 /* we need at least one can_frame */
1263 if (msg_head
.nframes
< 1)
1266 ret
= bcm_tx_send(msg
, ifindex
, sk
);
1280 * notification handler for netdevice status changes
1282 static int bcm_notifier(struct notifier_block
*nb
, unsigned long msg
,
1285 struct net_device
*dev
= (struct net_device
*)data
;
1286 struct bcm_sock
*bo
= container_of(nb
, struct bcm_sock
, notifier
);
1287 struct sock
*sk
= &bo
->sk
;
1289 int notify_enodev
= 0;
1291 if (dev_net(dev
) != &init_net
)
1294 if (dev
->type
!= ARPHRD_CAN
)
1299 case NETDEV_UNREGISTER
:
1302 /* remove device specific receive entries */
1303 list_for_each_entry(op
, &bo
->rx_ops
, list
)
1304 if (op
->rx_reg_dev
== dev
)
1305 bcm_rx_unreg(dev
, op
);
1307 /* remove device reference, if this is our bound device */
1308 if (bo
->bound
&& bo
->ifindex
== dev
->ifindex
) {
1316 if (notify_enodev
) {
1317 sk
->sk_err
= ENODEV
;
1318 if (!sock_flag(sk
, SOCK_DEAD
))
1319 sk
->sk_error_report(sk
);
1324 if (bo
->bound
&& bo
->ifindex
== dev
->ifindex
) {
1325 sk
->sk_err
= ENETDOWN
;
1326 if (!sock_flag(sk
, SOCK_DEAD
))
1327 sk
->sk_error_report(sk
);
1335 * initial settings for all BCM sockets to be set at socket creation time
1337 static int bcm_init(struct sock
*sk
)
1339 struct bcm_sock
*bo
= bcm_sk(sk
);
1343 bo
->dropped_usr_msgs
= 0;
1344 bo
->bcm_proc_read
= NULL
;
1346 INIT_LIST_HEAD(&bo
->tx_ops
);
1347 INIT_LIST_HEAD(&bo
->rx_ops
);
1350 bo
->notifier
.notifier_call
= bcm_notifier
;
1352 register_netdevice_notifier(&bo
->notifier
);
1358 * standard socket functions
1360 static int bcm_release(struct socket
*sock
)
1362 struct sock
*sk
= sock
->sk
;
1363 struct bcm_sock
*bo
= bcm_sk(sk
);
1364 struct bcm_op
*op
, *next
;
1366 /* remove bcm_ops, timer, rx_unregister(), etc. */
1368 unregister_netdevice_notifier(&bo
->notifier
);
1372 list_for_each_entry_safe(op
, next
, &bo
->tx_ops
, list
)
1375 list_for_each_entry_safe(op
, next
, &bo
->rx_ops
, list
) {
1377 * Don't care if we're bound or not (due to netdev problems)
1378 * can_rx_unregister() is always a save thing to do here.
1382 * Only remove subscriptions that had not
1383 * been removed due to NETDEV_UNREGISTER
1386 if (op
->rx_reg_dev
) {
1387 struct net_device
*dev
;
1389 dev
= dev_get_by_index(&init_net
, op
->ifindex
);
1391 bcm_rx_unreg(dev
, op
);
1396 can_rx_unregister(NULL
, op
->can_id
,
1397 REGMASK(op
->can_id
),
1398 bcm_rx_handler
, op
);
1403 /* remove procfs entry */
1404 if (proc_dir
&& bo
->bcm_proc_read
)
1405 remove_proc_entry(bo
->procname
, proc_dir
);
1407 /* remove device reference */
1419 static int bcm_connect(struct socket
*sock
, struct sockaddr
*uaddr
, int len
,
1422 struct sockaddr_can
*addr
= (struct sockaddr_can
*)uaddr
;
1423 struct sock
*sk
= sock
->sk
;
1424 struct bcm_sock
*bo
= bcm_sk(sk
);
1429 /* bind a device to this socket */
1430 if (addr
->can_ifindex
) {
1431 struct net_device
*dev
;
1433 dev
= dev_get_by_index(&init_net
, addr
->can_ifindex
);
1437 if (dev
->type
!= ARPHRD_CAN
) {
1442 bo
->ifindex
= dev
->ifindex
;
1446 /* no interface reference for ifindex = 0 ('any' CAN device) */
1453 /* unique socket address as filename */
1454 sprintf(bo
->procname
, "%p", sock
);
1455 bo
->bcm_proc_read
= create_proc_read_entry(bo
->procname
, 0644,
1463 static int bcm_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1464 struct msghdr
*msg
, size_t size
, int flags
)
1466 struct sock
*sk
= sock
->sk
;
1467 struct sk_buff
*skb
;
1472 noblock
= flags
& MSG_DONTWAIT
;
1473 flags
&= ~MSG_DONTWAIT
;
1474 skb
= skb_recv_datagram(sk
, flags
, noblock
, &error
);
1478 if (skb
->len
< size
)
1481 err
= memcpy_toiovec(msg
->msg_iov
, skb
->data
, size
);
1483 skb_free_datagram(sk
, skb
);
1487 sock_recv_timestamp(msg
, sk
, skb
);
1489 if (msg
->msg_name
) {
1490 msg
->msg_namelen
= sizeof(struct sockaddr_can
);
1491 memcpy(msg
->msg_name
, skb
->cb
, msg
->msg_namelen
);
1494 skb_free_datagram(sk
, skb
);
1499 static struct proto_ops bcm_ops __read_mostly
= {
1501 .release
= bcm_release
,
1502 .bind
= sock_no_bind
,
1503 .connect
= bcm_connect
,
1504 .socketpair
= sock_no_socketpair
,
1505 .accept
= sock_no_accept
,
1506 .getname
= sock_no_getname
,
1507 .poll
= datagram_poll
,
1508 .ioctl
= NULL
, /* use can_ioctl() from af_can.c */
1509 .listen
= sock_no_listen
,
1510 .shutdown
= sock_no_shutdown
,
1511 .setsockopt
= sock_no_setsockopt
,
1512 .getsockopt
= sock_no_getsockopt
,
1513 .sendmsg
= bcm_sendmsg
,
1514 .recvmsg
= bcm_recvmsg
,
1515 .mmap
= sock_no_mmap
,
1516 .sendpage
= sock_no_sendpage
,
1519 static struct proto bcm_proto __read_mostly
= {
1521 .owner
= THIS_MODULE
,
1522 .obj_size
= sizeof(struct bcm_sock
),
1526 static struct can_proto bcm_can_proto __read_mostly
= {
1528 .protocol
= CAN_BCM
,
1534 static int __init
bcm_module_init(void)
1540 err
= can_proto_register(&bcm_can_proto
);
1542 printk(KERN_ERR
"can: registration of bcm protocol failed\n");
1546 /* create /proc/net/can-bcm directory */
1547 proc_dir
= proc_mkdir("can-bcm", init_net
.proc_net
);
1550 proc_dir
->owner
= THIS_MODULE
;
1555 static void __exit
bcm_module_exit(void)
1557 can_proto_unregister(&bcm_can_proto
);
1560 proc_net_remove(&init_net
, "can-bcm");
1563 module_init(bcm_module_init
);
1564 module_exit(bcm_module_exit
);