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/errno.h>
26 #include <linux/hdlc.h>
27 #include <linux/if_arp.h>
28 #include <linux/inetdevice.h>
29 #include <linux/init.h>
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/notifier.h>
33 #include <linux/pkt_sched.h>
34 #include <linux/poll.h>
35 #include <linux/rtnetlink.h>
36 #include <linux/skbuff.h>
37 #include <linux/slab.h>
38 #include <net/net_namespace.h>
41 static const char* version = "HDLC support module revision 1.22";
45 static struct hdlc_proto *first_proto;
47 static int hdlc_change_mtu(struct net_device *dev, int new_mtu)
49 if ((new_mtu < 68) || (new_mtu > HDLC_MAX_MTU))
55 static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev,
56 struct packet_type *p, struct net_device *orig_dev)
58 struct hdlc_device *hdlc = dev_to_hdlc(dev);
60 if (dev_net(dev) != &init_net) {
65 BUG_ON(!hdlc->proto->netif_rx);
66 return hdlc->proto->netif_rx(skb);
71 static inline void hdlc_proto_start(struct net_device *dev)
73 hdlc_device *hdlc = dev_to_hdlc(dev);
74 if (hdlc->proto->start)
75 hdlc->proto->start(dev);
80 static inline void hdlc_proto_stop(struct net_device *dev)
82 hdlc_device *hdlc = dev_to_hdlc(dev);
83 if (hdlc->proto->stop)
84 hdlc->proto->stop(dev);
89 static int hdlc_device_event(struct notifier_block *this, unsigned long event,
92 struct net_device *dev = ptr;
97 if (dev_net(dev) != &init_net)
100 if (!(dev->priv_flags & IFF_WAN_HDLC))
101 return NOTIFY_DONE; /* not an HDLC device */
103 if (event != NETDEV_CHANGE)
104 return NOTIFY_DONE; /* Only interrested in carrier changes */
106 on = netif_carrier_ok(dev);
109 printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n",
113 hdlc = dev_to_hdlc(dev);
114 spin_lock_irqsave(&hdlc->state_lock, flags);
116 if (hdlc->carrier == on)
117 goto carrier_exit; /* no change in DCD line level */
125 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
126 hdlc_proto_start(dev);
128 printk(KERN_INFO "%s: Carrier lost\n", dev->name);
129 hdlc_proto_stop(dev);
133 spin_unlock_irqrestore(&hdlc->state_lock, flags);
139 /* Must be called by hardware driver when HDLC device is being opened */
140 int hdlc_open(struct net_device *dev)
142 hdlc_device *hdlc = dev_to_hdlc(dev);
144 printk(KERN_DEBUG "%s: hdlc_open() carrier %i open %i\n", dev->name,
145 hdlc->carrier, hdlc->open);
148 if (hdlc->proto == NULL)
149 return -ENOSYS; /* no protocol attached */
151 if (hdlc->proto->open) {
152 int result = hdlc->proto->open(dev);
157 spin_lock_irq(&hdlc->state_lock);
160 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
161 hdlc_proto_start(dev);
163 printk(KERN_INFO "%s: No carrier\n", dev->name);
167 spin_unlock_irq(&hdlc->state_lock);
173 /* Must be called by hardware driver when HDLC device is being closed */
174 void hdlc_close(struct net_device *dev)
176 hdlc_device *hdlc = dev_to_hdlc(dev);
178 printk(KERN_DEBUG "%s: hdlc_close() carrier %i open %i\n", dev->name,
179 hdlc->carrier, hdlc->open);
182 spin_lock_irq(&hdlc->state_lock);
186 hdlc_proto_stop(dev);
188 spin_unlock_irq(&hdlc->state_lock);
190 if (hdlc->proto->close)
191 hdlc->proto->close(dev);
196 int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
198 struct hdlc_proto *proto = first_proto;
201 if (cmd != SIOCWANDEV)
204 if (dev_to_hdlc(dev)->proto) {
205 result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr);
206 if (result != -EINVAL)
210 /* Not handled by currently attached protocol (if any) */
213 if ((result = proto->ioctl(dev, ifr)) != -EINVAL)
220 static const struct header_ops hdlc_null_ops;
222 static void hdlc_setup_dev(struct net_device *dev)
224 /* Re-init all variables changed by HDLC protocol drivers,
225 * including ether_setup() called from hdlc_raw_eth.c.
227 dev->flags = IFF_POINTOPOINT | IFF_NOARP;
228 dev->priv_flags = IFF_WAN_HDLC;
229 dev->mtu = HDLC_MAX_MTU;
230 dev->type = ARPHRD_RAWHDLC;
231 dev->hard_header_len = 16;
233 dev->header_ops = &hdlc_null_ops;
235 dev->change_mtu = hdlc_change_mtu;
238 static void hdlc_setup(struct net_device *dev)
240 hdlc_device *hdlc = dev_to_hdlc(dev);
245 spin_lock_init(&hdlc->state_lock);
248 struct net_device *alloc_hdlcdev(void *priv)
250 struct net_device *dev;
251 dev = alloc_netdev(sizeof(struct hdlc_device), "hdlc%d", hdlc_setup);
253 dev_to_hdlc(dev)->priv = priv;
257 void unregister_hdlc_device(struct net_device *dev)
260 unregister_netdevice(dev);
261 detach_hdlc_protocol(dev);
267 int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto,
270 detach_hdlc_protocol(dev);
272 if (!try_module_get(proto->module))
276 if ((dev_to_hdlc(dev)->state = kmalloc(size,
277 GFP_KERNEL)) == NULL) {
278 printk(KERN_WARNING "Memory squeeze on"
279 " hdlc_proto_attach()\n");
280 module_put(proto->module);
283 dev_to_hdlc(dev)->proto = proto;
288 void detach_hdlc_protocol(struct net_device *dev)
290 hdlc_device *hdlc = dev_to_hdlc(dev);
293 if (hdlc->proto->detach)
294 hdlc->proto->detach(dev);
295 module_put(hdlc->proto->module);
304 void register_hdlc_protocol(struct hdlc_proto *proto)
307 proto->next = first_proto;
313 void unregister_hdlc_protocol(struct hdlc_proto *proto)
315 struct hdlc_proto **p;
319 while (*p != proto) {
329 MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
330 MODULE_DESCRIPTION("HDLC support module");
331 MODULE_LICENSE("GPL v2");
333 EXPORT_SYMBOL(hdlc_open);
334 EXPORT_SYMBOL(hdlc_close);
335 EXPORT_SYMBOL(hdlc_ioctl);
336 EXPORT_SYMBOL(alloc_hdlcdev);
337 EXPORT_SYMBOL(unregister_hdlc_device);
338 EXPORT_SYMBOL(register_hdlc_protocol);
339 EXPORT_SYMBOL(unregister_hdlc_protocol);
340 EXPORT_SYMBOL(attach_hdlc_protocol);
341 EXPORT_SYMBOL(detach_hdlc_protocol);
343 static struct packet_type hdlc_packet_type = {
344 .type = __constant_htons(ETH_P_HDLC),
349 static struct notifier_block hdlc_notifier = {
350 .notifier_call = hdlc_device_event,
354 static int __init hdlc_module_init(void)
358 printk(KERN_INFO "%s\n", version);
359 if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0)
361 dev_add_pack(&hdlc_packet_type);
367 static void __exit hdlc_module_exit(void)
369 dev_remove_pack(&hdlc_packet_type);
370 unregister_netdevice_notifier(&hdlc_notifier);
374 module_init(hdlc_module_init);
375 module_exit(hdlc_module_exit);