2 * Generic HDLC support routines for Linux
4 * Copyright (C) 1999 - 2008 Krzysztof Halasa <khc@pm.waw.pl>
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.
10 * Currently supported:
13 * * Frame Relay with ANSI or CCITT LMI (both user and network side)
17 * Use sethdlc utility to set line parameters, protocol and PVCs
20 * - proto->open(), close(), start(), stop() calls are serialized.
21 * The order is: open, [ start, stop ... ] close ...
22 * - proto->start() and stop() are called with spin_lock_irq held.
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>
37 #include <linux/notifier.h>
38 #include <linux/hdlc.h>
39 #include <net/net_namespace.h>
42 static const char* version = "HDLC support module revision 1.22";
46 static struct hdlc_proto *first_proto = NULL;
49 static int hdlc_change_mtu(struct net_device *dev, int new_mtu)
51 if ((new_mtu < 68) || (new_mtu > HDLC_MAX_MTU))
59 static struct net_device_stats *hdlc_get_stats(struct net_device *dev)
61 return hdlc_stats(dev);
66 static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev,
67 struct packet_type *p, struct net_device *orig_dev)
69 struct hdlc_device *hdlc = dev_to_hdlc(dev);
71 if (dev_net(dev) != &init_net) {
76 BUG_ON(!hdlc->proto->netif_rx);
77 return hdlc->proto->netif_rx(skb);
82 static inline void hdlc_proto_start(struct net_device *dev)
84 hdlc_device *hdlc = dev_to_hdlc(dev);
85 if (hdlc->proto->start)
86 hdlc->proto->start(dev);
91 static inline void hdlc_proto_stop(struct net_device *dev)
93 hdlc_device *hdlc = dev_to_hdlc(dev);
94 if (hdlc->proto->stop)
95 hdlc->proto->stop(dev);
100 static int hdlc_device_event(struct notifier_block *this, unsigned long event,
103 struct net_device *dev = ptr;
108 if (dev_net(dev) != &init_net)
111 if (dev->get_stats != hdlc_get_stats)
112 return NOTIFY_DONE; /* not an HDLC device */
114 if (event != NETDEV_CHANGE)
115 return NOTIFY_DONE; /* Only interrested in carrier changes */
117 on = netif_carrier_ok(dev);
120 printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n",
124 hdlc = dev_to_hdlc(dev);
125 spin_lock_irqsave(&hdlc->state_lock, flags);
127 if (hdlc->carrier == on)
128 goto carrier_exit; /* no change in DCD line level */
136 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
137 hdlc_proto_start(dev);
139 printk(KERN_INFO "%s: Carrier lost\n", dev->name);
140 hdlc_proto_stop(dev);
144 spin_unlock_irqrestore(&hdlc->state_lock, flags);
150 /* Must be called by hardware driver when HDLC device is being opened */
151 int hdlc_open(struct net_device *dev)
153 hdlc_device *hdlc = dev_to_hdlc(dev);
155 printk(KERN_DEBUG "%s: hdlc_open() carrier %i open %i\n", dev->name,
156 hdlc->carrier, hdlc->open);
159 if (hdlc->proto == NULL)
160 return -ENOSYS; /* no protocol attached */
162 if (hdlc->proto->open) {
163 int result = hdlc->proto->open(dev);
168 spin_lock_irq(&hdlc->state_lock);
171 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
172 hdlc_proto_start(dev);
174 printk(KERN_INFO "%s: No carrier\n", dev->name);
178 spin_unlock_irq(&hdlc->state_lock);
184 /* Must be called by hardware driver when HDLC device is being closed */
185 void hdlc_close(struct net_device *dev)
187 hdlc_device *hdlc = dev_to_hdlc(dev);
189 printk(KERN_DEBUG "%s: hdlc_close() carrier %i open %i\n", dev->name,
190 hdlc->carrier, hdlc->open);
193 spin_lock_irq(&hdlc->state_lock);
197 hdlc_proto_stop(dev);
199 spin_unlock_irq(&hdlc->state_lock);
201 if (hdlc->proto->close)
202 hdlc->proto->close(dev);
207 int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
209 struct hdlc_proto *proto = first_proto;
212 if (cmd != SIOCWANDEV)
215 if (dev_to_hdlc(dev)->proto) {
216 result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr);
217 if (result != -EINVAL)
221 /* Not handled by currently attached protocol (if any) */
224 if ((result = proto->ioctl(dev, ifr)) != -EINVAL)
231 static const struct header_ops hdlc_null_ops;
233 static void hdlc_setup_dev(struct net_device *dev)
235 /* Re-init all variables changed by HDLC protocol drivers,
236 * including ether_setup() called from hdlc_raw_eth.c.
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;
244 dev->header_ops = &hdlc_null_ops;
246 dev->change_mtu = hdlc_change_mtu;
249 static void hdlc_setup(struct net_device *dev)
251 hdlc_device *hdlc = dev_to_hdlc(dev);
256 spin_lock_init(&hdlc->state_lock);
259 struct net_device *alloc_hdlcdev(void *priv)
261 struct net_device *dev;
262 dev = alloc_netdev(sizeof(struct hdlc_device), "hdlc%d", hdlc_setup);
264 dev_to_hdlc(dev)->priv = priv;
268 void unregister_hdlc_device(struct net_device *dev)
271 unregister_netdevice(dev);
272 detach_hdlc_protocol(dev);
278 int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto,
281 detach_hdlc_protocol(dev);
283 if (!try_module_get(proto->module))
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);
294 dev_to_hdlc(dev)->proto = proto;
299 void detach_hdlc_protocol(struct net_device *dev)
301 hdlc_device *hdlc = dev_to_hdlc(dev);
304 if (hdlc->proto->detach)
305 hdlc->proto->detach(dev);
306 module_put(hdlc->proto->module);
315 void register_hdlc_protocol(struct hdlc_proto *proto)
317 proto->next = first_proto;
322 void unregister_hdlc_protocol(struct hdlc_proto *proto)
324 struct hdlc_proto **p = &first_proto;
336 MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
337 MODULE_DESCRIPTION("HDLC support module");
338 MODULE_LICENSE("GPL v2");
340 EXPORT_SYMBOL(hdlc_open);
341 EXPORT_SYMBOL(hdlc_close);
342 EXPORT_SYMBOL(hdlc_ioctl);
343 EXPORT_SYMBOL(alloc_hdlcdev);
344 EXPORT_SYMBOL(unregister_hdlc_device);
345 EXPORT_SYMBOL(register_hdlc_protocol);
346 EXPORT_SYMBOL(unregister_hdlc_protocol);
347 EXPORT_SYMBOL(attach_hdlc_protocol);
348 EXPORT_SYMBOL(detach_hdlc_protocol);
350 static struct packet_type hdlc_packet_type = {
351 .type = __constant_htons(ETH_P_HDLC),
356 static struct notifier_block hdlc_notifier = {
357 .notifier_call = hdlc_device_event,
361 static int __init hdlc_module_init(void)
365 printk(KERN_INFO "%s\n", version);
366 if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0)
368 dev_add_pack(&hdlc_packet_type);
374 static void __exit hdlc_module_exit(void)
376 dev_remove_pack(&hdlc_packet_type);
377 unregister_netdevice_notifier(&hdlc_notifier);
381 module_init(hdlc_module_init);
382 module_exit(hdlc_module_exit);