blob: b1e5e5b69c2a3370e88aadee23b7840566005d44 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic HDLC support routines for Linux
3 * Cisco HDLC support
4 *
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +02005 * Copyright (C) 2000 - 2006 Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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.
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/hdlc.h>
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +020014#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#undef DEBUG_HARD_HEADER
25
26#define CISCO_MULTICAST 0x8F /* Cisco multicast address */
27#define CISCO_UNICAST 0x0F /* Cisco unicast address */
28#define CISCO_KEEPALIVE 0x8035 /* Cisco keepalive protocol */
29#define CISCO_SYS_INFO 0x2000 /* Cisco interface/system info */
30#define CISCO_ADDR_REQ 0 /* Cisco address request */
31#define CISCO_ADDR_REPLY 1 /* Cisco address reply */
32#define CISCO_KEEPALIVE_REQ 2 /* Cisco keepalive request */
33
34
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020035struct hdlc_header {
36 u8 address;
37 u8 control;
Krzysztof Halasaabf17ff2007-04-27 13:13:33 +020038 __be16 protocol;
Eric Dumazetba2d3582010-06-02 18:10:09 +000039}__packed;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020040
41
42struct cisco_packet {
Krzysztof Halasaabf17ff2007-04-27 13:13:33 +020043 __be32 type; /* code */
44 __be32 par1;
45 __be32 par2;
46 __be16 rel; /* reliability */
47 __be32 time;
Eric Dumazetba2d3582010-06-02 18:10:09 +000048}__packed;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020049#define CISCO_PACKET_LEN 18
50#define CISCO_BIG_PACKET_LEN 20
51
52
53struct cisco_state {
54 cisco_proto settings;
55
56 struct timer_list timer;
Krzysztof Halasaaff26e22008-05-19 19:11:08 +020057 spinlock_t lock;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020058 unsigned long last_poll;
59 int up;
Krzysztof Halasa96520412009-10-09 06:16:10 +000060 u32 txseq; /* TX sequence number, 0 = none */
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020061 u32 rxseq; /* RX sequence number */
62};
63
64
65static int cisco_ioctl(struct net_device *dev, struct ifreq *ifr);
66
67
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +020068static inline struct cisco_state* state(hdlc_device *hdlc)
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020069{
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +020070 return (struct cisco_state *)hdlc->state;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020071}
72
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static int cisco_hard_header(struct sk_buff *skb, struct net_device *dev,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -070075 u16 type, const void *daddr, const void *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned int len)
77{
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020078 struct hdlc_header *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#ifdef DEBUG_HARD_HEADER
80 printk(KERN_DEBUG "%s: cisco_hard_header called\n", dev->name);
81#endif
82
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020083 skb_push(skb, sizeof(struct hdlc_header));
84 data = (struct hdlc_header*)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (type == CISCO_KEEPALIVE)
86 data->address = CISCO_MULTICAST;
87 else
88 data->address = CISCO_UNICAST;
89 data->control = 0;
90 data->protocol = htons(type);
91
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020092 return sizeof(struct hdlc_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95
96
97static void cisco_keepalive_send(struct net_device *dev, u32 type,
Krzysztof Halasaabf17ff2007-04-27 13:13:33 +020098 __be32 par1, __be32 par2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 struct sk_buff *skb;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200101 struct cisco_packet *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200103 skb = dev_alloc_skb(sizeof(struct hdlc_header) +
104 sizeof(struct cisco_packet));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (!skb) {
106 printk(KERN_WARNING
107 "%s: Memory squeeze on cisco_keepalive_send()\n",
108 dev->name);
109 return;
110 }
111 skb_reserve(skb, 4);
112 cisco_hard_header(skb, dev, CISCO_KEEPALIVE, NULL, NULL, 0);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200113 data = (struct cisco_packet*)(skb->data + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 data->type = htonl(type);
Krzysztof Halasaabf17ff2007-04-27 13:13:33 +0200116 data->par1 = par1;
117 data->par2 = par2;
Harvey Harrison09640e62009-02-01 00:45:17 -0800118 data->rel = cpu_to_be16(0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* we will need do_div here if 1000 % HZ != 0 */
120 data->time = htonl((jiffies - INITIAL_JIFFIES) * (1000 / HZ));
121
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200122 skb_put(skb, sizeof(struct cisco_packet));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 skb->priority = TC_PRIO_CONTROL;
124 skb->dev = dev;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700125 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 dev_queue_xmit(skb);
128}
129
130
131
Alexey Dobriyanab611482005-07-12 12:08:43 -0700132static __be16 cisco_type_trans(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200134 struct hdlc_header *data = (struct hdlc_header*)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200136 if (skb->len < sizeof(struct hdlc_header))
Harvey Harrison09640e62009-02-01 00:45:17 -0800137 return cpu_to_be16(ETH_P_HDLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 if (data->address != CISCO_MULTICAST &&
140 data->address != CISCO_UNICAST)
Harvey Harrison09640e62009-02-01 00:45:17 -0800141 return cpu_to_be16(ETH_P_HDLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Rudy Matela640462c2009-12-09 11:35:40 -0300143 switch (data->protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -0800144 case cpu_to_be16(ETH_P_IP):
145 case cpu_to_be16(ETH_P_IPX):
146 case cpu_to_be16(ETH_P_IPV6):
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200147 skb_pull(skb, sizeof(struct hdlc_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return data->protocol;
149 default:
Harvey Harrison09640e62009-02-01 00:45:17 -0800150 return cpu_to_be16(ETH_P_HDLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152}
153
154
155static int cisco_rx(struct sk_buff *skb)
156{
157 struct net_device *dev = skb->dev;
158 hdlc_device *hdlc = dev_to_hdlc(dev);
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200159 struct cisco_state *st = state(hdlc);
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200160 struct hdlc_header *data = (struct hdlc_header*)skb->data;
161 struct cisco_packet *cisco_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct in_device *in_dev;
Al Viroa144ea42006-09-28 18:00:55 -0700163 __be32 addr, mask;
Krzysztof Halasa96520412009-10-09 06:16:10 +0000164 u32 ack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200166 if (skb->len < sizeof(struct hdlc_header))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 goto rx_error;
168
169 if (data->address != CISCO_MULTICAST &&
170 data->address != CISCO_UNICAST)
171 goto rx_error;
172
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +0200173 switch (ntohs(data->protocol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 case CISCO_SYS_INFO:
175 /* Packet is not needed, drop it. */
176 dev_kfree_skb_any(skb);
177 return NET_RX_SUCCESS;
178
179 case CISCO_KEEPALIVE:
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200180 if ((skb->len != sizeof(struct hdlc_header) +
181 CISCO_PACKET_LEN) &&
182 (skb->len != sizeof(struct hdlc_header) +
183 CISCO_BIG_PACKET_LEN)) {
184 printk(KERN_INFO "%s: Invalid length of Cisco control"
185 " packet (%d bytes)\n", dev->name, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 goto rx_error;
187 }
188
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200189 cisco_data = (struct cisco_packet*)(skb->data + sizeof
190 (struct hdlc_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Rudy Matela640462c2009-12-09 11:35:40 -0300192 switch (ntohl (cisco_data->type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 case CISCO_ADDR_REQ: /* Stolen from syncppp.c :-) */
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000194 rcu_read_lock();
195 in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 addr = 0;
Harvey Harrison09640e62009-02-01 00:45:17 -0800197 mask = ~cpu_to_be32(0); /* is the mask correct? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (in_dev != NULL) {
200 struct in_ifaddr **ifap = &in_dev->ifa_list;
201
202 while (*ifap != NULL) {
203 if (strcmp(dev->name,
204 (*ifap)->ifa_label) == 0) {
205 addr = (*ifap)->ifa_local;
206 mask = (*ifap)->ifa_mask;
207 break;
208 }
209 ifap = &(*ifap)->ifa_next;
210 }
211
212 cisco_keepalive_send(dev, CISCO_ADDR_REPLY,
213 addr, mask);
214 }
Eric Dumazet95ae6b22010-09-15 04:04:31 +0000215 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 dev_kfree_skb_any(skb);
217 return NET_RX_SUCCESS;
218
219 case CISCO_ADDR_REPLY:
220 printk(KERN_INFO "%s: Unexpected Cisco IP address "
221 "reply\n", dev->name);
222 goto rx_error;
223
224 case CISCO_KEEPALIVE_REQ:
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200225 spin_lock(&st->lock);
226 st->rxseq = ntohl(cisco_data->par1);
Krzysztof Halasa96520412009-10-09 06:16:10 +0000227 ack = ntohl(cisco_data->par2);
228 if (ack && (ack == st->txseq ||
229 /* our current REQ may be in transit */
230 ack == st->txseq - 1)) {
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200231 st->last_poll = jiffies;
232 if (!st->up) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 u32 sec, min, hrs, days;
234 sec = ntohl(cisco_data->time) / 1000;
235 min = sec / 60; sec -= min * 60;
236 hrs = min / 60; min -= hrs * 60;
237 days = hrs / 24; hrs -= days * 24;
238 printk(KERN_INFO "%s: Link up (peer "
239 "uptime %ud%uh%um%us)\n",
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200240 dev->name, days, hrs, min, sec);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700241 netif_dormant_off(dev);
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200242 st->up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244 }
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200245 spin_unlock(&st->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 dev_kfree_skb_any(skb);
248 return NET_RX_SUCCESS;
Rudy Matela640462c2009-12-09 11:35:40 -0300249 } /* switch (keepalive type) */
250 } /* switch (protocol) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 printk(KERN_INFO "%s: Unsupported protocol %x\n", dev->name,
Krzysztof Halasaabf17ff2007-04-27 13:13:33 +0200253 ntohs(data->protocol));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 dev_kfree_skb_any(skb);
255 return NET_RX_DROP;
256
Krzysztof Halasa198191c2008-06-30 23:26:53 +0200257rx_error:
258 dev->stats.rx_errors++; /* Mark error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 dev_kfree_skb_any(skb);
260 return NET_RX_DROP;
261}
262
263
264
265static void cisco_timer(unsigned long arg)
266{
267 struct net_device *dev = (struct net_device *)arg;
268 hdlc_device *hdlc = dev_to_hdlc(dev);
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200269 struct cisco_state *st = state(hdlc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200271 spin_lock(&st->lock);
272 if (st->up &&
273 time_after(jiffies, st->last_poll + st->settings.timeout * HZ)) {
274 st->up = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 printk(KERN_INFO "%s: Link down\n", dev->name);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700276 netif_dormant_on(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200279 cisco_keepalive_send(dev, CISCO_KEEPALIVE_REQ, htonl(++st->txseq),
280 htonl(st->rxseq));
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200281 spin_unlock(&st->lock);
282
283 st->timer.expires = jiffies + st->settings.interval * HZ;
284 st->timer.function = cisco_timer;
285 st->timer.data = arg;
286 add_timer(&st->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289
290
291static void cisco_start(struct net_device *dev)
292{
293 hdlc_device *hdlc = dev_to_hdlc(dev);
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200294 struct cisco_state *st = state(hdlc);
295 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200297 spin_lock_irqsave(&st->lock, flags);
Krzysztof Halasa96520412009-10-09 06:16:10 +0000298 st->up = st->txseq = st->rxseq = 0;
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200299 spin_unlock_irqrestore(&st->lock, flags);
300
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308
309
310static void cisco_stop(struct net_device *dev)
311{
312 hdlc_device *hdlc = dev_to_hdlc(dev);
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200313 struct cisco_state *st = state(hdlc);
314 unsigned long flags;
315
316 del_timer_sync(&st->timer);
317
318 spin_lock_irqsave(&st->lock, flags);
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700319 netif_dormant_on(dev);
Krzysztof Halasa96520412009-10-09 06:16:10 +0000320 st->up = st->txseq = 0;
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200321 spin_unlock_irqrestore(&st->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200325static struct hdlc_proto proto = {
326 .start = cisco_start,
327 .stop = cisco_stop,
328 .type_trans = cisco_type_trans,
329 .ioctl = cisco_ioctl,
Krzysztof Halasa40d25142008-02-01 22:37:12 +0100330 .netif_rx = cisco_rx,
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200331 .module = THIS_MODULE,
332};
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700333
334static const struct header_ops cisco_header_ops = {
335 .create = cisco_hard_header,
336};
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +0200337
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200338static int cisco_ioctl(struct net_device *dev, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 cisco_proto __user *cisco_s = ifr->ifr_settings.ifs_ifsu.cisco;
341 const size_t size = sizeof(cisco_proto);
342 cisco_proto new_settings;
343 hdlc_device *hdlc = dev_to_hdlc(dev);
344 int result;
345
346 switch (ifr->ifr_settings.type) {
347 case IF_GET_PROTO:
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200348 if (dev_to_hdlc(dev)->proto != &proto)
349 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 ifr->ifr_settings.type = IF_PROTO_CISCO;
351 if (ifr->ifr_settings.size < size) {
352 ifr->ifr_settings.size = size; /* data size wanted */
353 return -ENOBUFS;
354 }
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200355 if (copy_to_user(cisco_s, &state(hdlc)->settings, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return -EFAULT;
357 return 0;
358
359 case IF_PROTO_CISCO:
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +0200360 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return -EPERM;
362
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +0200363 if (dev->flags & IFF_UP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return -EBUSY;
365
366 if (copy_from_user(&new_settings, cisco_s, size))
367 return -EFAULT;
368
369 if (new_settings.interval < 1 ||
370 new_settings.timeout < 2)
371 return -EINVAL;
372
Krzysztof Hałasa4dfce402008-06-30 19:06:40 +0200373 result = hdlc->attach(dev, ENCODING_NRZ,PARITY_CRC16_PR1_CCITT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (result)
375 return result;
376
Krzysztof Halasa40d25142008-02-01 22:37:12 +0100377 result = attach_hdlc_protocol(dev, &proto,
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200378 sizeof(struct cisco_state));
379 if (result)
380 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200382 memcpy(&state(hdlc)->settings, &new_settings, size);
Krzysztof Halasaaff26e22008-05-19 19:11:08 +0200383 spin_lock_init(&state(hdlc)->lock);
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700384 dev->header_ops = &cisco_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 dev->type = ARPHRD_CISCO;
Krzysztof Halasac2ce9202006-07-12 13:46:12 -0700386 netif_dormant_on(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
388 }
389
390 return -EINVAL;
391}
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200392
393
394static int __init mod_init(void)
395{
396 register_hdlc_protocol(&proto);
397 return 0;
398}
399
400
401
402static void __exit mod_exit(void)
403{
404 unregister_hdlc_protocol(&proto);
405}
406
407
408module_init(mod_init);
409module_exit(mod_exit);
410
411MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>");
412MODULE_DESCRIPTION("Cisco HDLC protocol support for generic HDLC");
413MODULE_LICENSE("GPL v2");