]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - kernel/2.6/net/can/af_can.c
705fb44adf0cfd450b68ca088074eea4df30989d
[socketcan-devel.git] / kernel / 2.6 / net / can / af_can.c
1 /*
2  * af_can.c
3  *
4  * Copyright (c) 2002-2005 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, the following disclaimer and
12  *    the referenced file 'COPYING'.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of Volkswagen nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * Alternatively, provided that this notice is retained in full, this
21  * software may be distributed under the terms of the GNU General
22  * Public License ("GPL") version 2 as distributed in the 'COPYING'
23  * file from the main directory of the linux kernel source.
24  *
25  * The provided data structures and external interfaces from this code
26  * are not restricted to be used by modules with a GPL compatible license.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
39  * DAMAGE.
40  *
41  * Send feedback to <socketcan-users@lists.berlios.de>
42  *
43  */
44
45 #include <linux/config.h>
46 #include <linux/module.h>
47 #include <linux/version.h>
48 #include <linux/slab.h>
49 #include <linux/kmod.h>
50 #include <linux/init.h>
51 #include <linux/list.h>
52 #include <linux/spinlock.h>
53 #include <linux/rcupdate.h>
54 #include <linux/socket.h>
55 #include <linux/skbuff.h>
56 #include <linux/net.h>
57 #include <linux/netdevice.h>
58 #include <net/sock.h>
59 #include <asm/uaccess.h>
60
61 #include <linux/can.h>
62 #include <linux/can/version.h>
63
64 #include "af_can.h"
65
66
67 RCSID("$Id$");
68
69 #define NAME "Volkswagen AG - Low Level CAN Framework (LLCF)"
70 #define IDENT "af_can"
71 static __initdata const char banner[] = BANNER(NAME);
72
73 MODULE_DESCRIPTION(NAME);
74 MODULE_LICENSE("Dual BSD/GPL");
75 MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>, "
76               "Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
77
78 int stats_timer = 1; /* default: on */
79 module_param(stats_timer, int, S_IRUGO);
80
81 #ifdef CONFIG_CAN_DEBUG_CORE
82 static int debug = 0;
83 module_param(debug, int, S_IRUGO);
84 #define DBG(args...)       (debug & 1 ? \
85                                (printk(KERN_DEBUG "CAN %s: ", __func__), \
86                                 printk(args)) : 0)
87 #define DBG_FRAME(args...) (debug & 2 ? can_debug_cframe(args) : 0)
88 #define DBG_SKB(skb)       (debug & 4 ? can_debug_skb(skb) : 0)
89 #else
90 #define DBG(args...)
91 #define DBG_FRAME(args...)
92 #define DBG_SKB(skb)
93 #endif
94
95 static __init int  can_init(void);
96 static __exit void can_exit(void);
97
98 static int can_create(struct socket *sock, int protocol);
99 static int can_notifier(struct notifier_block *nb,
100                         unsigned long msg, void *data);
101 static int can_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
102 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
103 static int can_rcv(struct sk_buff *skb, struct net_device *dev,
104                    struct packet_type *pt, struct net_device *orig_dev);
105 #else
106 static int can_rcv(struct sk_buff *skb, struct net_device *dev,
107                    struct packet_type *pt);
108 #endif
109 static int can_rcv_filter(struct dev_rcv_lists *d, struct sk_buff *skb);
110 static struct dev_rcv_lists *find_dev_rcv_lists(struct net_device *dev);
111 static struct hlist_head *find_rcv_list(canid_t *can_id, canid_t *mask,
112                                         struct dev_rcv_lists *d);
113 static void can_rcv_lists_delete(struct rcu_head *rp);
114 static void can_rx_delete(struct rcu_head *rp);
115 static void can_rx_delete_all(struct hlist_head *rl);
116
117
118 struct notifier {
119         struct list_head list;
120         struct net_device *dev;
121         void (*func)(unsigned long msg, void *data);
122         void *data;
123 };
124
125 static LIST_HEAD(notifier_list);
126 static rwlock_t notifier_lock = RW_LOCK_UNLOCKED;
127
128 HLIST_HEAD(rx_dev_list);
129 struct dev_rcv_lists rx_alldev_list;
130 static spinlock_t rcv_lists_lock = SPIN_LOCK_UNLOCKED;
131
132 static kmem_cache_t *rcv_cache;
133
134 static struct packet_type can_packet = {
135         .type = __constant_htons(ETH_P_CAN),
136         .dev  = NULL,
137         .func = can_rcv,
138 };
139
140 static struct net_proto_family can_family_ops = {
141         .family = PF_CAN,
142         .create = can_create,
143         .owner  = THIS_MODULE,
144 };
145
146 /* notifier block for netdevice event */
147 static struct notifier_block can_netdev_notifier = {
148         .notifier_call = can_notifier,
149 };
150
151 /* table of registered CAN protocols */
152 static struct can_proto *proto_tab[CAN_NPROTO];
153
154 extern struct timer_list stattimer; /* timer for statistics update */
155 extern struct s_stats  stats;       /* packet statistics */
156 extern struct s_pstats pstats;      /* receive list statistics */
157
158 module_init(can_init);
159 module_exit(can_exit);
160
161 /**************************************************/
162 /* af_can module init/exit functions              */
163 /**************************************************/
164
165 static __init int can_init(void)
166 {
167         printk(banner);
168
169         rcv_cache = kmem_cache_create("can_receiver", sizeof(struct receiver),
170                                       0, 0, NULL, NULL);
171         if (!rcv_cache)
172                 return -ENOMEM;
173
174         if (stats_timer) {
175                 /* statistics init */
176                 init_timer(&stattimer);
177         }
178
179         /* procfs init */
180         can_init_proc();
181
182         /* protocol register */
183         sock_register(&can_family_ops);
184         register_netdevice_notifier(&can_netdev_notifier);
185         dev_add_pack(&can_packet);
186
187         return 0;
188 }
189
190 static __exit void can_exit(void)
191 {
192         if (stats_timer) {
193                 /* stop statistics timer */
194                 del_timer(&stattimer);
195         }
196
197         /* procfs remove */
198         can_remove_proc();
199
200         /* protocol unregister */
201         dev_remove_pack(&can_packet);
202         unregister_netdevice_notifier(&can_netdev_notifier);
203         sock_unregister(PF_CAN);
204
205         kmem_cache_destroy(rcv_cache);
206 }
207
208 /**************************************************/
209 /* af_can protocol functions                      */
210 /**************************************************/
211
212 void can_proto_register(struct can_proto *cp)
213 {
214         int proto = cp->protocol;
215         if (proto < 0 || proto >= CAN_NPROTO) {
216                 printk(KERN_ERR "CAN: protocol number %d out of range\n", proto);
217                 return;
218         }
219         if (proto_tab[proto]) {
220                 printk(KERN_ERR "CAN: protocol %d already registered\n", proto);
221                 return;
222         }
223
224 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)
225         if (proto_register(cp->prot, 0) != 0) {
226                 return;
227         }
228 #endif
229         proto_tab[proto] = cp;
230
231         /* use our generic ioctl function if the module doesn't bring its own */
232         if (!cp->ops->ioctl)
233                 cp->ops->ioctl = can_ioctl;
234 }
235
236 void can_proto_unregister(struct can_proto *cp)
237 {
238         int proto = cp->protocol;
239         if (!proto_tab[proto]) {
240                 printk(KERN_ERR "CAN: protocol %d is not registered\n", proto);
241                 return;
242         }
243 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)
244         proto_unregister(cp->prot);
245 #endif
246         proto_tab[proto] = NULL;
247 }
248
249 void can_dev_register(struct net_device *dev,
250                       void (*func)(unsigned long msg, void *), void *data)
251 {
252         struct notifier *n;
253
254         DBG("called for %s\n", dev->name);
255
256         if (!(n = kmalloc(sizeof(*n), GFP_KERNEL)))
257                 return;
258
259         n->dev  = dev;
260         n->func = func;
261         n->data = data;
262
263         write_lock(&notifier_lock);
264         list_add(&n->list, &notifier_list);
265         write_unlock(&notifier_lock);
266 }
267
268 void can_dev_unregister(struct net_device *dev,
269                         void (*func)(unsigned long msg, void *), void *data)
270 {
271         struct notifier *n, *next;
272
273         DBG("called for %s\n", dev->name);
274
275         write_lock(&notifier_lock);
276         list_for_each_entry_safe(n, next, &notifier_list, list) {
277                 if (n->dev == dev && n->func == func && n->data == data) {
278                         list_del(&n->list);
279                         kfree(n);
280                         break;
281                 }
282         }
283         write_unlock(&notifier_lock);
284 }
285
286 /**************************************************/
287 /* af_can socket functions                        */
288 /**************************************************/
289
290 static void can_sock_destruct(struct sock *sk)
291 {
292         DBG("called for sock %p\n", sk);
293
294         skb_queue_purge(&sk->sk_receive_queue);
295         if (sk->sk_protinfo)
296                 kfree(sk->sk_protinfo);
297 }
298
299 static int can_create(struct socket *sock, int protocol)
300 {
301         struct sock *sk;
302         struct can_proto *cp;
303         int ret;
304
305         DBG("socket %p, type %d, proto %d\n", sock, sock->type, protocol);
306
307         sock->state = SS_UNCONNECTED;
308
309         if (protocol < 0 || protocol >= CAN_NPROTO)
310                 return -EINVAL;
311
312         DBG("looking up proto %d in proto_tab[]\n", protocol);
313
314         /* try to load protocol module, when CONFIG_KMOD is defined */
315         if (!proto_tab[protocol]) {
316                 char module_name[30];
317                 sprintf(module_name, "can-proto-%d", protocol);
318                 if (request_module(module_name) == -ENOSYS)
319                         printk(KERN_INFO "af_can: request_module(%s) not implemented.\n",
320                                module_name);
321         }
322
323         /* check for success and correct type */
324         if (!(cp = proto_tab[protocol]) || cp->type != sock->type)
325                 return -EPROTONOSUPPORT;
326
327         if (cp->capability >= 0 && !capable(cp->capability))
328                 return -EPERM;
329
330         sock->ops = cp->ops;
331
332 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)
333         sk = sk_alloc(PF_CAN, GFP_KERNEL, cp->prot, 1);
334         if (!sk)
335                 goto oom;
336 #else
337         sk = sk_alloc(PF_CAN, GFP_KERNEL, 1, 0);
338         if (!sk)
339                 goto oom;
340         if (cp->obj_size &&
341             !(sk->sk_protinfo = kmalloc(cp->obj_size, GFP_KERNEL))) {
342                 sk_free(sk);
343                 goto oom;
344         }
345         sk_set_owner(sk, proto_tab[protocol]->owner);
346 #endif
347         sock_init_data(sock, sk);
348         sk->sk_destruct = can_sock_destruct;
349
350         DBG("created sock: %p\n", sk);
351
352         ret = 0;
353 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)
354         if (sk->sk_prot->init)
355                 ret = sk->sk_prot->init(sk);
356 #else
357         if (cp->init)
358                 ret = cp->init(sk);
359 #endif
360         if (ret) {
361                 /* we must release sk */
362                 sock_orphan(sk);
363                 sock_put(sk);
364                 return ret;
365         }
366
367         return 0;
368
369  oom:
370         return -ENOMEM;
371 }
372
373 static int can_notifier(struct notifier_block *nb,
374                         unsigned long msg, void *data)
375 {
376         struct net_device *dev = (struct net_device *)data;
377         struct notifier *n;
378
379         DBG("called for %s, msg = %lu\n", dev->name, msg);
380
381 #if 0
382         if (dev->type != ARPHRD_CAN)
383                 return NOTIFY_DONE;
384 #endif
385
386         switch (msg) {
387                 struct dev_rcv_lists *d;
388                 int i;
389
390         case NETDEV_REGISTER:
391
392                 /* create new dev_rcv_lists for this device */
393
394                 DBG("creating new dev_rcv_lists for %s\n", dev->name);
395                 if (!(d = kmalloc(sizeof(*d), GFP_KERNEL))) {
396                         printk(KERN_ERR "CAN: allocation of receive list failed\n");
397                         return NOTIFY_DONE;
398                 }
399                 /* N.B. zeroing the struct is the correct initialization
400                         for the embedded hlist_head structs.
401                         Another list type, e.g. list_head, would require
402                         explicit initialization. */
403                 memset(d, 0, sizeof(*d));
404                 d->dev = dev;
405
406                 spin_lock(&rcv_lists_lock);
407                 hlist_add_head_rcu(&d->list, &rx_dev_list);
408                 spin_unlock(&rcv_lists_lock);
409
410                 break;
411
412         case NETDEV_UNREGISTER:
413                 spin_lock(&rcv_lists_lock);
414
415                 if (!(d = find_dev_rcv_lists(dev))) {
416                         printk(KERN_ERR "CAN: notifier: receive list not "
417                                "found for dev %s\n", dev->name);
418                         goto unreg_out;
419                 }
420
421                 hlist_del_rcu(&d->list);
422
423                 /* remove all receivers hooked at this netdevice */
424                 can_rx_delete_all(&d->rx_err);
425                 can_rx_delete_all(&d->rx_all);
426                 can_rx_delete_all(&d->rx_fil);
427                 can_rx_delete_all(&d->rx_inv);
428                 can_rx_delete_all(&d->rx_eff);
429                 for (i = 0; i < 2048; i++)
430                         can_rx_delete_all(&d->rx_sff[i]);
431
432         unreg_out:
433                 spin_unlock(&rcv_lists_lock);
434
435                 if (d)
436                         call_rcu(&d->rcu, can_rcv_lists_delete);
437
438                 break;
439         }
440
441         read_lock(&notifier_lock);
442         list_for_each_entry(n, &notifier_list, list) {
443                 if (n->dev == dev)
444                         n->func(msg, n->data);
445         }
446         read_unlock(&notifier_lock);
447
448         return NOTIFY_DONE;
449 }
450
451 static int can_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
452 {
453         struct sock *sk = sock->sk;
454
455         switch (cmd) {
456         case SIOCGSTAMP:
457                 return sock_get_timestamp(sk, (struct timeval __user *)arg);
458         default:
459 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
460                 return -ENOIOCTLCMD;
461 #else
462                 return dev_ioctl(cmd, (void __user *)arg);
463 #endif
464         }
465         return 0;
466 }
467
468 /**************************************************/
469 /* af_can tx path                                 */
470 /**************************************************/
471
472 int can_send(struct sk_buff *skb, int loop)
473 {
474         int err;
475
476         if (loop) { /* local loopback (default) */
477                 *(struct sock **)skb->cb = skb->sk; /* tx sock reference */
478
479                 /* interface not capabable to do the loopback itself? */
480                 if (!(skb->dev->flags & IFF_LOOPBACK)) {
481                         struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC);
482                         newskb->protocol  = htons(ETH_P_CAN);
483                         newskb->ip_summed = CHECKSUM_UNNECESSARY;
484                         netif_rx(newskb); /* perform local loopback here */
485                 }
486         } else
487                 *(struct sock **)skb->cb = NULL; /* no loopback required */
488
489         if (!(skb->dev->flags & IFF_UP))
490                 err = -ENETDOWN;
491         else if ((err = dev_queue_xmit(skb)) > 0)  /* send to netdevice */
492                 err = net_xmit_errno(err);
493
494         /* update statistics */
495         stats.tx_frames++;
496         stats.tx_frames_delta++;
497
498         return err;
499 }
500
501 /**************************************************/
502 /* af_can rx path                                 */
503 /**************************************************/
504
505 void can_rx_register(struct net_device *dev, canid_t can_id, canid_t mask,
506                      void (*func)(struct sk_buff *, void *), void *data,
507                      char *ident)
508 {
509         struct receiver *r;
510         struct hlist_head *rl;
511         struct dev_rcv_lists *d;
512
513         /* insert new receiver  (dev,canid,mask) -> (func,data) */
514
515         DBG("dev %p, id %03X, mask %03X, callback %p, data %p, ident %s\n",
516             dev, can_id, mask, func, data, ident);
517
518         if (!(r = kmem_cache_alloc(rcv_cache, GFP_KERNEL)))
519                 goto out;
520
521         spin_lock(&rcv_lists_lock);
522
523         if (!(d = find_dev_rcv_lists(dev))) {
524                 printk(KERN_ERR "CAN: receive list not found for "
525                        "dev %s, id %03X, mask %03X\n", dev->name, can_id, mask);
526                 kmem_cache_free(rcv_cache, r);
527                 goto out_unlock;
528         }
529
530         rl = find_rcv_list(&can_id, &mask, d);
531
532         r->can_id  = can_id;
533         r->mask    = mask;
534         r->matches = 0;
535         r->func    = func;
536         r->data    = data;
537         r->ident   = ident;
538
539         hlist_add_head_rcu(&r->list, rl);
540         d->entries++;
541
542         pstats.rcv_entries++;
543         if (pstats.rcv_entries_max < pstats.rcv_entries)
544                 pstats.rcv_entries_max = pstats.rcv_entries;
545
546  out_unlock:
547         spin_unlock(&rcv_lists_lock);
548  out:
549         return;
550 }
551
552 static void can_rcv_lists_delete(struct rcu_head *rp)
553 {
554         struct dev_rcv_lists *d = container_of(rp, struct dev_rcv_lists, rcu);
555         kfree(d);
556 }
557
558 static void can_rx_delete(struct rcu_head *rp)
559 {
560         struct receiver *r = container_of(rp, struct receiver, rcu);
561         kmem_cache_free(rcv_cache, r);
562 }
563
564 static void can_rx_delete_all(struct hlist_head *rl)
565 {
566         struct receiver *r;
567         struct hlist_node *n;
568
569         hlist_for_each_entry_rcu(r, n, rl, list) {
570                 hlist_del_rcu(&r->list);
571                 call_rcu(&r->rcu, can_rx_delete);
572         }
573 }
574
575 void can_rx_unregister(struct net_device *dev, canid_t can_id, canid_t mask,
576                        void (*func)(struct sk_buff *, void *), void *data)
577 {
578         struct receiver *r;
579         struct hlist_head *rl;
580         struct hlist_node *next;
581         struct dev_rcv_lists *d;
582
583         DBG("dev %p, id %03X, mask %03X, callback %p, data %p\n",
584             dev, can_id, mask, func, data);
585
586         r = NULL;
587
588         spin_lock(&rcv_lists_lock);
589
590         if (!(d = find_dev_rcv_lists(dev))) {
591                 printk(KERN_ERR "CAN: receive list not found for "
592                        "dev %s, id %03X, mask %03X\n", dev->name, can_id, mask);
593                 goto out;
594         }
595
596         rl = find_rcv_list(&can_id, &mask, d);
597
598         /*  Search the receiver list for the item to delete.  This should
599          *  exist, since no receiver may be unregistered that hasn't
600          *  been registered before.
601          */
602
603         hlist_for_each_entry(r, next, rl, list) {
604                 if (r->can_id == can_id && r->mask == mask
605                     && r->func == func && r->data == data)
606                         break;
607         }
608
609         /*  Check for bug in CAN protocol implementations:
610          *  If no matching list item was found, the list cursor variable next
611          *  will be NULL, while r will point to the last item of the list.
612          */
613
614         if (!next) {
615                 printk(KERN_ERR "CAN: receive list entry not found for "
616                        "dev %s, id %03X, mask %03X\n", dev->name, can_id, mask);
617                 r = NULL;
618                 goto out;
619         }
620
621         hlist_del_rcu(&r->list);
622         d->entries--;
623
624         if (pstats.rcv_entries > 0)
625                 pstats.rcv_entries--;
626
627  out:
628         spin_unlock(&rcv_lists_lock);
629
630         /* schedule the receiver item for deletion */
631         if (r)
632                 call_rcu(&r->rcu, can_rx_delete);
633 }
634
635 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
636 static int can_rcv(struct sk_buff *skb, struct net_device *dev,
637                    struct packet_type *pt, struct net_device *orig_dev)
638 #else
639 static int can_rcv(struct sk_buff *skb, struct net_device *dev,
640                    struct packet_type *pt)
641 #endif
642 {
643         struct dev_rcv_lists *d;
644         int matches;
645
646         DBG("received skbuff on device %s, ptype %04x\n",
647             dev->name, ntohs(pt->type));
648         DBG_SKB(skb);
649         DBG_FRAME("af_can: can_rcv: received CAN frame",
650                   (struct can_frame *)skb->data);
651
652         /* update statistics */
653         stats.rx_frames++;
654         stats.rx_frames_delta++;
655
656         rcu_read_lock();
657
658         /* deliver the packet to sockets listening on all devices */
659         matches = can_rcv_filter(&rx_alldev_list, skb);
660
661         /* find receive list for this device */
662         if ((d = find_dev_rcv_lists(dev)))
663                 matches += can_rcv_filter(d, skb);
664
665         rcu_read_unlock();
666
667         /* free the skbuff allocated by the netdevice driver */
668         DBG("freeing skbuff %p\n", skb);
669         kfree_skb(skb);
670
671         if (matches > 0) {
672                 stats.matches++;
673                 stats.matches_delta++;
674         }
675
676         return 0;
677 }
678
679
680 static inline void deliver(struct sk_buff *skb, struct receiver *r)
681 {
682         struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
683         DBG("skbuff %p cloned to %p\n", skb, clone);
684         if (clone) {
685                 r->func(clone, r->data);
686                 r->matches++;    /* update specific statistics */
687         }
688 }
689
690 static int can_rcv_filter(struct dev_rcv_lists *d, struct sk_buff *skb)
691 {
692         struct receiver *r;
693         struct hlist_node *n;
694         int matches = 0;
695         struct can_frame *cf = (struct can_frame*)skb->data;
696         canid_t can_id = cf->can_id;
697
698         if (d->entries == 0)
699                 return 0;
700
701         if (can_id & CAN_ERR_FLAG) {
702                 /* check for error frame entries only */
703                 hlist_for_each_entry_rcu(r, n, &d->rx_err, list) {
704                         if (can_id & r->mask) {
705                                 DBG("match on rx_err skbuff %p\n", skb);
706                                 deliver(skb, r);
707                                 matches++;
708                         }
709                 }
710                 goto out;
711         }
712
713         /* check for unfiltered entries */
714         hlist_for_each_entry_rcu(r, n, &d->rx_all, list) {
715                 DBG("match on rx_all skbuff %p\n", skb);
716                 deliver(skb, r);
717                 matches++;
718         }
719
720         /* check for can_id/mask entries */
721         hlist_for_each_entry_rcu(r, n, &d->rx_fil, list) {
722                 if ((can_id & r->mask) == r->can_id) {
723                         DBG("match on rx_fil skbuff %p\n", skb);
724                         deliver(skb, r);
725                         matches++;
726                 }
727         }
728
729         /* check for inverted can_id/mask entries */
730         hlist_for_each_entry_rcu(r, n, &d->rx_inv, list) {
731                 if ((can_id & r->mask) != r->can_id) {
732                         DBG("match on rx_inv skbuff %p\n", skb);
733                         deliver(skb, r);
734                         matches++;
735                 }
736         }
737
738         /* check CAN_ID specific entries */
739         if (can_id & CAN_EFF_FLAG) {
740                 hlist_for_each_entry_rcu(r, n, &d->rx_eff, list) {
741                         if (r->can_id == can_id) {
742                                 DBG("match on rx_eff skbuff %p\n", skb);
743                                 deliver(skb, r);
744                                 matches++;
745                         }
746                 }
747         } else {
748                 can_id &= CAN_SFF_MASK;
749                 hlist_for_each_entry_rcu(r, n, &d->rx_sff[can_id], list) {
750                         DBG("match on rx_sff skbuff %p\n", skb);
751                         deliver(skb, r);
752                         matches++;
753                 }
754         }
755
756  out:
757         return matches;
758 }
759
760 static struct dev_rcv_lists *find_dev_rcv_lists(struct net_device *dev)
761 {
762         struct dev_rcv_lists *d;
763         struct hlist_node *n;
764
765         /* find receive list for this device */
766
767         if (!dev)
768                 return &rx_alldev_list;
769
770         /*  The hlist_for_each_entry*() macros curse through the list
771          *  using the pointer variable n and set d to the containing
772          *  struct in each list iteration.  Therefore, after list
773          *  iteration, d is unmodified when the list is empty, and it
774          *  points to last list element, when the list is non-empty
775          *  but no match in the loop body is found.  I.e. d is *not*
776          *  NULL when no match is found.  We can, however, use the
777          *  cursor variable n to decide if a match was found.
778          */
779
780         hlist_for_each_entry(d, n, &rx_dev_list, list)
781                 if (d->dev == dev)
782                         break;
783
784         return n ? d : NULL;
785 }
786
787 static struct hlist_head *find_rcv_list(canid_t *can_id, canid_t *mask,
788                                         struct dev_rcv_lists *d)
789 {
790         canid_t inv = *can_id & CAN_INV_FILTER; /* save flag before masking values */
791         canid_t eff = *can_id & *mask & CAN_EFF_FLAG; /* correct EFF check? */
792         canid_t rtr = *can_id & *mask & CAN_RTR_FLAG; /* correct RTR check? */
793         canid_t err = *mask & CAN_ERR_FLAG; /* mask for error frames only */
794
795         /* make some paranoic operations */
796         if (*can_id & CAN_EFF_FLAG)
797                 *mask &= (CAN_EFF_MASK | eff | rtr);
798         else
799                 *mask &= (CAN_SFF_MASK | rtr);
800
801         *can_id &= *mask;
802
803         if (err) /* error frames */
804                 return &d->rx_err;
805
806         if (inv) /* inverse can_id/can_mask filter and RTR */
807                 return &d->rx_inv;
808
809         if (*can_id & CAN_RTR_FLAG) /* positive filter RTR */
810                 return &d->rx_fil;
811
812         if (!(*mask)) /* mask == 0 => no filter */
813                 return &d->rx_all;
814
815         if (*can_id & CAN_EFF_FLAG) {
816                 if (*mask == CAN_EFF_MASK) /* filter exact EFF can_id */
817                         return &d->rx_eff;
818         } else {
819                 if (*mask == CAN_SFF_MASK) /* filter exact SFF can_id */
820                         return &d->rx_sff[*can_id];
821         }
822
823         return &d->rx_fil;  /* filter via can_id/can_mask */
824 }
825
826 /**************************************************/
827 /* af_can utility stuff                           */
828 /**************************************************/
829
830 unsigned long timeval2jiffies(struct timeval *tv, int round_up)
831 {
832         unsigned long jif;
833         unsigned long sec  = tv->tv_sec;
834         unsigned long usec = tv->tv_usec;
835
836         if (sec > ULONG_MAX / HZ)          /* check for overflow */
837                 return ULONG_MAX;
838
839         if (round_up)                      /* any usec below one HZ? */
840                 usec += 1000000 / HZ - 1;  /* pump it up */
841
842         jif = usec / (1000000 / HZ);
843
844         if (sec * HZ > ULONG_MAX - jif)    /* check for overflow */
845                 return ULONG_MAX;
846         else
847                 return jif + sec * HZ;
848 }
849
850
851 /**************************************************/
852 /* af_can debugging stuff                         */
853 /**************************************************/
854
855 #ifdef CONFIG_CAN_DEBUG_CORE
856
857 void can_debug_cframe(const char *msg, struct can_frame *cf, ...)
858 {
859         va_list ap;
860         int len;
861         int dlc, i;
862         char buf[1024];
863
864         len = sprintf(buf, KERN_DEBUG);
865         va_start(ap, cf);
866         len += snprintf(buf + len, sizeof(buf) - 64, msg, ap);
867         buf[len++] = ':';
868         buf[len++] = ' ';
869         va_end(ap);
870
871         if ((dlc = cf->can_dlc) > 8)
872                 dlc = 8;
873
874         if (cf->can_id & CAN_EFF_FLAG)
875                 len += sprintf(buf + len, "<%08X> [%X] ",
876                                cf->can_id & CAN_EFF_MASK, dlc);
877         else
878                 len += sprintf(buf + len, "<%03X> [%X] ",
879                                cf->can_id & CAN_SFF_MASK, dlc);
880
881         for (i = 0; i < dlc; i++)
882                 len += sprintf(buf + len, "%02X ", cf->data[i]);
883
884         if (cf->can_id & CAN_RTR_FLAG)
885                 len += sprintf(buf + len, "(RTR)");
886
887         buf[len++] = '\n';
888         buf[len]   = '\0';
889         printk(buf);
890 }
891
892 void can_debug_skb(struct sk_buff *skb)
893 {
894         int len, nbytes, i;
895         char buf[1024];
896
897         len = sprintf(buf,
898                       KERN_DEBUG "  skbuff at %p, dev: %d, proto: %04x\n"
899                       KERN_DEBUG "  users: %d, dataref: %d, nr_frags: %d, "
900                       "h,d,t,e,l: %p %+d %+d %+d, %d",
901                       skb, skb->dev ? skb->dev->ifindex : -1,
902                       ntohs(skb->protocol),
903                       atomic_read(&skb->users),
904                       atomic_read(&(skb_shinfo(skb)->dataref)),
905                       skb_shinfo(skb)->nr_frags,
906                       skb->head, skb->data - skb->head,
907                       skb->tail - skb->head, skb->end - skb->head, skb->len);
908         nbytes = skb->end - skb->head;
909         for (i = 0; i < nbytes; i++) {
910                 if (i % 16 == 0)
911                         len += sprintf(buf + len, "\n" KERN_DEBUG "  ");
912                 if (len < sizeof(buf) - 16) {
913                         len += sprintf(buf + len, " %02x", skb->head[i]);
914                 } else {
915                         len += sprintf(buf + len, "...");
916                         break;
917                 }
918         }
919         buf[len++] = '\n';
920         buf[len]   = '\0';
921         printk(buf);
922 }
923
924 EXPORT_SYMBOL(can_debug_cframe);
925 EXPORT_SYMBOL(can_debug_skb);
926
927 #endif
928
929 /**************************************************/
930 /* Exported symbols                               */
931 /**************************************************/
932 EXPORT_SYMBOL(can_proto_register);
933 EXPORT_SYMBOL(can_proto_unregister);
934 EXPORT_SYMBOL(can_rx_register);
935 EXPORT_SYMBOL(can_rx_unregister);
936 EXPORT_SYMBOL(can_dev_register);
937 EXPORT_SYMBOL(can_dev_unregister);
938 EXPORT_SYMBOL(can_send);
939 EXPORT_SYMBOL(timeval2jiffies);