blob: df4d531e27e0aaa42d2f7f184cc1e828ba7c5c44 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Authors:
3 * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se>
4 * Uppsala University and
5 * Swedish University of Agricultural Sciences
6 *
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Ben Greear <greearb@candelatech.com>
9 * Jens Låås <jens.laas@data.slu.se>
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 *
17 * A tool for loading the network with preconfigurated packets.
18 * The tool is implemented as a linux module. Parameters are output
19 * device, delay (to hard_xmit), number of packets, and whether
20 * to use multiple SKBs or just the same one.
21 * pktgen uses the installed interface's output routine.
22 *
23 * Additional hacking by:
24 *
25 * Jens.Laas@data.slu.se
26 * Improved by ANK. 010120.
27 * Improved by ANK even more. 010212.
28 * MAC address typo fixed. 010417 --ro
29 * Integrated. 020301 --DaveM
30 * Added multiskb option 020301 --DaveM
31 * Scaling of results. 020417--sigurdur@linpro.no
32 * Significant re-work of the module:
33 * * Convert to threaded model to more efficiently be able to transmit
34 * and receive on multiple interfaces at once.
35 * * Converted many counters to __u64 to allow longer runs.
36 * * Allow configuration of ranges, like min/max IP address, MACs,
37 * and UDP-ports, for both source and destination, and can
38 * set to use a random distribution or sequentially walk the range.
39 * * Can now change most values after starting.
40 * * Place 12-byte packet in UDP payload with magic number,
41 * sequence number, and timestamp.
42 * * Add receiver code that detects dropped pkts, re-ordered pkts, and
43 * latencies (with micro-second) precision.
44 * * Add IOCTL interface to easily get counters & configuration.
45 * --Ben Greear <greearb@candelatech.com>
46 *
47 * Renamed multiskb to clone_skb and cleaned up sending core for two distinct
48 * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0
49 * as a "fastpath" with a configurable number of clones after alloc's.
50 * clone_skb=0 means all packets are allocated this also means ranges time
51 * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100
52 * clones.
53 *
54 * Also moved to /proc/net/pktgen/
55 * --ro
56 *
57 * Sept 10: Fixed threading/locking. Lots of bone-headed and more clever
58 * mistakes. Also merged in DaveM's patch in the -pre6 patch.
59 * --Ben Greear <greearb@candelatech.com>
60 *
61 * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br)
62 *
63 *
64 * 021124 Finished major redesign and rewrite for new functionality.
65 * See Documentation/networking/pktgen.txt for how to use this.
66 *
67 * The new operation:
68 * For each CPU one thread/process is created at start. This process checks
69 * for running devices in the if_list and sends packets until count is 0 it
70 * also the thread checks the thread->control which is used for inter-process
71 * communication. controlling process "posts" operations to the threads this
72 * way. The if_lock should be possible to remove when add/rem_device is merged
73 * into this too.
74 *
75 * By design there should only be *one* "controlling" process. In practice
76 * multiple write accesses gives unpredictable result. Understood by "write"
77 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070078 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 *
80 * Note when adding devices to a specific CPU there good idea to also assign
81 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
82 * --ro
83 *
84 * Fix refcount off by one if first packet fails, potential null deref,
85 * memleak 030710- KJP
86 *
87 * First "ranges" functionality for ipv6 030726 --ro
88 *
89 * Included flow support. 030802 ANK.
90 *
91 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
92 *
93 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
94 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
95 *
96 * New xmit() return, do_div and misc clean up by Stephen Hemminger
97 * <shemminger@osdl.org> 040923
98 *
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070099 * Randy Dunlap fixed u64 printk compiler waring
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *
101 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
102 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
103 *
104 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
105 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
106 *
107 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
108 * 050103
109 */
110#include <linux/sys.h>
111#include <linux/types.h>
112#include <linux/module.h>
113#include <linux/moduleparam.h>
114#include <linux/kernel.h>
115#include <linux/smp_lock.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800116#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <linux/sched.h>
118#include <linux/slab.h>
119#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#include <linux/unistd.h>
121#include <linux/string.h>
122#include <linux/ptrace.h>
123#include <linux/errno.h>
124#include <linux/ioport.h>
125#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800126#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#include <linux/delay.h>
128#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800129#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#include <linux/init.h>
131#include <linux/skbuff.h>
132#include <linux/netdevice.h>
133#include <linux/inet.h>
134#include <linux/inetdevice.h>
135#include <linux/rtnetlink.h>
136#include <linux/if_arp.h>
137#include <linux/in.h>
138#include <linux/ip.h>
139#include <linux/ipv6.h>
140#include <linux/udp.h>
141#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700142#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800144#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#include <net/checksum.h>
146#include <net/ipv6.h>
147#include <net/addrconf.h>
148#include <asm/byteorder.h>
149#include <linux/rcupdate.h>
150#include <asm/bitops.h>
151#include <asm/io.h>
152#include <asm/dma.h>
153#include <asm/uaccess.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800154#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#include <asm/timex.h>
156
Luiz Capitulino65a39802006-03-20 22:18:31 -0800157#define VERSION "pktgen v2.65: Packet Generator for packet performance testing.\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/* #define PG_DEBUG(a) a */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800160#define PG_DEBUG(a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162/* The buckets are exponential in 'width' */
163#define LAT_BUCKETS_MAX 32
164#define IP_NAME_SZ 32
165
166/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800167#define F_IPSRC_RND (1<<0) /* IP-Src Random */
168#define F_IPDST_RND (1<<1) /* IP-Dst Random */
169#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
170#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
171#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
172#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
173#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
174#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176/* Thread control flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800177#define T_TERMINATE (1<<0)
178#define T_STOP (1<<1) /* Stop run */
179#define T_RUN (1<<2) /* Start run */
180#define T_REMDEVALL (1<<3) /* Remove all devs */
181#define T_REMDEV (1<<4) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/* If lock -- can be removed after some work */
184#define if_lock(t) spin_lock(&(t->if_lock));
185#define if_unlock(t) spin_unlock(&(t->if_lock));
186
187/* Used to help with determining the pkts on receive */
188#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700189#define PG_PROC_DIR "pktgen"
190#define PGCTRL "pgctrl"
191static struct proc_dir_entry *pg_proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193#define MAX_CFLOWS 65536
194
Luiz Capitulino222f1802006-03-20 22:16:13 -0800195struct flow_state {
196 __u32 cur_daddr;
197 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
200struct pktgen_dev {
201
202 /*
203 * Try to keep frequent/infrequent used vars. separated.
204 */
205
Luiz Capitulino222f1802006-03-20 22:16:13 -0800206 char ifname[IFNAMSIZ];
207 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Luiz Capitulino222f1802006-03-20 22:16:13 -0800209 struct pktgen_thread *pg_thread; /* the owner */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800210 struct list_head list; /* Used for chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Luiz Capitulino222f1802006-03-20 22:16:13 -0800212 int running; /* if this changes to false, the test will stop */
213
214 /* If min != max, then we will either do a linear iteration, or
215 * we will do a random selection from within the range.
216 */
217 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800218 int removal_mark; /* non-zero => the device is marked for
219 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Luiz Capitulino222f1802006-03-20 22:16:13 -0800221 int min_pkt_size; /* = ETH_ZLEN; */
222 int max_pkt_size; /* = ETH_ZLEN; */
223 int nfrags;
224 __u32 delay_us; /* Default delay */
225 __u32 delay_ns;
226 __u64 count; /* Default No packets to send */
227 __u64 sofar; /* How many pkts we've sent so far */
228 __u64 tx_bytes; /* How many bytes we've transmitted */
229 __u64 errors; /* Errors when trying to transmit, pkts will be re-sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Luiz Capitulino222f1802006-03-20 22:16:13 -0800231 /* runtime counters relating to clone_skb */
232 __u64 next_tx_us; /* timestamp of when to tx next */
233 __u32 next_tx_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Luiz Capitulino222f1802006-03-20 22:16:13 -0800235 __u64 allocated_skbs;
236 __u32 clone_count;
237 int last_ok; /* Was last skb sent?
238 * Or a failed transmit of some sort? This will keep
239 * sequence numbers in order, for example.
240 */
241 __u64 started_at; /* micro-seconds */
242 __u64 stopped_at; /* micro-seconds */
243 __u64 idle_acc; /* micro-seconds */
244 __u32 seq_num;
245
246 int clone_skb; /* Use multiple SKBs during packet gen. If this number
247 * is greater than 1, then that many copies of the same
248 * packet will be sent before a new packet is allocated.
249 * For instance, if you want to send 1024 identical packets
250 * before creating a new packet, set clone_skb to 1024.
251 */
252
253 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
254 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
255 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
256 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
257
258 struct in6_addr in6_saddr;
259 struct in6_addr in6_daddr;
260 struct in6_addr cur_in6_daddr;
261 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800263 struct in6_addr min_in6_daddr;
264 struct in6_addr max_in6_daddr;
265 struct in6_addr min_in6_saddr;
266 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Luiz Capitulino222f1802006-03-20 22:16:13 -0800268 /* If we're doing ranges, random or incremental, then this
269 * defines the min/max for those ranges.
270 */
271 __u32 saddr_min; /* inclusive, source IP address */
272 __u32 saddr_max; /* exclusive, source IP address */
273 __u32 daddr_min; /* inclusive, dest IP address */
274 __u32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Luiz Capitulino222f1802006-03-20 22:16:13 -0800276 __u16 udp_src_min; /* inclusive, source UDP port */
277 __u16 udp_src_max; /* exclusive, source UDP port */
278 __u16 udp_dst_min; /* inclusive, dest UDP port */
279 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Luiz Capitulino222f1802006-03-20 22:16:13 -0800281 __u32 src_mac_count; /* How many MACs to iterate through */
282 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Luiz Capitulino222f1802006-03-20 22:16:13 -0800284 unsigned char dst_mac[ETH_ALEN];
285 unsigned char src_mac[ETH_ALEN];
286
287 __u32 cur_dst_mac_offset;
288 __u32 cur_src_mac_offset;
289 __u32 cur_saddr;
290 __u32 cur_daddr;
291 __u16 cur_udp_dst;
292 __u16 cur_udp_src;
293 __u32 cur_pkt_size;
294
295 __u8 hh[14];
296 /* = {
297 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
298
299 We fill in SRC address later
300 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
301 0x08, 0x00
302 };
303 */
304 __u16 pad; /* pad out the hh struct to an even 16 bytes */
305
306 struct sk_buff *skb; /* skb we are to transmit next, mainly used for when we
307 * are transmitting the same one multiple times
308 */
309 struct net_device *odev; /* The out-going device. Note that the device should
310 * have it's pg_info pointer pointing back to this
311 * device. This will be set when the user specifies
312 * the out-going device name (not when the inject is
313 * started as it used to do.)
314 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800316 unsigned cflows; /* Concurrent flows (config) */
317 unsigned lflow; /* Flow length (config) */
318 unsigned nflows; /* accumulated flows (stats) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
320
321struct pktgen_hdr {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800322 __u32 pgh_magic;
323 __u32 seq_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 __u32 tv_sec;
325 __u32 tv_usec;
326};
327
328struct pktgen_thread {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800329 spinlock_t if_lock;
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800330 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800331 struct list_head th_list;
332 int removed;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800333 char name[32];
334 char result[512];
335 u32 max_before_softirq; /* We'll call do_softirq to prevent starvation. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Luiz Capitulino222f1802006-03-20 22:16:13 -0800337 /* Field for thread to receive "posted" events terminate, stop ifs etc. */
338
339 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int pid;
341 int cpu;
342
Luiz Capitulino222f1802006-03-20 22:16:13 -0800343 wait_queue_head_t queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344};
345
346#define REMOVE 1
347#define FIND 0
348
349/* This code works around the fact that do_div cannot handle two 64-bit
350 numbers, and regular 64-bit division doesn't work on x86 kernels.
351 --Ben
352*/
353
354#define PG_DIV 0
355
356/* This was emailed to LMKL by: Chris Caputo <ccaputo@alt.net>
357 * Function copied/adapted/optimized from:
358 *
359 * nemesis.sourceforge.net/browse/lib/static/intmath/ix86/intmath.c.html
360 *
361 * Copyright 1994, University of Cambridge Computer Laboratory
362 * All Rights Reserved.
363 *
364 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700365static inline s64 divremdi3(s64 x, s64 y, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800367 u64 a = (x < 0) ? -x : x;
368 u64 b = (y < 0) ? -y : y;
369 u64 res = 0, d = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Luiz Capitulino222f1802006-03-20 22:16:13 -0800371 if (b > 0) {
372 while (b < a) {
373 b <<= 1;
374 d <<= 1;
375 }
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Luiz Capitulino222f1802006-03-20 22:16:13 -0800378 do {
379 if (a >= b) {
380 a -= b;
381 res += d;
382 }
383 b >>= 1;
384 d >>= 1;
385 }
386 while (d);
387
388 if (PG_DIV == type) {
389 return (((x ^ y) & (1ll << 63)) == 0) ? res : -(s64) res;
390 } else {
391 return ((x & (1ll << 63)) == 0) ? a : -(s64) a;
392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395/* End of hacks to deal with 64-bit math on x86 */
396
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700397/** Convert to milliseconds */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800398static inline __u64 tv_to_ms(const struct timeval *tv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800400 __u64 ms = tv->tv_usec / 1000;
401 ms += (__u64) tv->tv_sec * (__u64) 1000;
402 return ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405/** Convert to micro-seconds */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800406static inline __u64 tv_to_us(const struct timeval *tv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800408 __u64 us = tv->tv_usec;
409 us += (__u64) tv->tv_sec * (__u64) 1000000;
410 return us;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Luiz Capitulino222f1802006-03-20 22:16:13 -0800413static inline __u64 pg_div(__u64 n, __u32 base)
414{
415 __u64 tmp = n;
416 do_div(tmp, base);
417 /* printk("pktgen: pg_div, n: %llu base: %d rv: %llu\n",
418 n, base, tmp); */
419 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Luiz Capitulino222f1802006-03-20 22:16:13 -0800422static inline __u64 pg_div64(__u64 n, __u64 base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800424 __u64 tmp = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/*
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700426 * How do we know if the architecture we are running on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * supports division with 64 bit base?
428 *
429 */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800430#if defined(__sparc_v9__) || defined(__powerpc64__) || defined(__alpha__) || defined(__x86_64__) || defined(__ia64__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Luiz Capitulino222f1802006-03-20 22:16:13 -0800432 do_div(tmp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433#else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800434 tmp = divremdi3(n, base, PG_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -0800436 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439static inline u32 pktgen_random(void)
440{
441#if 0
442 __u32 n;
443 get_random_bytes(&n, 4);
444 return n;
445#else
446 return net_random();
447#endif
448}
449
Luiz Capitulino222f1802006-03-20 22:16:13 -0800450static inline __u64 getCurMs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800452 struct timeval tv;
453 do_gettimeofday(&tv);
454 return tv_to_ms(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Luiz Capitulino222f1802006-03-20 22:16:13 -0800457static inline __u64 getCurUs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800459 struct timeval tv;
460 do_gettimeofday(&tv);
461 return tv_to_us(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Luiz Capitulino222f1802006-03-20 22:16:13 -0800464static inline __u64 tv_diff(const struct timeval *a, const struct timeval *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800466 return tv_to_us(a) - tv_to_us(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/* old include end */
470
471static char version[] __initdata = VERSION;
472
Luiz Capitulino222f1802006-03-20 22:16:13 -0800473static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
474static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
475static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
476 const char *ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
478static void pktgen_run_all_threads(void);
479static void pktgen_stop_all_threads_ifs(void);
480static int pktgen_stop_device(struct pktgen_dev *pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800481static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800483static int pktgen_mark_device(const char *ifname);
484static unsigned int scan_ip6(const char *s, char ip[16]);
485static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487/* Module parameters, defaults. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800488static int pg_count_d = 1000; /* 1000 pkts by default */
Jaco Kroonf34fbb972005-12-22 12:51:46 -0800489static int pg_delay_d;
490static int pg_clone_skb_d;
491static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Luiz Capitulino222fa072006-03-20 22:24:27 -0800493static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800494static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static struct notifier_block pktgen_notifier_block = {
497 .notifier_call = pktgen_device_event,
498};
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/*
501 * /proc handling functions
502 *
503 */
504
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700505static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800506{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700507 seq_puts(seq, VERSION);
508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Luiz Capitulino222f1802006-03-20 22:16:13 -0800511static ssize_t pgctrl_write(struct file *file, const char __user * buf,
512 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700515 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Luiz Capitulino222f1802006-03-20 22:16:13 -0800517 if (!capable(CAP_NET_ADMIN)) {
518 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700522 if (count > sizeof(data))
523 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700526 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700527 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800528 }
529 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Luiz Capitulino222f1802006-03-20 22:16:13 -0800531 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 pktgen_stop_all_threads_ifs();
533
Luiz Capitulino222f1802006-03-20 22:16:13 -0800534 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 pktgen_run_all_threads();
536
Luiz Capitulino222f1802006-03-20 22:16:13 -0800537 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 printk("pktgen: Unknown command: %s\n", data);
539
540 err = count;
541
Luiz Capitulino222f1802006-03-20 22:16:13 -0800542out:
543 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700546static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700548 return single_open(file, pgctrl_show, PDE(inode)->data);
549}
550
551static struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800552 .owner = THIS_MODULE,
553 .open = pgctrl_open,
554 .read = seq_read,
555 .llseek = seq_lseek,
556 .write = pgctrl_write,
557 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700558};
559
560static int pktgen_if_show(struct seq_file *seq, void *v)
561{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 struct pktgen_dev *pkt_dev = seq->private;
564 __u64 sa;
565 __u64 stopped;
566 __u64 now = getCurUs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Luiz Capitulino222f1802006-03-20 22:16:13 -0800568 seq_printf(seq,
569 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
570 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
571 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Luiz Capitulino222f1802006-03-20 22:16:13 -0800573 seq_printf(seq,
574 " frags: %d delay: %u clone_skb: %d ifname: %s\n",
575 pkt_dev->nfrags,
576 1000 * pkt_dev->delay_us + pkt_dev->delay_ns,
577 pkt_dev->clone_skb, pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Luiz Capitulino222f1802006-03-20 22:16:13 -0800579 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
580 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Luiz Capitulino222f1802006-03-20 22:16:13 -0800582 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800584 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
585 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
586 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
587 seq_printf(seq,
588 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
589 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Luiz Capitulino222f1802006-03-20 22:16:13 -0800591 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
592 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
593 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
594 seq_printf(seq,
595 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
596 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Luiz Capitulino222f1802006-03-20 22:16:13 -0800598 } else
599 seq_printf(seq,
600 " dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n",
601 pkt_dev->dst_min, pkt_dev->dst_max, pkt_dev->src_min,
602 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700604 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800606 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -0800607 for (i = 0; i < 6; i++)
608 seq_printf(seq, "%02X%s", pkt_dev->odev->dev_addr[i],
609 i == 5 ? " " : ":");
610 else
611 for (i = 0; i < 6; i++)
612 seq_printf(seq, "%02X%s", pkt_dev->src_mac[i],
613 i == 5 ? " " : ":");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Luiz Capitulino222f1802006-03-20 22:16:13 -0800615 seq_printf(seq, "dst_mac: ");
616 for (i = 0; i < 6; i++)
617 seq_printf(seq, "%02X%s", pkt_dev->dst_mac[i],
618 i == 5 ? "\n" : ":");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Luiz Capitulino222f1802006-03-20 22:16:13 -0800620 seq_printf(seq,
621 " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n",
622 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
623 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Luiz Capitulino222f1802006-03-20 22:16:13 -0800625 seq_printf(seq,
626 " src_mac_count: %d dst_mac_count: %d \n Flags: ",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700627 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Luiz Capitulino222f1802006-03-20 22:16:13 -0800629 if (pkt_dev->flags & F_IPV6)
630 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Luiz Capitulino222f1802006-03-20 22:16:13 -0800632 if (pkt_dev->flags & F_IPSRC_RND)
633 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Luiz Capitulino222f1802006-03-20 22:16:13 -0800635 if (pkt_dev->flags & F_IPDST_RND)
636 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Luiz Capitulino222f1802006-03-20 22:16:13 -0800638 if (pkt_dev->flags & F_TXSIZE_RND)
639 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Luiz Capitulino222f1802006-03-20 22:16:13 -0800641 if (pkt_dev->flags & F_UDPSRC_RND)
642 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Luiz Capitulino222f1802006-03-20 22:16:13 -0800644 if (pkt_dev->flags & F_UDPDST_RND)
645 seq_printf(seq, "UDPDST_RND ");
646
647 if (pkt_dev->flags & F_MACSRC_RND)
648 seq_printf(seq, "MACSRC_RND ");
649
650 if (pkt_dev->flags & F_MACDST_RND)
651 seq_printf(seq, "MACDST_RND ");
652
653 seq_puts(seq, "\n");
654
655 sa = pkt_dev->started_at;
656 stopped = pkt_dev->stopped_at;
657 if (pkt_dev->running)
658 stopped = now; /* not really stopped, more like last-running-at */
659
660 seq_printf(seq,
661 "Current:\n pkts-sofar: %llu errors: %llu\n started: %lluus stopped: %lluus idle: %lluus\n",
662 (unsigned long long)pkt_dev->sofar,
663 (unsigned long long)pkt_dev->errors, (unsigned long long)sa,
664 (unsigned long long)stopped,
665 (unsigned long long)pkt_dev->idle_acc);
666
667 seq_printf(seq,
668 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700669 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
670 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Luiz Capitulino222f1802006-03-20 22:16:13 -0800672 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800674 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
675 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
676 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
677 } else
678 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700679 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Luiz Capitulino222f1802006-03-20 22:16:13 -0800681 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700682 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Luiz Capitulino222f1802006-03-20 22:16:13 -0800684 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800687 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800689 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700691 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Luiz Capitulino222f1802006-03-20 22:16:13 -0800694static int count_trail_chars(const char __user * user_buffer,
695 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 int i;
698
699 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800700 char c;
701 if (get_user(c, &user_buffer[i]))
702 return -EFAULT;
703 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 case '\"':
705 case '\n':
706 case '\r':
707 case '\t':
708 case ' ':
709 case '=':
710 break;
711 default:
712 goto done;
713 };
714 }
715done:
716 return i;
717}
718
Luiz Capitulino222f1802006-03-20 22:16:13 -0800719static unsigned long num_arg(const char __user * user_buffer,
720 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 int i = 0;
723 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800724
725 for (; i < maxlen; i++) {
726 char c;
727 if (get_user(c, &user_buffer[i]))
728 return -EFAULT;
729 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800731 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 } else
733 break;
734 }
735 return i;
736}
737
Luiz Capitulino222f1802006-03-20 22:16:13 -0800738static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 int i = 0;
741
Luiz Capitulino222f1802006-03-20 22:16:13 -0800742 for (; i < maxlen; i++) {
743 char c;
744 if (get_user(c, &user_buffer[i]))
745 return -EFAULT;
746 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 case '\"':
748 case '\n':
749 case '\r':
750 case '\t':
751 case ' ':
752 goto done_str;
753 break;
754 default:
755 break;
756 };
757 }
758done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return i;
760}
761
Luiz Capitulino222f1802006-03-20 22:16:13 -0800762static ssize_t pktgen_if_write(struct file *file,
763 const char __user * user_buffer, size_t count,
764 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800766 struct seq_file *seq = (struct seq_file *)file->private_data;
767 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 int i = 0, max, len;
769 char name[16], valstr[32];
770 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800771 char *pg_result = NULL;
772 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800774
775 pg_result = &(pkt_dev->result[0]);
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (count < 1) {
778 printk("pktgen: wrong command format\n");
779 return -EINVAL;
780 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 max = count - i;
783 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800784 if (tmp < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 printk("pktgen: illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800786 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800788 i += tmp;
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* Read variable name */
791
792 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800793 if (len < 0) {
794 return len;
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800797 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return -EFAULT;
799 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800800
801 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800803 if (len < 0)
804 return len;
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 i += len;
807
808 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800809 char tb[count + 1];
810 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800812 tb[count] = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700813 printk("pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800814 (unsigned long)count, tb);
815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 if (!strcmp(name, "min_pkt_size")) {
818 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800819 if (len < 0) {
820 return len;
821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800823 if (value < 14 + 20 + 8)
824 value = 14 + 20 + 8;
825 if (value != pkt_dev->min_pkt_size) {
826 pkt_dev->min_pkt_size = value;
827 pkt_dev->cur_pkt_size = value;
828 }
829 sprintf(pg_result, "OK: min_pkt_size=%u",
830 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return count;
832 }
833
Luiz Capitulino222f1802006-03-20 22:16:13 -0800834 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800836 if (len < 0) {
837 return len;
838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800840 if (value < 14 + 20 + 8)
841 value = 14 + 20 + 8;
842 if (value != pkt_dev->max_pkt_size) {
843 pkt_dev->max_pkt_size = value;
844 pkt_dev->cur_pkt_size = value;
845 }
846 sprintf(pg_result, "OK: max_pkt_size=%u",
847 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return count;
849 }
850
Luiz Capitulino222f1802006-03-20 22:16:13 -0800851 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 if (!strcmp(name, "pkt_size")) {
854 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800855 if (len < 0) {
856 return len;
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800859 if (value < 14 + 20 + 8)
860 value = 14 + 20 + 8;
861 if (value != pkt_dev->min_pkt_size) {
862 pkt_dev->min_pkt_size = value;
863 pkt_dev->max_pkt_size = value;
864 pkt_dev->cur_pkt_size = value;
865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
867 return count;
868 }
869
Luiz Capitulino222f1802006-03-20 22:16:13 -0800870 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800872 if (len < 0) {
873 return len;
874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800876 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 sprintf(pg_result, "OK: debug=%u", debug);
878 return count;
879 }
880
Luiz Capitulino222f1802006-03-20 22:16:13 -0800881 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800883 if (len < 0) {
884 return len;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 i += len;
887 pkt_dev->nfrags = value;
888 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
889 return count;
890 }
891 if (!strcmp(name, "delay")) {
892 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800893 if (len < 0) {
894 return len;
895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 i += len;
897 if (value == 0x7FFFFFFF) {
898 pkt_dev->delay_us = 0x7FFFFFFF;
899 pkt_dev->delay_ns = 0;
900 } else {
901 pkt_dev->delay_us = value / 1000;
902 pkt_dev->delay_ns = value % 1000;
903 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800904 sprintf(pg_result, "OK: delay=%u",
905 1000 * pkt_dev->delay_us + pkt_dev->delay_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return count;
907 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800908 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800910 if (len < 0) {
911 return len;
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800914 if (value != pkt_dev->udp_src_min) {
915 pkt_dev->udp_src_min = value;
916 pkt_dev->cur_udp_src = value;
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
919 return count;
920 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800921 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800923 if (len < 0) {
924 return len;
925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800927 if (value != pkt_dev->udp_dst_min) {
928 pkt_dev->udp_dst_min = value;
929 pkt_dev->cur_udp_dst = value;
930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
932 return count;
933 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800934 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800936 if (len < 0) {
937 return len;
938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800940 if (value != pkt_dev->udp_src_max) {
941 pkt_dev->udp_src_max = value;
942 pkt_dev->cur_udp_src = value;
943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
945 return count;
946 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800947 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800949 if (len < 0) {
950 return len;
951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800953 if (value != pkt_dev->udp_dst_max) {
954 pkt_dev->udp_dst_max = value;
955 pkt_dev->cur_udp_dst = value;
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
958 return count;
959 }
960 if (!strcmp(name, "clone_skb")) {
961 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800962 if (len < 0) {
963 return len;
964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800966 pkt_dev->clone_skb = value;
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
969 return count;
970 }
971 if (!strcmp(name, "count")) {
972 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800973 if (len < 0) {
974 return len;
975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 i += len;
977 pkt_dev->count = value;
978 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800979 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return count;
981 }
982 if (!strcmp(name, "src_mac_count")) {
983 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800984 if (len < 0) {
985 return len;
986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 i += len;
988 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800989 pkt_dev->src_mac_count = value;
990 pkt_dev->cur_src_mac_offset = 0;
991 }
992 sprintf(pg_result, "OK: src_mac_count=%d",
993 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return count;
995 }
996 if (!strcmp(name, "dst_mac_count")) {
997 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800998 if (len < 0) {
999 return len;
1000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 i += len;
1002 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001003 pkt_dev->dst_mac_count = value;
1004 pkt_dev->cur_dst_mac_offset = 0;
1005 }
1006 sprintf(pg_result, "OK: dst_mac_count=%d",
1007 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return count;
1009 }
1010 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001011 char f[32];
1012 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001014 if (len < 0) {
1015 return len;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (copy_from_user(f, &user_buffer[i], len))
1018 return -EFAULT;
1019 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001020 if (strcmp(f, "IPSRC_RND") == 0)
1021 pkt_dev->flags |= F_IPSRC_RND;
1022
1023 else if (strcmp(f, "!IPSRC_RND") == 0)
1024 pkt_dev->flags &= ~F_IPSRC_RND;
1025
1026 else if (strcmp(f, "TXSIZE_RND") == 0)
1027 pkt_dev->flags |= F_TXSIZE_RND;
1028
1029 else if (strcmp(f, "!TXSIZE_RND") == 0)
1030 pkt_dev->flags &= ~F_TXSIZE_RND;
1031
1032 else if (strcmp(f, "IPDST_RND") == 0)
1033 pkt_dev->flags |= F_IPDST_RND;
1034
1035 else if (strcmp(f, "!IPDST_RND") == 0)
1036 pkt_dev->flags &= ~F_IPDST_RND;
1037
1038 else if (strcmp(f, "UDPSRC_RND") == 0)
1039 pkt_dev->flags |= F_UDPSRC_RND;
1040
1041 else if (strcmp(f, "!UDPSRC_RND") == 0)
1042 pkt_dev->flags &= ~F_UDPSRC_RND;
1043
1044 else if (strcmp(f, "UDPDST_RND") == 0)
1045 pkt_dev->flags |= F_UDPDST_RND;
1046
1047 else if (strcmp(f, "!UDPDST_RND") == 0)
1048 pkt_dev->flags &= ~F_UDPDST_RND;
1049
1050 else if (strcmp(f, "MACSRC_RND") == 0)
1051 pkt_dev->flags |= F_MACSRC_RND;
1052
1053 else if (strcmp(f, "!MACSRC_RND") == 0)
1054 pkt_dev->flags &= ~F_MACSRC_RND;
1055
1056 else if (strcmp(f, "MACDST_RND") == 0)
1057 pkt_dev->flags |= F_MACDST_RND;
1058
1059 else if (strcmp(f, "!MACDST_RND") == 0)
1060 pkt_dev->flags &= ~F_MACDST_RND;
1061
1062 else {
1063 sprintf(pg_result,
1064 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1065 f,
1066 "IPSRC_RND, IPDST_RND, TXSIZE_RND, UDPSRC_RND, UDPDST_RND, MACSRC_RND, MACDST_RND\n");
1067 return count;
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1070 return count;
1071 }
1072 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1073 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001074 if (len < 0) {
1075 return len;
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Luiz Capitulino222f1802006-03-20 22:16:13 -08001078 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001080 buf[len] = 0;
1081 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1082 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1083 strncpy(pkt_dev->dst_min, buf, len);
1084 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1085 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1086 }
1087 if (debug)
1088 printk("pktgen: dst_min set to: %s\n",
1089 pkt_dev->dst_min);
1090 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1092 return count;
1093 }
1094 if (!strcmp(name, "dst_max")) {
1095 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001096 if (len < 0) {
1097 return len;
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Luiz Capitulino222f1802006-03-20 22:16:13 -08001100 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return -EFAULT;
1102
Luiz Capitulino222f1802006-03-20 22:16:13 -08001103 buf[len] = 0;
1104 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1105 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1106 strncpy(pkt_dev->dst_max, buf, len);
1107 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1108 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1109 }
1110 if (debug)
1111 printk("pktgen: dst_max set to: %s\n",
1112 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 i += len;
1114 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1115 return count;
1116 }
1117 if (!strcmp(name, "dst6")) {
1118 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001119 if (len < 0)
1120 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 pkt_dev->flags |= F_IPV6;
1123
Luiz Capitulino222f1802006-03-20 22:16:13 -08001124 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001126 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001129 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1132
Luiz Capitulino222f1802006-03-20 22:16:13 -08001133 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 printk("pktgen: dst6 set to: %s\n", buf);
1135
Luiz Capitulino222f1802006-03-20 22:16:13 -08001136 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 sprintf(pg_result, "OK: dst6=%s", buf);
1138 return count;
1139 }
1140 if (!strcmp(name, "dst6_min")) {
1141 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001142 if (len < 0)
1143 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 pkt_dev->flags |= F_IPV6;
1146
Luiz Capitulino222f1802006-03-20 22:16:13 -08001147 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001149 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001152 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Luiz Capitulino222f1802006-03-20 22:16:13 -08001154 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1155 &pkt_dev->min_in6_daddr);
1156 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 printk("pktgen: dst6_min set to: %s\n", buf);
1158
Luiz Capitulino222f1802006-03-20 22:16:13 -08001159 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 sprintf(pg_result, "OK: dst6_min=%s", buf);
1161 return count;
1162 }
1163 if (!strcmp(name, "dst6_max")) {
1164 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001165 if (len < 0)
1166 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 pkt_dev->flags |= F_IPV6;
1169
Luiz Capitulino222f1802006-03-20 22:16:13 -08001170 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001172 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001175 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Luiz Capitulino222f1802006-03-20 22:16:13 -08001177 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 printk("pktgen: dst6_max set to: %s\n", buf);
1179
Luiz Capitulino222f1802006-03-20 22:16:13 -08001180 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 sprintf(pg_result, "OK: dst6_max=%s", buf);
1182 return count;
1183 }
1184 if (!strcmp(name, "src6")) {
1185 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001186 if (len < 0)
1187 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 pkt_dev->flags |= F_IPV6;
1190
Luiz Capitulino222f1802006-03-20 22:16:13 -08001191 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001193 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001196 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1199
Luiz Capitulino222f1802006-03-20 22:16:13 -08001200 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 printk("pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001202
1203 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 sprintf(pg_result, "OK: src6=%s", buf);
1205 return count;
1206 }
1207 if (!strcmp(name, "src_min")) {
1208 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001209 if (len < 0) {
1210 return len;
1211 }
1212 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001214 buf[len] = 0;
1215 if (strcmp(buf, pkt_dev->src_min) != 0) {
1216 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1217 strncpy(pkt_dev->src_min, buf, len);
1218 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1219 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1220 }
1221 if (debug)
1222 printk("pktgen: src_min set to: %s\n",
1223 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 i += len;
1225 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1226 return count;
1227 }
1228 if (!strcmp(name, "src_max")) {
1229 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001230 if (len < 0) {
1231 return len;
1232 }
1233 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001235 buf[len] = 0;
1236 if (strcmp(buf, pkt_dev->src_max) != 0) {
1237 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1238 strncpy(pkt_dev->src_max, buf, len);
1239 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1240 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1241 }
1242 if (debug)
1243 printk("pktgen: src_max set to: %s\n",
1244 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 i += len;
1246 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1247 return count;
1248 }
1249 if (!strcmp(name, "dst_mac")) {
1250 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001251 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001253 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001256 if (len < 0) {
1257 return len;
1258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001260 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return -EFAULT;
1262 i += len;
1263
Luiz Capitulino222f1802006-03-20 22:16:13 -08001264 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (*v >= '0' && *v <= '9') {
1266 *m *= 16;
1267 *m += *v - '0';
1268 }
1269 if (*v >= 'A' && *v <= 'F') {
1270 *m *= 16;
1271 *m += *v - 'A' + 10;
1272 }
1273 if (*v >= 'a' && *v <= 'f') {
1274 *m *= 16;
1275 *m += *v - 'a' + 10;
1276 }
1277 if (*v == ':') {
1278 m++;
1279 *m = 0;
1280 }
1281 }
1282
1283 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001284 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1285 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 sprintf(pg_result, "OK: dstmac");
1288 return count;
1289 }
1290 if (!strcmp(name, "src_mac")) {
1291 char *v = valstr;
1292 unsigned char *m = pkt_dev->src_mac;
1293
1294 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001295 if (len < 0) {
1296 return len;
1297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001299 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return -EFAULT;
1301 i += len;
1302
Luiz Capitulino222f1802006-03-20 22:16:13 -08001303 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (*v >= '0' && *v <= '9') {
1305 *m *= 16;
1306 *m += *v - '0';
1307 }
1308 if (*v >= 'A' && *v <= 'F') {
1309 *m *= 16;
1310 *m += *v - 'A' + 10;
1311 }
1312 if (*v >= 'a' && *v <= 'f') {
1313 *m *= 16;
1314 *m += *v - 'a' + 10;
1315 }
1316 if (*v == ':') {
1317 m++;
1318 *m = 0;
1319 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Luiz Capitulino222f1802006-03-20 22:16:13 -08001322 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return count;
1324 }
1325
Luiz Capitulino222f1802006-03-20 22:16:13 -08001326 if (!strcmp(name, "clear_counters")) {
1327 pktgen_clear_counters(pkt_dev);
1328 sprintf(pg_result, "OK: Clearing counters.\n");
1329 return count;
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (!strcmp(name, "flows")) {
1333 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001334 if (len < 0) {
1335 return len;
1336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 i += len;
1338 if (value > MAX_CFLOWS)
1339 value = MAX_CFLOWS;
1340
1341 pkt_dev->cflows = value;
1342 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1343 return count;
1344 }
1345
1346 if (!strcmp(name, "flowlen")) {
1347 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001348 if (len < 0) {
1349 return len;
1350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 i += len;
1352 pkt_dev->lflow = value;
1353 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1354 return count;
1355 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1358 return -EINVAL;
1359}
1360
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001361static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001363 return single_open(file, pktgen_if_show, PDE(inode)->data);
1364}
1365
1366static struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001367 .owner = THIS_MODULE,
1368 .open = pktgen_if_open,
1369 .read = seq_read,
1370 .llseek = seq_lseek,
1371 .write = pktgen_if_write,
1372 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001373};
1374
1375static int pktgen_thread_show(struct seq_file *seq, void *v)
1376{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001377 struct pktgen_thread *t = seq->private;
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001378 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001380 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001382 seq_printf(seq, "Name: %s max_before_softirq: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001383 t->name, t->max_before_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Luiz Capitulino222f1802006-03-20 22:16:13 -08001385 seq_printf(seq, "Running: ");
1386
1387 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001388 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001389 if (pkt_dev->running)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001390 seq_printf(seq, "%s ", pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Luiz Capitulino222f1802006-03-20 22:16:13 -08001392 seq_printf(seq, "\nStopped: ");
1393
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001394 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001395 if (!pkt_dev->running)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001396 seq_printf(seq, "%s ", pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001399 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001401 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Luiz Capitulino222f1802006-03-20 22:16:13 -08001403 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001408static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001409 const char __user * user_buffer,
1410 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001412 struct seq_file *seq = (struct seq_file *)file->private_data;
1413 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 int i = 0, max, len, ret;
1415 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001416 char *pg_result;
1417 unsigned long value = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001420 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return -EINVAL;
1422 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001425 len = count_trail_chars(&user_buffer[i], max);
1426 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001427 return len;
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /* Read variable name */
1432
1433 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001434 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001435 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 memset(name, 0, sizeof(name));
1438 if (copy_from_user(name, &user_buffer[i], len))
1439 return -EFAULT;
1440 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001441
Luiz Capitulino222f1802006-03-20 22:16:13 -08001442 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001444 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001445 return len;
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 i += len;
1448
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001449 if (debug)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001450 printk("pktgen: t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Luiz Capitulino222f1802006-03-20 22:16:13 -08001452 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 printk("pktgen: ERROR: No thread\n");
1454 ret = -EINVAL;
1455 goto out;
1456 }
1457
1458 pg_result = &(t->result[0]);
1459
Luiz Capitulino222f1802006-03-20 22:16:13 -08001460 if (!strcmp(name, "add_device")) {
1461 char f[32];
1462 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001464 if (len < 0) {
1465 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 goto out;
1467 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001468 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -EFAULT;
1470 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001471 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001472 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001473 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001474 ret = count;
1475 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto out;
1477 }
1478
Luiz Capitulino222f1802006-03-20 22:16:13 -08001479 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001480 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001481 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001482 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001483 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001485 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 goto out;
1487 }
1488
Luiz Capitulino222f1802006-03-20 22:16:13 -08001489 if (!strcmp(name, "max_before_softirq")) {
1490 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001491 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001492 t->max_before_softirq = value;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001493 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001494 ret = count;
1495 sprintf(pg_result, "OK: max_before_softirq=%lu", value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 goto out;
1497 }
1498
1499 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001500out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return ret;
1502}
1503
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001504static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001506 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001509static struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001510 .owner = THIS_MODULE,
1511 .open = pktgen_thread_open,
1512 .read = seq_read,
1513 .llseek = seq_lseek,
1514 .write = pktgen_thread_write,
1515 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001516};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001519static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 struct pktgen_thread *t;
1522 struct pktgen_dev *pkt_dev = NULL;
1523
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001524 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 pkt_dev = pktgen_find_dev(t, ifname);
1526 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001527 if (remove) {
1528 if_lock(t);
1529 pkt_dev->removal_mark = 1;
1530 t->control |= T_REMDEV;
1531 if_unlock(t);
1532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 break;
1534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001536 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001539/*
1540 * mark a device for removal
1541 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001542static int pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001545 const int max_tries = 10, msec_per_try = 125;
1546 int i = 0;
1547 int ret = 0;
1548
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001549 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001550 PG_DEBUG(printk("pktgen: pktgen_mark_device marking %s for removal\n",
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001551 ifname));
1552
Luiz Capitulino222f1802006-03-20 22:16:13 -08001553 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001554
1555 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001556 if (pkt_dev == NULL)
1557 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001558
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001559 mutex_unlock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001560 PG_DEBUG(printk("pktgen: pktgen_mark_device waiting for %s "
Luiz Capitulino222f1802006-03-20 22:16:13 -08001561 "to disappear....\n", ifname));
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001562 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001563 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001564
1565 if (++i >= max_tries) {
1566 printk("pktgen_mark_device: timed out after waiting "
Luiz Capitulino222f1802006-03-20 22:16:13 -08001567 "%d msec for device %s to be removed\n",
1568 msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001569 ret = 1;
1570 break;
1571 }
1572
1573 }
1574
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001575 mutex_unlock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001576
1577 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579
Luiz Capitulino222f1802006-03-20 22:16:13 -08001580static int pktgen_device_event(struct notifier_block *unused,
1581 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
1583 struct net_device *dev = (struct net_device *)(ptr);
1584
1585 /* It is OK that we do not hold the group lock right now,
1586 * as we run under the RTNL lock.
1587 */
1588
1589 switch (event) {
1590 case NETDEV_CHANGEADDR:
1591 case NETDEV_GOING_DOWN:
1592 case NETDEV_DOWN:
1593 case NETDEV_UP:
1594 /* Ignore for now */
1595 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001598 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 break;
1600 };
1601
1602 return NOTIFY_DONE;
1603}
1604
1605/* Associate pktgen_dev with a device. */
1606
Luiz Capitulino222f1802006-03-20 22:16:13 -08001607static struct net_device *pktgen_setup_dev(struct pktgen_dev *pkt_dev)
1608{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 struct net_device *odev;
1610
1611 /* Clean old setups */
1612
1613 if (pkt_dev->odev) {
1614 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001615 pkt_dev->odev = NULL;
1616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 odev = dev_get_by_name(pkt_dev->ifname);
1619
1620 if (!odev) {
1621 printk("pktgen: no such netdevice: \"%s\"\n", pkt_dev->ifname);
1622 goto out;
1623 }
1624 if (odev->type != ARPHRD_ETHER) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001625 printk("pktgen: not an ethernet device: \"%s\"\n",
1626 pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 goto out_put;
1628 }
1629 if (!netif_running(odev)) {
1630 printk("pktgen: device is down: \"%s\"\n", pkt_dev->ifname);
1631 goto out_put;
1632 }
1633 pkt_dev->odev = odev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001634
1635 return pkt_dev->odev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637out_put:
1638 dev_put(odev);
1639out:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001640 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642}
1643
1644/* Read pkt_dev from the interface and set up internal pktgen_dev
1645 * structure to have the right information to create/send packets
1646 */
1647static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
1648{
1649 /* Try once more, just in case it works now. */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001650 if (!pkt_dev->odev)
1651 pktgen_setup_dev(pkt_dev);
1652
1653 if (!pkt_dev->odev) {
1654 printk("pktgen: ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1655 sprintf(pkt_dev->result,
1656 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1657 return;
1658 }
1659
1660 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001662 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08001663 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Luiz Capitulino222f1802006-03-20 22:16:13 -08001665 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001666 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Luiz Capitulino222f1802006-03-20 22:16:13 -08001668 /* Set up pkt size */
1669 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
1670
1671 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 /*
1673 * Skip this automatic address setting until locks or functions
1674 * gets exported
1675 */
1676
1677#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08001678 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 struct inet6_dev *idev;
1680
Luiz Capitulino222f1802006-03-20 22:16:13 -08001681 for (i = 0; i < IN6_ADDR_HSIZE; i++)
1682 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 set = 1;
1684 break;
1685 }
1686
Luiz Capitulino222f1802006-03-20 22:16:13 -08001687 if (!set) {
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 /*
1690 * Use linklevel address if unconfigured.
1691 *
1692 * use ipv6_get_lladdr if/when it's get exported
1693 */
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 read_lock(&addrconf_lock);
1696 if ((idev = __in6_dev_get(pkt_dev->odev)) != NULL) {
1697 struct inet6_ifaddr *ifp;
1698
1699 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001700 for (ifp = idev->addr_list; ifp;
1701 ifp = ifp->if_next) {
1702 if (ifp->scope == IFA_LINK
1703 && !(ifp->
1704 flags & IFA_F_TENTATIVE)) {
1705 ipv6_addr_copy(&pkt_dev->
1706 cur_in6_saddr,
1707 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 err = 0;
1709 break;
1710 }
1711 }
1712 read_unlock_bh(&idev->lock);
1713 }
1714 read_unlock(&addrconf_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001715 if (err)
1716 printk("pktgen: ERROR: IPv6 link address not availble.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08001719 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 pkt_dev->saddr_min = 0;
1721 pkt_dev->saddr_max = 0;
1722 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001723
1724 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07001727 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (in_dev) {
1729 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001730 pkt_dev->saddr_min =
1731 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 pkt_dev->saddr_max = pkt_dev->saddr_min;
1733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08001736 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1738 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1739 }
1740
1741 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1742 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1743 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001744 /* Initialize current values. */
1745 pkt_dev->cur_dst_mac_offset = 0;
1746 pkt_dev->cur_src_mac_offset = 0;
1747 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1748 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1749 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
1750 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 pkt_dev->nflows = 0;
1752}
1753
1754static void spin(struct pktgen_dev *pkt_dev, __u64 spin_until_us)
1755{
1756 __u64 start;
1757 __u64 now;
1758
1759 start = now = getCurUs();
1760 printk(KERN_INFO "sleeping for %d\n", (int)(spin_until_us - now));
1761 while (now < spin_until_us) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -07001762 /* TODO: optimize sleeping behavior */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001763 if (spin_until_us - now > jiffies_to_usecs(1) + 1)
Nishanth Aravamudan121caf52005-09-12 14:15:34 -07001764 schedule_timeout_interruptible(1);
1765 else if (spin_until_us - now > 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 do_softirq();
1767 if (!pkt_dev->running)
1768 return;
1769 if (need_resched())
1770 schedule();
1771 }
1772
1773 now = getCurUs();
1774 }
1775
1776 pkt_dev->idle_acc += now - start;
1777}
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779/* Increment/randomize headers according to flags and current values
1780 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
1781 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001782static void mod_cur_headers(struct pktgen_dev *pkt_dev)
1783{
1784 __u32 imn;
1785 __u32 imx;
1786 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Luiz Capitulino222f1802006-03-20 22:16:13 -08001788 if (pkt_dev->cflows) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 flow = pktgen_random() % pkt_dev->cflows;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (pkt_dev->flows[flow].count > pkt_dev->lflow)
1792 pkt_dev->flows[flow].count = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001796 if (pkt_dev->src_mac_count > 1) {
1797 __u32 mc;
1798 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Luiz Capitulino222f1802006-03-20 22:16:13 -08001800 if (pkt_dev->flags & F_MACSRC_RND)
1801 mc = pktgen_random() % (pkt_dev->src_mac_count);
1802 else {
1803 mc = pkt_dev->cur_src_mac_offset++;
1804 if (pkt_dev->cur_src_mac_offset >
1805 pkt_dev->src_mac_count)
1806 pkt_dev->cur_src_mac_offset = 0;
1807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Luiz Capitulino222f1802006-03-20 22:16:13 -08001809 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
1810 pkt_dev->hh[11] = tmp;
1811 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
1812 pkt_dev->hh[10] = tmp;
1813 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
1814 pkt_dev->hh[9] = tmp;
1815 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
1816 pkt_dev->hh[8] = tmp;
1817 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
1818 pkt_dev->hh[7] = tmp;
1819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Luiz Capitulino222f1802006-03-20 22:16:13 -08001821 /* Deal with Destination MAC */
1822 if (pkt_dev->dst_mac_count > 1) {
1823 __u32 mc;
1824 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Luiz Capitulino222f1802006-03-20 22:16:13 -08001826 if (pkt_dev->flags & F_MACDST_RND)
1827 mc = pktgen_random() % (pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Luiz Capitulino222f1802006-03-20 22:16:13 -08001829 else {
1830 mc = pkt_dev->cur_dst_mac_offset++;
1831 if (pkt_dev->cur_dst_mac_offset >
1832 pkt_dev->dst_mac_count) {
1833 pkt_dev->cur_dst_mac_offset = 0;
1834 }
1835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Luiz Capitulino222f1802006-03-20 22:16:13 -08001837 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
1838 pkt_dev->hh[5] = tmp;
1839 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
1840 pkt_dev->hh[4] = tmp;
1841 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
1842 pkt_dev->hh[3] = tmp;
1843 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
1844 pkt_dev->hh[2] = tmp;
1845 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
1846 pkt_dev->hh[1] = tmp;
1847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Luiz Capitulino222f1802006-03-20 22:16:13 -08001849 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
1850 if (pkt_dev->flags & F_UDPSRC_RND)
1851 pkt_dev->cur_udp_src =
1852 ((pktgen_random() %
1853 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)) +
1854 pkt_dev->udp_src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Luiz Capitulino222f1802006-03-20 22:16:13 -08001856 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 pkt_dev->cur_udp_src++;
1858 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
1859 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001860 }
1861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Luiz Capitulino222f1802006-03-20 22:16:13 -08001863 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
1864 if (pkt_dev->flags & F_UDPDST_RND) {
1865 pkt_dev->cur_udp_dst =
1866 ((pktgen_random() %
1867 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)) +
1868 pkt_dev->udp_dst_min);
1869 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001871 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001873 }
1874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 if (!(pkt_dev->flags & F_IPV6)) {
1877
Luiz Capitulino222f1802006-03-20 22:16:13 -08001878 if ((imn = ntohl(pkt_dev->saddr_min)) < (imx =
1879 ntohl(pkt_dev->
1880 saddr_max))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001882 if (pkt_dev->flags & F_IPSRC_RND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 t = ((pktgen_random() % (imx - imn)) + imn);
1884 else {
1885 t = ntohl(pkt_dev->cur_saddr);
1886 t++;
1887 if (t > imx) {
1888 t = imn;
1889 }
1890 }
1891 pkt_dev->cur_saddr = htonl(t);
1892 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (pkt_dev->cflows && pkt_dev->flows[flow].count != 0) {
1895 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
1896 } else {
1897
Luiz Capitulino222f1802006-03-20 22:16:13 -08001898 if ((imn = ntohl(pkt_dev->daddr_min)) < (imx =
1899 ntohl(pkt_dev->
1900 daddr_max)))
1901 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 __u32 t;
1903 if (pkt_dev->flags & F_IPDST_RND) {
1904
Luiz Capitulino222f1802006-03-20 22:16:13 -08001905 t = ((pktgen_random() % (imx - imn)) +
1906 imn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 t = htonl(t);
1908
Luiz Capitulino222f1802006-03-20 22:16:13 -08001909 while (LOOPBACK(t) || MULTICAST(t)
1910 || BADCLASS(t) || ZERONET(t)
1911 || LOCAL_MCAST(t)) {
1912 t = ((pktgen_random() %
1913 (imx - imn)) + imn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 t = htonl(t);
1915 }
1916 pkt_dev->cur_daddr = t;
1917 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 else {
1920 t = ntohl(pkt_dev->cur_daddr);
1921 t++;
1922 if (t > imx) {
1923 t = imn;
1924 }
1925 pkt_dev->cur_daddr = htonl(t);
1926 }
1927 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001928 if (pkt_dev->cflows) {
1929 pkt_dev->flows[flow].cur_daddr =
1930 pkt_dev->cur_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 pkt_dev->nflows++;
1932 }
1933 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001934 } else { /* IPV6 * */
1935
1936 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
1937 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
1938 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
1939 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 else {
1941 int i;
1942
1943 /* Only random destinations yet */
1944
Luiz Capitulino222f1802006-03-20 22:16:13 -08001945 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Luiz Capitulino222f1802006-03-20 22:16:13 -08001947 ((pktgen_random() |
1948 pkt_dev->min_in6_daddr.s6_addr32[i]) &
1949 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953
Luiz Capitulino222f1802006-03-20 22:16:13 -08001954 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
1955 __u32 t;
1956 if (pkt_dev->flags & F_TXSIZE_RND) {
1957 t = ((pktgen_random() %
1958 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size))
1959 + pkt_dev->min_pkt_size);
1960 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001962 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001964 }
1965 pkt_dev->cur_pkt_size = t;
1966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 pkt_dev->flows[flow].count++;
1969}
1970
Luiz Capitulino222f1802006-03-20 22:16:13 -08001971static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
1972 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 struct sk_buff *skb = NULL;
1975 __u8 *eth;
1976 struct udphdr *udph;
1977 int datalen, iplen;
1978 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001979 struct pktgen_hdr *pgh = NULL;
1980
Robert Olsson64053be2005-06-26 15:27:10 -07001981 /* Update any of the values, used when we're incrementing various
1982 * fields.
1983 */
1984 mod_cur_headers(pkt_dev);
1985
David S. Miller7ac54592006-01-18 14:19:10 -08001986 datalen = (odev->hard_header_len + 16) & ~0xf;
1987 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + datalen, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 if (!skb) {
1989 sprintf(pkt_dev->result, "No memory");
1990 return NULL;
1991 }
1992
David S. Miller7ac54592006-01-18 14:19:10 -08001993 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 /* Reserve for ethernet and IP header */
1996 eth = (__u8 *) skb_push(skb, 14);
1997 iph = (struct iphdr *)skb_put(skb, sizeof(struct iphdr));
1998 udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr));
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 memcpy(eth, pkt_dev->hh, 12);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002001 *(u16 *) & eth[12] = __constant_htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Luiz Capitulino222f1802006-03-20 22:16:13 -08002003 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8; /* Eth + IPh + UDPh */
2004 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 udph->source = htons(pkt_dev->cur_udp_src);
2008 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002009 udph->len = htons(datalen + 8); /* DATA + udphdr */
2010 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 iph->ihl = 5;
2013 iph->version = 4;
2014 iph->ttl = 32;
2015 iph->tos = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002016 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 iph->saddr = pkt_dev->cur_saddr;
2018 iph->daddr = pkt_dev->cur_daddr;
2019 iph->frag_off = 0;
2020 iplen = 20 + 8 + datalen;
2021 iph->tot_len = htons(iplen);
2022 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002023 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 skb->protocol = __constant_htons(ETH_P_IP);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002025 skb->mac.raw = ((u8 *) iph) - 14;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 skb->dev = odev;
2027 skb->pkt_type = PACKET_HOST;
2028
Luiz Capitulino222f1802006-03-20 22:16:13 -08002029 if (pkt_dev->nfrags <= 0)
2030 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 else {
2032 int frags = pkt_dev->nfrags;
2033 int i;
2034
Luiz Capitulino222f1802006-03-20 22:16:13 -08002035 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (frags > MAX_SKB_FRAGS)
2038 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002039 if (datalen > frags * PAGE_SIZE) {
2040 skb_put(skb, datalen - frags * PAGE_SIZE);
2041 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
2043
2044 i = 0;
2045 while (datalen > 0) {
2046 struct page *page = alloc_pages(GFP_KERNEL, 0);
2047 skb_shinfo(skb)->frags[i].page = page;
2048 skb_shinfo(skb)->frags[i].page_offset = 0;
2049 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002050 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 datalen -= skb_shinfo(skb)->frags[i].size;
2052 skb->len += skb_shinfo(skb)->frags[i].size;
2053 skb->data_len += skb_shinfo(skb)->frags[i].size;
2054 i++;
2055 skb_shinfo(skb)->nr_frags = i;
2056 }
2057
2058 while (i < frags) {
2059 int rem;
2060
2061 if (i == 0)
2062 break;
2063
2064 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2065 if (rem == 0)
2066 break;
2067
2068 skb_shinfo(skb)->frags[i - 1].size -= rem;
2069
Luiz Capitulino222f1802006-03-20 22:16:13 -08002070 skb_shinfo(skb)->frags[i] =
2071 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002073 skb_shinfo(skb)->frags[i].page =
2074 skb_shinfo(skb)->frags[i - 1].page;
2075 skb_shinfo(skb)->frags[i].page_offset +=
2076 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 skb_shinfo(skb)->frags[i].size = rem;
2078 i++;
2079 skb_shinfo(skb)->nr_frags = i;
2080 }
2081 }
2082
Luiz Capitulino222f1802006-03-20 22:16:13 -08002083 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Luiz Capitulino222f1802006-03-20 22:16:13 -08002085 if (pgh) {
2086 struct timeval timestamp;
2087
2088 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2089 pgh->seq_num = htonl(pkt_dev->seq_num);
2090
2091 do_gettimeofday(&timestamp);
2092 pgh->tv_sec = htonl(timestamp.tv_sec);
2093 pgh->tv_usec = htonl(timestamp.tv_usec);
2094 }
2095 pkt_dev->seq_num++;
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return skb;
2098}
2099
2100/*
2101 * scan_ip6, fmt_ip taken from dietlibc-0.21
2102 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2103 *
2104 * Slightly modified for kernel.
2105 * Should be candidate for net/ipv4/utils.c
2106 * --ro
2107 */
2108
Luiz Capitulino222f1802006-03-20 22:16:13 -08002109static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002112 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 unsigned long u;
2114 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002115 unsigned int prefixlen = 0;
2116 unsigned int suffixlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 __u32 tmp;
2118
Luiz Capitulino222f1802006-03-20 22:16:13 -08002119 for (i = 0; i < 16; i++)
2120 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 for (;;) {
2123 if (*s == ':') {
2124 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002125 if (s[1] == ':') { /* Found "::", skip to part 2 */
2126 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 len++;
2128 break;
2129 }
2130 s++;
2131 }
2132 {
2133 char *tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002134 u = simple_strtoul(s, &tmp, 16);
2135 i = tmp - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
2137
Luiz Capitulino222f1802006-03-20 22:16:13 -08002138 if (!i)
2139 return 0;
2140 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 /* the last 4 bytes may be written as IPv4 address */
2143
2144 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002145 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2146 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148 ip[prefixlen++] = (u >> 8);
2149 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002150 s += i;
2151 len += i;
2152 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return len;
2154 }
2155
2156/* part 2, after "::" */
2157 for (;;) {
2158 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002159 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 break;
2161 s++;
2162 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002163 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 break;
2165 {
2166 char *tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002167 u = simple_strtol(s, &tmp, 16);
2168 i = tmp - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002171 if (*s)
2172 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 break;
2174 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002175 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002177 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2178 sizeof(tmp));
2179 suffixlen += 4;
2180 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 break;
2182 }
2183 suffix[suffixlen++] = (u >> 8);
2184 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002185 s += i;
2186 len += i;
2187 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 break;
2189 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002190 for (i = 0; i < suffixlen; i++)
2191 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return len;
2193}
2194
Luiz Capitulino222f1802006-03-20 22:16:13 -08002195static char tohex(char hexdigit)
2196{
2197 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198}
2199
Luiz Capitulino222f1802006-03-20 22:16:13 -08002200static int fmt_xlong(char *s, unsigned int i)
2201{
2202 char *bak = s;
2203 *s = tohex((i >> 12) & 0xf);
2204 if (s != bak || *s != '0')
2205 ++s;
2206 *s = tohex((i >> 8) & 0xf);
2207 if (s != bak || *s != '0')
2208 ++s;
2209 *s = tohex((i >> 4) & 0xf);
2210 if (s != bak || *s != '0')
2211 ++s;
2212 *s = tohex(i & 0xf);
2213 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214}
2215
Luiz Capitulino222f1802006-03-20 22:16:13 -08002216static unsigned int fmt_ip6(char *s, const char ip[16])
2217{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 unsigned int len;
2219 unsigned int i;
2220 unsigned int temp;
2221 unsigned int compressing;
2222 int j;
2223
Luiz Capitulino222f1802006-03-20 22:16:13 -08002224 len = 0;
2225 compressing = 0;
2226 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002229 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2230 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2231 temp = strlen(s);
2232 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
2234#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002235 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2236 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (temp == 0) {
2238 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002239 compressing = 1;
2240 if (j == 0) {
2241 *s++ = ':';
2242 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 }
2244 }
2245 } else {
2246 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002247 compressing = 0;
2248 *s++ = ':';
2249 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002251 i = fmt_xlong(s, temp);
2252 len += i;
2253 s += i;
2254 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 *s++ = ':';
2256 ++len;
2257 }
2258 }
2259 }
2260 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002261 *s++ = ':';
2262 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002264 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 return len;
2266}
2267
Luiz Capitulino222f1802006-03-20 22:16:13 -08002268static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2269 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
2271 struct sk_buff *skb = NULL;
2272 __u8 *eth;
2273 struct udphdr *udph;
2274 int datalen;
2275 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002276 struct pktgen_hdr *pgh = NULL;
Robert Olsson64053be2005-06-26 15:27:10 -07002277
2278 /* Update any of the values, used when we're incrementing various
2279 * fields.
2280 */
2281 mod_cur_headers(pkt_dev);
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + 16, GFP_ATOMIC);
2284 if (!skb) {
2285 sprintf(pkt_dev->result, "No memory");
2286 return NULL;
2287 }
2288
2289 skb_reserve(skb, 16);
2290
2291 /* Reserve for ethernet and IP header */
2292 eth = (__u8 *) skb_push(skb, 14);
2293 iph = (struct ipv6hdr *)skb_put(skb, sizeof(struct ipv6hdr));
2294 udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr));
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 memcpy(eth, pkt_dev->hh, 12);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002297 *(u16 *) & eth[12] = __constant_htons(ETH_P_IPV6);
Robert Olsson64053be2005-06-26 15:27:10 -07002298
Luiz Capitulino222f1802006-03-20 22:16:13 -08002299 datalen = pkt_dev->cur_pkt_size - 14 - sizeof(struct ipv6hdr) - sizeof(struct udphdr); /* Eth + IPh + UDPh */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Luiz Capitulino222f1802006-03-20 22:16:13 -08002301 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 datalen = sizeof(struct pktgen_hdr);
2303 if (net_ratelimit())
Luiz Capitulino222f1802006-03-20 22:16:13 -08002304 printk(KERN_INFO "pktgen: increased datalen to %d\n",
2305 datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
2308 udph->source = htons(pkt_dev->cur_udp_src);
2309 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002310 udph->len = htons(datalen + sizeof(struct udphdr));
2311 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Luiz Capitulino222f1802006-03-20 22:16:13 -08002313 *(u32 *) iph = __constant_htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 iph->hop_limit = 32;
2316
2317 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
2318 iph->nexthdr = IPPROTO_UDP;
2319
2320 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
2321 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
2322
Luiz Capitulino222f1802006-03-20 22:16:13 -08002323 skb->mac.raw = ((u8 *) iph) - 14;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 skb->protocol = __constant_htons(ETH_P_IPV6);
2325 skb->dev = odev;
2326 skb->pkt_type = PACKET_HOST;
2327
Luiz Capitulino222f1802006-03-20 22:16:13 -08002328 if (pkt_dev->nfrags <= 0)
2329 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 else {
2331 int frags = pkt_dev->nfrags;
2332 int i;
2333
Luiz Capitulino222f1802006-03-20 22:16:13 -08002334 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 if (frags > MAX_SKB_FRAGS)
2337 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002338 if (datalen > frags * PAGE_SIZE) {
2339 skb_put(skb, datalen - frags * PAGE_SIZE);
2340 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
2342
2343 i = 0;
2344 while (datalen > 0) {
2345 struct page *page = alloc_pages(GFP_KERNEL, 0);
2346 skb_shinfo(skb)->frags[i].page = page;
2347 skb_shinfo(skb)->frags[i].page_offset = 0;
2348 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002349 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 datalen -= skb_shinfo(skb)->frags[i].size;
2351 skb->len += skb_shinfo(skb)->frags[i].size;
2352 skb->data_len += skb_shinfo(skb)->frags[i].size;
2353 i++;
2354 skb_shinfo(skb)->nr_frags = i;
2355 }
2356
2357 while (i < frags) {
2358 int rem;
2359
2360 if (i == 0)
2361 break;
2362
2363 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2364 if (rem == 0)
2365 break;
2366
2367 skb_shinfo(skb)->frags[i - 1].size -= rem;
2368
Luiz Capitulino222f1802006-03-20 22:16:13 -08002369 skb_shinfo(skb)->frags[i] =
2370 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002372 skb_shinfo(skb)->frags[i].page =
2373 skb_shinfo(skb)->frags[i - 1].page;
2374 skb_shinfo(skb)->frags[i].page_offset +=
2375 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 skb_shinfo(skb)->frags[i].size = rem;
2377 i++;
2378 skb_shinfo(skb)->nr_frags = i;
2379 }
2380 }
2381
Luiz Capitulino222f1802006-03-20 22:16:13 -08002382 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 /* should we update cloned packets too ? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002384 if (pgh) {
2385 struct timeval timestamp;
2386
2387 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2388 pgh->seq_num = htonl(pkt_dev->seq_num);
2389
2390 do_gettimeofday(&timestamp);
2391 pgh->tv_sec = htonl(timestamp.tv_sec);
2392 pgh->tv_usec = htonl(timestamp.tv_usec);
2393 }
2394 pkt_dev->seq_num++;
2395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 return skb;
2397}
2398
Luiz Capitulino222f1802006-03-20 22:16:13 -08002399static inline struct sk_buff *fill_packet(struct net_device *odev,
2400 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002402 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return fill_packet_ipv6(odev, pkt_dev);
2404 else
2405 return fill_packet_ipv4(odev, pkt_dev);
2406}
2407
Luiz Capitulino222f1802006-03-20 22:16:13 -08002408static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002410 pkt_dev->seq_num = 1;
2411 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002413 pkt_dev->tx_bytes = 0;
2414 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415}
2416
2417/* Set up structure for sending pkts, clear counters */
2418
2419static void pktgen_run(struct pktgen_thread *t)
2420{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002421 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 int started = 0;
2423
2424 PG_DEBUG(printk("pktgen: entering pktgen_run. %p\n", t));
2425
2426 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002427 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429 /*
2430 * setup odev and create initial packet.
2431 */
2432 pktgen_setup_inject(pkt_dev);
2433
Luiz Capitulino222f1802006-03-20 22:16:13 -08002434 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002436 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 pkt_dev->skb = NULL;
2438 pkt_dev->started_at = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002439 pkt_dev->next_tx_us = getCurUs(); /* Transmit immediately */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 strcpy(pkt_dev->result, "Starting");
2443 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002444 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 strcpy(pkt_dev->result, "Error starting");
2446 }
2447 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002448 if (started)
2449 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
2451
2452static void pktgen_stop_all_threads_ifs(void)
2453{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002454 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002456 PG_DEBUG(printk("pktgen: entering pktgen_stop_all_threads_ifs.\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002458 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002459
2460 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002461 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002462
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002463 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
Luiz Capitulino222f1802006-03-20 22:16:13 -08002466static int thread_is_running(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002468 struct pktgen_dev *pkt_dev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002469 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002471 list_for_each_entry(pkt_dev, &t->if_list, list)
2472 if (pkt_dev->running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 res = 1;
2474 break;
2475 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002476 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477}
2478
Luiz Capitulino222f1802006-03-20 22:16:13 -08002479static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002481 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Luiz Capitulino222f1802006-03-20 22:16:13 -08002483 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Luiz Capitulino222f1802006-03-20 22:16:13 -08002485 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Luiz Capitulino222f1802006-03-20 22:16:13 -08002487 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Luiz Capitulino222f1802006-03-20 22:16:13 -08002489 if (signal_pending(current))
2490 goto signal;
2491 if_lock(t);
2492 }
2493 if_unlock(t);
2494 return 1;
2495signal:
2496 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497}
2498
2499static int pktgen_wait_all_threads_run(void)
2500{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002501 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002503
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002504 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002505
2506 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002508 if (sig == 0)
2509 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002511
2512 if (sig == 0)
2513 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002515
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002516 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 return sig;
2518}
2519
2520static void pktgen_run_all_threads(void)
2521{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002522 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 PG_DEBUG(printk("pktgen: entering pktgen_run_all_threads.\n"));
2525
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002526 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002528 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002530
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002531 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Luiz Capitulino222f1802006-03-20 22:16:13 -08002533 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 pktgen_wait_all_threads_run();
2536}
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
2539{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002540 __u64 total_us, bps, mbps, pps, idle;
2541 char *p = pkt_dev->result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Luiz Capitulino222f1802006-03-20 22:16:13 -08002543 total_us = pkt_dev->stopped_at - pkt_dev->started_at;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Luiz Capitulino222f1802006-03-20 22:16:13 -08002545 idle = pkt_dev->idle_acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Luiz Capitulino222f1802006-03-20 22:16:13 -08002547 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
2548 (unsigned long long)total_us,
2549 (unsigned long long)(total_us - idle),
2550 (unsigned long long)idle,
2551 (unsigned long long)pkt_dev->sofar,
2552 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Luiz Capitulino222f1802006-03-20 22:16:13 -08002554 pps = pkt_dev->sofar * USEC_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Luiz Capitulino222f1802006-03-20 22:16:13 -08002556 while ((total_us >> 32) != 0) {
2557 pps >>= 1;
2558 total_us >>= 1;
2559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Luiz Capitulino222f1802006-03-20 22:16:13 -08002561 do_div(pps, total_us);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Luiz Capitulino222f1802006-03-20 22:16:13 -08002563 bps = pps * 8 * pkt_dev->cur_pkt_size;
2564
2565 mbps = bps;
2566 do_div(mbps, 1000000);
2567 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
2568 (unsigned long long)pps,
2569 (unsigned long long)mbps,
2570 (unsigned long long)bps,
2571 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
2574/* Set stopped-at timer, remove from running list, do counters & statistics */
2575
Luiz Capitulino222f1802006-03-20 22:16:13 -08002576static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002578 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002579
Luiz Capitulino222f1802006-03-20 22:16:13 -08002580 if (!pkt_dev->running) {
2581 printk("pktgen: interface: %s is already stopped\n",
2582 pkt_dev->ifname);
2583 return -EINVAL;
2584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Luiz Capitulino222f1802006-03-20 22:16:13 -08002586 pkt_dev->stopped_at = getCurUs();
2587 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002589 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Luiz Capitulino222f1802006-03-20 22:16:13 -08002591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
Luiz Capitulino222f1802006-03-20 22:16:13 -08002594static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002596 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002597
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 if_lock(t);
2599
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002600 list_for_each_entry(pkt_dev, &t->if_list, list) {
2601 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002602 continue;
2603 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002604 best = pkt_dev;
2605 else if (pkt_dev->next_tx_us < best->next_tx_us)
2606 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 }
2608 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002609 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610}
2611
Luiz Capitulino222f1802006-03-20 22:16:13 -08002612static void pktgen_stop(struct pktgen_thread *t)
2613{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002614 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002616 PG_DEBUG(printk("pktgen: entering pktgen_stop\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Luiz Capitulino222f1802006-03-20 22:16:13 -08002618 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002620 list_for_each_entry(pkt_dev, &t->if_list, list) {
2621 pktgen_stop_device(pkt_dev);
2622 if (pkt_dev->skb)
2623 kfree_skb(pkt_dev->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002624
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002625 pkt_dev->skb = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Luiz Capitulino222f1802006-03-20 22:16:13 -08002628 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629}
2630
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002631/*
2632 * one of our devices needs to be removed - find it
2633 * and remove it
2634 */
2635static void pktgen_rem_one_if(struct pktgen_thread *t)
2636{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002637 struct list_head *q, *n;
2638 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002639
2640 PG_DEBUG(printk("pktgen: entering pktgen_rem_one_if\n"));
2641
2642 if_lock(t);
2643
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002644 list_for_each_safe(q, n, &t->if_list) {
2645 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002646
Luiz Capitulino222f1802006-03-20 22:16:13 -08002647 if (!cur->removal_mark)
2648 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002649
2650 if (cur->skb)
2651 kfree_skb(cur->skb);
2652 cur->skb = NULL;
2653
2654 pktgen_remove_device(t, cur);
2655
2656 break;
2657 }
2658
2659 if_unlock(t);
2660}
2661
Luiz Capitulino222f1802006-03-20 22:16:13 -08002662static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002664 struct list_head *q, *n;
2665 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002666
2667 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002668
2669 PG_DEBUG(printk("pktgen: entering pktgen_rem_all_ifs\n"));
Luiz Capitulino222f1802006-03-20 22:16:13 -08002670 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002672 list_for_each_safe(q, n, &t->if_list) {
2673 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002674
2675 if (cur->skb)
2676 kfree_skb(cur->skb);
2677 cur->skb = NULL;
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 pktgen_remove_device(t, cur);
2680 }
2681
Luiz Capitulino222f1802006-03-20 22:16:13 -08002682 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683}
2684
Luiz Capitulino222f1802006-03-20 22:16:13 -08002685static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002687 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07002689 remove_proc_entry(t->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002691 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002693 list_del(&t->th_list);
2694
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002695 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
2698static __inline__ void pktgen_xmit(struct pktgen_dev *pkt_dev)
2699{
2700 struct net_device *odev = NULL;
2701 __u64 idle_start = 0;
2702 int ret;
2703
2704 odev = pkt_dev->odev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 if (pkt_dev->delay_us || pkt_dev->delay_ns) {
2707 u64 now;
2708
2709 now = getCurUs();
2710 if (now < pkt_dev->next_tx_us)
2711 spin(pkt_dev, pkt_dev->next_tx_us);
2712
2713 /* This is max DELAY, this has special meaning of
2714 * "never transmit"
2715 */
2716 if (pkt_dev->delay_us == 0x7FFFFFFF) {
2717 pkt_dev->next_tx_us = getCurUs() + pkt_dev->delay_us;
2718 pkt_dev->next_tx_ns = pkt_dev->delay_ns;
2719 goto out;
2720 }
2721 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 if (netif_queue_stopped(odev) || need_resched()) {
2724 idle_start = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (!netif_running(odev)) {
2727 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002728 if (pkt_dev->skb)
2729 kfree_skb(pkt_dev->skb);
2730 pkt_dev->skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 goto out;
2732 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002733 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 pkt_dev->idle_acc += getCurUs() - idle_start;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (netif_queue_stopped(odev)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002739 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002741 goto out; /* Try the next interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 }
2743 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (pkt_dev->last_ok || !pkt_dev->skb) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002746 if ((++pkt_dev->clone_count >= pkt_dev->clone_skb)
2747 || (!pkt_dev->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 /* build a new pkt */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002749 if (pkt_dev->skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 pkt_dev->skb = fill_packet(odev, pkt_dev);
2753 if (pkt_dev->skb == NULL) {
2754 printk("pktgen: ERROR: couldn't allocate skb in fill_packet.\n");
2755 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002756 pkt_dev->clone_count--; /* back out increment, OOM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 goto out;
2758 }
2759 pkt_dev->allocated_skbs++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002760 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 }
2762 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 spin_lock_bh(&odev->xmit_lock);
2765 if (!netif_queue_stopped(odev)) {
2766
2767 atomic_inc(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08002768 retry_now:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 ret = odev->hard_start_xmit(pkt_dev->skb, odev);
2770 if (likely(ret == NETDEV_TX_OK)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002771 pkt_dev->last_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 pkt_dev->sofar++;
2773 pkt_dev->seq_num++;
2774 pkt_dev->tx_bytes += pkt_dev->cur_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002775
2776 } else if (ret == NETDEV_TX_LOCKED
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 && (odev->features & NETIF_F_LLTX)) {
2778 cpu_relax();
2779 goto retry_now;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002780 } else { /* Retry it next time */
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 atomic_dec(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08002783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 if (debug && net_ratelimit())
2785 printk(KERN_INFO "pktgen: Hard xmit error\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 pkt_dev->errors++;
2788 pkt_dev->last_ok = 0;
2789 }
2790
2791 pkt_dev->next_tx_us = getCurUs();
2792 pkt_dev->next_tx_ns = 0;
2793
2794 pkt_dev->next_tx_us += pkt_dev->delay_us;
2795 pkt_dev->next_tx_ns += pkt_dev->delay_ns;
2796
2797 if (pkt_dev->next_tx_ns > 1000) {
2798 pkt_dev->next_tx_us++;
2799 pkt_dev->next_tx_ns -= 1000;
2800 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Luiz Capitulino222f1802006-03-20 22:16:13 -08002803 else { /* Retry it next time */
2804 pkt_dev->last_ok = 0;
2805 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
2809 spin_unlock_bh(&odev->xmit_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 /* If pkt_dev->count is zero, then run forever */
2812 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
2813 if (atomic_read(&(pkt_dev->skb->users)) != 1) {
2814 idle_start = getCurUs();
2815 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
2816 if (signal_pending(current)) {
2817 break;
2818 }
2819 schedule();
2820 }
2821 pkt_dev->idle_acc += getCurUs() - idle_start;
2822 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 /* Done with this */
2825 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002826 if (pkt_dev->skb)
2827 kfree_skb(pkt_dev->skb);
2828 pkt_dev->skb = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002829 }
2830out:;
2831}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833/*
2834 * Main loop of the thread goes here
2835 */
2836
Luiz Capitulino222f1802006-03-20 22:16:13 -08002837static void pktgen_thread_worker(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
2839 DEFINE_WAIT(wait);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002840 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 int cpu = t->cpu;
2842 sigset_t tmpsig;
2843 u32 max_before_softirq;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002844 u32 tx_since_softirq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
2846 daemonize("pktgen/%d", cpu);
2847
Luiz Capitulino222f1802006-03-20 22:16:13 -08002848 /* Block all signals except SIGKILL, SIGSTOP and SIGTERM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Luiz Capitulino222f1802006-03-20 22:16:13 -08002850 spin_lock_irq(&current->sighand->siglock);
2851 tmpsig = current->blocked;
2852 siginitsetinv(&current->blocked,
2853 sigmask(SIGKILL) | sigmask(SIGSTOP) | sigmask(SIGTERM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Luiz Capitulino222f1802006-03-20 22:16:13 -08002855 recalc_sigpending();
2856 spin_unlock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858 /* Migrate to the right CPU */
2859 set_cpus_allowed(current, cpumask_of_cpu(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08002860 if (smp_processor_id() != cpu)
2861 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
2863 init_waitqueue_head(&t->queue);
2864
2865 t->control &= ~(T_TERMINATE);
2866 t->control &= ~(T_RUN);
2867 t->control &= ~(T_STOP);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002868 t->control &= ~(T_REMDEVALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 t->control &= ~(T_REMDEV);
2870
Luiz Capitulino222f1802006-03-20 22:16:13 -08002871 t->pid = current->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Luiz Capitulino222f1802006-03-20 22:16:13 -08002873 PG_DEBUG(printk("pktgen: starting pktgen/%d: pid=%d\n", cpu, current->pid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
2875 max_before_softirq = t->max_before_softirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Luiz Capitulino222f1802006-03-20 22:16:13 -08002877 __set_current_state(TASK_INTERRUPTIBLE);
2878 mb();
2879
2880 while (1) {
2881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 __set_current_state(TASK_RUNNING);
2883
2884 /*
2885 * Get next dev to xmit -- if any.
2886 */
2887
Luiz Capitulino222f1802006-03-20 22:16:13 -08002888 pkt_dev = next_to_run(t);
2889
2890 if (pkt_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892 pktgen_xmit(pkt_dev);
2893
2894 /*
2895 * We like to stay RUNNING but must also give
2896 * others fair share.
2897 */
2898
2899 tx_since_softirq += pkt_dev->last_ok;
2900
2901 if (tx_since_softirq > max_before_softirq) {
2902 if (local_softirq_pending())
2903 do_softirq();
2904 tx_since_softirq = 0;
2905 }
2906 } else {
2907 prepare_to_wait(&(t->queue), &wait, TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002908 schedule_timeout(HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 finish_wait(&(t->queue), &wait);
2910 }
2911
Luiz Capitulino222f1802006-03-20 22:16:13 -08002912 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 * Back from sleep, either due to the timeout or signal.
2914 * We check if we have any "posted" work for us.
2915 */
2916
Luiz Capitulino222f1802006-03-20 22:16:13 -08002917 if (t->control & T_TERMINATE || signal_pending(current))
2918 /* we received a request to terminate ourself */
2919 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Luiz Capitulino222f1802006-03-20 22:16:13 -08002921 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 pktgen_stop(t);
2923 t->control &= ~(T_STOP);
2924 }
2925
Luiz Capitulino222f1802006-03-20 22:16:13 -08002926 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 pktgen_run(t);
2928 t->control &= ~(T_RUN);
2929 }
2930
Luiz Capitulino222f1802006-03-20 22:16:13 -08002931 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002933 t->control &= ~(T_REMDEVALL);
2934 }
2935
Luiz Capitulino222f1802006-03-20 22:16:13 -08002936 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002937 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 t->control &= ~(T_REMDEV);
2939 }
2940
Luiz Capitulino222f1802006-03-20 22:16:13 -08002941 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Luiz Capitulino222f1802006-03-20 22:16:13 -08002945 PG_DEBUG(printk("pktgen: %s stopping all device\n", t->name));
2946 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Luiz Capitulino222f1802006-03-20 22:16:13 -08002948 PG_DEBUG(printk("pktgen: %s removing all device\n", t->name));
2949 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Luiz Capitulino222f1802006-03-20 22:16:13 -08002951 PG_DEBUG(printk("pktgen: %s removing thread.\n", t->name));
2952 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002953
2954 t->removed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955}
2956
Luiz Capitulino222f1802006-03-20 22:16:13 -08002957static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
2958 const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002960 struct pktgen_dev *p, *pkt_dev = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002961 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002963 list_for_each_entry(p, &t->if_list, list)
2964 if (strncmp(p->ifname, ifname, IFNAMSIZ) == 0) {
2965 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002966 break;
2967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Luiz Capitulino222f1802006-03-20 22:16:13 -08002969 if_unlock(t);
2970 PG_DEBUG(printk("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev));
2971 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
2973
2974/*
2975 * Adds a dev at front of if_list.
2976 */
2977
Luiz Capitulino222f1802006-03-20 22:16:13 -08002978static int add_dev_to_thread(struct pktgen_thread *t,
2979 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
2981 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Luiz Capitulino222f1802006-03-20 22:16:13 -08002983 if_lock(t);
2984
2985 if (pkt_dev->pg_thread) {
2986 printk("pktgen: ERROR: already assigned to a thread.\n");
2987 rv = -EBUSY;
2988 goto out;
2989 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002990
2991 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002992 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 pkt_dev->running = 0;
2994
Luiz Capitulino222f1802006-03-20 22:16:13 -08002995out:
2996 if_unlock(t);
2997 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
2999
3000/* Called under thread lock */
3001
Luiz Capitulino222f1802006-03-20 22:16:13 -08003002static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003004 struct pktgen_dev *pkt_dev;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003005 struct proc_dir_entry *pe;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 /* We don't allow a device to be on several threads */
3008
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003009 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3010 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003011 printk("pktgen: ERROR: interface already used.\n");
3012 return -EBUSY;
3013 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003014
3015 pkt_dev = kzalloc(sizeof(struct pktgen_dev), GFP_KERNEL);
3016 if (!pkt_dev)
3017 return -ENOMEM;
3018
Luiz Capitulino222f1802006-03-20 22:16:13 -08003019 pkt_dev->flows = vmalloc(MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003020 if (pkt_dev->flows == NULL) {
3021 kfree(pkt_dev);
3022 return -ENOMEM;
3023 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003024 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003025
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003026 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003027 pkt_dev->min_pkt_size = ETH_ZLEN;
3028 pkt_dev->max_pkt_size = ETH_ZLEN;
3029 pkt_dev->nfrags = 0;
3030 pkt_dev->clone_skb = pg_clone_skb_d;
3031 pkt_dev->delay_us = pg_delay_d / 1000;
3032 pkt_dev->delay_ns = pg_delay_d % 1000;
3033 pkt_dev->count = pg_count_d;
3034 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003035 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003036 pkt_dev->udp_src_max = 9;
3037 pkt_dev->udp_dst_min = 9;
3038 pkt_dev->udp_dst_max = 9;
3039
3040 strncpy(pkt_dev->ifname, ifname, IFNAMSIZ);
3041
Luiz Capitulino222f1802006-03-20 22:16:13 -08003042 if (!pktgen_setup_dev(pkt_dev)) {
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003043 printk("pktgen: ERROR: pktgen_setup_dev failed.\n");
3044 if (pkt_dev->flows)
3045 vfree(pkt_dev->flows);
3046 kfree(pkt_dev);
3047 return -ENODEV;
3048 }
3049
3050 pe = create_proc_entry(ifname, 0600, pg_proc_dir);
3051 if (!pe) {
3052 printk("pktgen: cannot create %s/%s procfs entry.\n",
3053 PG_PROC_DIR, ifname);
3054 if (pkt_dev->flows)
3055 vfree(pkt_dev->flows);
3056 kfree(pkt_dev);
3057 return -EINVAL;
3058 }
3059 pe->proc_fops = &pktgen_if_fops;
3060 pe->data = pkt_dev;
3061
3062 return add_dev_to_thread(t, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063}
3064
Luiz Capitulino222f1802006-03-20 22:16:13 -08003065static struct pktgen_thread *__init pktgen_find_thread(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003067 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003069 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003071 list_for_each_entry(t, &pktgen_threads, th_list)
3072 if (strcmp(t->name, name) == 0) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003073 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003074 return t;
3075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003077 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003078 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079}
3080
Luiz Capitulino222f1802006-03-20 22:16:13 -08003081static int __init pktgen_create_thread(const char *name, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
Luiz Capitulino12e18722006-03-20 22:17:00 -08003083 int err;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003084 struct pktgen_thread *t = NULL;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003085 struct proc_dir_entry *pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Luiz Capitulino222f1802006-03-20 22:16:13 -08003087 if (strlen(name) > 31) {
3088 printk("pktgen: ERROR: Thread name cannot be more than 31 characters.\n");
3089 return -EINVAL;
3090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Luiz Capitulino222f1802006-03-20 22:16:13 -08003092 if (pktgen_find_thread(name)) {
3093 printk("pktgen: ERROR: thread: %s already exists\n", name);
3094 return -EINVAL;
3095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Luiz Capitulino222f1802006-03-20 22:16:13 -08003097 t = kzalloc(sizeof(struct pktgen_thread), GFP_KERNEL);
3098 if (!t) {
3099 printk("pktgen: ERROR: out of memory, can't create new thread.\n");
3100 return -ENOMEM;
3101 }
3102
3103 strcpy(t->name, name);
3104 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003106
3107 pe = create_proc_entry(t->name, 0600, pg_proc_dir);
3108 if (!pe) {
3109 printk("pktgen: cannot create %s/%s procfs entry.\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003110 PG_PROC_DIR, t->name);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003111 kfree(t);
3112 return -EINVAL;
3113 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003114
3115 pe->proc_fops = &pktgen_thread_fops;
3116 pe->data = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003118 INIT_LIST_HEAD(&t->if_list);
3119
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003120 list_add_tail(&t->th_list, &pktgen_threads);
3121
3122 t->removed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Luiz Capitulino12e18722006-03-20 22:17:00 -08003124 err = kernel_thread((void *)pktgen_thread_worker, (void *)t,
3125 CLONE_FS | CLONE_FILES | CLONE_SIGHAND);
3126 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 printk("pktgen: kernel_thread() failed for cpu %d\n", t->cpu);
Luiz Capitulino12e18722006-03-20 22:17:00 -08003128 remove_proc_entry(t->name, pg_proc_dir);
3129 list_del(&t->th_list);
3130 kfree(t);
3131 return err;
3132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
3134 return 0;
3135}
3136
3137/*
3138 * Removes a device from the thread if_list.
3139 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003140static void _rem_dev_from_if_list(struct pktgen_thread *t,
3141 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003143 struct list_head *q, *n;
3144 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003146 list_for_each_safe(q, n, &t->if_list) {
3147 p = list_entry(q, struct pktgen_dev, list);
3148 if (p == pkt_dev)
3149 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 }
3151}
3152
Luiz Capitulino222f1802006-03-20 22:16:13 -08003153static int pktgen_remove_device(struct pktgen_thread *t,
3154 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155{
3156
3157 PG_DEBUG(printk("pktgen: remove_device pkt_dev=%p\n", pkt_dev));
3158
Luiz Capitulino222f1802006-03-20 22:16:13 -08003159 if (pkt_dev->running) {
3160 printk("pktgen:WARNING: trying to remove a running interface, stopping it now.\n");
3161 pktgen_stop_device(pkt_dev);
3162 }
3163
3164 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 if (pkt_dev->odev) {
3167 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003168 pkt_dev->odev = NULL;
3169 }
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 /* And update the thread if_list */
3172
3173 _rem_dev_from_if_list(t, pkt_dev);
3174
Luiz Capitulino222f1802006-03-20 22:16:13 -08003175 /* Clean up proc file system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003177 remove_proc_entry(pkt_dev->ifname, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
3179 if (pkt_dev->flows)
3180 vfree(pkt_dev->flows);
3181 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003182 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183}
3184
Luiz Capitulino222f1802006-03-20 22:16:13 -08003185static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
3187 int cpu;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003188 struct proc_dir_entry *pe;
3189
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 printk(version);
3191
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003192 pg_proc_dir = proc_mkdir(PG_PROC_DIR, proc_net);
3193 if (!pg_proc_dir)
3194 return -ENODEV;
3195 pg_proc_dir->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003197 pe = create_proc_entry(PGCTRL, 0600, pg_proc_dir);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003198 if (pe == NULL) {
3199 printk("pktgen: ERROR: cannot create %s procfs entry.\n",
3200 PGCTRL);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003201 proc_net_remove(PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003202 return -EINVAL;
3203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Luiz Capitulino222f1802006-03-20 22:16:13 -08003205 pe->proc_fops = &pktgen_fops;
3206 pe->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
3208 /* Register us to receive netdevice events */
3209 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003210
John Hawkes670c02c2005-10-13 09:30:31 -07003211 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003212 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 char buf[30];
3214
Luiz Capitulino222f1802006-03-20 22:16:13 -08003215 sprintf(buf, "kpktgend_%i", cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003216 err = pktgen_create_thread(buf, cpu);
3217 if (err)
3218 printk("pktgen: WARNING: Cannot create thread for cpu %d (%d)\n",
3219 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003220 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003221
3222 if (list_empty(&pktgen_threads)) {
3223 printk("pktgen: ERROR: Initialization failed for all threads\n");
3224 unregister_netdevice_notifier(&pktgen_notifier_block);
3225 remove_proc_entry(PGCTRL, pg_proc_dir);
3226 proc_net_remove(PG_PROC_DIR);
3227 return -ENODEV;
3228 }
3229
Luiz Capitulino222f1802006-03-20 22:16:13 -08003230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
3233static void __exit pg_cleanup(void)
3234{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003235 struct pktgen_thread *t;
3236 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 wait_queue_head_t queue;
3238 init_waitqueue_head(&queue);
3239
Luiz Capitulino222f1802006-03-20 22:16:13 -08003240 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003242 list_for_each_safe(q, n, &pktgen_threads) {
3243 t = list_entry(q, struct pktgen_thread, th_list);
3244 t->control |= (T_TERMINATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003246 wait_event_interruptible_timeout(queue, (t->removed == 1), HZ);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Luiz Capitulino222f1802006-03-20 22:16:13 -08003249 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 unregister_netdevice_notifier(&pktgen_notifier_block);
3251
Luiz Capitulino222f1802006-03-20 22:16:13 -08003252 /* Clean up proc file system */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003253 remove_proc_entry(PGCTRL, pg_proc_dir);
3254 proc_net_remove(PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255}
3256
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257module_init(pg_init);
3258module_exit(pg_cleanup);
3259
3260MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se");
3261MODULE_DESCRIPTION("Packet Generator tool");
3262MODULE_LICENSE("GPL");
3263module_param(pg_count_d, int, 0);
3264module_param(pg_delay_d, int, 0);
3265module_param(pg_clone_skb_d, int, 0);
3266module_param(debug, int, 0);