blob: 94e42be16daaa00e24da84c786c00ffc3e751708 [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.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090018 * The tool is implemented as a linux module. Parameters are output
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * 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 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090047 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * as a "fastpath" with a configurable number of clones after alloc's.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090050 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * clones.
53 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090054 * Also moved to /proc/net/pktgen/
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * --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 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * 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:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090068 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * way. The if_lock should be possible to remove when add/rem_device is merged
73 * into this too.
74 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090075 * By design there should only be *one* "controlling" process. In practice
76 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * 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 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090080 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * --ro
83 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090084 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * 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>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090092 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
94 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
95 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090096 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * <shemminger@osdl.org> 040923
98 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090099 * 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 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900104 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
106 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900107 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800109 *
110 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
111 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700112 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
113 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700114 * Fixed src_mac command to set source mac of packet to value specified in
115 * command by Adit Ranadive <adit.262@gmail.com>
116 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
118#include <linux/sys.h>
119#include <linux/types.h>
120#include <linux/module.h>
121#include <linux/moduleparam.h>
122#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800123#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#include <linux/sched.h>
125#include <linux/slab.h>
126#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#include <linux/unistd.h>
128#include <linux/string.h>
129#include <linux/ptrace.h>
130#include <linux/errno.h>
131#include <linux/ioport.h>
132#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800133#include <linux/capability.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700134#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#include <linux/delay.h>
136#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800137#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#include <linux/init.h>
139#include <linux/skbuff.h>
140#include <linux/netdevice.h>
141#include <linux/inet.h>
142#include <linux/inetdevice.h>
143#include <linux/rtnetlink.h>
144#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700145#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#include <linux/in.h>
147#include <linux/ip.h>
148#include <linux/ipv6.h>
149#include <linux/udp.h>
150#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700151#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800153#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800154#include <linux/kthread.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200155#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#include <net/checksum.h>
157#include <net/ipv6.h>
158#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700159#ifdef CONFIG_XFRM
160#include <net/xfrm.h>
161#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#include <asm/byteorder.h>
163#include <linux/rcupdate.h>
164#include <asm/bitops.h>
165#include <asm/io.h>
166#include <asm/dma.h>
167#include <asm/uaccess.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800168#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#include <asm/timex.h>
170
Robert Olssonb1639112007-08-28 15:46:58 -0700171#define VERSION "pktgen v2.69: Packet Generator for packet performance testing.\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/* The buckets are exponential in 'width' */
174#define LAT_BUCKETS_MAX 32
175#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800176#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800177#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800180#define F_IPSRC_RND (1<<0) /* IP-Src Random */
181#define F_IPDST_RND (1<<1) /* IP-Dst Random */
182#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
183#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
184#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
185#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
186#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
187#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800188#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700189#define F_VID_RND (1<<9) /* Random VLAN ID */
190#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700191#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700192#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700193#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195/* Thread control flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800196#define T_TERMINATE (1<<0)
197#define T_STOP (1<<1) /* Stop run */
198#define T_RUN (1<<2) /* Start run */
199#define T_REMDEVALL (1<<3) /* Remove all devs */
200#define T_REMDEV (1<<4) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* If lock -- can be removed after some work */
203#define if_lock(t) spin_lock(&(t->if_lock));
204#define if_unlock(t) spin_unlock(&(t->if_lock));
205
206/* Used to help with determining the pkts on receive */
207#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700208#define PG_PROC_DIR "pktgen"
209#define PGCTRL "pgctrl"
210static struct proc_dir_entry *pg_proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212#define MAX_CFLOWS 65536
213
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700214#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
215#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
216
Luiz Capitulino222f1802006-03-20 22:16:13 -0800217struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800218 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800219 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700220#ifdef CONFIG_XFRM
221 struct xfrm_state *x;
222#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700223 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700226/* flow flag bits */
227#define F_INIT (1<<0) /* flow has been initialized */
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /*
231 * Try to keep frequent/infrequent used vars. separated.
232 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800233 struct proc_dir_entry *entry; /* proc file */
234 struct pktgen_thread *pg_thread;/* the owner */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800235 struct list_head list; /* Used for chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Luiz Capitulino222f1802006-03-20 22:16:13 -0800237 int running; /* if this changes to false, the test will stop */
238
239 /* If min != max, then we will either do a linear iteration, or
240 * we will do a random selection from within the range.
241 */
242 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800243 int removal_mark; /* non-zero => the device is marked for
244 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Luiz Capitulino222f1802006-03-20 22:16:13 -0800246 int min_pkt_size; /* = ETH_ZLEN; */
247 int max_pkt_size; /* = ETH_ZLEN; */
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700248 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800249 int nfrags;
250 __u32 delay_us; /* Default delay */
251 __u32 delay_ns;
252 __u64 count; /* Default No packets to send */
253 __u64 sofar; /* How many pkts we've sent so far */
254 __u64 tx_bytes; /* How many bytes we've transmitted */
255 __u64 errors; /* Errors when trying to transmit, pkts will be re-sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Luiz Capitulino222f1802006-03-20 22:16:13 -0800257 /* runtime counters relating to clone_skb */
258 __u64 next_tx_us; /* timestamp of when to tx next */
259 __u32 next_tx_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Luiz Capitulino222f1802006-03-20 22:16:13 -0800261 __u64 allocated_skbs;
262 __u32 clone_count;
263 int last_ok; /* Was last skb sent?
264 * Or a failed transmit of some sort? This will keep
265 * sequence numbers in order, for example.
266 */
267 __u64 started_at; /* micro-seconds */
268 __u64 stopped_at; /* micro-seconds */
269 __u64 idle_acc; /* micro-seconds */
270 __u32 seq_num;
271
272 int clone_skb; /* Use multiple SKBs during packet gen. If this number
273 * is greater than 1, then that many copies of the same
274 * packet will be sent before a new packet is allocated.
275 * For instance, if you want to send 1024 identical packets
276 * before creating a new packet, set clone_skb to 1024.
277 */
278
279 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
280 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
281 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
282 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
283
284 struct in6_addr in6_saddr;
285 struct in6_addr in6_daddr;
286 struct in6_addr cur_in6_daddr;
287 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800289 struct in6_addr min_in6_daddr;
290 struct in6_addr max_in6_daddr;
291 struct in6_addr min_in6_saddr;
292 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Luiz Capitulino222f1802006-03-20 22:16:13 -0800294 /* If we're doing ranges, random or incremental, then this
295 * defines the min/max for those ranges.
296 */
Al Viro252e3342006-11-14 20:48:11 -0800297 __be32 saddr_min; /* inclusive, source IP address */
298 __be32 saddr_max; /* exclusive, source IP address */
299 __be32 daddr_min; /* inclusive, dest IP address */
300 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Luiz Capitulino222f1802006-03-20 22:16:13 -0800302 __u16 udp_src_min; /* inclusive, source UDP port */
303 __u16 udp_src_max; /* exclusive, source UDP port */
304 __u16 udp_dst_min; /* inclusive, dest UDP port */
305 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700307 /* DSCP + ECN */
308 __u8 tos; /* six most significant bits of (former) IPv4 TOS are for dscp codepoint */
309 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6 (see RFC 3260, sec. 4) */
310
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800311 /* MPLS */
312 unsigned nr_labels; /* Depth of stack, 0 = no MPLS */
313 __be32 labels[MAX_MPLS_LABELS];
314
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700315 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
316 __u8 vlan_p;
317 __u8 vlan_cfi;
318 __u16 vlan_id; /* 0xffff means no vlan tag */
319
320 __u8 svlan_p;
321 __u8 svlan_cfi;
322 __u16 svlan_id; /* 0xffff means no svlan tag */
323
Luiz Capitulino222f1802006-03-20 22:16:13 -0800324 __u32 src_mac_count; /* How many MACs to iterate through */
325 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Luiz Capitulino222f1802006-03-20 22:16:13 -0800327 unsigned char dst_mac[ETH_ALEN];
328 unsigned char src_mac[ETH_ALEN];
329
330 __u32 cur_dst_mac_offset;
331 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800332 __be32 cur_saddr;
333 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800334 __u16 cur_udp_dst;
335 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700336 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800337 __u32 cur_pkt_size;
338
339 __u8 hh[14];
340 /* = {
341 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
342
343 We fill in SRC address later
344 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
345 0x08, 0x00
346 };
347 */
348 __u16 pad; /* pad out the hh struct to an even 16 bytes */
349
350 struct sk_buff *skb; /* skb we are to transmit next, mainly used for when we
351 * are transmitting the same one multiple times
352 */
353 struct net_device *odev; /* The out-going device. Note that the device should
354 * have it's pg_info pointer pointing back to this
355 * device. This will be set when the user specifies
356 * the out-going device name (not when the inject is
357 * started as it used to do.)
358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800360 unsigned cflows; /* Concurrent flows (config) */
361 unsigned lflow; /* Flow length (config) */
362 unsigned nflows; /* accumulated flows (stats) */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700363 unsigned curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700364
365 u16 queue_map_min;
366 u16 queue_map_max;
367
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700368#ifdef CONFIG_XFRM
369 __u8 ipsmode; /* IPSEC mode (config) */
370 __u8 ipsproto; /* IPSEC type (config) */
371#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800372 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
375struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800376 __be32 pgh_magic;
377 __be32 seq_num;
378 __be32 tv_sec;
379 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380};
381
382struct pktgen_thread {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800383 spinlock_t if_lock;
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800384 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800385 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800386 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800387 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Luiz Capitulino222f1802006-03-20 22:16:13 -0800389 /* Field for thread to receive "posted" events terminate, stop ifs etc. */
390
391 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int cpu;
393
Luiz Capitulino222f1802006-03-20 22:16:13 -0800394 wait_queue_head_t queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
397#define REMOVE 1
398#define FIND 0
399
400/* This code works around the fact that do_div cannot handle two 64-bit
401 numbers, and regular 64-bit division doesn't work on x86 kernels.
402 --Ben
403*/
404
405#define PG_DIV 0
406
407/* This was emailed to LMKL by: Chris Caputo <ccaputo@alt.net>
408 * Function copied/adapted/optimized from:
409 *
410 * nemesis.sourceforge.net/browse/lib/static/intmath/ix86/intmath.c.html
411 *
412 * Copyright 1994, University of Cambridge Computer Laboratory
413 * All Rights Reserved.
414 *
415 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700416static inline s64 divremdi3(s64 x, s64 y, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800418 u64 a = (x < 0) ? -x : x;
419 u64 b = (y < 0) ? -y : y;
420 u64 res = 0, d = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Luiz Capitulino222f1802006-03-20 22:16:13 -0800422 if (b > 0) {
423 while (b < a) {
424 b <<= 1;
425 d <<= 1;
426 }
427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Luiz Capitulino222f1802006-03-20 22:16:13 -0800429 do {
430 if (a >= b) {
431 a -= b;
432 res += d;
433 }
434 b >>= 1;
435 d >>= 1;
436 }
437 while (d);
438
439 if (PG_DIV == type) {
440 return (((x ^ y) & (1ll << 63)) == 0) ? res : -(s64) res;
441 } else {
442 return ((x & (1ll << 63)) == 0) ? a : -(s64) a;
443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446/* End of hacks to deal with 64-bit math on x86 */
447
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700448/** Convert to milliseconds */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800449static inline __u64 tv_to_ms(const struct timeval *tv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800451 __u64 ms = tv->tv_usec / 1000;
452 ms += (__u64) tv->tv_sec * (__u64) 1000;
453 return ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/** Convert to micro-seconds */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800457static inline __u64 tv_to_us(const struct timeval *tv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800459 __u64 us = tv->tv_usec;
460 us += (__u64) tv->tv_sec * (__u64) 1000000;
461 return us;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Luiz Capitulino222f1802006-03-20 22:16:13 -0800464static inline __u64 pg_div(__u64 n, __u32 base)
465{
466 __u64 tmp = n;
467 do_div(tmp, base);
468 /* printk("pktgen: pg_div, n: %llu base: %d rv: %llu\n",
469 n, base, tmp); */
470 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Luiz Capitulino222f1802006-03-20 22:16:13 -0800473static inline __u64 pg_div64(__u64 n, __u64 base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800475 __u64 tmp = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700477 * How do we know if the architecture we are running on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * supports division with 64 bit base?
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900479 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800481#if defined(__sparc_v9__) || defined(__powerpc64__) || defined(__alpha__) || defined(__x86_64__) || defined(__ia64__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Luiz Capitulino222f1802006-03-20 22:16:13 -0800483 do_div(tmp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484#else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800485 tmp = divremdi3(n, base, PG_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -0800487 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Luiz Capitulino222f1802006-03-20 22:16:13 -0800490static inline __u64 getCurMs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800492 struct timeval tv;
493 do_gettimeofday(&tv);
494 return tv_to_ms(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Luiz Capitulino222f1802006-03-20 22:16:13 -0800497static inline __u64 getCurUs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800499 struct timeval tv;
500 do_gettimeofday(&tv);
501 return tv_to_us(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Luiz Capitulino222f1802006-03-20 22:16:13 -0800504static inline __u64 tv_diff(const struct timeval *a, const struct timeval *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800506 return tv_to_us(a) - tv_to_us(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/* old include end */
510
511static char version[] __initdata = VERSION;
512
Luiz Capitulino222f1802006-03-20 22:16:13 -0800513static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
514static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
515static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
516 const char *ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
518static void pktgen_run_all_threads(void);
519static void pktgen_stop_all_threads_ifs(void);
520static int pktgen_stop_device(struct pktgen_dev *pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800521static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800523
Luiz Capitulino222f1802006-03-20 22:16:13 -0800524static unsigned int scan_ip6(const char *s, char ip[16]);
525static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527/* Module parameters, defaults. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800528static int pg_count_d = 1000; /* 1000 pkts by default */
Jaco Kroonf34fbb972005-12-22 12:51:46 -0800529static int pg_delay_d;
530static int pg_clone_skb_d;
531static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Luiz Capitulino222fa072006-03-20 22:24:27 -0800533static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800534static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536static struct notifier_block pktgen_notifier_block = {
537 .notifier_call = pktgen_device_event,
538};
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900541 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 *
543 */
544
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700545static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800546{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700547 seq_puts(seq, VERSION);
548 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Luiz Capitulino222f1802006-03-20 22:16:13 -0800551static ssize_t pgctrl_write(struct file *file, const char __user * buf,
552 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700555 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Luiz Capitulino222f1802006-03-20 22:16:13 -0800557 if (!capable(CAP_NET_ADMIN)) {
558 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700562 if (count > sizeof(data))
563 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700566 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700567 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800568 }
569 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Luiz Capitulino222f1802006-03-20 22:16:13 -0800571 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 pktgen_stop_all_threads_ifs();
573
Luiz Capitulino222f1802006-03-20 22:16:13 -0800574 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 pktgen_run_all_threads();
576
Luiz Capitulino222f1802006-03-20 22:16:13 -0800577 else
David S. Miller25a8b252007-07-30 16:11:48 -0700578 printk(KERN_WARNING "pktgen: Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 err = count;
581
Luiz Capitulino222f1802006-03-20 22:16:13 -0800582out:
583 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700586static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700588 return single_open(file, pgctrl_show, PDE(inode)->data);
589}
590
Arjan van de Ven9a321442007-02-12 00:55:35 -0800591static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800592 .owner = THIS_MODULE,
593 .open = pgctrl_open,
594 .read = seq_read,
595 .llseek = seq_lseek,
596 .write = pgctrl_write,
597 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700598};
599
600static int pktgen_if_show(struct seq_file *seq, void *v)
601{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800603 struct pktgen_dev *pkt_dev = seq->private;
604 __u64 sa;
605 __u64 stopped;
606 __u64 now = getCurUs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Luiz Capitulino222f1802006-03-20 22:16:13 -0800608 seq_printf(seq,
609 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
610 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
611 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Luiz Capitulino222f1802006-03-20 22:16:13 -0800613 seq_printf(seq,
614 " frags: %d delay: %u clone_skb: %d ifname: %s\n",
615 pkt_dev->nfrags,
616 1000 * pkt_dev->delay_us + pkt_dev->delay_ns,
Stephen Hemminger39df2322007-03-04 16:11:51 -0800617 pkt_dev->clone_skb, pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Luiz Capitulino222f1802006-03-20 22:16:13 -0800619 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
620 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Robert Olsson45b270f2007-08-28 15:45:55 -0700622 seq_printf(seq,
623 " queue_map_min: %u queue_map_max: %u\n",
624 pkt_dev->queue_map_min,
625 pkt_dev->queue_map_max);
626
Luiz Capitulino222f1802006-03-20 22:16:13 -0800627 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800629 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
630 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
631 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
632 seq_printf(seq,
633 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
634 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Luiz Capitulino222f1802006-03-20 22:16:13 -0800636 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
637 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
638 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
639 seq_printf(seq,
640 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
641 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Luiz Capitulino222f1802006-03-20 22:16:13 -0800643 } else
644 seq_printf(seq,
645 " dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n",
646 pkt_dev->dst_min, pkt_dev->dst_max, pkt_dev->src_min,
647 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700649 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800651 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -0800652 for (i = 0; i < 6; i++)
653 seq_printf(seq, "%02X%s", pkt_dev->odev->dev_addr[i],
654 i == 5 ? " " : ":");
655 else
656 for (i = 0; i < 6; i++)
657 seq_printf(seq, "%02X%s", pkt_dev->src_mac[i],
658 i == 5 ? " " : ":");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Luiz Capitulino222f1802006-03-20 22:16:13 -0800660 seq_printf(seq, "dst_mac: ");
661 for (i = 0; i < 6; i++)
662 seq_printf(seq, "%02X%s", pkt_dev->dst_mac[i],
663 i == 5 ? "\n" : ":");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Luiz Capitulino222f1802006-03-20 22:16:13 -0800665 seq_printf(seq,
666 " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n",
667 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
668 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Luiz Capitulino222f1802006-03-20 22:16:13 -0800670 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800671 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700672 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800674 if (pkt_dev->nr_labels) {
675 unsigned i;
676 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700677 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800678 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
679 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
680 }
681
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700682 if (pkt_dev->vlan_id != 0xffff) {
683 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
684 pkt_dev->vlan_id, pkt_dev->vlan_p, pkt_dev->vlan_cfi);
685 }
686
687 if (pkt_dev->svlan_id != 0xffff) {
688 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
689 pkt_dev->svlan_id, pkt_dev->svlan_p, pkt_dev->svlan_cfi);
690 }
691
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700692 if (pkt_dev->tos) {
693 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
694 }
695
696 if (pkt_dev->traffic_class) {
697 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
698 }
699
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800700 seq_printf(seq, " Flags: ");
701
Luiz Capitulino222f1802006-03-20 22:16:13 -0800702 if (pkt_dev->flags & F_IPV6)
703 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Luiz Capitulino222f1802006-03-20 22:16:13 -0800705 if (pkt_dev->flags & F_IPSRC_RND)
706 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Luiz Capitulino222f1802006-03-20 22:16:13 -0800708 if (pkt_dev->flags & F_IPDST_RND)
709 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Luiz Capitulino222f1802006-03-20 22:16:13 -0800711 if (pkt_dev->flags & F_TXSIZE_RND)
712 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Luiz Capitulino222f1802006-03-20 22:16:13 -0800714 if (pkt_dev->flags & F_UDPSRC_RND)
715 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Luiz Capitulino222f1802006-03-20 22:16:13 -0800717 if (pkt_dev->flags & F_UDPDST_RND)
718 seq_printf(seq, "UDPDST_RND ");
719
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800720 if (pkt_dev->flags & F_MPLS_RND)
721 seq_printf(seq, "MPLS_RND ");
722
Robert Olsson45b270f2007-08-28 15:45:55 -0700723 if (pkt_dev->flags & F_QUEUE_MAP_RND)
724 seq_printf(seq, "QUEUE_MAP_RND ");
725
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700726 if (pkt_dev->cflows) {
727 if (pkt_dev->flags & F_FLOW_SEQ)
728 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
729 else
730 seq_printf(seq, "FLOW_RND ");
731 }
732
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700733#ifdef CONFIG_XFRM
734 if (pkt_dev->flags & F_IPSEC_ON)
735 seq_printf(seq, "IPSEC ");
736#endif
737
Luiz Capitulino222f1802006-03-20 22:16:13 -0800738 if (pkt_dev->flags & F_MACSRC_RND)
739 seq_printf(seq, "MACSRC_RND ");
740
741 if (pkt_dev->flags & F_MACDST_RND)
742 seq_printf(seq, "MACDST_RND ");
743
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700744 if (pkt_dev->flags & F_VID_RND)
745 seq_printf(seq, "VID_RND ");
746
747 if (pkt_dev->flags & F_SVID_RND)
748 seq_printf(seq, "SVID_RND ");
749
Luiz Capitulino222f1802006-03-20 22:16:13 -0800750 seq_puts(seq, "\n");
751
752 sa = pkt_dev->started_at;
753 stopped = pkt_dev->stopped_at;
754 if (pkt_dev->running)
755 stopped = now; /* not really stopped, more like last-running-at */
756
757 seq_printf(seq,
758 "Current:\n pkts-sofar: %llu errors: %llu\n started: %lluus stopped: %lluus idle: %lluus\n",
759 (unsigned long long)pkt_dev->sofar,
760 (unsigned long long)pkt_dev->errors, (unsigned long long)sa,
761 (unsigned long long)stopped,
762 (unsigned long long)pkt_dev->idle_acc);
763
764 seq_printf(seq,
765 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700766 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
767 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Luiz Capitulino222f1802006-03-20 22:16:13 -0800769 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800771 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
772 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
773 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
774 } else
775 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700776 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Luiz Capitulino222f1802006-03-20 22:16:13 -0800778 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700779 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Robert Olsson45b270f2007-08-28 15:45:55 -0700781 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
782
Luiz Capitulino222f1802006-03-20 22:16:13 -0800783 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800786 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800788 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800793
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700794static int hex32_arg(const char __user *user_buffer, unsigned long maxlen, __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800795{
796 int i = 0;
797 *num = 0;
798
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700799 for (; i < maxlen; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800800 char c;
801 *num <<= 4;
802 if (get_user(c, &user_buffer[i]))
803 return -EFAULT;
804 if ((c >= '0') && (c <= '9'))
805 *num |= c - '0';
806 else if ((c >= 'a') && (c <= 'f'))
807 *num |= c - 'a' + 10;
808 else if ((c >= 'A') && (c <= 'F'))
809 *num |= c - 'A' + 10;
810 else
811 break;
812 }
813 return i;
814}
815
Luiz Capitulino222f1802006-03-20 22:16:13 -0800816static int count_trail_chars(const char __user * user_buffer,
817 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 int i;
820
821 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800822 char c;
823 if (get_user(c, &user_buffer[i]))
824 return -EFAULT;
825 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 case '\"':
827 case '\n':
828 case '\r':
829 case '\t':
830 case ' ':
831 case '=':
832 break;
833 default:
834 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837done:
838 return i;
839}
840
Luiz Capitulino222f1802006-03-20 22:16:13 -0800841static unsigned long num_arg(const char __user * user_buffer,
842 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 int i = 0;
845 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800846
847 for (; i < maxlen; i++) {
848 char c;
849 if (get_user(c, &user_buffer[i]))
850 return -EFAULT;
851 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800853 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 } else
855 break;
856 }
857 return i;
858}
859
Luiz Capitulino222f1802006-03-20 22:16:13 -0800860static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 int i = 0;
863
Luiz Capitulino222f1802006-03-20 22:16:13 -0800864 for (; i < maxlen; i++) {
865 char c;
866 if (get_user(c, &user_buffer[i]))
867 return -EFAULT;
868 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 case '\"':
870 case '\n':
871 case '\r':
872 case '\t':
873 case ' ':
874 goto done_str;
875 break;
876 default:
877 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return i;
882}
883
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800884static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
885{
886 unsigned n = 0;
887 char c;
888 ssize_t i = 0;
889 int len;
890
891 pkt_dev->nr_labels = 0;
892 do {
893 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700894 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800895 if (len <= 0)
896 return len;
897 pkt_dev->labels[n] = htonl(tmp);
898 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
899 pkt_dev->flags |= F_MPLS_RND;
900 i += len;
901 if (get_user(c, &buffer[i]))
902 return -EFAULT;
903 i++;
904 n++;
905 if (n >= MAX_MPLS_LABELS)
906 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700907 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800908
909 pkt_dev->nr_labels = n;
910 return i;
911}
912
Luiz Capitulino222f1802006-03-20 22:16:13 -0800913static ssize_t pktgen_if_write(struct file *file,
914 const char __user * user_buffer, size_t count,
915 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800917 struct seq_file *seq = (struct seq_file *)file->private_data;
918 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int i = 0, max, len;
920 char name[16], valstr[32];
921 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800922 char *pg_result = NULL;
923 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800925
926 pg_result = &(pkt_dev->result[0]);
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (count < 1) {
David S. Miller25a8b252007-07-30 16:11:48 -0700929 printk(KERN_WARNING "pktgen: wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return -EINVAL;
931 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 max = count - i;
934 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800935 if (tmp < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -0700936 printk(KERN_WARNING "pktgen: illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800937 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800939 i += tmp;
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /* Read variable name */
942
943 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800944 if (len < 0) {
945 return len;
946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800948 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return -EFAULT;
950 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800951
952 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800954 if (len < 0)
955 return len;
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 i += len;
958
959 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800960 char tb[count + 1];
961 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800963 tb[count] = 0;
David S. Miller25a8b252007-07-30 16:11:48 -0700964 printk(KERN_DEBUG "pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800965 (unsigned long)count, tb);
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 if (!strcmp(name, "min_pkt_size")) {
969 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800970 if (len < 0) {
971 return len;
972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800974 if (value < 14 + 20 + 8)
975 value = 14 + 20 + 8;
976 if (value != pkt_dev->min_pkt_size) {
977 pkt_dev->min_pkt_size = value;
978 pkt_dev->cur_pkt_size = value;
979 }
980 sprintf(pg_result, "OK: min_pkt_size=%u",
981 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return count;
983 }
984
Luiz Capitulino222f1802006-03-20 22:16:13 -0800985 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800987 if (len < 0) {
988 return len;
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800991 if (value < 14 + 20 + 8)
992 value = 14 + 20 + 8;
993 if (value != pkt_dev->max_pkt_size) {
994 pkt_dev->max_pkt_size = value;
995 pkt_dev->cur_pkt_size = value;
996 }
997 sprintf(pg_result, "OK: max_pkt_size=%u",
998 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return count;
1000 }
1001
Luiz Capitulino222f1802006-03-20 22:16:13 -08001002 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 if (!strcmp(name, "pkt_size")) {
1005 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001006 if (len < 0) {
1007 return len;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001010 if (value < 14 + 20 + 8)
1011 value = 14 + 20 + 8;
1012 if (value != pkt_dev->min_pkt_size) {
1013 pkt_dev->min_pkt_size = value;
1014 pkt_dev->max_pkt_size = value;
1015 pkt_dev->cur_pkt_size = value;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
1018 return count;
1019 }
1020
Luiz Capitulino222f1802006-03-20 22:16:13 -08001021 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001023 if (len < 0) {
1024 return len;
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001027 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 sprintf(pg_result, "OK: debug=%u", debug);
1029 return count;
1030 }
1031
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001034 if (len < 0) {
1035 return len;
1036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 i += len;
1038 pkt_dev->nfrags = value;
1039 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
1040 return count;
1041 }
1042 if (!strcmp(name, "delay")) {
1043 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001044 if (len < 0) {
1045 return len;
1046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 i += len;
1048 if (value == 0x7FFFFFFF) {
1049 pkt_dev->delay_us = 0x7FFFFFFF;
1050 pkt_dev->delay_ns = 0;
1051 } else {
1052 pkt_dev->delay_us = value / 1000;
1053 pkt_dev->delay_ns = value % 1000;
1054 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001055 sprintf(pg_result, "OK: delay=%u",
1056 1000 * pkt_dev->delay_us + pkt_dev->delay_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return count;
1058 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001059 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 if (len < 0) {
1062 return len;
1063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001065 if (value != pkt_dev->udp_src_min) {
1066 pkt_dev->udp_src_min = value;
1067 pkt_dev->cur_udp_src = value;
1068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1070 return count;
1071 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001072 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001074 if (len < 0) {
1075 return len;
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001078 if (value != pkt_dev->udp_dst_min) {
1079 pkt_dev->udp_dst_min = value;
1080 pkt_dev->cur_udp_dst = value;
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1083 return count;
1084 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001085 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001087 if (len < 0) {
1088 return len;
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001091 if (value != pkt_dev->udp_src_max) {
1092 pkt_dev->udp_src_max = value;
1093 pkt_dev->cur_udp_src = value;
1094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1096 return count;
1097 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001098 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001100 if (len < 0) {
1101 return len;
1102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001104 if (value != pkt_dev->udp_dst_max) {
1105 pkt_dev->udp_dst_max = value;
1106 pkt_dev->cur_udp_dst = value;
1107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1109 return count;
1110 }
1111 if (!strcmp(name, "clone_skb")) {
1112 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001113 if (len < 0) {
1114 return len;
1115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001117 pkt_dev->clone_skb = value;
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1120 return count;
1121 }
1122 if (!strcmp(name, "count")) {
1123 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001124 if (len < 0) {
1125 return len;
1126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 i += len;
1128 pkt_dev->count = value;
1129 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001130 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return count;
1132 }
1133 if (!strcmp(name, "src_mac_count")) {
1134 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001135 if (len < 0) {
1136 return len;
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 i += len;
1139 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001140 pkt_dev->src_mac_count = value;
1141 pkt_dev->cur_src_mac_offset = 0;
1142 }
1143 sprintf(pg_result, "OK: src_mac_count=%d",
1144 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return count;
1146 }
1147 if (!strcmp(name, "dst_mac_count")) {
1148 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001149 if (len < 0) {
1150 return len;
1151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 i += len;
1153 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001154 pkt_dev->dst_mac_count = value;
1155 pkt_dev->cur_dst_mac_offset = 0;
1156 }
1157 sprintf(pg_result, "OK: dst_mac_count=%d",
1158 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return count;
1160 }
1161 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001162 char f[32];
1163 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001165 if (len < 0) {
1166 return len;
1167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (copy_from_user(f, &user_buffer[i], len))
1169 return -EFAULT;
1170 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001171 if (strcmp(f, "IPSRC_RND") == 0)
1172 pkt_dev->flags |= F_IPSRC_RND;
1173
1174 else if (strcmp(f, "!IPSRC_RND") == 0)
1175 pkt_dev->flags &= ~F_IPSRC_RND;
1176
1177 else if (strcmp(f, "TXSIZE_RND") == 0)
1178 pkt_dev->flags |= F_TXSIZE_RND;
1179
1180 else if (strcmp(f, "!TXSIZE_RND") == 0)
1181 pkt_dev->flags &= ~F_TXSIZE_RND;
1182
1183 else if (strcmp(f, "IPDST_RND") == 0)
1184 pkt_dev->flags |= F_IPDST_RND;
1185
1186 else if (strcmp(f, "!IPDST_RND") == 0)
1187 pkt_dev->flags &= ~F_IPDST_RND;
1188
1189 else if (strcmp(f, "UDPSRC_RND") == 0)
1190 pkt_dev->flags |= F_UDPSRC_RND;
1191
1192 else if (strcmp(f, "!UDPSRC_RND") == 0)
1193 pkt_dev->flags &= ~F_UDPSRC_RND;
1194
1195 else if (strcmp(f, "UDPDST_RND") == 0)
1196 pkt_dev->flags |= F_UDPDST_RND;
1197
1198 else if (strcmp(f, "!UDPDST_RND") == 0)
1199 pkt_dev->flags &= ~F_UDPDST_RND;
1200
1201 else if (strcmp(f, "MACSRC_RND") == 0)
1202 pkt_dev->flags |= F_MACSRC_RND;
1203
1204 else if (strcmp(f, "!MACSRC_RND") == 0)
1205 pkt_dev->flags &= ~F_MACSRC_RND;
1206
1207 else if (strcmp(f, "MACDST_RND") == 0)
1208 pkt_dev->flags |= F_MACDST_RND;
1209
1210 else if (strcmp(f, "!MACDST_RND") == 0)
1211 pkt_dev->flags &= ~F_MACDST_RND;
1212
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001213 else if (strcmp(f, "MPLS_RND") == 0)
1214 pkt_dev->flags |= F_MPLS_RND;
1215
1216 else if (strcmp(f, "!MPLS_RND") == 0)
1217 pkt_dev->flags &= ~F_MPLS_RND;
1218
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001219 else if (strcmp(f, "VID_RND") == 0)
1220 pkt_dev->flags |= F_VID_RND;
1221
1222 else if (strcmp(f, "!VID_RND") == 0)
1223 pkt_dev->flags &= ~F_VID_RND;
1224
1225 else if (strcmp(f, "SVID_RND") == 0)
1226 pkt_dev->flags |= F_SVID_RND;
1227
1228 else if (strcmp(f, "!SVID_RND") == 0)
1229 pkt_dev->flags &= ~F_SVID_RND;
1230
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001231 else if (strcmp(f, "FLOW_SEQ") == 0)
1232 pkt_dev->flags |= F_FLOW_SEQ;
1233
Robert Olsson45b270f2007-08-28 15:45:55 -07001234 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1235 pkt_dev->flags |= F_QUEUE_MAP_RND;
1236
1237 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1238 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001239#ifdef CONFIG_XFRM
1240 else if (strcmp(f, "IPSEC") == 0)
1241 pkt_dev->flags |= F_IPSEC_ON;
1242#endif
1243
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001244 else if (strcmp(f, "!IPV6") == 0)
1245 pkt_dev->flags &= ~F_IPV6;
1246
Luiz Capitulino222f1802006-03-20 22:16:13 -08001247 else {
1248 sprintf(pg_result,
1249 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1250 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001251 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001252 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001253 return count;
1254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1256 return count;
1257 }
1258 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1259 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001260 if (len < 0) {
1261 return len;
1262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Luiz Capitulino222f1802006-03-20 22:16:13 -08001264 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001266 buf[len] = 0;
1267 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1268 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1269 strncpy(pkt_dev->dst_min, buf, len);
1270 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1271 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1272 }
1273 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001274 printk(KERN_DEBUG "pktgen: dst_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001275 pkt_dev->dst_min);
1276 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1278 return count;
1279 }
1280 if (!strcmp(name, "dst_max")) {
1281 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001282 if (len < 0) {
1283 return len;
1284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Luiz Capitulino222f1802006-03-20 22:16:13 -08001286 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return -EFAULT;
1288
Luiz Capitulino222f1802006-03-20 22:16:13 -08001289 buf[len] = 0;
1290 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1291 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1292 strncpy(pkt_dev->dst_max, buf, len);
1293 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1294 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1295 }
1296 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001297 printk(KERN_DEBUG "pktgen: dst_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001298 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 i += len;
1300 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1301 return count;
1302 }
1303 if (!strcmp(name, "dst6")) {
1304 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001305 if (len < 0)
1306 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 pkt_dev->flags |= F_IPV6;
1309
Luiz Capitulino222f1802006-03-20 22:16:13 -08001310 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001312 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001315 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1318
Luiz Capitulino222f1802006-03-20 22:16:13 -08001319 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001320 printk(KERN_DEBUG "pktgen: dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Luiz Capitulino222f1802006-03-20 22:16:13 -08001322 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 sprintf(pg_result, "OK: dst6=%s", buf);
1324 return count;
1325 }
1326 if (!strcmp(name, "dst6_min")) {
1327 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001328 if (len < 0)
1329 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 pkt_dev->flags |= F_IPV6;
1332
Luiz Capitulino222f1802006-03-20 22:16:13 -08001333 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001335 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001338 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Luiz Capitulino222f1802006-03-20 22:16:13 -08001340 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1341 &pkt_dev->min_in6_daddr);
1342 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001343 printk(KERN_DEBUG "pktgen: dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Luiz Capitulino222f1802006-03-20 22:16:13 -08001345 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 sprintf(pg_result, "OK: dst6_min=%s", buf);
1347 return count;
1348 }
1349 if (!strcmp(name, "dst6_max")) {
1350 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001351 if (len < 0)
1352 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 pkt_dev->flags |= F_IPV6;
1355
Luiz Capitulino222f1802006-03-20 22:16:13 -08001356 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001358 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001361 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Luiz Capitulino222f1802006-03-20 22:16:13 -08001363 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001364 printk(KERN_DEBUG "pktgen: dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Luiz Capitulino222f1802006-03-20 22:16:13 -08001366 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 sprintf(pg_result, "OK: dst6_max=%s", buf);
1368 return count;
1369 }
1370 if (!strcmp(name, "src6")) {
1371 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001372 if (len < 0)
1373 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 pkt_dev->flags |= F_IPV6;
1376
Luiz Capitulino222f1802006-03-20 22:16:13 -08001377 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001379 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001382 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1385
Luiz Capitulino222f1802006-03-20 22:16:13 -08001386 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001387 printk(KERN_DEBUG "pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001388
1389 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 sprintf(pg_result, "OK: src6=%s", buf);
1391 return count;
1392 }
1393 if (!strcmp(name, "src_min")) {
1394 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001395 if (len < 0) {
1396 return len;
1397 }
1398 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001400 buf[len] = 0;
1401 if (strcmp(buf, pkt_dev->src_min) != 0) {
1402 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1403 strncpy(pkt_dev->src_min, buf, len);
1404 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1405 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1406 }
1407 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001408 printk(KERN_DEBUG "pktgen: src_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001409 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 i += len;
1411 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1412 return count;
1413 }
1414 if (!strcmp(name, "src_max")) {
1415 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001416 if (len < 0) {
1417 return len;
1418 }
1419 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001421 buf[len] = 0;
1422 if (strcmp(buf, pkt_dev->src_max) != 0) {
1423 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1424 strncpy(pkt_dev->src_max, buf, len);
1425 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1426 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1427 }
1428 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001429 printk(KERN_DEBUG "pktgen: src_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001430 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 i += len;
1432 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1433 return count;
1434 }
1435 if (!strcmp(name, "dst_mac")) {
1436 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001437 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001439 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001442 if (len < 0) {
1443 return len;
1444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001446 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 return -EFAULT;
1448 i += len;
1449
Luiz Capitulino222f1802006-03-20 22:16:13 -08001450 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (*v >= '0' && *v <= '9') {
1452 *m *= 16;
1453 *m += *v - '0';
1454 }
1455 if (*v >= 'A' && *v <= 'F') {
1456 *m *= 16;
1457 *m += *v - 'A' + 10;
1458 }
1459 if (*v >= 'a' && *v <= 'f') {
1460 *m *= 16;
1461 *m += *v - 'a' + 10;
1462 }
1463 if (*v == ':') {
1464 m++;
1465 *m = 0;
1466 }
1467 }
1468
1469 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001470 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1471 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 sprintf(pg_result, "OK: dstmac");
1474 return count;
1475 }
1476 if (!strcmp(name, "src_mac")) {
1477 char *v = valstr;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001478 unsigned char old_smac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 unsigned char *m = pkt_dev->src_mac;
1480
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001481 memcpy(old_smac, pkt_dev->src_mac, ETH_ALEN);
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001484 if (len < 0) {
1485 return len;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001488 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return -EFAULT;
1490 i += len;
1491
Luiz Capitulino222f1802006-03-20 22:16:13 -08001492 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (*v >= '0' && *v <= '9') {
1494 *m *= 16;
1495 *m += *v - '0';
1496 }
1497 if (*v >= 'A' && *v <= 'F') {
1498 *m *= 16;
1499 *m += *v - 'A' + 10;
1500 }
1501 if (*v >= 'a' && *v <= 'f') {
1502 *m *= 16;
1503 *m += *v - 'a' + 10;
1504 }
1505 if (*v == ':') {
1506 m++;
1507 *m = 0;
1508 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001511 /* Set up Src MAC */
1512 if (compare_ether_addr(old_smac, pkt_dev->src_mac))
1513 memcpy(&(pkt_dev->hh[6]), pkt_dev->src_mac, ETH_ALEN);
1514
Luiz Capitulino222f1802006-03-20 22:16:13 -08001515 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 return count;
1517 }
1518
Luiz Capitulino222f1802006-03-20 22:16:13 -08001519 if (!strcmp(name, "clear_counters")) {
1520 pktgen_clear_counters(pkt_dev);
1521 sprintf(pg_result, "OK: Clearing counters.\n");
1522 return count;
1523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525 if (!strcmp(name, "flows")) {
1526 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001527 if (len < 0) {
1528 return len;
1529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 i += len;
1531 if (value > MAX_CFLOWS)
1532 value = MAX_CFLOWS;
1533
1534 pkt_dev->cflows = value;
1535 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1536 return count;
1537 }
1538
1539 if (!strcmp(name, "flowlen")) {
1540 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001541 if (len < 0) {
1542 return len;
1543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 i += len;
1545 pkt_dev->lflow = value;
1546 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1547 return count;
1548 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001549
Robert Olsson45b270f2007-08-28 15:45:55 -07001550 if (!strcmp(name, "queue_map_min")) {
1551 len = num_arg(&user_buffer[i], 5, &value);
1552 if (len < 0) {
1553 return len;
1554 }
1555 i += len;
1556 pkt_dev->queue_map_min = value;
1557 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1558 return count;
1559 }
1560
1561 if (!strcmp(name, "queue_map_max")) {
1562 len = num_arg(&user_buffer[i], 5, &value);
1563 if (len < 0) {
1564 return len;
1565 }
1566 i += len;
1567 pkt_dev->queue_map_max = value;
1568 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1569 return count;
1570 }
1571
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001572 if (!strcmp(name, "mpls")) {
1573 unsigned n, offset;
1574 len = get_labels(&user_buffer[i], pkt_dev);
1575 if (len < 0) { return len; }
1576 i += len;
1577 offset = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001578 for (n = 0; n < pkt_dev->nr_labels; n++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001579 offset += sprintf(pg_result + offset,
1580 "%08x%s", ntohl(pkt_dev->labels[n]),
1581 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001582
1583 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1584 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1585 pkt_dev->svlan_id = 0xffff;
1586
1587 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001588 printk(KERN_DEBUG "pktgen: VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001589 }
1590 return count;
1591 }
1592
1593 if (!strcmp(name, "vlan_id")) {
1594 len = num_arg(&user_buffer[i], 4, &value);
1595 if (len < 0) {
1596 return len;
1597 }
1598 i += len;
1599 if (value <= 4095) {
1600 pkt_dev->vlan_id = value; /* turn on VLAN */
1601
1602 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001603 printk(KERN_DEBUG "pktgen: VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001604
1605 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001606 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001607
1608 pkt_dev->nr_labels = 0; /* turn off MPLS */
1609 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1610 } else {
1611 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1612 pkt_dev->svlan_id = 0xffff;
1613
1614 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001615 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001616 }
1617 return count;
1618 }
1619
1620 if (!strcmp(name, "vlan_p")) {
1621 len = num_arg(&user_buffer[i], 1, &value);
1622 if (len < 0) {
1623 return len;
1624 }
1625 i += len;
1626 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1627 pkt_dev->vlan_p = value;
1628 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1629 } else {
1630 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1631 }
1632 return count;
1633 }
1634
1635 if (!strcmp(name, "vlan_cfi")) {
1636 len = num_arg(&user_buffer[i], 1, &value);
1637 if (len < 0) {
1638 return len;
1639 }
1640 i += len;
1641 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1642 pkt_dev->vlan_cfi = value;
1643 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1644 } else {
1645 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1646 }
1647 return count;
1648 }
1649
1650 if (!strcmp(name, "svlan_id")) {
1651 len = num_arg(&user_buffer[i], 4, &value);
1652 if (len < 0) {
1653 return len;
1654 }
1655 i += len;
1656 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1657 pkt_dev->svlan_id = value; /* turn on SVLAN */
1658
1659 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001660 printk(KERN_DEBUG "pktgen: SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001661
1662 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001663 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001664
1665 pkt_dev->nr_labels = 0; /* turn off MPLS */
1666 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1667 } else {
1668 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1669 pkt_dev->svlan_id = 0xffff;
1670
1671 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001672 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001673 }
1674 return count;
1675 }
1676
1677 if (!strcmp(name, "svlan_p")) {
1678 len = num_arg(&user_buffer[i], 1, &value);
1679 if (len < 0) {
1680 return len;
1681 }
1682 i += len;
1683 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1684 pkt_dev->svlan_p = value;
1685 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1686 } else {
1687 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1688 }
1689 return count;
1690 }
1691
1692 if (!strcmp(name, "svlan_cfi")) {
1693 len = num_arg(&user_buffer[i], 1, &value);
1694 if (len < 0) {
1695 return len;
1696 }
1697 i += len;
1698 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1699 pkt_dev->svlan_cfi = value;
1700 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1701 } else {
1702 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1703 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001704 return count;
1705 }
1706
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001707 if (!strcmp(name, "tos")) {
1708 __u32 tmp_value = 0;
1709 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1710 if (len < 0) {
1711 return len;
1712 }
1713 i += len;
1714 if (len == 2) {
1715 pkt_dev->tos = tmp_value;
1716 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1717 } else {
1718 sprintf(pg_result, "ERROR: tos must be 00-ff");
1719 }
1720 return count;
1721 }
1722
1723 if (!strcmp(name, "traffic_class")) {
1724 __u32 tmp_value = 0;
1725 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1726 if (len < 0) {
1727 return len;
1728 }
1729 i += len;
1730 if (len == 2) {
1731 pkt_dev->traffic_class = tmp_value;
1732 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1733 } else {
1734 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1735 }
1736 return count;
1737 }
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1740 return -EINVAL;
1741}
1742
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001743static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001745 return single_open(file, pktgen_if_show, PDE(inode)->data);
1746}
1747
Arjan van de Ven9a321442007-02-12 00:55:35 -08001748static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001749 .owner = THIS_MODULE,
1750 .open = pktgen_if_open,
1751 .read = seq_read,
1752 .llseek = seq_lseek,
1753 .write = pktgen_if_write,
1754 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001755};
1756
1757static int pktgen_thread_show(struct seq_file *seq, void *v)
1758{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001759 struct pktgen_thread *t = seq->private;
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001760 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001762 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Luiz Capitulino222f1802006-03-20 22:16:13 -08001764 seq_printf(seq, "Running: ");
1765
1766 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001767 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001768 if (pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001769 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Luiz Capitulino222f1802006-03-20 22:16:13 -08001771 seq_printf(seq, "\nStopped: ");
1772
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001773 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001774 if (!pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001775 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001778 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001780 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Luiz Capitulino222f1802006-03-20 22:16:13 -08001782 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001787static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001788 const char __user * user_buffer,
1789 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001791 struct seq_file *seq = (struct seq_file *)file->private_data;
1792 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 int i = 0, max, len, ret;
1794 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001795 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001798 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return -EINVAL;
1800 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001803 len = count_trail_chars(&user_buffer[i], max);
1804 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001805 return len;
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 /* Read variable name */
1810
1811 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001812 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001813 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 memset(name, 0, sizeof(name));
1816 if (copy_from_user(name, &user_buffer[i], len))
1817 return -EFAULT;
1818 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001819
Luiz Capitulino222f1802006-03-20 22:16:13 -08001820 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001822 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001823 return len;
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 i += len;
1826
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001827 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001828 printk(KERN_DEBUG "pktgen: t=%s, count=%lu\n",
1829 name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Luiz Capitulino222f1802006-03-20 22:16:13 -08001831 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07001832 printk(KERN_ERR "pktgen: ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 ret = -EINVAL;
1834 goto out;
1835 }
1836
1837 pg_result = &(t->result[0]);
1838
Luiz Capitulino222f1802006-03-20 22:16:13 -08001839 if (!strcmp(name, "add_device")) {
1840 char f[32];
1841 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001843 if (len < 0) {
1844 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 goto out;
1846 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001847 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return -EFAULT;
1849 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001850 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001851 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001852 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001853 ret = count;
1854 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 goto out;
1856 }
1857
Luiz Capitulino222f1802006-03-20 22:16:13 -08001858 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001859 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001860 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001861 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001862 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001864 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 goto out;
1866 }
1867
Luiz Capitulino222f1802006-03-20 22:16:13 -08001868 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001869 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001870 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 goto out;
1872 }
1873
1874 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001875out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return ret;
1877}
1878
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001879static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001881 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Arjan van de Ven9a321442007-02-12 00:55:35 -08001884static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001885 .owner = THIS_MODULE,
1886 .open = pktgen_thread_open,
1887 .read = seq_read,
1888 .llseek = seq_lseek,
1889 .write = pktgen_thread_write,
1890 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001891};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001894static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 struct pktgen_thread *t;
1897 struct pktgen_dev *pkt_dev = NULL;
1898
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001899 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 pkt_dev = pktgen_find_dev(t, ifname);
1901 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001902 if (remove) {
1903 if_lock(t);
1904 pkt_dev->removal_mark = 1;
1905 t->control |= T_REMDEV;
1906 if_unlock(t);
1907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 break;
1909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001911 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001914/*
1915 * mark a device for removal
1916 */
Stephen Hemminger39df2322007-03-04 16:11:51 -08001917static void pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
1919 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001920 const int max_tries = 10, msec_per_try = 125;
1921 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001922
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001923 mutex_lock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001924 pr_debug("pktgen: pktgen_mark_device marking %s for removal\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001925
Luiz Capitulino222f1802006-03-20 22:16:13 -08001926 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001927
1928 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001929 if (pkt_dev == NULL)
1930 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001931
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001932 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001933 pr_debug("pktgen: pktgen_mark_device waiting for %s "
1934 "to disappear....\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001935 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001936 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001937
1938 if (++i >= max_tries) {
David S. Miller25a8b252007-07-30 16:11:48 -07001939 printk(KERN_ERR "pktgen_mark_device: timed out after "
1940 "waiting %d msec for device %s to be removed\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001941 msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001942 break;
1943 }
1944
1945 }
1946
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001947 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001948}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001949
Stephen Hemminger39df2322007-03-04 16:11:51 -08001950static void pktgen_change_name(struct net_device *dev)
1951{
1952 struct pktgen_thread *t;
1953
1954 list_for_each_entry(t, &pktgen_threads, th_list) {
1955 struct pktgen_dev *pkt_dev;
1956
1957 list_for_each_entry(pkt_dev, &t->if_list, list) {
1958 if (pkt_dev->odev != dev)
1959 continue;
1960
1961 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
1962
1963 pkt_dev->entry = create_proc_entry(dev->name, 0600,
1964 pg_proc_dir);
1965 if (!pkt_dev->entry)
1966 printk(KERN_ERR "pktgen: can't move proc "
1967 " entry for '%s'\n", dev->name);
1968 break;
1969 }
1970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
Luiz Capitulino222f1802006-03-20 22:16:13 -08001973static int pktgen_device_event(struct notifier_block *unused,
1974 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
Stephen Hemminger39df2322007-03-04 16:11:51 -08001976 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001978 if (dev->nd_net != &init_net)
1979 return NOTIFY_DONE;
1980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 /* It is OK that we do not hold the group lock right now,
1982 * as we run under the RTNL lock.
1983 */
1984
1985 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001986 case NETDEV_CHANGENAME:
1987 pktgen_change_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001991 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 return NOTIFY_DONE;
1996}
1997
1998/* Associate pktgen_dev with a device. */
1999
Stephen Hemminger39df2322007-03-04 16:11:51 -08002000static int pktgen_setup_dev(struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08002003 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (pkt_dev->odev) {
2007 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002008 pkt_dev->odev = NULL;
2009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Eric W. Biederman881d9662007-09-17 11:56:21 -07002011 odev = dev_get_by_name(&init_net, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 if (!odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07002013 printk(KERN_ERR "pktgen: no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002014 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if (odev->type != ARPHRD_ETHER) {
David S. Miller25a8b252007-07-30 16:11:48 -07002018 printk(KERN_ERR "pktgen: not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002019 err = -EINVAL;
2020 } else if (!netif_running(odev)) {
David S. Miller25a8b252007-07-30 16:11:48 -07002021 printk(KERN_ERR "pktgen: device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002022 err = -ENETDOWN;
2023 } else {
2024 pkt_dev->odev = odev;
2025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002029 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030}
2031
2032/* Read pkt_dev from the interface and set up internal pktgen_dev
2033 * structure to have the right information to create/send packets
2034 */
2035static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2036{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002037 if (!pkt_dev->odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07002038 printk(KERN_ERR "pktgen: ERROR: pkt_dev->odev == NULL in "
2039 "setup_inject.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002040 sprintf(pkt_dev->result,
2041 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2042 return;
2043 }
2044
2045 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002047 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002048 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Luiz Capitulino222f1802006-03-20 22:16:13 -08002050 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002051 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Luiz Capitulino222f1802006-03-20 22:16:13 -08002053 /* Set up pkt size */
2054 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2055
2056 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002058 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 * gets exported
2060 */
2061
2062#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08002063 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 struct inet6_dev *idev;
2065
Luiz Capitulino222f1802006-03-20 22:16:13 -08002066 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2067 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 set = 1;
2069 break;
2070 }
2071
Luiz Capitulino222f1802006-03-20 22:16:13 -08002072 if (!set) {
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 /*
2075 * Use linklevel address if unconfigured.
2076 *
2077 * use ipv6_get_lladdr if/when it's get exported
2078 */
2079
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002080 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if ((idev = __in6_dev_get(pkt_dev->odev)) != NULL) {
2082 struct inet6_ifaddr *ifp;
2083
2084 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002085 for (ifp = idev->addr_list; ifp;
2086 ifp = ifp->if_next) {
2087 if (ifp->scope == IFA_LINK
2088 && !(ifp->
2089 flags & IFA_F_TENTATIVE)) {
2090 ipv6_addr_copy(&pkt_dev->
2091 cur_in6_saddr,
2092 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 err = 0;
2094 break;
2095 }
2096 }
2097 read_unlock_bh(&idev->lock);
2098 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002099 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002100 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07002101 printk(KERN_ERR "pktgen: ERROR: IPv6 link "
2102 "address not availble.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
2104#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002105 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 pkt_dev->saddr_min = 0;
2107 pkt_dev->saddr_max = 0;
2108 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002109
2110 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002113 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (in_dev) {
2115 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002116 pkt_dev->saddr_min =
2117 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 pkt_dev->saddr_max = pkt_dev->saddr_min;
2119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
2121 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002122 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2124 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2125 }
2126
2127 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2128 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2129 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002130 /* Initialize current values. */
2131 pkt_dev->cur_dst_mac_offset = 0;
2132 pkt_dev->cur_src_mac_offset = 0;
2133 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2134 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2135 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2136 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 pkt_dev->nflows = 0;
2138}
2139
2140static void spin(struct pktgen_dev *pkt_dev, __u64 spin_until_us)
2141{
2142 __u64 start;
2143 __u64 now;
2144
2145 start = now = getCurUs();
2146 printk(KERN_INFO "sleeping for %d\n", (int)(spin_until_us - now));
2147 while (now < spin_until_us) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -07002148 /* TODO: optimize sleeping behavior */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002149 if (spin_until_us - now > jiffies_to_usecs(1) + 1)
Nishanth Aravamudan121caf52005-09-12 14:15:34 -07002150 schedule_timeout_interruptible(1);
2151 else if (spin_until_us - now > 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 if (!pkt_dev->running)
2153 return;
2154 if (need_resched())
2155 schedule();
2156 }
2157
2158 now = getCurUs();
2159 }
2160
2161 pkt_dev->idle_acc += now - start;
2162}
2163
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002164static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2165{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002166 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002167 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2168 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2169 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2170}
2171
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002172static inline int f_seen(struct pktgen_dev *pkt_dev, int flow)
2173{
2174
2175 if (pkt_dev->flows[flow].flags & F_INIT)
2176 return 1;
2177 else
2178 return 0;
2179}
2180
2181static inline int f_pick(struct pktgen_dev *pkt_dev)
2182{
2183 int flow = pkt_dev->curfl;
2184
2185 if (pkt_dev->flags & F_FLOW_SEQ) {
2186 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2187 /* reset time */
2188 pkt_dev->flows[flow].count = 0;
2189 pkt_dev->curfl += 1;
2190 if (pkt_dev->curfl >= pkt_dev->cflows)
2191 pkt_dev->curfl = 0; /*reset */
2192 }
2193 } else {
2194 flow = random32() % pkt_dev->cflows;
2195
2196 if (pkt_dev->flows[flow].count > pkt_dev->lflow)
2197 pkt_dev->flows[flow].count = 0;
2198 }
2199
2200 return pkt_dev->curfl;
2201}
2202
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002203
2204#ifdef CONFIG_XFRM
2205/* If there was already an IPSEC SA, we keep it as is, else
2206 * we go look for it ...
2207*/
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002208static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002209{
2210 struct xfrm_state *x = pkt_dev->flows[flow].x;
2211 if (!x) {
2212 /*slow path: we dont already have xfrm_state*/
2213 x = xfrm_stateonly_find((xfrm_address_t *)&pkt_dev->cur_daddr,
2214 (xfrm_address_t *)&pkt_dev->cur_saddr,
2215 AF_INET,
2216 pkt_dev->ipsmode,
2217 pkt_dev->ipsproto, 0);
2218 if (x) {
2219 pkt_dev->flows[flow].x = x;
2220 set_pkt_overhead(pkt_dev);
2221 pkt_dev->pkt_overhead+=x->props.header_len;
2222 }
2223
2224 }
2225}
2226#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227/* Increment/randomize headers according to flags and current values
2228 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2229 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002230static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2231{
2232 __u32 imn;
2233 __u32 imx;
2234 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002236 if (pkt_dev->cflows)
2237 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002240 if (pkt_dev->src_mac_count > 1) {
2241 __u32 mc;
2242 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Luiz Capitulino222f1802006-03-20 22:16:13 -08002244 if (pkt_dev->flags & F_MACSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002245 mc = random32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002246 else {
2247 mc = pkt_dev->cur_src_mac_offset++;
2248 if (pkt_dev->cur_src_mac_offset >
2249 pkt_dev->src_mac_count)
2250 pkt_dev->cur_src_mac_offset = 0;
2251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Luiz Capitulino222f1802006-03-20 22:16:13 -08002253 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2254 pkt_dev->hh[11] = tmp;
2255 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2256 pkt_dev->hh[10] = tmp;
2257 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2258 pkt_dev->hh[9] = tmp;
2259 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2260 pkt_dev->hh[8] = tmp;
2261 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2262 pkt_dev->hh[7] = tmp;
2263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Luiz Capitulino222f1802006-03-20 22:16:13 -08002265 /* Deal with Destination MAC */
2266 if (pkt_dev->dst_mac_count > 1) {
2267 __u32 mc;
2268 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Luiz Capitulino222f1802006-03-20 22:16:13 -08002270 if (pkt_dev->flags & F_MACDST_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002271 mc = random32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Luiz Capitulino222f1802006-03-20 22:16:13 -08002273 else {
2274 mc = pkt_dev->cur_dst_mac_offset++;
2275 if (pkt_dev->cur_dst_mac_offset >
2276 pkt_dev->dst_mac_count) {
2277 pkt_dev->cur_dst_mac_offset = 0;
2278 }
2279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Luiz Capitulino222f1802006-03-20 22:16:13 -08002281 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2282 pkt_dev->hh[5] = tmp;
2283 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2284 pkt_dev->hh[4] = tmp;
2285 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2286 pkt_dev->hh[3] = tmp;
2287 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2288 pkt_dev->hh[2] = tmp;
2289 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2290 pkt_dev->hh[1] = tmp;
2291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002293 if (pkt_dev->flags & F_MPLS_RND) {
2294 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002295 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002296 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2297 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002298 ((__force __be32)random32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002299 htonl(0x000fffff));
2300 }
2301
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002302 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002303 pkt_dev->vlan_id = random32() & (4096-1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002304 }
2305
2306 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002307 pkt_dev->svlan_id = random32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002308 }
2309
Luiz Capitulino222f1802006-03-20 22:16:13 -08002310 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2311 if (pkt_dev->flags & F_UDPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002312 pkt_dev->cur_udp_src = random32() %
2313 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2314 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Luiz Capitulino222f1802006-03-20 22:16:13 -08002316 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 pkt_dev->cur_udp_src++;
2318 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2319 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002320 }
2321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Luiz Capitulino222f1802006-03-20 22:16:13 -08002323 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2324 if (pkt_dev->flags & F_UDPDST_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002325 pkt_dev->cur_udp_dst = random32() %
2326 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2327 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002328 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002330 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002332 }
2333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 if (!(pkt_dev->flags & F_IPV6)) {
2336
Luiz Capitulino222f1802006-03-20 22:16:13 -08002337 if ((imn = ntohl(pkt_dev->saddr_min)) < (imx =
2338 ntohl(pkt_dev->
2339 saddr_max))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002341 if (pkt_dev->flags & F_IPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002342 t = random32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 else {
2344 t = ntohl(pkt_dev->cur_saddr);
2345 t++;
2346 if (t > imx) {
2347 t = imn;
2348 }
2349 }
2350 pkt_dev->cur_saddr = htonl(t);
2351 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002352
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002353 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2355 } else {
Al Viro252e3342006-11-14 20:48:11 -08002356 imn = ntohl(pkt_dev->daddr_min);
2357 imx = ntohl(pkt_dev->daddr_max);
2358 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002360 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if (pkt_dev->flags & F_IPDST_RND) {
2362
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002363 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002364 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Al Viro252e3342006-11-14 20:48:11 -08002366 while (LOOPBACK(s) || MULTICAST(s)
2367 || BADCLASS(s) || ZERONET(s)
2368 || LOCAL_MCAST(s)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002369 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002370 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 }
Al Viro252e3342006-11-14 20:48:11 -08002372 pkt_dev->cur_daddr = s;
2373 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 t = ntohl(pkt_dev->cur_daddr);
2375 t++;
2376 if (t > imx) {
2377 t = imn;
2378 }
2379 pkt_dev->cur_daddr = htonl(t);
2380 }
2381 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002382 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002383 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002384 pkt_dev->flows[flow].cur_daddr =
2385 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002386#ifdef CONFIG_XFRM
2387 if (pkt_dev->flags & F_IPSEC_ON)
2388 get_ipsec_sa(pkt_dev, flow);
2389#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 pkt_dev->nflows++;
2391 }
2392 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002393 } else { /* IPV6 * */
2394
2395 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2396 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2397 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2398 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 else {
2400 int i;
2401
2402 /* Only random destinations yet */
2403
Luiz Capitulino222f1802006-03-20 22:16:13 -08002404 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002406 (((__force __be32)random32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002407 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2408 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
2412
Luiz Capitulino222f1802006-03-20 22:16:13 -08002413 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2414 __u32 t;
2415 if (pkt_dev->flags & F_TXSIZE_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002416 t = random32() %
2417 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2418 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002419 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002421 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002423 }
2424 pkt_dev->cur_pkt_size = t;
2425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Robert Olsson45b270f2007-08-28 15:45:55 -07002427 if (pkt_dev->queue_map_min < pkt_dev->queue_map_max) {
2428 __u16 t;
2429 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
2430 t = random32() %
2431 (pkt_dev->queue_map_max - pkt_dev->queue_map_min + 1)
2432 + pkt_dev->queue_map_min;
2433 } else {
2434 t = pkt_dev->cur_queue_map + 1;
2435 if (t > pkt_dev->queue_map_max)
2436 t = pkt_dev->queue_map_min;
2437 }
2438 pkt_dev->cur_queue_map = t;
2439 }
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 pkt_dev->flows[flow].count++;
2442}
2443
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002444
2445#ifdef CONFIG_XFRM
2446static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2447{
2448 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2449 int err = 0;
2450 struct iphdr *iph;
2451
2452 if (!x)
2453 return 0;
2454 /* XXX: we dont support tunnel mode for now until
2455 * we resolve the dst issue */
2456 if (x->props.mode != XFRM_MODE_TRANSPORT)
2457 return 0;
2458
2459 spin_lock(&x->lock);
2460 iph = ip_hdr(skb);
2461
2462 err = x->mode->output(x, skb);
2463 if (err)
2464 goto error;
2465 err = x->type->output(x, skb);
2466 if (err)
2467 goto error;
2468
2469 x->curlft.bytes +=skb->len;
2470 x->curlft.packets++;
2471 spin_unlock(&x->lock);
2472
2473error:
2474 spin_unlock(&x->lock);
2475 return err;
2476}
2477
2478static inline void free_SAs(struct pktgen_dev *pkt_dev)
2479{
2480 if (pkt_dev->cflows) {
2481 /* let go of the SAs if we have them */
2482 int i = 0;
2483 for (; i < pkt_dev->nflows; i++){
2484 struct xfrm_state *x = pkt_dev->flows[i].x;
2485 if (x) {
2486 xfrm_state_put(x);
2487 pkt_dev->flows[i].x = NULL;
2488 }
2489 }
2490 }
2491}
2492
2493static inline int process_ipsec(struct pktgen_dev *pkt_dev,
2494 struct sk_buff *skb, __be16 protocol)
2495{
2496 if (pkt_dev->flags & F_IPSEC_ON) {
2497 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2498 int nhead = 0;
2499 if (x) {
2500 int ret;
2501 __u8 *eth;
2502 nhead = x->props.header_len - skb_headroom(skb);
2503 if (nhead >0) {
2504 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2505 if (ret < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -07002506 printk(KERN_ERR "Error expanding "
2507 "ipsec packet %d\n",ret);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002508 return 0;
2509 }
2510 }
2511
2512 /* ipsec is not expecting ll header */
2513 skb_pull(skb, ETH_HLEN);
2514 ret = pktgen_output_ipsec(skb, pkt_dev);
2515 if (ret) {
David S. Miller25a8b252007-07-30 16:11:48 -07002516 printk(KERN_ERR "Error creating ipsec "
2517 "packet %d\n",ret);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002518 kfree_skb(skb);
2519 return 0;
2520 }
2521 /* restore ll */
2522 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2523 memcpy(eth, pkt_dev->hh, 12);
2524 *(u16 *) & eth[12] = protocol;
2525 }
2526 }
2527 return 1;
2528}
2529#endif
2530
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002531static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2532{
2533 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002534 for (i = 0; i < pkt_dev->nr_labels; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002535 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
2536 }
2537 mpls--;
2538 *mpls |= MPLS_STACK_BOTTOM;
2539}
2540
Al Viro0f37c602006-11-03 03:49:56 -08002541static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2542 unsigned int prio)
2543{
2544 return htons(id | (cfi << 12) | (prio << 13));
2545}
2546
Luiz Capitulino222f1802006-03-20 22:16:13 -08002547static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2548 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
2550 struct sk_buff *skb = NULL;
2551 __u8 *eth;
2552 struct udphdr *udph;
2553 int datalen, iplen;
2554 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002555 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002556 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002557 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002558 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2559 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2560 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2561 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
2562
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002563
2564 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002565 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002566
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002567 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002568 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002569
Robert Olsson64053be2005-06-26 15:27:10 -07002570 /* Update any of the values, used when we're incrementing various
2571 * fields.
2572 */
2573 mod_cur_headers(pkt_dev);
2574
David S. Miller7ac54592006-01-18 14:19:10 -08002575 datalen = (odev->hard_header_len + 16) & ~0xf;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002576 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + datalen +
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002577 pkt_dev->pkt_overhead, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 if (!skb) {
2579 sprintf(pkt_dev->result, "No memory");
2580 return NULL;
2581 }
2582
David S. Miller7ac54592006-01-18 14:19:10 -08002583 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 /* Reserve for ethernet and IP header */
2586 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002587 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2588 if (pkt_dev->nr_labels)
2589 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002590
2591 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002592 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002593 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002594 *svlan_tci = build_tci(pkt_dev->svlan_id,
2595 pkt_dev->svlan_cfi,
2596 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002597 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002598 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002599 }
2600 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002601 *vlan_tci = build_tci(pkt_dev->vlan_id,
2602 pkt_dev->vlan_cfi,
2603 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002604 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002605 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002606 }
2607
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002608 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002609 skb->transport_header = skb->network_header + sizeof(struct iphdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002610 skb_put(skb, sizeof(struct iphdr) + sizeof(struct udphdr));
Robert Olsson45b270f2007-08-28 15:45:55 -07002611 skb->queue_mapping = pkt_dev->cur_queue_map;
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002612
2613 iph = ip_hdr(skb);
2614 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002617 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002619 /* Eth + IPh + UDPh + mpls */
2620 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002621 pkt_dev->pkt_overhead;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002622 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 udph->source = htons(pkt_dev->cur_udp_src);
2626 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002627 udph->len = htons(datalen + 8); /* DATA + udphdr */
2628 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630 iph->ihl = 5;
2631 iph->version = 4;
2632 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002633 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002634 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 iph->saddr = pkt_dev->cur_saddr;
2636 iph->daddr = pkt_dev->cur_daddr;
2637 iph->frag_off = 0;
2638 iplen = 20 + 8 + datalen;
2639 iph->tot_len = htons(iplen);
2640 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002641 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002642 skb->protocol = protocol;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002643 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002644 pkt_dev->pkt_overhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 skb->dev = odev;
2646 skb->pkt_type = PACKET_HOST;
2647
Luiz Capitulino222f1802006-03-20 22:16:13 -08002648 if (pkt_dev->nfrags <= 0)
2649 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 else {
2651 int frags = pkt_dev->nfrags;
2652 int i;
2653
Luiz Capitulino222f1802006-03-20 22:16:13 -08002654 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 if (frags > MAX_SKB_FRAGS)
2657 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002658 if (datalen > frags * PAGE_SIZE) {
2659 skb_put(skb, datalen - frags * PAGE_SIZE);
2660 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 }
2662
2663 i = 0;
2664 while (datalen > 0) {
2665 struct page *page = alloc_pages(GFP_KERNEL, 0);
2666 skb_shinfo(skb)->frags[i].page = page;
2667 skb_shinfo(skb)->frags[i].page_offset = 0;
2668 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002669 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 datalen -= skb_shinfo(skb)->frags[i].size;
2671 skb->len += skb_shinfo(skb)->frags[i].size;
2672 skb->data_len += skb_shinfo(skb)->frags[i].size;
2673 i++;
2674 skb_shinfo(skb)->nr_frags = i;
2675 }
2676
2677 while (i < frags) {
2678 int rem;
2679
2680 if (i == 0)
2681 break;
2682
2683 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2684 if (rem == 0)
2685 break;
2686
2687 skb_shinfo(skb)->frags[i - 1].size -= rem;
2688
Luiz Capitulino222f1802006-03-20 22:16:13 -08002689 skb_shinfo(skb)->frags[i] =
2690 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002692 skb_shinfo(skb)->frags[i].page =
2693 skb_shinfo(skb)->frags[i - 1].page;
2694 skb_shinfo(skb)->frags[i].page_offset +=
2695 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 skb_shinfo(skb)->frags[i].size = rem;
2697 i++;
2698 skb_shinfo(skb)->nr_frags = i;
2699 }
2700 }
2701
Luiz Capitulino222f1802006-03-20 22:16:13 -08002702 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Luiz Capitulino222f1802006-03-20 22:16:13 -08002704 if (pgh) {
2705 struct timeval timestamp;
2706
2707 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2708 pgh->seq_num = htonl(pkt_dev->seq_num);
2709
2710 do_gettimeofday(&timestamp);
2711 pgh->tv_sec = htonl(timestamp.tv_sec);
2712 pgh->tv_usec = htonl(timestamp.tv_usec);
2713 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002714
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002715#ifdef CONFIG_XFRM
2716 if (!process_ipsec(pkt_dev, skb, protocol))
2717 return NULL;
2718#endif
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return skb;
2721}
2722
2723/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002724 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2726 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002727 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 * Should be candidate for net/ipv4/utils.c
2729 * --ro
2730 */
2731
Luiz Capitulino222f1802006-03-20 22:16:13 -08002732static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
2734 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002735 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 unsigned long u;
2737 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002738 unsigned int prefixlen = 0;
2739 unsigned int suffixlen = 0;
Al Viro252e3342006-11-14 20:48:11 -08002740 __be32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Luiz Capitulino222f1802006-03-20 22:16:13 -08002742 for (i = 0; i < 16; i++)
2743 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
2745 for (;;) {
2746 if (*s == ':') {
2747 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002748 if (s[1] == ':') { /* Found "::", skip to part 2 */
2749 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 len++;
2751 break;
2752 }
2753 s++;
2754 }
2755 {
2756 char *tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002757 u = simple_strtoul(s, &tmp, 16);
2758 i = tmp - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
2760
Luiz Capitulino222f1802006-03-20 22:16:13 -08002761 if (!i)
2762 return 0;
2763 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
2765 /* the last 4 bytes may be written as IPv4 address */
2766
2767 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002768 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2769 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 }
2771 ip[prefixlen++] = (u >> 8);
2772 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002773 s += i;
2774 len += i;
2775 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 return len;
2777 }
2778
2779/* part 2, after "::" */
2780 for (;;) {
2781 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002782 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 break;
2784 s++;
2785 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002786 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 break;
2788 {
2789 char *tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002790 u = simple_strtol(s, &tmp, 16);
2791 i = tmp - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 }
2793 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002794 if (*s)
2795 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 break;
2797 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002798 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002800 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2801 sizeof(tmp));
2802 suffixlen += 4;
2803 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 break;
2805 }
2806 suffix[suffixlen++] = (u >> 8);
2807 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002808 s += i;
2809 len += i;
2810 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 break;
2812 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002813 for (i = 0; i < suffixlen; i++)
2814 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 return len;
2816}
2817
Luiz Capitulino222f1802006-03-20 22:16:13 -08002818static char tohex(char hexdigit)
2819{
2820 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821}
2822
Luiz Capitulino222f1802006-03-20 22:16:13 -08002823static int fmt_xlong(char *s, unsigned int i)
2824{
2825 char *bak = s;
2826 *s = tohex((i >> 12) & 0xf);
2827 if (s != bak || *s != '0')
2828 ++s;
2829 *s = tohex((i >> 8) & 0xf);
2830 if (s != bak || *s != '0')
2831 ++s;
2832 *s = tohex((i >> 4) & 0xf);
2833 if (s != bak || *s != '0')
2834 ++s;
2835 *s = tohex(i & 0xf);
2836 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
Luiz Capitulino222f1802006-03-20 22:16:13 -08002839static unsigned int fmt_ip6(char *s, const char ip[16])
2840{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 unsigned int len;
2842 unsigned int i;
2843 unsigned int temp;
2844 unsigned int compressing;
2845 int j;
2846
Luiz Capitulino222f1802006-03-20 22:16:13 -08002847 len = 0;
2848 compressing = 0;
2849 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002852 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2853 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2854 temp = strlen(s);
2855 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 }
2857#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002858 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2859 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 if (temp == 0) {
2861 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002862 compressing = 1;
2863 if (j == 0) {
2864 *s++ = ':';
2865 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867 }
2868 } else {
2869 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002870 compressing = 0;
2871 *s++ = ':';
2872 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002874 i = fmt_xlong(s, temp);
2875 len += i;
2876 s += i;
2877 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 *s++ = ':';
2879 ++len;
2880 }
2881 }
2882 }
2883 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002884 *s++ = ':';
2885 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002887 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 return len;
2889}
2890
Luiz Capitulino222f1802006-03-20 22:16:13 -08002891static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2892 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
2894 struct sk_buff *skb = NULL;
2895 __u8 *eth;
2896 struct udphdr *udph;
2897 int datalen;
2898 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002899 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002900 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002901 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002902 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2903 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2904 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2905 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002906
2907 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002908 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002909
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002910 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002911 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002912
Robert Olsson64053be2005-06-26 15:27:10 -07002913 /* Update any of the values, used when we're incrementing various
2914 * fields.
2915 */
2916 mod_cur_headers(pkt_dev);
2917
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002918 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + 16 +
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002919 pkt_dev->pkt_overhead, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 if (!skb) {
2921 sprintf(pkt_dev->result, "No memory");
2922 return NULL;
2923 }
2924
2925 skb_reserve(skb, 16);
2926
2927 /* Reserve for ethernet and IP header */
2928 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002929 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2930 if (pkt_dev->nr_labels)
2931 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002932
2933 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002934 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002935 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002936 *svlan_tci = build_tci(pkt_dev->svlan_id,
2937 pkt_dev->svlan_cfi,
2938 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002939 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002940 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002941 }
2942 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002943 *vlan_tci = build_tci(pkt_dev->vlan_id,
2944 pkt_dev->vlan_cfi,
2945 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002946 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002947 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002948 }
2949
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002950 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002951 skb->transport_header = skb->network_header + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002952 skb_put(skb, sizeof(struct ipv6hdr) + sizeof(struct udphdr));
Robert Olsson45b270f2007-08-28 15:45:55 -07002953 skb->queue_mapping = pkt_dev->cur_queue_map;
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002954
2955 iph = ipv6_hdr(skb);
2956 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002959 *(__be16 *) & eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002960
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002961 /* Eth + IPh + UDPh + mpls */
2962 datalen = pkt_dev->cur_pkt_size - 14 -
2963 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002964 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Luiz Capitulino222f1802006-03-20 22:16:13 -08002966 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 datalen = sizeof(struct pktgen_hdr);
2968 if (net_ratelimit())
Luiz Capitulino222f1802006-03-20 22:16:13 -08002969 printk(KERN_INFO "pktgen: increased datalen to %d\n",
2970 datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 }
2972
2973 udph->source = htons(pkt_dev->cur_udp_src);
2974 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002975 udph->len = htons(datalen + sizeof(struct udphdr));
2976 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002978 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002980 if (pkt_dev->traffic_class) {
2981 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002982 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002983 }
2984
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 iph->hop_limit = 32;
2986
2987 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
2988 iph->nexthdr = IPPROTO_UDP;
2989
2990 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
2991 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
2992
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002993 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002994 pkt_dev->pkt_overhead);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002995 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 skb->dev = odev;
2997 skb->pkt_type = PACKET_HOST;
2998
Luiz Capitulino222f1802006-03-20 22:16:13 -08002999 if (pkt_dev->nfrags <= 0)
3000 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 else {
3002 int frags = pkt_dev->nfrags;
3003 int i;
3004
Luiz Capitulino222f1802006-03-20 22:16:13 -08003005 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 if (frags > MAX_SKB_FRAGS)
3008 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003009 if (datalen > frags * PAGE_SIZE) {
3010 skb_put(skb, datalen - frags * PAGE_SIZE);
3011 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 }
3013
3014 i = 0;
3015 while (datalen > 0) {
3016 struct page *page = alloc_pages(GFP_KERNEL, 0);
3017 skb_shinfo(skb)->frags[i].page = page;
3018 skb_shinfo(skb)->frags[i].page_offset = 0;
3019 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08003020 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 datalen -= skb_shinfo(skb)->frags[i].size;
3022 skb->len += skb_shinfo(skb)->frags[i].size;
3023 skb->data_len += skb_shinfo(skb)->frags[i].size;
3024 i++;
3025 skb_shinfo(skb)->nr_frags = i;
3026 }
3027
3028 while (i < frags) {
3029 int rem;
3030
3031 if (i == 0)
3032 break;
3033
3034 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
3035 if (rem == 0)
3036 break;
3037
3038 skb_shinfo(skb)->frags[i - 1].size -= rem;
3039
Luiz Capitulino222f1802006-03-20 22:16:13 -08003040 skb_shinfo(skb)->frags[i] =
3041 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003043 skb_shinfo(skb)->frags[i].page =
3044 skb_shinfo(skb)->frags[i - 1].page;
3045 skb_shinfo(skb)->frags[i].page_offset +=
3046 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 skb_shinfo(skb)->frags[i].size = rem;
3048 i++;
3049 skb_shinfo(skb)->nr_frags = i;
3050 }
3051 }
3052
Luiz Capitulino222f1802006-03-20 22:16:13 -08003053 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 /* should we update cloned packets too ? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003055 if (pgh) {
3056 struct timeval timestamp;
3057
3058 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
3059 pgh->seq_num = htonl(pkt_dev->seq_num);
3060
3061 do_gettimeofday(&timestamp);
3062 pgh->tv_sec = htonl(timestamp.tv_sec);
3063 pgh->tv_usec = htonl(timestamp.tv_usec);
3064 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003065 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 return skb;
3068}
3069
Luiz Capitulino222f1802006-03-20 22:16:13 -08003070static inline struct sk_buff *fill_packet(struct net_device *odev,
3071 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003073 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 return fill_packet_ipv6(odev, pkt_dev);
3075 else
3076 return fill_packet_ipv4(odev, pkt_dev);
3077}
3078
Luiz Capitulino222f1802006-03-20 22:16:13 -08003079static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003081 pkt_dev->seq_num = 1;
3082 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003084 pkt_dev->tx_bytes = 0;
3085 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
3087
3088/* Set up structure for sending pkts, clear counters */
3089
3090static void pktgen_run(struct pktgen_thread *t)
3091{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003092 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 int started = 0;
3094
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003095 pr_debug("pktgen: entering pktgen_run. %p\n", t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003098 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
3100 /*
3101 * setup odev and create initial packet.
3102 */
3103 pktgen_setup_inject(pkt_dev);
3104
Luiz Capitulino222f1802006-03-20 22:16:13 -08003105 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003107 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 pkt_dev->skb = NULL;
3109 pkt_dev->started_at = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003110 pkt_dev->next_tx_us = getCurUs(); /* Transmit immediately */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 pkt_dev->next_tx_ns = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003112 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 strcpy(pkt_dev->result, "Starting");
3115 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003116 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 strcpy(pkt_dev->result, "Error starting");
3118 }
3119 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003120 if (started)
3121 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
3123
3124static void pktgen_stop_all_threads_ifs(void)
3125{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003126 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003128 pr_debug("pktgen: entering pktgen_stop_all_threads_ifs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003130 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003131
3132 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003133 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003134
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003135 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136}
3137
Luiz Capitulino222f1802006-03-20 22:16:13 -08003138static int thread_is_running(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003140 struct pktgen_dev *pkt_dev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003141 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003143 list_for_each_entry(pkt_dev, &t->if_list, list)
3144 if (pkt_dev->running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 res = 1;
3146 break;
3147 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003148 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149}
3150
Luiz Capitulino222f1802006-03-20 22:16:13 -08003151static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003153 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Luiz Capitulino222f1802006-03-20 22:16:13 -08003155 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Luiz Capitulino222f1802006-03-20 22:16:13 -08003157 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Luiz Capitulino222f1802006-03-20 22:16:13 -08003159 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
Luiz Capitulino222f1802006-03-20 22:16:13 -08003161 if (signal_pending(current))
3162 goto signal;
3163 if_lock(t);
3164 }
3165 if_unlock(t);
3166 return 1;
3167signal:
3168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169}
3170
3171static int pktgen_wait_all_threads_run(void)
3172{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003173 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003175
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003176 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003177
3178 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003180 if (sig == 0)
3181 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003183
3184 if (sig == 0)
3185 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003187
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003188 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 return sig;
3190}
3191
3192static void pktgen_run_all_threads(void)
3193{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003194 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003196 pr_debug("pktgen: entering pktgen_run_all_threads.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003198 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003200 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003202
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003203 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Luiz Capitulino222f1802006-03-20 22:16:13 -08003205 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
3206
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 pktgen_wait_all_threads_run();
3208}
3209
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3211{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003212 __u64 total_us, bps, mbps, pps, idle;
3213 char *p = pkt_dev->result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Luiz Capitulino222f1802006-03-20 22:16:13 -08003215 total_us = pkt_dev->stopped_at - pkt_dev->started_at;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Luiz Capitulino222f1802006-03-20 22:16:13 -08003217 idle = pkt_dev->idle_acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
Luiz Capitulino222f1802006-03-20 22:16:13 -08003219 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
3220 (unsigned long long)total_us,
3221 (unsigned long long)(total_us - idle),
3222 (unsigned long long)idle,
3223 (unsigned long long)pkt_dev->sofar,
3224 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Luiz Capitulino222f1802006-03-20 22:16:13 -08003226 pps = pkt_dev->sofar * USEC_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Luiz Capitulino222f1802006-03-20 22:16:13 -08003228 while ((total_us >> 32) != 0) {
3229 pps >>= 1;
3230 total_us >>= 1;
3231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
Luiz Capitulino222f1802006-03-20 22:16:13 -08003233 do_div(pps, total_us);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Luiz Capitulino222f1802006-03-20 22:16:13 -08003235 bps = pps * 8 * pkt_dev->cur_pkt_size;
3236
3237 mbps = bps;
3238 do_div(mbps, 1000000);
3239 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3240 (unsigned long long)pps,
3241 (unsigned long long)mbps,
3242 (unsigned long long)bps,
3243 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
3246/* Set stopped-at timer, remove from running list, do counters & statistics */
3247
Luiz Capitulino222f1802006-03-20 22:16:13 -08003248static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003250 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003251
Luiz Capitulino222f1802006-03-20 22:16:13 -08003252 if (!pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003253 printk(KERN_WARNING "pktgen: interface: %s is already "
3254 "stopped\n", pkt_dev->odev->name);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003255 return -EINVAL;
3256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Luiz Capitulino222f1802006-03-20 22:16:13 -08003258 pkt_dev->stopped_at = getCurUs();
3259 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003261 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Luiz Capitulino222f1802006-03-20 22:16:13 -08003263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264}
3265
Luiz Capitulino222f1802006-03-20 22:16:13 -08003266static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003268 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 if_lock(t);
3271
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003272 list_for_each_entry(pkt_dev, &t->if_list, list) {
3273 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003274 continue;
3275 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003276 best = pkt_dev;
3277 else if (pkt_dev->next_tx_us < best->next_tx_us)
3278 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 }
3280 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003281 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282}
3283
Luiz Capitulino222f1802006-03-20 22:16:13 -08003284static void pktgen_stop(struct pktgen_thread *t)
3285{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003286 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003288 pr_debug("pktgen: entering pktgen_stop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Luiz Capitulino222f1802006-03-20 22:16:13 -08003290 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003292 list_for_each_entry(pkt_dev, &t->if_list, list) {
3293 pktgen_stop_device(pkt_dev);
3294 if (pkt_dev->skb)
3295 kfree_skb(pkt_dev->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003296
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003297 pkt_dev->skb = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Luiz Capitulino222f1802006-03-20 22:16:13 -08003300 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301}
3302
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003303/*
3304 * one of our devices needs to be removed - find it
3305 * and remove it
3306 */
3307static void pktgen_rem_one_if(struct pktgen_thread *t)
3308{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003309 struct list_head *q, *n;
3310 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003311
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003312 pr_debug("pktgen: entering pktgen_rem_one_if\n");
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003313
3314 if_lock(t);
3315
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003316 list_for_each_safe(q, n, &t->if_list) {
3317 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003318
Luiz Capitulino222f1802006-03-20 22:16:13 -08003319 if (!cur->removal_mark)
3320 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003321
3322 if (cur->skb)
3323 kfree_skb(cur->skb);
3324 cur->skb = NULL;
3325
3326 pktgen_remove_device(t, cur);
3327
3328 break;
3329 }
3330
3331 if_unlock(t);
3332}
3333
Luiz Capitulino222f1802006-03-20 22:16:13 -08003334static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003336 struct list_head *q, *n;
3337 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003338
3339 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003340
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003341 pr_debug("pktgen: entering pktgen_rem_all_ifs\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003342 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003344 list_for_each_safe(q, n, &t->if_list) {
3345 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003346
3347 if (cur->skb)
3348 kfree_skb(cur->skb);
3349 cur->skb = NULL;
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 pktgen_remove_device(t, cur);
3352 }
3353
Luiz Capitulino222f1802006-03-20 22:16:13 -08003354 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355}
3356
Luiz Capitulino222f1802006-03-20 22:16:13 -08003357static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003359 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
David S. Milleree74baa2007-01-01 20:51:53 -08003361 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003363 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003365 list_del(&t->th_list);
3366
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003367 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368}
3369
3370static __inline__ void pktgen_xmit(struct pktgen_dev *pkt_dev)
3371{
3372 struct net_device *odev = NULL;
3373 __u64 idle_start = 0;
3374 int ret;
3375
3376 odev = pkt_dev->odev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 if (pkt_dev->delay_us || pkt_dev->delay_ns) {
3379 u64 now;
3380
3381 now = getCurUs();
3382 if (now < pkt_dev->next_tx_us)
3383 spin(pkt_dev, pkt_dev->next_tx_us);
3384
3385 /* This is max DELAY, this has special meaning of
3386 * "never transmit"
3387 */
3388 if (pkt_dev->delay_us == 0x7FFFFFFF) {
3389 pkt_dev->next_tx_us = getCurUs() + pkt_dev->delay_us;
3390 pkt_dev->next_tx_ns = pkt_dev->delay_ns;
3391 goto out;
3392 }
3393 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003394
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003395 if ((netif_queue_stopped(odev) ||
Robert Olsson378be2c2007-08-28 15:43:14 -07003396 (pkt_dev->skb &&
3397 netif_subqueue_stopped(odev, pkt_dev->skb->queue_mapping))) ||
3398 need_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 idle_start = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003400
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 if (!netif_running(odev)) {
3402 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003403 if (pkt_dev->skb)
3404 kfree_skb(pkt_dev->skb);
3405 pkt_dev->skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 goto out;
3407 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003408 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003410
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 pkt_dev->idle_acc += getCurUs() - idle_start;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003412
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003413 if (netif_queue_stopped(odev) ||
3414 netif_subqueue_stopped(odev, pkt_dev->skb->queue_mapping)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003415 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003417 goto out; /* Try the next interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 }
3419 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 if (pkt_dev->last_ok || !pkt_dev->skb) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003422 if ((++pkt_dev->clone_count >= pkt_dev->clone_skb)
3423 || (!pkt_dev->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 /* build a new pkt */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003425 if (pkt_dev->skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 pkt_dev->skb = fill_packet(odev, pkt_dev);
3429 if (pkt_dev->skb == NULL) {
David S. Miller25a8b252007-07-30 16:11:48 -07003430 printk(KERN_ERR "pktgen: ERROR: couldn't "
3431 "allocate skb in fill_packet.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003433 pkt_dev->clone_count--; /* back out increment, OOM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 goto out;
3435 }
3436 pkt_dev->allocated_skbs++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003437 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 }
3439 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003440
Herbert Xu932ff272006-06-09 12:20:56 -07003441 netif_tx_lock_bh(odev);
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003442 if (!netif_queue_stopped(odev) &&
3443 !netif_subqueue_stopped(odev, pkt_dev->skb->queue_mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
3445 atomic_inc(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003446 retry_now:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 ret = odev->hard_start_xmit(pkt_dev->skb, odev);
3448 if (likely(ret == NETDEV_TX_OK)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003449 pkt_dev->last_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 pkt_dev->sofar++;
3451 pkt_dev->seq_num++;
3452 pkt_dev->tx_bytes += pkt_dev->cur_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003453
3454 } else if (ret == NETDEV_TX_LOCKED
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 && (odev->features & NETIF_F_LLTX)) {
3456 cpu_relax();
3457 goto retry_now;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003458 } else { /* Retry it next time */
3459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 atomic_dec(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003461
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 if (debug && net_ratelimit())
3463 printk(KERN_INFO "pktgen: Hard xmit error\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 pkt_dev->errors++;
3466 pkt_dev->last_ok = 0;
3467 }
3468
3469 pkt_dev->next_tx_us = getCurUs();
3470 pkt_dev->next_tx_ns = 0;
3471
3472 pkt_dev->next_tx_us += pkt_dev->delay_us;
3473 pkt_dev->next_tx_ns += pkt_dev->delay_ns;
3474
3475 if (pkt_dev->next_tx_ns > 1000) {
3476 pkt_dev->next_tx_us++;
3477 pkt_dev->next_tx_ns -= 1000;
3478 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Luiz Capitulino222f1802006-03-20 22:16:13 -08003481 else { /* Retry it next time */
3482 pkt_dev->last_ok = 0;
3483 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Herbert Xu932ff272006-06-09 12:20:56 -07003487 netif_tx_unlock_bh(odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 /* If pkt_dev->count is zero, then run forever */
3490 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
3491 if (atomic_read(&(pkt_dev->skb->users)) != 1) {
3492 idle_start = getCurUs();
3493 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3494 if (signal_pending(current)) {
3495 break;
3496 }
3497 schedule();
3498 }
3499 pkt_dev->idle_acc += getCurUs() - idle_start;
3500 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 /* Done with this */
3503 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003504 if (pkt_dev->skb)
3505 kfree_skb(pkt_dev->skb);
3506 pkt_dev->skb = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003507 }
3508out:;
3509}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003511/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 * Main loop of the thread goes here
3513 */
3514
David S. Milleree74baa2007-01-01 20:51:53 -08003515static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516{
3517 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003518 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003519 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
David S. Milleree74baa2007-01-01 20:51:53 -08003522 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
3524 init_waitqueue_head(&t->queue);
3525
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003526 pr_debug("pktgen: starting pktgen/%d: pid=%d\n", cpu, current->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
David S. Milleree74baa2007-01-01 20:51:53 -08003528 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003529
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003530 set_freezable();
3531
David S. Milleree74baa2007-01-01 20:51:53 -08003532 while (!kthread_should_stop()) {
3533 pkt_dev = next_to_run(t);
3534
3535 if (!pkt_dev &&
3536 (t->control & (T_STOP | T_RUN | T_REMDEVALL | T_REMDEV))
3537 == 0) {
3538 prepare_to_wait(&(t->queue), &wait,
3539 TASK_INTERRUPTIBLE);
3540 schedule_timeout(HZ / 10);
3541 finish_wait(&(t->queue), &wait);
3542 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 __set_current_state(TASK_RUNNING);
3545
Robert Olssonb1639112007-08-28 15:46:58 -07003546 if (pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 pktgen_xmit(pkt_dev);
3548
Luiz Capitulino222f1802006-03-20 22:16:13 -08003549 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 pktgen_stop(t);
3551 t->control &= ~(T_STOP);
3552 }
3553
Luiz Capitulino222f1802006-03-20 22:16:13 -08003554 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 pktgen_run(t);
3556 t->control &= ~(T_RUN);
3557 }
3558
Luiz Capitulino222f1802006-03-20 22:16:13 -08003559 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003561 t->control &= ~(T_REMDEVALL);
3562 }
3563
Luiz Capitulino222f1802006-03-20 22:16:13 -08003564 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003565 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 t->control &= ~(T_REMDEV);
3567 }
3568
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003569 try_to_freeze();
3570
David S. Milleree74baa2007-01-01 20:51:53 -08003571 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003574 pr_debug("pktgen: %s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003575 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003577 pr_debug("pktgen: %s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003578 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003580 pr_debug("pktgen: %s removing thread.\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003581 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003582
David S. Milleree74baa2007-01-01 20:51:53 -08003583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584}
3585
Luiz Capitulino222f1802006-03-20 22:16:13 -08003586static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
3587 const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003589 struct pktgen_dev *p, *pkt_dev = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003590 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003592 list_for_each_entry(p, &t->if_list, list)
Stephen Hemminger39df2322007-03-04 16:11:51 -08003593 if (strncmp(p->odev->name, ifname, IFNAMSIZ) == 0) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003594 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003595 break;
3596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
Luiz Capitulino222f1802006-03-20 22:16:13 -08003598 if_unlock(t);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003599 pr_debug("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003600 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601}
3602
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003603/*
3604 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 */
3606
Luiz Capitulino222f1802006-03-20 22:16:13 -08003607static int add_dev_to_thread(struct pktgen_thread *t,
3608 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609{
3610 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Luiz Capitulino222f1802006-03-20 22:16:13 -08003612 if_lock(t);
3613
3614 if (pkt_dev->pg_thread) {
David S. Miller25a8b252007-07-30 16:11:48 -07003615 printk(KERN_ERR "pktgen: ERROR: already assigned "
3616 "to a thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003617 rv = -EBUSY;
3618 goto out;
3619 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003620
3621 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003622 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 pkt_dev->running = 0;
3624
Luiz Capitulino222f1802006-03-20 22:16:13 -08003625out:
3626 if_unlock(t);
3627 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628}
3629
3630/* Called under thread lock */
3631
Luiz Capitulino222f1802006-03-20 22:16:13 -08003632static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003634 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003635 int err;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 /* We don't allow a device to be on several threads */
3638
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003639 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3640 if (pkt_dev) {
David S. Miller25a8b252007-07-30 16:11:48 -07003641 printk(KERN_ERR "pktgen: ERROR: interface already used.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003642 return -EBUSY;
3643 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003644
3645 pkt_dev = kzalloc(sizeof(struct pktgen_dev), GFP_KERNEL);
3646 if (!pkt_dev)
3647 return -ENOMEM;
3648
Luiz Capitulino222f1802006-03-20 22:16:13 -08003649 pkt_dev->flows = vmalloc(MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003650 if (pkt_dev->flows == NULL) {
3651 kfree(pkt_dev);
3652 return -ENOMEM;
3653 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003654 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003655
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003656 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003657 pkt_dev->min_pkt_size = ETH_ZLEN;
3658 pkt_dev->max_pkt_size = ETH_ZLEN;
3659 pkt_dev->nfrags = 0;
3660 pkt_dev->clone_skb = pg_clone_skb_d;
3661 pkt_dev->delay_us = pg_delay_d / 1000;
3662 pkt_dev->delay_ns = pg_delay_d % 1000;
3663 pkt_dev->count = pg_count_d;
3664 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003665 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003666 pkt_dev->udp_src_max = 9;
3667 pkt_dev->udp_dst_min = 9;
3668 pkt_dev->udp_dst_max = 9;
3669
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003670 pkt_dev->vlan_p = 0;
3671 pkt_dev->vlan_cfi = 0;
3672 pkt_dev->vlan_id = 0xffff;
3673 pkt_dev->svlan_p = 0;
3674 pkt_dev->svlan_cfi = 0;
3675 pkt_dev->svlan_id = 0xffff;
3676
Stephen Hemminger39df2322007-03-04 16:11:51 -08003677 err = pktgen_setup_dev(pkt_dev, ifname);
3678 if (err)
3679 goto out1;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003680
Stephen Hemminger39df2322007-03-04 16:11:51 -08003681 pkt_dev->entry = create_proc_entry(ifname, 0600, pg_proc_dir);
3682 if (!pkt_dev->entry) {
David S. Miller25a8b252007-07-30 16:11:48 -07003683 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003684 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003685 err = -EINVAL;
3686 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003687 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08003688 pkt_dev->entry->proc_fops = &pktgen_if_fops;
3689 pkt_dev->entry->data = pkt_dev;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003690#ifdef CONFIG_XFRM
3691 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3692 pkt_dev->ipsproto = IPPROTO_ESP;
3693#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003694
3695 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003696out2:
3697 dev_put(pkt_dev->odev);
3698out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003699#ifdef CONFIG_XFRM
3700 free_SAs(pkt_dev);
3701#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -08003702 if (pkt_dev->flows)
3703 vfree(pkt_dev->flows);
3704 kfree(pkt_dev);
3705 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706}
3707
David S. Milleree74baa2007-01-01 20:51:53 -08003708static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003710 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003711 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003712 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Luiz Capitulino222f1802006-03-20 22:16:13 -08003714 t = kzalloc(sizeof(struct pktgen_thread), GFP_KERNEL);
3715 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07003716 printk(KERN_ERR "pktgen: ERROR: out of memory, can't "
3717 "create new thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003718 return -ENOMEM;
3719 }
3720
Luiz Capitulino222f1802006-03-20 22:16:13 -08003721 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003723
David S. Milleree74baa2007-01-01 20:51:53 -08003724 INIT_LIST_HEAD(&t->if_list);
3725
3726 list_add_tail(&t->th_list, &pktgen_threads);
3727
3728 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3729 if (IS_ERR(p)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003730 printk(KERN_ERR "pktgen: kernel_thread() failed "
3731 "for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003732 list_del(&t->th_list);
3733 kfree(t);
3734 return PTR_ERR(p);
3735 }
3736 kthread_bind(p, cpu);
3737 t->tsk = p;
3738
3739 pe = create_proc_entry(t->tsk->comm, 0600, pg_proc_dir);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003740 if (!pe) {
David S. Miller25a8b252007-07-30 16:11:48 -07003741 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003742 PG_PROC_DIR, t->tsk->comm);
3743 kthread_stop(p);
3744 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003745 kfree(t);
3746 return -EINVAL;
3747 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003748
3749 pe->proc_fops = &pktgen_thread_fops;
3750 pe->data = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
David S. Milleree74baa2007-01-01 20:51:53 -08003752 wake_up_process(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
3754 return 0;
3755}
3756
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003757/*
3758 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003760static void _rem_dev_from_if_list(struct pktgen_thread *t,
3761 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003763 struct list_head *q, *n;
3764 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003766 list_for_each_safe(q, n, &t->if_list) {
3767 p = list_entry(q, struct pktgen_dev, list);
3768 if (p == pkt_dev)
3769 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 }
3771}
3772
Luiz Capitulino222f1802006-03-20 22:16:13 -08003773static int pktgen_remove_device(struct pktgen_thread *t,
3774 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775{
3776
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003777 pr_debug("pktgen: remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
Luiz Capitulino222f1802006-03-20 22:16:13 -08003779 if (pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003780 printk(KERN_WARNING "pktgen: WARNING: trying to remove a "
3781 "running interface, stopping it now.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003782 pktgen_stop_device(pkt_dev);
3783 }
3784
3785 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
3787 if (pkt_dev->odev) {
3788 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003789 pkt_dev->odev = NULL;
3790 }
3791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 /* And update the thread if_list */
3793
3794 _rem_dev_from_if_list(t, pkt_dev);
3795
Stephen Hemminger39df2322007-03-04 16:11:51 -08003796 if (pkt_dev->entry)
3797 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003799#ifdef CONFIG_XFRM
3800 free_SAs(pkt_dev);
3801#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 if (pkt_dev->flows)
3803 vfree(pkt_dev->flows);
3804 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003805 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806}
3807
Luiz Capitulino222f1802006-03-20 22:16:13 -08003808static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809{
3810 int cpu;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003811 struct proc_dir_entry *pe;
3812
David S. Miller25a8b252007-07-30 16:11:48 -07003813 printk(KERN_INFO "%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003815 pg_proc_dir = proc_mkdir(PG_PROC_DIR, init_net.proc_net);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003816 if (!pg_proc_dir)
3817 return -ENODEV;
3818 pg_proc_dir->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003820 pe = create_proc_entry(PGCTRL, 0600, pg_proc_dir);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003821 if (pe == NULL) {
David S. Miller25a8b252007-07-30 16:11:48 -07003822 printk(KERN_ERR "pktgen: ERROR: cannot create %s "
3823 "procfs entry.\n", PGCTRL);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003824 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003825 return -EINVAL;
3826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
Luiz Capitulino222f1802006-03-20 22:16:13 -08003828 pe->proc_fops = &pktgen_fops;
3829 pe->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
3831 /* Register us to receive netdevice events */
3832 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003833
John Hawkes670c02c2005-10-13 09:30:31 -07003834 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
David S. Milleree74baa2007-01-01 20:51:53 -08003837 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003838 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07003839 printk(KERN_WARNING "pktgen: WARNING: Cannot create "
3840 "thread for cpu %d (%d)\n", cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003841 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003842
3843 if (list_empty(&pktgen_threads)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003844 printk(KERN_ERR "pktgen: ERROR: Initialization failed for "
3845 "all threads\n");
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003846 unregister_netdevice_notifier(&pktgen_notifier_block);
3847 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003848 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003849 return -ENODEV;
3850 }
3851
Luiz Capitulino222f1802006-03-20 22:16:13 -08003852 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853}
3854
3855static void __exit pg_cleanup(void)
3856{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003857 struct pktgen_thread *t;
3858 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 wait_queue_head_t queue;
3860 init_waitqueue_head(&queue);
3861
Luiz Capitulino222f1802006-03-20 22:16:13 -08003862 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003864 list_for_each_safe(q, n, &pktgen_threads) {
3865 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003866 kthread_stop(t->tsk);
3867 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869
Luiz Capitulino222f1802006-03-20 22:16:13 -08003870 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 unregister_netdevice_notifier(&pktgen_notifier_block);
3872
Luiz Capitulino222f1802006-03-20 22:16:13 -08003873 /* Clean up proc file system */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003874 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003875 proc_net_remove(&init_net, PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876}
3877
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878module_init(pg_init);
3879module_exit(pg_cleanup);
3880
3881MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se");
3882MODULE_DESCRIPTION("Packet Generator tool");
3883MODULE_LICENSE("GPL");
3884module_param(pg_count_d, int, 0);
3885module_param(pg_delay_d, int, 0);
3886module_param(pg_clone_skb_d, int, 0);
3887module_param(debug, int, 0);