blob: 421857c8c07190b7280d0ba8282068038d343910 [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 Hemmingerd50a6b562005-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 Hemmingerd50a6b562005-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 Viro252e33462006-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 Viro252e33462006-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 Viro252e33462006-11-14 20:48:11 -0800336 __be32 cur_saddr;
337 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800338 __u16 cur_udp_dst;
339 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700340 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800341 __u32 cur_pkt_size;
342
343 __u8 hh[14];
344 /* = {
345 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
346
347 We fill in SRC address later
348 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
349 0x08, 0x00
350 };
351 */
352 __u16 pad; /* pad out the hh struct to an even 16 bytes */
353
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000354 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800355 * are transmitting the same one multiple times
356 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000357 struct net_device *odev; /* The out-going device.
358 * Note that the device should have it's
359 * pg_info pointer pointing back to this
360 * device.
361 * Set when the user specifies the out-going
362 * device name (not when the inject is
363 * started as it used to do.)
364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800366 unsigned cflows; /* Concurrent flows (config) */
367 unsigned lflow; /* Flow length (config) */
368 unsigned nflows; /* accumulated flows (stats) */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700369 unsigned curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700370
371 u16 queue_map_min;
372 u16 queue_map_max;
373
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700374#ifdef CONFIG_XFRM
375 __u8 ipsmode; /* IPSEC mode (config) */
376 __u8 ipsproto; /* IPSEC type (config) */
377#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800378 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379};
380
381struct pktgen_hdr {
Al Viro252e33462006-11-14 20:48:11 -0800382 __be32 pgh_magic;
383 __be32 seq_num;
384 __be32 tv_sec;
385 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
388struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000389 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a80162006-03-20 22:18:16 -0800390 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800391 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800392 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800393 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000395 /* Field for thread to receive "posted" events terminate,
396 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800397
398 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 int cpu;
400
Luiz Capitulino222f1802006-03-20 22:16:13 -0800401 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700402 struct completion start_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403};
404
405#define REMOVE 1
406#define FIND 0
407
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000408static inline ktime_t ktime_now(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000410 struct timespec ts;
411 ktime_get_ts(&ts);
412
413 return timespec_to_ktime(ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000416/* This works even if 32 bit because of careful byte order choice */
417static inline int ktime_lt(const ktime_t cmp1, const ktime_t cmp2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000419 return cmp1.tv64 < cmp2.tv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000422static const char version[] =
423 "pktgen " VERSION ": Packet Generator for packet performance testing.\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Luiz Capitulino222f1802006-03-20 22:16:13 -0800425static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
426static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
427static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
428 const char *ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
430static void pktgen_run_all_threads(void);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800431static void pktgen_reset_all_threads(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432static void pktgen_stop_all_threads_ifs(void);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000433
Luiz Capitulino222f1802006-03-20 22:16:13 -0800434static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800436
Luiz Capitulino222f1802006-03-20 22:16:13 -0800437static unsigned int scan_ip6(const char *s, char ip[16]);
438static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000441static int pg_count_d __read_mostly = 1000;
442static int pg_delay_d __read_mostly;
443static int pg_clone_skb_d __read_mostly;
444static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Luiz Capitulino222fa072006-03-20 22:24:27 -0800446static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800447static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449static struct notifier_block pktgen_notifier_block = {
450 .notifier_call = pktgen_device_event,
451};
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900454 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 *
456 */
457
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700458static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800459{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000460 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000464static ssize_t pgctrl_write(struct file *file, const char __user *buf,
465 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700468 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Luiz Capitulino222f1802006-03-20 22:16:13 -0800470 if (!capable(CAP_NET_ADMIN)) {
471 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700475 if (count > sizeof(data))
476 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700479 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700480 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800481 }
482 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Luiz Capitulino222f1802006-03-20 22:16:13 -0800484 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 pktgen_stop_all_threads_ifs();
486
Luiz Capitulino222f1802006-03-20 22:16:13 -0800487 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 pktgen_run_all_threads();
489
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800490 else if (!strcmp(data, "reset"))
491 pktgen_reset_all_threads();
492
Luiz Capitulino222f1802006-03-20 22:16:13 -0800493 else
David S. Miller25a8b252007-07-30 16:11:48 -0700494 printk(KERN_WARNING "pktgen: Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 err = count;
497
Luiz Capitulino222f1802006-03-20 22:16:13 -0800498out:
499 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700502static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700504 return single_open(file, pgctrl_show, PDE(inode)->data);
505}
506
Arjan van de Ven9a321442007-02-12 00:55:35 -0800507static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800508 .owner = THIS_MODULE,
509 .open = pgctrl_open,
510 .read = seq_read,
511 .llseek = seq_lseek,
512 .write = pgctrl_write,
513 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700514};
515
516static int pktgen_if_show(struct seq_file *seq, void *v)
517{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000518 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000519 ktime_t stopped;
520 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Luiz Capitulino222f1802006-03-20 22:16:13 -0800522 seq_printf(seq,
523 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
524 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
525 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Luiz Capitulino222f1802006-03-20 22:16:13 -0800527 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000528 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
529 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Stephen Hemminger39df2322007-03-04 16:11:51 -0800530 pkt_dev->clone_skb, pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Luiz Capitulino222f1802006-03-20 22:16:13 -0800532 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
533 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Robert Olsson45b270f2007-08-28 15:45:55 -0700535 seq_printf(seq,
536 " queue_map_min: %u queue_map_max: %u\n",
537 pkt_dev->queue_map_min,
538 pkt_dev->queue_map_max);
539
Luiz Capitulino222f1802006-03-20 22:16:13 -0800540 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800542 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
543 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
544 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
545 seq_printf(seq,
546 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
547 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Luiz Capitulino222f1802006-03-20 22:16:13 -0800549 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
550 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
551 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
552 seq_printf(seq,
553 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
554 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000556 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800557 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000558 " dst_min: %s dst_max: %s\n",
559 pkt_dev->dst_min, pkt_dev->dst_max);
560 seq_printf(seq,
561 " src_min: %s src_max: %s\n",
562 pkt_dev->src_min, pkt_dev->src_max);
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700565 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Johannes Berge1749612008-10-27 15:59:26 -0700567 seq_printf(seq, "%pM ",
568 is_zero_ether_addr(pkt_dev->src_mac) ?
569 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Luiz Capitulino222f1802006-03-20 22:16:13 -0800571 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700572 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Luiz Capitulino222f1802006-03-20 22:16:13 -0800574 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000575 " udp_src_min: %d udp_src_max: %d"
576 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800577 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
578 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Luiz Capitulino222f1802006-03-20 22:16:13 -0800580 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800581 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700582 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800584 if (pkt_dev->nr_labels) {
585 unsigned i;
586 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700587 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800588 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
589 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
590 }
591
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000592 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700593 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000594 pkt_dev->vlan_id, pkt_dev->vlan_p,
595 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700596
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000597 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700598 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000599 pkt_dev->svlan_id, pkt_dev->svlan_p,
600 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700601
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000602 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700603 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700604
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000605 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700606 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700607
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800608 seq_printf(seq, " Flags: ");
609
Luiz Capitulino222f1802006-03-20 22:16:13 -0800610 if (pkt_dev->flags & F_IPV6)
611 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Luiz Capitulino222f1802006-03-20 22:16:13 -0800613 if (pkt_dev->flags & F_IPSRC_RND)
614 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Luiz Capitulino222f1802006-03-20 22:16:13 -0800616 if (pkt_dev->flags & F_IPDST_RND)
617 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Luiz Capitulino222f1802006-03-20 22:16:13 -0800619 if (pkt_dev->flags & F_TXSIZE_RND)
620 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Luiz Capitulino222f1802006-03-20 22:16:13 -0800622 if (pkt_dev->flags & F_UDPSRC_RND)
623 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Luiz Capitulino222f1802006-03-20 22:16:13 -0800625 if (pkt_dev->flags & F_UDPDST_RND)
626 seq_printf(seq, "UDPDST_RND ");
627
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800628 if (pkt_dev->flags & F_MPLS_RND)
629 seq_printf(seq, "MPLS_RND ");
630
Robert Olsson45b270f2007-08-28 15:45:55 -0700631 if (pkt_dev->flags & F_QUEUE_MAP_RND)
632 seq_printf(seq, "QUEUE_MAP_RND ");
633
Robert Olssone6fce5b2008-08-07 02:23:01 -0700634 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
635 seq_printf(seq, "QUEUE_MAP_CPU ");
636
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700637 if (pkt_dev->cflows) {
638 if (pkt_dev->flags & F_FLOW_SEQ)
639 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
640 else
641 seq_printf(seq, "FLOW_RND ");
642 }
643
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700644#ifdef CONFIG_XFRM
645 if (pkt_dev->flags & F_IPSEC_ON)
646 seq_printf(seq, "IPSEC ");
647#endif
648
Luiz Capitulino222f1802006-03-20 22:16:13 -0800649 if (pkt_dev->flags & F_MACSRC_RND)
650 seq_printf(seq, "MACSRC_RND ");
651
652 if (pkt_dev->flags & F_MACDST_RND)
653 seq_printf(seq, "MACDST_RND ");
654
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700655 if (pkt_dev->flags & F_VID_RND)
656 seq_printf(seq, "VID_RND ");
657
658 if (pkt_dev->flags & F_SVID_RND)
659 seq_printf(seq, "SVID_RND ");
660
Luiz Capitulino222f1802006-03-20 22:16:13 -0800661 seq_puts(seq, "\n");
662
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000663 /* not really stopped, more like last-running-at */
664 stopped = pkt_dev->running ? ktime_now() : pkt_dev->stopped_at;
665 idle = pkt_dev->idle_acc;
666 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800667
668 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000669 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800670 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000671 (unsigned long long)pkt_dev->errors);
672
673 seq_printf(seq,
674 " started: %lluus stopped: %lluus idle: %lluus\n",
675 (unsigned long long) ktime_to_us(pkt_dev->started_at),
676 (unsigned long long) ktime_to_us(stopped),
677 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800678
679 seq_printf(seq,
680 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700681 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
682 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Luiz Capitulino222f1802006-03-20 22:16:13 -0800684 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
687 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
688 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
689 } else
690 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700691 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Luiz Capitulino222f1802006-03-20 22:16:13 -0800693 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700694 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Robert Olsson45b270f2007-08-28 15:45:55 -0700696 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
697
Luiz Capitulino222f1802006-03-20 22:16:13 -0800698 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800701 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800703 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800708
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000709static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
710 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800711{
712 int i = 0;
713 *num = 0;
714
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700715 for (; i < maxlen; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800716 char c;
717 *num <<= 4;
718 if (get_user(c, &user_buffer[i]))
719 return -EFAULT;
720 if ((c >= '0') && (c <= '9'))
721 *num |= c - '0';
722 else if ((c >= 'a') && (c <= 'f'))
723 *num |= c - 'a' + 10;
724 else if ((c >= 'A') && (c <= 'F'))
725 *num |= c - 'A' + 10;
726 else
727 break;
728 }
729 return i;
730}
731
Luiz Capitulino222f1802006-03-20 22:16:13 -0800732static int count_trail_chars(const char __user * user_buffer,
733 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 int i;
736
737 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800738 char c;
739 if (get_user(c, &user_buffer[i]))
740 return -EFAULT;
741 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 case '\"':
743 case '\n':
744 case '\r':
745 case '\t':
746 case ' ':
747 case '=':
748 break;
749 default:
750 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753done:
754 return i;
755}
756
Luiz Capitulino222f1802006-03-20 22:16:13 -0800757static unsigned long num_arg(const char __user * user_buffer,
758 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 int i = 0;
761 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800762
763 for (; i < maxlen; i++) {
764 char c;
765 if (get_user(c, &user_buffer[i]))
766 return -EFAULT;
767 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800769 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 } else
771 break;
772 }
773 return i;
774}
775
Luiz Capitulino222f1802006-03-20 22:16:13 -0800776static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 int i = 0;
779
Luiz Capitulino222f1802006-03-20 22:16:13 -0800780 for (; i < maxlen; i++) {
781 char c;
782 if (get_user(c, &user_buffer[i]))
783 return -EFAULT;
784 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 case '\"':
786 case '\n':
787 case '\r':
788 case '\t':
789 case ' ':
790 goto done_str;
791 break;
792 default:
793 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return i;
798}
799
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800800static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
801{
802 unsigned n = 0;
803 char c;
804 ssize_t i = 0;
805 int len;
806
807 pkt_dev->nr_labels = 0;
808 do {
809 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700810 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800811 if (len <= 0)
812 return len;
813 pkt_dev->labels[n] = htonl(tmp);
814 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
815 pkt_dev->flags |= F_MPLS_RND;
816 i += len;
817 if (get_user(c, &buffer[i]))
818 return -EFAULT;
819 i++;
820 n++;
821 if (n >= MAX_MPLS_LABELS)
822 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700823 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800824
825 pkt_dev->nr_labels = n;
826 return i;
827}
828
Luiz Capitulino222f1802006-03-20 22:16:13 -0800829static ssize_t pktgen_if_write(struct file *file,
830 const char __user * user_buffer, size_t count,
831 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800833 struct seq_file *seq = (struct seq_file *)file->private_data;
834 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 int i = 0, max, len;
836 char name[16], valstr[32];
837 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800838 char *pg_result = NULL;
839 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800841
842 pg_result = &(pkt_dev->result[0]);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (count < 1) {
David S. Miller25a8b252007-07-30 16:11:48 -0700845 printk(KERN_WARNING "pktgen: wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -EINVAL;
847 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 max = count - i;
850 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800851 if (tmp < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -0700852 printk(KERN_WARNING "pktgen: illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800853 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800855 i += tmp;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* Read variable name */
858
859 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000860 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800861 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800864 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return -EFAULT;
866 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800867
868 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800870 if (len < 0)
871 return len;
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 i += len;
874
875 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800876 char tb[count + 1];
877 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879 tb[count] = 0;
David S. Miller25a8b252007-07-30 16:11:48 -0700880 printk(KERN_DEBUG "pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800881 (unsigned long)count, tb);
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if (!strcmp(name, "min_pkt_size")) {
885 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000886 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800887 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800890 if (value < 14 + 20 + 8)
891 value = 14 + 20 + 8;
892 if (value != pkt_dev->min_pkt_size) {
893 pkt_dev->min_pkt_size = value;
894 pkt_dev->cur_pkt_size = value;
895 }
896 sprintf(pg_result, "OK: min_pkt_size=%u",
897 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return count;
899 }
900
Luiz Capitulino222f1802006-03-20 22:16:13 -0800901 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000903 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800904 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800907 if (value < 14 + 20 + 8)
908 value = 14 + 20 + 8;
909 if (value != pkt_dev->max_pkt_size) {
910 pkt_dev->max_pkt_size = value;
911 pkt_dev->cur_pkt_size = value;
912 }
913 sprintf(pg_result, "OK: max_pkt_size=%u",
914 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return count;
916 }
917
Luiz Capitulino222f1802006-03-20 22:16:13 -0800918 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (!strcmp(name, "pkt_size")) {
921 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000922 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800923 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800926 if (value < 14 + 20 + 8)
927 value = 14 + 20 + 8;
928 if (value != pkt_dev->min_pkt_size) {
929 pkt_dev->min_pkt_size = value;
930 pkt_dev->max_pkt_size = value;
931 pkt_dev->cur_pkt_size = value;
932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
934 return count;
935 }
936
Luiz Capitulino222f1802006-03-20 22:16:13 -0800937 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000939 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800940 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800943 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 sprintf(pg_result, "OK: debug=%u", debug);
945 return count;
946 }
947
Luiz Capitulino222f1802006-03-20 22:16:13 -0800948 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000950 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800951 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 i += len;
954 pkt_dev->nfrags = value;
955 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
956 return count;
957 }
958 if (!strcmp(name, "delay")) {
959 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000960 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800961 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000964 if (value == 0x7FFFFFFF)
965 pkt_dev->delay = ULLONG_MAX;
966 else
967 pkt_dev->delay = (u64)value * NSEC_PER_USEC;
968
969 sprintf(pg_result, "OK: delay=%llu",
970 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return count;
972 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800973 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000975 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800976 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800979 if (value != pkt_dev->udp_src_min) {
980 pkt_dev->udp_src_min = value;
981 pkt_dev->cur_udp_src = value;
982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
984 return count;
985 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800986 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000988 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800989 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800992 if (value != pkt_dev->udp_dst_min) {
993 pkt_dev->udp_dst_min = value;
994 pkt_dev->cur_udp_dst = value;
995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
997 return count;
998 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800999 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001001 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001002 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001005 if (value != pkt_dev->udp_src_max) {
1006 pkt_dev->udp_src_max = value;
1007 pkt_dev->cur_udp_src = value;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1010 return count;
1011 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001012 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001014 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001015 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001018 if (value != pkt_dev->udp_dst_max) {
1019 pkt_dev->udp_dst_max = value;
1020 pkt_dev->cur_udp_dst = value;
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1023 return count;
1024 }
1025 if (!strcmp(name, "clone_skb")) {
1026 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001027 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001028 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001031 pkt_dev->clone_skb = value;
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1034 return count;
1035 }
1036 if (!strcmp(name, "count")) {
1037 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001038 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001039 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 i += len;
1042 pkt_dev->count = value;
1043 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001044 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return count;
1046 }
1047 if (!strcmp(name, "src_mac_count")) {
1048 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001049 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001050 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 i += len;
1053 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001054 pkt_dev->src_mac_count = value;
1055 pkt_dev->cur_src_mac_offset = 0;
1056 }
1057 sprintf(pg_result, "OK: src_mac_count=%d",
1058 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return count;
1060 }
1061 if (!strcmp(name, "dst_mac_count")) {
1062 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001063 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001064 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 i += len;
1067 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001068 pkt_dev->dst_mac_count = value;
1069 pkt_dev->cur_dst_mac_offset = 0;
1070 }
1071 sprintf(pg_result, "OK: dst_mac_count=%d",
1072 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return count;
1074 }
1075 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001076 char f[32];
1077 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001079 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001080 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (copy_from_user(f, &user_buffer[i], len))
1083 return -EFAULT;
1084 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001085 if (strcmp(f, "IPSRC_RND") == 0)
1086 pkt_dev->flags |= F_IPSRC_RND;
1087
1088 else if (strcmp(f, "!IPSRC_RND") == 0)
1089 pkt_dev->flags &= ~F_IPSRC_RND;
1090
1091 else if (strcmp(f, "TXSIZE_RND") == 0)
1092 pkt_dev->flags |= F_TXSIZE_RND;
1093
1094 else if (strcmp(f, "!TXSIZE_RND") == 0)
1095 pkt_dev->flags &= ~F_TXSIZE_RND;
1096
1097 else if (strcmp(f, "IPDST_RND") == 0)
1098 pkt_dev->flags |= F_IPDST_RND;
1099
1100 else if (strcmp(f, "!IPDST_RND") == 0)
1101 pkt_dev->flags &= ~F_IPDST_RND;
1102
1103 else if (strcmp(f, "UDPSRC_RND") == 0)
1104 pkt_dev->flags |= F_UDPSRC_RND;
1105
1106 else if (strcmp(f, "!UDPSRC_RND") == 0)
1107 pkt_dev->flags &= ~F_UDPSRC_RND;
1108
1109 else if (strcmp(f, "UDPDST_RND") == 0)
1110 pkt_dev->flags |= F_UDPDST_RND;
1111
1112 else if (strcmp(f, "!UDPDST_RND") == 0)
1113 pkt_dev->flags &= ~F_UDPDST_RND;
1114
1115 else if (strcmp(f, "MACSRC_RND") == 0)
1116 pkt_dev->flags |= F_MACSRC_RND;
1117
1118 else if (strcmp(f, "!MACSRC_RND") == 0)
1119 pkt_dev->flags &= ~F_MACSRC_RND;
1120
1121 else if (strcmp(f, "MACDST_RND") == 0)
1122 pkt_dev->flags |= F_MACDST_RND;
1123
1124 else if (strcmp(f, "!MACDST_RND") == 0)
1125 pkt_dev->flags &= ~F_MACDST_RND;
1126
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001127 else if (strcmp(f, "MPLS_RND") == 0)
1128 pkt_dev->flags |= F_MPLS_RND;
1129
1130 else if (strcmp(f, "!MPLS_RND") == 0)
1131 pkt_dev->flags &= ~F_MPLS_RND;
1132
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001133 else if (strcmp(f, "VID_RND") == 0)
1134 pkt_dev->flags |= F_VID_RND;
1135
1136 else if (strcmp(f, "!VID_RND") == 0)
1137 pkt_dev->flags &= ~F_VID_RND;
1138
1139 else if (strcmp(f, "SVID_RND") == 0)
1140 pkt_dev->flags |= F_SVID_RND;
1141
1142 else if (strcmp(f, "!SVID_RND") == 0)
1143 pkt_dev->flags &= ~F_SVID_RND;
1144
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001145 else if (strcmp(f, "FLOW_SEQ") == 0)
1146 pkt_dev->flags |= F_FLOW_SEQ;
1147
Robert Olsson45b270f2007-08-28 15:45:55 -07001148 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1149 pkt_dev->flags |= F_QUEUE_MAP_RND;
1150
1151 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1152 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001153
1154 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1155 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1156
1157 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1158 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001159#ifdef CONFIG_XFRM
1160 else if (strcmp(f, "IPSEC") == 0)
1161 pkt_dev->flags |= F_IPSEC_ON;
1162#endif
1163
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001164 else if (strcmp(f, "!IPV6") == 0)
1165 pkt_dev->flags &= ~F_IPV6;
1166
Luiz Capitulino222f1802006-03-20 22:16:13 -08001167 else {
1168 sprintf(pg_result,
1169 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1170 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001171 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001172 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001173 return count;
1174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1176 return count;
1177 }
1178 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1179 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001180 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001181 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Luiz Capitulino222f1802006-03-20 22:16:13 -08001183 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001185 buf[len] = 0;
1186 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1187 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1188 strncpy(pkt_dev->dst_min, buf, len);
1189 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1190 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1191 }
1192 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001193 printk(KERN_DEBUG "pktgen: dst_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001194 pkt_dev->dst_min);
1195 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1197 return count;
1198 }
1199 if (!strcmp(name, "dst_max")) {
1200 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001201 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001202 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Luiz Capitulino222f1802006-03-20 22:16:13 -08001205 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return -EFAULT;
1207
Luiz Capitulino222f1802006-03-20 22:16:13 -08001208 buf[len] = 0;
1209 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1210 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1211 strncpy(pkt_dev->dst_max, buf, len);
1212 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1213 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1214 }
1215 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001216 printk(KERN_DEBUG "pktgen: dst_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001217 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 i += len;
1219 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1220 return count;
1221 }
1222 if (!strcmp(name, "dst6")) {
1223 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001224 if (len < 0)
1225 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 pkt_dev->flags |= F_IPV6;
1228
Luiz Capitulino222f1802006-03-20 22:16:13 -08001229 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001231 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001234 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1237
Luiz Capitulino222f1802006-03-20 22:16:13 -08001238 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001239 printk(KERN_DEBUG "pktgen: dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Luiz Capitulino222f1802006-03-20 22:16:13 -08001241 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 sprintf(pg_result, "OK: dst6=%s", buf);
1243 return count;
1244 }
1245 if (!strcmp(name, "dst6_min")) {
1246 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001247 if (len < 0)
1248 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 pkt_dev->flags |= F_IPV6;
1251
Luiz Capitulino222f1802006-03-20 22:16:13 -08001252 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001254 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001257 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Luiz Capitulino222f1802006-03-20 22:16:13 -08001259 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1260 &pkt_dev->min_in6_daddr);
1261 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001262 printk(KERN_DEBUG "pktgen: dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Luiz Capitulino222f1802006-03-20 22:16:13 -08001264 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 sprintf(pg_result, "OK: dst6_min=%s", buf);
1266 return count;
1267 }
1268 if (!strcmp(name, "dst6_max")) {
1269 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001270 if (len < 0)
1271 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 pkt_dev->flags |= F_IPV6;
1274
Luiz Capitulino222f1802006-03-20 22:16:13 -08001275 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001277 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Luiz Capitulino222f1802006-03-20 22:16:13 -08001282 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001283 printk(KERN_DEBUG "pktgen: dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Luiz Capitulino222f1802006-03-20 22:16:13 -08001285 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 sprintf(pg_result, "OK: dst6_max=%s", buf);
1287 return count;
1288 }
1289 if (!strcmp(name, "src6")) {
1290 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001291 if (len < 0)
1292 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 pkt_dev->flags |= F_IPV6;
1295
Luiz Capitulino222f1802006-03-20 22:16:13 -08001296 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001298 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001301 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1304
Luiz Capitulino222f1802006-03-20 22:16:13 -08001305 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001306 printk(KERN_DEBUG "pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001307
1308 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 sprintf(pg_result, "OK: src6=%s", buf);
1310 return count;
1311 }
1312 if (!strcmp(name, "src_min")) {
1313 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001314 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001315 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001316
Luiz Capitulino222f1802006-03-20 22:16:13 -08001317 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001319 buf[len] = 0;
1320 if (strcmp(buf, pkt_dev->src_min) != 0) {
1321 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1322 strncpy(pkt_dev->src_min, buf, len);
1323 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1324 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1325 }
1326 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001327 printk(KERN_DEBUG "pktgen: src_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001328 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 i += len;
1330 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1331 return count;
1332 }
1333 if (!strcmp(name, "src_max")) {
1334 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001335 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001336 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001337
Luiz Capitulino222f1802006-03-20 22:16:13 -08001338 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001340 buf[len] = 0;
1341 if (strcmp(buf, pkt_dev->src_max) != 0) {
1342 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1343 strncpy(pkt_dev->src_max, buf, len);
1344 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1345 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1346 }
1347 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001348 printk(KERN_DEBUG "pktgen: src_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001349 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 i += len;
1351 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1352 return count;
1353 }
1354 if (!strcmp(name, "dst_mac")) {
1355 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001356 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001358 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001361 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001362 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001365 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return -EFAULT;
1367 i += len;
1368
Luiz Capitulino222f1802006-03-20 22:16:13 -08001369 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (*v >= '0' && *v <= '9') {
1371 *m *= 16;
1372 *m += *v - '0';
1373 }
1374 if (*v >= 'A' && *v <= 'F') {
1375 *m *= 16;
1376 *m += *v - 'A' + 10;
1377 }
1378 if (*v >= 'a' && *v <= 'f') {
1379 *m *= 16;
1380 *m += *v - 'a' + 10;
1381 }
1382 if (*v == ':') {
1383 m++;
1384 *m = 0;
1385 }
1386 }
1387
1388 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001389 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1390 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 sprintf(pg_result, "OK: dstmac");
1393 return count;
1394 }
1395 if (!strcmp(name, "src_mac")) {
1396 char *v = valstr;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001397 unsigned char old_smac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 unsigned char *m = pkt_dev->src_mac;
1399
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001400 memcpy(old_smac, pkt_dev->src_mac, ETH_ALEN);
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001403 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001404 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001407 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return -EFAULT;
1409 i += len;
1410
Luiz Capitulino222f1802006-03-20 22:16:13 -08001411 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (*v >= '0' && *v <= '9') {
1413 *m *= 16;
1414 *m += *v - '0';
1415 }
1416 if (*v >= 'A' && *v <= 'F') {
1417 *m *= 16;
1418 *m += *v - 'A' + 10;
1419 }
1420 if (*v >= 'a' && *v <= 'f') {
1421 *m *= 16;
1422 *m += *v - 'a' + 10;
1423 }
1424 if (*v == ':') {
1425 m++;
1426 *m = 0;
1427 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001430 /* Set up Src MAC */
1431 if (compare_ether_addr(old_smac, pkt_dev->src_mac))
1432 memcpy(&(pkt_dev->hh[6]), pkt_dev->src_mac, ETH_ALEN);
1433
Luiz Capitulino222f1802006-03-20 22:16:13 -08001434 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return count;
1436 }
1437
Luiz Capitulino222f1802006-03-20 22:16:13 -08001438 if (!strcmp(name, "clear_counters")) {
1439 pktgen_clear_counters(pkt_dev);
1440 sprintf(pg_result, "OK: Clearing counters.\n");
1441 return count;
1442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 if (!strcmp(name, "flows")) {
1445 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001446 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001447 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 i += len;
1450 if (value > MAX_CFLOWS)
1451 value = MAX_CFLOWS;
1452
1453 pkt_dev->cflows = value;
1454 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1455 return count;
1456 }
1457
1458 if (!strcmp(name, "flowlen")) {
1459 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001460 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001461 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 i += len;
1464 pkt_dev->lflow = value;
1465 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1466 return count;
1467 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001468
Robert Olsson45b270f2007-08-28 15:45:55 -07001469 if (!strcmp(name, "queue_map_min")) {
1470 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001471 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001472 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001473
Robert Olsson45b270f2007-08-28 15:45:55 -07001474 i += len;
1475 pkt_dev->queue_map_min = value;
1476 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1477 return count;
1478 }
1479
1480 if (!strcmp(name, "queue_map_max")) {
1481 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001482 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001483 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001484
Robert Olsson45b270f2007-08-28 15:45:55 -07001485 i += len;
1486 pkt_dev->queue_map_max = value;
1487 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1488 return count;
1489 }
1490
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001491 if (!strcmp(name, "mpls")) {
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001492 unsigned n, cnt;
1493
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001494 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001495 if (len < 0)
1496 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001497 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001498 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001499 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001500 cnt += sprintf(pg_result + cnt,
1501 "%08x%s", ntohl(pkt_dev->labels[n]),
1502 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001503
1504 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1505 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1506 pkt_dev->svlan_id = 0xffff;
1507
1508 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001509 printk(KERN_DEBUG "pktgen: VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001510 }
1511 return count;
1512 }
1513
1514 if (!strcmp(name, "vlan_id")) {
1515 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001516 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001517 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001518
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001519 i += len;
1520 if (value <= 4095) {
1521 pkt_dev->vlan_id = value; /* turn on VLAN */
1522
1523 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001524 printk(KERN_DEBUG "pktgen: VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001525
1526 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001527 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001528
1529 pkt_dev->nr_labels = 0; /* turn off MPLS */
1530 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1531 } else {
1532 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1533 pkt_dev->svlan_id = 0xffff;
1534
1535 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001536 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001537 }
1538 return count;
1539 }
1540
1541 if (!strcmp(name, "vlan_p")) {
1542 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001543 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001544 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001545
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001546 i += len;
1547 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1548 pkt_dev->vlan_p = value;
1549 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1550 } else {
1551 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1552 }
1553 return count;
1554 }
1555
1556 if (!strcmp(name, "vlan_cfi")) {
1557 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001558 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001559 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001560
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001561 i += len;
1562 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1563 pkt_dev->vlan_cfi = value;
1564 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1565 } else {
1566 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1567 }
1568 return count;
1569 }
1570
1571 if (!strcmp(name, "svlan_id")) {
1572 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001573 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001574 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001575
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001576 i += len;
1577 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1578 pkt_dev->svlan_id = value; /* turn on SVLAN */
1579
1580 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001581 printk(KERN_DEBUG "pktgen: SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001582
1583 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001584 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001585
1586 pkt_dev->nr_labels = 0; /* turn off MPLS */
1587 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1588 } else {
1589 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1590 pkt_dev->svlan_id = 0xffff;
1591
1592 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001593 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001594 }
1595 return count;
1596 }
1597
1598 if (!strcmp(name, "svlan_p")) {
1599 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001600 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001601 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001602
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001603 i += len;
1604 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1605 pkt_dev->svlan_p = value;
1606 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1607 } else {
1608 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1609 }
1610 return count;
1611 }
1612
1613 if (!strcmp(name, "svlan_cfi")) {
1614 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001615 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001616 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001617
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001618 i += len;
1619 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1620 pkt_dev->svlan_cfi = value;
1621 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1622 } else {
1623 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1624 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001625 return count;
1626 }
1627
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001628 if (!strcmp(name, "tos")) {
1629 __u32 tmp_value = 0;
1630 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001631 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001632 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001633
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001634 i += len;
1635 if (len == 2) {
1636 pkt_dev->tos = tmp_value;
1637 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1638 } else {
1639 sprintf(pg_result, "ERROR: tos must be 00-ff");
1640 }
1641 return count;
1642 }
1643
1644 if (!strcmp(name, "traffic_class")) {
1645 __u32 tmp_value = 0;
1646 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001647 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001648 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001649
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001650 i += len;
1651 if (len == 2) {
1652 pkt_dev->traffic_class = tmp_value;
1653 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1654 } else {
1655 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1656 }
1657 return count;
1658 }
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1661 return -EINVAL;
1662}
1663
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001664static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001666 return single_open(file, pktgen_if_show, PDE(inode)->data);
1667}
1668
Arjan van de Ven9a321442007-02-12 00:55:35 -08001669static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001670 .owner = THIS_MODULE,
1671 .open = pktgen_if_open,
1672 .read = seq_read,
1673 .llseek = seq_lseek,
1674 .write = pktgen_if_write,
1675 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001676};
1677
1678static int pktgen_thread_show(struct seq_file *seq, void *v)
1679{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001680 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001681 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001683 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Luiz Capitulino222f1802006-03-20 22:16:13 -08001685 seq_printf(seq, "Running: ");
1686
1687 if_lock(t);
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08001688 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001689 if (pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001690 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Luiz Capitulino222f1802006-03-20 22:16:13 -08001692 seq_printf(seq, "\nStopped: ");
1693
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08001694 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001695 if (!pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001696 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001699 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001701 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Luiz Capitulino222f1802006-03-20 22:16:13 -08001703 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001708static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001709 const char __user * user_buffer,
1710 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001712 struct seq_file *seq = (struct seq_file *)file->private_data;
1713 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 int i = 0, max, len, ret;
1715 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001716 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001719 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 return -EINVAL;
1721 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001724 len = count_trail_chars(&user_buffer[i], max);
1725 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001726 return len;
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 /* Read variable name */
1731
1732 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001733 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001734 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 memset(name, 0, sizeof(name));
1737 if (copy_from_user(name, &user_buffer[i], len))
1738 return -EFAULT;
1739 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001740
Luiz Capitulino222f1802006-03-20 22:16:13 -08001741 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001744 return len;
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 i += len;
1747
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001748 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001749 printk(KERN_DEBUG "pktgen: t=%s, count=%lu\n",
1750 name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Luiz Capitulino222f1802006-03-20 22:16:13 -08001752 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07001753 printk(KERN_ERR "pktgen: ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 ret = -EINVAL;
1755 goto out;
1756 }
1757
1758 pg_result = &(t->result[0]);
1759
Luiz Capitulino222f1802006-03-20 22:16:13 -08001760 if (!strcmp(name, "add_device")) {
1761 char f[32];
1762 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001764 if (len < 0) {
1765 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 goto out;
1767 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001768 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return -EFAULT;
1770 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001771 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001772 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001773 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001774 ret = count;
1775 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 goto out;
1777 }
1778
Luiz Capitulino222f1802006-03-20 22:16:13 -08001779 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001780 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001781 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001782 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001783 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001785 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 goto out;
1787 }
1788
Luiz Capitulino222f1802006-03-20 22:16:13 -08001789 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001790 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001791 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 goto out;
1793 }
1794
1795 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001796out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return ret;
1798}
1799
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001800static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001802 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
1804
Arjan van de Ven9a321442007-02-12 00:55:35 -08001805static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001806 .owner = THIS_MODULE,
1807 .open = pktgen_thread_open,
1808 .read = seq_read,
1809 .llseek = seq_lseek,
1810 .write = pktgen_thread_write,
1811 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001812};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001815static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816{
1817 struct pktgen_thread *t;
1818 struct pktgen_dev *pkt_dev = NULL;
1819
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001820 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 pkt_dev = pktgen_find_dev(t, ifname);
1822 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001823 if (remove) {
1824 if_lock(t);
1825 pkt_dev->removal_mark = 1;
1826 t->control |= T_REMDEV;
1827 if_unlock(t);
1828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 break;
1830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001832 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001835/*
1836 * mark a device for removal
1837 */
Stephen Hemminger39df2322007-03-04 16:11:51 -08001838static void pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
1840 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001841 const int max_tries = 10, msec_per_try = 125;
1842 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001843
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001844 mutex_lock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001845 pr_debug("pktgen: pktgen_mark_device marking %s for removal\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001846
Luiz Capitulino222f1802006-03-20 22:16:13 -08001847 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001848
1849 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001850 if (pkt_dev == NULL)
1851 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001852
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001853 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001854 pr_debug("pktgen: pktgen_mark_device waiting for %s "
1855 "to disappear....\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001856 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001857 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001858
1859 if (++i >= max_tries) {
David S. Miller25a8b252007-07-30 16:11:48 -07001860 printk(KERN_ERR "pktgen_mark_device: timed out after "
1861 "waiting %d msec for device %s to be removed\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001862 msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001863 break;
1864 }
1865
1866 }
1867
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001868 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001869}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001870
Stephen Hemminger39df2322007-03-04 16:11:51 -08001871static void pktgen_change_name(struct net_device *dev)
1872{
1873 struct pktgen_thread *t;
1874
1875 list_for_each_entry(t, &pktgen_threads, th_list) {
1876 struct pktgen_dev *pkt_dev;
1877
1878 list_for_each_entry(pkt_dev, &t->if_list, list) {
1879 if (pkt_dev->odev != dev)
1880 continue;
1881
1882 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
1883
Alexey Dobriyan29753152009-08-28 23:34:43 -07001884 pkt_dev->entry = proc_create_data(dev->name, 0600,
1885 pg_proc_dir,
1886 &pktgen_if_fops,
1887 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001888 if (!pkt_dev->entry)
1889 printk(KERN_ERR "pktgen: can't move proc "
1890 " entry for '%s'\n", dev->name);
1891 break;
1892 }
1893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895
Luiz Capitulino222f1802006-03-20 22:16:13 -08001896static int pktgen_device_event(struct notifier_block *unused,
1897 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Stephen Hemminger39df2322007-03-04 16:11:51 -08001899 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001901 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001902 return NOTIFY_DONE;
1903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 /* It is OK that we do not hold the group lock right now,
1905 * as we run under the RTNL lock.
1906 */
1907
1908 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001909 case NETDEV_CHANGENAME:
1910 pktgen_change_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001914 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 return NOTIFY_DONE;
1919}
1920
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001921static struct net_device *pktgen_dev_get_by_name(struct pktgen_dev *pkt_dev,
1922 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001923{
1924 char b[IFNAMSIZ+5];
1925 int i = 0;
1926
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001927 for (i = 0; ifname[i] != '@'; i++) {
1928 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001929 break;
1930
1931 b[i] = ifname[i];
1932 }
1933 b[i] = 0;
1934
1935 return dev_get_by_name(&init_net, b);
1936}
1937
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939/* Associate pktgen_dev with a device. */
1940
Stephen Hemminger39df2322007-03-04 16:11:51 -08001941static int pktgen_setup_dev(struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001942{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001944 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (pkt_dev->odev) {
1948 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001949 pkt_dev->odev = NULL;
1950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Robert Olssone6fce5b2008-08-07 02:23:01 -07001952 odev = pktgen_dev_get_by_name(pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (!odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001954 printk(KERN_ERR "pktgen: no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001955 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08001957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (odev->type != ARPHRD_ETHER) {
David S. Miller25a8b252007-07-30 16:11:48 -07001959 printk(KERN_ERR "pktgen: not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001960 err = -EINVAL;
1961 } else if (!netif_running(odev)) {
David S. Miller25a8b252007-07-30 16:11:48 -07001962 printk(KERN_ERR "pktgen: device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001963 err = -ENETDOWN;
1964 } else {
1965 pkt_dev->odev = odev;
1966 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001970 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
1973/* Read pkt_dev from the interface and set up internal pktgen_dev
1974 * structure to have the right information to create/send packets
1975 */
1976static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
1977{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001978 int ntxq;
1979
Luiz Capitulino222f1802006-03-20 22:16:13 -08001980 if (!pkt_dev->odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001981 printk(KERN_ERR "pktgen: ERROR: pkt_dev->odev == NULL in "
1982 "setup_inject.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001983 sprintf(pkt_dev->result,
1984 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1985 return;
1986 }
1987
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001988 /* make sure that we don't pick a non-existing transmit queue */
1989 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08001990
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001991 if (ntxq <= pkt_dev->queue_map_min) {
1992 printk(KERN_WARNING "pktgen: WARNING: Requested "
Jesse Brandeburg88271662008-10-28 13:21:51 -07001993 "queue_map_min (zero-based) (%d) exceeds valid range "
1994 "[0 - %d] for (%d) queues on %s, resetting\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001995 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
Jesse Brandeburg88271662008-10-28 13:21:51 -07001996 pkt_dev->odev->name);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001997 pkt_dev->queue_map_min = ntxq - 1;
1998 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07001999 if (pkt_dev->queue_map_max >= ntxq) {
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002000 printk(KERN_WARNING "pktgen: WARNING: Requested "
Jesse Brandeburg88271662008-10-28 13:21:51 -07002001 "queue_map_max (zero-based) (%d) exceeds valid range "
2002 "[0 - %d] for (%d) queues on %s, resetting\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002003 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
Jesse Brandeburg88271662008-10-28 13:21:51 -07002004 pkt_dev->odev->name);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002005 pkt_dev->queue_map_max = ntxq - 1;
2006 }
2007
Luiz Capitulino222f1802006-03-20 22:16:13 -08002008 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002010 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002011 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Luiz Capitulino222f1802006-03-20 22:16:13 -08002013 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002014 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Luiz Capitulino222f1802006-03-20 22:16:13 -08002016 /* Set up pkt size */
2017 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2018
2019 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002021 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 * gets exported
2023 */
2024
2025#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08002026 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 struct inet6_dev *idev;
2028
Luiz Capitulino222f1802006-03-20 22:16:13 -08002029 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2030 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 set = 1;
2032 break;
2033 }
2034
Luiz Capitulino222f1802006-03-20 22:16:13 -08002035 if (!set) {
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /*
2038 * Use linklevel address if unconfigured.
2039 *
2040 * use ipv6_get_lladdr if/when it's get exported
2041 */
2042
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002043 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002044 idev = __in6_dev_get(pkt_dev->odev);
2045 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 struct inet6_ifaddr *ifp;
2047
2048 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002049 for (ifp = idev->addr_list; ifp;
2050 ifp = ifp->if_next) {
2051 if (ifp->scope == IFA_LINK
2052 && !(ifp->
2053 flags & IFA_F_TENTATIVE)) {
2054 ipv6_addr_copy(&pkt_dev->
2055 cur_in6_saddr,
2056 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 err = 0;
2058 break;
2059 }
2060 }
2061 read_unlock_bh(&idev->lock);
2062 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002063 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002064 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07002065 printk(KERN_ERR "pktgen: ERROR: IPv6 link "
2066 "address not availble.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002069 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 pkt_dev->saddr_min = 0;
2071 pkt_dev->saddr_max = 0;
2072 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002073
2074 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002077 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (in_dev) {
2079 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002080 pkt_dev->saddr_min =
2081 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 pkt_dev->saddr_max = pkt_dev->saddr_min;
2083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002086 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2088 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2089 }
2090
2091 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2092 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2093 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002094 /* Initialize current values. */
2095 pkt_dev->cur_dst_mac_offset = 0;
2096 pkt_dev->cur_src_mac_offset = 0;
2097 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2098 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2099 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2100 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 pkt_dev->nflows = 0;
2102}
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002105static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2106{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002107 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002108 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002109 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002110
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002111 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2112 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002113
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002114 remaining = ktime_to_us(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002115 if (remaining <= 0) {
2116 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002117 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002118 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002119
Stephen Hemmingeref879792009-09-22 19:41:43 +00002120 start_time = ktime_now();
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002121 if (remaining < 100)
2122 udelay(remaining); /* really small just spin */
2123 else {
2124 /* see do_nanosleep */
2125 hrtimer_init_sleeper(&t, current);
2126 do {
2127 set_current_state(TASK_INTERRUPTIBLE);
2128 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2129 if (!hrtimer_active(&t.timer))
2130 t.task = NULL;
2131
2132 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002135 hrtimer_cancel(&t.timer);
2136 } while (t.task && pkt_dev->running && !signal_pending(current));
2137 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002139 end_time = ktime_now();
2140
2141 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
2142 pkt_dev->next_tx = ktime_add_ns(end_time, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002145static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2146{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002147 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002148 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2149 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2150 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2151}
2152
Stephen Hemminger648fda72009-08-27 13:55:07 +00002153static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002154{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002155 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002156}
2157
2158static inline int f_pick(struct pktgen_dev *pkt_dev)
2159{
2160 int flow = pkt_dev->curfl;
2161
2162 if (pkt_dev->flags & F_FLOW_SEQ) {
2163 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2164 /* reset time */
2165 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002166 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002167 pkt_dev->curfl += 1;
2168 if (pkt_dev->curfl >= pkt_dev->cflows)
2169 pkt_dev->curfl = 0; /*reset */
2170 }
2171 } else {
2172 flow = random32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002173 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002174
Robert Olsson1211a642008-08-05 18:44:26 -07002175 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002176 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002177 pkt_dev->flows[flow].flags = 0;
2178 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002179 }
2180
2181 return pkt_dev->curfl;
2182}
2183
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002184
2185#ifdef CONFIG_XFRM
2186/* If there was already an IPSEC SA, we keep it as is, else
2187 * we go look for it ...
2188*/
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002189static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002190{
2191 struct xfrm_state *x = pkt_dev->flows[flow].x;
2192 if (!x) {
2193 /*slow path: we dont already have xfrm_state*/
Alexey Dobriyan5447c5e2008-11-25 17:31:51 -08002194 x = xfrm_stateonly_find(&init_net,
2195 (xfrm_address_t *)&pkt_dev->cur_daddr,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002196 (xfrm_address_t *)&pkt_dev->cur_saddr,
2197 AF_INET,
2198 pkt_dev->ipsmode,
2199 pkt_dev->ipsproto, 0);
2200 if (x) {
2201 pkt_dev->flows[flow].x = x;
2202 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002203 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002204 }
2205
2206 }
2207}
2208#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002209static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2210{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002211
2212 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2213 pkt_dev->cur_queue_map = smp_processor_id();
2214
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002215 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002216 __u16 t;
2217 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
2218 t = random32() %
2219 (pkt_dev->queue_map_max -
2220 pkt_dev->queue_map_min + 1)
2221 + pkt_dev->queue_map_min;
2222 } else {
2223 t = pkt_dev->cur_queue_map + 1;
2224 if (t > pkt_dev->queue_map_max)
2225 t = pkt_dev->queue_map_min;
2226 }
2227 pkt_dev->cur_queue_map = t;
2228 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002229 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 -07002230}
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232/* Increment/randomize headers according to flags and current values
2233 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2234 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002235static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2236{
2237 __u32 imn;
2238 __u32 imx;
2239 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002241 if (pkt_dev->cflows)
2242 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002245 if (pkt_dev->src_mac_count > 1) {
2246 __u32 mc;
2247 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Luiz Capitulino222f1802006-03-20 22:16:13 -08002249 if (pkt_dev->flags & F_MACSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002250 mc = random32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002251 else {
2252 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002253 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002254 pkt_dev->src_mac_count)
2255 pkt_dev->cur_src_mac_offset = 0;
2256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Luiz Capitulino222f1802006-03-20 22:16:13 -08002258 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2259 pkt_dev->hh[11] = tmp;
2260 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2261 pkt_dev->hh[10] = tmp;
2262 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2263 pkt_dev->hh[9] = tmp;
2264 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2265 pkt_dev->hh[8] = tmp;
2266 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2267 pkt_dev->hh[7] = tmp;
2268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Luiz Capitulino222f1802006-03-20 22:16:13 -08002270 /* Deal with Destination MAC */
2271 if (pkt_dev->dst_mac_count > 1) {
2272 __u32 mc;
2273 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Luiz Capitulino222f1802006-03-20 22:16:13 -08002275 if (pkt_dev->flags & F_MACDST_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002276 mc = random32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Luiz Capitulino222f1802006-03-20 22:16:13 -08002278 else {
2279 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002280 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002281 pkt_dev->dst_mac_count) {
2282 pkt_dev->cur_dst_mac_offset = 0;
2283 }
2284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Luiz Capitulino222f1802006-03-20 22:16:13 -08002286 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2287 pkt_dev->hh[5] = tmp;
2288 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2289 pkt_dev->hh[4] = tmp;
2290 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2291 pkt_dev->hh[3] = tmp;
2292 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2293 pkt_dev->hh[2] = tmp;
2294 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2295 pkt_dev->hh[1] = tmp;
2296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002298 if (pkt_dev->flags & F_MPLS_RND) {
2299 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002300 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002301 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2302 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002303 ((__force __be32)random32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002304 htonl(0x000fffff));
2305 }
2306
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002307 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002308 pkt_dev->vlan_id = random32() & (4096-1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002309 }
2310
2311 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002312 pkt_dev->svlan_id = random32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002313 }
2314
Luiz Capitulino222f1802006-03-20 22:16:13 -08002315 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2316 if (pkt_dev->flags & F_UDPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002317 pkt_dev->cur_udp_src = random32() %
2318 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2319 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Luiz Capitulino222f1802006-03-20 22:16:13 -08002321 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 pkt_dev->cur_udp_src++;
2323 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2324 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002325 }
2326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Luiz Capitulino222f1802006-03-20 22:16:13 -08002328 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2329 if (pkt_dev->flags & F_UDPDST_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002330 pkt_dev->cur_udp_dst = random32() %
2331 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2332 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002333 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002335 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002337 }
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340 if (!(pkt_dev->flags & F_IPV6)) {
2341
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002342 imn = ntohl(pkt_dev->saddr_min);
2343 imx = ntohl(pkt_dev->saddr_max);
2344 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002346 if (pkt_dev->flags & F_IPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002347 t = random32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 else {
2349 t = ntohl(pkt_dev->cur_saddr);
2350 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002351 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 }
2355 pkt_dev->cur_saddr = htonl(t);
2356 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002357
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002358 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2360 } else {
Al Viro252e33462006-11-14 20:48:11 -08002361 imn = ntohl(pkt_dev->daddr_min);
2362 imx = ntohl(pkt_dev->daddr_max);
2363 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 __u32 t;
Al Viro252e33462006-11-14 20:48:11 -08002365 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 if (pkt_dev->flags & F_IPDST_RND) {
2367
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002368 t = random32() % (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002369 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Joe Perches21cf2252007-12-16 13:44:00 -08002371 while (ipv4_is_loopback(s) ||
2372 ipv4_is_multicast(s) ||
Jan Engelhardt1e637c72008-01-21 03:18:08 -08002373 ipv4_is_lbcast(s) ||
Joe Perches21cf2252007-12-16 13:44:00 -08002374 ipv4_is_zeronet(s) ||
2375 ipv4_is_local_multicast(s)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002376 t = random32() % (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002377 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
Al Viro252e33462006-11-14 20:48:11 -08002379 pkt_dev->cur_daddr = s;
2380 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 t = ntohl(pkt_dev->cur_daddr);
2382 t++;
2383 if (t > imx) {
2384 t = imn;
2385 }
2386 pkt_dev->cur_daddr = htonl(t);
2387 }
2388 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002389 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002390 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002391 pkt_dev->flows[flow].cur_daddr =
2392 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002393#ifdef CONFIG_XFRM
2394 if (pkt_dev->flags & F_IPSEC_ON)
2395 get_ipsec_sa(pkt_dev, flow);
2396#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 pkt_dev->nflows++;
2398 }
2399 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002400 } else { /* IPV6 * */
2401
2402 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2403 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2404 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2405 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 else {
2407 int i;
2408
2409 /* Only random destinations yet */
2410
Luiz Capitulino222f1802006-03-20 22:16:13 -08002411 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002413 (((__force __be32)random32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002414 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2415 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 }
2419
Luiz Capitulino222f1802006-03-20 22:16:13 -08002420 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2421 __u32 t;
2422 if (pkt_dev->flags & F_TXSIZE_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002423 t = random32() %
2424 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2425 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002426 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002428 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002430 }
2431 pkt_dev->cur_pkt_size = t;
2432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002434 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 pkt_dev->flows[flow].count++;
2437}
2438
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002439
2440#ifdef CONFIG_XFRM
2441static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2442{
2443 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2444 int err = 0;
2445 struct iphdr *iph;
2446
2447 if (!x)
2448 return 0;
2449 /* XXX: we dont support tunnel mode for now until
2450 * we resolve the dst issue */
2451 if (x->props.mode != XFRM_MODE_TRANSPORT)
2452 return 0;
2453
2454 spin_lock(&x->lock);
2455 iph = ip_hdr(skb);
2456
Herbert Xu13996372007-10-17 21:35:51 -07002457 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002458 if (err)
2459 goto error;
2460 err = x->type->output(x, skb);
2461 if (err)
2462 goto error;
2463
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002464 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002465 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002466error:
2467 spin_unlock(&x->lock);
2468 return err;
2469}
2470
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002471static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002472{
2473 if (pkt_dev->cflows) {
2474 /* let go of the SAs if we have them */
2475 int i = 0;
Florian Westphal5b5f7922009-05-21 15:07:12 -07002476 for (; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002477 struct xfrm_state *x = pkt_dev->flows[i].x;
2478 if (x) {
2479 xfrm_state_put(x);
2480 pkt_dev->flows[i].x = NULL;
2481 }
2482 }
2483 }
2484}
2485
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002486static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002487 struct sk_buff *skb, __be16 protocol)
2488{
2489 if (pkt_dev->flags & F_IPSEC_ON) {
2490 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2491 int nhead = 0;
2492 if (x) {
2493 int ret;
2494 __u8 *eth;
2495 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002496 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002497 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2498 if (ret < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -07002499 printk(KERN_ERR "Error expanding "
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002500 "ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002501 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002502 }
2503 }
2504
2505 /* ipsec is not expecting ll header */
2506 skb_pull(skb, ETH_HLEN);
2507 ret = pktgen_output_ipsec(skb, pkt_dev);
2508 if (ret) {
David S. Miller25a8b252007-07-30 16:11:48 -07002509 printk(KERN_ERR "Error creating ipsec "
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002510 "packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002511 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002512 }
2513 /* restore ll */
2514 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2515 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002516 *(u16 *) &eth[12] = protocol;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002517 }
2518 }
2519 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002520err:
2521 kfree_skb(skb);
2522 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002523}
2524#endif
2525
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002526static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2527{
2528 unsigned i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002529 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002530 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002531
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002532 mpls--;
2533 *mpls |= MPLS_STACK_BOTTOM;
2534}
2535
Al Viro0f37c602006-11-03 03:49:56 -08002536static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2537 unsigned int prio)
2538{
2539 return htons(id | (cfi << 12) | (prio << 13));
2540}
2541
Luiz Capitulino222f1802006-03-20 22:16:13 -08002542static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2543 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544{
2545 struct sk_buff *skb = NULL;
2546 __u8 *eth;
2547 struct udphdr *udph;
2548 int datalen, iplen;
2549 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002550 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002551 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002552 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002553 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2554 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2555 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2556 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002557 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002558
2559 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002560 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002561
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002562 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002563 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002564
Robert Olsson64053be2005-06-26 15:27:10 -07002565 /* Update any of the values, used when we're incrementing various
2566 * fields.
2567 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002568 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002569 mod_cur_headers(pkt_dev);
2570
David S. Miller7ac54592006-01-18 14:19:10 -08002571 datalen = (odev->hard_header_len + 16) & ~0xf;
Stephen Hemmingere4707572009-08-27 13:55:13 +00002572 skb = __netdev_alloc_skb(odev,
2573 pkt_dev->cur_pkt_size + 64
2574 + datalen + pkt_dev->pkt_overhead, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 if (!skb) {
2576 sprintf(pkt_dev->result, "No memory");
2577 return NULL;
2578 }
2579
David S. Miller7ac54592006-01-18 14:19:10 -08002580 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582 /* Reserve for ethernet and IP header */
2583 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002584 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2585 if (pkt_dev->nr_labels)
2586 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002587
2588 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002589 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002590 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002591 *svlan_tci = build_tci(pkt_dev->svlan_id,
2592 pkt_dev->svlan_cfi,
2593 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002594 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002595 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002596 }
2597 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002598 *vlan_tci = build_tci(pkt_dev->vlan_id,
2599 pkt_dev->vlan_cfi,
2600 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002601 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002602 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002603 }
2604
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002605 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002606 skb->transport_header = skb->network_header + sizeof(struct iphdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002607 skb_put(skb, sizeof(struct iphdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002608 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002609 iph = ip_hdr(skb);
2610 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002613 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002615 /* Eth + IPh + UDPh + mpls */
2616 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002617 pkt_dev->pkt_overhead;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002618 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 udph->source = htons(pkt_dev->cur_udp_src);
2622 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002623 udph->len = htons(datalen + 8); /* DATA + udphdr */
2624 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626 iph->ihl = 5;
2627 iph->version = 4;
2628 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002629 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002630 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 iph->saddr = pkt_dev->cur_saddr;
2632 iph->daddr = pkt_dev->cur_daddr;
2633 iph->frag_off = 0;
2634 iplen = 20 + 8 + datalen;
2635 iph->tot_len = htons(iplen);
2636 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002637 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002638 skb->protocol = protocol;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002639 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002640 pkt_dev->pkt_overhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 skb->dev = odev;
2642 skb->pkt_type = PACKET_HOST;
2643
Luiz Capitulino222f1802006-03-20 22:16:13 -08002644 if (pkt_dev->nfrags <= 0)
2645 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 else {
2647 int frags = pkt_dev->nfrags;
2648 int i;
2649
Luiz Capitulino222f1802006-03-20 22:16:13 -08002650 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 if (frags > MAX_SKB_FRAGS)
2653 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002654 if (datalen > frags * PAGE_SIZE) {
2655 skb_put(skb, datalen - frags * PAGE_SIZE);
2656 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 }
2658
2659 i = 0;
2660 while (datalen > 0) {
2661 struct page *page = alloc_pages(GFP_KERNEL, 0);
2662 skb_shinfo(skb)->frags[i].page = page;
2663 skb_shinfo(skb)->frags[i].page_offset = 0;
2664 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002665 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 datalen -= skb_shinfo(skb)->frags[i].size;
2667 skb->len += skb_shinfo(skb)->frags[i].size;
2668 skb->data_len += skb_shinfo(skb)->frags[i].size;
2669 i++;
2670 skb_shinfo(skb)->nr_frags = i;
2671 }
2672
2673 while (i < frags) {
2674 int rem;
2675
2676 if (i == 0)
2677 break;
2678
2679 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2680 if (rem == 0)
2681 break;
2682
2683 skb_shinfo(skb)->frags[i - 1].size -= rem;
2684
Luiz Capitulino222f1802006-03-20 22:16:13 -08002685 skb_shinfo(skb)->frags[i] =
2686 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002688 skb_shinfo(skb)->frags[i].page =
2689 skb_shinfo(skb)->frags[i - 1].page;
2690 skb_shinfo(skb)->frags[i].page_offset +=
2691 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 skb_shinfo(skb)->frags[i].size = rem;
2693 i++;
2694 skb_shinfo(skb)->nr_frags = i;
2695 }
2696 }
2697
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002698 /* Stamp the time, and sequence number,
2699 * convert them to network byte order
2700 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002701 if (pgh) {
2702 struct timeval timestamp;
2703
2704 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2705 pgh->seq_num = htonl(pkt_dev->seq_num);
2706
2707 do_gettimeofday(&timestamp);
2708 pgh->tv_sec = htonl(timestamp.tv_sec);
2709 pgh->tv_usec = htonl(timestamp.tv_usec);
2710 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002711
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002712#ifdef CONFIG_XFRM
2713 if (!process_ipsec(pkt_dev, skb, protocol))
2714 return NULL;
2715#endif
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 return skb;
2718}
2719
2720/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002721 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2723 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002724 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 * Should be candidate for net/ipv4/utils.c
2726 * --ro
2727 */
2728
Luiz Capitulino222f1802006-03-20 22:16:13 -08002729static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
2731 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002732 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 unsigned long u;
2734 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002735 unsigned int prefixlen = 0;
2736 unsigned int suffixlen = 0;
Al Viro252e33462006-11-14 20:48:11 -08002737 __be32 tmp;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002738 char *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Luiz Capitulino222f1802006-03-20 22:16:13 -08002740 for (i = 0; i < 16; i++)
2741 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 for (;;) {
2744 if (*s == ':') {
2745 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002746 if (s[1] == ':') { /* Found "::", skip to part 2 */
2747 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 len++;
2749 break;
2750 }
2751 s++;
2752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002754 u = simple_strtoul(s, &pos, 16);
2755 i = pos - s;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002756 if (!i)
2757 return 0;
2758 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760 /* the last 4 bytes may be written as IPv4 address */
2761
2762 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002763 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2764 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 }
2766 ip[prefixlen++] = (u >> 8);
2767 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002768 s += i;
2769 len += i;
2770 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 return len;
2772 }
2773
2774/* part 2, after "::" */
2775 for (;;) {
2776 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002777 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 break;
2779 s++;
2780 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002781 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 break;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002783
2784 u = simple_strtol(s, &pos, 16);
2785 i = pos - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002787 if (*s)
2788 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 break;
2790 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002791 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002793 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2794 sizeof(tmp));
2795 suffixlen += 4;
2796 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 break;
2798 }
2799 suffix[suffixlen++] = (u >> 8);
2800 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002801 s += i;
2802 len += i;
2803 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 break;
2805 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002806 for (i = 0; i < suffixlen; i++)
2807 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 return len;
2809}
2810
Luiz Capitulino222f1802006-03-20 22:16:13 -08002811static char tohex(char hexdigit)
2812{
2813 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
Luiz Capitulino222f1802006-03-20 22:16:13 -08002816static int fmt_xlong(char *s, unsigned int i)
2817{
2818 char *bak = s;
2819 *s = tohex((i >> 12) & 0xf);
2820 if (s != bak || *s != '0')
2821 ++s;
2822 *s = tohex((i >> 8) & 0xf);
2823 if (s != bak || *s != '0')
2824 ++s;
2825 *s = tohex((i >> 4) & 0xf);
2826 if (s != bak || *s != '0')
2827 ++s;
2828 *s = tohex(i & 0xf);
2829 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830}
2831
Luiz Capitulino222f1802006-03-20 22:16:13 -08002832static unsigned int fmt_ip6(char *s, const char ip[16])
2833{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 unsigned int len;
2835 unsigned int i;
2836 unsigned int temp;
2837 unsigned int compressing;
2838 int j;
2839
Luiz Capitulino222f1802006-03-20 22:16:13 -08002840 len = 0;
2841 compressing = 0;
2842 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
2844#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002845 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2846 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2847 temp = strlen(s);
2848 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 }
2850#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002851 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2852 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 if (temp == 0) {
2854 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002855 compressing = 1;
2856 if (j == 0) {
2857 *s++ = ':';
2858 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 }
2860 }
2861 } else {
2862 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002863 compressing = 0;
2864 *s++ = ':';
2865 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002867 i = fmt_xlong(s, temp);
2868 len += i;
2869 s += i;
2870 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 *s++ = ':';
2872 ++len;
2873 }
2874 }
2875 }
2876 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002877 *s++ = ':';
2878 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002880 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 return len;
2882}
2883
Luiz Capitulino222f1802006-03-20 22:16:13 -08002884static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2885 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
2887 struct sk_buff *skb = NULL;
2888 __u8 *eth;
2889 struct udphdr *udph;
2890 int datalen;
2891 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002892 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002893 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002894 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002895 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2896 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2897 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2898 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002899 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002900
2901 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002902 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002903
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002904 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002905 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002906
Robert Olsson64053be2005-06-26 15:27:10 -07002907 /* Update any of the values, used when we're incrementing various
2908 * fields.
2909 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002910 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002911 mod_cur_headers(pkt_dev);
2912
Stephen Hemmingere4707572009-08-27 13:55:13 +00002913 skb = __netdev_alloc_skb(odev,
2914 pkt_dev->cur_pkt_size + 64
2915 + 16 + pkt_dev->pkt_overhead, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (!skb) {
2917 sprintf(pkt_dev->result, "No memory");
2918 return NULL;
2919 }
2920
2921 skb_reserve(skb, 16);
2922
2923 /* Reserve for ethernet and IP header */
2924 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002925 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2926 if (pkt_dev->nr_labels)
2927 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002928
2929 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002930 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002931 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002932 *svlan_tci = build_tci(pkt_dev->svlan_id,
2933 pkt_dev->svlan_cfi,
2934 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002935 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002936 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002937 }
2938 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002939 *vlan_tci = build_tci(pkt_dev->vlan_id,
2940 pkt_dev->vlan_cfi,
2941 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002942 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002943 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002944 }
2945
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002946 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002947 skb->transport_header = skb->network_header + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002948 skb_put(skb, sizeof(struct ipv6hdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002949 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002950 iph = ipv6_hdr(skb);
2951 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002954 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002955
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002956 /* Eth + IPh + UDPh + mpls */
2957 datalen = pkt_dev->cur_pkt_size - 14 -
2958 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002959 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Luiz Capitulino222f1802006-03-20 22:16:13 -08002961 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 datalen = sizeof(struct pktgen_hdr);
2963 if (net_ratelimit())
Luiz Capitulino222f1802006-03-20 22:16:13 -08002964 printk(KERN_INFO "pktgen: increased datalen to %d\n",
2965 datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 }
2967
2968 udph->source = htons(pkt_dev->cur_udp_src);
2969 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002970 udph->len = htons(datalen + sizeof(struct udphdr));
2971 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002973 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002975 if (pkt_dev->traffic_class) {
2976 /* Version + traffic class + flow (0) */
Al Viro252e33462006-11-14 20:48:11 -08002977 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002978 }
2979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 iph->hop_limit = 32;
2981
2982 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
2983 iph->nexthdr = IPPROTO_UDP;
2984
2985 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
2986 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
2987
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002988 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002989 pkt_dev->pkt_overhead);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002990 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 skb->dev = odev;
2992 skb->pkt_type = PACKET_HOST;
2993
Luiz Capitulino222f1802006-03-20 22:16:13 -08002994 if (pkt_dev->nfrags <= 0)
2995 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 else {
2997 int frags = pkt_dev->nfrags;
2998 int i;
2999
Luiz Capitulino222f1802006-03-20 22:16:13 -08003000 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (frags > MAX_SKB_FRAGS)
3003 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003004 if (datalen > frags * PAGE_SIZE) {
3005 skb_put(skb, datalen - frags * PAGE_SIZE);
3006 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 }
3008
3009 i = 0;
3010 while (datalen > 0) {
3011 struct page *page = alloc_pages(GFP_KERNEL, 0);
3012 skb_shinfo(skb)->frags[i].page = page;
3013 skb_shinfo(skb)->frags[i].page_offset = 0;
3014 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08003015 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 datalen -= skb_shinfo(skb)->frags[i].size;
3017 skb->len += skb_shinfo(skb)->frags[i].size;
3018 skb->data_len += skb_shinfo(skb)->frags[i].size;
3019 i++;
3020 skb_shinfo(skb)->nr_frags = i;
3021 }
3022
3023 while (i < frags) {
3024 int rem;
3025
3026 if (i == 0)
3027 break;
3028
3029 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
3030 if (rem == 0)
3031 break;
3032
3033 skb_shinfo(skb)->frags[i - 1].size -= rem;
3034
Luiz Capitulino222f1802006-03-20 22:16:13 -08003035 skb_shinfo(skb)->frags[i] =
3036 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003038 skb_shinfo(skb)->frags[i].page =
3039 skb_shinfo(skb)->frags[i - 1].page;
3040 skb_shinfo(skb)->frags[i].page_offset +=
3041 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 skb_shinfo(skb)->frags[i].size = rem;
3043 i++;
3044 skb_shinfo(skb)->nr_frags = i;
3045 }
3046 }
3047
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003048 /* Stamp the time, and sequence number,
3049 * convert them to network byte order
3050 * should we update cloned packets too ?
3051 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003052 if (pgh) {
3053 struct timeval timestamp;
3054
3055 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
3056 pgh->seq_num = htonl(pkt_dev->seq_num);
3057
3058 do_gettimeofday(&timestamp);
3059 pgh->tv_sec = htonl(timestamp.tv_sec);
3060 pgh->tv_usec = htonl(timestamp.tv_usec);
3061 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003062 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return skb;
3065}
3066
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003067static struct sk_buff *fill_packet(struct net_device *odev,
3068 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003070 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 return fill_packet_ipv6(odev, pkt_dev);
3072 else
3073 return fill_packet_ipv4(odev, pkt_dev);
3074}
3075
Luiz Capitulino222f1802006-03-20 22:16:13 -08003076static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003078 pkt_dev->seq_num = 1;
3079 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003081 pkt_dev->tx_bytes = 0;
3082 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
3085/* Set up structure for sending pkts, clear counters */
3086
3087static void pktgen_run(struct pktgen_thread *t)
3088{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003089 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 int started = 0;
3091
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003092 pr_debug("pktgen: entering pktgen_run. %p\n", t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
3094 if_lock(t);
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003095 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097 /*
3098 * setup odev and create initial packet.
3099 */
3100 pktgen_setup_inject(pkt_dev);
3101
Luiz Capitulino222f1802006-03-20 22:16:13 -08003102 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003104 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003106 pkt_dev->started_at =
3107 pkt_dev->next_tx = ktime_now();
3108
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003109 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 strcpy(pkt_dev->result, "Starting");
3112 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003113 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 strcpy(pkt_dev->result, "Error starting");
3115 }
3116 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003117 if (started)
3118 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119}
3120
3121static void pktgen_stop_all_threads_ifs(void)
3122{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003123 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003125 pr_debug("pktgen: entering pktgen_stop_all_threads_ifs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003127 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003128
3129 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003130 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003131
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003132 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133}
3134
Stephen Hemminger648fda72009-08-27 13:55:07 +00003135static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003137 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003139 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00003140 if (pkt_dev->running)
3141 return 1;
3142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143}
3144
Luiz Capitulino222f1802006-03-20 22:16:13 -08003145static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003147 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Luiz Capitulino222f1802006-03-20 22:16:13 -08003149 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Luiz Capitulino222f1802006-03-20 22:16:13 -08003151 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
Luiz Capitulino222f1802006-03-20 22:16:13 -08003153 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Luiz Capitulino222f1802006-03-20 22:16:13 -08003155 if (signal_pending(current))
3156 goto signal;
3157 if_lock(t);
3158 }
3159 if_unlock(t);
3160 return 1;
3161signal:
3162 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163}
3164
3165static int pktgen_wait_all_threads_run(void)
3166{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003167 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003169
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003170 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003171
3172 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003174 if (sig == 0)
3175 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003177
3178 if (sig == 0)
3179 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003181
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003182 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 return sig;
3184}
3185
3186static void pktgen_run_all_threads(void)
3187{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003188 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003190 pr_debug("pktgen: entering pktgen_run_all_threads.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003192 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003194 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003196
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003197 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003199 /* Propagate thread->control */
3200 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 pktgen_wait_all_threads_run();
3203}
3204
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003205static void pktgen_reset_all_threads(void)
3206{
3207 struct pktgen_thread *t;
3208
3209 pr_debug("pktgen: entering pktgen_reset_all_threads.\n");
3210
3211 mutex_lock(&pktgen_thread_lock);
3212
3213 list_for_each_entry(t, &pktgen_threads, th_list)
3214 t->control |= (T_REMDEVALL);
3215
3216 mutex_unlock(&pktgen_thread_lock);
3217
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003218 /* Propagate thread->control */
3219 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003220
3221 pktgen_wait_all_threads_run();
3222}
3223
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3225{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003226 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003227 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003228 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3229 pkt_dev->started_at);
3230 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003232 p += sprintf(p, "OK: %llu(c%llu+d%llu) nsec, %llu (%dbyte,%dfrags)\n",
3233 (unsigned long long)ktime_to_us(elapsed),
3234 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3235 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003236 (unsigned long long)pkt_dev->sofar,
3237 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003239 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3240 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Luiz Capitulino222f1802006-03-20 22:16:13 -08003242 bps = pps * 8 * pkt_dev->cur_pkt_size;
3243
3244 mbps = bps;
3245 do_div(mbps, 1000000);
3246 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3247 (unsigned long long)pps,
3248 (unsigned long long)mbps,
3249 (unsigned long long)bps,
3250 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
3253/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003254static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003256 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003257
Luiz Capitulino222f1802006-03-20 22:16:13 -08003258 if (!pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003259 printk(KERN_WARNING "pktgen: interface: %s is already "
3260 "stopped\n", pkt_dev->odev->name);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003261 return -EINVAL;
3262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003264 kfree_skb(pkt_dev->skb);
3265 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003266 pkt_dev->stopped_at = ktime_now();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003267 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003269 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Luiz Capitulino222f1802006-03-20 22:16:13 -08003271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272}
3273
Luiz Capitulino222f1802006-03-20 22:16:13 -08003274static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003276 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 if_lock(t);
3279
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003280 list_for_each_entry(pkt_dev, &t->if_list, list) {
3281 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003282 continue;
3283 if (best == NULL)
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003284 best = pkt_dev;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003285 else if (ktime_lt(pkt_dev->next_tx, best->next_tx))
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003286 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 }
3288 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003289 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
Luiz Capitulino222f1802006-03-20 22:16:13 -08003292static void pktgen_stop(struct pktgen_thread *t)
3293{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003294 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003296 pr_debug("pktgen: entering pktgen_stop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Luiz Capitulino222f1802006-03-20 22:16:13 -08003298 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003300 list_for_each_entry(pkt_dev, &t->if_list, list) {
3301 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Luiz Capitulino222f1802006-03-20 22:16:13 -08003304 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003307/*
3308 * one of our devices needs to be removed - find it
3309 * and remove it
3310 */
3311static void pktgen_rem_one_if(struct pktgen_thread *t)
3312{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003313 struct list_head *q, *n;
3314 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003315
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003316 pr_debug("pktgen: entering pktgen_rem_one_if\n");
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003317
3318 if_lock(t);
3319
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003320 list_for_each_safe(q, n, &t->if_list) {
3321 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003322
Luiz Capitulino222f1802006-03-20 22:16:13 -08003323 if (!cur->removal_mark)
3324 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003325
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003326 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003327 cur->skb = NULL;
3328
3329 pktgen_remove_device(t, cur);
3330
3331 break;
3332 }
3333
3334 if_unlock(t);
3335}
3336
Luiz Capitulino222f1802006-03-20 22:16:13 -08003337static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003339 struct list_head *q, *n;
3340 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003341
3342 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003343
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003344 pr_debug("pktgen: entering pktgen_rem_all_ifs\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003345 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003347 list_for_each_safe(q, n, &t->if_list) {
3348 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003349
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003350 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003351 cur->skb = NULL;
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 pktgen_remove_device(t, cur);
3354 }
3355
Luiz Capitulino222f1802006-03-20 22:16:13 -08003356 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357}
3358
Luiz Capitulino222f1802006-03-20 22:16:13 -08003359static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003361 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
David S. Milleree74baa2007-01-01 20:51:53 -08003363 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003365 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003367 list_del(&t->th_list);
3368
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003369 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370}
3371
Stephen Hemmingeref879792009-09-22 19:41:43 +00003372static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003373{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003374 ktime_t idle_start = ktime_now();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003375 schedule();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003376 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003377}
3378
Stephen Hemmingeref879792009-09-22 19:41:43 +00003379static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3380{
3381 ktime_t idle_start = ktime_now();
3382
3383 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3384 if (signal_pending(current))
3385 break;
3386
3387 if (need_resched())
3388 pktgen_resched(pkt_dev);
3389 else
3390 cpu_relax();
3391 }
3392 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
3393}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003394
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003395static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396{
Stephen Hemminger00829822008-11-20 20:14:53 -08003397 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003398 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003399 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003400 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003401 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 int ret;
3403
Stephen Hemmingeref879792009-09-22 19:41:43 +00003404 /* If device is offline, then don't send */
3405 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3406 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003407 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003409
Stephen Hemmingeref879792009-09-22 19:41:43 +00003410 /* This is max DELAY, this has special meaning of
3411 * "never transmit"
3412 */
3413 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
3414 pkt_dev->next_tx = ktime_add_ns(ktime_now(), ULONG_MAX);
3415 return;
3416 }
3417
3418 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003419 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3420 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3421 /* build a new pkt */
3422 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003423
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003424 pkt_dev->skb = fill_packet(odev, pkt_dev);
3425 if (pkt_dev->skb == NULL) {
3426 printk(KERN_ERR "pktgen: ERROR: couldn't "
3427 "allocate skb in fill_packet.\n");
3428 schedule();
3429 pkt_dev->clone_count--; /* back out increment, OOM */
3430 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 }
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003432
3433 pkt_dev->allocated_skbs++;
3434 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003436
Stephen Hemmingeref879792009-09-22 19:41:43 +00003437 if (pkt_dev->delay && pkt_dev->last_ok)
3438 spin(pkt_dev, pkt_dev->next_tx);
3439
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003440 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3441 txq = netdev_get_tx_queue(odev, queue_map);
3442
3443 __netif_tx_lock_bh(txq);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003444 atomic_inc(&(pkt_dev->skb->users));
3445
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003446 if (unlikely(netif_tx_queue_stopped(txq) || netif_tx_queue_frozen(txq)))
Stephen Hemmingeref879792009-09-22 19:41:43 +00003447 ret = NETDEV_TX_BUSY;
3448 else
Stephen Hemminger00829822008-11-20 20:14:53 -08003449 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Stephen Hemmingeref879792009-09-22 19:41:43 +00003451 switch (ret) {
3452 case NETDEV_TX_OK:
3453 txq_trans_update(txq);
3454 pkt_dev->last_ok = 1;
3455 pkt_dev->sofar++;
3456 pkt_dev->seq_num++;
3457 pkt_dev->tx_bytes += pkt_dev->cur_pkt_size;
3458 break;
3459 default: /* Drivers are not supposed to return other values! */
3460 if (net_ratelimit())
3461 pr_info("pktgen: %s xmit error: %d\n",
3462 odev->name, ret);
3463 pkt_dev->errors++;
3464 /* fallthru */
3465 case NETDEV_TX_LOCKED:
3466 case NETDEV_TX_BUSY:
3467 /* Retry it next time */
3468 atomic_dec(&(pkt_dev->skb->users));
3469 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003470 }
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003471 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003472
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 /* If pkt_dev->count is zero, then run forever */
3474 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003475 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 /* Done with this */
3478 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003479 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003480}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003482/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 * Main loop of the thread goes here
3484 */
3485
David S. Milleree74baa2007-01-01 20:51:53 -08003486static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487{
3488 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003489 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003490 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
David S. Milleree74baa2007-01-01 20:51:53 -08003493 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
3495 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003496 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003498 pr_debug("pktgen: starting pktgen/%d: pid=%d\n",
3499 cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
David S. Milleree74baa2007-01-01 20:51:53 -08003501 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003502
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003503 set_freezable();
3504
David S. Milleree74baa2007-01-01 20:51:53 -08003505 while (!kthread_should_stop()) {
3506 pkt_dev = next_to_run(t);
3507
Stephen Hemmingeref879792009-09-22 19:41:43 +00003508 if (unlikely(!pkt_dev && t->control == 0)) {
3509 wait_event_interruptible_timeout(t->queue,
3510 t->control != 0,
3511 HZ/10);
3512 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003513 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 __set_current_state(TASK_RUNNING);
3516
Stephen Hemmingeref879792009-09-22 19:41:43 +00003517 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 pktgen_xmit(pkt_dev);
3519
Stephen Hemmingeref879792009-09-22 19:41:43 +00003520 if (need_resched())
3521 pktgen_resched(pkt_dev);
3522 else
3523 cpu_relax();
3524 }
3525
Luiz Capitulino222f1802006-03-20 22:16:13 -08003526 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 pktgen_stop(t);
3528 t->control &= ~(T_STOP);
3529 }
3530
Luiz Capitulino222f1802006-03-20 22:16:13 -08003531 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 pktgen_run(t);
3533 t->control &= ~(T_RUN);
3534 }
3535
Luiz Capitulino222f1802006-03-20 22:16:13 -08003536 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003538 t->control &= ~(T_REMDEVALL);
3539 }
3540
Luiz Capitulino222f1802006-03-20 22:16:13 -08003541 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003542 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 t->control &= ~(T_REMDEV);
3544 }
3545
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003546 try_to_freeze();
3547
David S. Milleree74baa2007-01-01 20:51:53 -08003548 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003551 pr_debug("pktgen: %s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003552 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003554 pr_debug("pktgen: %s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003555 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003557 pr_debug("pktgen: %s removing thread.\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003558 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003559
David S. Milleree74baa2007-01-01 20:51:53 -08003560 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561}
3562
Luiz Capitulino222f1802006-03-20 22:16:13 -08003563static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
3564 const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003566 struct pktgen_dev *p, *pkt_dev = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003567 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003569 list_for_each_entry(p, &t->if_list, list)
Stephen Hemminger39df2322007-03-04 16:11:51 -08003570 if (strncmp(p->odev->name, ifname, IFNAMSIZ) == 0) {
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003571 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003572 break;
3573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Luiz Capitulino222f1802006-03-20 22:16:13 -08003575 if_unlock(t);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003576 pr_debug("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003577 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578}
3579
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003580/*
3581 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 */
3583
Luiz Capitulino222f1802006-03-20 22:16:13 -08003584static int add_dev_to_thread(struct pktgen_thread *t,
3585 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586{
3587 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Luiz Capitulino222f1802006-03-20 22:16:13 -08003589 if_lock(t);
3590
3591 if (pkt_dev->pg_thread) {
David S. Miller25a8b252007-07-30 16:11:48 -07003592 printk(KERN_ERR "pktgen: ERROR: already assigned "
3593 "to a thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003594 rv = -EBUSY;
3595 goto out;
3596 }
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003597
3598 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003599 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 pkt_dev->running = 0;
3601
Luiz Capitulino222f1802006-03-20 22:16:13 -08003602out:
3603 if_unlock(t);
3604 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605}
3606
3607/* Called under thread lock */
3608
Luiz Capitulino222f1802006-03-20 22:16:13 -08003609static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003611 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003612 int err;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003613
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 /* We don't allow a device to be on several threads */
3615
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003616 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3617 if (pkt_dev) {
David S. Miller25a8b252007-07-30 16:11:48 -07003618 printk(KERN_ERR "pktgen: ERROR: interface already used.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003619 return -EBUSY;
3620 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003621
3622 pkt_dev = kzalloc(sizeof(struct pktgen_dev), GFP_KERNEL);
3623 if (!pkt_dev)
3624 return -ENOMEM;
3625
Luiz Capitulino222f1802006-03-20 22:16:13 -08003626 pkt_dev->flows = vmalloc(MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003627 if (pkt_dev->flows == NULL) {
3628 kfree(pkt_dev);
3629 return -ENOMEM;
3630 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003631 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003632
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003633 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003634 pkt_dev->min_pkt_size = ETH_ZLEN;
3635 pkt_dev->max_pkt_size = ETH_ZLEN;
3636 pkt_dev->nfrags = 0;
3637 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003638 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003639 pkt_dev->count = pg_count_d;
3640 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003641 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003642 pkt_dev->udp_src_max = 9;
3643 pkt_dev->udp_dst_min = 9;
3644 pkt_dev->udp_dst_max = 9;
3645
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003646 pkt_dev->vlan_p = 0;
3647 pkt_dev->vlan_cfi = 0;
3648 pkt_dev->vlan_id = 0xffff;
3649 pkt_dev->svlan_p = 0;
3650 pkt_dev->svlan_cfi = 0;
3651 pkt_dev->svlan_id = 0xffff;
3652
Stephen Hemminger39df2322007-03-04 16:11:51 -08003653 err = pktgen_setup_dev(pkt_dev, ifname);
3654 if (err)
3655 goto out1;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003656
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003657 pkt_dev->entry = proc_create_data(ifname, 0600, pg_proc_dir,
3658 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003659 if (!pkt_dev->entry) {
David S. Miller25a8b252007-07-30 16:11:48 -07003660 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003661 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003662 err = -EINVAL;
3663 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003664 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003665#ifdef CONFIG_XFRM
3666 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3667 pkt_dev->ipsproto = IPPROTO_ESP;
3668#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003669
3670 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003671out2:
3672 dev_put(pkt_dev->odev);
3673out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003674#ifdef CONFIG_XFRM
3675 free_SAs(pkt_dev);
3676#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003677 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003678 kfree(pkt_dev);
3679 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680}
3681
David S. Milleree74baa2007-01-01 20:51:53 -08003682static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003684 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003685 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003686 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687
Luiz Capitulino222f1802006-03-20 22:16:13 -08003688 t = kzalloc(sizeof(struct pktgen_thread), GFP_KERNEL);
3689 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07003690 printk(KERN_ERR "pktgen: ERROR: out of memory, can't "
3691 "create new thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003692 return -ENOMEM;
3693 }
3694
Luiz Capitulino222f1802006-03-20 22:16:13 -08003695 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003697
David S. Milleree74baa2007-01-01 20:51:53 -08003698 INIT_LIST_HEAD(&t->if_list);
3699
3700 list_add_tail(&t->th_list, &pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003701 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003702
3703 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3704 if (IS_ERR(p)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003705 printk(KERN_ERR "pktgen: kernel_thread() failed "
3706 "for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003707 list_del(&t->th_list);
3708 kfree(t);
3709 return PTR_ERR(p);
3710 }
3711 kthread_bind(p, cpu);
3712 t->tsk = p;
3713
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003714 pe = proc_create_data(t->tsk->comm, 0600, pg_proc_dir,
3715 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003716 if (!pe) {
David S. Miller25a8b252007-07-30 16:11:48 -07003717 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003718 PG_PROC_DIR, t->tsk->comm);
3719 kthread_stop(p);
3720 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003721 kfree(t);
3722 return -EINVAL;
3723 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003724
David S. Milleree74baa2007-01-01 20:51:53 -08003725 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003726 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
3728 return 0;
3729}
3730
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003731/*
3732 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003734static void _rem_dev_from_if_list(struct pktgen_thread *t,
3735 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003737 struct list_head *q, *n;
3738 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003740 list_for_each_safe(q, n, &t->if_list) {
3741 p = list_entry(q, struct pktgen_dev, list);
3742 if (p == pkt_dev)
3743 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 }
3745}
3746
Luiz Capitulino222f1802006-03-20 22:16:13 -08003747static int pktgen_remove_device(struct pktgen_thread *t,
3748 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749{
3750
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003751 pr_debug("pktgen: remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
Luiz Capitulino222f1802006-03-20 22:16:13 -08003753 if (pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003754 printk(KERN_WARNING "pktgen: WARNING: trying to remove a "
3755 "running interface, stopping it now.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003756 pktgen_stop_device(pkt_dev);
3757 }
3758
3759 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
3761 if (pkt_dev->odev) {
3762 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003763 pkt_dev->odev = NULL;
3764 }
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 /* And update the thread if_list */
3767
3768 _rem_dev_from_if_list(t, pkt_dev);
3769
Stephen Hemminger39df2322007-03-04 16:11:51 -08003770 if (pkt_dev->entry)
3771 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003773#ifdef CONFIG_XFRM
3774 free_SAs(pkt_dev);
3775#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003776 vfree(pkt_dev->flows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779}
3780
Luiz Capitulino222f1802006-03-20 22:16:13 -08003781static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782{
3783 int cpu;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003784 struct proc_dir_entry *pe;
3785
David S. Miller25a8b252007-07-30 16:11:48 -07003786 printk(KERN_INFO "%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003788 pg_proc_dir = proc_mkdir(PG_PROC_DIR, init_net.proc_net);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003789 if (!pg_proc_dir)
3790 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Wang Chen25296d52008-02-28 14:11:49 -08003792 pe = proc_create(PGCTRL, 0600, pg_proc_dir, &pktgen_fops);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003793 if (pe == NULL) {
David S. Miller25a8b252007-07-30 16:11:48 -07003794 printk(KERN_ERR "pktgen: ERROR: cannot create %s "
3795 "procfs entry.\n", PGCTRL);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003796 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003797 return -EINVAL;
3798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 /* Register us to receive netdevice events */
3801 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003802
John Hawkes670c02c2005-10-13 09:30:31 -07003803 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003804 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
David S. Milleree74baa2007-01-01 20:51:53 -08003806 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003807 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07003808 printk(KERN_WARNING "pktgen: WARNING: Cannot create "
3809 "thread for cpu %d (%d)\n", cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003810 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003811
3812 if (list_empty(&pktgen_threads)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003813 printk(KERN_ERR "pktgen: ERROR: Initialization failed for "
3814 "all threads\n");
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003815 unregister_netdevice_notifier(&pktgen_notifier_block);
3816 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003817 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003818 return -ENODEV;
3819 }
3820
Luiz Capitulino222f1802006-03-20 22:16:13 -08003821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822}
3823
3824static void __exit pg_cleanup(void)
3825{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003826 struct pktgen_thread *t;
3827 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 wait_queue_head_t queue;
3829 init_waitqueue_head(&queue);
3830
Luiz Capitulino222f1802006-03-20 22:16:13 -08003831 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003833 list_for_each_safe(q, n, &pktgen_threads) {
3834 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003835 kthread_stop(t->tsk);
3836 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Luiz Capitulino222f1802006-03-20 22:16:13 -08003839 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 unregister_netdevice_notifier(&pktgen_notifier_block);
3841
Luiz Capitulino222f1802006-03-20 22:16:13 -08003842 /* Clean up proc file system */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003843 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003844 proc_net_remove(&init_net, PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845}
3846
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847module_init(pg_init);
3848module_exit(pg_cleanup);
3849
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003850MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851MODULE_DESCRIPTION("Packet Generator tool");
3852MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003853MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003855MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003857MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003859MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003861MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");