blob: 6fea0750662b847d048587e423618b8e4fa8b8b8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * SNAP data link layer. Derived from 802.2
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Alan Cox <alan@lxorguk.ukuu.org.uk>,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * from the 802.2 layer by Greg Page.
6 * Merged in additions from Greg Page's psnap.c.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#include <linux/module.h>
15#include <linux/netdevice.h>
16#include <linux/skbuff.h>
17#include <net/datalink.h>
18#include <net/llc.h>
19#include <net/psnap.h>
20#include <linux/mm.h>
21#include <linux/in.h>
22#include <linux/init.h>
Franck Bui-Huu82524742008-05-12 21:21:05 +020023#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25static LIST_HEAD(snap_list);
26static DEFINE_SPINLOCK(snap_lock);
27static struct llc_sap *snap_sap;
28
29/*
30 * Find a snap client by matching the 5 bytes.
31 */
Stephen Hemminger7ca98fa2009-03-20 05:43:14 +000032static struct datalink_proto *find_snap_client(const unsigned char *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 struct datalink_proto *proto = NULL, *p;
35
Paul E. McKenney696adfe2008-07-25 01:45:34 -070036 list_for_each_entry_rcu(p, &snap_list, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 if (!memcmp(p->type, desc, 5)) {
38 proto = p;
39 break;
40 }
41 }
42 return proto;
43}
44
45/*
46 * A SNAP packet has arrived
47 */
48static int snap_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -070049 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 int rc = 1;
52 struct datalink_proto *proto;
53 static struct packet_type snap_packet_type = {
Harvey Harrison09640e62009-02-01 00:45:17 -080054 .type = cpu_to_be16(ETH_P_SNAP),
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 };
56
Herbert Xud92a7db2007-08-21 00:06:37 -070057 if (unlikely(!pskb_may_pull(skb, 5)))
58 goto drop;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 rcu_read_lock();
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -070061 proto = find_snap_client(skb_transport_header(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (proto) {
63 /* Pass the frame on. */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -070064 skb->transport_header += 5;
Herbert Xucbb042f2006-03-20 22:43:56 -080065 skb_pull_rcsum(skb, 5);
David S. Millerf2ccd8f2005-08-09 19:34:12 -070066 rc = proto->rcvfunc(skb, dev, &snap_packet_type, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 rcu_read_unlock();
Herbert Xud92a7db2007-08-21 00:06:37 -070069
70 if (unlikely(!proto))
71 goto drop;
72
73out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return rc;
Herbert Xud92a7db2007-08-21 00:06:37 -070075
76drop:
77 kfree_skb(skb);
78 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81/*
82 * Put a SNAP header on a frame and pass to 802.2
83 */
84static int snap_request(struct datalink_proto *dl,
85 struct sk_buff *skb, u8 *dest)
86{
87 memcpy(skb_push(skb, 5), dl->type, 5);
88 llc_build_and_send_ui_pkt(snap_sap, skb, dest, snap_sap->laddr.lsap);
89 return 0;
90}
91
92/*
93 * Set up the SNAP layer
94 */
95EXPORT_SYMBOL(register_snap_client);
96EXPORT_SYMBOL(unregister_snap_client);
97
Stephen Hemminger0117cfa2009-02-22 00:03:19 -080098static const char snap_err_msg[] __initconst =
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 KERN_CRIT "SNAP - unable to register with 802.2\n";
100
101static int __init snap_init(void)
102{
103 snap_sap = llc_sap_open(0xAA, snap_rcv);
Stephen Hemminger0117cfa2009-02-22 00:03:19 -0800104 if (!snap_sap) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 printk(snap_err_msg);
Stephen Hemminger0117cfa2009-02-22 00:03:19 -0800106 return -EBUSY;
107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 return 0;
110}
111
112module_init(snap_init);
113
114static void __exit snap_exit(void)
115{
Arnaldo Carvalho de Melo6e2144b2005-09-22 04:43:05 -0300116 llc_sap_put(snap_sap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119module_exit(snap_exit);
120
121
122/*
123 * Register SNAP clients. We don't yet use this for IP.
124 */
Stephen Hemminger7ca98fa2009-03-20 05:43:14 +0000125struct datalink_proto *register_snap_client(const unsigned char *desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 int (*rcvfunc)(struct sk_buff *,
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900127 struct net_device *,
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700128 struct packet_type *,
129 struct net_device *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 struct datalink_proto *proto = NULL;
132
133 spin_lock_bh(&snap_lock);
134
135 if (find_snap_client(desc))
136 goto out;
137
138 proto = kmalloc(sizeof(*proto), GFP_ATOMIC);
139 if (proto) {
Stephen Hemminger7ca98fa2009-03-20 05:43:14 +0000140 memcpy(proto->type, desc, 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 proto->rcvfunc = rcvfunc;
142 proto->header_length = 5 + 3; /* snap + 802.2 */
143 proto->request = snap_request;
144 list_add_rcu(&proto->node, &snap_list);
145 }
146out:
147 spin_unlock_bh(&snap_lock);
148
149 synchronize_net();
150 return proto;
151}
152
153/*
154 * Unregister SNAP clients. Protocols no longer want to play with us ...
155 */
156void unregister_snap_client(struct datalink_proto *proto)
157{
158 spin_lock_bh(&snap_lock);
159 list_del_rcu(&proto->node);
160 spin_unlock_bh(&snap_lock);
161
162 synchronize_net();
163
164 kfree(proto);
165}
166
167MODULE_LICENSE("GPL");