]> rtime.felk.cvut.cz Git - socketcan-devel.git/blob - kernel/2.6/net/can/af_can.c
71fd406f87ccf97b06fad5cf1cff94b316a842b6
[socketcan-devel.git] / kernel / 2.6 / net / can / af_can.c
1 /*
2  * af_can.c - Protocol family CAN core module
3  *            (used by different CAN protocol modules)
4  *
5  * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
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, in which case the provisions of the
23  * GPL apply INSTEAD OF those given above.
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/module.h>
46 #include <linux/version.h>
47 #include <linux/init.h>
48 #include <linux/kmod.h>
49 #include <linux/slab.h>
50 #include <linux/list.h>
51 #include <linux/spinlock.h>
52 #include <linux/rcupdate.h>
53 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)
54 #include <linux/uaccess.h>
55 #else
56 #include <asm/uaccess.h>
57 #endif
58 #include <linux/net.h>
59 #include <linux/netdevice.h>
60 #include <linux/socket.h>
61 #include <linux/if_ether.h>
62 #include <linux/if_arp.h>
63 #include <linux/skbuff.h>
64 #include <linux/can.h>
65 #include <linux/can/core.h>
66 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
67 #include <net/net_namespace.h>
68 #endif
69 #include <net/sock.h>
70
71 #include "af_can.h"
72 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
73 #include "compat.h"
74 #endif
75
76 #include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
77 RCSID("$Id$");
78
79 static __initdata const char banner[] = KERN_INFO
80         "can: controller area network core (" CAN_VERSION_STRING ")\n";
81
82 MODULE_DESCRIPTION("Controller Area Network PF_CAN core");
83 MODULE_LICENSE("Dual BSD/GPL");
84 MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>, "
85               "Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
86
87 MODULE_ALIAS_NETPROTO(PF_CAN);
88
89 static int stats_timer __read_mostly = 1;
90 module_param(stats_timer, int, S_IRUGO);
91 MODULE_PARM_DESC(stats_timer, "enable timer for statistics (default:on)");
92
93 HLIST_HEAD(can_rx_dev_list);
94 static struct dev_rcv_lists can_rx_alldev_list;
95 static DEFINE_SPINLOCK(can_rcvlists_lock);
96
97 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20)
98 static struct kmem_cache *rcv_cache __read_mostly;
99 #else
100 static kmem_cache_t *rcv_cache;
101 #endif
102
103 /* table of registered CAN protocols */
104 static struct can_proto *proto_tab[CAN_NPROTO] __read_mostly;
105 static DEFINE_SPINLOCK(proto_tab_lock);
106
107 struct timer_list can_stattimer;   /* timer for statistics update */
108 struct s_stats    can_stats;       /* packet statistics */
109 struct s_pstats   can_pstats;      /* receive list statistics */
110
111 /*
112  * af_can socket functions
113  */
114
115 static int can_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
116 {
117         struct sock *sk = sock->sk;
118
119         switch (cmd) {
120
121         case SIOCGSTAMP:
122                 return sock_get_timestamp(sk, (struct timeval __user *)arg);
123
124         default:
125 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
126                 return -ENOIOCTLCMD;
127 #else
128                 return dev_ioctl(cmd, (void __user *)arg);
129 #endif
130         }
131 }
132
133 static void can_sock_destruct(struct sock *sk)
134 {
135         skb_queue_purge(&sk->sk_receive_queue);
136 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,12)
137         if (sk->sk_protinfo)
138                 kfree(sk->sk_protinfo);
139 #endif
140 }
141
142 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
143 static int can_create(struct net *net, struct socket *sock, int protocol)
144 #else
145 static int can_create(struct socket *sock, int protocol)
146 #endif
147 {
148         struct sock *sk;
149         struct can_proto *cp;
150         int err = 0;
151
152         sock->state = SS_UNCONNECTED;
153
154         if (protocol < 0 || protocol >= CAN_NPROTO)
155                 return -EINVAL;
156
157 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
158         if (net != &init_net)
159                 return -EAFNOSUPPORT;
160 #endif
161
162 #ifdef CONFIG_KMOD
163         /* try to load protocol module, when CONFIG_KMOD is defined */
164         if (!proto_tab[protocol]) {
165                 err = request_module("can-proto-%d", protocol);
166
167                 /*
168                  * In case of error we only print a message but don't
169                  * return the error code immediately.  Below we will
170                  * return -EPROTONOSUPPORT
171                  */
172                 if (err && printk_ratelimit())
173                         printk(KERN_ERR "can: request_module "
174                                "(can-proto-%d) failed.\n", protocol);
175         }
176 #endif
177
178         spin_lock(&proto_tab_lock);
179         cp = proto_tab[protocol];
180 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12)
181         if (cp && !try_module_get(cp->prot->owner))
182                 cp = NULL;
183 #else
184         if (cp && !try_module_get(cp->owner))
185                 cp = NULL;
186 #endif
187         spin_unlock(&proto_tab_lock);
188
189         /* check for available protocol and correct usage */
190
191         if (!cp)
192                 return -EPROTONOSUPPORT;
193
194         if (cp->type != sock->type) {
195                 err = -EPROTONOSUPPORT;
196                 goto errout;
197         }
198
199         if (cp->capability >= 0 && !capable(cp->capability)) {
200                 err = -EPERM;
201                 goto errout;
202         }
203
204         sock->ops = cp->ops;
205
206 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
207         sk = sk_alloc(net, PF_CAN, GFP_KERNEL, cp->prot);
208 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12)
209         sk = sk_alloc(PF_CAN, GFP_KERNEL, cp->prot, 1);
210 #else
211         sk = sk_alloc(PF_CAN, GFP_KERNEL, 1, 0);
212 #endif
213         if (!sk) {
214                 err = -ENOMEM;
215                 goto errout;
216         }
217
218 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,12)
219         if (cp->obj_size) {
220                 sk->sk_protinfo = kmalloc(cp->obj_size, GFP_KERNEL);
221                 if (!sk->sk_protinfo) {
222                         sk_free(sk);
223                         err = -ENOMEM;
224                         goto errout;
225                 }
226         }
227         sk_set_owner(sk, proto_tab[protocol]->owner);
228 #endif
229
230         sock_init_data(sock, sk);
231         sk->sk_destruct = can_sock_destruct;
232
233 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12)
234         if (sk->sk_prot->init)
235                 err = sk->sk_prot->init(sk);
236 #else
237         if (cp->init)
238                 err = cp->init(sk);
239 #endif
240
241         if (err) {
242                 /* release sk on errors */
243                 sock_orphan(sk);
244                 sock_put(sk);
245         }
246
247  errout:
248 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12)
249         module_put(cp->prot->owner);
250 #else
251         module_put(cp->owner);
252 #endif
253         return err;
254 }
255
256 /*
257  * af_can tx path
258  */
259
260 /**
261  * can_send - transmit a CAN frame (optional with local loopback)
262  * @skb: pointer to socket buffer with CAN frame in data section
263  * @loop: loopback for listeners on local CAN sockets (recommended default!)
264  *
265  * Return:
266  *  0 on success
267  *  -ENETDOWN when the selected interface is down
268  *  -ENOBUFS on full driver queue (see net_xmit_errno())
269  *  -ENOMEM when local loopback failed at calling skb_clone()
270  *  -EPERM when trying to send on a non-CAN interface
271  *  -EINVAL when the skb->data does not contain a valid CAN frame
272  */
273 int can_send(struct sk_buff *skb, int loop)
274 {
275         struct sk_buff *newskb = NULL;
276         struct can_frame *cf = (struct can_frame *)skb->data;
277         int err;
278
279         if (skb->len != sizeof(struct can_frame) || cf->can_dlc > 8) {
280                 kfree_skb(skb);
281                 return -EINVAL;
282         }
283
284         if (skb->dev->type != ARPHRD_CAN) {
285                 kfree_skb(skb);
286                 return -EPERM;
287         }
288
289         if (!(skb->dev->flags & IFF_UP)) {
290                 kfree_skb(skb);
291                 return -ENETDOWN;
292         }
293
294         skb->protocol = htons(ETH_P_CAN);
295 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
296         skb_reset_network_header(skb);
297         skb_reset_transport_header(skb);
298 #else
299         skb->nh.raw = skb->data;
300         skb->h.raw  = skb->data;
301 #endif
302
303         if (loop) {
304                 /* local loopback of sent CAN frames */
305
306                 /* indication for the CAN driver: do loopback */
307                 skb->pkt_type = PACKET_LOOPBACK;
308
309                 /*
310                  * The reference to the originating sock may be required
311                  * by the receiving socket to check whether the frame is
312                  * its own. Example: can_raw sockopt CAN_RAW_RECV_OWN_MSGS
313                  * Therefore we have to ensure that skb->sk remains the
314                  * reference to the originating sock by restoring skb->sk
315                  * after each skb_clone() or skb_orphan() usage.
316                  */
317
318 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
319 #define IFF_ECHO IFF_LOOPBACK
320 #endif
321                 if (!(skb->dev->flags & IFF_ECHO)) {
322                         /*
323                          * If the interface is not capable to do loopback
324                          * itself, we do it here.
325                          */
326                         newskb = skb_clone(skb, GFP_ATOMIC);
327                         if (!newskb) {
328                                 kfree_skb(skb);
329                                 return -ENOMEM;
330                         }
331
332                         newskb->sk = skb->sk;
333                         newskb->ip_summed = CHECKSUM_UNNECESSARY;
334                         newskb->pkt_type = PACKET_BROADCAST;
335                 }
336         } else {
337                 /* indication for the CAN driver: no loopback required */
338                 skb->pkt_type = PACKET_HOST;
339         }
340
341         /* send to netdevice */
342         err = dev_queue_xmit(skb);
343         if (err > 0)
344                 err = net_xmit_errno(err);
345
346         if (err) {
347                 if (newskb)
348                         kfree_skb(newskb);
349                 return err;
350         }
351
352         if (newskb)
353                 netif_rx(newskb);
354
355         /* update statistics */
356         can_stats.tx_frames++;
357         can_stats.tx_frames_delta++;
358
359         return 0;
360 }
361 EXPORT_SYMBOL(can_send);
362
363 /*
364  * af_can rx path
365  */
366
367 static struct dev_rcv_lists *find_dev_rcv_lists(struct net_device *dev)
368 {
369         struct dev_rcv_lists *d = NULL;
370         struct hlist_node *n;
371
372         /*
373          * find receive list for this device
374          *
375          * The hlist_for_each_entry*() macros curse through the list
376          * using the pointer variable n and set d to the containing
377          * struct in each list iteration.  Therefore, after list
378          * iteration, d is unmodified when the list is empty, and it
379          * points to last list element, when the list is non-empty
380          * but no match in the loop body is found.  I.e. d is *not*
381          * NULL when no match is found.  We can, however, use the
382          * cursor variable n to decide if a match was found.
383          */
384
385         hlist_for_each_entry_rcu(d, n, &can_rx_dev_list, list) {
386                 if (d->dev == dev)
387                         break;
388         }
389
390         return n ? d : NULL;
391 }
392
393 static struct hlist_head *find_rcv_list(canid_t *can_id, canid_t *mask,
394                                         struct dev_rcv_lists *d)
395 {
396         canid_t inv = *can_id & CAN_INV_FILTER; /* save flag before masking */
397
398         /* filter error frames */
399         if (*mask & CAN_ERR_FLAG) {
400                 /* clear CAN_ERR_FLAG in list entry */
401                 *mask &= CAN_ERR_MASK;
402                 return &d->rx[RX_ERR];
403         }
404
405         /* ensure valid values in can_mask */
406         if (*mask & CAN_EFF_FLAG)
407                 *mask &= (CAN_EFF_MASK | CAN_EFF_FLAG | CAN_RTR_FLAG);
408         else
409                 *mask &= (CAN_SFF_MASK | CAN_RTR_FLAG);
410
411         /* reduce condition testing at receive time */
412         *can_id &= *mask;
413
414         /* inverse can_id/can_mask filter */
415         if (inv)
416                 return &d->rx[RX_INV];
417
418         /* mask == 0 => no condition testing at receive time */
419         if (!(*mask))
420                 return &d->rx[RX_ALL];
421
422         /* use extra filterset for the subscription of exactly *ONE* can_id */
423         if (*can_id & CAN_EFF_FLAG) {
424                 if (*mask == (CAN_EFF_MASK | CAN_EFF_FLAG)) {
425                         /* RFC: a use-case for hash-tables in the future? */
426                         return &d->rx[RX_EFF];
427                 }
428         } else {
429                 if (*mask == CAN_SFF_MASK)
430                         return &d->rx_sff[*can_id];
431         }
432
433         /* default: filter via can_id/can_mask */
434         return &d->rx[RX_FIL];
435 }
436
437 /**
438  * can_rx_register - subscribe CAN frames from a specific interface
439  * @dev: pointer to netdevice (NULL => subcribe from 'all' CAN devices list)
440  * @can_id: CAN identifier (see description)
441  * @mask: CAN mask (see description)
442  * @func: callback function on filter match
443  * @data: returned parameter for callback function
444  * @ident: string for calling module indentification
445  *
446  * Description:
447  *  Invokes the callback function with the received sk_buff and the given
448  *  parameter 'data' on a matching receive filter. A filter matches, when
449  *
450  *          <received_can_id> & mask == can_id & mask
451  *
452  *  The filter can be inverted (CAN_INV_FILTER bit set in can_id) or it can
453  *  filter for error frames (CAN_ERR_FLAG bit set in mask).
454  *
455  * Return:
456  *  0 on success
457  *  -ENOMEM on missing cache mem to create subscription entry
458  *  -ENODEV unknown device
459  */
460 int can_rx_register(struct net_device *dev, canid_t can_id, canid_t mask,
461                     void (*func)(struct sk_buff *, void *), void *data,
462                     char *ident)
463 {
464         struct receiver *r;
465         struct hlist_head *rl;
466         struct dev_rcv_lists *d;
467         int err = 0;
468
469         /* insert new receiver  (dev,canid,mask) -> (func,data) */
470
471         r = kmem_cache_alloc(rcv_cache, GFP_KERNEL);
472         if (!r)
473                 return -ENOMEM;
474
475         spin_lock(&can_rcvlists_lock);
476
477         d = find_dev_rcv_lists(dev);
478         if (d) {
479                 rl = find_rcv_list(&can_id, &mask, d);
480
481                 r->can_id  = can_id;
482                 r->mask    = mask;
483                 r->matches = 0;
484                 r->func    = func;
485                 r->data    = data;
486                 r->ident   = ident;
487
488                 hlist_add_head_rcu(&r->list, rl);
489                 d->entries++;
490
491                 can_pstats.rcv_entries++;
492                 if (can_pstats.rcv_entries_max < can_pstats.rcv_entries)
493                         can_pstats.rcv_entries_max = can_pstats.rcv_entries;
494         } else {
495                 kmem_cache_free(rcv_cache, r);
496                 err = -ENODEV;
497         }
498
499         spin_unlock(&can_rcvlists_lock);
500
501         return err;
502 }
503 EXPORT_SYMBOL(can_rx_register);
504
505 /*
506  * can_rx_delete_device - rcu callback for dev_rcv_lists structure removal
507  */
508 static void can_rx_delete_device(struct rcu_head *rp)
509 {
510         struct dev_rcv_lists *d = container_of(rp, struct dev_rcv_lists, rcu);
511
512         kfree(d);
513 }
514
515 /*
516  * can_rx_delete_receiver - rcu callback for single receiver entry removal
517  */
518 static void can_rx_delete_receiver(struct rcu_head *rp)
519 {
520         struct receiver *r = container_of(rp, struct receiver, rcu);
521
522         kmem_cache_free(rcv_cache, r);
523 }
524
525 /**
526  * can_rx_unregister - unsubscribe CAN frames from a specific interface
527  * @dev: pointer to netdevice (NULL => unsubcribe from 'all' CAN devices list)
528  * @can_id: CAN identifier
529  * @mask: CAN mask
530  * @func: callback function on filter match
531  * @data: returned parameter for callback function
532  *
533  * Description:
534  *  Removes subscription entry depending on given (subscription) values.
535  */
536 void can_rx_unregister(struct net_device *dev, canid_t can_id, canid_t mask,
537                        void (*func)(struct sk_buff *, void *), void *data)
538 {
539         struct receiver *r = NULL;
540         struct hlist_head *rl;
541         struct hlist_node *next;
542         struct dev_rcv_lists *d;
543
544         spin_lock(&can_rcvlists_lock);
545
546         d = find_dev_rcv_lists(dev);
547         if (!d) {
548                 printk(KERN_ERR "BUG: receive list not found for "
549                        "dev %s, id %03X, mask %03X\n",
550                        DNAME(dev), can_id, mask);
551                 goto out;
552         }
553
554         rl = find_rcv_list(&can_id, &mask, d);
555
556         /*
557          * Search the receiver list for the item to delete.  This should
558          * exist, since no receiver may be unregistered that hasn't
559          * been registered before.
560          */
561
562         hlist_for_each_entry_rcu(r, next, rl, list) {
563                 if (r->can_id == can_id && r->mask == mask
564                     && r->func == func && r->data == data)
565                         break;
566         }
567
568         /*
569          * Check for bugs in CAN protocol implementations:
570          * If no matching list item was found, the list cursor variable next
571          * will be NULL, while r will point to the last item of the list.
572          */
573
574         if (!next) {
575                 printk(KERN_ERR "BUG: receive list entry not found for "
576                        "dev %s, id %03X, mask %03X\n",
577                        DNAME(dev), can_id, mask);
578                 r = NULL;
579                 d = NULL;
580                 goto out;
581         }
582
583         hlist_del_rcu(&r->list);
584         d->entries--;
585
586         if (can_pstats.rcv_entries > 0)
587                 can_pstats.rcv_entries--;
588
589         /* remove device structure requested by NETDEV_UNREGISTER */
590         if (d->remove_on_zero_entries && !d->entries)
591                 hlist_del_rcu(&d->list);
592         else
593                 d = NULL;
594
595  out:
596         spin_unlock(&can_rcvlists_lock);
597
598         /* schedule the receiver item for deletion */
599         if (r)
600                 call_rcu(&r->rcu, can_rx_delete_receiver);
601
602         /* schedule the device structure for deletion */
603         if (d)
604                 call_rcu(&d->rcu, can_rx_delete_device);
605 }
606 EXPORT_SYMBOL(can_rx_unregister);
607
608 static inline void deliver(struct sk_buff *skb, struct receiver *r)
609 {
610         struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
611
612         if (clone) {
613                 clone->sk = skb->sk;
614                 r->func(clone, r->data);
615                 r->matches++;
616         }
617 }
618
619 static int can_rcv_filter(struct dev_rcv_lists *d, struct sk_buff *skb)
620 {
621         struct receiver *r;
622         struct hlist_node *n;
623         int matches = 0;
624         struct can_frame *cf = (struct can_frame *)skb->data;
625         canid_t can_id = cf->can_id;
626
627         if (d->entries == 0)
628                 return 0;
629
630         if (can_id & CAN_ERR_FLAG) {
631                 /* check for error frame entries only */
632                 hlist_for_each_entry_rcu(r, n, &d->rx[RX_ERR], list) {
633                         if (can_id & r->mask) {
634                                 deliver(skb, r);
635                                 matches++;
636                         }
637                 }
638                 return matches;
639         }
640
641         /* check for unfiltered entries */
642         hlist_for_each_entry_rcu(r, n, &d->rx[RX_ALL], list) {
643                 deliver(skb, r);
644                 matches++;
645         }
646
647         /* check for can_id/mask entries */
648         hlist_for_each_entry_rcu(r, n, &d->rx[RX_FIL], list) {
649                 if ((can_id & r->mask) == r->can_id) {
650                         deliver(skb, r);
651                         matches++;
652                 }
653         }
654
655         /* check for inverted can_id/mask entries */
656         hlist_for_each_entry_rcu(r, n, &d->rx[RX_INV], list) {
657                 if ((can_id & r->mask) != r->can_id) {
658                         deliver(skb, r);
659                         matches++;
660                 }
661         }
662
663         /* check CAN_ID specific entries */
664         if (can_id & CAN_EFF_FLAG) {
665                 hlist_for_each_entry_rcu(r, n, &d->rx[RX_EFF], list) {
666                         if (r->can_id == can_id) {
667                                 deliver(skb, r);
668                                 matches++;
669                         }
670                 }
671         } else {
672                 can_id &= CAN_SFF_MASK;
673                 hlist_for_each_entry_rcu(r, n, &d->rx_sff[can_id], list) {
674                         deliver(skb, r);
675                         matches++;
676                 }
677         }
678
679         return matches;
680 }
681
682 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
683 static int can_rcv(struct sk_buff *skb, struct net_device *dev,
684                    struct packet_type *pt, struct net_device *orig_dev)
685 #else
686 static int can_rcv(struct sk_buff *skb, struct net_device *dev,
687                    struct packet_type *pt)
688 #endif
689 {
690         struct dev_rcv_lists *d;
691         struct can_frame *cf = (struct can_frame *)skb->data;
692         int matches;
693
694 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
695         if (dev->type != ARPHRD_CAN || !net_eq(dev_net(dev), &init_net)) {
696 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
697         if (dev->type != ARPHRD_CAN || dev->nd_net != &init_net) {
698 #else
699         if (dev->type != ARPHRD_CAN) {
700 #endif
701                 kfree_skb(skb);
702                 return 0;
703         }
704
705         BUG_ON(skb->len != sizeof(struct can_frame) || cf->can_dlc > 8);
706
707         /* update statistics */
708         can_stats.rx_frames++;
709         can_stats.rx_frames_delta++;
710
711         rcu_read_lock();
712
713         /* deliver the packet to sockets listening on all devices */
714         matches = can_rcv_filter(&can_rx_alldev_list, skb);
715
716         /* find receive list for this device */
717         d = find_dev_rcv_lists(dev);
718         if (d)
719                 matches += can_rcv_filter(d, skb);
720
721         rcu_read_unlock();
722
723         /* free the skbuff allocated by the netdevice driver */
724         kfree_skb(skb);
725
726         if (matches > 0) {
727                 can_stats.matches++;
728                 can_stats.matches_delta++;
729         }
730
731         return 0;
732 }
733
734 /*
735  * af_can protocol functions
736  */
737
738 /**
739  * can_proto_register - register CAN transport protocol
740  * @cp: pointer to CAN protocol structure
741  *
742  * Return:
743  *  0 on success
744  *  -EINVAL invalid (out of range) protocol number
745  *  -EBUSY  protocol already in use
746  *  -ENOBUF if proto_register() fails
747  */
748 int can_proto_register(struct can_proto *cp)
749 {
750         int proto = cp->protocol;
751         int err = 0;
752
753         if (proto < 0 || proto >= CAN_NPROTO) {
754                 printk(KERN_ERR "can: protocol number %d out of range\n",
755                        proto);
756                 return -EINVAL;
757         }
758
759 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12)
760         err = proto_register(cp->prot, 0);
761         if (err < 0)
762                 return err;
763 #endif
764
765         spin_lock(&proto_tab_lock);
766         if (proto_tab[proto]) {
767                 printk(KERN_ERR "can: protocol %d already registered\n",
768                        proto);
769                 err = -EBUSY;
770         } else {
771                 proto_tab[proto] = cp;
772
773                 /* use generic ioctl function if not defined by module */
774                 if (!cp->ops->ioctl)
775                         cp->ops->ioctl = can_ioctl;
776         }
777         spin_unlock(&proto_tab_lock);
778
779 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12)
780         if (err < 0)
781                 proto_unregister(cp->prot);
782 #endif
783
784         return err;
785 }
786 EXPORT_SYMBOL(can_proto_register);
787
788 /**
789  * can_proto_unregister - unregister CAN transport protocol
790  * @cp: pointer to CAN protocol structure
791  */
792 void can_proto_unregister(struct can_proto *cp)
793 {
794         int proto = cp->protocol;
795
796         spin_lock(&proto_tab_lock);
797         if (!proto_tab[proto]) {
798                 printk(KERN_ERR "BUG: can: protocol %d is not registered\n",
799                        proto);
800         }
801         proto_tab[proto] = NULL;
802         spin_unlock(&proto_tab_lock);
803
804 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12)
805         proto_unregister(cp->prot);
806 #endif
807 }
808 EXPORT_SYMBOL(can_proto_unregister);
809
810 /*
811  * af_can notifier to create/remove CAN netdevice specific structs
812  */
813 static int can_notifier(struct notifier_block *nb, unsigned long msg,
814                         void *data)
815 {
816         struct net_device *dev = (struct net_device *)data;
817         struct dev_rcv_lists *d;
818
819 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
820         if (!net_eq(dev_net(dev), &init_net))
821                 return NOTIFY_DONE;
822 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
823         if (dev->nd_net != &init_net)
824                 return NOTIFY_DONE;
825 #endif
826
827         if (dev->type != ARPHRD_CAN)
828                 return NOTIFY_DONE;
829
830         switch (msg) {
831
832         case NETDEV_REGISTER:
833
834                 /*
835                  * create new dev_rcv_lists for this device
836                  *
837                  * N.B. zeroing the struct is the correct initialization
838                  * for the embedded hlist_head structs.
839                  * Another list type, e.g. list_head, would require
840                  * explicit initialization.
841                  */
842
843                 d = kzalloc(sizeof(*d), GFP_KERNEL);
844                 if (!d) {
845                         printk(KERN_ERR
846                                "can: allocation of receive list failed\n");
847                         return NOTIFY_DONE;
848                 }
849                 d->dev = dev;
850
851                 spin_lock(&can_rcvlists_lock);
852                 hlist_add_head_rcu(&d->list, &can_rx_dev_list);
853                 spin_unlock(&can_rcvlists_lock);
854
855                 break;
856
857         case NETDEV_UNREGISTER:
858                 spin_lock(&can_rcvlists_lock);
859
860                 d = find_dev_rcv_lists(dev);
861                 if (d) {
862                         if (d->entries) {
863                                 d->remove_on_zero_entries = 1;
864                                 d = NULL;
865                         } else
866                                 hlist_del_rcu(&d->list);
867                 } else
868                         printk(KERN_ERR "can: notifier: receive list not "
869                                "found for dev %s\n", dev->name);
870
871                 spin_unlock(&can_rcvlists_lock);
872
873                 if (d)
874                         call_rcu(&d->rcu, can_rx_delete_device);
875
876                 break;
877         }
878
879         return NOTIFY_DONE;
880 }
881
882 /*
883  * af_can module init/exit functions
884  */
885
886 static struct packet_type can_packet __read_mostly = {
887         .type = __constant_htons(ETH_P_CAN),
888         .dev  = NULL,
889         .func = can_rcv,
890 };
891
892 static struct net_proto_family can_family_ops __read_mostly = {
893         .family = PF_CAN,
894         .create = can_create,
895         .owner  = THIS_MODULE,
896 };
897
898 /* notifier block for netdevice event */
899 static struct notifier_block can_netdev_notifier __read_mostly = {
900         .notifier_call = can_notifier,
901 };
902
903 static __init int can_init(void)
904 {
905         printk(banner);
906
907 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
908         rcv_cache = kmem_cache_create("can_receiver", sizeof(struct receiver),
909                                       0, 0, NULL);
910 #else
911         rcv_cache = kmem_cache_create("can_receiver", sizeof(struct receiver),
912                                       0, 0, NULL, NULL);
913 #endif
914         if (!rcv_cache)
915                 return -ENOMEM;
916
917         /*
918          * Insert can_rx_alldev_list for reception on all devices.
919          * This struct is zero initialized which is correct for the
920          * embedded hlist heads, the dev pointer, and the entries counter.
921          */
922
923         spin_lock(&can_rcvlists_lock);
924         hlist_add_head_rcu(&can_rx_alldev_list.list, &can_rx_dev_list);
925         spin_unlock(&can_rcvlists_lock);
926
927         if (stats_timer) {
928                 /* the statistics are updated every second (timer triggered) */
929                 setup_timer(&can_stattimer, can_stat_update, 0);
930                 mod_timer(&can_stattimer, round_jiffies(jiffies + HZ));
931         } else
932                 can_stattimer.function = NULL;
933
934         can_init_proc();
935
936         /* protocol register */
937         sock_register(&can_family_ops);
938         register_netdevice_notifier(&can_netdev_notifier);
939         dev_add_pack(&can_packet);
940
941         return 0;
942 }
943
944 static __exit void can_exit(void)
945 {
946         struct dev_rcv_lists *d;
947         struct hlist_node *n, *next;
948
949         if (stats_timer)
950                 del_timer(&can_stattimer);
951
952         can_remove_proc();
953
954         /* protocol unregister */
955         dev_remove_pack(&can_packet);
956         unregister_netdevice_notifier(&can_netdev_notifier);
957         sock_unregister(PF_CAN);
958
959         /* remove can_rx_dev_list */
960         spin_lock(&can_rcvlists_lock);
961         hlist_del(&can_rx_alldev_list.list);
962         hlist_for_each_entry_safe(d, n, next, &can_rx_dev_list, list) {
963                 hlist_del(&d->list);
964                 kfree(d);
965         }
966         spin_unlock(&can_rcvlists_lock);
967
968         kmem_cache_destroy(rcv_cache);
969 }
970
971 module_init(can_init);
972 module_exit(can_exit);