blob: 3b57350eacca7a6e9a671e1fd9e469a83e7f5c55 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic HDLC support routines for Linux
3 *
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +02004 * Copyright (C) 1999 - 2006 Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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 Halasaeb2a2fd2006-09-26 23:23:45 +020020 * - proto->open(), close(), start(), stop() calls are serialized.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * The order is: open, [ start, stop ... ] close ...
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020022 * - proto->start() and stop() are called with spin_lock_irq held.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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 Halasac2ce9202006-07-12 13:46:12 -070037#include <linux/notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/hdlc.h>
Eric W. Biedermane730c152007-09-17 11:53:39 -070039#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41
Krzysztof Halasab5284e52007-03-02 15:52:22 -080042static const char* version = "HDLC support module revision 1.21";
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#undef DEBUG_LINK
45
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020046static struct hdlc_proto *first_proto = NULL;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49static 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
59static struct net_device_stats *hdlc_get_stats(struct net_device *dev)
60{
61 return hdlc_stats(dev);
62}
63
64
65
66static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -070067 struct packet_type *p, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020069 struct hdlc_device_desc *desc = dev_to_desc(dev);
Eric W. Biedermane730c152007-09-17 11:53:39 -070070
71 if (dev->nd_net != &init_net) {
72 kfree_skb(skb);
73 return 0;
74 }
75
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020076 if (desc->netif_rx)
77 return desc->netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020079 desc->stats.rx_dropped++; /* Shouldn't happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 dev_kfree_skb(skb);
81 return NET_RX_DROP;
82}
83
84
85
Krzysztof Halasac2ce9202006-07-12 13:46:12 -070086static inline void hdlc_proto_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 hdlc_device *hdlc = dev_to_hdlc(dev);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020089 if (hdlc->proto->start)
90 return hdlc->proto->start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93
94
Krzysztof Halasac2ce9202006-07-12 13:46:12 -070095static inline void hdlc_proto_stop(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 hdlc_device *hdlc = dev_to_hdlc(dev);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020098 if (hdlc->proto->stop)
99 return hdlc->proto->stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102
103
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700104static int hdlc_device_event(struct notifier_block *this, unsigned long event,
105 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700107 struct net_device *dev = ptr;
108 hdlc_device *hdlc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 unsigned long flags;
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700110 int on;
111
112 if (dev->get_stats != hdlc_get_stats)
113 return NOTIFY_DONE; /* not an HDLC device */
114
115 if (event != NETDEV_CHANGE)
116 return NOTIFY_DONE; /* Only interrested in carrier changes */
117
118 on = netif_carrier_ok(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120#ifdef DEBUG_LINK
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700121 printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n",
122 dev->name, on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#endif
124
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700125 hdlc = dev_to_hdlc(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 spin_lock_irqsave(&hdlc->state_lock, flags);
127
128 if (hdlc->carrier == on)
129 goto carrier_exit; /* no change in DCD line level */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 hdlc->carrier = on;
132
133 if (!hdlc->open)
134 goto carrier_exit;
135
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200136 if (hdlc->carrier) {
137 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700138 hdlc_proto_start(dev);
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200139 } else {
140 printk(KERN_INFO "%s: Carrier lost\n", dev->name);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700141 hdlc_proto_stop(dev);
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144carrier_exit:
145 spin_unlock_irqrestore(&hdlc->state_lock, flags);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700146 return NOTIFY_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149
150
151/* Must be called by hardware driver when HDLC device is being opened */
152int hdlc_open(struct net_device *dev)
153{
154 hdlc_device *hdlc = dev_to_hdlc(dev);
155#ifdef DEBUG_LINK
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200156 printk(KERN_DEBUG "%s: hdlc_open() carrier %i open %i\n", dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 hdlc->carrier, hdlc->open);
158#endif
159
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200160 if (hdlc->proto == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return -ENOSYS; /* no protocol attached */
162
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200163 if (hdlc->proto->open) {
164 int result = hdlc->proto->open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (result)
166 return result;
167 }
168
169 spin_lock_irq(&hdlc->state_lock);
170
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200171 if (hdlc->carrier) {
172 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700173 hdlc_proto_start(dev);
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200174 } else
175 printk(KERN_INFO "%s: No carrier\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 hdlc->open = 1;
178
179 spin_unlock_irq(&hdlc->state_lock);
180 return 0;
181}
182
183
184
185/* Must be called by hardware driver when HDLC device is being closed */
186void hdlc_close(struct net_device *dev)
187{
188 hdlc_device *hdlc = dev_to_hdlc(dev);
189#ifdef DEBUG_LINK
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200190 printk(KERN_DEBUG "%s: hdlc_close() carrier %i open %i\n", dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 hdlc->carrier, hdlc->open);
192#endif
193
194 spin_lock_irq(&hdlc->state_lock);
195
196 hdlc->open = 0;
197 if (hdlc->carrier)
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700198 hdlc_proto_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 spin_unlock_irq(&hdlc->state_lock);
201
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200202 if (hdlc->proto->close)
203 hdlc->proto->close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
209{
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200210 struct hdlc_proto *proto = first_proto;
211 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 if (cmd != SIOCWANDEV)
214 return -EINVAL;
215
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200216 if (dev_to_hdlc(dev)->proto) {
217 result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr);
218 if (result != -EINVAL)
219 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200222 /* Not handled by currently attached protocol (if any) */
223
224 while (proto) {
225 if ((result = proto->ioctl(dev, ifr)) != -EINVAL)
226 return result;
227 proto = proto->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200229 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Krzysztof Halasab5284e52007-03-02 15:52:22 -0800232static void hdlc_setup_dev(struct net_device *dev)
233{
234 /* Re-init all variables changed by HDLC protocol drivers,
235 * including ether_setup() called from hdlc_raw_eth.c.
236 */
237 dev->get_stats = hdlc_get_stats;
238 dev->flags = IFF_POINTOPOINT | IFF_NOARP;
239 dev->mtu = HDLC_MAX_MTU;
240 dev->type = ARPHRD_RAWHDLC;
241 dev->hard_header_len = 16;
242 dev->addr_len = 0;
243 dev->hard_header = NULL;
244 dev->rebuild_header = NULL;
245 dev->set_mac_address = NULL;
246 dev->hard_header_cache = NULL;
247 dev->header_cache_update = NULL;
248 dev->change_mtu = hdlc_change_mtu;
249 dev->hard_header_parse = NULL;
250}
251
Adrian Bunk0bf94fa2007-01-11 14:48:59 +0100252static void hdlc_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 hdlc_device *hdlc = dev_to_hdlc(dev);
255
Krzysztof Halasab5284e52007-03-02 15:52:22 -0800256 hdlc_setup_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 hdlc->carrier = 1;
258 hdlc->open = 0;
259 spin_lock_init(&hdlc->state_lock);
260}
261
262struct net_device *alloc_hdlcdev(void *priv)
263{
264 struct net_device *dev;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200265 dev = alloc_netdev(sizeof(struct hdlc_device_desc) +
266 sizeof(hdlc_device), "hdlc%d", hdlc_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (dev)
268 dev_to_hdlc(dev)->priv = priv;
269 return dev;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272void unregister_hdlc_device(struct net_device *dev)
273{
274 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 unregister_netdevice(dev);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200276 detach_hdlc_protocol(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 rtnl_unlock();
278}
279
280
281
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200282int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto,
283 int (*rx)(struct sk_buff *skb), size_t size)
284{
285 detach_hdlc_protocol(dev);
286
287 if (!try_module_get(proto->module))
288 return -ENOSYS;
289
290 if (size)
291 if ((dev_to_hdlc(dev)->state = kmalloc(size,
292 GFP_KERNEL)) == NULL) {
293 printk(KERN_WARNING "Memory squeeze on"
294 " hdlc_proto_attach()\n");
295 module_put(proto->module);
296 return -ENOBUFS;
297 }
298 dev_to_hdlc(dev)->proto = proto;
299 dev_to_desc(dev)->netif_rx = rx;
300 return 0;
301}
302
303
304void detach_hdlc_protocol(struct net_device *dev)
305{
306 hdlc_device *hdlc = dev_to_hdlc(dev);
307
308 if (hdlc->proto) {
309 if (hdlc->proto->detach)
310 hdlc->proto->detach(dev);
311 module_put(hdlc->proto->module);
312 hdlc->proto = NULL;
313 }
314 kfree(hdlc->state);
315 hdlc->state = NULL;
Krzysztof Halasab5284e52007-03-02 15:52:22 -0800316 hdlc_setup_dev(dev);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200317}
318
319
320void register_hdlc_protocol(struct hdlc_proto *proto)
321{
322 proto->next = first_proto;
323 first_proto = proto;
324}
325
326
327void unregister_hdlc_protocol(struct hdlc_proto *proto)
328{
329 struct hdlc_proto **p = &first_proto;
330 while (*p) {
331 if (*p == proto) {
332 *p = proto->next;
333 return;
334 }
335 p = &((*p)->next);
336 }
337}
338
339
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
342MODULE_DESCRIPTION("HDLC support module");
343MODULE_LICENSE("GPL v2");
344
345EXPORT_SYMBOL(hdlc_open);
346EXPORT_SYMBOL(hdlc_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347EXPORT_SYMBOL(hdlc_ioctl);
348EXPORT_SYMBOL(alloc_hdlcdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349EXPORT_SYMBOL(unregister_hdlc_device);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200350EXPORT_SYMBOL(register_hdlc_protocol);
351EXPORT_SYMBOL(unregister_hdlc_protocol);
352EXPORT_SYMBOL(attach_hdlc_protocol);
353EXPORT_SYMBOL(detach_hdlc_protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355static struct packet_type hdlc_packet_type = {
356 .type = __constant_htons(ETH_P_HDLC),
357 .func = hdlc_rcv,
358};
359
360
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700361static struct notifier_block hdlc_notifier = {
362 .notifier_call = hdlc_device_event,
363};
364
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366static int __init hdlc_module_init(void)
367{
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700368 int result;
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 printk(KERN_INFO "%s\n", version);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700371 if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0)
372 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 dev_add_pack(&hdlc_packet_type);
374 return 0;
375}
376
377
378
379static void __exit hdlc_module_exit(void)
380{
381 dev_remove_pack(&hdlc_packet_type);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700382 unregister_netdevice_notifier(&hdlc_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385
386module_init(hdlc_module_init);
387module_exit(hdlc_module_exit);