blob: b1d5acd2fc7a7dc88a20f8b3b0650553a63c638c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#define MAX_SKB_SIZE \
44 (MAX_UDP_CHUNK + sizeof(struct udphdr) + \
45 sizeof(struct iphdr) + sizeof(struct ethhdr))
46
47static void zap_completion_queue(void);
Neil Horman068c6e92006-06-26 00:04:27 -070048static void arp_reply(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
David Howellsc4028952006-11-22 14:57:56 +000050static void queue_process(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
David Howells4c1ac1b2006-12-05 14:37:56 +000052 struct netpoll_info *npinfo =
53 container_of(work, struct netpoll_info, tx_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 struct sk_buff *skb;
Ingo Molnar36405432006-12-12 17:20:42 +010055 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070057 while ((skb = skb_dequeue(&npinfo->txq))) {
58 struct net_device *dev = skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070060 if (!netif_device_present(dev) || !netif_running(dev)) {
61 __kfree_skb(skb);
62 continue;
63 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnar36405432006-12-12 17:20:42 +010065 local_irq_save(flags);
66 netif_tx_lock(dev);
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -070067 if ((netif_queue_stopped(dev) ||
Pavel Emelyanov668f8952007-10-21 17:01:56 -070068 netif_subqueue_stopped(dev, skb)) ||
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -070069 dev->hard_start_xmit(skb, dev) != NETDEV_TX_OK) {
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070070 skb_queue_head(&npinfo->txq, skb);
Ingo Molnar36405432006-12-12 17:20:42 +010071 netif_tx_unlock(dev);
72 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Jarek Poplawski25442ca2007-07-05 17:42:44 -070074 schedule_delayed_work(&npinfo->tx_work, HZ/10);
Stephen Hemminger6c43ff12006-10-26 15:46:53 -070075 return;
76 }
Ingo Molnar36405432006-12-12 17:20:42 +010077 netif_tx_unlock(dev);
78 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 }
80}
81
Al Virob51655b2006-11-14 21:40:42 -080082static __sum16 checksum_udp(struct sk_buff *skb, struct udphdr *uh,
83 unsigned short ulen, __be32 saddr, __be32 daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Al Virod6f54932006-11-14 21:26:08 -080085 __wsum psum;
Herbert Xufb286bb2005-11-10 13:01:24 -080086
Herbert Xu60476372007-04-09 11:59:39 -070087 if (uh->check == 0 || skb_csum_unnecessary(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return 0;
89
Herbert Xufb286bb2005-11-10 13:01:24 -080090 psum = csum_tcpudp_nofold(saddr, daddr, ulen, IPPROTO_UDP, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Patrick McHardy84fa7932006-08-29 16:44:56 -070092 if (skb->ip_summed == CHECKSUM_COMPLETE &&
Al Virod3bc23e2006-11-14 21:24:49 -080093 !csum_fold(csum_add(psum, skb->csum)))
Herbert Xufb286bb2005-11-10 13:01:24 -080094 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Herbert Xufb286bb2005-11-10 13:01:24 -080096 skb->csum = psum;
97
98 return __skb_checksum_complete(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101/*
102 * Check whether delayed processing was scheduled for our NIC. If so,
103 * we attempt to grab the poll lock and use ->poll() to pump the card.
104 * If this fails, either we've recursed in ->poll() or it's already
105 * running on another CPU.
106 *
107 * Note: we don't mask interrupts with this lock because we're using
108 * trylock here and interrupts are already disabled in the softirq
109 * case. Further, we test the poll_owner to avoid recursion on UP
110 * systems where the lock doesn't exist.
111 *
112 * In cases where there is bi-directional communications, reading only
113 * one message at a time can lead to packets being dropped by the
114 * network adapter, forcing superfluous retries and possibly timeouts.
115 * Thus, we set our budget to greater than 1.
116 */
David S. Miller0a7606c2007-10-29 21:28:47 -0700117static int poll_one_napi(struct netpoll_info *npinfo,
118 struct napi_struct *napi, int budget)
119{
120 int work;
121
122 /* net_rx_action's ->poll() invocations and our's are
123 * synchronized by this test which is only made while
124 * holding the napi->poll_lock.
125 */
126 if (!test_bit(NAPI_STATE_SCHED, &napi->state))
127 return budget;
128
David S. Miller0a7606c2007-10-29 21:28:47 -0700129 atomic_inc(&trapped);
130
131 work = napi->poll(napi, budget);
132
133 atomic_dec(&trapped);
David S. Miller0a7606c2007-10-29 21:28:47 -0700134
135 return budget - work;
136}
137
Stephen Hemminger51069302007-11-19 19:18:11 -0800138static void poll_napi(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700140 struct napi_struct *napi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int budget = 16;
142
Stephen Hemminger51069302007-11-19 19:18:11 -0800143 list_for_each_entry(napi, &dev->napi_list, dev_list) {
David S. Miller0a7606c2007-10-29 21:28:47 -0700144 if (napi->poll_owner != smp_processor_id() &&
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700145 spin_trylock(&napi->poll_lock)) {
Stephen Hemminger51069302007-11-19 19:18:11 -0800146 budget = poll_one_napi(dev->npinfo, napi, budget);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700147 spin_unlock(&napi->poll_lock);
David S. Miller0a7606c2007-10-29 21:28:47 -0700148
149 if (!budget)
150 break;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153}
154
Neil Horman068c6e92006-06-26 00:04:27 -0700155static void service_arp_queue(struct netpoll_info *npi)
156{
Stephen Hemminger51069302007-11-19 19:18:11 -0800157 if (npi) {
158 struct sk_buff *skb;
Neil Horman068c6e92006-06-26 00:04:27 -0700159
Stephen Hemminger51069302007-11-19 19:18:11 -0800160 while ((skb = skb_dequeue(&npi->arp_tx)))
161 arp_reply(skb);
Neil Horman068c6e92006-06-26 00:04:27 -0700162 }
Neil Horman068c6e92006-06-26 00:04:27 -0700163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165void netpoll_poll(struct netpoll *np)
166{
Stephen Hemminger51069302007-11-19 19:18:11 -0800167 struct net_device *dev = np->dev;
168
169 if (!dev || !netif_running(dev) || !dev->poll_controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return;
171
172 /* Process pending work on NIC */
Stephen Hemminger51069302007-11-19 19:18:11 -0800173 dev->poll_controller(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Stephen Hemminger51069302007-11-19 19:18:11 -0800175 poll_napi(dev);
176
177 service_arp_queue(dev->npinfo);
Neil Horman068c6e92006-06-26 00:04:27 -0700178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 zap_completion_queue();
180}
181
182static void refill_skbs(void)
183{
184 struct sk_buff *skb;
185 unsigned long flags;
186
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800187 spin_lock_irqsave(&skb_pool.lock, flags);
188 while (skb_pool.qlen < MAX_SKBS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 skb = alloc_skb(MAX_SKB_SIZE, GFP_ATOMIC);
190 if (!skb)
191 break;
192
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800193 __skb_queue_tail(&skb_pool, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800195 spin_unlock_irqrestore(&skb_pool.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198static void zap_completion_queue(void)
199{
200 unsigned long flags;
201 struct softnet_data *sd = &get_cpu_var(softnet_data);
202
203 if (sd->completion_queue) {
204 struct sk_buff *clist;
205
206 local_irq_save(flags);
207 clist = sd->completion_queue;
208 sd->completion_queue = NULL;
209 local_irq_restore(flags);
210
211 while (clist != NULL) {
212 struct sk_buff *skb = clist;
213 clist = clist->next;
David S. Millerc68b9072006-11-14 20:40:49 -0800214 if (skb->destructor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 dev_kfree_skb_any(skb); /* put this one back */
216 else
217 __kfree_skb(skb);
218 }
219 }
220
221 put_cpu_var(softnet_data);
222}
223
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800224static struct sk_buff *find_skb(struct netpoll *np, int len, int reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800226 int count = 0;
227 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 zap_completion_queue();
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800230 refill_skbs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 skb = alloc_skb(len, GFP_ATOMIC);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800234 if (!skb)
235 skb = skb_dequeue(&skb_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (!skb) {
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800238 if (++count < 10) {
239 netpoll_poll(np);
240 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800242 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 atomic_set(&skb->users, 1);
246 skb_reserve(skb, reserve);
247 return skb;
248}
249
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700250static int netpoll_owner_active(struct net_device *dev)
251{
252 struct napi_struct *napi;
253
254 list_for_each_entry(napi, &dev->napi_list, dev_list) {
255 if (napi->poll_owner == smp_processor_id())
256 return 1;
257 }
258 return 0;
259}
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261static void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
262{
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700263 int status = NETDEV_TX_BUSY;
264 unsigned long tries;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900265 struct net_device *dev = np->dev;
266 struct netpoll_info *npinfo = np->dev->npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900268 if (!npinfo || !netif_running(dev) || !netif_device_present(dev)) {
269 __kfree_skb(skb);
270 return;
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700273 /* don't get messages out of order, and no recursion */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700274 if (skb_queue_len(&npinfo->txq) == 0 && !netpoll_owner_active(dev)) {
Andrew Mortona49f99f2006-12-11 17:24:46 -0800275 unsigned long flags;
276
277 local_irq_save(flags);
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700278 /* try until next clock tick */
279 for (tries = jiffies_to_usecs(1)/USEC_PER_POLL;
280 tries > 0; --tries) {
281 if (netif_tx_trylock(dev)) {
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -0700282 if (!netif_queue_stopped(dev) &&
Pavel Emelyanov668f8952007-10-21 17:01:56 -0700283 !netif_subqueue_stopped(dev, skb))
Andrew Mortone37b8d92006-12-09 14:01:49 -0800284 status = dev->hard_start_xmit(skb, dev);
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700285 netif_tx_unlock(dev);
Matt Mackallf0d34592005-08-11 19:25:11 -0700286
Andrew Mortone37b8d92006-12-09 14:01:49 -0800287 if (status == NETDEV_TX_OK)
288 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Andrew Mortone37b8d92006-12-09 14:01:49 -0800290 }
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700291
292 /* tickle device maybe there is some cleanup */
293 netpoll_poll(np);
294
295 udelay(USEC_PER_POLL);
Matt Mackall0db1d6f2005-08-11 19:25:54 -0700296 }
Andrew Mortona49f99f2006-12-11 17:24:46 -0800297 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700300 if (status != NETDEV_TX_OK) {
Stephen Hemminger5de4a472006-10-26 15:46:55 -0700301 skb_queue_tail(&npinfo->txq, skb);
David Howells4c1ac1b2006-12-05 14:37:56 +0000302 schedule_delayed_work(&npinfo->tx_work,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306void netpoll_send_udp(struct netpoll *np, const char *msg, int len)
307{
308 int total_len, eth_len, ip_len, udp_len;
309 struct sk_buff *skb;
310 struct udphdr *udph;
311 struct iphdr *iph;
312 struct ethhdr *eth;
313
314 udp_len = len + sizeof(*udph);
315 ip_len = eth_len = udp_len + sizeof(*iph);
316 total_len = eth_len + ETH_HLEN + NET_IP_ALIGN;
317
318 skb = find_skb(np, total_len, total_len - len);
319 if (!skb)
320 return;
321
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300322 skb_copy_to_linear_data(skb, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 skb->len += len;
324
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300325 skb_push(skb, sizeof(*udph));
326 skb_reset_transport_header(skb);
327 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 udph->source = htons(np->local_port);
329 udph->dest = htons(np->remote_port);
330 udph->len = htons(udp_len);
331 udph->check = 0;
Chris Lalancette8e365ee2006-11-07 14:56:19 -0800332 udph->check = csum_tcpudp_magic(htonl(np->local_ip),
333 htonl(np->remote_ip),
334 udp_len, IPPROTO_UDP,
335 csum_partial((unsigned char *)udph, udp_len, 0));
336 if (udph->check == 0)
Al Viro5e57dff2006-11-20 18:08:13 -0800337 udph->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700339 skb_push(skb, sizeof(*iph));
340 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700341 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /* iph->version = 4; iph->ihl = 5; */
344 put_unaligned(0x45, (unsigned char *)iph);
345 iph->tos = 0;
346 put_unaligned(htons(ip_len), &(iph->tot_len));
347 iph->id = 0;
348 iph->frag_off = 0;
349 iph->ttl = 64;
350 iph->protocol = IPPROTO_UDP;
351 iph->check = 0;
352 put_unaligned(htonl(np->local_ip), &(iph->saddr));
353 put_unaligned(htonl(np->remote_ip), &(iph->daddr));
354 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
355
356 eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700357 skb_reset_mac_header(skb);
Stephen Hemminger206daaf2006-10-19 23:58:23 -0700358 skb->protocol = eth->h_proto = htons(ETH_P_IP);
Stephen Hemminger09538642007-11-19 19:23:29 -0800359 memcpy(eth->h_source, np->dev->dev_addr, ETH_ALEN);
360 memcpy(eth->h_dest, np->remote_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 skb->dev = np->dev;
363
364 netpoll_send_skb(np, skb);
365}
366
367static void arp_reply(struct sk_buff *skb)
368{
Jeff Moyer115c1d62005-06-22 22:05:31 -0700369 struct netpoll_info *npinfo = skb->dev->npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 struct arphdr *arp;
371 unsigned char *arp_ptr;
372 int size, type = ARPOP_REPLY, ptype = ETH_P_ARP;
Al Viro252e3342006-11-14 20:48:11 -0800373 __be32 sip, tip;
Neil Horman47bbec02006-12-08 00:05:55 -0800374 unsigned char *sha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct sk_buff *send_skb;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700376 struct netpoll *np = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700378 if (npinfo->rx_np && npinfo->rx_np->dev == skb->dev)
379 np = npinfo->rx_np;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700380 if (!np)
381 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* No arp on this interface */
384 if (skb->dev->flags & IFF_NOARP)
385 return;
386
387 if (!pskb_may_pull(skb, (sizeof(struct arphdr) +
388 (2 * skb->dev->addr_len) +
389 (2 * sizeof(u32)))))
390 return;
391
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700392 skb_reset_network_header(skb);
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300393 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300394 arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 if ((arp->ar_hrd != htons(ARPHRD_ETHER) &&
397 arp->ar_hrd != htons(ARPHRD_IEEE802)) ||
398 arp->ar_pro != htons(ETH_P_IP) ||
399 arp->ar_op != htons(ARPOP_REQUEST))
400 return;
401
Neil Horman47bbec02006-12-08 00:05:55 -0800402 arp_ptr = (unsigned char *)(arp+1);
403 /* save the location of the src hw addr */
404 sha = arp_ptr;
405 arp_ptr += skb->dev->addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 memcpy(&sip, arp_ptr, 4);
Neil Horman47bbec02006-12-08 00:05:55 -0800407 arp_ptr += 4;
408 /* if we actually cared about dst hw addr, it would get copied here */
409 arp_ptr += skb->dev->addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 memcpy(&tip, arp_ptr, 4);
411
412 /* Should we ignore arp? */
413 if (tip != htonl(np->local_ip) || LOOPBACK(tip) || MULTICAST(tip))
414 return;
415
416 size = sizeof(struct arphdr) + 2 * (skb->dev->addr_len + 4);
417 send_skb = find_skb(np, size + LL_RESERVED_SPACE(np->dev),
418 LL_RESERVED_SPACE(np->dev));
419
420 if (!send_skb)
421 return;
422
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700423 skb_reset_network_header(send_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 arp = (struct arphdr *) skb_put(send_skb, size);
425 send_skb->dev = skb->dev;
426 send_skb->protocol = htons(ETH_P_ARP);
427
428 /* Fill the device header for the ARP frame */
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700429 if (dev_hard_header(send_skb, skb->dev, ptype,
Stephen Hemminger09538642007-11-19 19:23:29 -0800430 sha, np->dev->dev_addr,
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700431 send_skb->len) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 kfree_skb(send_skb);
433 return;
434 }
435
436 /*
437 * Fill out the arp protocol part.
438 *
439 * we only support ethernet device type,
440 * which (according to RFC 1390) should always equal 1 (Ethernet).
441 */
442
443 arp->ar_hrd = htons(np->dev->type);
444 arp->ar_pro = htons(ETH_P_IP);
445 arp->ar_hln = np->dev->addr_len;
446 arp->ar_pln = 4;
447 arp->ar_op = htons(type);
448
449 arp_ptr=(unsigned char *)(arp + 1);
450 memcpy(arp_ptr, np->dev->dev_addr, np->dev->addr_len);
451 arp_ptr += np->dev->addr_len;
452 memcpy(arp_ptr, &tip, 4);
453 arp_ptr += 4;
Neil Horman47bbec02006-12-08 00:05:55 -0800454 memcpy(arp_ptr, sha, np->dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 arp_ptr += np->dev->addr_len;
456 memcpy(arp_ptr, &sip, 4);
457
458 netpoll_send_skb(np, send_skb);
459}
460
461int __netpoll_rx(struct sk_buff *skb)
462{
463 int proto, len, ulen;
464 struct iphdr *iph;
465 struct udphdr *uh;
Neil Horman068c6e92006-06-26 00:04:27 -0700466 struct netpoll_info *npi = skb->dev->npinfo;
467 struct netpoll *np = npi->rx_np;
468
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700469 if (!np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 goto out;
471 if (skb->dev->type != ARPHRD_ETHER)
472 goto out;
473
Stephen Hemminger33f807b2007-11-19 19:24:52 -0800474 /* if receive ARP during middle of NAPI poll, then queue */
YOSHIFUJI Hideaki724800d2007-03-25 20:13:04 -0700475 if (skb->protocol == htons(ETH_P_ARP) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 atomic_read(&trapped)) {
Neil Horman068c6e92006-06-26 00:04:27 -0700477 skb_queue_tail(&npi->arp_tx, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return 1;
479 }
480
481 proto = ntohs(eth_hdr(skb)->h_proto);
482 if (proto != ETH_P_IP)
483 goto out;
484 if (skb->pkt_type == PACKET_OTHERHOST)
485 goto out;
486 if (skb_shared(skb))
487 goto out;
488
489 iph = (struct iphdr *)skb->data;
490 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
491 goto out;
492 if (iph->ihl < 5 || iph->version != 4)
493 goto out;
494 if (!pskb_may_pull(skb, iph->ihl*4))
495 goto out;
496 if (ip_fast_csum((u8 *)iph, iph->ihl) != 0)
497 goto out;
498
499 len = ntohs(iph->tot_len);
500 if (skb->len < len || len < iph->ihl*4)
501 goto out;
502
Aubrey.Li5e7d7fa2007-04-17 12:40:20 -0700503 /*
504 * Our transport medium may have padded the buffer out.
505 * Now We trim to the true length of the frame.
506 */
507 if (pskb_trim_rcsum(skb, len))
508 goto out;
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (iph->protocol != IPPROTO_UDP)
511 goto out;
512
513 len -= iph->ihl*4;
514 uh = (struct udphdr *)(((char *)iph) + iph->ihl*4);
515 ulen = ntohs(uh->len);
516
517 if (ulen != len)
518 goto out;
Herbert Xufb286bb2005-11-10 13:01:24 -0800519 if (checksum_udp(skb, uh, ulen, iph->saddr, iph->daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 goto out;
521 if (np->local_ip && np->local_ip != ntohl(iph->daddr))
522 goto out;
523 if (np->remote_ip && np->remote_ip != ntohl(iph->saddr))
524 goto out;
525 if (np->local_port && np->local_port != ntohs(uh->dest))
526 goto out;
527
528 np->rx_hook(np, ntohs(uh->source),
529 (char *)(uh+1),
530 ulen - sizeof(struct udphdr));
531
532 kfree_skb(skb);
533 return 1;
534
535out:
Stephen Hemminger33f807b2007-11-19 19:24:52 -0800536 /* If packet received while already in poll then just
537 * silently drop.
538 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (atomic_read(&trapped)) {
540 kfree_skb(skb);
541 return 1;
542 }
543
544 return 0;
545}
546
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700547void netpoll_print_options(struct netpoll *np)
548{
Joe Perches0795af52007-10-03 17:59:30 -0700549 DECLARE_MAC_BUF(mac);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700550 printk(KERN_INFO "%s: local port %d\n",
551 np->name, np->local_port);
552 printk(KERN_INFO "%s: local IP %d.%d.%d.%d\n",
553 np->name, HIPQUAD(np->local_ip));
554 printk(KERN_INFO "%s: interface %s\n",
555 np->name, np->dev_name);
556 printk(KERN_INFO "%s: remote port %d\n",
557 np->name, np->remote_port);
558 printk(KERN_INFO "%s: remote IP %d.%d.%d.%d\n",
559 np->name, HIPQUAD(np->remote_ip));
Joe Perches0795af52007-10-03 17:59:30 -0700560 printk(KERN_INFO "%s: remote ethernet address %s\n",
561 np->name, print_mac(mac, np->remote_mac));
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700562}
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564int netpoll_parse_options(struct netpoll *np, char *opt)
565{
566 char *cur=opt, *delim;
567
David S. Millerc68b9072006-11-14 20:40:49 -0800568 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if ((delim = strchr(cur, '@')) == NULL)
570 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800571 *delim = 0;
572 np->local_port = simple_strtol(cur, NULL, 10);
573 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
David S. Millerc68b9072006-11-14 20:40:49 -0800577 if (*cur != '/') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if ((delim = strchr(cur, '/')) == NULL)
579 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800580 *delim = 0;
581 np->local_ip = ntohl(in_aton(cur));
582 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584 cur++;
585
David S. Millerc68b9072006-11-14 20:40:49 -0800586 if (*cur != ',') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 /* parse out dev name */
588 if ((delim = strchr(cur, ',')) == NULL)
589 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800590 *delim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 strlcpy(np->dev_name, cur, sizeof(np->dev_name));
David S. Millerc68b9072006-11-14 20:40:49 -0800592 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594 cur++;
595
David S. Millerc68b9072006-11-14 20:40:49 -0800596 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* dst port */
598 if ((delim = strchr(cur, '@')) == NULL)
599 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800600 *delim = 0;
601 np->remote_port = simple_strtol(cur, NULL, 10);
602 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /* dst ip */
607 if ((delim = strchr(cur, '/')) == NULL)
608 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800609 *delim = 0;
610 np->remote_ip = ntohl(in_aton(cur));
611 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
David S. Millerc68b9072006-11-14 20:40:49 -0800613 if (*cur != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /* MAC address */
615 if ((delim = strchr(cur, ':')) == NULL)
616 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800617 *delim = 0;
618 np->remote_mac[0] = simple_strtol(cur, NULL, 16);
619 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if ((delim = strchr(cur, ':')) == NULL)
621 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800622 *delim = 0;
623 np->remote_mac[1] = simple_strtol(cur, NULL, 16);
624 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if ((delim = strchr(cur, ':')) == NULL)
626 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800627 *delim = 0;
628 np->remote_mac[2] = simple_strtol(cur, NULL, 16);
629 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if ((delim = strchr(cur, ':')) == NULL)
631 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800632 *delim = 0;
633 np->remote_mac[3] = simple_strtol(cur, NULL, 16);
634 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if ((delim = strchr(cur, ':')) == NULL)
636 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800637 *delim = 0;
638 np->remote_mac[4] = simple_strtol(cur, NULL, 16);
639 cur = delim + 1;
640 np->remote_mac[5] = simple_strtol(cur, NULL, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
642
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700643 netpoll_print_options(np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 return 0;
646
647 parse_failed:
648 printk(KERN_INFO "%s: couldn't parse config at %s!\n",
649 np->name, cur);
650 return -1;
651}
652
653int netpoll_setup(struct netpoll *np)
654{
655 struct net_device *ndev = NULL;
656 struct in_device *in_dev;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700657 struct netpoll_info *npinfo;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700658 unsigned long flags;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700659 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 if (np->dev_name)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700662 ndev = dev_get_by_name(&init_net, np->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (!ndev) {
664 printk(KERN_ERR "%s: %s doesn't exist, aborting.\n",
665 np->name, np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700666 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668
669 np->dev = ndev;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700670 if (!ndev->npinfo) {
671 npinfo = kmalloc(sizeof(*npinfo), GFP_KERNEL);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700672 if (!npinfo) {
673 err = -ENOMEM;
Jeff Moyer115c1d62005-06-22 22:05:31 -0700674 goto release;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700675 }
Jeff Moyer115c1d62005-06-22 22:05:31 -0700676
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700677 npinfo->rx_np = NULL;
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700678
Ingo Molnara9f6a0d2005-09-09 13:10:41 -0700679 spin_lock_init(&npinfo->rx_lock);
Neil Horman068c6e92006-06-26 00:04:27 -0700680 skb_queue_head_init(&npinfo->arp_tx);
Stephen Hemmingerb6cd27e2006-10-26 15:46:51 -0700681 skb_queue_head_init(&npinfo->txq);
David Howells4c1ac1b2006-12-05 14:37:56 +0000682 INIT_DELAYED_WORK(&npinfo->tx_work, queue_process);
Stephen Hemmingerb6cd27e2006-10-26 15:46:51 -0700683
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700684 atomic_set(&npinfo->refcnt, 1);
685 } else {
Jeff Moyer115c1d62005-06-22 22:05:31 -0700686 npinfo = ndev->npinfo;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700687 atomic_inc(&npinfo->refcnt);
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (!ndev->poll_controller) {
691 printk(KERN_ERR "%s: %s doesn't support polling, aborting.\n",
692 np->name, np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700693 err = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 goto release;
695 }
696
697 if (!netif_running(ndev)) {
698 unsigned long atmost, atleast;
699
700 printk(KERN_INFO "%s: device %s not up yet, forcing it\n",
701 np->name, np->dev_name);
702
Stephen Hemminger6756ae42006-03-20 22:23:58 -0800703 rtnl_lock();
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700704 err = dev_open(ndev);
705 rtnl_unlock();
706
707 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 printk(KERN_ERR "%s: failed to open %s\n",
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700709 np->name, ndev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto release;
711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 atleast = jiffies + HZ/10;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900714 atmost = jiffies + 4*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 while (!netif_carrier_ok(ndev)) {
716 if (time_after(jiffies, atmost)) {
717 printk(KERN_NOTICE
718 "%s: timeout waiting for carrier\n",
719 np->name);
720 break;
721 }
722 cond_resched();
723 }
724
725 /* If carrier appears to come up instantly, we don't
726 * trust it and pause so that we don't pump all our
727 * queued console messages into the bitbucket.
728 */
729
730 if (time_before(jiffies, atleast)) {
731 printk(KERN_NOTICE "%s: carrier detect appears"
732 " untrustworthy, waiting 4 seconds\n",
733 np->name);
734 msleep(4000);
735 }
736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (!np->local_ip) {
739 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700740 in_dev = __in_dev_get_rcu(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (!in_dev || !in_dev->ifa_list) {
743 rcu_read_unlock();
744 printk(KERN_ERR "%s: no IP address for %s, aborting\n",
745 np->name, np->dev_name);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700746 err = -EDESTADDRREQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 goto release;
748 }
749
750 np->local_ip = ntohl(in_dev->ifa_list->ifa_local);
751 rcu_read_unlock();
752 printk(KERN_INFO "%s: local IP %d.%d.%d.%d\n",
753 np->name, HIPQUAD(np->local_ip));
754 }
755
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700756 if (np->rx_hook) {
757 spin_lock_irqsave(&npinfo->rx_lock, flags);
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700758 npinfo->rx_np = np;
759 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
760 }
Ingo Molnar26520762005-08-11 19:26:42 -0700761
762 /* fill up the skb queue */
763 refill_skbs();
764
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700765 /* last thing to do is link it to the net device structure */
Jeff Moyer115c1d62005-06-22 22:05:31 -0700766 ndev->npinfo = npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Matt Mackall53fb95d2005-08-11 19:27:43 -0700768 /* avoid racing with NAPI reading npinfo */
769 synchronize_rcu();
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return 0;
772
773 release:
Jeff Moyer115c1d62005-06-22 22:05:31 -0700774 if (!ndev->npinfo)
775 kfree(npinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 np->dev = NULL;
777 dev_put(ndev);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700778 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
David S. Millerc68b9072006-11-14 20:40:49 -0800781static int __init netpoll_init(void)
782{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800783 skb_queue_head_init(&skb_pool);
784 return 0;
785}
786core_initcall(netpoll_init);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788void netpoll_cleanup(struct netpoll *np)
789{
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700790 struct netpoll_info *npinfo;
791 unsigned long flags;
792
Jeff Moyer115c1d62005-06-22 22:05:31 -0700793 if (np->dev) {
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700794 npinfo = np->dev->npinfo;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700795 if (npinfo) {
796 if (npinfo->rx_np == np) {
797 spin_lock_irqsave(&npinfo->rx_lock, flags);
798 npinfo->rx_np = NULL;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700799 spin_unlock_irqrestore(&npinfo->rx_lock, flags);
800 }
801
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700802 if (atomic_dec_and_test(&npinfo->refcnt)) {
803 skb_queue_purge(&npinfo->arp_tx);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900804 skb_queue_purge(&npinfo->txq);
Jarek Poplawski25442ca2007-07-05 17:42:44 -0700805 cancel_rearming_delayed_work(&npinfo->tx_work);
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700806
Jarek Poplawski17200812007-06-28 22:11:47 -0700807 /* clean after last, unfinished work */
Stephen Hemminger0adc9ad2007-11-19 19:15:03 -0800808 __skb_queue_purge(&npinfo->txq);
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700809 kfree(npinfo);
Satyam Sharma1498b3f2007-07-09 15:22:23 -0700810 np->dev->npinfo = NULL;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700811 }
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700812 }
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700813
Jeff Moyer115c1d62005-06-22 22:05:31 -0700814 dev_put(np->dev);
815 }
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 np->dev = NULL;
818}
819
820int netpoll_trap(void)
821{
822 return atomic_read(&trapped);
823}
824
825void netpoll_set_trap(int trap)
826{
827 if (trap)
828 atomic_inc(&trapped);
829 else
830 atomic_dec(&trapped);
831}
832
833EXPORT_SYMBOL(netpoll_set_trap);
834EXPORT_SYMBOL(netpoll_trap);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700835EXPORT_SYMBOL(netpoll_print_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836EXPORT_SYMBOL(netpoll_parse_options);
837EXPORT_SYMBOL(netpoll_setup);
838EXPORT_SYMBOL(netpoll_cleanup);
839EXPORT_SYMBOL(netpoll_send_udp);
840EXPORT_SYMBOL(netpoll_poll);