1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic HDLC support routines for Linux
5 * Copyright (C) 1999 - 2008 Krzysztof Halasa <khc@pm.waw.pl>
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>
39 static const char *version
= "HDLC support module revision 1.22";
43 static struct hdlc_proto
*first_proto
;
45 static int hdlc_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
46 struct packet_type
*p
, struct net_device
*orig_dev
)
48 struct hdlc_device
*hdlc
;
50 /* First make sure "dev" is an HDLC device */
51 if (!(dev
->priv_flags
& IFF_WAN_HDLC
)) {
53 return NET_RX_SUCCESS
;
56 hdlc
= dev_to_hdlc(dev
);
58 if (!net_eq(dev_net(dev
), &init_net
)) {
63 BUG_ON(!hdlc
->proto
->netif_rx
);
64 return hdlc
->proto
->netif_rx(skb
);
67 netdev_tx_t
hdlc_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
69 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
71 if (hdlc
->proto
->xmit
)
72 return hdlc
->proto
->xmit(skb
, dev
);
74 return hdlc
->xmit(skb
, dev
); /* call hardware driver directly */
76 EXPORT_SYMBOL(hdlc_start_xmit
);
78 static inline void hdlc_proto_start(struct net_device
*dev
)
80 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
82 if (hdlc
->proto
->start
)
83 hdlc
->proto
->start(dev
);
86 static inline void hdlc_proto_stop(struct net_device
*dev
)
88 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
90 if (hdlc
->proto
->stop
)
91 hdlc
->proto
->stop(dev
);
94 static int hdlc_device_event(struct notifier_block
*this, unsigned long event
,
97 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
102 if (!net_eq(dev_net(dev
), &init_net
))
105 if (!(dev
->priv_flags
& IFF_WAN_HDLC
))
106 return NOTIFY_DONE
; /* not an HDLC device */
108 if (event
!= NETDEV_CHANGE
)
109 return NOTIFY_DONE
; /* Only interested in carrier changes */
111 on
= netif_carrier_ok(dev
);
114 printk(KERN_DEBUG
"%s: hdlc_device_event NETDEV_CHANGE, carrier %i\n",
118 hdlc
= dev_to_hdlc(dev
);
119 spin_lock_irqsave(&hdlc
->state_lock
, flags
);
121 if (hdlc
->carrier
== on
)
122 goto carrier_exit
; /* no change in DCD line level */
130 netdev_info(dev
, "Carrier detected\n");
131 hdlc_proto_start(dev
);
133 netdev_info(dev
, "Carrier lost\n");
134 hdlc_proto_stop(dev
);
138 spin_unlock_irqrestore(&hdlc
->state_lock
, flags
);
142 /* Must be called by hardware driver when HDLC device is being opened */
143 int hdlc_open(struct net_device
*dev
)
145 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
147 printk(KERN_DEBUG
"%s: hdlc_open() carrier %i open %i\n", dev
->name
,
148 hdlc
->carrier
, hdlc
->open
);
152 return -ENOSYS
; /* no protocol attached */
154 if (hdlc
->proto
->open
) {
155 int result
= hdlc
->proto
->open(dev
);
161 spin_lock_irq(&hdlc
->state_lock
);
164 netdev_info(dev
, "Carrier detected\n");
165 hdlc_proto_start(dev
);
167 netdev_info(dev
, "No carrier\n");
172 spin_unlock_irq(&hdlc
->state_lock
);
175 EXPORT_SYMBOL(hdlc_open
);
177 /* Must be called by hardware driver when HDLC device is being closed */
178 void hdlc_close(struct net_device
*dev
)
180 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
182 printk(KERN_DEBUG
"%s: hdlc_close() carrier %i open %i\n", dev
->name
,
183 hdlc
->carrier
, hdlc
->open
);
186 spin_lock_irq(&hdlc
->state_lock
);
190 hdlc_proto_stop(dev
);
192 spin_unlock_irq(&hdlc
->state_lock
);
194 if (hdlc
->proto
->close
)
195 hdlc
->proto
->close(dev
);
197 EXPORT_SYMBOL(hdlc_close
);
199 int hdlc_ioctl(struct net_device
*dev
, struct if_settings
*ifs
)
201 struct hdlc_proto
*proto
= first_proto
;
204 if (dev_to_hdlc(dev
)->proto
) {
205 result
= dev_to_hdlc(dev
)->proto
->ioctl(dev
, ifs
);
206 if (result
!= -EINVAL
)
210 /* Not handled by currently attached protocol (if any) */
213 result
= proto
->ioctl(dev
, ifs
);
214 if (result
!= -EINVAL
)
220 EXPORT_SYMBOL(hdlc_ioctl
);
222 static const struct header_ops hdlc_null_ops
;
224 static void hdlc_setup_dev(struct net_device
*dev
)
226 /* Re-init all variables changed by HDLC protocol drivers,
227 * including ether_setup() called from hdlc_raw_eth.c.
229 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
;
230 dev
->priv_flags
= IFF_WAN_HDLC
;
231 dev
->mtu
= HDLC_MAX_MTU
;
233 dev
->max_mtu
= HDLC_MAX_MTU
;
234 dev
->type
= ARPHRD_RAWHDLC
;
235 dev
->hard_header_len
= 0;
236 dev
->needed_headroom
= 0;
238 dev
->header_ops
= &hdlc_null_ops
;
241 static void hdlc_setup(struct net_device
*dev
)
243 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
248 spin_lock_init(&hdlc
->state_lock
);
251 struct net_device
*alloc_hdlcdev(void *priv
)
253 struct net_device
*dev
;
255 dev
= alloc_netdev(sizeof(struct hdlc_device
), "hdlc%d",
256 NET_NAME_UNKNOWN
, hdlc_setup
);
258 dev_to_hdlc(dev
)->priv
= priv
;
261 EXPORT_SYMBOL(alloc_hdlcdev
);
263 void unregister_hdlc_device(struct net_device
*dev
)
266 detach_hdlc_protocol(dev
);
267 unregister_netdevice(dev
);
270 EXPORT_SYMBOL(unregister_hdlc_device
);
272 int attach_hdlc_protocol(struct net_device
*dev
, struct hdlc_proto
*proto
,
277 err
= detach_hdlc_protocol(dev
);
281 if (!try_module_get(proto
->module
))
285 dev_to_hdlc(dev
)->state
= kmalloc(size
, GFP_KERNEL
);
286 if (!dev_to_hdlc(dev
)->state
) {
287 module_put(proto
->module
);
291 dev_to_hdlc(dev
)->proto
= proto
;
295 EXPORT_SYMBOL(attach_hdlc_protocol
);
297 int detach_hdlc_protocol(struct net_device
*dev
)
299 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
303 err
= call_netdevice_notifiers(NETDEV_PRE_TYPE_CHANGE
, dev
);
304 err
= notifier_to_errno(err
);
306 netdev_err(dev
, "Refused to change device type\n");
310 if (hdlc
->proto
->detach
)
311 hdlc
->proto
->detach(dev
);
312 module_put(hdlc
->proto
->module
);
321 EXPORT_SYMBOL(detach_hdlc_protocol
);
323 void register_hdlc_protocol(struct hdlc_proto
*proto
)
326 proto
->next
= first_proto
;
330 EXPORT_SYMBOL(register_hdlc_protocol
);
332 void unregister_hdlc_protocol(struct hdlc_proto
*proto
)
334 struct hdlc_proto
**p
;
338 while (*p
!= proto
) {
345 EXPORT_SYMBOL(unregister_hdlc_protocol
);
347 MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
348 MODULE_DESCRIPTION("HDLC support module");
349 MODULE_LICENSE("GPL v2");
351 static struct packet_type hdlc_packet_type __read_mostly
= {
352 .type
= cpu_to_be16(ETH_P_HDLC
),
356 static struct notifier_block hdlc_notifier
= {
357 .notifier_call
= hdlc_device_event
,
360 static int __init
hdlc_module_init(void)
364 pr_info("%s\n", version
);
365 result
= register_netdevice_notifier(&hdlc_notifier
);
368 dev_add_pack(&hdlc_packet_type
);
372 static void __exit
hdlc_module_exit(void)
374 dev_remove_pack(&hdlc_packet_type
);
375 unregister_netdevice_notifier(&hdlc_notifier
);
378 module_init(hdlc_module_init
);
379 module_exit(hdlc_module_exit
);