blob: a23b45f08ec9ce6644cfc350cb3bc393c167ab92 [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>
Jan Engelhardt96de0e22007-10-19 23:21:04 +02009 * Jens Låås <jens.laas@data.slu.se>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700134#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700135#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#include <linux/delay.h>
137#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800138#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#include <linux/init.h>
140#include <linux/skbuff.h>
141#include <linux/netdevice.h>
142#include <linux/inet.h>
143#include <linux/inetdevice.h>
144#include <linux/rtnetlink.h>
145#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700146#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#include <linux/in.h>
148#include <linux/ip.h>
149#include <linux/ipv6.h>
150#include <linux/udp.h>
151#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700152#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800154#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800155#include <linux/kthread.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200156#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#include <net/checksum.h>
158#include <net/ipv6.h>
159#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700160#ifdef CONFIG_XFRM
161#include <net/xfrm.h>
162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#include <asm/byteorder.h>
164#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700165#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000166#include <linux/io.h>
167#include <linux/timex.h>
168#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800170#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000172#define VERSION "2.72"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800174#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800175#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800178#define F_IPSRC_RND (1<<0) /* IP-Src Random */
179#define F_IPDST_RND (1<<1) /* IP-Dst Random */
180#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
181#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
182#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
183#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
184#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
185#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800186#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700187#define F_VID_RND (1<<9) /* Random VLAN ID */
188#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700189#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700190#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700191#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700192#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000195#define T_STOP (1<<0) /* Stop run */
196#define T_RUN (1<<1) /* Start run */
197#define T_REMDEVALL (1<<2) /* Remove all devs */
198#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/* If lock -- can be removed after some work */
201#define if_lock(t) spin_lock(&(t->if_lock));
202#define if_unlock(t) spin_unlock(&(t->if_lock));
203
204/* Used to help with determining the pkts on receive */
205#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700206#define PG_PROC_DIR "pktgen"
207#define PGCTRL "pgctrl"
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000208static struct proc_dir_entry *pg_proc_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210#define MAX_CFLOWS 65536
211
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700212#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
213#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
214
Luiz Capitulino222f1802006-03-20 22:16:13 -0800215struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800216 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800217 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700218#ifdef CONFIG_XFRM
219 struct xfrm_state *x;
220#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700221 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700224/* flow flag bits */
225#define F_INIT (1<<0) /* flow has been initialized */
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /*
229 * Try to keep frequent/infrequent used vars. separated.
230 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800231 struct proc_dir_entry *entry; /* proc file */
232 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000233 struct list_head list; /* chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000235 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800236
237 /* If min != max, then we will either do a linear iteration, or
238 * we will do a random selection from within the range.
239 */
240 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800241 int removal_mark; /* non-zero => the device is marked for
242 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Luiz Capitulino222f1802006-03-20 22:16:13 -0800244 int min_pkt_size; /* = ETH_ZLEN; */
245 int max_pkt_size; /* = ETH_ZLEN; */
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700246 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800247 int nfrags;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000248 u64 delay; /* nano-seconds */
249
Luiz Capitulino222f1802006-03-20 22:16:13 -0800250 __u64 count; /* Default No packets to send */
251 __u64 sofar; /* How many pkts we've sent so far */
252 __u64 tx_bytes; /* How many bytes we've transmitted */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000253 __u64 errors; /* Errors when trying to transmit,
254 pkts will be re-sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Luiz Capitulino222f1802006-03-20 22:16:13 -0800256 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Luiz Capitulino222f1802006-03-20 22:16:13 -0800258 __u64 allocated_skbs;
259 __u32 clone_count;
260 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000261 * Or a failed transmit of some sort?
262 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800263 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000264 ktime_t next_tx;
265 ktime_t started_at;
266 ktime_t stopped_at;
267 u64 idle_acc; /* nano-seconds */
268
Luiz Capitulino222f1802006-03-20 22:16:13 -0800269 __u32 seq_num;
270
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000271 int clone_skb; /*
272 * Use multiple SKBs during packet gen.
273 * If this number is greater than 1, then
274 * that many copies of the same packet will be
275 * sent before a new packet is allocated.
276 * If you want to send 1024 identical packets
277 * before creating a new packet,
278 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800279 */
280
281 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
282 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
283 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
284 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
285
286 struct in6_addr in6_saddr;
287 struct in6_addr in6_daddr;
288 struct in6_addr cur_in6_daddr;
289 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800291 struct in6_addr min_in6_daddr;
292 struct in6_addr max_in6_daddr;
293 struct in6_addr min_in6_saddr;
294 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Luiz Capitulino222f1802006-03-20 22:16:13 -0800296 /* If we're doing ranges, random or incremental, then this
297 * defines the min/max for those ranges.
298 */
Al Viro252e3342006-11-14 20:48:11 -0800299 __be32 saddr_min; /* inclusive, source IP address */
300 __be32 saddr_max; /* exclusive, source IP address */
301 __be32 daddr_min; /* inclusive, dest IP address */
302 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Luiz Capitulino222f1802006-03-20 22:16:13 -0800304 __u16 udp_src_min; /* inclusive, source UDP port */
305 __u16 udp_src_max; /* exclusive, source UDP port */
306 __u16 udp_dst_min; /* inclusive, dest UDP port */
307 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700309 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000310 __u8 tos; /* six MSB of (former) IPv4 TOS
311 are for dscp codepoint */
312 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
313 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700314
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800315 /* MPLS */
316 unsigned nr_labels; /* Depth of stack, 0 = no MPLS */
317 __be32 labels[MAX_MPLS_LABELS];
318
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700319 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
320 __u8 vlan_p;
321 __u8 vlan_cfi;
322 __u16 vlan_id; /* 0xffff means no vlan tag */
323
324 __u8 svlan_p;
325 __u8 svlan_cfi;
326 __u16 svlan_id; /* 0xffff means no svlan tag */
327
Luiz Capitulino222f1802006-03-20 22:16:13 -0800328 __u32 src_mac_count; /* How many MACs to iterate through */
329 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Luiz Capitulino222f1802006-03-20 22:16:13 -0800331 unsigned char dst_mac[ETH_ALEN];
332 unsigned char src_mac[ETH_ALEN];
333
334 __u32 cur_dst_mac_offset;
335 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800336 __be32 cur_saddr;
337 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700338 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800339 __u16 cur_udp_dst;
340 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700341 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800342 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800343 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800344
345 __u8 hh[14];
346 /* = {
347 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
348
349 We fill in SRC address later
350 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
351 0x08, 0x00
352 };
353 */
354 __u16 pad; /* pad out the hh struct to an even 16 bytes */
355
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000356 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800357 * are transmitting the same one multiple times
358 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000359 struct net_device *odev; /* The out-going device.
360 * Note that the device should have it's
361 * pg_info pointer pointing back to this
362 * device.
363 * Set when the user specifies the out-going
364 * device name (not when the inject is
365 * started as it used to do.)
366 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000367 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800369 unsigned cflows; /* Concurrent flows (config) */
370 unsigned lflow; /* Flow length (config) */
371 unsigned nflows; /* accumulated flows (stats) */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700372 unsigned curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700373
374 u16 queue_map_min;
375 u16 queue_map_max;
376
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700377#ifdef CONFIG_XFRM
378 __u8 ipsmode; /* IPSEC mode (config) */
379 __u8 ipsproto; /* IPSEC type (config) */
380#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800381 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382};
383
384struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800385 __be32 pgh_magic;
386 __be32 seq_num;
387 __be32 tv_sec;
388 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389};
390
391struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000392 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800393 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800394 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800395 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800396 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000398 /* Field for thread to receive "posted" events terminate,
399 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800400
401 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 int cpu;
403
Luiz Capitulino222f1802006-03-20 22:16:13 -0800404 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700405 struct completion start_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
408#define REMOVE 1
409#define FIND 0
410
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000411static inline ktime_t ktime_now(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000413 struct timespec ts;
414 ktime_get_ts(&ts);
415
416 return timespec_to_ktime(ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000419/* This works even if 32 bit because of careful byte order choice */
420static inline int ktime_lt(const ktime_t cmp1, const ktime_t cmp2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000422 return cmp1.tv64 < cmp2.tv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000425static const char version[] =
426 "pktgen " VERSION ": Packet Generator for packet performance testing.\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Luiz Capitulino222f1802006-03-20 22:16:13 -0800428static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
429static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
430static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800431 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
433static void pktgen_run_all_threads(void);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800434static void pktgen_reset_all_threads(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435static void pktgen_stop_all_threads_ifs(void);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000436
Luiz Capitulino222f1802006-03-20 22:16:13 -0800437static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800439
Luiz Capitulino222f1802006-03-20 22:16:13 -0800440static unsigned int scan_ip6(const char *s, char ip[16]);
441static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000444static int pg_count_d __read_mostly = 1000;
445static int pg_delay_d __read_mostly;
446static int pg_clone_skb_d __read_mostly;
447static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Luiz Capitulino222fa072006-03-20 22:24:27 -0800449static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800450static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452static struct notifier_block pktgen_notifier_block = {
453 .notifier_call = pktgen_device_event,
454};
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900457 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 *
459 */
460
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700461static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800462{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000463 seq_puts(seq, version);
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000467static ssize_t pgctrl_write(struct file *file, const char __user *buf,
468 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 int err = 0;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700471 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Luiz Capitulino222f1802006-03-20 22:16:13 -0800473 if (!capable(CAP_NET_ADMIN)) {
474 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700478 if (count > sizeof(data))
479 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700482 err = -EFAULT;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700483 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800484 }
485 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Luiz Capitulino222f1802006-03-20 22:16:13 -0800487 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 pktgen_stop_all_threads_ifs();
489
Luiz Capitulino222f1802006-03-20 22:16:13 -0800490 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 pktgen_run_all_threads();
492
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800493 else if (!strcmp(data, "reset"))
494 pktgen_reset_all_threads();
495
Luiz Capitulino222f1802006-03-20 22:16:13 -0800496 else
David S. Miller25a8b252007-07-30 16:11:48 -0700497 printk(KERN_WARNING "pktgen: Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 err = count;
500
Luiz Capitulino222f1802006-03-20 22:16:13 -0800501out:
502 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700505static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700507 return single_open(file, pgctrl_show, PDE(inode)->data);
508}
509
Arjan van de Ven9a321442007-02-12 00:55:35 -0800510static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800511 .owner = THIS_MODULE,
512 .open = pgctrl_open,
513 .read = seq_read,
514 .llseek = seq_lseek,
515 .write = pgctrl_write,
516 .release = single_release,
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700517};
518
519static int pktgen_if_show(struct seq_file *seq, void *v)
520{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000521 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000522 ktime_t stopped;
523 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Luiz Capitulino222f1802006-03-20 22:16:13 -0800525 seq_printf(seq,
526 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
527 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
528 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Luiz Capitulino222f1802006-03-20 22:16:13 -0800530 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000531 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
532 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000533 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Luiz Capitulino222f1802006-03-20 22:16:13 -0800535 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
536 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Robert Olsson45b270f2007-08-28 15:45:55 -0700538 seq_printf(seq,
539 " queue_map_min: %u queue_map_max: %u\n",
540 pkt_dev->queue_map_min,
541 pkt_dev->queue_map_max);
542
Luiz Capitulino222f1802006-03-20 22:16:13 -0800543 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800545 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
546 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
547 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
548 seq_printf(seq,
549 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
550 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Luiz Capitulino222f1802006-03-20 22:16:13 -0800552 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
553 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
554 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
555 seq_printf(seq,
556 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
557 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000559 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800560 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000561 " dst_min: %s dst_max: %s\n",
562 pkt_dev->dst_min, pkt_dev->dst_max);
563 seq_printf(seq,
564 " src_min: %s src_max: %s\n",
565 pkt_dev->src_min, pkt_dev->src_max);
566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700568 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Johannes Berge1749612008-10-27 15:59:26 -0700570 seq_printf(seq, "%pM ",
571 is_zero_ether_addr(pkt_dev->src_mac) ?
572 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Luiz Capitulino222f1802006-03-20 22:16:13 -0800574 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700575 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Luiz Capitulino222f1802006-03-20 22:16:13 -0800577 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000578 " udp_src_min: %d udp_src_max: %d"
579 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800580 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
581 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Luiz Capitulino222f1802006-03-20 22:16:13 -0800583 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800584 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700585 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800587 if (pkt_dev->nr_labels) {
588 unsigned i;
589 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700590 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800591 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
592 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
593 }
594
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000595 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700596 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000597 pkt_dev->vlan_id, pkt_dev->vlan_p,
598 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700599
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000600 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700601 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000602 pkt_dev->svlan_id, pkt_dev->svlan_p,
603 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700604
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000605 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700606 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700607
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000608 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700609 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700610
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800611 seq_printf(seq, " Flags: ");
612
Luiz Capitulino222f1802006-03-20 22:16:13 -0800613 if (pkt_dev->flags & F_IPV6)
614 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Luiz Capitulino222f1802006-03-20 22:16:13 -0800616 if (pkt_dev->flags & F_IPSRC_RND)
617 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Luiz Capitulino222f1802006-03-20 22:16:13 -0800619 if (pkt_dev->flags & F_IPDST_RND)
620 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Luiz Capitulino222f1802006-03-20 22:16:13 -0800622 if (pkt_dev->flags & F_TXSIZE_RND)
623 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Luiz Capitulino222f1802006-03-20 22:16:13 -0800625 if (pkt_dev->flags & F_UDPSRC_RND)
626 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Luiz Capitulino222f1802006-03-20 22:16:13 -0800628 if (pkt_dev->flags & F_UDPDST_RND)
629 seq_printf(seq, "UDPDST_RND ");
630
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800631 if (pkt_dev->flags & F_MPLS_RND)
632 seq_printf(seq, "MPLS_RND ");
633
Robert Olsson45b270f2007-08-28 15:45:55 -0700634 if (pkt_dev->flags & F_QUEUE_MAP_RND)
635 seq_printf(seq, "QUEUE_MAP_RND ");
636
Robert Olssone6fce5b2008-08-07 02:23:01 -0700637 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
638 seq_printf(seq, "QUEUE_MAP_CPU ");
639
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700640 if (pkt_dev->cflows) {
641 if (pkt_dev->flags & F_FLOW_SEQ)
642 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
643 else
644 seq_printf(seq, "FLOW_RND ");
645 }
646
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700647#ifdef CONFIG_XFRM
648 if (pkt_dev->flags & F_IPSEC_ON)
649 seq_printf(seq, "IPSEC ");
650#endif
651
Luiz Capitulino222f1802006-03-20 22:16:13 -0800652 if (pkt_dev->flags & F_MACSRC_RND)
653 seq_printf(seq, "MACSRC_RND ");
654
655 if (pkt_dev->flags & F_MACDST_RND)
656 seq_printf(seq, "MACDST_RND ");
657
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700658 if (pkt_dev->flags & F_VID_RND)
659 seq_printf(seq, "VID_RND ");
660
661 if (pkt_dev->flags & F_SVID_RND)
662 seq_printf(seq, "SVID_RND ");
663
Luiz Capitulino222f1802006-03-20 22:16:13 -0800664 seq_puts(seq, "\n");
665
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000666 /* not really stopped, more like last-running-at */
667 stopped = pkt_dev->running ? ktime_now() : pkt_dev->stopped_at;
668 idle = pkt_dev->idle_acc;
669 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800670
671 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000672 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800673 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000674 (unsigned long long)pkt_dev->errors);
675
676 seq_printf(seq,
677 " started: %lluus stopped: %lluus idle: %lluus\n",
678 (unsigned long long) ktime_to_us(pkt_dev->started_at),
679 (unsigned long long) ktime_to_us(stopped),
680 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800681
682 seq_printf(seq,
683 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700684 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
685 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Luiz Capitulino222f1802006-03-20 22:16:13 -0800687 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800689 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
690 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
691 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
692 } else
693 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700694 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Luiz Capitulino222f1802006-03-20 22:16:13 -0800696 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700697 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Robert Olsson45b270f2007-08-28 15:45:55 -0700699 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
700
Luiz Capitulino222f1802006-03-20 22:16:13 -0800701 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800704 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800706 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700708 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800711
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000712static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
713 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800714{
715 int i = 0;
716 *num = 0;
717
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700718 for (; i < maxlen; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800719 char c;
720 *num <<= 4;
721 if (get_user(c, &user_buffer[i]))
722 return -EFAULT;
723 if ((c >= '0') && (c <= '9'))
724 *num |= c - '0';
725 else if ((c >= 'a') && (c <= 'f'))
726 *num |= c - 'a' + 10;
727 else if ((c >= 'A') && (c <= 'F'))
728 *num |= c - 'A' + 10;
729 else
730 break;
731 }
732 return i;
733}
734
Luiz Capitulino222f1802006-03-20 22:16:13 -0800735static int count_trail_chars(const char __user * user_buffer,
736 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 int i;
739
740 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800741 char c;
742 if (get_user(c, &user_buffer[i]))
743 return -EFAULT;
744 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 case '\"':
746 case '\n':
747 case '\r':
748 case '\t':
749 case ' ':
750 case '=':
751 break;
752 default:
753 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756done:
757 return i;
758}
759
Luiz Capitulino222f1802006-03-20 22:16:13 -0800760static unsigned long num_arg(const char __user * user_buffer,
761 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 int i = 0;
764 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800765
766 for (; i < maxlen; i++) {
767 char c;
768 if (get_user(c, &user_buffer[i]))
769 return -EFAULT;
770 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800772 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 } else
774 break;
775 }
776 return i;
777}
778
Luiz Capitulino222f1802006-03-20 22:16:13 -0800779static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 int i = 0;
782
Luiz Capitulino222f1802006-03-20 22:16:13 -0800783 for (; i < maxlen; i++) {
784 char c;
785 if (get_user(c, &user_buffer[i]))
786 return -EFAULT;
787 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 case '\"':
789 case '\n':
790 case '\r':
791 case '\t':
792 case ' ':
793 goto done_str;
794 break;
795 default:
796 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return i;
801}
802
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800803static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
804{
805 unsigned n = 0;
806 char c;
807 ssize_t i = 0;
808 int len;
809
810 pkt_dev->nr_labels = 0;
811 do {
812 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700813 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800814 if (len <= 0)
815 return len;
816 pkt_dev->labels[n] = htonl(tmp);
817 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
818 pkt_dev->flags |= F_MPLS_RND;
819 i += len;
820 if (get_user(c, &buffer[i]))
821 return -EFAULT;
822 i++;
823 n++;
824 if (n >= MAX_MPLS_LABELS)
825 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700826 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800827
828 pkt_dev->nr_labels = n;
829 return i;
830}
831
Luiz Capitulino222f1802006-03-20 22:16:13 -0800832static ssize_t pktgen_if_write(struct file *file,
833 const char __user * user_buffer, size_t count,
834 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800836 struct seq_file *seq = (struct seq_file *)file->private_data;
837 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 int i = 0, max, len;
839 char name[16], valstr[32];
840 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800841 char *pg_result = NULL;
842 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800844
845 pg_result = &(pkt_dev->result[0]);
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (count < 1) {
David S. Miller25a8b252007-07-30 16:11:48 -0700848 printk(KERN_WARNING "pktgen: wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return -EINVAL;
850 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 max = count - i;
853 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800854 if (tmp < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -0700855 printk(KERN_WARNING "pktgen: illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800856 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800858 i += tmp;
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /* Read variable name */
861
862 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000863 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800864 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800867 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return -EFAULT;
869 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800870
871 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800873 if (len < 0)
874 return len;
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 i += len;
877
878 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879 char tb[count + 1];
880 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800882 tb[count] = 0;
David S. Miller25a8b252007-07-30 16:11:48 -0700883 printk(KERN_DEBUG "pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800884 (unsigned long)count, tb);
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (!strcmp(name, "min_pkt_size")) {
888 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000889 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800890 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800893 if (value < 14 + 20 + 8)
894 value = 14 + 20 + 8;
895 if (value != pkt_dev->min_pkt_size) {
896 pkt_dev->min_pkt_size = value;
897 pkt_dev->cur_pkt_size = value;
898 }
899 sprintf(pg_result, "OK: min_pkt_size=%u",
900 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return count;
902 }
903
Luiz Capitulino222f1802006-03-20 22:16:13 -0800904 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000906 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800907 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800910 if (value < 14 + 20 + 8)
911 value = 14 + 20 + 8;
912 if (value != pkt_dev->max_pkt_size) {
913 pkt_dev->max_pkt_size = value;
914 pkt_dev->cur_pkt_size = value;
915 }
916 sprintf(pg_result, "OK: max_pkt_size=%u",
917 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return count;
919 }
920
Luiz Capitulino222f1802006-03-20 22:16:13 -0800921 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (!strcmp(name, "pkt_size")) {
924 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000925 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800926 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800929 if (value < 14 + 20 + 8)
930 value = 14 + 20 + 8;
931 if (value != pkt_dev->min_pkt_size) {
932 pkt_dev->min_pkt_size = value;
933 pkt_dev->max_pkt_size = value;
934 pkt_dev->cur_pkt_size = value;
935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
937 return count;
938 }
939
Luiz Capitulino222f1802006-03-20 22:16:13 -0800940 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000942 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800943 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800946 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 sprintf(pg_result, "OK: debug=%u", debug);
948 return count;
949 }
950
Luiz Capitulino222f1802006-03-20 22:16:13 -0800951 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000953 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800954 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 i += len;
957 pkt_dev->nfrags = value;
958 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
959 return count;
960 }
961 if (!strcmp(name, "delay")) {
962 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000963 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800964 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000967 if (value == 0x7FFFFFFF)
968 pkt_dev->delay = ULLONG_MAX;
969 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000970 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000971
972 sprintf(pg_result, "OK: delay=%llu",
973 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return count;
975 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800976 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000978 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800979 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800982 if (value != pkt_dev->udp_src_min) {
983 pkt_dev->udp_src_min = value;
984 pkt_dev->cur_udp_src = value;
985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
987 return count;
988 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800989 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000991 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800992 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800995 if (value != pkt_dev->udp_dst_min) {
996 pkt_dev->udp_dst_min = value;
997 pkt_dev->cur_udp_dst = value;
998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1000 return count;
1001 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001002 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001004 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001005 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001008 if (value != pkt_dev->udp_src_max) {
1009 pkt_dev->udp_src_max = value;
1010 pkt_dev->cur_udp_src = value;
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1013 return count;
1014 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001015 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001017 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001018 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001021 if (value != pkt_dev->udp_dst_max) {
1022 pkt_dev->udp_dst_max = value;
1023 pkt_dev->cur_udp_dst = value;
1024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1026 return count;
1027 }
1028 if (!strcmp(name, "clone_skb")) {
1029 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001030 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001031 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001034 pkt_dev->clone_skb = value;
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1037 return count;
1038 }
1039 if (!strcmp(name, "count")) {
1040 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001041 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001042 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 i += len;
1045 pkt_dev->count = value;
1046 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001047 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return count;
1049 }
1050 if (!strcmp(name, "src_mac_count")) {
1051 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001052 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001053 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 i += len;
1056 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001057 pkt_dev->src_mac_count = value;
1058 pkt_dev->cur_src_mac_offset = 0;
1059 }
1060 sprintf(pg_result, "OK: src_mac_count=%d",
1061 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return count;
1063 }
1064 if (!strcmp(name, "dst_mac_count")) {
1065 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001066 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001067 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 i += len;
1070 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001071 pkt_dev->dst_mac_count = value;
1072 pkt_dev->cur_dst_mac_offset = 0;
1073 }
1074 sprintf(pg_result, "OK: dst_mac_count=%d",
1075 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return count;
1077 }
1078 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001079 char f[32];
1080 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001082 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001083 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (copy_from_user(f, &user_buffer[i], len))
1086 return -EFAULT;
1087 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001088 if (strcmp(f, "IPSRC_RND") == 0)
1089 pkt_dev->flags |= F_IPSRC_RND;
1090
1091 else if (strcmp(f, "!IPSRC_RND") == 0)
1092 pkt_dev->flags &= ~F_IPSRC_RND;
1093
1094 else if (strcmp(f, "TXSIZE_RND") == 0)
1095 pkt_dev->flags |= F_TXSIZE_RND;
1096
1097 else if (strcmp(f, "!TXSIZE_RND") == 0)
1098 pkt_dev->flags &= ~F_TXSIZE_RND;
1099
1100 else if (strcmp(f, "IPDST_RND") == 0)
1101 pkt_dev->flags |= F_IPDST_RND;
1102
1103 else if (strcmp(f, "!IPDST_RND") == 0)
1104 pkt_dev->flags &= ~F_IPDST_RND;
1105
1106 else if (strcmp(f, "UDPSRC_RND") == 0)
1107 pkt_dev->flags |= F_UDPSRC_RND;
1108
1109 else if (strcmp(f, "!UDPSRC_RND") == 0)
1110 pkt_dev->flags &= ~F_UDPSRC_RND;
1111
1112 else if (strcmp(f, "UDPDST_RND") == 0)
1113 pkt_dev->flags |= F_UDPDST_RND;
1114
1115 else if (strcmp(f, "!UDPDST_RND") == 0)
1116 pkt_dev->flags &= ~F_UDPDST_RND;
1117
1118 else if (strcmp(f, "MACSRC_RND") == 0)
1119 pkt_dev->flags |= F_MACSRC_RND;
1120
1121 else if (strcmp(f, "!MACSRC_RND") == 0)
1122 pkt_dev->flags &= ~F_MACSRC_RND;
1123
1124 else if (strcmp(f, "MACDST_RND") == 0)
1125 pkt_dev->flags |= F_MACDST_RND;
1126
1127 else if (strcmp(f, "!MACDST_RND") == 0)
1128 pkt_dev->flags &= ~F_MACDST_RND;
1129
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001130 else if (strcmp(f, "MPLS_RND") == 0)
1131 pkt_dev->flags |= F_MPLS_RND;
1132
1133 else if (strcmp(f, "!MPLS_RND") == 0)
1134 pkt_dev->flags &= ~F_MPLS_RND;
1135
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001136 else if (strcmp(f, "VID_RND") == 0)
1137 pkt_dev->flags |= F_VID_RND;
1138
1139 else if (strcmp(f, "!VID_RND") == 0)
1140 pkt_dev->flags &= ~F_VID_RND;
1141
1142 else if (strcmp(f, "SVID_RND") == 0)
1143 pkt_dev->flags |= F_SVID_RND;
1144
1145 else if (strcmp(f, "!SVID_RND") == 0)
1146 pkt_dev->flags &= ~F_SVID_RND;
1147
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001148 else if (strcmp(f, "FLOW_SEQ") == 0)
1149 pkt_dev->flags |= F_FLOW_SEQ;
1150
Robert Olsson45b270f2007-08-28 15:45:55 -07001151 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1152 pkt_dev->flags |= F_QUEUE_MAP_RND;
1153
1154 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1155 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001156
1157 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1158 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1159
1160 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1161 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001162#ifdef CONFIG_XFRM
1163 else if (strcmp(f, "IPSEC") == 0)
1164 pkt_dev->flags |= F_IPSEC_ON;
1165#endif
1166
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001167 else if (strcmp(f, "!IPV6") == 0)
1168 pkt_dev->flags &= ~F_IPV6;
1169
Luiz Capitulino222f1802006-03-20 22:16:13 -08001170 else {
1171 sprintf(pg_result,
1172 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1173 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001174 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001175 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001176 return count;
1177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1179 return count;
1180 }
1181 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1182 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001183 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001184 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Luiz Capitulino222f1802006-03-20 22:16:13 -08001186 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001188 buf[len] = 0;
1189 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1190 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1191 strncpy(pkt_dev->dst_min, buf, len);
1192 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1193 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1194 }
1195 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001196 printk(KERN_DEBUG "pktgen: dst_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001197 pkt_dev->dst_min);
1198 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1200 return count;
1201 }
1202 if (!strcmp(name, "dst_max")) {
1203 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001204 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001205 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Luiz Capitulino222f1802006-03-20 22:16:13 -08001208 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return -EFAULT;
1210
Luiz Capitulino222f1802006-03-20 22:16:13 -08001211 buf[len] = 0;
1212 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1213 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1214 strncpy(pkt_dev->dst_max, buf, len);
1215 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1216 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1217 }
1218 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001219 printk(KERN_DEBUG "pktgen: dst_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001220 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 i += len;
1222 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1223 return count;
1224 }
1225 if (!strcmp(name, "dst6")) {
1226 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001227 if (len < 0)
1228 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 pkt_dev->flags |= F_IPV6;
1231
Luiz Capitulino222f1802006-03-20 22:16:13 -08001232 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001234 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001237 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1240
Luiz Capitulino222f1802006-03-20 22:16:13 -08001241 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001242 printk(KERN_DEBUG "pktgen: dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Luiz Capitulino222f1802006-03-20 22:16:13 -08001244 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 sprintf(pg_result, "OK: dst6=%s", buf);
1246 return count;
1247 }
1248 if (!strcmp(name, "dst6_min")) {
1249 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001250 if (len < 0)
1251 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 pkt_dev->flags |= F_IPV6;
1254
Luiz Capitulino222f1802006-03-20 22:16:13 -08001255 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001257 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001260 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Luiz Capitulino222f1802006-03-20 22:16:13 -08001262 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1263 &pkt_dev->min_in6_daddr);
1264 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001265 printk(KERN_DEBUG "pktgen: dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Luiz Capitulino222f1802006-03-20 22:16:13 -08001267 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 sprintf(pg_result, "OK: dst6_min=%s", buf);
1269 return count;
1270 }
1271 if (!strcmp(name, "dst6_max")) {
1272 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001273 if (len < 0)
1274 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 pkt_dev->flags |= F_IPV6;
1277
Luiz Capitulino222f1802006-03-20 22:16:13 -08001278 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001283 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Luiz Capitulino222f1802006-03-20 22:16:13 -08001285 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001286 printk(KERN_DEBUG "pktgen: dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Luiz Capitulino222f1802006-03-20 22:16:13 -08001288 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 sprintf(pg_result, "OK: dst6_max=%s", buf);
1290 return count;
1291 }
1292 if (!strcmp(name, "src6")) {
1293 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001294 if (len < 0)
1295 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 pkt_dev->flags |= F_IPV6;
1298
Luiz Capitulino222f1802006-03-20 22:16:13 -08001299 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001301 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001304 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1307
Luiz Capitulino222f1802006-03-20 22:16:13 -08001308 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001309 printk(KERN_DEBUG "pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001310
1311 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 sprintf(pg_result, "OK: src6=%s", buf);
1313 return count;
1314 }
1315 if (!strcmp(name, "src_min")) {
1316 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001317 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001318 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001319
Luiz Capitulino222f1802006-03-20 22:16:13 -08001320 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001322 buf[len] = 0;
1323 if (strcmp(buf, pkt_dev->src_min) != 0) {
1324 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1325 strncpy(pkt_dev->src_min, buf, len);
1326 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1327 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1328 }
1329 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001330 printk(KERN_DEBUG "pktgen: src_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001331 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 i += len;
1333 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1334 return count;
1335 }
1336 if (!strcmp(name, "src_max")) {
1337 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001338 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001339 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001340
Luiz Capitulino222f1802006-03-20 22:16:13 -08001341 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 buf[len] = 0;
1344 if (strcmp(buf, pkt_dev->src_max) != 0) {
1345 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1346 strncpy(pkt_dev->src_max, buf, len);
1347 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1348 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1349 }
1350 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001351 printk(KERN_DEBUG "pktgen: src_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001352 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 i += len;
1354 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1355 return count;
1356 }
1357 if (!strcmp(name, "dst_mac")) {
1358 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001359 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001361 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001364 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001365 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001368 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return -EFAULT;
1370 i += len;
1371
Luiz Capitulino222f1802006-03-20 22:16:13 -08001372 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (*v >= '0' && *v <= '9') {
1374 *m *= 16;
1375 *m += *v - '0';
1376 }
1377 if (*v >= 'A' && *v <= 'F') {
1378 *m *= 16;
1379 *m += *v - 'A' + 10;
1380 }
1381 if (*v >= 'a' && *v <= 'f') {
1382 *m *= 16;
1383 *m += *v - 'a' + 10;
1384 }
1385 if (*v == ':') {
1386 m++;
1387 *m = 0;
1388 }
1389 }
1390
1391 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001392 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1393 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 sprintf(pg_result, "OK: dstmac");
1396 return count;
1397 }
1398 if (!strcmp(name, "src_mac")) {
1399 char *v = valstr;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001400 unsigned char old_smac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 unsigned char *m = pkt_dev->src_mac;
1402
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001403 memcpy(old_smac, pkt_dev->src_mac, ETH_ALEN);
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001406 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001407 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001410 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return -EFAULT;
1412 i += len;
1413
Luiz Capitulino222f1802006-03-20 22:16:13 -08001414 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (*v >= '0' && *v <= '9') {
1416 *m *= 16;
1417 *m += *v - '0';
1418 }
1419 if (*v >= 'A' && *v <= 'F') {
1420 *m *= 16;
1421 *m += *v - 'A' + 10;
1422 }
1423 if (*v >= 'a' && *v <= 'f') {
1424 *m *= 16;
1425 *m += *v - 'a' + 10;
1426 }
1427 if (*v == ':') {
1428 m++;
1429 *m = 0;
1430 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001433 /* Set up Src MAC */
1434 if (compare_ether_addr(old_smac, pkt_dev->src_mac))
1435 memcpy(&(pkt_dev->hh[6]), pkt_dev->src_mac, ETH_ALEN);
1436
Luiz Capitulino222f1802006-03-20 22:16:13 -08001437 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return count;
1439 }
1440
Luiz Capitulino222f1802006-03-20 22:16:13 -08001441 if (!strcmp(name, "clear_counters")) {
1442 pktgen_clear_counters(pkt_dev);
1443 sprintf(pg_result, "OK: Clearing counters.\n");
1444 return count;
1445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if (!strcmp(name, "flows")) {
1448 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001449 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001450 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 i += len;
1453 if (value > MAX_CFLOWS)
1454 value = MAX_CFLOWS;
1455
1456 pkt_dev->cflows = value;
1457 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1458 return count;
1459 }
1460
1461 if (!strcmp(name, "flowlen")) {
1462 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001463 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001464 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 i += len;
1467 pkt_dev->lflow = value;
1468 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1469 return count;
1470 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001471
Robert Olsson45b270f2007-08-28 15:45:55 -07001472 if (!strcmp(name, "queue_map_min")) {
1473 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001474 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001475 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001476
Robert Olsson45b270f2007-08-28 15:45:55 -07001477 i += len;
1478 pkt_dev->queue_map_min = value;
1479 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1480 return count;
1481 }
1482
1483 if (!strcmp(name, "queue_map_max")) {
1484 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001485 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001486 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001487
Robert Olsson45b270f2007-08-28 15:45:55 -07001488 i += len;
1489 pkt_dev->queue_map_max = value;
1490 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1491 return count;
1492 }
1493
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001494 if (!strcmp(name, "mpls")) {
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001495 unsigned n, cnt;
1496
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001497 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001498 if (len < 0)
1499 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001500 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001501 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001502 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001503 cnt += sprintf(pg_result + cnt,
1504 "%08x%s", ntohl(pkt_dev->labels[n]),
1505 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001506
1507 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1508 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1509 pkt_dev->svlan_id = 0xffff;
1510
1511 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001512 printk(KERN_DEBUG "pktgen: VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001513 }
1514 return count;
1515 }
1516
1517 if (!strcmp(name, "vlan_id")) {
1518 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001519 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001520 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001521
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001522 i += len;
1523 if (value <= 4095) {
1524 pkt_dev->vlan_id = value; /* turn on VLAN */
1525
1526 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001527 printk(KERN_DEBUG "pktgen: VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001528
1529 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001530 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001531
1532 pkt_dev->nr_labels = 0; /* turn off MPLS */
1533 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1534 } else {
1535 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1536 pkt_dev->svlan_id = 0xffff;
1537
1538 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001539 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001540 }
1541 return count;
1542 }
1543
1544 if (!strcmp(name, "vlan_p")) {
1545 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001546 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001547 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001548
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001549 i += len;
1550 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1551 pkt_dev->vlan_p = value;
1552 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1553 } else {
1554 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1555 }
1556 return count;
1557 }
1558
1559 if (!strcmp(name, "vlan_cfi")) {
1560 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001561 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001562 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001563
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001564 i += len;
1565 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1566 pkt_dev->vlan_cfi = value;
1567 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1568 } else {
1569 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1570 }
1571 return count;
1572 }
1573
1574 if (!strcmp(name, "svlan_id")) {
1575 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001576 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001577 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001578
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001579 i += len;
1580 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1581 pkt_dev->svlan_id = value; /* turn on SVLAN */
1582
1583 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001584 printk(KERN_DEBUG "pktgen: SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001585
1586 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001587 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001588
1589 pkt_dev->nr_labels = 0; /* turn off MPLS */
1590 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1591 } else {
1592 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1593 pkt_dev->svlan_id = 0xffff;
1594
1595 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001596 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001597 }
1598 return count;
1599 }
1600
1601 if (!strcmp(name, "svlan_p")) {
1602 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001603 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001604 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001605
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001606 i += len;
1607 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1608 pkt_dev->svlan_p = value;
1609 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1610 } else {
1611 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1612 }
1613 return count;
1614 }
1615
1616 if (!strcmp(name, "svlan_cfi")) {
1617 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001618 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001619 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001620
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001621 i += len;
1622 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1623 pkt_dev->svlan_cfi = value;
1624 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1625 } else {
1626 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1627 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001628 return count;
1629 }
1630
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001631 if (!strcmp(name, "tos")) {
1632 __u32 tmp_value = 0;
1633 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001634 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001635 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001636
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001637 i += len;
1638 if (len == 2) {
1639 pkt_dev->tos = tmp_value;
1640 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1641 } else {
1642 sprintf(pg_result, "ERROR: tos must be 00-ff");
1643 }
1644 return count;
1645 }
1646
1647 if (!strcmp(name, "traffic_class")) {
1648 __u32 tmp_value = 0;
1649 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001650 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001651 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001652
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001653 i += len;
1654 if (len == 2) {
1655 pkt_dev->traffic_class = tmp_value;
1656 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1657 } else {
1658 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1659 }
1660 return count;
1661 }
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1664 return -EINVAL;
1665}
1666
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001667static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001669 return single_open(file, pktgen_if_show, PDE(inode)->data);
1670}
1671
Arjan van de Ven9a321442007-02-12 00:55:35 -08001672static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001673 .owner = THIS_MODULE,
1674 .open = pktgen_if_open,
1675 .read = seq_read,
1676 .llseek = seq_lseek,
1677 .write = pktgen_if_write,
1678 .release = single_release,
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001679};
1680
1681static int pktgen_thread_show(struct seq_file *seq, void *v)
1682{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001683 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001684 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001686 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Luiz Capitulino222f1802006-03-20 22:16:13 -08001688 seq_printf(seq, "Running: ");
1689
1690 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001691 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001692 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001693 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Luiz Capitulino222f1802006-03-20 22:16:13 -08001695 seq_printf(seq, "\nStopped: ");
1696
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001697 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001698 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001699 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 if (t->result[0])
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001702 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 else
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001704 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Luiz Capitulino222f1802006-03-20 22:16:13 -08001706 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001708 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709}
1710
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001711static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001712 const char __user * user_buffer,
1713 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001715 struct seq_file *seq = (struct seq_file *)file->private_data;
1716 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 int i = 0, max, len, ret;
1718 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001719 char *pg_result;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001722 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return -EINVAL;
1724 }
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001727 len = count_trail_chars(&user_buffer[i], max);
1728 if (len < 0)
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001729 return len;
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 i += len;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 /* Read variable name */
1734
1735 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001736 if (len < 0)
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001737 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 memset(name, 0, sizeof(name));
1740 if (copy_from_user(name, &user_buffer[i], len))
1741 return -EFAULT;
1742 i += len;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001743
Luiz Capitulino222f1802006-03-20 22:16:13 -08001744 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001746 if (len < 0)
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001747 return len;
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 i += len;
1750
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001751 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001752 printk(KERN_DEBUG "pktgen: t=%s, count=%lu\n",
1753 name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Luiz Capitulino222f1802006-03-20 22:16:13 -08001755 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07001756 printk(KERN_ERR "pktgen: ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 ret = -EINVAL;
1758 goto out;
1759 }
1760
1761 pg_result = &(t->result[0]);
1762
Luiz Capitulino222f1802006-03-20 22:16:13 -08001763 if (!strcmp(name, "add_device")) {
1764 char f[32];
1765 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001767 if (len < 0) {
1768 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 goto out;
1770 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001771 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 return -EFAULT;
1773 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001774 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001775 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001776 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001777 ret = count;
1778 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 goto out;
1780 }
1781
Luiz Capitulino222f1802006-03-20 22:16:13 -08001782 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001783 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001784 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001785 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001786 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001788 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 goto out;
1790 }
1791
Luiz Capitulino222f1802006-03-20 22:16:13 -08001792 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001793 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001794 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 goto out;
1796 }
1797
1798 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001799out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 return ret;
1801}
1802
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001803static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001805 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
Arjan van de Ven9a321442007-02-12 00:55:35 -08001808static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001809 .owner = THIS_MODULE,
1810 .open = pktgen_thread_open,
1811 .read = seq_read,
1812 .llseek = seq_lseek,
1813 .write = pktgen_thread_write,
1814 .release = single_release,
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001815};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001818static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 struct pktgen_thread *t;
1821 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001822 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001824 list_for_each_entry(t, &pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001825 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001827 if (remove) {
1828 if_lock(t);
1829 pkt_dev->removal_mark = 1;
1830 t->control |= T_REMDEV;
1831 if_unlock(t);
1832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 break;
1834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001836 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001839/*
1840 * mark a device for removal
1841 */
Stephen Hemminger39df2322007-03-04 16:11:51 -08001842static void pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
1844 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001845 const int max_tries = 10, msec_per_try = 125;
1846 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001847
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001848 mutex_lock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001849 pr_debug("pktgen: pktgen_mark_device marking %s for removal\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001850
Luiz Capitulino222f1802006-03-20 22:16:13 -08001851 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001852
1853 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001854 if (pkt_dev == NULL)
1855 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001856
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001857 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001858 pr_debug("pktgen: pktgen_mark_device waiting for %s "
1859 "to disappear....\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001860 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001861 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001862
1863 if (++i >= max_tries) {
David S. Miller25a8b252007-07-30 16:11:48 -07001864 printk(KERN_ERR "pktgen_mark_device: timed out after "
1865 "waiting %d msec for device %s to be removed\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001866 msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001867 break;
1868 }
1869
1870 }
1871
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001872 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001873}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001874
Stephen Hemminger39df2322007-03-04 16:11:51 -08001875static void pktgen_change_name(struct net_device *dev)
1876{
1877 struct pktgen_thread *t;
1878
1879 list_for_each_entry(t, &pktgen_threads, th_list) {
1880 struct pktgen_dev *pkt_dev;
1881
1882 list_for_each_entry(pkt_dev, &t->if_list, list) {
1883 if (pkt_dev->odev != dev)
1884 continue;
1885
1886 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
1887
Alexey Dobriyan29753152009-08-28 23:34:43 -07001888 pkt_dev->entry = proc_create_data(dev->name, 0600,
1889 pg_proc_dir,
1890 &pktgen_if_fops,
1891 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001892 if (!pkt_dev->entry)
1893 printk(KERN_ERR "pktgen: can't move proc "
1894 " entry for '%s'\n", dev->name);
1895 break;
1896 }
1897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Luiz Capitulino222f1802006-03-20 22:16:13 -08001900static int pktgen_device_event(struct notifier_block *unused,
1901 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Stephen Hemminger39df2322007-03-04 16:11:51 -08001903 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001905 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001906 return NOTIFY_DONE;
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 /* It is OK that we do not hold the group lock right now,
1909 * as we run under the RTNL lock.
1910 */
1911
1912 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001913 case NETDEV_CHANGENAME:
1914 pktgen_change_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001918 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 return NOTIFY_DONE;
1923}
1924
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001925static struct net_device *pktgen_dev_get_by_name(struct pktgen_dev *pkt_dev,
1926 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001927{
1928 char b[IFNAMSIZ+5];
1929 int i = 0;
1930
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001931 for (i = 0; ifname[i] != '@'; i++) {
1932 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001933 break;
1934
1935 b[i] = ifname[i];
1936 }
1937 b[i] = 0;
1938
1939 return dev_get_by_name(&init_net, b);
1940}
1941
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943/* Associate pktgen_dev with a device. */
1944
Stephen Hemminger39df2322007-03-04 16:11:51 -08001945static int pktgen_setup_dev(struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001946{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001948 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (pkt_dev->odev) {
1952 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001953 pkt_dev->odev = NULL;
1954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Robert Olssone6fce5b2008-08-07 02:23:01 -07001956 odev = pktgen_dev_get_by_name(pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (!odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001958 printk(KERN_ERR "pktgen: no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001959 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 if (odev->type != ARPHRD_ETHER) {
David S. Miller25a8b252007-07-30 16:11:48 -07001963 printk(KERN_ERR "pktgen: not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001964 err = -EINVAL;
1965 } else if (!netif_running(odev)) {
David S. Miller25a8b252007-07-30 16:11:48 -07001966 printk(KERN_ERR "pktgen: device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001967 err = -ENETDOWN;
1968 } else {
1969 pkt_dev->odev = odev;
1970 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001974 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975}
1976
1977/* Read pkt_dev from the interface and set up internal pktgen_dev
1978 * structure to have the right information to create/send packets
1979 */
1980static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
1981{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001982 int ntxq;
1983
Luiz Capitulino222f1802006-03-20 22:16:13 -08001984 if (!pkt_dev->odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001985 printk(KERN_ERR "pktgen: ERROR: pkt_dev->odev == NULL in "
1986 "setup_inject.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001987 sprintf(pkt_dev->result,
1988 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1989 return;
1990 }
1991
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001992 /* make sure that we don't pick a non-existing transmit queue */
1993 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08001994
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001995 if (ntxq <= pkt_dev->queue_map_min) {
1996 printk(KERN_WARNING "pktgen: WARNING: Requested "
Jesse Brandeburg88271662008-10-28 13:21:51 -07001997 "queue_map_min (zero-based) (%d) exceeds valid range "
1998 "[0 - %d] for (%d) queues on %s, resetting\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001999 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
Eric Dumazet593f63b2009-11-23 01:44:37 +00002000 pkt_dev->odevname);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002001 pkt_dev->queue_map_min = ntxq - 1;
2002 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002003 if (pkt_dev->queue_map_max >= ntxq) {
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002004 printk(KERN_WARNING "pktgen: WARNING: Requested "
Jesse Brandeburg88271662008-10-28 13:21:51 -07002005 "queue_map_max (zero-based) (%d) exceeds valid range "
2006 "[0 - %d] for (%d) queues on %s, resetting\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002007 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
Eric Dumazet593f63b2009-11-23 01:44:37 +00002008 pkt_dev->odevname);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002009 pkt_dev->queue_map_max = ntxq - 1;
2010 }
2011
Luiz Capitulino222f1802006-03-20 22:16:13 -08002012 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002014 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002015 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Luiz Capitulino222f1802006-03-20 22:16:13 -08002017 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002018 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Luiz Capitulino222f1802006-03-20 22:16:13 -08002020 /* Set up pkt size */
2021 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2022
2023 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002025 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 * gets exported
2027 */
2028
2029#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08002030 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 struct inet6_dev *idev;
2032
Luiz Capitulino222f1802006-03-20 22:16:13 -08002033 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2034 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 set = 1;
2036 break;
2037 }
2038
Luiz Capitulino222f1802006-03-20 22:16:13 -08002039 if (!set) {
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 /*
2042 * Use linklevel address if unconfigured.
2043 *
2044 * use ipv6_get_lladdr if/when it's get exported
2045 */
2046
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002047 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002048 idev = __in6_dev_get(pkt_dev->odev);
2049 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 struct inet6_ifaddr *ifp;
2051
2052 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002053 for (ifp = idev->addr_list; ifp;
2054 ifp = ifp->if_next) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08002055 if (ifp->scope == IFA_LINK &&
2056 !(ifp->flags & IFA_F_TENTATIVE)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002057 ipv6_addr_copy(&pkt_dev->
2058 cur_in6_saddr,
2059 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 err = 0;
2061 break;
2062 }
2063 }
2064 read_unlock_bh(&idev->lock);
2065 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002066 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002067 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07002068 printk(KERN_ERR "pktgen: ERROR: IPv6 link "
2069 "address not availble.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 }
2071#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002072 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 pkt_dev->saddr_min = 0;
2074 pkt_dev->saddr_max = 0;
2075 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002076
2077 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002080 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (in_dev) {
2082 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002083 pkt_dev->saddr_min =
2084 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 pkt_dev->saddr_max = pkt_dev->saddr_min;
2086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
2088 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002089 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2091 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2092 }
2093
2094 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2095 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2096 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002097 /* Initialize current values. */
2098 pkt_dev->cur_dst_mac_offset = 0;
2099 pkt_dev->cur_src_mac_offset = 0;
2100 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2101 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2102 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2103 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 pkt_dev->nflows = 0;
2105}
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002108static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2109{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002110 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002111 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002112 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002113
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002114 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2115 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002116
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002117 remaining = ktime_to_us(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002118 if (remaining <= 0) {
2119 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002120 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002121 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002122
Stephen Hemmingeref879792009-09-22 19:41:43 +00002123 start_time = ktime_now();
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002124 if (remaining < 100)
2125 udelay(remaining); /* really small just spin */
2126 else {
2127 /* see do_nanosleep */
2128 hrtimer_init_sleeper(&t, current);
2129 do {
2130 set_current_state(TASK_INTERRUPTIBLE);
2131 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2132 if (!hrtimer_active(&t.timer))
2133 t.task = NULL;
2134
2135 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002138 hrtimer_cancel(&t.timer);
2139 } while (t.task && pkt_dev->running && !signal_pending(current));
2140 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002142 end_time = ktime_now();
2143
2144 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
2145 pkt_dev->next_tx = ktime_add_ns(end_time, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146}
2147
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002148static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2149{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002150 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002151 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2152 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2153 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2154}
2155
Stephen Hemminger648fda72009-08-27 13:55:07 +00002156static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002157{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002158 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002159}
2160
2161static inline int f_pick(struct pktgen_dev *pkt_dev)
2162{
2163 int flow = pkt_dev->curfl;
2164
2165 if (pkt_dev->flags & F_FLOW_SEQ) {
2166 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2167 /* reset time */
2168 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002169 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002170 pkt_dev->curfl += 1;
2171 if (pkt_dev->curfl >= pkt_dev->cflows)
2172 pkt_dev->curfl = 0; /*reset */
2173 }
2174 } else {
2175 flow = random32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002176 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002177
Robert Olsson1211a642008-08-05 18:44:26 -07002178 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002179 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002180 pkt_dev->flows[flow].flags = 0;
2181 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002182 }
2183
2184 return pkt_dev->curfl;
2185}
2186
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002187
2188#ifdef CONFIG_XFRM
2189/* If there was already an IPSEC SA, we keep it as is, else
2190 * we go look for it ...
2191*/
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002192static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002193{
2194 struct xfrm_state *x = pkt_dev->flows[flow].x;
2195 if (!x) {
2196 /*slow path: we dont already have xfrm_state*/
Alexey Dobriyan5447c5e2008-11-25 17:31:51 -08002197 x = xfrm_stateonly_find(&init_net,
2198 (xfrm_address_t *)&pkt_dev->cur_daddr,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002199 (xfrm_address_t *)&pkt_dev->cur_saddr,
2200 AF_INET,
2201 pkt_dev->ipsmode,
2202 pkt_dev->ipsproto, 0);
2203 if (x) {
2204 pkt_dev->flows[flow].x = x;
2205 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002206 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002207 }
2208
2209 }
2210}
2211#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002212static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2213{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002214
2215 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2216 pkt_dev->cur_queue_map = smp_processor_id();
2217
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002218 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002219 __u16 t;
2220 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
2221 t = random32() %
2222 (pkt_dev->queue_map_max -
2223 pkt_dev->queue_map_min + 1)
2224 + pkt_dev->queue_map_min;
2225 } else {
2226 t = pkt_dev->cur_queue_map + 1;
2227 if (t > pkt_dev->queue_map_max)
2228 t = pkt_dev->queue_map_min;
2229 }
2230 pkt_dev->cur_queue_map = t;
2231 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002232 pkt_dev->cur_queue_map = pkt_dev->cur_queue_map % pkt_dev->odev->real_num_tx_queues;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002233}
2234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235/* Increment/randomize headers according to flags and current values
2236 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2237 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002238static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2239{
2240 __u32 imn;
2241 __u32 imx;
2242 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002244 if (pkt_dev->cflows)
2245 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002248 if (pkt_dev->src_mac_count > 1) {
2249 __u32 mc;
2250 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Luiz Capitulino222f1802006-03-20 22:16:13 -08002252 if (pkt_dev->flags & F_MACSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002253 mc = random32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002254 else {
2255 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002256 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002257 pkt_dev->src_mac_count)
2258 pkt_dev->cur_src_mac_offset = 0;
2259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Luiz Capitulino222f1802006-03-20 22:16:13 -08002261 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2262 pkt_dev->hh[11] = tmp;
2263 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2264 pkt_dev->hh[10] = tmp;
2265 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2266 pkt_dev->hh[9] = tmp;
2267 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2268 pkt_dev->hh[8] = tmp;
2269 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2270 pkt_dev->hh[7] = tmp;
2271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Luiz Capitulino222f1802006-03-20 22:16:13 -08002273 /* Deal with Destination MAC */
2274 if (pkt_dev->dst_mac_count > 1) {
2275 __u32 mc;
2276 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Luiz Capitulino222f1802006-03-20 22:16:13 -08002278 if (pkt_dev->flags & F_MACDST_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002279 mc = random32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Luiz Capitulino222f1802006-03-20 22:16:13 -08002281 else {
2282 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002283 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002284 pkt_dev->dst_mac_count) {
2285 pkt_dev->cur_dst_mac_offset = 0;
2286 }
2287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Luiz Capitulino222f1802006-03-20 22:16:13 -08002289 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2290 pkt_dev->hh[5] = tmp;
2291 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2292 pkt_dev->hh[4] = tmp;
2293 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2294 pkt_dev->hh[3] = tmp;
2295 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2296 pkt_dev->hh[2] = tmp;
2297 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2298 pkt_dev->hh[1] = tmp;
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002301 if (pkt_dev->flags & F_MPLS_RND) {
2302 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002303 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002304 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2305 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002306 ((__force __be32)random32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002307 htonl(0x000fffff));
2308 }
2309
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002310 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002311 pkt_dev->vlan_id = random32() & (4096-1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002312 }
2313
2314 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002315 pkt_dev->svlan_id = random32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002316 }
2317
Luiz Capitulino222f1802006-03-20 22:16:13 -08002318 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2319 if (pkt_dev->flags & F_UDPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002320 pkt_dev->cur_udp_src = random32() %
2321 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2322 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Luiz Capitulino222f1802006-03-20 22:16:13 -08002324 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 pkt_dev->cur_udp_src++;
2326 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2327 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002328 }
2329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Luiz Capitulino222f1802006-03-20 22:16:13 -08002331 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2332 if (pkt_dev->flags & F_UDPDST_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002333 pkt_dev->cur_udp_dst = random32() %
2334 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2335 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002336 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002338 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002340 }
2341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
2343 if (!(pkt_dev->flags & F_IPV6)) {
2344
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002345 imn = ntohl(pkt_dev->saddr_min);
2346 imx = ntohl(pkt_dev->saddr_max);
2347 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002349 if (pkt_dev->flags & F_IPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002350 t = random32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 else {
2352 t = ntohl(pkt_dev->cur_saddr);
2353 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002354 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
2358 pkt_dev->cur_saddr = htonl(t);
2359 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002360
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002361 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2363 } else {
Al Viro252e3342006-11-14 20:48:11 -08002364 imn = ntohl(pkt_dev->daddr_min);
2365 imx = ntohl(pkt_dev->daddr_max);
2366 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002368 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (pkt_dev->flags & F_IPDST_RND) {
2370
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002371 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002372 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Joe Perches21cf2252007-12-16 13:44:00 -08002374 while (ipv4_is_loopback(s) ||
2375 ipv4_is_multicast(s) ||
Jan Engelhardt1e637c72008-01-21 03:18:08 -08002376 ipv4_is_lbcast(s) ||
Joe Perches21cf2252007-12-16 13:44:00 -08002377 ipv4_is_zeronet(s) ||
2378 ipv4_is_local_multicast(s)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002379 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002380 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
Al Viro252e3342006-11-14 20:48:11 -08002382 pkt_dev->cur_daddr = s;
2383 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 t = ntohl(pkt_dev->cur_daddr);
2385 t++;
2386 if (t > imx) {
2387 t = imn;
2388 }
2389 pkt_dev->cur_daddr = htonl(t);
2390 }
2391 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002392 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002393 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002394 pkt_dev->flows[flow].cur_daddr =
2395 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002396#ifdef CONFIG_XFRM
2397 if (pkt_dev->flags & F_IPSEC_ON)
2398 get_ipsec_sa(pkt_dev, flow);
2399#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 pkt_dev->nflows++;
2401 }
2402 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002403 } else { /* IPV6 * */
2404
2405 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2406 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2407 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2408 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 else {
2410 int i;
2411
2412 /* Only random destinations yet */
2413
Luiz Capitulino222f1802006-03-20 22:16:13 -08002414 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002416 (((__force __be32)random32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002417 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2418 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 }
2422
Luiz Capitulino222f1802006-03-20 22:16:13 -08002423 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2424 __u32 t;
2425 if (pkt_dev->flags & F_TXSIZE_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002426 t = random32() %
2427 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2428 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002429 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002431 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002433 }
2434 pkt_dev->cur_pkt_size = t;
2435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002437 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 pkt_dev->flows[flow].count++;
2440}
2441
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002442
2443#ifdef CONFIG_XFRM
2444static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2445{
2446 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2447 int err = 0;
2448 struct iphdr *iph;
2449
2450 if (!x)
2451 return 0;
2452 /* XXX: we dont support tunnel mode for now until
2453 * we resolve the dst issue */
2454 if (x->props.mode != XFRM_MODE_TRANSPORT)
2455 return 0;
2456
2457 spin_lock(&x->lock);
2458 iph = ip_hdr(skb);
2459
Herbert Xu13996372007-10-17 21:35:51 -07002460 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002461 if (err)
2462 goto error;
2463 err = x->type->output(x, skb);
2464 if (err)
2465 goto error;
2466
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002467 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002468 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002469error:
2470 spin_unlock(&x->lock);
2471 return err;
2472}
2473
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002474static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002475{
2476 if (pkt_dev->cflows) {
2477 /* let go of the SAs if we have them */
2478 int i = 0;
Florian Westphal5b5f7922009-05-21 15:07:12 -07002479 for (; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002480 struct xfrm_state *x = pkt_dev->flows[i].x;
2481 if (x) {
2482 xfrm_state_put(x);
2483 pkt_dev->flows[i].x = NULL;
2484 }
2485 }
2486 }
2487}
2488
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002489static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002490 struct sk_buff *skb, __be16 protocol)
2491{
2492 if (pkt_dev->flags & F_IPSEC_ON) {
2493 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2494 int nhead = 0;
2495 if (x) {
2496 int ret;
2497 __u8 *eth;
2498 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002499 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002500 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2501 if (ret < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -07002502 printk(KERN_ERR "Error expanding "
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002503 "ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002504 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002505 }
2506 }
2507
2508 /* ipsec is not expecting ll header */
2509 skb_pull(skb, ETH_HLEN);
2510 ret = pktgen_output_ipsec(skb, pkt_dev);
2511 if (ret) {
David S. Miller25a8b252007-07-30 16:11:48 -07002512 printk(KERN_ERR "Error creating ipsec "
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002513 "packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002514 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002515 }
2516 /* restore ll */
2517 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2518 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002519 *(u16 *) &eth[12] = protocol;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002520 }
2521 }
2522 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002523err:
2524 kfree_skb(skb);
2525 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002526}
2527#endif
2528
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002529static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2530{
2531 unsigned i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002532 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002533 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002534
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002535 mpls--;
2536 *mpls |= MPLS_STACK_BOTTOM;
2537}
2538
Al Viro0f37c602006-11-03 03:49:56 -08002539static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2540 unsigned int prio)
2541{
2542 return htons(id | (cfi << 12) | (prio << 13));
2543}
2544
Luiz Capitulino222f1802006-03-20 22:16:13 -08002545static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2546 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
2548 struct sk_buff *skb = NULL;
2549 __u8 *eth;
2550 struct udphdr *udph;
2551 int datalen, iplen;
2552 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002553 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002554 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002555 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002556 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2557 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2558 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2559 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002560 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002561
2562 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002563 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002564
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002565 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002566 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002567
Robert Olsson64053be2005-06-26 15:27:10 -07002568 /* Update any of the values, used when we're incrementing various
2569 * fields.
2570 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002571 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002572 mod_cur_headers(pkt_dev);
2573
David S. Miller7ac54592006-01-18 14:19:10 -08002574 datalen = (odev->hard_header_len + 16) & ~0xf;
Stephen Hemmingere4707572009-08-27 13:55:13 +00002575 skb = __netdev_alloc_skb(odev,
2576 pkt_dev->cur_pkt_size + 64
2577 + datalen + pkt_dev->pkt_overhead, GFP_NOWAIT);
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));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002611 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002612 iph = ip_hdr(skb);
2613 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002616 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002618 /* Eth + IPh + UDPh + mpls */
2619 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002620 pkt_dev->pkt_overhead;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002621 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002623
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 udph->source = htons(pkt_dev->cur_udp_src);
2625 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002626 udph->len = htons(datalen + 8); /* DATA + udphdr */
2627 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
2629 iph->ihl = 5;
2630 iph->version = 4;
2631 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002632 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002633 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 iph->saddr = pkt_dev->cur_saddr;
2635 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002636 iph->id = htons(pkt_dev->ip_id);
2637 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 iph->frag_off = 0;
2639 iplen = 20 + 8 + datalen;
2640 iph->tot_len = htons(iplen);
2641 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002642 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002643 skb->protocol = protocol;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002644 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002645 pkt_dev->pkt_overhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 skb->dev = odev;
2647 skb->pkt_type = PACKET_HOST;
2648
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002649 if (pkt_dev->nfrags <= 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002650 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002651 memset(pgh + 1, 0, datalen - sizeof(struct pktgen_hdr));
2652 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 int frags = pkt_dev->nfrags;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002654 int i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Luiz Capitulino222f1802006-03-20 22:16:13 -08002656 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 if (frags > MAX_SKB_FRAGS)
2659 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002660 if (datalen > frags * PAGE_SIZE) {
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002661 len = datalen - frags * PAGE_SIZE;
2662 memset(skb_put(skb, len), 0, len);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002663 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
2665
2666 i = 0;
2667 while (datalen > 0) {
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002668 struct page *page = alloc_pages(GFP_KERNEL | __GFP_ZERO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 skb_shinfo(skb)->frags[i].page = page;
2670 skb_shinfo(skb)->frags[i].page_offset = 0;
2671 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002672 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 datalen -= skb_shinfo(skb)->frags[i].size;
2674 skb->len += skb_shinfo(skb)->frags[i].size;
2675 skb->data_len += skb_shinfo(skb)->frags[i].size;
2676 i++;
2677 skb_shinfo(skb)->nr_frags = i;
2678 }
2679
2680 while (i < frags) {
2681 int rem;
2682
2683 if (i == 0)
2684 break;
2685
2686 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2687 if (rem == 0)
2688 break;
2689
2690 skb_shinfo(skb)->frags[i - 1].size -= rem;
2691
Luiz Capitulino222f1802006-03-20 22:16:13 -08002692 skb_shinfo(skb)->frags[i] =
2693 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002695 skb_shinfo(skb)->frags[i].page =
2696 skb_shinfo(skb)->frags[i - 1].page;
2697 skb_shinfo(skb)->frags[i].page_offset +=
2698 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 skb_shinfo(skb)->frags[i].size = rem;
2700 i++;
2701 skb_shinfo(skb)->nr_frags = i;
2702 }
2703 }
2704
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002705 /* Stamp the time, and sequence number,
2706 * convert them to network byte order
2707 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002708 if (pgh) {
2709 struct timeval timestamp;
2710
2711 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2712 pgh->seq_num = htonl(pkt_dev->seq_num);
2713
2714 do_gettimeofday(&timestamp);
2715 pgh->tv_sec = htonl(timestamp.tv_sec);
2716 pgh->tv_usec = htonl(timestamp.tv_usec);
2717 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002718
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002719#ifdef CONFIG_XFRM
2720 if (!process_ipsec(pkt_dev, skb, protocol))
2721 return NULL;
2722#endif
2723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 return skb;
2725}
2726
2727/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002728 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2730 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002731 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 * Should be candidate for net/ipv4/utils.c
2733 * --ro
2734 */
2735
Luiz Capitulino222f1802006-03-20 22:16:13 -08002736static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737{
2738 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002739 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 unsigned long u;
2741 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002742 unsigned int prefixlen = 0;
2743 unsigned int suffixlen = 0;
Al Viro252e3342006-11-14 20:48:11 -08002744 __be32 tmp;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002745 char *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Luiz Capitulino222f1802006-03-20 22:16:13 -08002747 for (i = 0; i < 16; i++)
2748 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 for (;;) {
2751 if (*s == ':') {
2752 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002753 if (s[1] == ':') { /* Found "::", skip to part 2 */
2754 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 len++;
2756 break;
2757 }
2758 s++;
2759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002761 u = simple_strtoul(s, &pos, 16);
2762 i = pos - s;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002763 if (!i)
2764 return 0;
2765 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
2767 /* the last 4 bytes may be written as IPv4 address */
2768
2769 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002770 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2771 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 }
2773 ip[prefixlen++] = (u >> 8);
2774 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002775 s += i;
2776 len += i;
2777 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 return len;
2779 }
2780
2781/* part 2, after "::" */
2782 for (;;) {
2783 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002784 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 break;
2786 s++;
2787 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002788 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 break;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002790
2791 u = simple_strtol(s, &pos, 16);
2792 i = pos - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 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 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002906 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002907
2908 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002909 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002910
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002911 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002912 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002913
Robert Olsson64053be2005-06-26 15:27:10 -07002914 /* Update any of the values, used when we're incrementing various
2915 * fields.
2916 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002917 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002918 mod_cur_headers(pkt_dev);
2919
Stephen Hemmingere4707572009-08-27 13:55:13 +00002920 skb = __netdev_alloc_skb(odev,
2921 pkt_dev->cur_pkt_size + 64
2922 + 16 + pkt_dev->pkt_overhead, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 if (!skb) {
2924 sprintf(pkt_dev->result, "No memory");
2925 return NULL;
2926 }
2927
2928 skb_reserve(skb, 16);
2929
2930 /* Reserve for ethernet and IP header */
2931 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002932 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2933 if (pkt_dev->nr_labels)
2934 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002935
2936 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002937 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002938 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002939 *svlan_tci = build_tci(pkt_dev->svlan_id,
2940 pkt_dev->svlan_cfi,
2941 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002942 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002943 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002944 }
2945 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002946 *vlan_tci = build_tci(pkt_dev->vlan_id,
2947 pkt_dev->vlan_cfi,
2948 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002949 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002950 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002951 }
2952
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002953 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002954 skb->transport_header = skb->network_header + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002955 skb_put(skb, sizeof(struct ipv6hdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002956 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002957 iph = ipv6_hdr(skb);
2958 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002961 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002962
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002963 /* Eth + IPh + UDPh + mpls */
2964 datalen = pkt_dev->cur_pkt_size - 14 -
2965 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002966 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Luiz Capitulino222f1802006-03-20 22:16:13 -08002968 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 datalen = sizeof(struct pktgen_hdr);
2970 if (net_ratelimit())
Luiz Capitulino222f1802006-03-20 22:16:13 -08002971 printk(KERN_INFO "pktgen: increased datalen to %d\n",
2972 datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
2974
2975 udph->source = htons(pkt_dev->cur_udp_src);
2976 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002977 udph->len = htons(datalen + sizeof(struct udphdr));
2978 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002980 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002982 if (pkt_dev->traffic_class) {
2983 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002984 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002985 }
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 iph->hop_limit = 32;
2988
2989 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
2990 iph->nexthdr = IPPROTO_UDP;
2991
2992 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
2993 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
2994
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002995 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002996 pkt_dev->pkt_overhead);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002997 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 skb->dev = odev;
2999 skb->pkt_type = PACKET_HOST;
3000
Luiz Capitulino222f1802006-03-20 22:16:13 -08003001 if (pkt_dev->nfrags <= 0)
3002 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 else {
3004 int frags = pkt_dev->nfrags;
3005 int i;
3006
Luiz Capitulino222f1802006-03-20 22:16:13 -08003007 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
3008
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 if (frags > MAX_SKB_FRAGS)
3010 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003011 if (datalen > frags * PAGE_SIZE) {
3012 skb_put(skb, datalen - frags * PAGE_SIZE);
3013 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 }
3015
3016 i = 0;
3017 while (datalen > 0) {
3018 struct page *page = alloc_pages(GFP_KERNEL, 0);
3019 skb_shinfo(skb)->frags[i].page = page;
3020 skb_shinfo(skb)->frags[i].page_offset = 0;
3021 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08003022 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 datalen -= skb_shinfo(skb)->frags[i].size;
3024 skb->len += skb_shinfo(skb)->frags[i].size;
3025 skb->data_len += skb_shinfo(skb)->frags[i].size;
3026 i++;
3027 skb_shinfo(skb)->nr_frags = i;
3028 }
3029
3030 while (i < frags) {
3031 int rem;
3032
3033 if (i == 0)
3034 break;
3035
3036 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
3037 if (rem == 0)
3038 break;
3039
3040 skb_shinfo(skb)->frags[i - 1].size -= rem;
3041
Luiz Capitulino222f1802006-03-20 22:16:13 -08003042 skb_shinfo(skb)->frags[i] =
3043 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003045 skb_shinfo(skb)->frags[i].page =
3046 skb_shinfo(skb)->frags[i - 1].page;
3047 skb_shinfo(skb)->frags[i].page_offset +=
3048 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 skb_shinfo(skb)->frags[i].size = rem;
3050 i++;
3051 skb_shinfo(skb)->nr_frags = i;
3052 }
3053 }
3054
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003055 /* Stamp the time, and sequence number,
3056 * convert them to network byte order
3057 * should we update cloned packets too ?
3058 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003059 if (pgh) {
3060 struct timeval timestamp;
3061
3062 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
3063 pgh->seq_num = htonl(pkt_dev->seq_num);
3064
3065 do_gettimeofday(&timestamp);
3066 pgh->tv_sec = htonl(timestamp.tv_sec);
3067 pgh->tv_usec = htonl(timestamp.tv_usec);
3068 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003069 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003070
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 return skb;
3072}
3073
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003074static struct sk_buff *fill_packet(struct net_device *odev,
3075 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003077 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 return fill_packet_ipv6(odev, pkt_dev);
3079 else
3080 return fill_packet_ipv4(odev, pkt_dev);
3081}
3082
Luiz Capitulino222f1802006-03-20 22:16:13 -08003083static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003085 pkt_dev->seq_num = 1;
3086 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003088 pkt_dev->tx_bytes = 0;
3089 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090}
3091
3092/* Set up structure for sending pkts, clear counters */
3093
3094static void pktgen_run(struct pktgen_thread *t)
3095{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003096 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 int started = 0;
3098
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003099 pr_debug("pktgen: entering pktgen_run. %p\n", t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003102 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
3104 /*
3105 * setup odev and create initial packet.
3106 */
3107 pktgen_setup_inject(pkt_dev);
3108
Luiz Capitulino222f1802006-03-20 22:16:13 -08003109 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003111 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003113 pkt_dev->started_at =
3114 pkt_dev->next_tx = ktime_now();
3115
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003116 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 strcpy(pkt_dev->result, "Starting");
3119 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003120 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 strcpy(pkt_dev->result, "Error starting");
3122 }
3123 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003124 if (started)
3125 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126}
3127
3128static void pktgen_stop_all_threads_ifs(void)
3129{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003130 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003132 pr_debug("pktgen: entering pktgen_stop_all_threads_ifs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003134 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003135
3136 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003137 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003138
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003139 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140}
3141
Stephen Hemminger648fda72009-08-27 13:55:07 +00003142static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003144 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003146 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00003147 if (pkt_dev->running)
3148 return 1;
3149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150}
3151
Luiz Capitulino222f1802006-03-20 22:16:13 -08003152static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003154 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Luiz Capitulino222f1802006-03-20 22:16:13 -08003156 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
Luiz Capitulino222f1802006-03-20 22:16:13 -08003158 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Luiz Capitulino222f1802006-03-20 22:16:13 -08003160 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Luiz Capitulino222f1802006-03-20 22:16:13 -08003162 if (signal_pending(current))
3163 goto signal;
3164 if_lock(t);
3165 }
3166 if_unlock(t);
3167 return 1;
3168signal:
3169 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170}
3171
3172static int pktgen_wait_all_threads_run(void)
3173{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003174 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003176
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003177 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003178
3179 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003181 if (sig == 0)
3182 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003184
3185 if (sig == 0)
3186 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003188
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003189 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 return sig;
3191}
3192
3193static void pktgen_run_all_threads(void)
3194{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003195 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003197 pr_debug("pktgen: entering pktgen_run_all_threads.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003199 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003201 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003203
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003204 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003206 /* Propagate thread->control */
3207 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 pktgen_wait_all_threads_run();
3210}
3211
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003212static void pktgen_reset_all_threads(void)
3213{
3214 struct pktgen_thread *t;
3215
3216 pr_debug("pktgen: entering pktgen_reset_all_threads.\n");
3217
3218 mutex_lock(&pktgen_thread_lock);
3219
3220 list_for_each_entry(t, &pktgen_threads, th_list)
3221 t->control |= (T_REMDEVALL);
3222
3223 mutex_unlock(&pktgen_thread_lock);
3224
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003225 /* Propagate thread->control */
3226 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003227
3228 pktgen_wait_all_threads_run();
3229}
3230
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3232{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003233 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003234 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003235 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3236 pkt_dev->started_at);
3237 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003239 p += sprintf(p, "OK: %llu(c%llu+d%llu) nsec, %llu (%dbyte,%dfrags)\n",
3240 (unsigned long long)ktime_to_us(elapsed),
3241 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3242 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003243 (unsigned long long)pkt_dev->sofar,
3244 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003246 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3247 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Luiz Capitulino222f1802006-03-20 22:16:13 -08003249 bps = pps * 8 * pkt_dev->cur_pkt_size;
3250
3251 mbps = bps;
3252 do_div(mbps, 1000000);
3253 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3254 (unsigned long long)pps,
3255 (unsigned long long)mbps,
3256 (unsigned long long)bps,
3257 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003261static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003263 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003264
Luiz Capitulino222f1802006-03-20 22:16:13 -08003265 if (!pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003266 printk(KERN_WARNING "pktgen: interface: %s is already "
Eric Dumazet593f63b2009-11-23 01:44:37 +00003267 "stopped\n", pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003268 return -EINVAL;
3269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003271 kfree_skb(pkt_dev->skb);
3272 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003273 pkt_dev->stopped_at = ktime_now();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003274 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003276 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Luiz Capitulino222f1802006-03-20 22:16:13 -08003278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279}
3280
Luiz Capitulino222f1802006-03-20 22:16:13 -08003281static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003283 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003284
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 if_lock(t);
3286
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003287 list_for_each_entry(pkt_dev, &t->if_list, list) {
3288 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003289 continue;
3290 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003291 best = pkt_dev;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003292 else if (ktime_lt(pkt_dev->next_tx, best->next_tx))
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003293 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 }
3295 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003296 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297}
3298
Luiz Capitulino222f1802006-03-20 22:16:13 -08003299static void pktgen_stop(struct pktgen_thread *t)
3300{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003301 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003303 pr_debug("pktgen: entering pktgen_stop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Luiz Capitulino222f1802006-03-20 22:16:13 -08003305 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003307 list_for_each_entry(pkt_dev, &t->if_list, list) {
3308 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
Luiz Capitulino222f1802006-03-20 22:16:13 -08003311 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312}
3313
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003314/*
3315 * one of our devices needs to be removed - find it
3316 * and remove it
3317 */
3318static void pktgen_rem_one_if(struct pktgen_thread *t)
3319{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003320 struct list_head *q, *n;
3321 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003322
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003323 pr_debug("pktgen: entering pktgen_rem_one_if\n");
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003324
3325 if_lock(t);
3326
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003327 list_for_each_safe(q, n, &t->if_list) {
3328 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003329
Luiz Capitulino222f1802006-03-20 22:16:13 -08003330 if (!cur->removal_mark)
3331 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003332
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003333 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003334 cur->skb = NULL;
3335
3336 pktgen_remove_device(t, cur);
3337
3338 break;
3339 }
3340
3341 if_unlock(t);
3342}
3343
Luiz Capitulino222f1802006-03-20 22:16:13 -08003344static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003346 struct list_head *q, *n;
3347 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003348
3349 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003350
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003351 pr_debug("pktgen: entering pktgen_rem_all_ifs\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003352 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003354 list_for_each_safe(q, n, &t->if_list) {
3355 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003356
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003357 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003358 cur->skb = NULL;
3359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 pktgen_remove_device(t, cur);
3361 }
3362
Luiz Capitulino222f1802006-03-20 22:16:13 -08003363 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
Luiz Capitulino222f1802006-03-20 22:16:13 -08003366static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003368 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
David S. Milleree74baa2007-01-01 20:51:53 -08003370 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003372 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003374 list_del(&t->th_list);
3375
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003376 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377}
3378
Stephen Hemmingeref879792009-09-22 19:41:43 +00003379static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003380{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003381 ktime_t idle_start = ktime_now();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003382 schedule();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003383 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003384}
3385
Stephen Hemmingeref879792009-09-22 19:41:43 +00003386static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3387{
3388 ktime_t idle_start = ktime_now();
3389
3390 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3391 if (signal_pending(current))
3392 break;
3393
3394 if (need_resched())
3395 pktgen_resched(pkt_dev);
3396 else
3397 cpu_relax();
3398 }
3399 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
3400}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003401
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003402static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403{
Stephen Hemminger00829822008-11-20 20:14:53 -08003404 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003405 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003406 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003407 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003408 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 int ret;
3410
Stephen Hemmingeref879792009-09-22 19:41:43 +00003411 /* If device is offline, then don't send */
3412 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3413 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003414 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003416
Stephen Hemmingeref879792009-09-22 19:41:43 +00003417 /* This is max DELAY, this has special meaning of
3418 * "never transmit"
3419 */
3420 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
3421 pkt_dev->next_tx = ktime_add_ns(ktime_now(), ULONG_MAX);
3422 return;
3423 }
3424
3425 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003426 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3427 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3428 /* build a new pkt */
3429 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003430
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003431 pkt_dev->skb = fill_packet(odev, pkt_dev);
3432 if (pkt_dev->skb == NULL) {
3433 printk(KERN_ERR "pktgen: ERROR: couldn't "
3434 "allocate skb in fill_packet.\n");
3435 schedule();
3436 pkt_dev->clone_count--; /* back out increment, OOM */
3437 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003439 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003440 pkt_dev->allocated_skbs++;
3441 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003443
Stephen Hemmingeref879792009-09-22 19:41:43 +00003444 if (pkt_dev->delay && pkt_dev->last_ok)
3445 spin(pkt_dev, pkt_dev->next_tx);
3446
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003447 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3448 txq = netdev_get_tx_queue(odev, queue_map);
3449
3450 __netif_tx_lock_bh(txq);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003451
Eric Dumazet0835acf2009-09-30 13:03:33 +00003452 if (unlikely(netif_tx_queue_stopped(txq) || netif_tx_queue_frozen(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003453 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003454 pkt_dev->last_ok = 0;
3455 goto unlock;
3456 }
3457 atomic_inc(&(pkt_dev->skb->users));
3458 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Stephen Hemmingeref879792009-09-22 19:41:43 +00003460 switch (ret) {
3461 case NETDEV_TX_OK:
3462 txq_trans_update(txq);
3463 pkt_dev->last_ok = 1;
3464 pkt_dev->sofar++;
3465 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003466 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003467 break;
3468 default: /* Drivers are not supposed to return other values! */
3469 if (net_ratelimit())
3470 pr_info("pktgen: %s xmit error: %d\n",
Eric Dumazet593f63b2009-11-23 01:44:37 +00003471 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003472 pkt_dev->errors++;
3473 /* fallthru */
3474 case NETDEV_TX_LOCKED:
3475 case NETDEV_TX_BUSY:
3476 /* Retry it next time */
3477 atomic_dec(&(pkt_dev->skb->users));
3478 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003479 }
Eric Dumazet0835acf2009-09-30 13:03:33 +00003480unlock:
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003481 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 /* If pkt_dev->count is zero, then run forever */
3484 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003485 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 /* Done with this */
3488 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003489 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003490}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003492/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 * Main loop of the thread goes here
3494 */
3495
David S. Milleree74baa2007-01-01 20:51:53 -08003496static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497{
3498 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003499 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003500 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502
David S. Milleree74baa2007-01-01 20:51:53 -08003503 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
3505 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003506 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003508 pr_debug("pktgen: starting pktgen/%d: pid=%d\n",
3509 cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
David S. Milleree74baa2007-01-01 20:51:53 -08003511 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003512
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003513 set_freezable();
3514
David S. Milleree74baa2007-01-01 20:51:53 -08003515 while (!kthread_should_stop()) {
3516 pkt_dev = next_to_run(t);
3517
Stephen Hemmingeref879792009-09-22 19:41:43 +00003518 if (unlikely(!pkt_dev && t->control == 0)) {
3519 wait_event_interruptible_timeout(t->queue,
3520 t->control != 0,
3521 HZ/10);
3522 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003523 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003524
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 __set_current_state(TASK_RUNNING);
3526
Stephen Hemmingeref879792009-09-22 19:41:43 +00003527 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 pktgen_xmit(pkt_dev);
3529
Stephen Hemmingeref879792009-09-22 19:41:43 +00003530 if (need_resched())
3531 pktgen_resched(pkt_dev);
3532 else
3533 cpu_relax();
3534 }
3535
Luiz Capitulino222f1802006-03-20 22:16:13 -08003536 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 pktgen_stop(t);
3538 t->control &= ~(T_STOP);
3539 }
3540
Luiz Capitulino222f1802006-03-20 22:16:13 -08003541 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 pktgen_run(t);
3543 t->control &= ~(T_RUN);
3544 }
3545
Luiz Capitulino222f1802006-03-20 22:16:13 -08003546 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003548 t->control &= ~(T_REMDEVALL);
3549 }
3550
Luiz Capitulino222f1802006-03-20 22:16:13 -08003551 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003552 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 t->control &= ~(T_REMDEV);
3554 }
3555
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003556 try_to_freeze();
3557
David S. Milleree74baa2007-01-01 20:51:53 -08003558 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003561 pr_debug("pktgen: %s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003562 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003564 pr_debug("pktgen: %s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003565 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003567 pr_debug("pktgen: %s removing thread.\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003568 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003569
David S. Milleree74baa2007-01-01 20:51:53 -08003570 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571}
3572
Luiz Capitulino222f1802006-03-20 22:16:13 -08003573static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003574 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003576 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003577 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Eric Dumazet3e984842009-11-24 14:50:53 -08003579 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003580 list_for_each_entry(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003581 if (strncmp(p->odevname, ifname, len) == 0) {
3582 if (p->odevname[len]) {
3583 if (exact || p->odevname[len] != '@')
3584 continue;
3585 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003586 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003587 break;
3588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
Luiz Capitulino222f1802006-03-20 22:16:13 -08003590 if_unlock(t);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003591 pr_debug("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003592 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593}
3594
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003595/*
3596 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 */
3598
Luiz Capitulino222f1802006-03-20 22:16:13 -08003599static int add_dev_to_thread(struct pktgen_thread *t,
3600 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601{
3602 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Luiz Capitulino222f1802006-03-20 22:16:13 -08003604 if_lock(t);
3605
3606 if (pkt_dev->pg_thread) {
David S. Miller25a8b252007-07-30 16:11:48 -07003607 printk(KERN_ERR "pktgen: ERROR: already assigned "
3608 "to a thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003609 rv = -EBUSY;
3610 goto out;
3611 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003612
3613 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003614 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 pkt_dev->running = 0;
3616
Luiz Capitulino222f1802006-03-20 22:16:13 -08003617out:
3618 if_unlock(t);
3619 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620}
3621
3622/* Called under thread lock */
3623
Luiz Capitulino222f1802006-03-20 22:16:13 -08003624static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003626 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003627 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003628 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 /* We don't allow a device to be on several threads */
3631
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003632 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3633 if (pkt_dev) {
David S. Miller25a8b252007-07-30 16:11:48 -07003634 printk(KERN_ERR "pktgen: ERROR: interface already used.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003635 return -EBUSY;
3636 }
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003637
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003638 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003639 if (!pkt_dev)
3640 return -ENOMEM;
3641
Eric Dumazet593f63b2009-11-23 01:44:37 +00003642 strcpy(pkt_dev->odevname, ifname);
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003643 pkt_dev->flows = vmalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
3644 node);
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003645 if (pkt_dev->flows == NULL) {
3646 kfree(pkt_dev);
3647 return -ENOMEM;
3648 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003649 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003650
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003651 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003652 pkt_dev->min_pkt_size = ETH_ZLEN;
3653 pkt_dev->max_pkt_size = ETH_ZLEN;
3654 pkt_dev->nfrags = 0;
3655 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003656 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003657 pkt_dev->count = pg_count_d;
3658 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003659 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003660 pkt_dev->udp_src_max = 9;
3661 pkt_dev->udp_dst_min = 9;
3662 pkt_dev->udp_dst_max = 9;
3663
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003664 pkt_dev->vlan_p = 0;
3665 pkt_dev->vlan_cfi = 0;
3666 pkt_dev->vlan_id = 0xffff;
3667 pkt_dev->svlan_p = 0;
3668 pkt_dev->svlan_cfi = 0;
3669 pkt_dev->svlan_id = 0xffff;
3670
Stephen Hemminger39df2322007-03-04 16:11:51 -08003671 err = pktgen_setup_dev(pkt_dev, ifname);
3672 if (err)
3673 goto out1;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003674
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003675 pkt_dev->entry = proc_create_data(ifname, 0600, pg_proc_dir,
3676 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003677 if (!pkt_dev->entry) {
David S. Miller25a8b252007-07-30 16:11:48 -07003678 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003679 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003680 err = -EINVAL;
3681 goto out2;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003682 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003683#ifdef CONFIG_XFRM
3684 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3685 pkt_dev->ipsproto = IPPROTO_ESP;
3686#endif
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003687
3688 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003689out2:
3690 dev_put(pkt_dev->odev);
3691out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003692#ifdef CONFIG_XFRM
3693 free_SAs(pkt_dev);
3694#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003695 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003696 kfree(pkt_dev);
3697 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698}
3699
David S. Milleree74baa2007-01-01 20:51:53 -08003700static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003702 struct pktgen_thread *t;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003703 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003704 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003706 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3707 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003708 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07003709 printk(KERN_ERR "pktgen: ERROR: out of memory, can't "
3710 "create new thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003711 return -ENOMEM;
3712 }
3713
Luiz Capitulino222f1802006-03-20 22:16:13 -08003714 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003716
David S. Milleree74baa2007-01-01 20:51:53 -08003717 INIT_LIST_HEAD(&t->if_list);
3718
3719 list_add_tail(&t->th_list, &pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003720 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003721
3722 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3723 if (IS_ERR(p)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003724 printk(KERN_ERR "pktgen: kernel_thread() failed "
3725 "for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003726 list_del(&t->th_list);
3727 kfree(t);
3728 return PTR_ERR(p);
3729 }
3730 kthread_bind(p, cpu);
3731 t->tsk = p;
3732
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003733 pe = proc_create_data(t->tsk->comm, 0600, pg_proc_dir,
3734 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003735 if (!pe) {
David S. Miller25a8b252007-07-30 16:11:48 -07003736 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003737 PG_PROC_DIR, t->tsk->comm);
3738 kthread_stop(p);
3739 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003740 kfree(t);
3741 return -EINVAL;
3742 }
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003743
David S. Milleree74baa2007-01-01 20:51:53 -08003744 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003745 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746
3747 return 0;
3748}
3749
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003750/*
3751 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003753static void _rem_dev_from_if_list(struct pktgen_thread *t,
3754 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003756 struct list_head *q, *n;
3757 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003759 list_for_each_safe(q, n, &t->if_list) {
3760 p = list_entry(q, struct pktgen_dev, list);
3761 if (p == pkt_dev)
3762 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 }
3764}
3765
Luiz Capitulino222f1802006-03-20 22:16:13 -08003766static int pktgen_remove_device(struct pktgen_thread *t,
3767 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768{
3769
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003770 pr_debug("pktgen: remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Luiz Capitulino222f1802006-03-20 22:16:13 -08003772 if (pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003773 printk(KERN_WARNING "pktgen: WARNING: trying to remove a "
3774 "running interface, stopping it now.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003775 pktgen_stop_device(pkt_dev);
3776 }
3777
3778 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
3780 if (pkt_dev->odev) {
3781 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003782 pkt_dev->odev = NULL;
3783 }
3784
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 /* And update the thread if_list */
3786
3787 _rem_dev_from_if_list(t, pkt_dev);
3788
Stephen Hemminger39df2322007-03-04 16:11:51 -08003789 if (pkt_dev->entry)
3790 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003792#ifdef CONFIG_XFRM
3793 free_SAs(pkt_dev);
3794#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003795 vfree(pkt_dev->flows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003797 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798}
3799
Luiz Capitulino222f1802006-03-20 22:16:13 -08003800static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801{
3802 int cpu;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003803 struct proc_dir_entry *pe;
3804
David S. Miller25a8b252007-07-30 16:11:48 -07003805 printk(KERN_INFO "%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003807 pg_proc_dir = proc_mkdir(PG_PROC_DIR, init_net.proc_net);
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003808 if (!pg_proc_dir)
3809 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
Wang Chen25296d52008-02-28 14:11:49 -08003811 pe = proc_create(PGCTRL, 0600, pg_proc_dir, &pktgen_fops);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003812 if (pe == NULL) {
David S. Miller25a8b252007-07-30 16:11:48 -07003813 printk(KERN_ERR "pktgen: ERROR: cannot create %s "
3814 "procfs entry.\n", PGCTRL);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003815 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003816 return -EINVAL;
3817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 /* Register us to receive netdevice events */
3820 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003821
John Hawkes670c02c2005-10-13 09:30:31 -07003822 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003823 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
David S. Milleree74baa2007-01-01 20:51:53 -08003825 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003826 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07003827 printk(KERN_WARNING "pktgen: WARNING: Cannot create "
3828 "thread for cpu %d (%d)\n", cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003829 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003830
3831 if (list_empty(&pktgen_threads)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003832 printk(KERN_ERR "pktgen: ERROR: Initialization failed for "
3833 "all threads\n");
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003834 unregister_netdevice_notifier(&pktgen_notifier_block);
3835 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003836 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003837 return -ENODEV;
3838 }
3839
Luiz Capitulino222f1802006-03-20 22:16:13 -08003840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841}
3842
3843static void __exit pg_cleanup(void)
3844{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003845 struct pktgen_thread *t;
3846 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 wait_queue_head_t queue;
3848 init_waitqueue_head(&queue);
3849
Luiz Capitulino222f1802006-03-20 22:16:13 -08003850 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003852 list_for_each_safe(q, n, &pktgen_threads) {
3853 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003854 kthread_stop(t->tsk);
3855 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
Luiz Capitulino222f1802006-03-20 22:16:13 -08003858 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 unregister_netdevice_notifier(&pktgen_notifier_block);
3860
Luiz Capitulino222f1802006-03-20 22:16:13 -08003861 /* Clean up proc file system */
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003862 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003863 proc_net_remove(&init_net, PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864}
3865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866module_init(pg_init);
3867module_exit(pg_cleanup);
3868
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003869MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870MODULE_DESCRIPTION("Packet Generator tool");
3871MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003872MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003874MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003876MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003878MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003880MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");