Thomas Gleixner | 25763b3 | 2019-05-28 10:10:09 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Generic HDLC support routines for Linux |
| 4 | * Cisco HDLC support |
| 5 | * |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2006 Krzysztof Halasa <khc@pm.waw.pl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/hdlc.h> |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | #undef DEBUG_HARD_HEADER |
| 22 | |
| 23 | #define CISCO_MULTICAST 0x8F /* Cisco multicast address */ |
| 24 | #define CISCO_UNICAST 0x0F /* Cisco unicast address */ |
| 25 | #define CISCO_KEEPALIVE 0x8035 /* Cisco keepalive protocol */ |
| 26 | #define CISCO_SYS_INFO 0x2000 /* Cisco interface/system info */ |
| 27 | #define CISCO_ADDR_REQ 0 /* Cisco address request */ |
| 28 | #define CISCO_ADDR_REPLY 1 /* Cisco address reply */ |
| 29 | #define CISCO_KEEPALIVE_REQ 2 /* Cisco keepalive request */ |
| 30 | |
| 31 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 32 | struct hdlc_header { |
| 33 | u8 address; |
| 34 | u8 control; |
Krzysztof Halasa | abf17ff | 2007-04-27 13:13:33 +0200 | [diff] [blame] | 35 | __be16 protocol; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 36 | }__packed; |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 37 | |
| 38 | |
| 39 | struct cisco_packet { |
Krzysztof Halasa | abf17ff | 2007-04-27 13:13:33 +0200 | [diff] [blame] | 40 | __be32 type; /* code */ |
| 41 | __be32 par1; |
| 42 | __be32 par2; |
| 43 | __be16 rel; /* reliability */ |
| 44 | __be32 time; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 45 | }__packed; |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 46 | #define CISCO_PACKET_LEN 18 |
| 47 | #define CISCO_BIG_PACKET_LEN 20 |
| 48 | |
| 49 | |
| 50 | struct cisco_state { |
| 51 | cisco_proto settings; |
| 52 | |
| 53 | struct timer_list timer; |
Kees Cook | d26c089 | 2017-10-16 17:29:22 -0700 | [diff] [blame] | 54 | struct net_device *dev; |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 55 | spinlock_t lock; |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 56 | unsigned long last_poll; |
| 57 | int up; |
Krzysztof Halasa | 9652041 | 2009-10-09 06:16:10 +0000 | [diff] [blame] | 58 | u32 txseq; /* TX sequence number, 0 = none */ |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 59 | u32 rxseq; /* RX sequence number */ |
| 60 | }; |
| 61 | |
| 62 | |
| 63 | static int cisco_ioctl(struct net_device *dev, struct ifreq *ifr); |
| 64 | |
| 65 | |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 66 | static inline struct cisco_state* state(hdlc_device *hdlc) |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 67 | { |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 68 | return (struct cisco_state *)hdlc->state; |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | static int cisco_hard_header(struct sk_buff *skb, struct net_device *dev, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 73 | u16 type, const void *daddr, const void *saddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | unsigned int len) |
| 75 | { |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 76 | struct hdlc_header *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #ifdef DEBUG_HARD_HEADER |
Chen Zhou | c68d724 | 2020-01-07 17:33:46 +0800 | [diff] [blame] | 78 | netdev_dbg(dev, "%s called\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #endif |
| 80 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 81 | skb_push(skb, sizeof(struct hdlc_header)); |
| 82 | data = (struct hdlc_header*)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | if (type == CISCO_KEEPALIVE) |
| 84 | data->address = CISCO_MULTICAST; |
| 85 | else |
| 86 | data->address = CISCO_UNICAST; |
| 87 | data->control = 0; |
| 88 | data->protocol = htons(type); |
| 89 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 90 | return sizeof(struct hdlc_header); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | |
| 94 | |
| 95 | static void cisco_keepalive_send(struct net_device *dev, u32 type, |
Krzysztof Halasa | abf17ff | 2007-04-27 13:13:33 +0200 | [diff] [blame] | 96 | __be32 par1, __be32 par2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
| 98 | struct sk_buff *skb; |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 99 | struct cisco_packet *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 101 | skb = dev_alloc_skb(sizeof(struct hdlc_header) + |
| 102 | sizeof(struct cisco_packet)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | if (!skb) { |
Chen Zhou | c68d724 | 2020-01-07 17:33:46 +0800 | [diff] [blame] | 104 | netdev_warn(dev, "Memory squeeze on %s()\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | return; |
| 106 | } |
| 107 | skb_reserve(skb, 4); |
| 108 | cisco_hard_header(skb, dev, CISCO_KEEPALIVE, NULL, NULL, 0); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 109 | data = (struct cisco_packet*)(skb->data + 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | data->type = htonl(type); |
Krzysztof Halasa | abf17ff | 2007-04-27 13:13:33 +0200 | [diff] [blame] | 112 | data->par1 = par1; |
| 113 | data->par2 = par2; |
Harvey Harrison | 09640e63 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 114 | data->rel = cpu_to_be16(0xFFFF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | /* we will need do_div here if 1000 % HZ != 0 */ |
| 116 | data->time = htonl((jiffies - INITIAL_JIFFIES) * (1000 / HZ)); |
| 117 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 118 | skb_put(skb, sizeof(struct cisco_packet)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | skb->priority = TC_PRIO_CONTROL; |
| 120 | skb->dev = dev; |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 121 | skb_reset_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | dev_queue_xmit(skb); |
| 124 | } |
| 125 | |
| 126 | |
| 127 | |
Alexey Dobriyan | ab61148 | 2005-07-12 12:08:43 -0700 | [diff] [blame] | 128 | static __be16 cisco_type_trans(struct sk_buff *skb, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 130 | struct hdlc_header *data = (struct hdlc_header*)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 132 | if (skb->len < sizeof(struct hdlc_header)) |
Harvey Harrison | 09640e63 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 133 | return cpu_to_be16(ETH_P_HDLC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | if (data->address != CISCO_MULTICAST && |
| 136 | data->address != CISCO_UNICAST) |
Harvey Harrison | 09640e63 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 137 | return cpu_to_be16(ETH_P_HDLC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Rudy Matela | 640462c | 2009-12-09 11:35:40 -0300 | [diff] [blame] | 139 | switch (data->protocol) { |
Harvey Harrison | 09640e63 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 140 | case cpu_to_be16(ETH_P_IP): |
| 141 | case cpu_to_be16(ETH_P_IPX): |
| 142 | case cpu_to_be16(ETH_P_IPV6): |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 143 | skb_pull(skb, sizeof(struct hdlc_header)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | return data->protocol; |
| 145 | default: |
Harvey Harrison | 09640e63 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 146 | return cpu_to_be16(ETH_P_HDLC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } |
| 148 | } |
| 149 | |
| 150 | |
| 151 | static int cisco_rx(struct sk_buff *skb) |
| 152 | { |
| 153 | struct net_device *dev = skb->dev; |
| 154 | hdlc_device *hdlc = dev_to_hdlc(dev); |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 155 | struct cisco_state *st = state(hdlc); |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 156 | struct hdlc_header *data = (struct hdlc_header*)skb->data; |
| 157 | struct cisco_packet *cisco_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | struct in_device *in_dev; |
Al Viro | a144ea4 | 2006-09-28 18:00:55 -0700 | [diff] [blame] | 159 | __be32 addr, mask; |
Krzysztof Halasa | 9652041 | 2009-10-09 06:16:10 +0000 | [diff] [blame] | 160 | u32 ack; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 162 | if (skb->len < sizeof(struct hdlc_header)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | goto rx_error; |
| 164 | |
| 165 | if (data->address != CISCO_MULTICAST && |
| 166 | data->address != CISCO_UNICAST) |
| 167 | goto rx_error; |
| 168 | |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 169 | switch (ntohs(data->protocol)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | case CISCO_SYS_INFO: |
| 171 | /* Packet is not needed, drop it. */ |
| 172 | dev_kfree_skb_any(skb); |
| 173 | return NET_RX_SUCCESS; |
| 174 | |
| 175 | case CISCO_KEEPALIVE: |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 176 | if ((skb->len != sizeof(struct hdlc_header) + |
| 177 | CISCO_PACKET_LEN) && |
| 178 | (skb->len != sizeof(struct hdlc_header) + |
| 179 | CISCO_BIG_PACKET_LEN)) { |
Joe Perches | 12a3bfe | 2011-06-26 19:01:28 +0000 | [diff] [blame] | 180 | netdev_info(dev, "Invalid length of Cisco control packet (%d bytes)\n", |
| 181 | skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | goto rx_error; |
| 183 | } |
| 184 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 185 | cisco_data = (struct cisco_packet*)(skb->data + sizeof |
| 186 | (struct hdlc_header)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Rudy Matela | 640462c | 2009-12-09 11:35:40 -0300 | [diff] [blame] | 188 | switch (ntohl (cisco_data->type)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | case CISCO_ADDR_REQ: /* Stolen from syncppp.c :-) */ |
Eric Dumazet | 95ae6b2 | 2010-09-15 04:04:31 +0000 | [diff] [blame] | 190 | rcu_read_lock(); |
| 191 | in_dev = __in_dev_get_rcu(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | addr = 0; |
Harvey Harrison | 09640e63 | 2009-02-01 00:45:17 -0800 | [diff] [blame] | 193 | mask = ~cpu_to_be32(0); /* is the mask correct? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
| 195 | if (in_dev != NULL) { |
Florian Westphal | cb8f147 | 2019-05-31 18:27:08 +0200 | [diff] [blame] | 196 | const struct in_ifaddr *ifa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Florian Westphal | cb8f147 | 2019-05-31 18:27:08 +0200 | [diff] [blame] | 198 | in_dev_for_each_ifa_rcu(ifa, in_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | if (strcmp(dev->name, |
Florian Westphal | cb8f147 | 2019-05-31 18:27:08 +0200 | [diff] [blame] | 200 | ifa->ifa_label) == 0) { |
| 201 | addr = ifa->ifa_local; |
| 202 | mask = ifa->ifa_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | break; |
| 204 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | cisco_keepalive_send(dev, CISCO_ADDR_REPLY, |
| 208 | addr, mask); |
| 209 | } |
Eric Dumazet | 95ae6b2 | 2010-09-15 04:04:31 +0000 | [diff] [blame] | 210 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | dev_kfree_skb_any(skb); |
| 212 | return NET_RX_SUCCESS; |
| 213 | |
| 214 | case CISCO_ADDR_REPLY: |
Joe Perches | 12a3bfe | 2011-06-26 19:01:28 +0000 | [diff] [blame] | 215 | netdev_info(dev, "Unexpected Cisco IP address reply\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | goto rx_error; |
| 217 | |
| 218 | case CISCO_KEEPALIVE_REQ: |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 219 | spin_lock(&st->lock); |
| 220 | st->rxseq = ntohl(cisco_data->par1); |
Krzysztof Halasa | 9652041 | 2009-10-09 06:16:10 +0000 | [diff] [blame] | 221 | ack = ntohl(cisco_data->par2); |
| 222 | if (ack && (ack == st->txseq || |
| 223 | /* our current REQ may be in transit */ |
| 224 | ack == st->txseq - 1)) { |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 225 | st->last_poll = jiffies; |
| 226 | if (!st->up) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | u32 sec, min, hrs, days; |
| 228 | sec = ntohl(cisco_data->time) / 1000; |
| 229 | min = sec / 60; sec -= min * 60; |
| 230 | hrs = min / 60; min -= hrs * 60; |
| 231 | days = hrs / 24; hrs -= days * 24; |
Joe Perches | 12a3bfe | 2011-06-26 19:01:28 +0000 | [diff] [blame] | 232 | netdev_info(dev, "Link up (peer uptime %ud%uh%um%us)\n", |
| 233 | days, hrs, min, sec); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 234 | netif_dormant_off(dev); |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 235 | st->up = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | } |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 238 | spin_unlock(&st->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
| 240 | dev_kfree_skb_any(skb); |
| 241 | return NET_RX_SUCCESS; |
Rudy Matela | 640462c | 2009-12-09 11:35:40 -0300 | [diff] [blame] | 242 | } /* switch (keepalive type) */ |
| 243 | } /* switch (protocol) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Joe Perches | 12a3bfe | 2011-06-26 19:01:28 +0000 | [diff] [blame] | 245 | netdev_info(dev, "Unsupported protocol %x\n", ntohs(data->protocol)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | dev_kfree_skb_any(skb); |
| 247 | return NET_RX_DROP; |
| 248 | |
Krzysztof Halasa | 198191c | 2008-06-30 23:26:53 +0200 | [diff] [blame] | 249 | rx_error: |
| 250 | dev->stats.rx_errors++; /* Mark error */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | dev_kfree_skb_any(skb); |
| 252 | return NET_RX_DROP; |
| 253 | } |
| 254 | |
| 255 | |
| 256 | |
Kees Cook | d26c089 | 2017-10-16 17:29:22 -0700 | [diff] [blame] | 257 | static void cisco_timer(struct timer_list *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { |
Kees Cook | d26c089 | 2017-10-16 17:29:22 -0700 | [diff] [blame] | 259 | struct cisco_state *st = from_timer(st, t, timer); |
| 260 | struct net_device *dev = st->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 262 | spin_lock(&st->lock); |
| 263 | if (st->up && |
| 264 | time_after(jiffies, st->last_poll + st->settings.timeout * HZ)) { |
| 265 | st->up = 0; |
Joe Perches | 12a3bfe | 2011-06-26 19:01:28 +0000 | [diff] [blame] | 266 | netdev_info(dev, "Link down\n"); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 267 | netif_dormant_on(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 270 | cisco_keepalive_send(dev, CISCO_KEEPALIVE_REQ, htonl(++st->txseq), |
| 271 | htonl(st->rxseq)); |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 272 | spin_unlock(&st->lock); |
| 273 | |
| 274 | st->timer.expires = jiffies + st->settings.interval * HZ; |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 275 | add_timer(&st->timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | |
| 279 | |
| 280 | static void cisco_start(struct net_device *dev) |
| 281 | { |
| 282 | hdlc_device *hdlc = dev_to_hdlc(dev); |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 283 | struct cisco_state *st = state(hdlc); |
| 284 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 286 | spin_lock_irqsave(&st->lock, flags); |
Krzysztof Halasa | 9652041 | 2009-10-09 06:16:10 +0000 | [diff] [blame] | 287 | st->up = st->txseq = st->rxseq = 0; |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 288 | spin_unlock_irqrestore(&st->lock, flags); |
| 289 | |
Kees Cook | d26c089 | 2017-10-16 17:29:22 -0700 | [diff] [blame] | 290 | st->dev = dev; |
| 291 | timer_setup(&st->timer, cisco_timer, 0); |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 292 | st->timer.expires = jiffies + HZ; /* First poll after 1 s */ |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 293 | add_timer(&st->timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | |
| 297 | |
| 298 | static void cisco_stop(struct net_device *dev) |
| 299 | { |
| 300 | hdlc_device *hdlc = dev_to_hdlc(dev); |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 301 | struct cisco_state *st = state(hdlc); |
| 302 | unsigned long flags; |
| 303 | |
| 304 | del_timer_sync(&st->timer); |
| 305 | |
| 306 | spin_lock_irqsave(&st->lock, flags); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 307 | netif_dormant_on(dev); |
Krzysztof Halasa | 9652041 | 2009-10-09 06:16:10 +0000 | [diff] [blame] | 308 | st->up = st->txseq = 0; |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 309 | spin_unlock_irqrestore(&st->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 313 | static struct hdlc_proto proto = { |
| 314 | .start = cisco_start, |
| 315 | .stop = cisco_stop, |
| 316 | .type_trans = cisco_type_trans, |
| 317 | .ioctl = cisco_ioctl, |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 318 | .netif_rx = cisco_rx, |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 319 | .module = THIS_MODULE, |
| 320 | }; |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 321 | |
| 322 | static const struct header_ops cisco_header_ops = { |
| 323 | .create = cisco_hard_header, |
| 324 | }; |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 325 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 326 | static int cisco_ioctl(struct net_device *dev, struct ifreq *ifr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | { |
| 328 | cisco_proto __user *cisco_s = ifr->ifr_settings.ifs_ifsu.cisco; |
| 329 | const size_t size = sizeof(cisco_proto); |
| 330 | cisco_proto new_settings; |
| 331 | hdlc_device *hdlc = dev_to_hdlc(dev); |
| 332 | int result; |
| 333 | |
| 334 | switch (ifr->ifr_settings.type) { |
| 335 | case IF_GET_PROTO: |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 336 | if (dev_to_hdlc(dev)->proto != &proto) |
| 337 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | ifr->ifr_settings.type = IF_PROTO_CISCO; |
| 339 | if (ifr->ifr_settings.size < size) { |
| 340 | ifr->ifr_settings.size = size; /* data size wanted */ |
| 341 | return -ENOBUFS; |
| 342 | } |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 343 | if (copy_to_user(cisco_s, &state(hdlc)->settings, size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | return -EFAULT; |
| 345 | return 0; |
| 346 | |
| 347 | case IF_PROTO_CISCO: |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 348 | if (!capable(CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | return -EPERM; |
| 350 | |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 351 | if (dev->flags & IFF_UP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | return -EBUSY; |
| 353 | |
| 354 | if (copy_from_user(&new_settings, cisco_s, size)) |
| 355 | return -EFAULT; |
| 356 | |
| 357 | if (new_settings.interval < 1 || |
| 358 | new_settings.timeout < 2) |
| 359 | return -EINVAL; |
| 360 | |
Krzysztof Hałasa | 4dfce40 | 2008-06-30 19:06:40 +0200 | [diff] [blame] | 361 | result = hdlc->attach(dev, ENCODING_NRZ,PARITY_CRC16_PR1_CCITT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | if (result) |
| 363 | return result; |
| 364 | |
Krzysztof Halasa | 40d2514 | 2008-02-01 22:37:12 +0100 | [diff] [blame] | 365 | result = attach_hdlc_protocol(dev, &proto, |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 366 | sizeof(struct cisco_state)); |
| 367 | if (result) |
| 368 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 370 | memcpy(&state(hdlc)->settings, &new_settings, size); |
Krzysztof Halasa | aff26e2 | 2008-05-19 19:11:08 +0200 | [diff] [blame] | 371 | spin_lock_init(&state(hdlc)->lock); |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 372 | dev->header_ops = &cisco_header_ops; |
Xie He | 1a545eb | 2020-08-28 00:07:52 -0700 | [diff] [blame] | 373 | dev->hard_header_len = sizeof(struct hdlc_header); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | dev->type = ARPHRD_CISCO; |
Andrew Lunn | 2f8364a | 2015-12-03 21:12:31 +0100 | [diff] [blame] | 375 | call_netdevice_notifiers(NETDEV_POST_TYPE_CHANGE, dev); |
Krzysztof Halasa | c2ce920 | 2006-07-12 13:46:12 -0700 | [diff] [blame] | 376 | netif_dormant_on(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return 0; |
| 378 | } |
| 379 | |
| 380 | return -EINVAL; |
| 381 | } |
Krzysztof Halasa | eb2a2fd | 2006-09-26 23:23:45 +0200 | [diff] [blame] | 382 | |
| 383 | |
| 384 | static int __init mod_init(void) |
| 385 | { |
| 386 | register_hdlc_protocol(&proto); |
| 387 | return 0; |
| 388 | } |
| 389 | |
| 390 | |
| 391 | |
| 392 | static void __exit mod_exit(void) |
| 393 | { |
| 394 | unregister_hdlc_protocol(&proto); |
| 395 | } |
| 396 | |
| 397 | |
| 398 | module_init(mod_init); |
| 399 | module_exit(mod_exit); |
| 400 | |
| 401 | MODULE_AUTHOR("Krzysztof Halasa <khc@pm.waw.pl>"); |
| 402 | MODULE_DESCRIPTION("Cisco HDLC protocol support for generic HDLC"); |
| 403 | MODULE_LICENSE("GPL v2"); |