blob: 33bc3823ac6fce64b227fafe670f2b12e3816a86 [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 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000118
119#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#include <linux/sys.h>
122#include <linux/types.h>
123#include <linux/module.h>
124#include <linux/moduleparam.h>
125#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800126#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#include <linux/sched.h>
128#include <linux/slab.h>
129#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#include <linux/unistd.h>
131#include <linux/string.h>
132#include <linux/ptrace.h>
133#include <linux/errno.h>
134#include <linux/ioport.h>
135#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800136#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700137#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700138#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#include <linux/delay.h>
140#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800141#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#include <linux/init.h>
143#include <linux/skbuff.h>
144#include <linux/netdevice.h>
145#include <linux/inet.h>
146#include <linux/inetdevice.h>
147#include <linux/rtnetlink.h>
148#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700149#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#include <linux/in.h>
151#include <linux/ip.h>
152#include <linux/ipv6.h>
153#include <linux/udp.h>
154#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700155#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800157#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800158#include <linux/kthread.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200159#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#include <net/checksum.h>
161#include <net/ipv6.h>
162#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700163#ifdef CONFIG_XFRM
164#include <net/xfrm.h>
165#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#include <asm/byteorder.h>
167#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700168#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000169#include <linux/io.h>
170#include <linux/timex.h>
171#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800173#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Daniel Turull43d28b62010-06-09 22:49:57 +0000175#define VERSION "2.74"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800177#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800178#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Joe Perchesf9467ea2010-06-21 12:29:14 +0000180#define func_enter() pr_debug("entering %s\n", __func__);
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800183#define F_IPSRC_RND (1<<0) /* IP-Src Random */
184#define F_IPDST_RND (1<<1) /* IP-Dst Random */
185#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
186#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
187#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
188#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
189#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
190#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800191#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700192#define F_VID_RND (1<<9) /* Random VLAN ID */
193#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700194#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700195#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700196#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700197#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000198#define F_NODE (1<<15) /* Node memory alloc*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000201#define T_STOP (1<<0) /* Stop run */
202#define T_RUN (1<<1) /* Start run */
203#define T_REMDEVALL (1<<2) /* Remove all devs */
204#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* If lock -- can be removed after some work */
207#define if_lock(t) spin_lock(&(t->if_lock));
208#define if_unlock(t) spin_unlock(&(t->if_lock));
209
210/* Used to help with determining the pkts on receive */
211#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700212#define PG_PROC_DIR "pktgen"
213#define PGCTRL "pgctrl"
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000214static struct proc_dir_entry *pg_proc_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216#define MAX_CFLOWS 65536
217
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700218#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
219#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
220
Luiz Capitulino222f1802006-03-20 22:16:13 -0800221struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800222 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800223 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700224#ifdef CONFIG_XFRM
225 struct xfrm_state *x;
226#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700227 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700230/* flow flag bits */
231#define F_INIT (1<<0) /* flow has been initialized */
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /*
235 * Try to keep frequent/infrequent used vars. separated.
236 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800237 struct proc_dir_entry *entry; /* proc file */
238 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000239 struct list_head list; /* chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000241 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800242
243 /* If min != max, then we will either do a linear iteration, or
244 * we will do a random selection from within the range.
245 */
246 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800247 int removal_mark; /* non-zero => the device is marked for
248 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Luiz Capitulino222f1802006-03-20 22:16:13 -0800250 int min_pkt_size; /* = ETH_ZLEN; */
251 int max_pkt_size; /* = ETH_ZLEN; */
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700252 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800253 int nfrags;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000254 u64 delay; /* nano-seconds */
255
Luiz Capitulino222f1802006-03-20 22:16:13 -0800256 __u64 count; /* Default No packets to send */
257 __u64 sofar; /* How many pkts we've sent so far */
258 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800259 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Luiz Capitulino222f1802006-03-20 22:16:13 -0800261 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Luiz Capitulino222f1802006-03-20 22:16:13 -0800263 __u64 allocated_skbs;
264 __u32 clone_count;
265 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000266 * Or a failed transmit of some sort?
267 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800268 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000269 ktime_t next_tx;
270 ktime_t started_at;
271 ktime_t stopped_at;
272 u64 idle_acc; /* nano-seconds */
273
Luiz Capitulino222f1802006-03-20 22:16:13 -0800274 __u32 seq_num;
275
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000276 int clone_skb; /*
277 * Use multiple SKBs during packet gen.
278 * If this number is greater than 1, then
279 * that many copies of the same packet will be
280 * sent before a new packet is allocated.
281 * If you want to send 1024 identical packets
282 * before creating a new packet,
283 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800284 */
285
286 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
287 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
288 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
289 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
290
291 struct in6_addr in6_saddr;
292 struct in6_addr in6_daddr;
293 struct in6_addr cur_in6_daddr;
294 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800296 struct in6_addr min_in6_daddr;
297 struct in6_addr max_in6_daddr;
298 struct in6_addr min_in6_saddr;
299 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Luiz Capitulino222f1802006-03-20 22:16:13 -0800301 /* If we're doing ranges, random or incremental, then this
302 * defines the min/max for those ranges.
303 */
Al Viro252e3342006-11-14 20:48:11 -0800304 __be32 saddr_min; /* inclusive, source IP address */
305 __be32 saddr_max; /* exclusive, source IP address */
306 __be32 daddr_min; /* inclusive, dest IP address */
307 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Luiz Capitulino222f1802006-03-20 22:16:13 -0800309 __u16 udp_src_min; /* inclusive, source UDP port */
310 __u16 udp_src_max; /* exclusive, source UDP port */
311 __u16 udp_dst_min; /* inclusive, dest UDP port */
312 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700314 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000315 __u8 tos; /* six MSB of (former) IPv4 TOS
316 are for dscp codepoint */
317 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
318 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700319
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800320 /* MPLS */
321 unsigned nr_labels; /* Depth of stack, 0 = no MPLS */
322 __be32 labels[MAX_MPLS_LABELS];
323
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700324 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
325 __u8 vlan_p;
326 __u8 vlan_cfi;
327 __u16 vlan_id; /* 0xffff means no vlan tag */
328
329 __u8 svlan_p;
330 __u8 svlan_cfi;
331 __u16 svlan_id; /* 0xffff means no svlan tag */
332
Luiz Capitulino222f1802006-03-20 22:16:13 -0800333 __u32 src_mac_count; /* How many MACs to iterate through */
334 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Luiz Capitulino222f1802006-03-20 22:16:13 -0800336 unsigned char dst_mac[ETH_ALEN];
337 unsigned char src_mac[ETH_ALEN];
338
339 __u32 cur_dst_mac_offset;
340 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800341 __be32 cur_saddr;
342 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700343 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800344 __u16 cur_udp_dst;
345 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700346 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800347 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800348 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800349
350 __u8 hh[14];
351 /* = {
352 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
353
354 We fill in SRC address later
355 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
356 0x08, 0x00
357 };
358 */
359 __u16 pad; /* pad out the hh struct to an even 16 bytes */
360
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000361 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800362 * are transmitting the same one multiple times
363 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000364 struct net_device *odev; /* The out-going device.
365 * Note that the device should have it's
366 * pg_info pointer pointing back to this
367 * device.
368 * Set when the user specifies the out-going
369 * device name (not when the inject is
370 * started as it used to do.)
371 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000372 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800374 unsigned cflows; /* Concurrent flows (config) */
375 unsigned lflow; /* Flow length (config) */
376 unsigned nflows; /* accumulated flows (stats) */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700377 unsigned curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700378
379 u16 queue_map_min;
380 u16 queue_map_max;
Robert Olssone99b99b2010-03-18 22:44:30 +0000381 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700382
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700383#ifdef CONFIG_XFRM
384 __u8 ipsmode; /* IPSEC mode (config) */
385 __u8 ipsproto; /* IPSEC type (config) */
386#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800387 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388};
389
390struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800391 __be32 pgh_magic;
392 __be32 seq_num;
393 __be32 tv_sec;
394 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
397struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000398 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800399 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800400 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800401 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800402 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000404 /* Field for thread to receive "posted" events terminate,
405 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800406
407 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 int cpu;
409
Luiz Capitulino222f1802006-03-20 22:16:13 -0800410 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700411 struct completion start_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412};
413
414#define REMOVE 1
415#define FIND 0
416
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000417static inline ktime_t ktime_now(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000419 struct timespec ts;
420 ktime_get_ts(&ts);
421
422 return timespec_to_ktime(ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000425/* This works even if 32 bit because of careful byte order choice */
426static inline int ktime_lt(const ktime_t cmp1, const ktime_t cmp2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000428 return cmp1.tv64 < cmp2.tv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000431static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000432 "Packet Generator for packet performance testing. "
433 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Luiz Capitulino222f1802006-03-20 22:16:13 -0800435static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
436static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
437static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800438 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
440static void pktgen_run_all_threads(void);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800441static void pktgen_reset_all_threads(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442static void pktgen_stop_all_threads_ifs(void);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000443
Luiz Capitulino222f1802006-03-20 22:16:13 -0800444static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800446
Luiz Capitulino222f1802006-03-20 22:16:13 -0800447static unsigned int scan_ip6(const char *s, char ip[16]);
448static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000451static int pg_count_d __read_mostly = 1000;
452static int pg_delay_d __read_mostly;
453static int pg_clone_skb_d __read_mostly;
454static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Luiz Capitulino222fa072006-03-20 22:24:27 -0800456static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800457static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459static struct notifier_block pktgen_notifier_block = {
460 .notifier_call = pktgen_device_event,
461};
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900464 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
466 */
467
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700468static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800469{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000470 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000474static ssize_t pgctrl_write(struct file *file, const char __user *buf,
475 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700478 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Luiz Capitulino222f1802006-03-20 22:16:13 -0800480 if (!capable(CAP_NET_ADMIN)) {
481 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700485 if (count > sizeof(data))
486 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700489 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700490 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800491 }
492 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Luiz Capitulino222f1802006-03-20 22:16:13 -0800494 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 pktgen_stop_all_threads_ifs();
496
Luiz Capitulino222f1802006-03-20 22:16:13 -0800497 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 pktgen_run_all_threads();
499
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800500 else if (!strcmp(data, "reset"))
501 pktgen_reset_all_threads();
502
Luiz Capitulino222f1802006-03-20 22:16:13 -0800503 else
Joe Perchesf9467ea2010-06-21 12:29:14 +0000504 pr_warning("Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 err = count;
507
Luiz Capitulino222f1802006-03-20 22:16:13 -0800508out:
509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700512static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700514 return single_open(file, pgctrl_show, PDE(inode)->data);
515}
516
Arjan van de Ven9a321442007-02-12 00:55:35 -0800517static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800518 .owner = THIS_MODULE,
519 .open = pgctrl_open,
520 .read = seq_read,
521 .llseek = seq_lseek,
522 .write = pgctrl_write,
523 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700524};
525
526static int pktgen_if_show(struct seq_file *seq, void *v)
527{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000528 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000529 ktime_t stopped;
530 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Luiz Capitulino222f1802006-03-20 22:16:13 -0800532 seq_printf(seq,
533 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
534 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
535 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Luiz Capitulino222f1802006-03-20 22:16:13 -0800537 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000538 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
539 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000540 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Luiz Capitulino222f1802006-03-20 22:16:13 -0800542 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
543 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Robert Olsson45b270f2007-08-28 15:45:55 -0700545 seq_printf(seq,
546 " queue_map_min: %u queue_map_max: %u\n",
547 pkt_dev->queue_map_min,
548 pkt_dev->queue_map_max);
549
Luiz Capitulino222f1802006-03-20 22:16:13 -0800550 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800552 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
553 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
554 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
555 seq_printf(seq,
556 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
557 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Luiz Capitulino222f1802006-03-20 22:16:13 -0800559 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
560 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
561 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
562 seq_printf(seq,
563 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
564 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000566 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800567 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000568 " dst_min: %s dst_max: %s\n",
569 pkt_dev->dst_min, pkt_dev->dst_max);
570 seq_printf(seq,
571 " src_min: %s src_max: %s\n",
572 pkt_dev->src_min, pkt_dev->src_max);
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700575 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Johannes Berge1749612008-10-27 15:59:26 -0700577 seq_printf(seq, "%pM ",
578 is_zero_ether_addr(pkt_dev->src_mac) ?
579 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Luiz Capitulino222f1802006-03-20 22:16:13 -0800581 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700582 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Luiz Capitulino222f1802006-03-20 22:16:13 -0800584 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000585 " udp_src_min: %d udp_src_max: %d"
586 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800587 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
588 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Luiz Capitulino222f1802006-03-20 22:16:13 -0800590 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800591 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700592 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800594 if (pkt_dev->nr_labels) {
595 unsigned i;
596 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700597 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800598 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
599 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
600 }
601
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000602 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700603 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000604 pkt_dev->vlan_id, pkt_dev->vlan_p,
605 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700606
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000607 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700608 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000609 pkt_dev->svlan_id, pkt_dev->svlan_p,
610 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700611
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000612 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700613 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700614
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000615 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700616 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700617
Robert Olssone99b99b2010-03-18 22:44:30 +0000618 if (pkt_dev->node >= 0)
619 seq_printf(seq, " node: %d\n", pkt_dev->node);
620
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800621 seq_printf(seq, " Flags: ");
622
Luiz Capitulino222f1802006-03-20 22:16:13 -0800623 if (pkt_dev->flags & F_IPV6)
624 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Luiz Capitulino222f1802006-03-20 22:16:13 -0800626 if (pkt_dev->flags & F_IPSRC_RND)
627 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Luiz Capitulino222f1802006-03-20 22:16:13 -0800629 if (pkt_dev->flags & F_IPDST_RND)
630 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Luiz Capitulino222f1802006-03-20 22:16:13 -0800632 if (pkt_dev->flags & F_TXSIZE_RND)
633 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Luiz Capitulino222f1802006-03-20 22:16:13 -0800635 if (pkt_dev->flags & F_UDPSRC_RND)
636 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Luiz Capitulino222f1802006-03-20 22:16:13 -0800638 if (pkt_dev->flags & F_UDPDST_RND)
639 seq_printf(seq, "UDPDST_RND ");
640
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800641 if (pkt_dev->flags & F_MPLS_RND)
642 seq_printf(seq, "MPLS_RND ");
643
Robert Olsson45b270f2007-08-28 15:45:55 -0700644 if (pkt_dev->flags & F_QUEUE_MAP_RND)
645 seq_printf(seq, "QUEUE_MAP_RND ");
646
Robert Olssone6fce5b2008-08-07 02:23:01 -0700647 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
648 seq_printf(seq, "QUEUE_MAP_CPU ");
649
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700650 if (pkt_dev->cflows) {
651 if (pkt_dev->flags & F_FLOW_SEQ)
652 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
653 else
654 seq_printf(seq, "FLOW_RND ");
655 }
656
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700657#ifdef CONFIG_XFRM
658 if (pkt_dev->flags & F_IPSEC_ON)
659 seq_printf(seq, "IPSEC ");
660#endif
661
Luiz Capitulino222f1802006-03-20 22:16:13 -0800662 if (pkt_dev->flags & F_MACSRC_RND)
663 seq_printf(seq, "MACSRC_RND ");
664
665 if (pkt_dev->flags & F_MACDST_RND)
666 seq_printf(seq, "MACDST_RND ");
667
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700668 if (pkt_dev->flags & F_VID_RND)
669 seq_printf(seq, "VID_RND ");
670
671 if (pkt_dev->flags & F_SVID_RND)
672 seq_printf(seq, "SVID_RND ");
673
Robert Olssone99b99b2010-03-18 22:44:30 +0000674 if (pkt_dev->flags & F_NODE)
675 seq_printf(seq, "NODE_ALLOC ");
676
Luiz Capitulino222f1802006-03-20 22:16:13 -0800677 seq_puts(seq, "\n");
678
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000679 /* not really stopped, more like last-running-at */
680 stopped = pkt_dev->running ? ktime_now() : pkt_dev->stopped_at;
681 idle = pkt_dev->idle_acc;
682 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800683
684 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000685 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000687 (unsigned long long)pkt_dev->errors);
688
689 seq_printf(seq,
690 " started: %lluus stopped: %lluus idle: %lluus\n",
691 (unsigned long long) ktime_to_us(pkt_dev->started_at),
692 (unsigned long long) ktime_to_us(stopped),
693 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800694
695 seq_printf(seq,
696 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700697 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
698 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Luiz Capitulino222f1802006-03-20 22:16:13 -0800700 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800702 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
703 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
704 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
705 } else
706 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700707 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Luiz Capitulino222f1802006-03-20 22:16:13 -0800709 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700710 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Robert Olsson45b270f2007-08-28 15:45:55 -0700712 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
713
Luiz Capitulino222f1802006-03-20 22:16:13 -0800714 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800717 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800719 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800724
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000725static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
726 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800727{
728 int i = 0;
729 *num = 0;
730
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700731 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000732 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800733 char c;
734 *num <<= 4;
735 if (get_user(c, &user_buffer[i]))
736 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000737 value = hex_to_bin(c);
738 if (value >= 0)
739 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800740 else
741 break;
742 }
743 return i;
744}
745
Luiz Capitulino222f1802006-03-20 22:16:13 -0800746static int count_trail_chars(const char __user * user_buffer,
747 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 int i;
750
751 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800752 char c;
753 if (get_user(c, &user_buffer[i]))
754 return -EFAULT;
755 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 case '\"':
757 case '\n':
758 case '\r':
759 case '\t':
760 case ' ':
761 case '=':
762 break;
763 default:
764 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767done:
768 return i;
769}
770
Luiz Capitulino222f1802006-03-20 22:16:13 -0800771static unsigned long num_arg(const char __user * user_buffer,
772 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000774 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800776
Paul Gortmakerd6182222010-10-18 12:14:44 +0000777 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800778 char c;
779 if (get_user(c, &user_buffer[i]))
780 return -EFAULT;
781 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800783 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 } else
785 break;
786 }
787 return i;
788}
789
Luiz Capitulino222f1802006-03-20 22:16:13 -0800790static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000792 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Paul Gortmakerd6182222010-10-18 12:14:44 +0000794 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800795 char c;
796 if (get_user(c, &user_buffer[i]))
797 return -EFAULT;
798 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 case '\"':
800 case '\n':
801 case '\r':
802 case '\t':
803 case ' ':
804 goto done_str;
805 break;
806 default:
807 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return i;
812}
813
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800814static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
815{
816 unsigned n = 0;
817 char c;
818 ssize_t i = 0;
819 int len;
820
821 pkt_dev->nr_labels = 0;
822 do {
823 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700824 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800825 if (len <= 0)
826 return len;
827 pkt_dev->labels[n] = htonl(tmp);
828 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
829 pkt_dev->flags |= F_MPLS_RND;
830 i += len;
831 if (get_user(c, &buffer[i]))
832 return -EFAULT;
833 i++;
834 n++;
835 if (n >= MAX_MPLS_LABELS)
836 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700837 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800838
839 pkt_dev->nr_labels = n;
840 return i;
841}
842
Luiz Capitulino222f1802006-03-20 22:16:13 -0800843static ssize_t pktgen_if_write(struct file *file,
844 const char __user * user_buffer, size_t count,
845 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Joe Perches8a994a72010-07-12 10:50:23 +0000847 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800848 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000849 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 char name[16], valstr[32];
851 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800852 char *pg_result = NULL;
853 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800855
856 pg_result = &(pkt_dev->result[0]);
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (count < 1) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000859 pr_warning("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return -EINVAL;
861 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800862
Paul Gortmakerd6182222010-10-18 12:14:44 +0000863 max = count;
864 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800865 if (tmp < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000866 pr_warning("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800867 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000869 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /* Read variable name */
872
873 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000874 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800875 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800878 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return -EFAULT;
880 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800881
882 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800884 if (len < 0)
885 return len;
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 i += len;
888
889 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000890 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700891 char tb[copy + 1];
892 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700894 tb[copy] = 0;
David S. Miller25a8b252007-07-30 16:11:48 -0700895 printk(KERN_DEBUG "pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800896 (unsigned long)count, tb);
897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 if (!strcmp(name, "min_pkt_size")) {
900 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000901 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800902 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800905 if (value < 14 + 20 + 8)
906 value = 14 + 20 + 8;
907 if (value != pkt_dev->min_pkt_size) {
908 pkt_dev->min_pkt_size = value;
909 pkt_dev->cur_pkt_size = value;
910 }
911 sprintf(pg_result, "OK: min_pkt_size=%u",
912 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return count;
914 }
915
Luiz Capitulino222f1802006-03-20 22:16:13 -0800916 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000918 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800919 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800922 if (value < 14 + 20 + 8)
923 value = 14 + 20 + 8;
924 if (value != pkt_dev->max_pkt_size) {
925 pkt_dev->max_pkt_size = value;
926 pkt_dev->cur_pkt_size = value;
927 }
928 sprintf(pg_result, "OK: max_pkt_size=%u",
929 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return count;
931 }
932
Luiz Capitulino222f1802006-03-20 22:16:13 -0800933 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (!strcmp(name, "pkt_size")) {
936 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000937 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800938 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800941 if (value < 14 + 20 + 8)
942 value = 14 + 20 + 8;
943 if (value != pkt_dev->min_pkt_size) {
944 pkt_dev->min_pkt_size = value;
945 pkt_dev->max_pkt_size = value;
946 pkt_dev->cur_pkt_size = value;
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
949 return count;
950 }
951
Luiz Capitulino222f1802006-03-20 22:16:13 -0800952 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000954 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800955 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800958 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 sprintf(pg_result, "OK: debug=%u", debug);
960 return count;
961 }
962
Luiz Capitulino222f1802006-03-20 22:16:13 -0800963 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000965 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800966 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 i += len;
969 pkt_dev->nfrags = value;
970 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
971 return count;
972 }
973 if (!strcmp(name, "delay")) {
974 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;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000979 if (value == 0x7FFFFFFF)
980 pkt_dev->delay = ULLONG_MAX;
981 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000982 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000983
984 sprintf(pg_result, "OK: delay=%llu",
985 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return count;
987 }
Daniel Turull43d28b62010-06-09 22:49:57 +0000988 if (!strcmp(name, "rate")) {
989 len = num_arg(&user_buffer[i], 10, &value);
990 if (len < 0)
991 return len;
992
993 i += len;
994 if (!value)
995 return len;
996 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
997 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +0000998 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +0000999
1000 sprintf(pg_result, "OK: rate=%lu", value);
1001 return count;
1002 }
1003 if (!strcmp(name, "ratep")) {
1004 len = num_arg(&user_buffer[i], 10, &value);
1005 if (len < 0)
1006 return len;
1007
1008 i += len;
1009 if (!value)
1010 return len;
1011 pkt_dev->delay = NSEC_PER_SEC/value;
1012 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001013 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001014
1015 sprintf(pg_result, "OK: rate=%lu", value);
1016 return count;
1017 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001018 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001020 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001021 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001024 if (value != pkt_dev->udp_src_min) {
1025 pkt_dev->udp_src_min = value;
1026 pkt_dev->cur_udp_src = value;
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1029 return count;
1030 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001031 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001033 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001034 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001037 if (value != pkt_dev->udp_dst_min) {
1038 pkt_dev->udp_dst_min = value;
1039 pkt_dev->cur_udp_dst = value;
1040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1042 return count;
1043 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001044 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001046 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001047 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001050 if (value != pkt_dev->udp_src_max) {
1051 pkt_dev->udp_src_max = value;
1052 pkt_dev->cur_udp_src = value;
1053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1055 return count;
1056 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001057 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001059 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001060 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001063 if (value != pkt_dev->udp_dst_max) {
1064 pkt_dev->udp_dst_max = value;
1065 pkt_dev->cur_udp_dst = value;
1066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1068 return count;
1069 }
1070 if (!strcmp(name, "clone_skb")) {
1071 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001072 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001073 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001076 pkt_dev->clone_skb = value;
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1079 return count;
1080 }
1081 if (!strcmp(name, "count")) {
1082 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001083 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001084 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 i += len;
1087 pkt_dev->count = value;
1088 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001089 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return count;
1091 }
1092 if (!strcmp(name, "src_mac_count")) {
1093 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001094 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001095 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 i += len;
1098 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001099 pkt_dev->src_mac_count = value;
1100 pkt_dev->cur_src_mac_offset = 0;
1101 }
1102 sprintf(pg_result, "OK: src_mac_count=%d",
1103 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return count;
1105 }
1106 if (!strcmp(name, "dst_mac_count")) {
1107 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001108 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001109 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 i += len;
1112 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001113 pkt_dev->dst_mac_count = value;
1114 pkt_dev->cur_dst_mac_offset = 0;
1115 }
1116 sprintf(pg_result, "OK: dst_mac_count=%d",
1117 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return count;
1119 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001120 if (!strcmp(name, "node")) {
1121 len = num_arg(&user_buffer[i], 10, &value);
1122 if (len < 0)
1123 return len;
1124
1125 i += len;
1126
1127 if (node_possible(value)) {
1128 pkt_dev->node = value;
1129 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
1130 }
1131 else
1132 sprintf(pg_result, "ERROR: node not possible");
1133 return count;
1134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001136 char f[32];
1137 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001139 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001140 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (copy_from_user(f, &user_buffer[i], len))
1143 return -EFAULT;
1144 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001145 if (strcmp(f, "IPSRC_RND") == 0)
1146 pkt_dev->flags |= F_IPSRC_RND;
1147
1148 else if (strcmp(f, "!IPSRC_RND") == 0)
1149 pkt_dev->flags &= ~F_IPSRC_RND;
1150
1151 else if (strcmp(f, "TXSIZE_RND") == 0)
1152 pkt_dev->flags |= F_TXSIZE_RND;
1153
1154 else if (strcmp(f, "!TXSIZE_RND") == 0)
1155 pkt_dev->flags &= ~F_TXSIZE_RND;
1156
1157 else if (strcmp(f, "IPDST_RND") == 0)
1158 pkt_dev->flags |= F_IPDST_RND;
1159
1160 else if (strcmp(f, "!IPDST_RND") == 0)
1161 pkt_dev->flags &= ~F_IPDST_RND;
1162
1163 else if (strcmp(f, "UDPSRC_RND") == 0)
1164 pkt_dev->flags |= F_UDPSRC_RND;
1165
1166 else if (strcmp(f, "!UDPSRC_RND") == 0)
1167 pkt_dev->flags &= ~F_UDPSRC_RND;
1168
1169 else if (strcmp(f, "UDPDST_RND") == 0)
1170 pkt_dev->flags |= F_UDPDST_RND;
1171
1172 else if (strcmp(f, "!UDPDST_RND") == 0)
1173 pkt_dev->flags &= ~F_UDPDST_RND;
1174
1175 else if (strcmp(f, "MACSRC_RND") == 0)
1176 pkt_dev->flags |= F_MACSRC_RND;
1177
1178 else if (strcmp(f, "!MACSRC_RND") == 0)
1179 pkt_dev->flags &= ~F_MACSRC_RND;
1180
1181 else if (strcmp(f, "MACDST_RND") == 0)
1182 pkt_dev->flags |= F_MACDST_RND;
1183
1184 else if (strcmp(f, "!MACDST_RND") == 0)
1185 pkt_dev->flags &= ~F_MACDST_RND;
1186
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001187 else if (strcmp(f, "MPLS_RND") == 0)
1188 pkt_dev->flags |= F_MPLS_RND;
1189
1190 else if (strcmp(f, "!MPLS_RND") == 0)
1191 pkt_dev->flags &= ~F_MPLS_RND;
1192
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001193 else if (strcmp(f, "VID_RND") == 0)
1194 pkt_dev->flags |= F_VID_RND;
1195
1196 else if (strcmp(f, "!VID_RND") == 0)
1197 pkt_dev->flags &= ~F_VID_RND;
1198
1199 else if (strcmp(f, "SVID_RND") == 0)
1200 pkt_dev->flags |= F_SVID_RND;
1201
1202 else if (strcmp(f, "!SVID_RND") == 0)
1203 pkt_dev->flags &= ~F_SVID_RND;
1204
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001205 else if (strcmp(f, "FLOW_SEQ") == 0)
1206 pkt_dev->flags |= F_FLOW_SEQ;
1207
Robert Olsson45b270f2007-08-28 15:45:55 -07001208 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1209 pkt_dev->flags |= F_QUEUE_MAP_RND;
1210
1211 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1212 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001213
1214 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1215 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1216
1217 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1218 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001219#ifdef CONFIG_XFRM
1220 else if (strcmp(f, "IPSEC") == 0)
1221 pkt_dev->flags |= F_IPSEC_ON;
1222#endif
1223
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001224 else if (strcmp(f, "!IPV6") == 0)
1225 pkt_dev->flags &= ~F_IPV6;
1226
Robert Olssone99b99b2010-03-18 22:44:30 +00001227 else if (strcmp(f, "NODE_ALLOC") == 0)
1228 pkt_dev->flags |= F_NODE;
1229
1230 else if (strcmp(f, "!NODE_ALLOC") == 0)
1231 pkt_dev->flags &= ~F_NODE;
1232
Luiz Capitulino222f1802006-03-20 22:16:13 -08001233 else {
1234 sprintf(pg_result,
1235 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1236 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001237 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Robert Olssone99b99b2010-03-18 22:44:30 +00001238 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC, NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001239 return count;
1240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1242 return count;
1243 }
1244 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1245 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001246 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001247 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Luiz Capitulino222f1802006-03-20 22:16:13 -08001249 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001251 buf[len] = 0;
1252 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1253 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1254 strncpy(pkt_dev->dst_min, buf, len);
1255 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1256 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1257 }
1258 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001259 printk(KERN_DEBUG "pktgen: dst_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001260 pkt_dev->dst_min);
1261 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1263 return count;
1264 }
1265 if (!strcmp(name, "dst_max")) {
1266 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001267 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001268 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Luiz Capitulino222f1802006-03-20 22:16:13 -08001271 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return -EFAULT;
1273
Luiz Capitulino222f1802006-03-20 22:16:13 -08001274 buf[len] = 0;
1275 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1276 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1277 strncpy(pkt_dev->dst_max, buf, len);
1278 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1279 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1280 }
1281 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001282 printk(KERN_DEBUG "pktgen: dst_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001283 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 i += len;
1285 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1286 return count;
1287 }
1288 if (!strcmp(name, "dst6")) {
1289 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001290 if (len < 0)
1291 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 pkt_dev->flags |= F_IPV6;
1294
Luiz Capitulino222f1802006-03-20 22:16:13 -08001295 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001297 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001300 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1303
Luiz Capitulino222f1802006-03-20 22:16:13 -08001304 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001305 printk(KERN_DEBUG "pktgen: dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Luiz Capitulino222f1802006-03-20 22:16:13 -08001307 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 sprintf(pg_result, "OK: dst6=%s", buf);
1309 return count;
1310 }
1311 if (!strcmp(name, "dst6_min")) {
1312 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001313 if (len < 0)
1314 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 pkt_dev->flags |= F_IPV6;
1317
Luiz Capitulino222f1802006-03-20 22:16:13 -08001318 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001320 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001323 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Luiz Capitulino222f1802006-03-20 22:16:13 -08001325 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1326 &pkt_dev->min_in6_daddr);
1327 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001328 printk(KERN_DEBUG "pktgen: dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Luiz Capitulino222f1802006-03-20 22:16:13 -08001330 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 sprintf(pg_result, "OK: dst6_min=%s", buf);
1332 return count;
1333 }
1334 if (!strcmp(name, "dst6_max")) {
1335 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001336 if (len < 0)
1337 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 pkt_dev->flags |= F_IPV6;
1340
Luiz Capitulino222f1802006-03-20 22:16:13 -08001341 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001346 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Luiz Capitulino222f1802006-03-20 22:16:13 -08001348 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001349 printk(KERN_DEBUG "pktgen: dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Luiz Capitulino222f1802006-03-20 22:16:13 -08001351 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 sprintf(pg_result, "OK: dst6_max=%s", buf);
1353 return count;
1354 }
1355 if (!strcmp(name, "src6")) {
1356 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001357 if (len < 0)
1358 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 pkt_dev->flags |= F_IPV6;
1361
Luiz Capitulino222f1802006-03-20 22:16:13 -08001362 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001364 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001367 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1370
Luiz Capitulino222f1802006-03-20 22:16:13 -08001371 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001372 printk(KERN_DEBUG "pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001373
1374 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 sprintf(pg_result, "OK: src6=%s", buf);
1376 return count;
1377 }
1378 if (!strcmp(name, "src_min")) {
1379 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001380 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001381 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001382
Luiz Capitulino222f1802006-03-20 22:16:13 -08001383 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001385 buf[len] = 0;
1386 if (strcmp(buf, pkt_dev->src_min) != 0) {
1387 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1388 strncpy(pkt_dev->src_min, buf, len);
1389 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1390 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1391 }
1392 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001393 printk(KERN_DEBUG "pktgen: src_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001394 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 i += len;
1396 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1397 return count;
1398 }
1399 if (!strcmp(name, "src_max")) {
1400 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001401 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001402 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001403
Luiz Capitulino222f1802006-03-20 22:16:13 -08001404 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001406 buf[len] = 0;
1407 if (strcmp(buf, pkt_dev->src_max) != 0) {
1408 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1409 strncpy(pkt_dev->src_max, buf, len);
1410 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1411 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1412 }
1413 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001414 printk(KERN_DEBUG "pktgen: src_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001415 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 i += len;
1417 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1418 return count;
1419 }
1420 if (!strcmp(name, "dst_mac")) {
1421 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001422 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001424 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001427 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001428 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001431 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return -EFAULT;
1433 i += len;
1434
Luiz Capitulino222f1802006-03-20 22:16:13 -08001435 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Andy Shevchenko451e07a2010-07-23 03:18:10 +00001436 int value;
1437
1438 value = hex_to_bin(*v);
1439 if (value >= 0)
1440 *m = *m * 16 + value;
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (*v == ':') {
1443 m++;
1444 *m = 0;
1445 }
1446 }
1447
1448 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001449 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1450 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 sprintf(pg_result, "OK: dstmac");
1453 return count;
1454 }
1455 if (!strcmp(name, "src_mac")) {
1456 char *v = valstr;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001457 unsigned char old_smac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 unsigned char *m = pkt_dev->src_mac;
1459
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001460 memcpy(old_smac, pkt_dev->src_mac, ETH_ALEN);
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001463 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001464 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001467 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return -EFAULT;
1469 i += len;
1470
Luiz Capitulino222f1802006-03-20 22:16:13 -08001471 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Andy Shevchenko451e07a2010-07-23 03:18:10 +00001472 int value;
1473
1474 value = hex_to_bin(*v);
1475 if (value >= 0)
1476 *m = *m * 16 + value;
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (*v == ':') {
1479 m++;
1480 *m = 0;
1481 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001484 /* Set up Src MAC */
1485 if (compare_ether_addr(old_smac, pkt_dev->src_mac))
1486 memcpy(&(pkt_dev->hh[6]), pkt_dev->src_mac, ETH_ALEN);
1487
Luiz Capitulino222f1802006-03-20 22:16:13 -08001488 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return count;
1490 }
1491
Luiz Capitulino222f1802006-03-20 22:16:13 -08001492 if (!strcmp(name, "clear_counters")) {
1493 pktgen_clear_counters(pkt_dev);
1494 sprintf(pg_result, "OK: Clearing counters.\n");
1495 return count;
1496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if (!strcmp(name, "flows")) {
1499 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001500 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001501 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 i += len;
1504 if (value > MAX_CFLOWS)
1505 value = MAX_CFLOWS;
1506
1507 pkt_dev->cflows = value;
1508 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1509 return count;
1510 }
1511
1512 if (!strcmp(name, "flowlen")) {
1513 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001514 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001515 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 i += len;
1518 pkt_dev->lflow = value;
1519 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1520 return count;
1521 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001522
Robert Olsson45b270f2007-08-28 15:45:55 -07001523 if (!strcmp(name, "queue_map_min")) {
1524 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001525 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001526 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001527
Robert Olsson45b270f2007-08-28 15:45:55 -07001528 i += len;
1529 pkt_dev->queue_map_min = value;
1530 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1531 return count;
1532 }
1533
1534 if (!strcmp(name, "queue_map_max")) {
1535 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001536 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001537 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001538
Robert Olsson45b270f2007-08-28 15:45:55 -07001539 i += len;
1540 pkt_dev->queue_map_max = value;
1541 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1542 return count;
1543 }
1544
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001545 if (!strcmp(name, "mpls")) {
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001546 unsigned n, cnt;
1547
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001548 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001549 if (len < 0)
1550 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001551 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001552 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001553 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001554 cnt += sprintf(pg_result + cnt,
1555 "%08x%s", ntohl(pkt_dev->labels[n]),
1556 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001557
1558 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1559 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1560 pkt_dev->svlan_id = 0xffff;
1561
1562 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001563 printk(KERN_DEBUG "pktgen: VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001564 }
1565 return count;
1566 }
1567
1568 if (!strcmp(name, "vlan_id")) {
1569 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001570 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001571 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001572
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001573 i += len;
1574 if (value <= 4095) {
1575 pkt_dev->vlan_id = value; /* turn on VLAN */
1576
1577 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001578 printk(KERN_DEBUG "pktgen: VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001579
1580 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001581 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001582
1583 pkt_dev->nr_labels = 0; /* turn off MPLS */
1584 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1585 } else {
1586 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1587 pkt_dev->svlan_id = 0xffff;
1588
1589 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001590 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001591 }
1592 return count;
1593 }
1594
1595 if (!strcmp(name, "vlan_p")) {
1596 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001597 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001598 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001599
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001600 i += len;
1601 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1602 pkt_dev->vlan_p = value;
1603 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1604 } else {
1605 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1606 }
1607 return count;
1608 }
1609
1610 if (!strcmp(name, "vlan_cfi")) {
1611 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001612 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001613 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001614
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001615 i += len;
1616 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1617 pkt_dev->vlan_cfi = value;
1618 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1619 } else {
1620 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1621 }
1622 return count;
1623 }
1624
1625 if (!strcmp(name, "svlan_id")) {
1626 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001627 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001628 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001629
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001630 i += len;
1631 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1632 pkt_dev->svlan_id = value; /* turn on SVLAN */
1633
1634 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001635 printk(KERN_DEBUG "pktgen: SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001636
1637 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001638 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001639
1640 pkt_dev->nr_labels = 0; /* turn off MPLS */
1641 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1642 } else {
1643 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1644 pkt_dev->svlan_id = 0xffff;
1645
1646 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001647 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001648 }
1649 return count;
1650 }
1651
1652 if (!strcmp(name, "svlan_p")) {
1653 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001654 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001655 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001656
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001657 i += len;
1658 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1659 pkt_dev->svlan_p = value;
1660 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1661 } else {
1662 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1663 }
1664 return count;
1665 }
1666
1667 if (!strcmp(name, "svlan_cfi")) {
1668 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001669 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001670 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001671
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001672 i += len;
1673 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1674 pkt_dev->svlan_cfi = value;
1675 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1676 } else {
1677 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1678 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001679 return count;
1680 }
1681
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001682 if (!strcmp(name, "tos")) {
1683 __u32 tmp_value = 0;
1684 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001685 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001686 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001687
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001688 i += len;
1689 if (len == 2) {
1690 pkt_dev->tos = tmp_value;
1691 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1692 } else {
1693 sprintf(pg_result, "ERROR: tos must be 00-ff");
1694 }
1695 return count;
1696 }
1697
1698 if (!strcmp(name, "traffic_class")) {
1699 __u32 tmp_value = 0;
1700 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001701 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001702 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001703
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001704 i += len;
1705 if (len == 2) {
1706 pkt_dev->traffic_class = tmp_value;
1707 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1708 } else {
1709 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1710 }
1711 return count;
1712 }
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1715 return -EINVAL;
1716}
1717
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001718static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001720 return single_open(file, pktgen_if_show, PDE(inode)->data);
1721}
1722
Arjan van de Ven9a321442007-02-12 00:55:35 -08001723static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001724 .owner = THIS_MODULE,
1725 .open = pktgen_if_open,
1726 .read = seq_read,
1727 .llseek = seq_lseek,
1728 .write = pktgen_if_write,
1729 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001730};
1731
1732static int pktgen_thread_show(struct seq_file *seq, void *v)
1733{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001734 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001735 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001737 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Luiz Capitulino222f1802006-03-20 22:16:13 -08001739 seq_printf(seq, "Running: ");
1740
1741 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001742 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001744 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Luiz Capitulino222f1802006-03-20 22:16:13 -08001746 seq_printf(seq, "\nStopped: ");
1747
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001748 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001749 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001750 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001753 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001755 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Luiz Capitulino222f1802006-03-20 22:16:13 -08001757 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001762static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001763 const char __user * user_buffer,
1764 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Joe Perches8a994a72010-07-12 10:50:23 +00001766 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001767 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001768 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001770 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001773 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return -EINVAL;
1775 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001776
Paul Gortmakerd6182222010-10-18 12:14:44 +00001777 max = count;
1778 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001779 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001780 return len;
1781
Paul Gortmakerd6182222010-10-18 12:14:44 +00001782 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 /* Read variable name */
1785
1786 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001787 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001788 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 memset(name, 0, sizeof(name));
1791 if (copy_from_user(name, &user_buffer[i], len))
1792 return -EFAULT;
1793 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001794
Luiz Capitulino222f1802006-03-20 22:16:13 -08001795 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001797 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001798 return len;
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 i += len;
1801
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001802 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001803 printk(KERN_DEBUG "pktgen: t=%s, count=%lu\n",
1804 name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Luiz Capitulino222f1802006-03-20 22:16:13 -08001806 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001807 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 ret = -EINVAL;
1809 goto out;
1810 }
1811
1812 pg_result = &(t->result[0]);
1813
Luiz Capitulino222f1802006-03-20 22:16:13 -08001814 if (!strcmp(name, "add_device")) {
1815 char f[32];
1816 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001818 if (len < 0) {
1819 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 goto out;
1821 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001822 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return -EFAULT;
1824 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001825 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001826 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001827 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001828 ret = count;
1829 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 goto out;
1831 }
1832
Luiz Capitulino222f1802006-03-20 22:16:13 -08001833 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001834 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001835 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001836 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001837 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001839 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 goto out;
1841 }
1842
Luiz Capitulino222f1802006-03-20 22:16:13 -08001843 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001844 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001845 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 goto out;
1847 }
1848
1849 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001850out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return ret;
1852}
1853
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001854static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001856 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Arjan van de Ven9a321442007-02-12 00:55:35 -08001859static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001860 .owner = THIS_MODULE,
1861 .open = pktgen_thread_open,
1862 .read = seq_read,
1863 .llseek = seq_lseek,
1864 .write = pktgen_thread_write,
1865 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001866};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001869static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 struct pktgen_thread *t;
1872 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001873 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001875 list_for_each_entry(t, &pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001876 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001878 if (remove) {
1879 if_lock(t);
1880 pkt_dev->removal_mark = 1;
1881 t->control |= T_REMDEV;
1882 if_unlock(t);
1883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 break;
1885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001887 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001890/*
1891 * mark a device for removal
1892 */
Stephen Hemminger39df2322007-03-04 16:11:51 -08001893static void pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
1895 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001896 const int max_tries = 10, msec_per_try = 125;
1897 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001898
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001899 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001900 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001901
Luiz Capitulino222f1802006-03-20 22:16:13 -08001902 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001903
1904 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001905 if (pkt_dev == NULL)
1906 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001907
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001908 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001909 pr_debug("%s: waiting for %s to disappear....\n",
1910 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001911 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001912 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001913
1914 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001915 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1916 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001917 break;
1918 }
1919
1920 }
1921
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001922 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001923}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001924
Stephen Hemminger39df2322007-03-04 16:11:51 -08001925static void pktgen_change_name(struct net_device *dev)
1926{
1927 struct pktgen_thread *t;
1928
1929 list_for_each_entry(t, &pktgen_threads, th_list) {
1930 struct pktgen_dev *pkt_dev;
1931
1932 list_for_each_entry(pkt_dev, &t->if_list, list) {
1933 if (pkt_dev->odev != dev)
1934 continue;
1935
1936 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
1937
Alexey Dobriyan29753152009-08-28 23:34:43 -07001938 pkt_dev->entry = proc_create_data(dev->name, 0600,
1939 pg_proc_dir,
1940 &pktgen_if_fops,
1941 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001942 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001943 pr_err("can't move proc entry for '%s'\n",
1944 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001945 break;
1946 }
1947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
Luiz Capitulino222f1802006-03-20 22:16:13 -08001950static int pktgen_device_event(struct notifier_block *unused,
1951 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
Stephen Hemminger39df2322007-03-04 16:11:51 -08001953 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001955 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001956 return NOTIFY_DONE;
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 /* It is OK that we do not hold the group lock right now,
1959 * as we run under the RTNL lock.
1960 */
1961
1962 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001963 case NETDEV_CHANGENAME:
1964 pktgen_change_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001968 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 return NOTIFY_DONE;
1973}
1974
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001975static struct net_device *pktgen_dev_get_by_name(struct pktgen_dev *pkt_dev,
1976 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001977{
1978 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00001979 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001980
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001981 for (i = 0; ifname[i] != '@'; i++) {
1982 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001983 break;
1984
1985 b[i] = ifname[i];
1986 }
1987 b[i] = 0;
1988
1989 return dev_get_by_name(&init_net, b);
1990}
1991
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993/* Associate pktgen_dev with a device. */
1994
Stephen Hemminger39df2322007-03-04 16:11:51 -08001995static int pktgen_setup_dev(struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001996{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001998 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 if (pkt_dev->odev) {
2002 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002003 pkt_dev->odev = NULL;
2004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Robert Olssone6fce5b2008-08-07 02:23:01 -07002006 odev = pktgen_dev_get_by_name(pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002008 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002009 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002013 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002014 err = -EINVAL;
2015 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002016 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002017 err = -ENETDOWN;
2018 } else {
2019 pkt_dev->odev = odev;
2020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002024 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
2027/* Read pkt_dev from the interface and set up internal pktgen_dev
2028 * structure to have the right information to create/send packets
2029 */
2030static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2031{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002032 int ntxq;
2033
Luiz Capitulino222f1802006-03-20 22:16:13 -08002034 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002035 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002036 sprintf(pkt_dev->result,
2037 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2038 return;
2039 }
2040
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002041 /* make sure that we don't pick a non-existing transmit queue */
2042 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002043
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002044 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002045 pr_warning("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2046 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2047 pkt_dev->odevname);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002048 pkt_dev->queue_map_min = ntxq - 1;
2049 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002050 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002051 pr_warning("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2052 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2053 pkt_dev->odevname);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002054 pkt_dev->queue_map_max = ntxq - 1;
2055 }
2056
Luiz Capitulino222f1802006-03-20 22:16:13 -08002057 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002059 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002060 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Luiz Capitulino222f1802006-03-20 22:16:13 -08002062 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002063 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Luiz Capitulino222f1802006-03-20 22:16:13 -08002065 /* Set up pkt size */
2066 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2067
2068 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002070 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 * gets exported
2072 */
2073
2074#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08002075 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 struct inet6_dev *idev;
2077
Luiz Capitulino222f1802006-03-20 22:16:13 -08002078 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2079 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 set = 1;
2081 break;
2082 }
2083
Luiz Capitulino222f1802006-03-20 22:16:13 -08002084 if (!set) {
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /*
2087 * Use linklevel address if unconfigured.
2088 *
2089 * use ipv6_get_lladdr if/when it's get exported
2090 */
2091
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002092 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002093 idev = __in6_dev_get(pkt_dev->odev);
2094 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 struct inet6_ifaddr *ifp;
2096
2097 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002098 for (ifp = idev->addr_list; ifp;
2099 ifp = ifp->if_next) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08002100 if (ifp->scope == IFA_LINK &&
2101 !(ifp->flags & IFA_F_TENTATIVE)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002102 ipv6_addr_copy(&pkt_dev->
2103 cur_in6_saddr,
2104 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 err = 0;
2106 break;
2107 }
2108 }
2109 read_unlock_bh(&idev->lock);
2110 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002111 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002112 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002113 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
2115#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002116 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 pkt_dev->saddr_min = 0;
2118 pkt_dev->saddr_max = 0;
2119 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002120
2121 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002124 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 if (in_dev) {
2126 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002127 pkt_dev->saddr_min =
2128 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 pkt_dev->saddr_max = pkt_dev->saddr_min;
2130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 }
2132 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002133 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2135 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2136 }
2137
2138 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2139 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2140 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002141 /* Initialize current values. */
2142 pkt_dev->cur_dst_mac_offset = 0;
2143 pkt_dev->cur_src_mac_offset = 0;
2144 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2145 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2146 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2147 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 pkt_dev->nflows = 0;
2149}
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002152static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2153{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002154 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002155 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002156 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002157
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002158 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2159 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002160
Daniel Turull43d28b62010-06-09 22:49:57 +00002161 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002162 if (remaining <= 0) {
2163 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002164 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002165 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002166
Stephen Hemmingeref879792009-09-22 19:41:43 +00002167 start_time = ktime_now();
Daniel Turull43d28b62010-06-09 22:49:57 +00002168 if (remaining < 100000)
2169 ndelay(remaining); /* really small just spin */
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002170 else {
2171 /* see do_nanosleep */
2172 hrtimer_init_sleeper(&t, current);
2173 do {
2174 set_current_state(TASK_INTERRUPTIBLE);
2175 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2176 if (!hrtimer_active(&t.timer))
2177 t.task = NULL;
2178
2179 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002182 hrtimer_cancel(&t.timer);
2183 } while (t.task && pkt_dev->running && !signal_pending(current));
2184 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002186 end_time = ktime_now();
2187
2188 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002189 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002192static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2193{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002194 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002195 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2196 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2197 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2198}
2199
Stephen Hemminger648fda72009-08-27 13:55:07 +00002200static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002201{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002202 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002203}
2204
2205static inline int f_pick(struct pktgen_dev *pkt_dev)
2206{
2207 int flow = pkt_dev->curfl;
2208
2209 if (pkt_dev->flags & F_FLOW_SEQ) {
2210 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2211 /* reset time */
2212 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002213 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002214 pkt_dev->curfl += 1;
2215 if (pkt_dev->curfl >= pkt_dev->cflows)
2216 pkt_dev->curfl = 0; /*reset */
2217 }
2218 } else {
2219 flow = random32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002220 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002221
Robert Olsson1211a642008-08-05 18:44:26 -07002222 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002223 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002224 pkt_dev->flows[flow].flags = 0;
2225 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002226 }
2227
2228 return pkt_dev->curfl;
2229}
2230
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002231
2232#ifdef CONFIG_XFRM
2233/* If there was already an IPSEC SA, we keep it as is, else
2234 * we go look for it ...
2235*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002236#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002237static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002238{
2239 struct xfrm_state *x = pkt_dev->flows[flow].x;
2240 if (!x) {
2241 /*slow path: we dont already have xfrm_state*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002242 x = xfrm_stateonly_find(&init_net, DUMMY_MARK,
Alexey Dobriyan5447c5e2008-11-25 17:31:51 -08002243 (xfrm_address_t *)&pkt_dev->cur_daddr,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002244 (xfrm_address_t *)&pkt_dev->cur_saddr,
2245 AF_INET,
2246 pkt_dev->ipsmode,
2247 pkt_dev->ipsproto, 0);
2248 if (x) {
2249 pkt_dev->flows[flow].x = x;
2250 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002251 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002252 }
2253
2254 }
2255}
2256#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002257static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2258{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002259
2260 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2261 pkt_dev->cur_queue_map = smp_processor_id();
2262
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002263 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002264 __u16 t;
2265 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
2266 t = random32() %
2267 (pkt_dev->queue_map_max -
2268 pkt_dev->queue_map_min + 1)
2269 + pkt_dev->queue_map_min;
2270 } else {
2271 t = pkt_dev->cur_queue_map + 1;
2272 if (t > pkt_dev->queue_map_max)
2273 t = pkt_dev->queue_map_min;
2274 }
2275 pkt_dev->cur_queue_map = t;
2276 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002277 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 -07002278}
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280/* Increment/randomize headers according to flags and current values
2281 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2282 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002283static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2284{
2285 __u32 imn;
2286 __u32 imx;
2287 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002289 if (pkt_dev->cflows)
2290 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002293 if (pkt_dev->src_mac_count > 1) {
2294 __u32 mc;
2295 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Luiz Capitulino222f1802006-03-20 22:16:13 -08002297 if (pkt_dev->flags & F_MACSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002298 mc = random32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002299 else {
2300 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002301 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002302 pkt_dev->src_mac_count)
2303 pkt_dev->cur_src_mac_offset = 0;
2304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Luiz Capitulino222f1802006-03-20 22:16:13 -08002306 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2307 pkt_dev->hh[11] = tmp;
2308 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2309 pkt_dev->hh[10] = tmp;
2310 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2311 pkt_dev->hh[9] = tmp;
2312 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2313 pkt_dev->hh[8] = tmp;
2314 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2315 pkt_dev->hh[7] = tmp;
2316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Luiz Capitulino222f1802006-03-20 22:16:13 -08002318 /* Deal with Destination MAC */
2319 if (pkt_dev->dst_mac_count > 1) {
2320 __u32 mc;
2321 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Luiz Capitulino222f1802006-03-20 22:16:13 -08002323 if (pkt_dev->flags & F_MACDST_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002324 mc = random32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Luiz Capitulino222f1802006-03-20 22:16:13 -08002326 else {
2327 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002328 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002329 pkt_dev->dst_mac_count) {
2330 pkt_dev->cur_dst_mac_offset = 0;
2331 }
2332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Luiz Capitulino222f1802006-03-20 22:16:13 -08002334 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2335 pkt_dev->hh[5] = tmp;
2336 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2337 pkt_dev->hh[4] = tmp;
2338 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2339 pkt_dev->hh[3] = tmp;
2340 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2341 pkt_dev->hh[2] = tmp;
2342 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2343 pkt_dev->hh[1] = tmp;
2344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002346 if (pkt_dev->flags & F_MPLS_RND) {
2347 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002348 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002349 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2350 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002351 ((__force __be32)random32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002352 htonl(0x000fffff));
2353 }
2354
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002355 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002356 pkt_dev->vlan_id = random32() & (4096-1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002357 }
2358
2359 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002360 pkt_dev->svlan_id = random32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002361 }
2362
Luiz Capitulino222f1802006-03-20 22:16:13 -08002363 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2364 if (pkt_dev->flags & F_UDPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002365 pkt_dev->cur_udp_src = random32() %
2366 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2367 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Luiz Capitulino222f1802006-03-20 22:16:13 -08002369 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 pkt_dev->cur_udp_src++;
2371 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2372 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002373 }
2374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Luiz Capitulino222f1802006-03-20 22:16:13 -08002376 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2377 if (pkt_dev->flags & F_UDPDST_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002378 pkt_dev->cur_udp_dst = random32() %
2379 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2380 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002381 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002383 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002385 }
2386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388 if (!(pkt_dev->flags & F_IPV6)) {
2389
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002390 imn = ntohl(pkt_dev->saddr_min);
2391 imx = ntohl(pkt_dev->saddr_max);
2392 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002394 if (pkt_dev->flags & F_IPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002395 t = random32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 else {
2397 t = ntohl(pkt_dev->cur_saddr);
2398 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002399 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 }
2403 pkt_dev->cur_saddr = htonl(t);
2404 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002405
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002406 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2408 } else {
Al Viro252e3342006-11-14 20:48:11 -08002409 imn = ntohl(pkt_dev->daddr_min);
2410 imx = ntohl(pkt_dev->daddr_max);
2411 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002413 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (pkt_dev->flags & F_IPDST_RND) {
2415
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002416 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002417 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Joe Perches21cf2252007-12-16 13:44:00 -08002419 while (ipv4_is_loopback(s) ||
2420 ipv4_is_multicast(s) ||
Jan Engelhardt1e637c72008-01-21 03:18:08 -08002421 ipv4_is_lbcast(s) ||
Joe Perches21cf2252007-12-16 13:44:00 -08002422 ipv4_is_zeronet(s) ||
2423 ipv4_is_local_multicast(s)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002424 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002425 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 }
Al Viro252e3342006-11-14 20:48:11 -08002427 pkt_dev->cur_daddr = s;
2428 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 t = ntohl(pkt_dev->cur_daddr);
2430 t++;
2431 if (t > imx) {
2432 t = imn;
2433 }
2434 pkt_dev->cur_daddr = htonl(t);
2435 }
2436 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002437 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002438 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002439 pkt_dev->flows[flow].cur_daddr =
2440 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002441#ifdef CONFIG_XFRM
2442 if (pkt_dev->flags & F_IPSEC_ON)
2443 get_ipsec_sa(pkt_dev, flow);
2444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 pkt_dev->nflows++;
2446 }
2447 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002448 } else { /* IPV6 * */
2449
2450 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2451 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2452 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2453 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 else {
2455 int i;
2456
2457 /* Only random destinations yet */
2458
Luiz Capitulino222f1802006-03-20 22:16:13 -08002459 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002461 (((__force __be32)random32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002462 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2463 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
2467
Luiz Capitulino222f1802006-03-20 22:16:13 -08002468 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2469 __u32 t;
2470 if (pkt_dev->flags & F_TXSIZE_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002471 t = random32() %
2472 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2473 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002474 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002476 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002478 }
2479 pkt_dev->cur_pkt_size = t;
2480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002482 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 pkt_dev->flows[flow].count++;
2485}
2486
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002487
2488#ifdef CONFIG_XFRM
2489static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2490{
2491 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2492 int err = 0;
2493 struct iphdr *iph;
2494
2495 if (!x)
2496 return 0;
2497 /* XXX: we dont support tunnel mode for now until
2498 * we resolve the dst issue */
2499 if (x->props.mode != XFRM_MODE_TRANSPORT)
2500 return 0;
2501
2502 spin_lock(&x->lock);
2503 iph = ip_hdr(skb);
2504
Herbert Xu13996372007-10-17 21:35:51 -07002505 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002506 if (err)
2507 goto error;
2508 err = x->type->output(x, skb);
2509 if (err)
2510 goto error;
2511
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002512 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002513 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002514error:
2515 spin_unlock(&x->lock);
2516 return err;
2517}
2518
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002519static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002520{
2521 if (pkt_dev->cflows) {
2522 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002523 int i;
2524 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002525 struct xfrm_state *x = pkt_dev->flows[i].x;
2526 if (x) {
2527 xfrm_state_put(x);
2528 pkt_dev->flows[i].x = NULL;
2529 }
2530 }
2531 }
2532}
2533
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002534static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002535 struct sk_buff *skb, __be16 protocol)
2536{
2537 if (pkt_dev->flags & F_IPSEC_ON) {
2538 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2539 int nhead = 0;
2540 if (x) {
2541 int ret;
2542 __u8 *eth;
2543 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002544 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002545 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2546 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002547 pr_err("Error expanding ipsec packet %d\n",
2548 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002549 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002550 }
2551 }
2552
2553 /* ipsec is not expecting ll header */
2554 skb_pull(skb, ETH_HLEN);
2555 ret = pktgen_output_ipsec(skb, pkt_dev);
2556 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002557 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002558 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002559 }
2560 /* restore ll */
2561 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2562 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002563 *(u16 *) &eth[12] = protocol;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002564 }
2565 }
2566 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002567err:
2568 kfree_skb(skb);
2569 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002570}
2571#endif
2572
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002573static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2574{
2575 unsigned i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002576 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002577 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002578
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002579 mpls--;
2580 *mpls |= MPLS_STACK_BOTTOM;
2581}
2582
Al Viro0f37c602006-11-03 03:49:56 -08002583static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2584 unsigned int prio)
2585{
2586 return htons(id | (cfi << 12) | (prio << 13));
2587}
2588
Luiz Capitulino222f1802006-03-20 22:16:13 -08002589static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2590 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
2592 struct sk_buff *skb = NULL;
2593 __u8 *eth;
2594 struct udphdr *udph;
2595 int datalen, iplen;
2596 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002597 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002598 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002599 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002600 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2601 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2602 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2603 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002604 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002605
2606 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002607 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002608
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002609 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002610 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002611
Robert Olsson64053be2005-06-26 15:27:10 -07002612 /* Update any of the values, used when we're incrementing various
2613 * fields.
2614 */
2615 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002616 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002617
David S. Miller7ac54592006-01-18 14:19:10 -08002618 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002619
2620 if (pkt_dev->flags & F_NODE) {
2621 int node;
2622
2623 if (pkt_dev->node >= 0)
2624 node = pkt_dev->node;
2625 else
2626 node = numa_node_id();
2627
2628 skb = __alloc_skb(NET_SKB_PAD + pkt_dev->cur_pkt_size + 64
2629 + datalen + pkt_dev->pkt_overhead, GFP_NOWAIT, 0, node);
2630 if (likely(skb)) {
2631 skb_reserve(skb, NET_SKB_PAD);
2632 skb->dev = odev;
2633 }
2634 }
2635 else
2636 skb = __netdev_alloc_skb(odev,
2637 pkt_dev->cur_pkt_size + 64
2638 + datalen + pkt_dev->pkt_overhead, GFP_NOWAIT);
2639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 if (!skb) {
2641 sprintf(pkt_dev->result, "No memory");
2642 return NULL;
2643 }
2644
David S. Miller7ac54592006-01-18 14:19:10 -08002645 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 /* Reserve for ethernet and IP header */
2648 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002649 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2650 if (pkt_dev->nr_labels)
2651 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002652
2653 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002654 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002655 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002656 *svlan_tci = build_tci(pkt_dev->svlan_id,
2657 pkt_dev->svlan_cfi,
2658 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002659 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002660 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002661 }
2662 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002663 *vlan_tci = build_tci(pkt_dev->vlan_id,
2664 pkt_dev->vlan_cfi,
2665 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002666 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002667 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002668 }
2669
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002670 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002671 skb->transport_header = skb->network_header + sizeof(struct iphdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002672 skb_put(skb, sizeof(struct iphdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002673 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002674 iph = ip_hdr(skb);
2675 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002678 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002680 /* Eth + IPh + UDPh + mpls */
2681 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002682 pkt_dev->pkt_overhead;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002683 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 udph->source = htons(pkt_dev->cur_udp_src);
2687 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002688 udph->len = htons(datalen + 8); /* DATA + udphdr */
2689 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 iph->ihl = 5;
2692 iph->version = 4;
2693 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002694 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002695 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 iph->saddr = pkt_dev->cur_saddr;
2697 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002698 iph->id = htons(pkt_dev->ip_id);
2699 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 iph->frag_off = 0;
2701 iplen = 20 + 8 + datalen;
2702 iph->tot_len = htons(iplen);
2703 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002704 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002705 skb->protocol = protocol;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002706 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002707 pkt_dev->pkt_overhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 skb->dev = odev;
2709 skb->pkt_type = PACKET_HOST;
2710
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002711 if (pkt_dev->nfrags <= 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002712 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002713 memset(pgh + 1, 0, datalen - sizeof(struct pktgen_hdr));
2714 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 int frags = pkt_dev->nfrags;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002716 int i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Luiz Capitulino222f1802006-03-20 22:16:13 -08002718 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (frags > MAX_SKB_FRAGS)
2721 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002722 if (datalen > frags * PAGE_SIZE) {
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002723 len = datalen - frags * PAGE_SIZE;
2724 memset(skb_put(skb, len), 0, len);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002725 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 }
2727
2728 i = 0;
2729 while (datalen > 0) {
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002730 struct page *page = alloc_pages(GFP_KERNEL | __GFP_ZERO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 skb_shinfo(skb)->frags[i].page = page;
2732 skb_shinfo(skb)->frags[i].page_offset = 0;
2733 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002734 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 datalen -= skb_shinfo(skb)->frags[i].size;
2736 skb->len += skb_shinfo(skb)->frags[i].size;
2737 skb->data_len += skb_shinfo(skb)->frags[i].size;
2738 i++;
2739 skb_shinfo(skb)->nr_frags = i;
2740 }
2741
2742 while (i < frags) {
2743 int rem;
2744
2745 if (i == 0)
2746 break;
2747
2748 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2749 if (rem == 0)
2750 break;
2751
2752 skb_shinfo(skb)->frags[i - 1].size -= rem;
2753
Luiz Capitulino222f1802006-03-20 22:16:13 -08002754 skb_shinfo(skb)->frags[i] =
2755 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002757 skb_shinfo(skb)->frags[i].page =
2758 skb_shinfo(skb)->frags[i - 1].page;
2759 skb_shinfo(skb)->frags[i].page_offset +=
2760 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 skb_shinfo(skb)->frags[i].size = rem;
2762 i++;
2763 skb_shinfo(skb)->nr_frags = i;
2764 }
2765 }
2766
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002767 /* Stamp the time, and sequence number,
2768 * convert them to network byte order
2769 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002770 if (pgh) {
2771 struct timeval timestamp;
2772
2773 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2774 pgh->seq_num = htonl(pkt_dev->seq_num);
2775
2776 do_gettimeofday(&timestamp);
2777 pgh->tv_sec = htonl(timestamp.tv_sec);
2778 pgh->tv_usec = htonl(timestamp.tv_usec);
2779 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002780
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002781#ifdef CONFIG_XFRM
2782 if (!process_ipsec(pkt_dev, skb, protocol))
2783 return NULL;
2784#endif
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 return skb;
2787}
2788
2789/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002790 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2792 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002793 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 * Should be candidate for net/ipv4/utils.c
2795 * --ro
2796 */
2797
Luiz Capitulino222f1802006-03-20 22:16:13 -08002798static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
2800 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002801 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 unsigned long u;
2803 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002804 unsigned int prefixlen = 0;
2805 unsigned int suffixlen = 0;
Al Viro252e3342006-11-14 20:48:11 -08002806 __be32 tmp;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002807 char *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Luiz Capitulino222f1802006-03-20 22:16:13 -08002809 for (i = 0; i < 16; i++)
2810 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812 for (;;) {
2813 if (*s == ':') {
2814 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002815 if (s[1] == ':') { /* Found "::", skip to part 2 */
2816 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 len++;
2818 break;
2819 }
2820 s++;
2821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002823 u = simple_strtoul(s, &pos, 16);
2824 i = pos - s;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002825 if (!i)
2826 return 0;
2827 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
2829 /* the last 4 bytes may be written as IPv4 address */
2830
2831 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002832 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2833 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 }
2835 ip[prefixlen++] = (u >> 8);
2836 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002837 s += i;
2838 len += i;
2839 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 return len;
2841 }
2842
2843/* part 2, after "::" */
2844 for (;;) {
2845 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002846 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 break;
2848 s++;
2849 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002850 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 break;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002852
2853 u = simple_strtol(s, &pos, 16);
2854 i = pos - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002856 if (*s)
2857 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 break;
2859 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002860 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002862 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2863 sizeof(tmp));
2864 suffixlen += 4;
2865 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 break;
2867 }
2868 suffix[suffixlen++] = (u >> 8);
2869 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002870 s += i;
2871 len += i;
2872 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 break;
2874 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002875 for (i = 0; i < suffixlen; i++)
2876 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return len;
2878}
2879
Luiz Capitulino222f1802006-03-20 22:16:13 -08002880static char tohex(char hexdigit)
2881{
2882 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883}
2884
Luiz Capitulino222f1802006-03-20 22:16:13 -08002885static int fmt_xlong(char *s, unsigned int i)
2886{
2887 char *bak = s;
2888 *s = tohex((i >> 12) & 0xf);
2889 if (s != bak || *s != '0')
2890 ++s;
2891 *s = tohex((i >> 8) & 0xf);
2892 if (s != bak || *s != '0')
2893 ++s;
2894 *s = tohex((i >> 4) & 0xf);
2895 if (s != bak || *s != '0')
2896 ++s;
2897 *s = tohex(i & 0xf);
2898 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899}
2900
Luiz Capitulino222f1802006-03-20 22:16:13 -08002901static unsigned int fmt_ip6(char *s, const char ip[16])
2902{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 unsigned int len;
2904 unsigned int i;
2905 unsigned int temp;
2906 unsigned int compressing;
2907 int j;
2908
Luiz Capitulino222f1802006-03-20 22:16:13 -08002909 len = 0;
2910 compressing = 0;
2911 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002914 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2915 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2916 temp = strlen(s);
2917 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 }
2919#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002920 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2921 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 if (temp == 0) {
2923 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002924 compressing = 1;
2925 if (j == 0) {
2926 *s++ = ':';
2927 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929 }
2930 } else {
2931 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002932 compressing = 0;
2933 *s++ = ':';
2934 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002936 i = fmt_xlong(s, temp);
2937 len += i;
2938 s += i;
2939 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 *s++ = ':';
2941 ++len;
2942 }
2943 }
2944 }
2945 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002946 *s++ = ':';
2947 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002949 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 return len;
2951}
2952
Luiz Capitulino222f1802006-03-20 22:16:13 -08002953static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2954 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
2956 struct sk_buff *skb = NULL;
2957 __u8 *eth;
2958 struct udphdr *udph;
2959 int datalen;
2960 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002961 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002962 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002963 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002964 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2965 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2966 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2967 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002968 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002969
2970 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002971 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002972
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002973 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002974 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002975
Robert Olsson64053be2005-06-26 15:27:10 -07002976 /* Update any of the values, used when we're incrementing various
2977 * fields.
2978 */
2979 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002980 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002981
Stephen Hemmingere4707572009-08-27 13:55:13 +00002982 skb = __netdev_alloc_skb(odev,
2983 pkt_dev->cur_pkt_size + 64
2984 + 16 + pkt_dev->pkt_overhead, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 if (!skb) {
2986 sprintf(pkt_dev->result, "No memory");
2987 return NULL;
2988 }
2989
2990 skb_reserve(skb, 16);
2991
2992 /* Reserve for ethernet and IP header */
2993 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002994 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2995 if (pkt_dev->nr_labels)
2996 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002997
2998 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002999 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003000 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08003001 *svlan_tci = build_tci(pkt_dev->svlan_id,
3002 pkt_dev->svlan_cfi,
3003 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003004 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003005 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003006 }
3007 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08003008 *vlan_tci = build_tci(pkt_dev->vlan_id,
3009 pkt_dev->vlan_cfi,
3010 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003011 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003012 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003013 }
3014
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003015 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07003016 skb->transport_header = skb->network_header + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03003017 skb_put(skb, sizeof(struct ipv6hdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003018 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03003019 iph = ipv6_hdr(skb);
3020 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003023 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07003024
Steven Whitehouseca6549a2006-03-23 01:10:26 -08003025 /* Eth + IPh + UDPh + mpls */
3026 datalen = pkt_dev->cur_pkt_size - 14 -
3027 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003028 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Luiz Capitulino222f1802006-03-20 22:16:13 -08003030 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 datalen = sizeof(struct pktgen_hdr);
3032 if (net_ratelimit())
Joe Perchesf9467ea2010-06-21 12:29:14 +00003033 pr_info("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 }
3035
3036 udph->source = htons(pkt_dev->cur_udp_src);
3037 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003038 udph->len = htons(datalen + sizeof(struct udphdr));
3039 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003041 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003043 if (pkt_dev->traffic_class) {
3044 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08003045 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003046 }
3047
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 iph->hop_limit = 32;
3049
3050 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
3051 iph->nexthdr = IPPROTO_UDP;
3052
3053 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
3054 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
3055
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07003056 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003057 pkt_dev->pkt_overhead);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08003058 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 skb->dev = odev;
3060 skb->pkt_type = PACKET_HOST;
3061
Luiz Capitulino222f1802006-03-20 22:16:13 -08003062 if (pkt_dev->nfrags <= 0)
3063 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 else {
3065 int frags = pkt_dev->nfrags;
3066 int i;
3067
Luiz Capitulino222f1802006-03-20 22:16:13 -08003068 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 if (frags > MAX_SKB_FRAGS)
3071 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003072 if (datalen > frags * PAGE_SIZE) {
3073 skb_put(skb, datalen - frags * PAGE_SIZE);
3074 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
3076
3077 i = 0;
3078 while (datalen > 0) {
3079 struct page *page = alloc_pages(GFP_KERNEL, 0);
3080 skb_shinfo(skb)->frags[i].page = page;
3081 skb_shinfo(skb)->frags[i].page_offset = 0;
3082 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08003083 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 datalen -= skb_shinfo(skb)->frags[i].size;
3085 skb->len += skb_shinfo(skb)->frags[i].size;
3086 skb->data_len += skb_shinfo(skb)->frags[i].size;
3087 i++;
3088 skb_shinfo(skb)->nr_frags = i;
3089 }
3090
3091 while (i < frags) {
3092 int rem;
3093
3094 if (i == 0)
3095 break;
3096
3097 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
3098 if (rem == 0)
3099 break;
3100
3101 skb_shinfo(skb)->frags[i - 1].size -= rem;
3102
Luiz Capitulino222f1802006-03-20 22:16:13 -08003103 skb_shinfo(skb)->frags[i] =
3104 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003106 skb_shinfo(skb)->frags[i].page =
3107 skb_shinfo(skb)->frags[i - 1].page;
3108 skb_shinfo(skb)->frags[i].page_offset +=
3109 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 skb_shinfo(skb)->frags[i].size = rem;
3111 i++;
3112 skb_shinfo(skb)->nr_frags = i;
3113 }
3114 }
3115
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003116 /* Stamp the time, and sequence number,
3117 * convert them to network byte order
3118 * should we update cloned packets too ?
3119 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003120 if (pgh) {
3121 struct timeval timestamp;
3122
3123 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
3124 pgh->seq_num = htonl(pkt_dev->seq_num);
3125
3126 do_gettimeofday(&timestamp);
3127 pgh->tv_sec = htonl(timestamp.tv_sec);
3128 pgh->tv_usec = htonl(timestamp.tv_usec);
3129 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003130 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 return skb;
3133}
3134
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003135static struct sk_buff *fill_packet(struct net_device *odev,
3136 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003138 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 return fill_packet_ipv6(odev, pkt_dev);
3140 else
3141 return fill_packet_ipv4(odev, pkt_dev);
3142}
3143
Luiz Capitulino222f1802006-03-20 22:16:13 -08003144static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003146 pkt_dev->seq_num = 1;
3147 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003149 pkt_dev->tx_bytes = 0;
3150 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151}
3152
3153/* Set up structure for sending pkts, clear counters */
3154
3155static void pktgen_run(struct pktgen_thread *t)
3156{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003157 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 int started = 0;
3159
Joe Perchesf9467ea2010-06-21 12:29:14 +00003160 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003163 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
3165 /*
3166 * setup odev and create initial packet.
3167 */
3168 pktgen_setup_inject(pkt_dev);
3169
Luiz Capitulino222f1802006-03-20 22:16:13 -08003170 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003172 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003174 pkt_dev->started_at =
3175 pkt_dev->next_tx = ktime_now();
3176
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003177 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 strcpy(pkt_dev->result, "Starting");
3180 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003181 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 strcpy(pkt_dev->result, "Error starting");
3183 }
3184 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003185 if (started)
3186 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187}
3188
3189static void pktgen_stop_all_threads_ifs(void)
3190{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003191 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Joe Perchesf9467ea2010-06-21 12:29:14 +00003193 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003195 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003196
3197 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003198 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003199
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003200 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201}
3202
Stephen Hemminger648fda72009-08-27 13:55:07 +00003203static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003205 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003207 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00003208 if (pkt_dev->running)
3209 return 1;
3210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211}
3212
Luiz Capitulino222f1802006-03-20 22:16:13 -08003213static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003215 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Luiz Capitulino222f1802006-03-20 22:16:13 -08003217 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
Luiz Capitulino222f1802006-03-20 22:16:13 -08003219 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
Luiz Capitulino222f1802006-03-20 22:16:13 -08003221 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Luiz Capitulino222f1802006-03-20 22:16:13 -08003223 if (signal_pending(current))
3224 goto signal;
3225 if_lock(t);
3226 }
3227 if_unlock(t);
3228 return 1;
3229signal:
3230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
3233static int pktgen_wait_all_threads_run(void)
3234{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003235 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003237
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003238 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003239
3240 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003242 if (sig == 0)
3243 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003245
3246 if (sig == 0)
3247 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003249
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003250 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 return sig;
3252}
3253
3254static void pktgen_run_all_threads(void)
3255{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003256 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Joe Perchesf9467ea2010-06-21 12:29:14 +00003258 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003260 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003262 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003264
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003265 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003267 /* Propagate thread->control */
3268 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 pktgen_wait_all_threads_run();
3271}
3272
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003273static void pktgen_reset_all_threads(void)
3274{
3275 struct pktgen_thread *t;
3276
Joe Perchesf9467ea2010-06-21 12:29:14 +00003277 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003278
3279 mutex_lock(&pktgen_thread_lock);
3280
3281 list_for_each_entry(t, &pktgen_threads, th_list)
3282 t->control |= (T_REMDEVALL);
3283
3284 mutex_unlock(&pktgen_thread_lock);
3285
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003286 /* Propagate thread->control */
3287 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003288
3289 pktgen_wait_all_threads_run();
3290}
3291
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3293{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003294 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003295 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003296 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3297 pkt_dev->started_at);
3298 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003300 p += sprintf(p, "OK: %llu(c%llu+d%llu) nsec, %llu (%dbyte,%dfrags)\n",
3301 (unsigned long long)ktime_to_us(elapsed),
3302 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3303 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003304 (unsigned long long)pkt_dev->sofar,
3305 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003307 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3308 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
Luiz Capitulino222f1802006-03-20 22:16:13 -08003310 bps = pps * 8 * pkt_dev->cur_pkt_size;
3311
3312 mbps = bps;
3313 do_div(mbps, 1000000);
3314 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3315 (unsigned long long)pps,
3316 (unsigned long long)mbps,
3317 (unsigned long long)bps,
3318 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003322static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003324 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003325
Luiz Capitulino222f1802006-03-20 22:16:13 -08003326 if (!pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003327 pr_warning("interface: %s is already stopped\n",
3328 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003329 return -EINVAL;
3330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003332 kfree_skb(pkt_dev->skb);
3333 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003334 pkt_dev->stopped_at = ktime_now();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003335 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003337 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Luiz Capitulino222f1802006-03-20 22:16:13 -08003339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340}
3341
Luiz Capitulino222f1802006-03-20 22:16:13 -08003342static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003344 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003345
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 if_lock(t);
3347
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003348 list_for_each_entry(pkt_dev, &t->if_list, list) {
3349 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003350 continue;
3351 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003352 best = pkt_dev;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003353 else if (ktime_lt(pkt_dev->next_tx, best->next_tx))
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003354 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
3356 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003357 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358}
3359
Luiz Capitulino222f1802006-03-20 22:16:13 -08003360static void pktgen_stop(struct pktgen_thread *t)
3361{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003362 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363
Joe Perchesf9467ea2010-06-21 12:29:14 +00003364 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Luiz Capitulino222f1802006-03-20 22:16:13 -08003366 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003368 list_for_each_entry(pkt_dev, &t->if_list, list) {
3369 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Luiz Capitulino222f1802006-03-20 22:16:13 -08003372 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373}
3374
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003375/*
3376 * one of our devices needs to be removed - find it
3377 * and remove it
3378 */
3379static void pktgen_rem_one_if(struct pktgen_thread *t)
3380{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003381 struct list_head *q, *n;
3382 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003383
Joe Perchesf9467ea2010-06-21 12:29:14 +00003384 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003385
3386 if_lock(t);
3387
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003388 list_for_each_safe(q, n, &t->if_list) {
3389 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003390
Luiz Capitulino222f1802006-03-20 22:16:13 -08003391 if (!cur->removal_mark)
3392 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003393
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003394 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003395 cur->skb = NULL;
3396
3397 pktgen_remove_device(t, cur);
3398
3399 break;
3400 }
3401
3402 if_unlock(t);
3403}
3404
Luiz Capitulino222f1802006-03-20 22:16:13 -08003405static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003407 struct list_head *q, *n;
3408 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003409
Joe Perchesf9467ea2010-06-21 12:29:14 +00003410 func_enter();
3411
Luiz Capitulino222f1802006-03-20 22:16:13 -08003412 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003413
Luiz Capitulino222f1802006-03-20 22:16:13 -08003414 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003416 list_for_each_safe(q, n, &t->if_list) {
3417 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003418
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003419 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003420 cur->skb = NULL;
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 pktgen_remove_device(t, cur);
3423 }
3424
Luiz Capitulino222f1802006-03-20 22:16:13 -08003425 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426}
3427
Luiz Capitulino222f1802006-03-20 22:16:13 -08003428static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003430 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
David S. Milleree74baa2007-01-01 20:51:53 -08003432 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003434 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003436 list_del(&t->th_list);
3437
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003438 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439}
3440
Stephen Hemmingeref879792009-09-22 19:41:43 +00003441static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003442{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003443 ktime_t idle_start = ktime_now();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003444 schedule();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003445 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003446}
3447
Stephen Hemmingeref879792009-09-22 19:41:43 +00003448static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3449{
3450 ktime_t idle_start = ktime_now();
3451
3452 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3453 if (signal_pending(current))
3454 break;
3455
3456 if (need_resched())
3457 pktgen_resched(pkt_dev);
3458 else
3459 cpu_relax();
3460 }
3461 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
3462}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003463
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003464static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465{
Stephen Hemminger00829822008-11-20 20:14:53 -08003466 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003467 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003468 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003469 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003470 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 int ret;
3472
Stephen Hemmingeref879792009-09-22 19:41:43 +00003473 /* If device is offline, then don't send */
3474 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3475 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003476 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003478
Stephen Hemmingeref879792009-09-22 19:41:43 +00003479 /* This is max DELAY, this has special meaning of
3480 * "never transmit"
3481 */
3482 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
3483 pkt_dev->next_tx = ktime_add_ns(ktime_now(), ULONG_MAX);
3484 return;
3485 }
3486
3487 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003488 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3489 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3490 /* build a new pkt */
3491 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003492
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003493 pkt_dev->skb = fill_packet(odev, pkt_dev);
3494 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003495 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003496 schedule();
3497 pkt_dev->clone_count--; /* back out increment, OOM */
3498 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003500 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003501 pkt_dev->allocated_skbs++;
3502 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003504
Stephen Hemmingeref879792009-09-22 19:41:43 +00003505 if (pkt_dev->delay && pkt_dev->last_ok)
3506 spin(pkt_dev, pkt_dev->next_tx);
3507
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003508 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3509 txq = netdev_get_tx_queue(odev, queue_map);
3510
3511 __netif_tx_lock_bh(txq);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003512
Eric Dumazet0835acf2009-09-30 13:03:33 +00003513 if (unlikely(netif_tx_queue_stopped(txq) || netif_tx_queue_frozen(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003514 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003515 pkt_dev->last_ok = 0;
3516 goto unlock;
3517 }
3518 atomic_inc(&(pkt_dev->skb->users));
3519 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Stephen Hemmingeref879792009-09-22 19:41:43 +00003521 switch (ret) {
3522 case NETDEV_TX_OK:
3523 txq_trans_update(txq);
3524 pkt_dev->last_ok = 1;
3525 pkt_dev->sofar++;
3526 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003527 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003528 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003529 case NET_XMIT_DROP:
3530 case NET_XMIT_CN:
3531 case NET_XMIT_POLICED:
3532 /* skb has been consumed */
3533 pkt_dev->errors++;
3534 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003535 default: /* Drivers are not supposed to return other values! */
3536 if (net_ratelimit())
3537 pr_info("pktgen: %s xmit error: %d\n",
Eric Dumazet593f63b2009-11-23 01:44:37 +00003538 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003539 pkt_dev->errors++;
3540 /* fallthru */
3541 case NETDEV_TX_LOCKED:
3542 case NETDEV_TX_BUSY:
3543 /* Retry it next time */
3544 atomic_dec(&(pkt_dev->skb->users));
3545 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003546 }
Eric Dumazet0835acf2009-09-30 13:03:33 +00003547unlock:
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003548 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 /* If pkt_dev->count is zero, then run forever */
3551 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003552 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 /* Done with this */
3555 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003556 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003557}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003559/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 * Main loop of the thread goes here
3561 */
3562
David S. Milleree74baa2007-01-01 20:51:53 -08003563static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564{
3565 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003566 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003567 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
David S. Milleree74baa2007-01-01 20:51:53 -08003570 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
3572 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003573 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Joe Perchesf9467ea2010-06-21 12:29:14 +00003575 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
David S. Milleree74baa2007-01-01 20:51:53 -08003577 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003578
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003579 set_freezable();
3580
David S. Milleree74baa2007-01-01 20:51:53 -08003581 while (!kthread_should_stop()) {
3582 pkt_dev = next_to_run(t);
3583
Stephen Hemmingeref879792009-09-22 19:41:43 +00003584 if (unlikely(!pkt_dev && t->control == 0)) {
3585 wait_event_interruptible_timeout(t->queue,
3586 t->control != 0,
3587 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003588 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003589 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003590 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 __set_current_state(TASK_RUNNING);
3593
Stephen Hemmingeref879792009-09-22 19:41:43 +00003594 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 pktgen_xmit(pkt_dev);
3596
Stephen Hemmingeref879792009-09-22 19:41:43 +00003597 if (need_resched())
3598 pktgen_resched(pkt_dev);
3599 else
3600 cpu_relax();
3601 }
3602
Luiz Capitulino222f1802006-03-20 22:16:13 -08003603 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 pktgen_stop(t);
3605 t->control &= ~(T_STOP);
3606 }
3607
Luiz Capitulino222f1802006-03-20 22:16:13 -08003608 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 pktgen_run(t);
3610 t->control &= ~(T_RUN);
3611 }
3612
Luiz Capitulino222f1802006-03-20 22:16:13 -08003613 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003615 t->control &= ~(T_REMDEVALL);
3616 }
3617
Luiz Capitulino222f1802006-03-20 22:16:13 -08003618 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003619 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 t->control &= ~(T_REMDEV);
3621 }
3622
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003623 try_to_freeze();
3624
David S. Milleree74baa2007-01-01 20:51:53 -08003625 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
Joe Perchesf9467ea2010-06-21 12:29:14 +00003628 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003629 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
Joe Perchesf9467ea2010-06-21 12:29:14 +00003631 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003632 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Joe Perchesf9467ea2010-06-21 12:29:14 +00003634 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003635 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003636
David S. Milleree74baa2007-01-01 20:51:53 -08003637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638}
3639
Luiz Capitulino222f1802006-03-20 22:16:13 -08003640static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003641 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003643 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003644 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
Eric Dumazet3e984842009-11-24 14:50:53 -08003646 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003647 list_for_each_entry(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003648 if (strncmp(p->odevname, ifname, len) == 0) {
3649 if (p->odevname[len]) {
3650 if (exact || p->odevname[len] != '@')
3651 continue;
3652 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003653 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003654 break;
3655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656
Luiz Capitulino222f1802006-03-20 22:16:13 -08003657 if_unlock(t);
Joe Perchesf9467ea2010-06-21 12:29:14 +00003658 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003659 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660}
3661
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003662/*
3663 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 */
3665
Luiz Capitulino222f1802006-03-20 22:16:13 -08003666static int add_dev_to_thread(struct pktgen_thread *t,
3667 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668{
3669 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Luiz Capitulino222f1802006-03-20 22:16:13 -08003671 if_lock(t);
3672
3673 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003674 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003675 rv = -EBUSY;
3676 goto out;
3677 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003678
3679 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003680 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 pkt_dev->running = 0;
3682
Luiz Capitulino222f1802006-03-20 22:16:13 -08003683out:
3684 if_unlock(t);
3685 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686}
3687
3688/* Called under thread lock */
3689
Luiz Capitulino222f1802006-03-20 22:16:13 -08003690static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003692 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003693 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003694 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003695
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 /* We don't allow a device to be on several threads */
3697
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003698 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3699 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003700 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003701 return -EBUSY;
3702 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003703
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003704 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003705 if (!pkt_dev)
3706 return -ENOMEM;
3707
Eric Dumazet593f63b2009-11-23 01:44:37 +00003708 strcpy(pkt_dev->odevname, ifname);
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003709 pkt_dev->flows = vmalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
3710 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003711 if (pkt_dev->flows == NULL) {
3712 kfree(pkt_dev);
3713 return -ENOMEM;
3714 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003715 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003716
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003717 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003718 pkt_dev->min_pkt_size = ETH_ZLEN;
3719 pkt_dev->max_pkt_size = ETH_ZLEN;
3720 pkt_dev->nfrags = 0;
3721 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003722 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003723 pkt_dev->count = pg_count_d;
3724 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003725 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003726 pkt_dev->udp_src_max = 9;
3727 pkt_dev->udp_dst_min = 9;
3728 pkt_dev->udp_dst_max = 9;
3729
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003730 pkt_dev->vlan_p = 0;
3731 pkt_dev->vlan_cfi = 0;
3732 pkt_dev->vlan_id = 0xffff;
3733 pkt_dev->svlan_p = 0;
3734 pkt_dev->svlan_cfi = 0;
3735 pkt_dev->svlan_id = 0xffff;
Robert Olssone99b99b2010-03-18 22:44:30 +00003736 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003737
Stephen Hemminger39df2322007-03-04 16:11:51 -08003738 err = pktgen_setup_dev(pkt_dev, ifname);
3739 if (err)
3740 goto out1;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003741
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003742 pkt_dev->entry = proc_create_data(ifname, 0600, pg_proc_dir,
3743 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003744 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003745 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003746 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003747 err = -EINVAL;
3748 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003749 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003750#ifdef CONFIG_XFRM
3751 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3752 pkt_dev->ipsproto = IPPROTO_ESP;
3753#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003754
3755 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003756out2:
3757 dev_put(pkt_dev->odev);
3758out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003759#ifdef CONFIG_XFRM
3760 free_SAs(pkt_dev);
3761#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003762 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003763 kfree(pkt_dev);
3764 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765}
3766
David S. Milleree74baa2007-01-01 20:51:53 -08003767static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003769 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003770 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003771 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003773 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3774 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003775 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003776 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003777 return -ENOMEM;
3778 }
3779
Luiz Capitulino222f1802006-03-20 22:16:13 -08003780 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003782
David S. Milleree74baa2007-01-01 20:51:53 -08003783 INIT_LIST_HEAD(&t->if_list);
3784
3785 list_add_tail(&t->th_list, &pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003786 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003787
3788 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3789 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003790 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003791 list_del(&t->th_list);
3792 kfree(t);
3793 return PTR_ERR(p);
3794 }
3795 kthread_bind(p, cpu);
3796 t->tsk = p;
3797
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003798 pe = proc_create_data(t->tsk->comm, 0600, pg_proc_dir,
3799 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003800 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003801 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003802 PG_PROC_DIR, t->tsk->comm);
3803 kthread_stop(p);
3804 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003805 kfree(t);
3806 return -EINVAL;
3807 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003808
David S. Milleree74baa2007-01-01 20:51:53 -08003809 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003810 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
3812 return 0;
3813}
3814
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003815/*
3816 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003818static void _rem_dev_from_if_list(struct pktgen_thread *t,
3819 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003821 struct list_head *q, *n;
3822 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003824 list_for_each_safe(q, n, &t->if_list) {
3825 p = list_entry(q, struct pktgen_dev, list);
3826 if (p == pkt_dev)
3827 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 }
3829}
3830
Luiz Capitulino222f1802006-03-20 22:16:13 -08003831static int pktgen_remove_device(struct pktgen_thread *t,
3832 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833{
3834
Joe Perchesf9467ea2010-06-21 12:29:14 +00003835 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
Luiz Capitulino222f1802006-03-20 22:16:13 -08003837 if (pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003838 pr_warning("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003839 pktgen_stop_device(pkt_dev);
3840 }
3841
3842 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
3844 if (pkt_dev->odev) {
3845 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003846 pkt_dev->odev = NULL;
3847 }
3848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 /* And update the thread if_list */
3850
3851 _rem_dev_from_if_list(t, pkt_dev);
3852
Stephen Hemminger39df2322007-03-04 16:11:51 -08003853 if (pkt_dev->entry)
3854 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003856#ifdef CONFIG_XFRM
3857 free_SAs(pkt_dev);
3858#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003859 vfree(pkt_dev->flows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862}
3863
Luiz Capitulino222f1802006-03-20 22:16:13 -08003864static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865{
3866 int cpu;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003867 struct proc_dir_entry *pe;
3868
Joe Perchesf9467ea2010-06-21 12:29:14 +00003869 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003871 pg_proc_dir = proc_mkdir(PG_PROC_DIR, init_net.proc_net);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003872 if (!pg_proc_dir)
3873 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Wang Chen25296d52008-02-28 14:11:49 -08003875 pe = proc_create(PGCTRL, 0600, pg_proc_dir, &pktgen_fops);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003876 if (pe == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003877 pr_err("ERROR: cannot create %s procfs entry\n", PGCTRL);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003878 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003879 return -EINVAL;
3880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 /* Register us to receive netdevice events */
3883 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003884
John Hawkes670c02c2005-10-13 09:30:31 -07003885 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003886 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
David S. Milleree74baa2007-01-01 20:51:53 -08003888 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003889 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00003890 pr_warning("WARNING: Cannot create thread for cpu %d (%d)\n",
3891 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003892 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003893
3894 if (list_empty(&pktgen_threads)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003895 pr_err("ERROR: Initialization failed for all threads\n");
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003896 unregister_netdevice_notifier(&pktgen_notifier_block);
3897 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003898 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003899 return -ENODEV;
3900 }
3901
Luiz Capitulino222f1802006-03-20 22:16:13 -08003902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903}
3904
3905static void __exit pg_cleanup(void)
3906{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003907 struct pktgen_thread *t;
3908 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Luiz Capitulino222f1802006-03-20 22:16:13 -08003910 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003912 list_for_each_safe(q, n, &pktgen_threads) {
3913 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003914 kthread_stop(t->tsk);
3915 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Luiz Capitulino222f1802006-03-20 22:16:13 -08003918 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 unregister_netdevice_notifier(&pktgen_notifier_block);
3920
Luiz Capitulino222f1802006-03-20 22:16:13 -08003921 /* Clean up proc file system */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003922 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003923 proc_net_remove(&init_net, PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924}
3925
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926module_init(pg_init);
3927module_exit(pg_cleanup);
3928
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003929MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930MODULE_DESCRIPTION("Packet Generator tool");
3931MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003932MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003934MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003936MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003938MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003940MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");