Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * SNAP data link layer. Derived from 802.2 |
| 3 | * |
Alan Cox | 113aa83 | 2008-10-13 19:01:08 -0700 | [diff] [blame] | 4 | * Alan Cox <alan@lxorguk.ukuu.org.uk>, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * 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-Huu | 8252474 | 2008-05-12 21:21:05 +0200 | [diff] [blame] | 23 | #include <linux/rculist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | static LIST_HEAD(snap_list); |
| 26 | static DEFINE_SPINLOCK(snap_lock); |
| 27 | static struct llc_sap *snap_sap; |
| 28 | |
| 29 | /* |
| 30 | * Find a snap client by matching the 5 bytes. |
| 31 | */ |
Stephen Hemminger | 7ca98fa | 2009-03-20 05:43:14 +0000 | [diff] [blame] | 32 | static struct datalink_proto *find_snap_client(const unsigned char *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct datalink_proto *proto = NULL, *p; |
| 35 | |
Paul E. McKenney | 696adfe | 2008-07-25 01:45:34 -0700 | [diff] [blame] | 36 | list_for_each_entry_rcu(p, &snap_list, node) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | 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 | */ |
| 48 | static int snap_rcv(struct sk_buff *skb, struct net_device *dev, |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 49 | struct packet_type *pt, struct net_device *orig_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
| 51 | int rc = 1; |
| 52 | struct datalink_proto *proto; |
| 53 | static struct packet_type snap_packet_type = { |
Harvey Harrison | 09640e6 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 54 | .type = cpu_to_be16(ETH_P_SNAP), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
Herbert Xu | d92a7db | 2007-08-21 00:06:37 -0700 | [diff] [blame] | 57 | if (unlikely(!pskb_may_pull(skb, 5))) |
| 58 | goto drop; |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | rcu_read_lock(); |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 61 | proto = find_snap_client(skb_transport_header(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | if (proto) { |
| 63 | /* Pass the frame on. */ |
Arnaldo Carvalho de Melo | b0e380b | 2007-04-10 21:21:55 -0700 | [diff] [blame] | 64 | skb->transport_header += 5; |
Herbert Xu | cbb042f | 2006-03-20 22:43:56 -0800 | [diff] [blame] | 65 | skb_pull_rcsum(skb, 5); |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 66 | rc = proto->rcvfunc(skb, dev, &snap_packet_type, orig_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | rcu_read_unlock(); |
Herbert Xu | d92a7db | 2007-08-21 00:06:37 -0700 | [diff] [blame] | 69 | |
| 70 | if (unlikely(!proto)) |
| 71 | goto drop; |
| 72 | |
| 73 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | return rc; |
Herbert Xu | d92a7db | 2007-08-21 00:06:37 -0700 | [diff] [blame] | 75 | |
| 76 | drop: |
| 77 | kfree_skb(skb); |
| 78 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | /* |
| 82 | * Put a SNAP header on a frame and pass to 802.2 |
| 83 | */ |
| 84 | static 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 | */ |
| 95 | EXPORT_SYMBOL(register_snap_client); |
| 96 | EXPORT_SYMBOL(unregister_snap_client); |
| 97 | |
Stephen Hemminger | 0117cfa | 2009-02-22 00:03:19 -0800 | [diff] [blame] | 98 | static const char snap_err_msg[] __initconst = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | KERN_CRIT "SNAP - unable to register with 802.2\n"; |
| 100 | |
| 101 | static int __init snap_init(void) |
| 102 | { |
| 103 | snap_sap = llc_sap_open(0xAA, snap_rcv); |
Stephen Hemminger | 0117cfa | 2009-02-22 00:03:19 -0800 | [diff] [blame] | 104 | if (!snap_sap) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | printk(snap_err_msg); |
Stephen Hemminger | 0117cfa | 2009-02-22 00:03:19 -0800 | [diff] [blame] | 106 | return -EBUSY; |
| 107 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | module_init(snap_init); |
| 113 | |
| 114 | static void __exit snap_exit(void) |
| 115 | { |
Arnaldo Carvalho de Melo | 6e2144b | 2005-09-22 04:43:05 -0300 | [diff] [blame] | 116 | llc_sap_put(snap_sap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | module_exit(snap_exit); |
| 120 | |
| 121 | |
| 122 | /* |
| 123 | * Register SNAP clients. We don't yet use this for IP. |
| 124 | */ |
Stephen Hemminger | 7ca98fa | 2009-03-20 05:43:14 +0000 | [diff] [blame] | 125 | struct datalink_proto *register_snap_client(const unsigned char *desc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | int (*rcvfunc)(struct sk_buff *, |
YOSHIFUJI Hideaki | 9afa094 | 2007-02-09 23:24:24 +0900 | [diff] [blame] | 127 | struct net_device *, |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 128 | struct packet_type *, |
| 129 | struct net_device *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
| 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 Hemminger | 7ca98fa | 2009-03-20 05:43:14 +0000 | [diff] [blame] | 140 | memcpy(proto->type, desc, 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | 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 | } |
| 146 | out: |
| 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 | */ |
| 156 | void 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 | |
| 167 | MODULE_LICENSE("GPL"); |