1 // SPDX-License-Identifier: GPL-2.0-only
3 * Generic HDLC support routines for Linux
6 * Copyright (C) 1999 - 2006 Krzysztof Halasa <khc@pm.waw.pl>
9 #include <linux/errno.h>
10 #include <linux/hdlc.h>
11 #include <linux/if_arp.h>
12 #include <linux/inetdevice.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/pkt_sched.h>
17 #include <linux/poll.h>
18 #include <linux/rtnetlink.h>
19 #include <linux/skbuff.h>
22 static int raw_ioctl(struct net_device
*dev
, struct ifreq
*ifr
);
24 static __be16
raw_type_trans(struct sk_buff
*skb
, struct net_device
*dev
)
26 return cpu_to_be16(ETH_P_IP
);
29 static struct hdlc_proto proto
= {
30 .type_trans
= raw_type_trans
,
32 .module
= THIS_MODULE
,
36 static int raw_ioctl(struct net_device
*dev
, struct ifreq
*ifr
)
38 raw_hdlc_proto __user
*raw_s
= ifr
->ifr_settings
.ifs_ifsu
.raw_hdlc
;
39 const size_t size
= sizeof(raw_hdlc_proto
);
40 raw_hdlc_proto new_settings
;
41 hdlc_device
*hdlc
= dev_to_hdlc(dev
);
44 switch (ifr
->ifr_settings
.type
) {
46 if (dev_to_hdlc(dev
)->proto
!= &proto
)
48 ifr
->ifr_settings
.type
= IF_PROTO_HDLC
;
49 if (ifr
->ifr_settings
.size
< size
) {
50 ifr
->ifr_settings
.size
= size
; /* data size wanted */
53 if (copy_to_user(raw_s
, hdlc
->state
, size
))
58 if (!capable(CAP_NET_ADMIN
))
61 if (dev
->flags
& IFF_UP
)
64 if (copy_from_user(&new_settings
, raw_s
, size
))
67 if (new_settings
.encoding
== ENCODING_DEFAULT
)
68 new_settings
.encoding
= ENCODING_NRZ
;
70 if (new_settings
.parity
== PARITY_DEFAULT
)
71 new_settings
.parity
= PARITY_CRC16_PR1_CCITT
;
73 result
= hdlc
->attach(dev
, new_settings
.encoding
,
78 result
= attach_hdlc_protocol(dev
, &proto
,
79 sizeof(raw_hdlc_proto
));
82 memcpy(hdlc
->state
, &new_settings
, size
);
83 dev
->type
= ARPHRD_RAWHDLC
;
84 call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE
, dev
);
85 netif_dormant_off(dev
);
93 static int __init
mod_init(void)
95 register_hdlc_protocol(&proto
);
101 static void __exit
mod_exit(void)
103 unregister_hdlc_protocol(&proto
);
107 module_init(mod_init
);
108 module_exit(mod_exit
);
110 MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
111 MODULE_DESCRIPTION("Raw HDLC protocol support for generic HDLC");
112 MODULE_LICENSE("GPL v2");