blob: 8b6598a3713d1608d9de17fa9ad75e8aace89591 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Generic HDLC support routines for Linux
4 *
5 * Copyright (C) 1999 - 2008 Krzysztof Halasa <khc@pm.waw.pl>
6 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 * Currently supported:
8 * * raw IP-in-HDLC
9 * * Cisco HDLC
10 * * Frame Relay with ANSI or CCITT LMI (both user and network side)
11 * * PPP
12 * * X.25
13 *
14 * Use sethdlc utility to set line parameters, protocol and PVCs
15 *
16 * How does it work:
17 * - proto->open(), close(), start(), stop() calls are serialized.
18 * The order is: open, [ start, stop ... ] close ...
19 * - proto->start() and stop() are called with spin_lock_irq held.
20 */
21
22#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
24#include <linux/errno.h>
25#include <linux/hdlc.h>
26#include <linux/if_arp.h>
27#include <linux/inetdevice.h>
28#include <linux/init.h>
29#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/notifier.h>
32#include <linux/pkt_sched.h>
33#include <linux/poll.h>
34#include <linux/rtnetlink.h>
35#include <linux/skbuff.h>
36#include <linux/slab.h>
37#include <net/net_namespace.h>
38
39
40static const char* version = "HDLC support module revision 1.22";
41
42#undef DEBUG_LINK
43
44static struct hdlc_proto *first_proto;
45
46static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev,
47 struct packet_type *p, struct net_device *orig_dev)
48{
Olivier Deprez0e641232021-09-23 10:07:05 +020049 struct hdlc_device *hdlc;
50
51 /* First make sure "dev" is an HDLC device */
52 if (!(dev->priv_flags & IFF_WAN_HDLC)) {
53 kfree_skb(skb);
54 return NET_RX_SUCCESS;
55 }
56
57 hdlc = dev_to_hdlc(dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000058
59 if (!net_eq(dev_net(dev), &init_net)) {
60 kfree_skb(skb);
61 return 0;
62 }
63
64 BUG_ON(!hdlc->proto->netif_rx);
65 return hdlc->proto->netif_rx(skb);
66}
67
68netdev_tx_t hdlc_start_xmit(struct sk_buff *skb, struct net_device *dev)
69{
70 hdlc_device *hdlc = dev_to_hdlc(dev);
71
72 if (hdlc->proto->xmit)
73 return hdlc->proto->xmit(skb, dev);
74
75 return hdlc->xmit(skb, dev); /* call hardware driver directly */
76}
77
78static inline void hdlc_proto_start(struct net_device *dev)
79{
80 hdlc_device *hdlc = dev_to_hdlc(dev);
81 if (hdlc->proto->start)
82 hdlc->proto->start(dev);
83}
84
85
86
87static inline void hdlc_proto_stop(struct net_device *dev)
88{
89 hdlc_device *hdlc = dev_to_hdlc(dev);
90 if (hdlc->proto->stop)
91 hdlc->proto->stop(dev);
92}
93
94
95
96static int hdlc_device_event(struct notifier_block *this, unsigned long event,
97 void *ptr)
98{
99 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
100 hdlc_device *hdlc;
101 unsigned long flags;
102 int on;
103
104 if (!net_eq(dev_net(dev), &init_net))
105 return NOTIFY_DONE;
106
107 if (!(dev->priv_flags & IFF_WAN_HDLC))
108 return NOTIFY_DONE; /* not an HDLC device */
109
110 if (event != NETDEV_CHANGE)
111 return NOTIFY_DONE; /* Only interested in carrier changes */
112
113 on = netif_carrier_ok(dev);
114
115#ifdef DEBUG_LINK
116 printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n",
117 dev->name, on);
118#endif
119
120 hdlc = dev_to_hdlc(dev);
121 spin_lock_irqsave(&hdlc->state_lock, flags);
122
123 if (hdlc->carrier == on)
124 goto carrier_exit; /* no change in DCD line level */
125
126 hdlc->carrier = on;
127
128 if (!hdlc->open)
129 goto carrier_exit;
130
131 if (hdlc->carrier) {
132 netdev_info(dev, "Carrier detected\n");
133 hdlc_proto_start(dev);
134 } else {
135 netdev_info(dev, "Carrier lost\n");
136 hdlc_proto_stop(dev);
137 }
138
139carrier_exit:
140 spin_unlock_irqrestore(&hdlc->state_lock, flags);
141 return NOTIFY_DONE;
142}
143
144
145
146/* Must be called by hardware driver when HDLC device is being opened */
147int hdlc_open(struct net_device *dev)
148{
149 hdlc_device *hdlc = dev_to_hdlc(dev);
150#ifdef DEBUG_LINK
151 printk(KERN_DEBUG "%s: hdlc_open() carrier %i open %i\n", dev->name,
152 hdlc->carrier, hdlc->open);
153#endif
154
155 if (hdlc->proto == NULL)
156 return -ENOSYS; /* no protocol attached */
157
158 if (hdlc->proto->open) {
159 int result = hdlc->proto->open(dev);
160 if (result)
161 return result;
162 }
163
164 spin_lock_irq(&hdlc->state_lock);
165
166 if (hdlc->carrier) {
167 netdev_info(dev, "Carrier detected\n");
168 hdlc_proto_start(dev);
169 } else
170 netdev_info(dev, "No carrier\n");
171
172 hdlc->open = 1;
173
174 spin_unlock_irq(&hdlc->state_lock);
175 return 0;
176}
177
178
179
180/* Must be called by hardware driver when HDLC device is being closed */
181void hdlc_close(struct net_device *dev)
182{
183 hdlc_device *hdlc = dev_to_hdlc(dev);
184#ifdef DEBUG_LINK
185 printk(KERN_DEBUG "%s: hdlc_close() carrier %i open %i\n", dev->name,
186 hdlc->carrier, hdlc->open);
187#endif
188
189 spin_lock_irq(&hdlc->state_lock);
190
191 hdlc->open = 0;
192 if (hdlc->carrier)
193 hdlc_proto_stop(dev);
194
195 spin_unlock_irq(&hdlc->state_lock);
196
197 if (hdlc->proto->close)
198 hdlc->proto->close(dev);
199}
200
201
202
203int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
204{
205 struct hdlc_proto *proto = first_proto;
206 int result;
207
208 if (cmd != SIOCWANDEV)
209 return -EINVAL;
210
211 if (dev_to_hdlc(dev)->proto) {
212 result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr);
213 if (result != -EINVAL)
214 return result;
215 }
216
217 /* Not handled by currently attached protocol (if any) */
218
219 while (proto) {
220 if ((result = proto->ioctl(dev, ifr)) != -EINVAL)
221 return result;
222 proto = proto->next;
223 }
224 return -EINVAL;
225}
226
227static const struct header_ops hdlc_null_ops;
228
229static void hdlc_setup_dev(struct net_device *dev)
230{
231 /* Re-init all variables changed by HDLC protocol drivers,
232 * including ether_setup() called from hdlc_raw_eth.c.
233 */
234 dev->flags = IFF_POINTOPOINT | IFF_NOARP;
235 dev->priv_flags = IFF_WAN_HDLC;
236 dev->mtu = HDLC_MAX_MTU;
237 dev->min_mtu = 68;
238 dev->max_mtu = HDLC_MAX_MTU;
239 dev->type = ARPHRD_RAWHDLC;
240 dev->hard_header_len = 16;
241 dev->addr_len = 0;
242 dev->header_ops = &hdlc_null_ops;
243}
244
245static void hdlc_setup(struct net_device *dev)
246{
247 hdlc_device *hdlc = dev_to_hdlc(dev);
248
249 hdlc_setup_dev(dev);
250 hdlc->carrier = 1;
251 hdlc->open = 0;
252 spin_lock_init(&hdlc->state_lock);
253}
254
255struct net_device *alloc_hdlcdev(void *priv)
256{
257 struct net_device *dev;
258 dev = alloc_netdev(sizeof(struct hdlc_device), "hdlc%d",
259 NET_NAME_UNKNOWN, hdlc_setup);
260 if (dev)
261 dev_to_hdlc(dev)->priv = priv;
262 return dev;
263}
264
265void unregister_hdlc_device(struct net_device *dev)
266{
267 rtnl_lock();
268 detach_hdlc_protocol(dev);
269 unregister_netdevice(dev);
270 rtnl_unlock();
271}
272
273
274
275int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto,
276 size_t size)
277{
278 int err;
279
280 err = detach_hdlc_protocol(dev);
281 if (err)
282 return err;
283
284 if (!try_module_get(proto->module))
285 return -ENOSYS;
286
287 if (size) {
288 dev_to_hdlc(dev)->state = kmalloc(size, GFP_KERNEL);
289 if (dev_to_hdlc(dev)->state == NULL) {
290 module_put(proto->module);
291 return -ENOBUFS;
292 }
293 }
294 dev_to_hdlc(dev)->proto = proto;
295
296 return 0;
297}
298
299
300int detach_hdlc_protocol(struct net_device *dev)
301{
302 hdlc_device *hdlc = dev_to_hdlc(dev);
303 int err;
304
305 if (hdlc->proto) {
306 err = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, dev);
307 err = notifier_to_errno(err);
308 if (err) {
309 netdev_err(dev, "Refused to change device type\n");
310 return err;
311 }
312
313 if (hdlc->proto->detach)
314 hdlc->proto->detach(dev);
315 module_put(hdlc->proto->module);
316 hdlc->proto = NULL;
317 }
318 kfree(hdlc->state);
319 hdlc->state = NULL;
320 hdlc_setup_dev(dev);
321
322 return 0;
323}
324
325
326void register_hdlc_protocol(struct hdlc_proto *proto)
327{
328 rtnl_lock();
329 proto->next = first_proto;
330 first_proto = proto;
331 rtnl_unlock();
332}
333
334
335void unregister_hdlc_protocol(struct hdlc_proto *proto)
336{
337 struct hdlc_proto **p;
338
339 rtnl_lock();
340 p = &first_proto;
341 while (*p != proto) {
342 BUG_ON(!*p);
343 p = &((*p)->next);
344 }
345 *p = proto->next;
346 rtnl_unlock();
347}
348
349
350
351MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
352MODULE_DESCRIPTION("HDLC support module");
353MODULE_LICENSE("GPL v2");
354
355EXPORT_SYMBOL(hdlc_start_xmit);
356EXPORT_SYMBOL(hdlc_open);
357EXPORT_SYMBOL(hdlc_close);
358EXPORT_SYMBOL(hdlc_ioctl);
359EXPORT_SYMBOL(alloc_hdlcdev);
360EXPORT_SYMBOL(unregister_hdlc_device);
361EXPORT_SYMBOL(register_hdlc_protocol);
362EXPORT_SYMBOL(unregister_hdlc_protocol);
363EXPORT_SYMBOL(attach_hdlc_protocol);
364EXPORT_SYMBOL(detach_hdlc_protocol);
365
366static struct packet_type hdlc_packet_type __read_mostly = {
367 .type = cpu_to_be16(ETH_P_HDLC),
368 .func = hdlc_rcv,
369};
370
371
372static struct notifier_block hdlc_notifier = {
373 .notifier_call = hdlc_device_event,
374};
375
376
377static int __init hdlc_module_init(void)
378{
379 int result;
380
381 pr_info("%s\n", version);
382 if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0)
383 return result;
384 dev_add_pack(&hdlc_packet_type);
385 return 0;
386}
387
388
389
390static void __exit hdlc_module_exit(void)
391{
392 dev_remove_pack(&hdlc_packet_type);
393 unregister_netdevice_notifier(&hdlc_notifier);
394}
395
396
397module_init(hdlc_module_init);
398module_exit(hdlc_module_exit);