blob: ee23b91f23d9b860ee2a6b5947e33ec683e20e79 [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
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200112 if (dev->nd_net != &init_net)
113 return NOTIFY_DONE;
114
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700115 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 Torvalds1da177e2005-04-16 15:20:36 -0700122
123#ifdef DEBUG_LINK
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700124 printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n",
125 dev->name, on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#endif
127
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700128 hdlc = dev_to_hdlc(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 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 Torvalds1da177e2005-04-16 15:20:36 -0700134 hdlc->carrier = on;
135
136 if (!hdlc->open)
137 goto carrier_exit;
138
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200139 if (hdlc->carrier) {
140 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700141 hdlc_proto_start(dev);
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200142 } else {
143 printk(KERN_INFO "%s: Carrier lost\n", dev->name);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700144 hdlc_proto_stop(dev);
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147carrier_exit:
148 spin_unlock_irqrestore(&hdlc->state_lock, flags);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700149 return NOTIFY_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152
153
154/* Must be called by hardware driver when HDLC device is being opened */
155int hdlc_open(struct net_device *dev)
156{
157 hdlc_device *hdlc = dev_to_hdlc(dev);
158#ifdef DEBUG_LINK
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200159 printk(KERN_DEBUG "%s: hdlc_open() carrier %i open %i\n", dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 hdlc->carrier, hdlc->open);
161#endif
162
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200163 if (hdlc->proto == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -ENOSYS; /* no protocol attached */
165
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200166 if (hdlc->proto->open) {
167 int result = hdlc->proto->open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (result)
169 return result;
170 }
171
172 spin_lock_irq(&hdlc->state_lock);
173
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200174 if (hdlc->carrier) {
175 printk(KERN_INFO "%s: Carrier detected\n", dev->name);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700176 hdlc_proto_start(dev);
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +0200177 } else
178 printk(KERN_INFO "%s: No carrier\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
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 */
189void hdlc_close(struct net_device *dev)
190{
191 hdlc_device *hdlc = dev_to_hdlc(dev);
192#ifdef DEBUG_LINK
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200193 printk(KERN_DEBUG "%s: hdlc_close() carrier %i open %i\n", dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 hdlc->carrier, hdlc->open);
195#endif
196
197 spin_lock_irq(&hdlc->state_lock);
198
199 hdlc->open = 0;
200 if (hdlc->carrier)
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700201 hdlc_proto_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 spin_unlock_irq(&hdlc->state_lock);
204
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200205 if (hdlc->proto->close)
206 hdlc->proto->close(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
209
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
212{
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200213 struct hdlc_proto *proto = first_proto;
214 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 if (cmd != SIOCWANDEV)
217 return -EINVAL;
218
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200219 if (dev_to_hdlc(dev)->proto) {
220 result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr);
221 if (result != -EINVAL)
222 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200225 /* 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 Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200232 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Krzysztof Halasab5284e52007-03-02 15:52:22 -0800235static void hdlc_setup_dev(struct net_device *dev)
236{
237 /* Re-init all variables changed by HDLC protocol drivers,
238 * including ether_setup() called from hdlc_raw_eth.c.
239 */
240 dev->get_stats = hdlc_get_stats;
241 dev->flags = IFF_POINTOPOINT | IFF_NOARP;
242 dev->mtu = HDLC_MAX_MTU;
243 dev->type = ARPHRD_RAWHDLC;
244 dev->hard_header_len = 16;
245 dev->addr_len = 0;
246 dev->hard_header = NULL;
247 dev->rebuild_header = NULL;
248 dev->set_mac_address = NULL;
249 dev->hard_header_cache = NULL;
250 dev->header_cache_update = NULL;
251 dev->change_mtu = hdlc_change_mtu;
252 dev->hard_header_parse = NULL;
253}
254
Adrian Bunk0bf94fa2007-01-11 14:48:59 +0100255static void hdlc_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 hdlc_device *hdlc = dev_to_hdlc(dev);
258
Krzysztof Halasab5284e52007-03-02 15:52:22 -0800259 hdlc_setup_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 hdlc->carrier = 1;
261 hdlc->open = 0;
262 spin_lock_init(&hdlc->state_lock);
263}
264
265struct net_device *alloc_hdlcdev(void *priv)
266{
267 struct net_device *dev;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200268 dev = alloc_netdev(sizeof(struct hdlc_device_desc) +
269 sizeof(hdlc_device), "hdlc%d", hdlc_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (dev)
271 dev_to_hdlc(dev)->priv = priv;
272 return dev;
273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275void unregister_hdlc_device(struct net_device *dev)
276{
277 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 unregister_netdevice(dev);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200279 detach_hdlc_protocol(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 rtnl_unlock();
281}
282
283
284
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200285int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto,
286 int (*rx)(struct sk_buff *skb), size_t size)
287{
288 detach_hdlc_protocol(dev);
289
290 if (!try_module_get(proto->module))
291 return -ENOSYS;
292
293 if (size)
294 if ((dev_to_hdlc(dev)->state = kmalloc(size,
295 GFP_KERNEL)) == NULL) {
296 printk(KERN_WARNING "Memory squeeze on"
297 " hdlc_proto_attach()\n");
298 module_put(proto->module);
299 return -ENOBUFS;
300 }
301 dev_to_hdlc(dev)->proto = proto;
302 dev_to_desc(dev)->netif_rx = rx;
303 return 0;
304}
305
306
307void detach_hdlc_protocol(struct net_device *dev)
308{
309 hdlc_device *hdlc = dev_to_hdlc(dev);
310
311 if (hdlc->proto) {
312 if (hdlc->proto->detach)
313 hdlc->proto->detach(dev);
314 module_put(hdlc->proto->module);
315 hdlc->proto = NULL;
316 }
317 kfree(hdlc->state);
318 hdlc->state = NULL;
Krzysztof Halasab5284e52007-03-02 15:52:22 -0800319 hdlc_setup_dev(dev);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200320}
321
322
323void register_hdlc_protocol(struct hdlc_proto *proto)
324{
325 proto->next = first_proto;
326 first_proto = proto;
327}
328
329
330void unregister_hdlc_protocol(struct hdlc_proto *proto)
331{
332 struct hdlc_proto **p = &first_proto;
333 while (*p) {
334 if (*p == proto) {
335 *p = proto->next;
336 return;
337 }
338 p = &((*p)->next);
339 }
340}
341
342
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
345MODULE_DESCRIPTION("HDLC support module");
346MODULE_LICENSE("GPL v2");
347
348EXPORT_SYMBOL(hdlc_open);
349EXPORT_SYMBOL(hdlc_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350EXPORT_SYMBOL(hdlc_ioctl);
351EXPORT_SYMBOL(alloc_hdlcdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352EXPORT_SYMBOL(unregister_hdlc_device);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200353EXPORT_SYMBOL(register_hdlc_protocol);
354EXPORT_SYMBOL(unregister_hdlc_protocol);
355EXPORT_SYMBOL(attach_hdlc_protocol);
356EXPORT_SYMBOL(detach_hdlc_protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358static struct packet_type hdlc_packet_type = {
359 .type = __constant_htons(ETH_P_HDLC),
360 .func = hdlc_rcv,
361};
362
363
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700364static struct notifier_block hdlc_notifier = {
365 .notifier_call = hdlc_device_event,
366};
367
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369static int __init hdlc_module_init(void)
370{
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700371 int result;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 printk(KERN_INFO "%s\n", version);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700374 if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0)
375 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 dev_add_pack(&hdlc_packet_type);
377 return 0;
378}
379
380
381
382static void __exit hdlc_module_exit(void)
383{
384 dev_remove_pack(&hdlc_packet_type);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700385 unregister_netdevice_notifier(&hdlc_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388
389module_init(hdlc_module_init);
390module_exit(hdlc_module_exit);