Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic HDLC support routines for Linux |
| 3 | * |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 4 | * Copyright (C) 1999 - 2008 Krzysztof Halasa <khc@pm.waw.pl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of version 2 of the GNU General Public License |
| 8 | * as published by the Free Software Foundation. |
| 9 | * |
| 10 | * Currently supported: |
| 11 | * * raw IP-in-HDLC |
| 12 | * * Cisco HDLC |
| 13 | * * Frame Relay with ANSI or CCITT LMI (both user and network side) |
| 14 | * * PPP |
| 15 | * * X.25 |
| 16 | * |
| 17 | * Use sethdlc utility to set line parameters, protocol and PVCs |
| 18 | * |
| 19 | * How does it work: |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 20 | * - proto->open(), close(), start(), stop() calls are serialized. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | * The order is: open, [ start, stop ... ] close ... |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 22 | * - proto->start() and stop() are called with spin_lock_irq held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/poll.h> |
| 29 | #include <linux/errno.h> |
| 30 | #include <linux/if_arp.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/skbuff.h> |
| 33 | #include <linux/pkt_sched.h> |
| 34 | #include <linux/inetdevice.h> |
| 35 | #include <linux/lapb.h> |
| 36 | #include <linux/rtnetlink.h> |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 37 | #include <linux/notifier.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/hdlc.h> |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 39 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 42 | static const char* version = "HDLC support module revision 1.22"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | #undef DEBUG_LINK |
| 45 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 46 | static struct hdlc_proto *first_proto = NULL; |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | static int hdlc_change_mtu(struct net_device *dev, int new_mtu) |
| 50 | { |
| 51 | if ((new_mtu < 68) || (new_mtu > HDLC_MAX_MTU)) |
| 52 | return -EINVAL; |
| 53 | dev->mtu = new_mtu; |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | |
| 58 | |
| 59 | static struct net_device_stats *hdlc_get_stats(struct net_device *dev) |
| 60 | { |
| 61 | return hdlc_stats(dev); |
| 62 | } |
| 63 | |
| 64 | |
| 65 | |
| 66 | static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev, |
David S. Miller | f2ccd8f | 2005-08-09 19:34:12 -0700 | [diff] [blame] | 67 | struct packet_type *p, struct net_device *orig_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 69 | struct hdlc_device *hdlc = dev_to_hdlc(dev); |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 70 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 71 | if (dev_net(dev) != &init_net) { |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 72 | kfree_skb(skb); |
| 73 | return 0; |
| 74 | } |
| 75 | |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 76 | BUG_ON(!hdlc->proto->netif_rx); |
| 77 | return hdlc->proto->netif_rx(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | |
| 81 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 82 | static inline void hdlc_proto_start(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
| 84 | hdlc_device *hdlc = dev_to_hdlc(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 85 | if (hdlc->proto->start) |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 86 | hdlc->proto->start(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | |
| 90 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 91 | static inline void hdlc_proto_stop(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
| 93 | hdlc_device *hdlc = dev_to_hdlc(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 94 | if (hdlc->proto->stop) |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 95 | hdlc->proto->stop(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | |
| 99 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 100 | static int hdlc_device_event(struct notifier_block *this, unsigned long event, |
| 101 | void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 103 | struct net_device *dev = ptr; |
| 104 | hdlc_device *hdlc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | unsigned long flags; |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 106 | int on; |
| 107 | |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 108 | if (dev_net(dev) != &init_net) |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 109 | return NOTIFY_DONE; |
| 110 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 111 | if (dev->get_stats != hdlc_get_stats) |
| 112 | return NOTIFY_DONE; /* not an HDLC device */ |
| 113 | |
| 114 | if (event != NETDEV_CHANGE) |
| 115 | return NOTIFY_DONE; /* Only interrested in carrier changes */ |
| 116 | |
| 117 | on = netif_carrier_ok(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | #ifdef DEBUG_LINK |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 120 | printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n", |
| 121 | dev->name, on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | #endif |
| 123 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 124 | hdlc = dev_to_hdlc(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | spin_lock_irqsave(&hdlc->state_lock, flags); |
| 126 | |
| 127 | if (hdlc->carrier == on) |
| 128 | goto carrier_exit; /* no change in DCD line level */ |
| 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | hdlc->carrier = on; |
| 131 | |
| 132 | if (!hdlc->open) |
| 133 | goto carrier_exit; |
| 134 | |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 135 | if (hdlc->carrier) { |
| 136 | printk(KERN_INFO "%s: Carrier detected\n", dev->name); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 137 | hdlc_proto_start(dev); |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 138 | } else { |
| 139 | printk(KERN_INFO "%s: Carrier lost\n", dev->name); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 140 | hdlc_proto_stop(dev); |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | carrier_exit: |
| 144 | spin_unlock_irqrestore(&hdlc->state_lock, flags); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 145 | return NOTIFY_DONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | |
| 149 | |
| 150 | /* Must be called by hardware driver when HDLC device is being opened */ |
| 151 | int hdlc_open(struct net_device *dev) |
| 152 | { |
| 153 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 154 | #ifdef DEBUG_LINK |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 155 | printk(KERN_DEBUG "%s: hdlc_open() carrier %i open %i\n", dev->name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | hdlc->carrier, hdlc->open); |
| 157 | #endif |
| 158 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 159 | if (hdlc->proto == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | return -ENOSYS; /* no protocol attached */ |
| 161 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 162 | if (hdlc->proto->open) { |
| 163 | int result = hdlc->proto->open(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | if (result) |
| 165 | return result; |
| 166 | } |
| 167 | |
| 168 | spin_lock_irq(&hdlc->state_lock); |
| 169 | |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 170 | if (hdlc->carrier) { |
| 171 | printk(KERN_INFO "%s: Carrier detected\n", dev->name); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 172 | hdlc_proto_start(dev); |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 173 | } else |
| 174 | printk(KERN_INFO "%s: No carrier\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | hdlc->open = 1; |
| 177 | |
| 178 | spin_unlock_irq(&hdlc->state_lock); |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | |
| 183 | |
| 184 | /* Must be called by hardware driver when HDLC device is being closed */ |
| 185 | void hdlc_close(struct net_device *dev) |
| 186 | { |
| 187 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 188 | #ifdef DEBUG_LINK |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 189 | printk(KERN_DEBUG "%s: hdlc_close() carrier %i open %i\n", dev->name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | hdlc->carrier, hdlc->open); |
| 191 | #endif |
| 192 | |
| 193 | spin_lock_irq(&hdlc->state_lock); |
| 194 | |
| 195 | hdlc->open = 0; |
| 196 | if (hdlc->carrier) |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 197 | hdlc_proto_stop(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | spin_unlock_irq(&hdlc->state_lock); |
| 200 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 201 | if (hdlc->proto->close) |
| 202 | hdlc->proto->close(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
| 208 | { |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 209 | struct hdlc_proto *proto = first_proto; |
| 210 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | if (cmd != SIOCWANDEV) |
| 213 | return -EINVAL; |
| 214 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 215 | if (dev_to_hdlc(dev)->proto) { |
| 216 | result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr); |
| 217 | if (result != -EINVAL) |
| 218 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 221 | /* Not handled by currently attached protocol (if any) */ |
| 222 | |
| 223 | while (proto) { |
| 224 | if ((result = proto->ioctl(dev, ifr)) != -EINVAL) |
| 225 | return result; |
| 226 | proto = proto->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 228 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 231 | static const struct header_ops hdlc_null_ops; |
| 232 | |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 233 | static void hdlc_setup_dev(struct net_device *dev) |
| 234 | { |
| 235 | /* Re-init all variables changed by HDLC protocol drivers, |
| 236 | * including ether_setup() called from hdlc_raw_eth.c. |
| 237 | */ |
| 238 | dev->get_stats = hdlc_get_stats; |
| 239 | dev->flags = IFF_POINTOPOINT | IFF_NOARP; |
| 240 | dev->mtu = HDLC_MAX_MTU; |
| 241 | dev->type = ARPHRD_RAWHDLC; |
| 242 | dev->hard_header_len = 16; |
| 243 | dev->addr_len = 0; |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 244 | dev->header_ops = &hdlc_null_ops; |
| 245 | |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 246 | dev->change_mtu = hdlc_change_mtu; |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 247 | } |
| 248 | |
Adrian Bunk | 0bf94fa | 2007-01-11 14:48:59 +0100 | [diff] [blame] | 249 | static void hdlc_setup(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | { |
| 251 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 252 | |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 253 | hdlc_setup_dev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | hdlc->carrier = 1; |
| 255 | hdlc->open = 0; |
| 256 | spin_lock_init(&hdlc->state_lock); |
| 257 | } |
| 258 | |
| 259 | struct net_device *alloc_hdlcdev(void *priv) |
| 260 | { |
| 261 | struct net_device *dev; |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 262 | dev = alloc_netdev(sizeof(struct hdlc_device), "hdlc%d", hdlc_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | if (dev) |
| 264 | dev_to_hdlc(dev)->priv = priv; |
| 265 | return dev; |
| 266 | } |
| 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | void unregister_hdlc_device(struct net_device *dev) |
| 269 | { |
| 270 | rtnl_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | unregister_netdevice(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 272 | detach_hdlc_protocol(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | rtnl_unlock(); |
| 274 | } |
| 275 | |
| 276 | |
| 277 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 278 | int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto, |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 279 | size_t size) |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 280 | { |
| 281 | detach_hdlc_protocol(dev); |
| 282 | |
| 283 | if (!try_module_get(proto->module)) |
| 284 | return -ENOSYS; |
| 285 | |
| 286 | if (size) |
| 287 | if ((dev_to_hdlc(dev)->state = kmalloc(size, |
| 288 | GFP_KERNEL)) == NULL) { |
| 289 | printk(KERN_WARNING "Memory squeeze on" |
| 290 | " hdlc_proto_attach()\n"); |
| 291 | module_put(proto->module); |
| 292 | return -ENOBUFS; |
| 293 | } |
| 294 | dev_to_hdlc(dev)->proto = proto; |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 295 | return 0; |
| 296 | } |
| 297 | |
| 298 | |
| 299 | void detach_hdlc_protocol(struct net_device *dev) |
| 300 | { |
| 301 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 302 | |
| 303 | if (hdlc->proto) { |
| 304 | if (hdlc->proto->detach) |
| 305 | hdlc->proto->detach(dev); |
| 306 | module_put(hdlc->proto->module); |
| 307 | hdlc->proto = NULL; |
| 308 | } |
| 309 | kfree(hdlc->state); |
| 310 | hdlc->state = NULL; |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 311 | hdlc_setup_dev(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | |
| 315 | void register_hdlc_protocol(struct hdlc_proto *proto) |
| 316 | { |
| 317 | proto->next = first_proto; |
| 318 | first_proto = proto; |
| 319 | } |
| 320 | |
| 321 | |
| 322 | void unregister_hdlc_protocol(struct hdlc_proto *proto) |
| 323 | { |
| 324 | struct hdlc_proto **p = &first_proto; |
| 325 | while (*p) { |
| 326 | if (*p == proto) { |
| 327 | *p = proto->next; |
| 328 | return; |
| 329 | } |
| 330 | p = &((*p)->next); |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>"); |
| 337 | MODULE_DESCRIPTION("HDLC support module"); |
| 338 | MODULE_LICENSE("GPL v2"); |
| 339 | |
| 340 | EXPORT_SYMBOL(hdlc_open); |
| 341 | EXPORT_SYMBOL(hdlc_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | EXPORT_SYMBOL(hdlc_ioctl); |
| 343 | EXPORT_SYMBOL(alloc_hdlcdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | EXPORT_SYMBOL(unregister_hdlc_device); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 345 | EXPORT_SYMBOL(register_hdlc_protocol); |
| 346 | EXPORT_SYMBOL(unregister_hdlc_protocol); |
| 347 | EXPORT_SYMBOL(attach_hdlc_protocol); |
| 348 | EXPORT_SYMBOL(detach_hdlc_protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
| 350 | static struct packet_type hdlc_packet_type = { |
| 351 | .type = __constant_htons(ETH_P_HDLC), |
| 352 | .func = hdlc_rcv, |
| 353 | }; |
| 354 | |
| 355 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 356 | static struct notifier_block hdlc_notifier = { |
| 357 | .notifier_call = hdlc_device_event, |
| 358 | }; |
| 359 | |
| 360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | static int __init hdlc_module_init(void) |
| 362 | { |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 363 | int result; |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | printk(KERN_INFO "%s\n", version); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 366 | if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0) |
| 367 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | dev_add_pack(&hdlc_packet_type); |
| 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | |
| 373 | |
| 374 | static void __exit hdlc_module_exit(void) |
| 375 | { |
| 376 | dev_remove_pack(&hdlc_packet_type); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 377 | unregister_netdevice_notifier(&hdlc_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | |
| 381 | module_init(hdlc_module_init); |
| 382 | module_exit(hdlc_module_exit); |