Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic HDLC support routines for Linux |
| 3 | * |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 4 | * Copyright (C) 1999 - 2006 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 | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 42 | static const char* version = "HDLC support module revision 1.21"; |
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 | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 69 | struct hdlc_device_desc *desc = dev_to_desc(dev); |
Eric W. Biederman | e730c15 | 2007-09-17 11:53:39 -0700 | [diff] [blame] | 70 | |
| 71 | if (dev->nd_net != &init_net) { |
| 72 | kfree_skb(skb); |
| 73 | return 0; |
| 74 | } |
| 75 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 76 | if (desc->netif_rx) |
| 77 | return desc->netif_rx(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 79 | desc->stats.rx_dropped++; /* Shouldn't happen */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | dev_kfree_skb(skb); |
| 81 | return NET_RX_DROP; |
| 82 | } |
| 83 | |
| 84 | |
| 85 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 86 | static inline void hdlc_proto_start(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
| 88 | hdlc_device *hdlc = dev_to_hdlc(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 89 | if (hdlc->proto->start) |
| 90 | return hdlc->proto->start(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | |
| 94 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 95 | static inline void hdlc_proto_stop(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
| 97 | hdlc_device *hdlc = dev_to_hdlc(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 98 | if (hdlc->proto->stop) |
| 99 | return hdlc->proto->stop(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | |
| 103 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 104 | static int hdlc_device_event(struct notifier_block *this, unsigned long event, |
| 105 | void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 107 | struct net_device *dev = ptr; |
| 108 | hdlc_device *hdlc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | unsigned long flags; |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 110 | int on; |
| 111 | |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 112 | if (dev->nd_net != &init_net) |
| 113 | return NOTIFY_DONE; |
| 114 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 115 | if (dev->get_stats != hdlc_get_stats) |
| 116 | return NOTIFY_DONE; /* not an HDLC device */ |
| 117 | |
| 118 | if (event != NETDEV_CHANGE) |
| 119 | return NOTIFY_DONE; /* Only interrested in carrier changes */ |
| 120 | |
| 121 | on = netif_carrier_ok(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | #ifdef DEBUG_LINK |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 124 | printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n", |
| 125 | dev->name, on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | #endif |
| 127 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 128 | hdlc = dev_to_hdlc(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | spin_lock_irqsave(&hdlc->state_lock, flags); |
| 130 | |
| 131 | if (hdlc->carrier == on) |
| 132 | goto carrier_exit; /* no change in DCD line level */ |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | hdlc->carrier = on; |
| 135 | |
| 136 | if (!hdlc->open) |
| 137 | goto carrier_exit; |
| 138 | |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 139 | if (hdlc->carrier) { |
| 140 | printk(KERN_INFO "%s: Carrier detected\n", dev->name); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 141 | hdlc_proto_start(dev); |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 142 | } else { |
| 143 | printk(KERN_INFO "%s: Carrier lost\n", dev->name); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 144 | hdlc_proto_stop(dev); |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 145 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | carrier_exit: |
| 148 | spin_unlock_irqrestore(&hdlc->state_lock, flags); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 149 | return NOTIFY_DONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | |
| 153 | |
| 154 | /* Must be called by hardware driver when HDLC device is being opened */ |
| 155 | int hdlc_open(struct net_device *dev) |
| 156 | { |
| 157 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 158 | #ifdef DEBUG_LINK |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 159 | 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] | 160 | hdlc->carrier, hdlc->open); |
| 161 | #endif |
| 162 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 163 | if (hdlc->proto == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | return -ENOSYS; /* no protocol attached */ |
| 165 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 166 | if (hdlc->proto->open) { |
| 167 | int result = hdlc->proto->open(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | if (result) |
| 169 | return result; |
| 170 | } |
| 171 | |
| 172 | spin_lock_irq(&hdlc->state_lock); |
| 173 | |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 174 | if (hdlc->carrier) { |
| 175 | printk(KERN_INFO "%s: Carrier detected\n", dev->name); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 176 | hdlc_proto_start(dev); |
Krzysztof Halasa | b3dd65f | 2005-04-21 15:57:25 +0200 | [diff] [blame] | 177 | } else |
| 178 | printk(KERN_INFO "%s: No carrier\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
| 180 | hdlc->open = 1; |
| 181 | |
| 182 | spin_unlock_irq(&hdlc->state_lock); |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | |
| 187 | |
| 188 | /* Must be called by hardware driver when HDLC device is being closed */ |
| 189 | void hdlc_close(struct net_device *dev) |
| 190 | { |
| 191 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 192 | #ifdef DEBUG_LINK |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 193 | 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] | 194 | hdlc->carrier, hdlc->open); |
| 195 | #endif |
| 196 | |
| 197 | spin_lock_irq(&hdlc->state_lock); |
| 198 | |
| 199 | hdlc->open = 0; |
| 200 | if (hdlc->carrier) |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 201 | hdlc_proto_stop(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | spin_unlock_irq(&hdlc->state_lock); |
| 204 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 205 | if (hdlc->proto->close) |
| 206 | hdlc->proto->close(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | |
| 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
| 212 | { |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 213 | struct hdlc_proto *proto = first_proto; |
| 214 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | if (cmd != SIOCWANDEV) |
| 217 | return -EINVAL; |
| 218 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 219 | if (dev_to_hdlc(dev)->proto) { |
| 220 | result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr); |
| 221 | if (result != -EINVAL) |
| 222 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 225 | /* Not handled by currently attached protocol (if any) */ |
| 226 | |
| 227 | while (proto) { |
| 228 | if ((result = proto->ioctl(dev, ifr)) != -EINVAL) |
| 229 | return result; |
| 230 | proto = proto->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 232 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 235 | static const struct header_ops hdlc_null_ops; |
| 236 | |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 237 | static void hdlc_setup_dev(struct net_device *dev) |
| 238 | { |
| 239 | /* Re-init all variables changed by HDLC protocol drivers, |
| 240 | * including ether_setup() called from hdlc_raw_eth.c. |
| 241 | */ |
| 242 | dev->get_stats = hdlc_get_stats; |
| 243 | dev->flags = IFF_POINTOPOINT | IFF_NOARP; |
| 244 | dev->mtu = HDLC_MAX_MTU; |
| 245 | dev->type = ARPHRD_RAWHDLC; |
| 246 | dev->hard_header_len = 16; |
| 247 | dev->addr_len = 0; |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 248 | dev->header_ops = &hdlc_null_ops; |
| 249 | |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 250 | dev->change_mtu = hdlc_change_mtu; |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 251 | } |
| 252 | |
Adrian Bunk | 0bf94fa | 2007-01-11 14:48:59 +0100 | [diff] [blame] | 253 | static void hdlc_setup(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
| 255 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 256 | |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 257 | hdlc_setup_dev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | hdlc->carrier = 1; |
| 259 | hdlc->open = 0; |
| 260 | spin_lock_init(&hdlc->state_lock); |
| 261 | } |
| 262 | |
| 263 | struct net_device *alloc_hdlcdev(void *priv) |
| 264 | { |
| 265 | struct net_device *dev; |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 266 | dev = alloc_netdev(sizeof(struct hdlc_device_desc) + |
| 267 | sizeof(hdlc_device), "hdlc%d", hdlc_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | if (dev) |
| 269 | dev_to_hdlc(dev)->priv = priv; |
| 270 | return dev; |
| 271 | } |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | void unregister_hdlc_device(struct net_device *dev) |
| 274 | { |
| 275 | rtnl_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | unregister_netdevice(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 277 | detach_hdlc_protocol(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | rtnl_unlock(); |
| 279 | } |
| 280 | |
| 281 | |
| 282 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 283 | int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto, |
| 284 | int (*rx)(struct sk_buff *skb), size_t size) |
| 285 | { |
| 286 | detach_hdlc_protocol(dev); |
| 287 | |
| 288 | if (!try_module_get(proto->module)) |
| 289 | return -ENOSYS; |
| 290 | |
| 291 | if (size) |
| 292 | if ((dev_to_hdlc(dev)->state = kmalloc(size, |
| 293 | GFP_KERNEL)) == NULL) { |
| 294 | printk(KERN_WARNING "Memory squeeze on" |
| 295 | " hdlc_proto_attach()\n"); |
| 296 | module_put(proto->module); |
| 297 | return -ENOBUFS; |
| 298 | } |
| 299 | dev_to_hdlc(dev)->proto = proto; |
| 300 | dev_to_desc(dev)->netif_rx = rx; |
| 301 | return 0; |
| 302 | } |
| 303 | |
| 304 | |
| 305 | void detach_hdlc_protocol(struct net_device *dev) |
| 306 | { |
| 307 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 308 | |
| 309 | if (hdlc->proto) { |
| 310 | if (hdlc->proto->detach) |
| 311 | hdlc->proto->detach(dev); |
| 312 | module_put(hdlc->proto->module); |
| 313 | hdlc->proto = NULL; |
| 314 | } |
| 315 | kfree(hdlc->state); |
| 316 | hdlc->state = NULL; |
Krzysztof Halasa | b5284e5 | 2007-03-02 15:52:22 -0800 | [diff] [blame] | 317 | hdlc_setup_dev(dev); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | |
| 321 | void register_hdlc_protocol(struct hdlc_proto *proto) |
| 322 | { |
| 323 | proto->next = first_proto; |
| 324 | first_proto = proto; |
| 325 | } |
| 326 | |
| 327 | |
| 328 | void unregister_hdlc_protocol(struct hdlc_proto *proto) |
| 329 | { |
| 330 | struct hdlc_proto **p = &first_proto; |
| 331 | while (*p) { |
| 332 | if (*p == proto) { |
| 333 | *p = proto->next; |
| 334 | return; |
| 335 | } |
| 336 | p = &((*p)->next); |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | |
| 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>"); |
| 343 | MODULE_DESCRIPTION("HDLC support module"); |
| 344 | MODULE_LICENSE("GPL v2"); |
| 345 | |
| 346 | EXPORT_SYMBOL(hdlc_open); |
| 347 | EXPORT_SYMBOL(hdlc_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | EXPORT_SYMBOL(hdlc_ioctl); |
| 349 | EXPORT_SYMBOL(alloc_hdlcdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | EXPORT_SYMBOL(unregister_hdlc_device); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 351 | EXPORT_SYMBOL(register_hdlc_protocol); |
| 352 | EXPORT_SYMBOL(unregister_hdlc_protocol); |
| 353 | EXPORT_SYMBOL(attach_hdlc_protocol); |
| 354 | EXPORT_SYMBOL(detach_hdlc_protocol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | static struct packet_type hdlc_packet_type = { |
| 357 | .type = __constant_htons(ETH_P_HDLC), |
| 358 | .func = hdlc_rcv, |
| 359 | }; |
| 360 | |
| 361 | |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 362 | static struct notifier_block hdlc_notifier = { |
| 363 | .notifier_call = hdlc_device_event, |
| 364 | }; |
| 365 | |
| 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | static int __init hdlc_module_init(void) |
| 368 | { |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 369 | int result; |
| 370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | printk(KERN_INFO "%s\n", version); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 372 | if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0) |
| 373 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | dev_add_pack(&hdlc_packet_type); |
| 375 | return 0; |
| 376 | } |
| 377 | |
| 378 | |
| 379 | |
| 380 | static void __exit hdlc_module_exit(void) |
| 381 | { |
| 382 | dev_remove_pack(&hdlc_packet_type); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 383 | unregister_netdevice_notifier(&hdlc_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | |
| 387 | module_init(hdlc_module_init); |
| 388 | module_exit(hdlc_module_exit); |