1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic HDLC support routines for Linux
10 * * Frame Relay with ANSI or CCITT LMI (both user and network side)
14 * Use sethdlc utility to set line parameters, protocol and PVCs
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.
22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
40 static const char* version = "HDLC support module revision 1.22";
44 static struct hdlc_proto *first_proto;
46 static int hdlc_rcv(struct sk_buff *skb, struct net_device *dev,
47 struct packet_type *p, struct net_device *orig_dev)
49 struct hdlc_device *hdlc;
51 /* First make sure "dev" is an HDLC device */
52 if (!(dev->priv_flags & IFF_WAN_HDLC)) {
54 return NET_RX_SUCCESS;
57 hdlc = dev_to_hdlc(dev);
59 if (!net_eq(dev_net(dev), &init_net)) {
64 BUG_ON(!hdlc->proto->netif_rx);
65 return hdlc->proto->netif_rx(skb);
68 netdev_tx_t hdlc_start_xmit(struct sk_buff *skb, struct net_device *dev)
70 hdlc_device *hdlc = dev_to_hdlc(dev);
72 if (hdlc->proto->xmit)
73 return hdlc->proto->xmit(skb, dev);
75 return hdlc->xmit(skb, dev); /* call hardware driver directly */
78 static inline void hdlc_proto_start(struct net_device *dev)
80 hdlc_device *hdlc = dev_to_hdlc(dev);
81 if (hdlc->proto->start)
82 hdlc->proto->start(dev);
87 static inline void hdlc_proto_stop(struct net_device *dev)
89 hdlc_device *hdlc = dev_to_hdlc(dev);
90 if (hdlc->proto->stop)
91 hdlc->proto->stop(dev);
96 static int hdlc_device_event(struct notifier_block *this, unsigned long event,
99 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
104 if (!net_eq(dev_net(dev), &init_net))
107 if (!(dev->priv_flags & IFF_WAN_HDLC))
108 return NOTIFY_DONE; /* not an HDLC device */
110 if (event != NETDEV_CHANGE)
111 return NOTIFY_DONE; /* Only interested in carrier changes */
113 on = netif_carrier_ok(dev);
116 printk(KERN_DEBUG "%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n",
120 hdlc = dev_to_hdlc(dev);
121 spin_lock_irqsave(&hdlc->state_lock, flags);
123 if (hdlc->carrier == on)
124 goto carrier_exit; /* no change in DCD line level */
132 netdev_info(dev, "Carrier detected\n");
133 hdlc_proto_start(dev);
135 netdev_info(dev, "Carrier lost\n");
136 hdlc_proto_stop(dev);
140 spin_unlock_irqrestore(&hdlc->state_lock, flags);
146 /* Must be called by hardware driver when HDLC device is being opened */
147 int hdlc_open(struct net_device *dev)
149 hdlc_device *hdlc = dev_to_hdlc(dev);
151 printk(KERN_DEBUG "%s: hdlc_open() carrier %i open %i\n", dev->name,
152 hdlc->carrier, hdlc->open);
155 if (hdlc->proto == NULL)
156 return -ENOSYS; /* no protocol attached */
158 if (hdlc->proto->open) {
159 int result = hdlc->proto->open(dev);
164 spin_lock_irq(&hdlc->state_lock);
167 netdev_info(dev, "Carrier detected\n");
168 hdlc_proto_start(dev);
170 netdev_info(dev, "No carrier\n");
174 spin_unlock_irq(&hdlc->state_lock);
180 /* Must be called by hardware driver when HDLC device is being closed */
181 void hdlc_close(struct net_device *dev)
183 hdlc_device *hdlc = dev_to_hdlc(dev);
185 printk(KERN_DEBUG "%s: hdlc_close() carrier %i open %i\n", dev->name,
186 hdlc->carrier, hdlc->open);
189 spin_lock_irq(&hdlc->state_lock);
193 hdlc_proto_stop(dev);
195 spin_unlock_irq(&hdlc->state_lock);
197 if (hdlc->proto->close)
198 hdlc->proto->close(dev);
203 int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
205 struct hdlc_proto *proto = first_proto;
208 if (cmd != SIOCWANDEV)
211 if (dev_to_hdlc(dev)->proto) {
212 result = dev_to_hdlc(dev)->proto->ioctl(dev, ifr);
213 if (result != -EINVAL)
217 /* Not handled by currently attached protocol (if any) */
220 if ((result = proto->ioctl(dev, ifr)) != -EINVAL)
227 static const struct header_ops hdlc_null_ops;
229 static void hdlc_setup_dev(struct net_device *dev)
231 /* Re-init all variables changed by HDLC protocol drivers,
232 * including ether_setup() called from hdlc_raw_eth.c.
234 dev->flags = IFF_POINTOPOINT | IFF_NOARP;
235 dev->priv_flags = IFF_WAN_HDLC;
236 dev->mtu = HDLC_MAX_MTU;
238 dev->max_mtu = HDLC_MAX_MTU;
239 dev->type = ARPHRD_RAWHDLC;
240 dev->hard_header_len = 0;
241 dev->needed_headroom = 0;
243 dev->header_ops = &hdlc_null_ops;
246 static void hdlc_setup(struct net_device *dev)
248 hdlc_device *hdlc = dev_to_hdlc(dev);
253 spin_lock_init(&hdlc->state_lock);
256 struct net_device *alloc_hdlcdev(void *priv)
258 struct net_device *dev;
259 dev = alloc_netdev(sizeof(struct hdlc_device), "hdlc%d",
260 NET_NAME_UNKNOWN, hdlc_setup);
262 dev_to_hdlc(dev)->priv = priv;
266 void unregister_hdlc_device(struct net_device *dev)
269 detach_hdlc_protocol(dev);
270 unregister_netdevice(dev);
276 int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto,
281 err = detach_hdlc_protocol(dev);
285 if (!try_module_get(proto->module))
289 dev_to_hdlc(dev)->state = kmalloc(size, GFP_KERNEL);
290 if (dev_to_hdlc(dev)->state == NULL) {
291 module_put(proto->module);
295 dev_to_hdlc(dev)->proto = proto;
301 int detach_hdlc_protocol(struct net_device *dev)
303 hdlc_device *hdlc = dev_to_hdlc(dev);
307 err = call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE, dev);
308 err = notifier_to_errno(err);
310 netdev_err(dev, "Refused to change device type\n");
314 if (hdlc->proto->detach)
315 hdlc->proto->detach(dev);
316 module_put(hdlc->proto->module);
327 void register_hdlc_protocol(struct hdlc_proto *proto)
330 proto->next = first_proto;
336 void unregister_hdlc_protocol(struct hdlc_proto *proto)
338 struct hdlc_proto **p;
342 while (*p != proto) {
353 MODULE_DESCRIPTION("HDLC support module");
354 MODULE_LICENSE("GPL v2");
356 EXPORT_SYMBOL(hdlc_start_xmit);
357 EXPORT_SYMBOL(hdlc_open);
358 EXPORT_SYMBOL(hdlc_close);
359 EXPORT_SYMBOL(hdlc_ioctl);
360 EXPORT_SYMBOL(alloc_hdlcdev);
361 EXPORT_SYMBOL(unregister_hdlc_device);
362 EXPORT_SYMBOL(register_hdlc_protocol);
363 EXPORT_SYMBOL(unregister_hdlc_protocol);
364 EXPORT_SYMBOL(attach_hdlc_protocol);
365 EXPORT_SYMBOL(detach_hdlc_protocol);
367 static struct packet_type hdlc_packet_type __read_mostly = {
368 .type = cpu_to_be16(ETH_P_HDLC),
373 static struct notifier_block hdlc_notifier = {
374 .notifier_call = hdlc_device_event,
378 static int __init hdlc_module_init(void)
382 pr_info("%s\n", version);
383 if ((result = register_netdevice_notifier(&hdlc_notifier)) != 0)
385 dev_add_pack(&hdlc_packet_type);
391 static void __exit hdlc_module_exit(void)
393 dev_remove_pack(&hdlc_packet_type);
394 unregister_netdevice_notifier(&hdlc_notifier);
398 module_init(hdlc_module_init);
399 module_exit(hdlc_module_exit);