2 * Generic HDLC support routines for Linux
5 * Copyright (C) 2000 - 2006 Krzysztof Halasa <khc@pm.waw.pl>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License
9 * as published by the Free Software Foundation.
12 #include <linux/errno.h>
13 #include <linux/hdlc.h>
14 #include <linux/if_arp.h>
15 #include <linux/inetdevice.h>
16 #include <linux/init.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/pkt_sched.h>
20 #include <linux/poll.h>
21 #include <linux/rtnetlink.h>
22 #include <linux/skbuff.h>
23 #include <linux/slab.h>
25 #undef DEBUG_HARD_HEADER
27 #define CISCO_MULTICAST 0x8F /* Cisco multicast address */
28 #define CISCO_UNICAST 0x0F /* Cisco unicast address */
29 #define CISCO_KEEPALIVE 0x8035 /* Cisco keepalive protocol */
30 #define CISCO_SYS_INFO 0x2000 /* Cisco interface/system info */
31 #define CISCO_ADDR_REQ 0 /* Cisco address request */
32 #define CISCO_ADDR_REPLY 1 /* Cisco address reply */
33 #define CISCO_KEEPALIVE_REQ 2 /* Cisco keepalive request */
40 }__attribute__ ((packed));
44 __be32 type; /* code */
47 __be16 rel; /* reliability */
49 }__attribute__ ((packed));
50 #define CISCO_PACKET_LEN 18
51 #define CISCO_BIG_PACKET_LEN 20
57 struct timer_list timer;
59 unsigned long last_poll;
62 u32 txseq; /* TX sequence number */
63 u32 rxseq; /* RX sequence number */
67 static int cisco_ioctl(struct net_device *dev, struct ifreq *ifr);
70 static inline struct cisco_state* state(hdlc_device *hdlc)
72 return (struct cisco_state *)hdlc->state;
76 static int cisco_hard_header(struct sk_buff *skb, struct net_device *dev,
77 u16 type, const void *daddr, const void *saddr,
80 struct hdlc_header *data;
81 #ifdef DEBUG_HARD_HEADER
82 printk(KERN_DEBUG "%s: cisco_hard_header called\n", dev->name);
85 skb_push(skb, sizeof(struct hdlc_header));
86 data = (struct hdlc_header*)skb->data;
87 if (type == CISCO_KEEPALIVE)
88 data->address = CISCO_MULTICAST;
90 data->address = CISCO_UNICAST;
92 data->protocol = htons(type);
94 return sizeof(struct hdlc_header);
99 static void cisco_keepalive_send(struct net_device *dev, u32 type,
100 __be32 par1, __be32 par2)
103 struct cisco_packet *data;
105 skb = dev_alloc_skb(sizeof(struct hdlc_header) +
106 sizeof(struct cisco_packet));
109 "%s: Memory squeeze on cisco_keepalive_send()\n",
114 cisco_hard_header(skb, dev, CISCO_KEEPALIVE, NULL, NULL, 0);
115 data = (struct cisco_packet*)(skb->data + 4);
117 data->type = htonl(type);
120 data->rel = __constant_htons(0xFFFF);
121 /* we will need do_div here if 1000 % HZ != 0 */
122 data->time = htonl((jiffies - INITIAL_JIFFIES) * (1000 / HZ));
124 skb_put(skb, sizeof(struct cisco_packet));
125 skb->priority = TC_PRIO_CONTROL;
127 skb_reset_network_header(skb);
134 static __be16 cisco_type_trans(struct sk_buff *skb, struct net_device *dev)
136 struct hdlc_header *data = (struct hdlc_header*)skb->data;
138 if (skb->len < sizeof(struct hdlc_header))
139 return __constant_htons(ETH_P_HDLC);
141 if (data->address != CISCO_MULTICAST &&
142 data->address != CISCO_UNICAST)
143 return __constant_htons(ETH_P_HDLC);
145 switch(data->protocol) {
146 case __constant_htons(ETH_P_IP):
147 case __constant_htons(ETH_P_IPX):
148 case __constant_htons(ETH_P_IPV6):
149 skb_pull(skb, sizeof(struct hdlc_header));
150 return data->protocol;
152 return __constant_htons(ETH_P_HDLC);
157 static int cisco_rx(struct sk_buff *skb)
159 struct net_device *dev = skb->dev;
160 hdlc_device *hdlc = dev_to_hdlc(dev);
161 struct cisco_state *st = state(hdlc);
162 struct hdlc_header *data = (struct hdlc_header*)skb->data;
163 struct cisco_packet *cisco_data;
164 struct in_device *in_dev;
167 if (skb->len < sizeof(struct hdlc_header))
170 if (data->address != CISCO_MULTICAST &&
171 data->address != CISCO_UNICAST)
174 switch (ntohs(data->protocol)) {
176 /* Packet is not needed, drop it. */
177 dev_kfree_skb_any(skb);
178 return NET_RX_SUCCESS;
180 case CISCO_KEEPALIVE:
181 if ((skb->len != sizeof(struct hdlc_header) +
183 (skb->len != sizeof(struct hdlc_header) +
184 CISCO_BIG_PACKET_LEN)) {
185 printk(KERN_INFO "%s: Invalid length of Cisco control"
186 " packet (%d bytes)\n", dev->name, skb->len);
190 cisco_data = (struct cisco_packet*)(skb->data + sizeof
191 (struct hdlc_header));
193 switch(ntohl (cisco_data->type)) {
194 case CISCO_ADDR_REQ: /* Stolen from syncppp.c :-) */
195 in_dev = dev->ip_ptr;
197 mask = __constant_htonl(~0); /* is the mask correct? */
199 if (in_dev != NULL) {
200 struct in_ifaddr **ifap = &in_dev->ifa_list;
202 while (*ifap != NULL) {
203 if (strcmp(dev->name,
204 (*ifap)->ifa_label) == 0) {
205 addr = (*ifap)->ifa_local;
206 mask = (*ifap)->ifa_mask;
209 ifap = &(*ifap)->ifa_next;
212 cisco_keepalive_send(dev, CISCO_ADDR_REPLY,
215 dev_kfree_skb_any(skb);
216 return NET_RX_SUCCESS;
218 case CISCO_ADDR_REPLY:
219 printk(KERN_INFO "%s: Unexpected Cisco IP address "
220 "reply\n", dev->name);
223 case CISCO_KEEPALIVE_REQ:
224 spin_lock(&st->lock);
225 st->rxseq = ntohl(cisco_data->par1);
226 if (st->request_sent &&
227 ntohl(cisco_data->par2) == st->txseq) {
228 st->last_poll = jiffies;
230 u32 sec, min, hrs, days;
231 sec = ntohl(cisco_data->time) / 1000;
232 min = sec / 60; sec -= min * 60;
233 hrs = min / 60; min -= hrs * 60;
234 days = hrs / 24; hrs -= days * 24;
235 printk(KERN_INFO "%s: Link up (peer "
236 "uptime %ud%uh%um%us)\n",
237 dev->name, days, hrs, min, sec);
238 netif_dormant_off(dev);
242 spin_unlock(&st->lock);
244 dev_kfree_skb_any(skb);
245 return NET_RX_SUCCESS;
246 } /* switch(keepalive type) */
247 } /* switch(protocol) */
249 printk(KERN_INFO "%s: Unsupported protocol %x\n", dev->name,
250 ntohs(data->protocol));
251 dev_kfree_skb_any(skb);
255 dev->stats.rx_errors++; /* Mark error */
256 dev_kfree_skb_any(skb);
262 static void cisco_timer(unsigned long arg)
264 struct net_device *dev = (struct net_device *)arg;
265 hdlc_device *hdlc = dev_to_hdlc(dev);
266 struct cisco_state *st = state(hdlc);
268 spin_lock(&st->lock);
270 time_after(jiffies, st->last_poll + st->settings.timeout * HZ)) {
272 printk(KERN_INFO "%s: Link down\n", dev->name);
273 netif_dormant_on(dev);
276 cisco_keepalive_send(dev, CISCO_KEEPALIVE_REQ, htonl(++st->txseq),
278 st->request_sent = 1;
279 spin_unlock(&st->lock);
281 st->timer.expires = jiffies + st->settings.interval * HZ;
282 st->timer.function = cisco_timer;
283 st->timer.data = arg;
284 add_timer(&st->timer);
289 static void cisco_start(struct net_device *dev)
291 hdlc_device *hdlc = dev_to_hdlc(dev);
292 struct cisco_state *st = state(hdlc);
295 spin_lock_irqsave(&st->lock, flags);
297 st->request_sent = 0;
298 st->txseq = st->rxseq = 0;
299 spin_unlock_irqrestore(&st->lock, flags);
301 init_timer(&st->timer);
302 st->timer.expires = jiffies + HZ; /* First poll after 1 s */
303 st->timer.function = cisco_timer;
304 st->timer.data = (unsigned long)dev;
305 add_timer(&st->timer);
310 static void cisco_stop(struct net_device *dev)
312 hdlc_device *hdlc = dev_to_hdlc(dev);
313 struct cisco_state *st = state(hdlc);
316 del_timer_sync(&st->timer);
318 spin_lock_irqsave(&st->lock, flags);
319 netif_dormant_on(dev);
321 st->request_sent = 0;
322 spin_unlock_irqrestore(&st->lock, flags);
326 static struct hdlc_proto proto = {
327 .start = cisco_start,
329 .type_trans = cisco_type_trans,
330 .ioctl = cisco_ioctl,
331 .netif_rx = cisco_rx,
332 .module = THIS_MODULE,
335 static const struct header_ops cisco_header_ops = {
336 .create = cisco_hard_header,
339 static int cisco_ioctl(struct net_device *dev, struct ifreq *ifr)
341 cisco_proto __user *cisco_s = ifr->ifr_settings.ifs_ifsu.cisco;
342 const size_t size = sizeof(cisco_proto);
343 cisco_proto new_settings;
344 hdlc_device *hdlc = dev_to_hdlc(dev);
347 switch (ifr->ifr_settings.type) {
349 if (dev_to_hdlc(dev)->proto != &proto)
351 ifr->ifr_settings.type = IF_PROTO_CISCO;
352 if (ifr->ifr_settings.size < size) {
353 ifr->ifr_settings.size = size; /* data size wanted */
356 if (copy_to_user(cisco_s, &state(hdlc)->settings, size))
361 if (!capable(CAP_NET_ADMIN))
364 if (dev->flags & IFF_UP)
367 if (copy_from_user(&new_settings, cisco_s, size))
370 if (new_settings.interval < 1 ||
371 new_settings.timeout < 2)
374 result = hdlc->attach(dev, ENCODING_NRZ,PARITY_CRC16_PR1_CCITT);
378 result = attach_hdlc_protocol(dev, &proto,
379 sizeof(struct cisco_state));
383 memcpy(&state(hdlc)->settings, &new_settings, size);
384 spin_lock_init(&state(hdlc)->lock);
385 dev->hard_start_xmit = hdlc->xmit;
386 dev->header_ops = &cisco_header_ops;
387 dev->type = ARPHRD_CISCO;
388 netif_dormant_on(dev);
396 static int __init mod_init(void)
398 register_hdlc_protocol(&proto);
404 static void __exit mod_exit(void)
406 unregister_hdlc_protocol(&proto);
410 module_init(mod_init);
411 module_exit(mod_exit);
413 MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
414 MODULE_DESCRIPTION("Cisco HDLC protocol support for generic HDLC");
415 MODULE_LICENSE("GPL v2");