blob: c12720895ecf90c049723f3cf9d854e78586ebeb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Common framework for low-level network console, dump, and debugger code
3 *
4 * Sep 8 2003 Matt Mackall <mpm@selenic.com>
5 *
6 * based on the netconsole code from:
7 *
8 * Copyright (C) 2001 Ingo Molnar <mingo@redhat.com>
9 * Copyright (C) 2002 Red Hat, Inc.
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/netdevice.h>
13#include <linux/etherdevice.h>
14#include <linux/string.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020015#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/inetdevice.h>
17#include <linux/inet.h>
18#include <linux/interrupt.h>
19#include <linux/netpoll.h>
20#include <linux/sched.h>
21#include <linux/delay.h>
22#include <linux/rcupdate.h>
23#include <linux/workqueue.h>
24#include <net/tcp.h>
25#include <net/udp.h>
26#include <asm/unaligned.h>
27
28/*
29 * We maintain a small pool of fully-sized skbs, to make sure the
30 * message gets out even in extreme OOM situations.
31 */
32
33#define MAX_UDP_CHUNK 1460
34#define MAX_SKBS 32
35#define MAX_QUEUE_DEPTH (MAX_SKBS / 2)
36
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -080037static struct sk_buff_head skb_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39static atomic_t trapped;
40
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -070041#define USEC_PER_POLL 50
David S. Millerd9452e92008-03-04 12:28:49 -080042#define NETPOLL_RX_ENABLED 1
43#define NETPOLL_RX_DROP 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define MAX_SKB_SIZE \
46 (MAX_UDP_CHUNK + sizeof(struct udphdr) + \
47 sizeof(struct iphdr) + sizeof(struct ethhdr))
48
49static void zap_completion_queue(void);
Neil Horman068c6e92006-06-26 00:04:27 -070050static void arp_reply(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Howellsc4028952006-11-22 14:57:56 +000052static void queue_process(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
David Howells4c1ac1b2006-12-05 14:37:56 +000054 struct netpoll_info *npinfo =
55 container_of(work, struct netpoll_info, tx_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct sk_buff *skb;
Ingo Molnar36405432006-12-12 17:20:42 +010057 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070059 while ((skb = skb_dequeue(&npinfo->txq))) {
60 struct net_device *dev = skb->dev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -070061 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070063 if (!netif_device_present(dev) || !netif_running(dev)) {
64 __kfree_skb(skb);
65 continue;
66 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
David S. Millerfd2ea0a2008-07-17 01:56:23 -070068 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
69
Ingo Molnar36405432006-12-12 17:20:42 +010070 local_irq_save(flags);
David S. Millerfd2ea0a2008-07-17 01:56:23 -070071 __netif_tx_lock(txq, smp_processor_id());
72 if (netif_tx_queue_stopped(txq) ||
73 dev->hard_start_xmit(skb, dev) != NETDEV_TX_OK) {
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070074 skb_queue_head(&npinfo->txq, skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -070075 __netif_tx_unlock(txq);
Ingo Molnar36405432006-12-12 17:20:42 +010076 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Jarek Poplawski25442ca2007-07-05 17:42:44 -070078 schedule_delayed_work(&npinfo->tx_work, HZ/10);
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070079 return;
80 }
David S. Millerfd2ea0a2008-07-17 01:56:23 -070081 __netif_tx_unlock(txq);
Ingo Molnar36405432006-12-12 17:20:42 +010082 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84}
85
Al Virob51655b2006-11-14 21:40:42 -080086static __sum16 checksum_udp(struct sk_buff *skb, struct udphdr *uh,
87 unsigned short ulen, __be32 saddr, __be32 daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Al Virod6f5493c2006-11-14 21:26:08 -080089 __wsum psum;
Herbert Xufb286bb2005-11-10 13:01:24 -080090
Herbert Xu60476372007-04-09 11:59:39 -070091 if (uh->check == 0 || skb_csum_unnecessary(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return 0;
93
Herbert Xufb286bb2005-11-10 13:01:24 -080094 psum = csum_tcpudp_nofold(saddr, daddr, ulen, IPPROTO_UDP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Patrick McHardy84fa7932006-08-29 16:44:56 -070096 if (skb->ip_summed == CHECKSUM_COMPLETE &&
Al Virod3bc23e2006-11-14 21:24:49 -080097 !csum_fold(csum_add(psum, skb->csum)))
Herbert Xufb286bb2005-11-10 13:01:24 -080098 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Herbert Xufb286bb2005-11-10 13:01:24 -0800100 skb->csum = psum;
101
102 return __skb_checksum_complete(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105/*
106 * Check whether delayed processing was scheduled for our NIC. If so,
107 * we attempt to grab the poll lock and use ->poll() to pump the card.
108 * If this fails, either we've recursed in ->poll() or it's already
109 * running on another CPU.
110 *
111 * Note: we don't mask interrupts with this lock because we're using
112 * trylock here and interrupts are already disabled in the softirq
113 * case. Further, we test the poll_owner to avoid recursion on UP
114 * systems where the lock doesn't exist.
115 *
116 * In cases where there is bi-directional communications, reading only
117 * one message at a time can lead to packets being dropped by the
118 * network adapter, forcing superfluous retries and possibly timeouts.
119 * Thus, we set our budget to greater than 1.
120 */
David S. Miller0a7606c2007-10-29 21:28:47 -0700121static int poll_one_napi(struct netpoll_info *npinfo,
122 struct napi_struct *napi, int budget)
123{
124 int work;
125
126 /* net_rx_action's ->poll() invocations and our's are
127 * synchronized by this test which is only made while
128 * holding the napi->poll_lock.
129 */
130 if (!test_bit(NAPI_STATE_SCHED, &napi->state))
131 return budget;
132
David S. Millerd9452e92008-03-04 12:28:49 -0800133 npinfo->rx_flags |= NETPOLL_RX_DROP;
David S. Miller0a7606c2007-10-29 21:28:47 -0700134 atomic_inc(&trapped);
135
136 work = napi->poll(napi, budget);
137
138 atomic_dec(&trapped);
David S. Millerd9452e92008-03-04 12:28:49 -0800139 npinfo->rx_flags &= ~NETPOLL_RX_DROP;
David S. Miller0a7606c2007-10-29 21:28:47 -0700140
141 return budget - work;
142}
143
Stephen Hemminger51069302007-11-19 19:18:11 -0800144static void poll_napi(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700146 struct napi_struct *napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 int budget = 16;
148
Stephen Hemminger51069302007-11-19 19:18:11 -0800149 list_for_each_entry(napi, &dev->napi_list, dev_list) {
David S. Miller0a7606c2007-10-29 21:28:47 -0700150 if (napi->poll_owner != smp_processor_id() &&
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700151 spin_trylock(&napi->poll_lock)) {
Stephen Hemminger51069302007-11-19 19:18:11 -0800152 budget = poll_one_napi(dev->npinfo, napi, budget);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700153 spin_unlock(&napi->poll_lock);
David S. Miller0a7606c2007-10-29 21:28:47 -0700154
155 if (!budget)
156 break;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159}
160
Neil Horman068c6e92006-06-26 00:04:27 -0700161static void service_arp_queue(struct netpoll_info *npi)
162{
Stephen Hemminger51069302007-11-19 19:18:11 -0800163 if (npi) {
164 struct sk_buff *skb;
Neil Horman068c6e92006-06-26 00:04:27 -0700165
Stephen Hemminger51069302007-11-19 19:18:11 -0800166 while ((skb = skb_dequeue(&npi->arp_tx)))
167 arp_reply(skb);
Neil Horman068c6e92006-06-26 00:04:27 -0700168 }
Neil Horman068c6e92006-06-26 00:04:27 -0700169}
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171void netpoll_poll(struct netpoll *np)
172{
Stephen Hemminger51069302007-11-19 19:18:11 -0800173 struct net_device *dev = np->dev;
174
175 if (!dev || !netif_running(dev) || !dev->poll_controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return;
177
178 /* Process pending work on NIC */
Stephen Hemminger51069302007-11-19 19:18:11 -0800179 dev->poll_controller(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Stephen Hemminger51069302007-11-19 19:18:11 -0800181 poll_napi(dev);
182
183 service_arp_queue(dev->npinfo);
Neil Horman068c6e92006-06-26 00:04:27 -0700184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 zap_completion_queue();
186}
187
188static void refill_skbs(void)
189{
190 struct sk_buff *skb;
191 unsigned long flags;
192
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800193 spin_lock_irqsave(&skb_pool.lock, flags);
194 while (skb_pool.qlen < MAX_SKBS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 skb = alloc_skb(MAX_SKB_SIZE, GFP_ATOMIC);
196 if (!skb)
197 break;
198
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800199 __skb_queue_tail(&skb_pool, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800201 spin_unlock_irqrestore(&skb_pool.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
204static void zap_completion_queue(void)
205{
206 unsigned long flags;
207 struct softnet_data *sd = &get_cpu_var(softnet_data);
208
209 if (sd->completion_queue) {
210 struct sk_buff *clist;
211
212 local_irq_save(flags);
213 clist = sd->completion_queue;
214 sd->completion_queue = NULL;
215 local_irq_restore(flags);
216
217 while (clist != NULL) {
218 struct sk_buff *skb = clist;
219 clist = clist->next;
Jarek Poplawski8a455b02008-03-20 16:07:27 -0700220 if (skb->destructor) {
221 atomic_inc(&skb->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 dev_kfree_skb_any(skb); /* put this one back */
Jarek Poplawski8a455b02008-03-20 16:07:27 -0700223 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 __kfree_skb(skb);
Jarek Poplawski8a455b02008-03-20 16:07:27 -0700225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227 }
228
229 put_cpu_var(softnet_data);
230}
231
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800232static struct sk_buff *find_skb(struct netpoll *np, int len, int reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800234 int count = 0;
235 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 zap_completion_queue();
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800238 refill_skbs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 skb = alloc_skb(len, GFP_ATOMIC);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800242 if (!skb)
243 skb = skb_dequeue(&skb_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 if (!skb) {
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800246 if (++count < 10) {
247 netpoll_poll(np);
248 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800250 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 atomic_set(&skb->users, 1);
254 skb_reserve(skb, reserve);
255 return skb;
256}
257
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700258static int netpoll_owner_active(struct net_device *dev)
259{
260 struct napi_struct *napi;
261
262 list_for_each_entry(napi, &dev->napi_list, dev_list) {
263 if (napi->poll_owner == smp_processor_id())
264 return 1;
265 }
266 return 0;
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
270{
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700271 int status = NETDEV_TX_BUSY;
272 unsigned long tries;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900273 struct net_device *dev = np->dev;
274 struct netpoll_info *npinfo = np->dev->npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900276 if (!npinfo || !netif_running(dev) || !netif_device_present(dev)) {
277 __kfree_skb(skb);
278 return;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700281 /* don't get messages out of order, and no recursion */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700282 if (skb_queue_len(&npinfo->txq) == 0 && !netpoll_owner_active(dev)) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700283 struct netdev_queue *txq;
Andrew Mortona49f99f2006-12-11 17:24:46 -0800284 unsigned long flags;
285
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700286 txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
287
Andrew Mortona49f99f2006-12-11 17:24:46 -0800288 local_irq_save(flags);
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700289 /* try until next clock tick */
290 for (tries = jiffies_to_usecs(1)/USEC_PER_POLL;
291 tries > 0; --tries) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700292 if (__netif_tx_trylock(txq)) {
293 if (!netif_tx_queue_stopped(txq))
Andrew Mortone37b8d92006-12-09 14:01:49 -0800294 status = dev->hard_start_xmit(skb, dev);
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700295 __netif_tx_unlock(txq);
Matt Mackallf0d34592005-08-11 19:25:11 -0700296
Andrew Mortone37b8d92006-12-09 14:01:49 -0800297 if (status == NETDEV_TX_OK)
298 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Andrew Mortone37b8d92006-12-09 14:01:49 -0800300 }
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700301
302 /* tickle device maybe there is some cleanup */
303 netpoll_poll(np);
304
305 udelay(USEC_PER_POLL);
Matt Mackall0db1d6f2005-08-11 19:25:54 -0700306 }
Andrew Mortona49f99f2006-12-11 17:24:46 -0800307 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700310 if (status != NETDEV_TX_OK) {
Stephen Hemminger5de4a472006-10-26 15:46:55 -0700311 skb_queue_tail(&npinfo->txq, skb);
David Howells4c1ac1b2006-12-05 14:37:56 +0000312 schedule_delayed_work(&npinfo->tx_work,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316void netpoll_send_udp(struct netpoll *np, const char *msg, int len)
317{
318 int total_len, eth_len, ip_len, udp_len;
319 struct sk_buff *skb;
320 struct udphdr *udph;
321 struct iphdr *iph;
322 struct ethhdr *eth;
323
324 udp_len = len + sizeof(*udph);
325 ip_len = eth_len = udp_len + sizeof(*iph);
326 total_len = eth_len + ETH_HLEN + NET_IP_ALIGN;
327
328 skb = find_skb(np, total_len, total_len - len);
329 if (!skb)
330 return;
331
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300332 skb_copy_to_linear_data(skb, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 skb->len += len;
334
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300335 skb_push(skb, sizeof(*udph));
336 skb_reset_transport_header(skb);
337 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 udph->source = htons(np->local_port);
339 udph->dest = htons(np->remote_port);
340 udph->len = htons(udp_len);
341 udph->check = 0;
Chris Lalancette8e365ee2006-11-07 14:56:19 -0800342 udph->check = csum_tcpudp_magic(htonl(np->local_ip),
343 htonl(np->remote_ip),
344 udp_len, IPPROTO_UDP,
345 csum_partial((unsigned char *)udph, udp_len, 0));
346 if (udph->check == 0)
Al Viro5e57dff2006-11-20 18:08:13 -0800347 udph->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700349 skb_push(skb, sizeof(*iph));
350 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700351 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* iph->version = 4; iph->ihl = 5; */
354 put_unaligned(0x45, (unsigned char *)iph);
355 iph->tos = 0;
356 put_unaligned(htons(ip_len), &(iph->tot_len));
357 iph->id = 0;
358 iph->frag_off = 0;
359 iph->ttl = 64;
360 iph->protocol = IPPROTO_UDP;
361 iph->check = 0;
362 put_unaligned(htonl(np->local_ip), &(iph->saddr));
363 put_unaligned(htonl(np->remote_ip), &(iph->daddr));
364 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
365
366 eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700367 skb_reset_mac_header(skb);
Stephen Hemminger206daaf2006-10-19 23:58:23 -0700368 skb->protocol = eth->h_proto = htons(ETH_P_IP);
Stephen Hemminger09538642007-11-19 19:23:29 -0800369 memcpy(eth->h_source, np->dev->dev_addr, ETH_ALEN);
370 memcpy(eth->h_dest, np->remote_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 skb->dev = np->dev;
373
374 netpoll_send_skb(np, skb);
375}
376
377static void arp_reply(struct sk_buff *skb)
378{
Jeff Moyer115c1d62005-06-22 22:05:31 -0700379 struct netpoll_info *npinfo = skb->dev->npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct arphdr *arp;
381 unsigned char *arp_ptr;
382 int size, type = ARPOP_REPLY, ptype = ETH_P_ARP;
Al Viro252e3342006-11-14 20:48:11 -0800383 __be32 sip, tip;
Neil Horman47bbec02006-12-08 00:05:55 -0800384 unsigned char *sha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct sk_buff *send_skb;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700386 struct netpoll *np = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700388 if (npinfo->rx_np && npinfo->rx_np->dev == skb->dev)
389 np = npinfo->rx_np;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700390 if (!np)
391 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /* No arp on this interface */
394 if (skb->dev->flags & IFF_NOARP)
395 return;
396
Pavel Emelyanov988b7052008-03-03 12:20:57 -0800397 if (!pskb_may_pull(skb, arp_hdr_len(skb->dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return;
399
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700400 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300401 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300402 arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 if ((arp->ar_hrd != htons(ARPHRD_ETHER) &&
405 arp->ar_hrd != htons(ARPHRD_IEEE802)) ||
406 arp->ar_pro != htons(ETH_P_IP) ||
407 arp->ar_op != htons(ARPOP_REQUEST))
408 return;
409
Neil Horman47bbec02006-12-08 00:05:55 -0800410 arp_ptr = (unsigned char *)(arp+1);
411 /* save the location of the src hw addr */
412 sha = arp_ptr;
413 arp_ptr += skb->dev->addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 memcpy(&sip, arp_ptr, 4);
Neil Horman47bbec02006-12-08 00:05:55 -0800415 arp_ptr += 4;
416 /* if we actually cared about dst hw addr, it would get copied here */
417 arp_ptr += skb->dev->addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 memcpy(&tip, arp_ptr, 4);
419
420 /* Should we ignore arp? */
Joe Perches21cf2252007-12-16 13:44:00 -0800421 if (tip != htonl(np->local_ip) ||
422 ipv4_is_loopback(tip) || ipv4_is_multicast(tip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return;
424
Pavel Emelyanov988b7052008-03-03 12:20:57 -0800425 size = arp_hdr_len(skb->dev);
Johannes Bergf5184d22008-05-12 20:48:31 -0700426 send_skb = find_skb(np, size + LL_ALLOCATED_SPACE(np->dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 LL_RESERVED_SPACE(np->dev));
428
429 if (!send_skb)
430 return;
431
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700432 skb_reset_network_header(send_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 arp = (struct arphdr *) skb_put(send_skb, size);
434 send_skb->dev = skb->dev;
435 send_skb->protocol = htons(ETH_P_ARP);
436
437 /* Fill the device header for the ARP frame */
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700438 if (dev_hard_header(send_skb, skb->dev, ptype,
Stephen Hemminger09538642007-11-19 19:23:29 -0800439 sha, np->dev->dev_addr,
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700440 send_skb->len) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 kfree_skb(send_skb);
442 return;
443 }
444
445 /*
446 * Fill out the arp protocol part.
447 *
448 * we only support ethernet device type,
449 * which (according to RFC 1390) should always equal 1 (Ethernet).
450 */
451
452 arp->ar_hrd = htons(np->dev->type);
453 arp->ar_pro = htons(ETH_P_IP);
454 arp->ar_hln = np->dev->addr_len;
455 arp->ar_pln = 4;
456 arp->ar_op = htons(type);
457
458 arp_ptr=(unsigned char *)(arp + 1);
459 memcpy(arp_ptr, np->dev->dev_addr, np->dev->addr_len);
460 arp_ptr += np->dev->addr_len;
461 memcpy(arp_ptr, &tip, 4);
462 arp_ptr += 4;
Neil Horman47bbec02006-12-08 00:05:55 -0800463 memcpy(arp_ptr, sha, np->dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 arp_ptr += np->dev->addr_len;
465 memcpy(arp_ptr, &sip, 4);
466
467 netpoll_send_skb(np, send_skb);
468}
469
470int __netpoll_rx(struct sk_buff *skb)
471{
472 int proto, len, ulen;
473 struct iphdr *iph;
474 struct udphdr *uh;
Neil Horman068c6e92006-06-26 00:04:27 -0700475 struct netpoll_info *npi = skb->dev->npinfo;
476 struct netpoll *np = npi->rx_np;
477
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700478 if (!np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 goto out;
480 if (skb->dev->type != ARPHRD_ETHER)
481 goto out;
482
David S. Millerd9452e92008-03-04 12:28:49 -0800483 /* check if netpoll clients need ARP */
YOSHIFUJI Hideaki724800d2007-03-25 20:13:04 -0700484 if (skb->protocol == htons(ETH_P_ARP) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 atomic_read(&trapped)) {
Neil Horman068c6e92006-06-26 00:04:27 -0700486 skb_queue_tail(&npi->arp_tx, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return 1;
488 }
489
490 proto = ntohs(eth_hdr(skb)->h_proto);
491 if (proto != ETH_P_IP)
492 goto out;
493 if (skb->pkt_type == PACKET_OTHERHOST)
494 goto out;
495 if (skb_shared(skb))
496 goto out;
497
498 iph = (struct iphdr *)skb->data;
499 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
500 goto out;
501 if (iph->ihl < 5 || iph->version != 4)
502 goto out;
503 if (!pskb_may_pull(skb, iph->ihl*4))
504 goto out;
505 if (ip_fast_csum((u8 *)iph, iph->ihl) != 0)
506 goto out;
507
508 len = ntohs(iph->tot_len);
509 if (skb->len < len || len < iph->ihl*4)
510 goto out;
511
Aubrey.Li5e7d7fa2007-04-17 12:40:20 -0700512 /*
513 * Our transport medium may have padded the buffer out.
514 * Now We trim to the true length of the frame.
515 */
516 if (pskb_trim_rcsum(skb, len))
517 goto out;
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (iph->protocol != IPPROTO_UDP)
520 goto out;
521
522 len -= iph->ihl*4;
523 uh = (struct udphdr *)(((char *)iph) + iph->ihl*4);
524 ulen = ntohs(uh->len);
525
526 if (ulen != len)
527 goto out;
Herbert Xufb286bb2005-11-10 13:01:24 -0800528 if (checksum_udp(skb, uh, ulen, iph->saddr, iph->daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto out;
530 if (np->local_ip && np->local_ip != ntohl(iph->daddr))
531 goto out;
532 if (np->remote_ip && np->remote_ip != ntohl(iph->saddr))
533 goto out;
534 if (np->local_port && np->local_port != ntohs(uh->dest))
535 goto out;
536
537 np->rx_hook(np, ntohs(uh->source),
538 (char *)(uh+1),
539 ulen - sizeof(struct udphdr));
540
541 kfree_skb(skb);
542 return 1;
543
544out:
545 if (atomic_read(&trapped)) {
546 kfree_skb(skb);
547 return 1;
548 }
549
550 return 0;
551}
552
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700553void netpoll_print_options(struct netpoll *np)
554{
Joe Perches0795af52007-10-03 17:59:30 -0700555 DECLARE_MAC_BUF(mac);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700556 printk(KERN_INFO "%s: local port %d\n",
557 np->name, np->local_port);
558 printk(KERN_INFO "%s: local IP %d.%d.%d.%d\n",
559 np->name, HIPQUAD(np->local_ip));
560 printk(KERN_INFO "%s: interface %s\n",
561 np->name, np->dev_name);
562 printk(KERN_INFO "%s: remote port %d\n",
563 np->name, np->remote_port);
564 printk(KERN_INFO "%s: remote IP %d.%d.%d.%d\n",
565 np->name, HIPQUAD(np->remote_ip));
Joe Perches0795af52007-10-03 17:59:30 -0700566 printk(KERN_INFO "%s: remote ethernet address %s\n",
567 np->name, print_mac(mac, np->remote_mac));
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570int netpoll_parse_options(struct netpoll *np, char *opt)
571{
572 char *cur=opt, *delim;
573
David S. Millerc68b9072006-11-14 20:40:49 -0800574 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if ((delim = strchr(cur, '@')) == NULL)
576 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800577 *delim = 0;
578 np->local_port = simple_strtol(cur, NULL, 10);
579 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
David S. Millerc68b9072006-11-14 20:40:49 -0800583 if (*cur != '/') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if ((delim = strchr(cur, '/')) == NULL)
585 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800586 *delim = 0;
587 np->local_ip = ntohl(in_aton(cur));
588 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590 cur++;
591
David S. Millerc68b9072006-11-14 20:40:49 -0800592 if (*cur != ',') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /* parse out dev name */
594 if ((delim = strchr(cur, ',')) == NULL)
595 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800596 *delim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 strlcpy(np->dev_name, cur, sizeof(np->dev_name));
David S. Millerc68b9072006-11-14 20:40:49 -0800598 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600 cur++;
601
David S. Millerc68b9072006-11-14 20:40:49 -0800602 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /* dst port */
604 if ((delim = strchr(cur, '@')) == NULL)
605 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800606 *delim = 0;
607 np->remote_port = simple_strtol(cur, NULL, 10);
608 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 /* dst ip */
613 if ((delim = strchr(cur, '/')) == NULL)
614 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800615 *delim = 0;
616 np->remote_ip = ntohl(in_aton(cur));
617 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
David S. Millerc68b9072006-11-14 20:40:49 -0800619 if (*cur != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* MAC address */
621 if ((delim = strchr(cur, ':')) == NULL)
622 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800623 *delim = 0;
624 np->remote_mac[0] = simple_strtol(cur, NULL, 16);
625 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if ((delim = strchr(cur, ':')) == NULL)
627 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800628 *delim = 0;
629 np->remote_mac[1] = simple_strtol(cur, NULL, 16);
630 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if ((delim = strchr(cur, ':')) == NULL)
632 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800633 *delim = 0;
634 np->remote_mac[2] = simple_strtol(cur, NULL, 16);
635 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if ((delim = strchr(cur, ':')) == NULL)
637 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800638 *delim = 0;
639 np->remote_mac[3] = simple_strtol(cur, NULL, 16);
640 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if ((delim = strchr(cur, ':')) == NULL)
642 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800643 *delim = 0;
644 np->remote_mac[4] = simple_strtol(cur, NULL, 16);
645 cur = delim + 1;
646 np->remote_mac[5] = simple_strtol(cur, NULL, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700649 netpoll_print_options(np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 return 0;
652
653 parse_failed:
654 printk(KERN_INFO "%s: couldn't parse config at %s!\n",
655 np->name, cur);
656 return -1;
657}
658
659int netpoll_setup(struct netpoll *np)
660{
661 struct net_device *ndev = NULL;
662 struct in_device *in_dev;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700663 struct netpoll_info *npinfo;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700664 unsigned long flags;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700665 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 if (np->dev_name)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700668 ndev = dev_get_by_name(&init_net, np->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (!ndev) {
670 printk(KERN_ERR "%s: %s doesn't exist, aborting.\n",
671 np->name, np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700672 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 np->dev = ndev;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700676 if (!ndev->npinfo) {
677 npinfo = kmalloc(sizeof(*npinfo), GFP_KERNEL);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700678 if (!npinfo) {
679 err = -ENOMEM;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700680 goto release;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700681 }
Jeff Moyer115c1d62005-06-22 22:05:31 -0700682
David S. Millerd9452e92008-03-04 12:28:49 -0800683 npinfo->rx_flags = 0;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700684 npinfo->rx_np = NULL;
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700685
Ingo Molnara9f6a0d2005-09-09 13:10:41 -0700686 spin_lock_init(&npinfo->rx_lock);
Neil Horman068c6e92006-06-26 00:04:27 -0700687 skb_queue_head_init(&npinfo->arp_tx);
Stephen Hemmingerb6cd27e2006-10-26 15:46:51 -0700688 skb_queue_head_init(&npinfo->txq);
David Howells4c1ac1b2006-12-05 14:37:56 +0000689 INIT_DELAYED_WORK(&npinfo->tx_work, queue_process);
Stephen Hemmingerb6cd27e2006-10-26 15:46:51 -0700690
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700691 atomic_set(&npinfo->refcnt, 1);
692 } else {
Jeff Moyer115c1d62005-06-22 22:05:31 -0700693 npinfo = ndev->npinfo;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700694 atomic_inc(&npinfo->refcnt);
695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (!ndev->poll_controller) {
698 printk(KERN_ERR "%s: %s doesn't support polling, aborting.\n",
699 np->name, np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700700 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 goto release;
702 }
703
704 if (!netif_running(ndev)) {
705 unsigned long atmost, atleast;
706
707 printk(KERN_INFO "%s: device %s not up yet, forcing it\n",
708 np->name, np->dev_name);
709
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800710 rtnl_lock();
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700711 err = dev_open(ndev);
712 rtnl_unlock();
713
714 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 printk(KERN_ERR "%s: failed to open %s\n",
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700716 np->name, ndev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 goto release;
718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 atleast = jiffies + HZ/10;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900721 atmost = jiffies + 4*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 while (!netif_carrier_ok(ndev)) {
723 if (time_after(jiffies, atmost)) {
724 printk(KERN_NOTICE
725 "%s: timeout waiting for carrier\n",
726 np->name);
727 break;
728 }
729 cond_resched();
730 }
731
732 /* If carrier appears to come up instantly, we don't
733 * trust it and pause so that we don't pump all our
734 * queued console messages into the bitbucket.
735 */
736
737 if (time_before(jiffies, atleast)) {
738 printk(KERN_NOTICE "%s: carrier detect appears"
739 " untrustworthy, waiting 4 seconds\n",
740 np->name);
741 msleep(4000);
742 }
743 }
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (!np->local_ip) {
746 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700747 in_dev = __in_dev_get_rcu(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (!in_dev || !in_dev->ifa_list) {
750 rcu_read_unlock();
751 printk(KERN_ERR "%s: no IP address for %s, aborting\n",
752 np->name, np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700753 err = -EDESTADDRREQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 goto release;
755 }
756
757 np->local_ip = ntohl(in_dev->ifa_list->ifa_local);
758 rcu_read_unlock();
759 printk(KERN_INFO "%s: local IP %d.%d.%d.%d\n",
760 np->name, HIPQUAD(np->local_ip));
761 }
762
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700763 if (np->rx_hook) {
764 spin_lock_irqsave(&npinfo->rx_lock, flags);
David S. Millerd9452e92008-03-04 12:28:49 -0800765 npinfo->rx_flags |= NETPOLL_RX_ENABLED;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700766 npinfo->rx_np = np;
767 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
768 }
Ingo Molnar26520762005-08-11 19:26:42 -0700769
770 /* fill up the skb queue */
771 refill_skbs();
772
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700773 /* last thing to do is link it to the net device structure */
Jeff Moyer115c1d62005-06-22 22:05:31 -0700774 ndev->npinfo = npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Matt Mackall53fb95d2005-08-11 19:27:43 -0700776 /* avoid racing with NAPI reading npinfo */
777 synchronize_rcu();
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780
781 release:
Jeff Moyer115c1d62005-06-22 22:05:31 -0700782 if (!ndev->npinfo)
783 kfree(npinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 np->dev = NULL;
785 dev_put(ndev);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700786 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
David S. Millerc68b9072006-11-14 20:40:49 -0800789static int __init netpoll_init(void)
790{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800791 skb_queue_head_init(&skb_pool);
792 return 0;
793}
794core_initcall(netpoll_init);
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796void netpoll_cleanup(struct netpoll *np)
797{
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700798 struct netpoll_info *npinfo;
799 unsigned long flags;
800
Jeff Moyer115c1d62005-06-22 22:05:31 -0700801 if (np->dev) {
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700802 npinfo = np->dev->npinfo;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700803 if (npinfo) {
804 if (npinfo->rx_np == np) {
805 spin_lock_irqsave(&npinfo->rx_lock, flags);
806 npinfo->rx_np = NULL;
David S. Millerd9452e92008-03-04 12:28:49 -0800807 npinfo->rx_flags &= ~NETPOLL_RX_ENABLED;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700808 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
809 }
810
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700811 if (atomic_dec_and_test(&npinfo->refcnt)) {
812 skb_queue_purge(&npinfo->arp_tx);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900813 skb_queue_purge(&npinfo->txq);
Jarek Poplawski25442ca2007-07-05 17:42:44 -0700814 cancel_rearming_delayed_work(&npinfo->tx_work);
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700815
Jarek Poplawski17200812007-06-28 22:11:47 -0700816 /* clean after last, unfinished work */
Stephen Hemminger0adc9ad2007-11-19 19:15:03 -0800817 __skb_queue_purge(&npinfo->txq);
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700818 kfree(npinfo);
Satyam Sharma1498b3f2007-07-09 15:22:23 -0700819 np->dev->npinfo = NULL;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700820 }
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700821 }
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700822
Jeff Moyer115c1d62005-06-22 22:05:31 -0700823 dev_put(np->dev);
824 }
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 np->dev = NULL;
827}
828
829int netpoll_trap(void)
830{
831 return atomic_read(&trapped);
832}
833
834void netpoll_set_trap(int trap)
835{
836 if (trap)
837 atomic_inc(&trapped);
838 else
839 atomic_dec(&trapped);
840}
841
842EXPORT_SYMBOL(netpoll_set_trap);
843EXPORT_SYMBOL(netpoll_trap);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700844EXPORT_SYMBOL(netpoll_print_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845EXPORT_SYMBOL(netpoll_parse_options);
846EXPORT_SYMBOL(netpoll_setup);
847EXPORT_SYMBOL(netpoll_cleanup);
848EXPORT_SYMBOL(netpoll_send_udp);
849EXPORT_SYMBOL(netpoll_poll);