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