blob: a797fff7f22213f3e5d1be6f97ab632a791079a4 [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>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700159#include <linux/prefetch.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200160#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#include <net/checksum.h>
162#include <net/ipv6.h>
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200163#include <net/udp.h>
Stephen Rothwell73d94e92013-07-29 16:21:26 +1000164#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700166#ifdef CONFIG_XFRM
167#include <net/xfrm.h>
168#endif
Cong Wang4e58a022013-01-28 19:55:53 +0000169#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#include <asm/byteorder.h>
171#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700172#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000173#include <linux/io.h>
174#include <linux/timex.h>
175#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800177#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Daniel Turull43d28b62010-06-09 22:49:57 +0000179#define VERSION "2.74"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800181#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800182#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Joe Perchesf9467ea2010-06-21 12:29:14 +0000184#define func_enter() pr_debug("entering %s\n", __func__);
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800187#define F_IPSRC_RND (1<<0) /* IP-Src Random */
188#define F_IPDST_RND (1<<1) /* IP-Dst Random */
189#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
190#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
191#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
192#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
193#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
194#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800195#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700196#define F_VID_RND (1<<9) /* Random VLAN ID */
197#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700198#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700199#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700200#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700201#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000202#define F_NODE (1<<15) /* Node memory alloc*/
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200203#define F_UDPCSUM (1<<16) /* Include UDP checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000206#define T_STOP (1<<0) /* Stop run */
207#define T_RUN (1<<1) /* Start run */
208#define T_REMDEVALL (1<<2) /* Remove all devs */
209#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/* If lock -- can be removed after some work */
212#define if_lock(t) spin_lock(&(t->if_lock));
213#define if_unlock(t) spin_unlock(&(t->if_lock));
214
215/* Used to help with determining the pkts on receive */
216#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700217#define PG_PROC_DIR "pktgen"
218#define PGCTRL "pgctrl"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220#define MAX_CFLOWS 65536
221
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700222#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
223#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
224
Luiz Capitulino222f1802006-03-20 22:16:13 -0800225struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800226 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800227 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700228#ifdef CONFIG_XFRM
229 struct xfrm_state *x;
230#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700231 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232};
233
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700234/* flow flag bits */
235#define F_INIT (1<<0) /* flow has been initialized */
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /*
239 * Try to keep frequent/infrequent used vars. separated.
240 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800241 struct proc_dir_entry *entry; /* proc file */
242 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000243 struct list_head list; /* chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000245 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800246
247 /* If min != max, then we will either do a linear iteration, or
248 * we will do a random selection from within the range.
249 */
250 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800251 int removal_mark; /* non-zero => the device is marked for
252 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Amerigo Wang68bf9f02012-10-09 17:48:17 +0000254 int min_pkt_size;
255 int max_pkt_size;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700256 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800257 int nfrags;
Eric Dumazet26ad7872011-01-25 13:26:05 -0800258 struct page *page;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000259 u64 delay; /* nano-seconds */
260
Luiz Capitulino222f1802006-03-20 22:16:13 -0800261 __u64 count; /* Default No packets to send */
262 __u64 sofar; /* How many pkts we've sent so far */
263 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800264 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Luiz Capitulino222f1802006-03-20 22:16:13 -0800266 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Luiz Capitulino222f1802006-03-20 22:16:13 -0800268 __u64 allocated_skbs;
269 __u32 clone_count;
270 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000271 * Or a failed transmit of some sort?
272 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800273 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000274 ktime_t next_tx;
275 ktime_t started_at;
276 ktime_t stopped_at;
277 u64 idle_acc; /* nano-seconds */
278
Luiz Capitulino222f1802006-03-20 22:16:13 -0800279 __u32 seq_num;
280
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000281 int clone_skb; /*
282 * Use multiple SKBs during packet gen.
283 * If this number is greater than 1, then
284 * that many copies of the same packet will be
285 * sent before a new packet is allocated.
286 * If you want to send 1024 identical packets
287 * before creating a new packet,
288 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800289 */
290
291 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
292 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
293 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
294 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
295
296 struct in6_addr in6_saddr;
297 struct in6_addr in6_daddr;
298 struct in6_addr cur_in6_daddr;
299 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800301 struct in6_addr min_in6_daddr;
302 struct in6_addr max_in6_daddr;
303 struct in6_addr min_in6_saddr;
304 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Luiz Capitulino222f1802006-03-20 22:16:13 -0800306 /* If we're doing ranges, random or incremental, then this
307 * defines the min/max for those ranges.
308 */
Al Viro252e3342006-11-14 20:48:11 -0800309 __be32 saddr_min; /* inclusive, source IP address */
310 __be32 saddr_max; /* exclusive, source IP address */
311 __be32 daddr_min; /* inclusive, dest IP address */
312 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Luiz Capitulino222f1802006-03-20 22:16:13 -0800314 __u16 udp_src_min; /* inclusive, source UDP port */
315 __u16 udp_src_max; /* exclusive, source UDP port */
316 __u16 udp_dst_min; /* inclusive, dest UDP port */
317 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700319 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000320 __u8 tos; /* six MSB of (former) IPv4 TOS
321 are for dscp codepoint */
322 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
323 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700324
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800325 /* MPLS */
Eric Dumazet95c96172012-04-15 05:58:06 +0000326 unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800327 __be32 labels[MAX_MPLS_LABELS];
328
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700329 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
330 __u8 vlan_p;
331 __u8 vlan_cfi;
332 __u16 vlan_id; /* 0xffff means no vlan tag */
333
334 __u8 svlan_p;
335 __u8 svlan_cfi;
336 __u16 svlan_id; /* 0xffff means no svlan tag */
337
Luiz Capitulino222f1802006-03-20 22:16:13 -0800338 __u32 src_mac_count; /* How many MACs to iterate through */
339 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Luiz Capitulino222f1802006-03-20 22:16:13 -0800341 unsigned char dst_mac[ETH_ALEN];
342 unsigned char src_mac[ETH_ALEN];
343
344 __u32 cur_dst_mac_offset;
345 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800346 __be32 cur_saddr;
347 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700348 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800349 __u16 cur_udp_dst;
350 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700351 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800352 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800353 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800354
355 __u8 hh[14];
356 /* = {
357 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
358
359 We fill in SRC address later
360 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
361 0x08, 0x00
362 };
363 */
364 __u16 pad; /* pad out the hh struct to an even 16 bytes */
365
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000366 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800367 * are transmitting the same one multiple times
368 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000369 struct net_device *odev; /* The out-going device.
370 * Note that the device should have it's
371 * pg_info pointer pointing back to this
372 * device.
373 * Set when the user specifies the out-going
374 * device name (not when the inject is
375 * started as it used to do.)
376 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000377 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 struct flow_state *flows;
Eric Dumazet95c96172012-04-15 05:58:06 +0000379 unsigned int cflows; /* Concurrent flows (config) */
380 unsigned int lflow; /* Flow length (config) */
381 unsigned int nflows; /* accumulated flows (stats) */
382 unsigned int curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700383
384 u16 queue_map_min;
385 u16 queue_map_max;
John Fastabend9e50e3a2010-11-16 19:12:28 +0000386 __u32 skb_priority; /* skb priority field */
Robert Olssone99b99b2010-03-18 22:44:30 +0000387 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700388
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700389#ifdef CONFIG_XFRM
390 __u8 ipsmode; /* IPSEC mode (config) */
391 __u8 ipsproto; /* IPSEC type (config) */
392#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800393 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
395
396struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800397 __be32 pgh_magic;
398 __be32 seq_num;
399 __be32 tv_sec;
400 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401};
402
Cong Wang4e58a022013-01-28 19:55:53 +0000403
404static int pg_net_id __read_mostly;
405
406struct pktgen_net {
407 struct net *net;
408 struct proc_dir_entry *proc_dir;
409 struct list_head pktgen_threads;
410 bool pktgen_exiting;
411};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000414 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800415 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800416 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800417 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800418 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000420 /* Field for thread to receive "posted" events terminate,
421 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800422
423 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 int cpu;
425
Luiz Capitulino222f1802006-03-20 22:16:13 -0800426 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700427 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000428 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
431#define REMOVE 1
432#define FIND 0
433
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000434static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000435 "Packet Generator for packet performance testing. "
436 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Luiz Capitulino222f1802006-03-20 22:16:13 -0800438static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
439static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
440static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800441 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000443static void pktgen_run_all_threads(struct pktgen_net *pn);
444static void pktgen_reset_all_threads(struct pktgen_net *pn);
445static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000446
Luiz Capitulino222f1802006-03-20 22:16:13 -0800447static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/* 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458static struct notifier_block pktgen_notifier_block = {
459 .notifier_call = pktgen_device_event,
460};
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900463 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 *
465 */
466
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700467static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800468{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000469 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700470 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000473static ssize_t pgctrl_write(struct file *file, const char __user *buf,
474 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700477 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000478 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
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"))
Cong Wang4e58a022013-01-28 19:55:53 +0000495 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Luiz Capitulino222f1802006-03-20 22:16:13 -0800497 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000498 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800500 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000501 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800502
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{
Al Virod9dda782013-03-31 18:16:14 -0400514 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700515}
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
John Fastabend9e50e3a2010-11-16 19:12:28 +0000550 if (pkt_dev->skb_priority)
551 seq_printf(seq, " skb_priority: %u\n",
552 pkt_dev->skb_priority);
553
Luiz Capitulino222f1802006-03-20 22:16:13 -0800554 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800555 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000556 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
557 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
558 &pkt_dev->in6_saddr,
559 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
560 &pkt_dev->in6_daddr,
561 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000562 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000564 " dst_min: %s dst_max: %s\n",
565 pkt_dev->dst_min, pkt_dev->dst_max);
566 seq_printf(seq,
567 " src_min: %s src_max: %s\n",
568 pkt_dev->src_min, pkt_dev->src_max);
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700571 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Johannes Berge1749612008-10-27 15:59:26 -0700573 seq_printf(seq, "%pM ",
574 is_zero_ether_addr(pkt_dev->src_mac) ?
575 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Luiz Capitulino222f1802006-03-20 22:16:13 -0800577 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700578 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Luiz Capitulino222f1802006-03-20 22:16:13 -0800580 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000581 " udp_src_min: %d udp_src_max: %d"
582 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800583 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
584 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Luiz Capitulino222f1802006-03-20 22:16:13 -0800586 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800587 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700588 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800590 if (pkt_dev->nr_labels) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000591 unsigned int i;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800592 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700593 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800594 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
595 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
596 }
597
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000598 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700599 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000600 pkt_dev->vlan_id, pkt_dev->vlan_p,
601 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700602
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000603 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700604 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000605 pkt_dev->svlan_id, pkt_dev->svlan_p,
606 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700607
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000608 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700609 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700610
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000611 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700612 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700613
Robert Olssone99b99b2010-03-18 22:44:30 +0000614 if (pkt_dev->node >= 0)
615 seq_printf(seq, " node: %d\n", pkt_dev->node);
616
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800617 seq_printf(seq, " Flags: ");
618
Luiz Capitulino222f1802006-03-20 22:16:13 -0800619 if (pkt_dev->flags & F_IPV6)
620 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Luiz Capitulino222f1802006-03-20 22:16:13 -0800622 if (pkt_dev->flags & F_IPSRC_RND)
623 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Luiz Capitulino222f1802006-03-20 22:16:13 -0800625 if (pkt_dev->flags & F_IPDST_RND)
626 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Luiz Capitulino222f1802006-03-20 22:16:13 -0800628 if (pkt_dev->flags & F_TXSIZE_RND)
629 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Luiz Capitulino222f1802006-03-20 22:16:13 -0800631 if (pkt_dev->flags & F_UDPSRC_RND)
632 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Luiz Capitulino222f1802006-03-20 22:16:13 -0800634 if (pkt_dev->flags & F_UDPDST_RND)
635 seq_printf(seq, "UDPDST_RND ");
636
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200637 if (pkt_dev->flags & F_UDPCSUM)
638 seq_printf(seq, "UDPCSUM ");
639
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800640 if (pkt_dev->flags & F_MPLS_RND)
641 seq_printf(seq, "MPLS_RND ");
642
Robert Olsson45b270f2007-08-28 15:45:55 -0700643 if (pkt_dev->flags & F_QUEUE_MAP_RND)
644 seq_printf(seq, "QUEUE_MAP_RND ");
645
Robert Olssone6fce5b2008-08-07 02:23:01 -0700646 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
647 seq_printf(seq, "QUEUE_MAP_CPU ");
648
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700649 if (pkt_dev->cflows) {
650 if (pkt_dev->flags & F_FLOW_SEQ)
651 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
652 else
653 seq_printf(seq, "FLOW_RND ");
654 }
655
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700656#ifdef CONFIG_XFRM
657 if (pkt_dev->flags & F_IPSEC_ON)
658 seq_printf(seq, "IPSEC ");
659#endif
660
Luiz Capitulino222f1802006-03-20 22:16:13 -0800661 if (pkt_dev->flags & F_MACSRC_RND)
662 seq_printf(seq, "MACSRC_RND ");
663
664 if (pkt_dev->flags & F_MACDST_RND)
665 seq_printf(seq, "MACDST_RND ");
666
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700667 if (pkt_dev->flags & F_VID_RND)
668 seq_printf(seq, "VID_RND ");
669
670 if (pkt_dev->flags & F_SVID_RND)
671 seq_printf(seq, "SVID_RND ");
672
Robert Olssone99b99b2010-03-18 22:44:30 +0000673 if (pkt_dev->flags & F_NODE)
674 seq_printf(seq, "NODE_ALLOC ");
675
Luiz Capitulino222f1802006-03-20 22:16:13 -0800676 seq_puts(seq, "\n");
677
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000678 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000679 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000680 idle = pkt_dev->idle_acc;
681 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800682
683 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000684 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800685 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000686 (unsigned long long)pkt_dev->errors);
687
688 seq_printf(seq,
689 " started: %lluus stopped: %lluus idle: %lluus\n",
690 (unsigned long long) ktime_to_us(pkt_dev->started_at),
691 (unsigned long long) ktime_to_us(stopped),
692 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800693
694 seq_printf(seq,
695 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700696 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
697 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Luiz Capitulino222f1802006-03-20 22:16:13 -0800699 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000700 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
701 &pkt_dev->cur_in6_saddr,
702 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800703 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000704 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
705 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Luiz Capitulino222f1802006-03-20 22:16:13 -0800707 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700708 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Robert Olsson45b270f2007-08-28 15:45:55 -0700710 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
711
Luiz Capitulino222f1802006-03-20 22:16:13 -0800712 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800715 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800717 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800722
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000723static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
724 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800725{
726 int i = 0;
727 *num = 0;
728
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700729 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000730 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800731 char c;
732 *num <<= 4;
733 if (get_user(c, &user_buffer[i]))
734 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000735 value = hex_to_bin(c);
736 if (value >= 0)
737 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800738 else
739 break;
740 }
741 return i;
742}
743
Luiz Capitulino222f1802006-03-20 22:16:13 -0800744static int count_trail_chars(const char __user * user_buffer,
745 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 int i;
748
749 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800750 char c;
751 if (get_user(c, &user_buffer[i]))
752 return -EFAULT;
753 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 case '\"':
755 case '\n':
756 case '\r':
757 case '\t':
758 case ' ':
759 case '=':
760 break;
761 default:
762 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765done:
766 return i;
767}
768
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000769static long num_arg(const char __user *user_buffer, unsigned long maxlen,
770 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000772 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800774
Paul Gortmakerd6182222010-10-18 12:14:44 +0000775 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800776 char c;
777 if (get_user(c, &user_buffer[i]))
778 return -EFAULT;
779 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800781 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 } else
783 break;
784 }
785 return i;
786}
787
Luiz Capitulino222f1802006-03-20 22:16:13 -0800788static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000790 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Paul Gortmakerd6182222010-10-18 12:14:44 +0000792 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800793 char c;
794 if (get_user(c, &user_buffer[i]))
795 return -EFAULT;
796 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 case '\"':
798 case '\n':
799 case '\r':
800 case '\t':
801 case ' ':
802 goto done_str;
803 break;
804 default:
805 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return i;
810}
811
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800812static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
813{
Eric Dumazet95c96172012-04-15 05:58:06 +0000814 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800815 char c;
816 ssize_t i = 0;
817 int len;
818
819 pkt_dev->nr_labels = 0;
820 do {
821 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700822 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800823 if (len <= 0)
824 return len;
825 pkt_dev->labels[n] = htonl(tmp);
826 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
827 pkt_dev->flags |= F_MPLS_RND;
828 i += len;
829 if (get_user(c, &buffer[i]))
830 return -EFAULT;
831 i++;
832 n++;
833 if (n >= MAX_MPLS_LABELS)
834 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700835 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800836
837 pkt_dev->nr_labels = n;
838 return i;
839}
840
Luiz Capitulino222f1802006-03-20 22:16:13 -0800841static ssize_t pktgen_if_write(struct file *file,
842 const char __user * user_buffer, size_t count,
843 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Joe Perches8a994a72010-07-12 10:50:23 +0000845 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800846 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000847 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 char name[16], valstr[32];
849 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800850 char *pg_result = NULL;
851 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800853
854 pg_result = &(pkt_dev->result[0]);
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (count < 1) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000857 pr_warning("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return -EINVAL;
859 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800860
Paul Gortmakerd6182222010-10-18 12:14:44 +0000861 max = count;
862 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800863 if (tmp < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000864 pr_warning("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800865 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000867 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /* Read variable name */
870
871 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000872 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800873 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800876 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return -EFAULT;
878 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879
880 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800882 if (len < 0)
883 return len;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 i += len;
886
887 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000888 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700889 char tb[copy + 1];
890 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700892 tb[copy] = 0;
Joe Perchesf342cda2012-05-16 17:50:41 +0000893 pr_debug("%s,%lu buffer -:%s:-\n",
894 name, (unsigned long)count, tb);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (!strcmp(name, "min_pkt_size")) {
898 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000899 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800900 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800903 if (value < 14 + 20 + 8)
904 value = 14 + 20 + 8;
905 if (value != pkt_dev->min_pkt_size) {
906 pkt_dev->min_pkt_size = value;
907 pkt_dev->cur_pkt_size = value;
908 }
909 sprintf(pg_result, "OK: min_pkt_size=%u",
910 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return count;
912 }
913
Luiz Capitulino222f1802006-03-20 22:16:13 -0800914 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000916 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800917 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800920 if (value < 14 + 20 + 8)
921 value = 14 + 20 + 8;
922 if (value != pkt_dev->max_pkt_size) {
923 pkt_dev->max_pkt_size = value;
924 pkt_dev->cur_pkt_size = value;
925 }
926 sprintf(pg_result, "OK: max_pkt_size=%u",
927 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return count;
929 }
930
Luiz Capitulino222f1802006-03-20 22:16:13 -0800931 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 if (!strcmp(name, "pkt_size")) {
934 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000935 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800936 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800939 if (value < 14 + 20 + 8)
940 value = 14 + 20 + 8;
941 if (value != pkt_dev->min_pkt_size) {
942 pkt_dev->min_pkt_size = value;
943 pkt_dev->max_pkt_size = value;
944 pkt_dev->cur_pkt_size = value;
945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
947 return count;
948 }
949
Luiz Capitulino222f1802006-03-20 22:16:13 -0800950 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000952 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800953 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800956 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 sprintf(pg_result, "OK: debug=%u", debug);
958 return count;
959 }
960
Luiz Capitulino222f1802006-03-20 22:16:13 -0800961 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000963 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800964 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 i += len;
967 pkt_dev->nfrags = value;
968 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
969 return count;
970 }
971 if (!strcmp(name, "delay")) {
972 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000973 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800974 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000977 if (value == 0x7FFFFFFF)
978 pkt_dev->delay = ULLONG_MAX;
979 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000980 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000981
982 sprintf(pg_result, "OK: delay=%llu",
983 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return count;
985 }
Daniel Turull43d28b62010-06-09 22:49:57 +0000986 if (!strcmp(name, "rate")) {
987 len = num_arg(&user_buffer[i], 10, &value);
988 if (len < 0)
989 return len;
990
991 i += len;
992 if (!value)
993 return len;
994 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
995 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +0000996 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +0000997
998 sprintf(pg_result, "OK: rate=%lu", value);
999 return count;
1000 }
1001 if (!strcmp(name, "ratep")) {
1002 len = num_arg(&user_buffer[i], 10, &value);
1003 if (len < 0)
1004 return len;
1005
1006 i += len;
1007 if (!value)
1008 return len;
1009 pkt_dev->delay = NSEC_PER_SEC/value;
1010 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001011 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001012
1013 sprintf(pg_result, "OK: rate=%lu", value);
1014 return count;
1015 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001016 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001018 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001019 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001022 if (value != pkt_dev->udp_src_min) {
1023 pkt_dev->udp_src_min = value;
1024 pkt_dev->cur_udp_src = value;
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1027 return count;
1028 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001029 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001031 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001035 if (value != pkt_dev->udp_dst_min) {
1036 pkt_dev->udp_dst_min = value;
1037 pkt_dev->cur_udp_dst = value;
1038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1040 return count;
1041 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001042 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001044 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001045 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001048 if (value != pkt_dev->udp_src_max) {
1049 pkt_dev->udp_src_max = value;
1050 pkt_dev->cur_udp_src = value;
1051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1053 return count;
1054 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001055 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001057 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001058 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 if (value != pkt_dev->udp_dst_max) {
1062 pkt_dev->udp_dst_max = value;
1063 pkt_dev->cur_udp_dst = value;
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1066 return count;
1067 }
1068 if (!strcmp(name, "clone_skb")) {
1069 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001070 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001071 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001072 if ((value > 0) &&
1073 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
1074 return -ENOTSUPP;
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);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001130 if (pkt_dev->page) {
1131 put_page(pkt_dev->page);
1132 pkt_dev->page = NULL;
1133 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001134 }
1135 else
1136 sprintf(pg_result, "ERROR: node not possible");
1137 return count;
1138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001140 char f[32];
1141 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001143 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001144 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (copy_from_user(f, &user_buffer[i], len))
1147 return -EFAULT;
1148 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001149 if (strcmp(f, "IPSRC_RND") == 0)
1150 pkt_dev->flags |= F_IPSRC_RND;
1151
1152 else if (strcmp(f, "!IPSRC_RND") == 0)
1153 pkt_dev->flags &= ~F_IPSRC_RND;
1154
1155 else if (strcmp(f, "TXSIZE_RND") == 0)
1156 pkt_dev->flags |= F_TXSIZE_RND;
1157
1158 else if (strcmp(f, "!TXSIZE_RND") == 0)
1159 pkt_dev->flags &= ~F_TXSIZE_RND;
1160
1161 else if (strcmp(f, "IPDST_RND") == 0)
1162 pkt_dev->flags |= F_IPDST_RND;
1163
1164 else if (strcmp(f, "!IPDST_RND") == 0)
1165 pkt_dev->flags &= ~F_IPDST_RND;
1166
1167 else if (strcmp(f, "UDPSRC_RND") == 0)
1168 pkt_dev->flags |= F_UDPSRC_RND;
1169
1170 else if (strcmp(f, "!UDPSRC_RND") == 0)
1171 pkt_dev->flags &= ~F_UDPSRC_RND;
1172
1173 else if (strcmp(f, "UDPDST_RND") == 0)
1174 pkt_dev->flags |= F_UDPDST_RND;
1175
1176 else if (strcmp(f, "!UDPDST_RND") == 0)
1177 pkt_dev->flags &= ~F_UDPDST_RND;
1178
1179 else if (strcmp(f, "MACSRC_RND") == 0)
1180 pkt_dev->flags |= F_MACSRC_RND;
1181
1182 else if (strcmp(f, "!MACSRC_RND") == 0)
1183 pkt_dev->flags &= ~F_MACSRC_RND;
1184
1185 else if (strcmp(f, "MACDST_RND") == 0)
1186 pkt_dev->flags |= F_MACDST_RND;
1187
1188 else if (strcmp(f, "!MACDST_RND") == 0)
1189 pkt_dev->flags &= ~F_MACDST_RND;
1190
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001191 else if (strcmp(f, "MPLS_RND") == 0)
1192 pkt_dev->flags |= F_MPLS_RND;
1193
1194 else if (strcmp(f, "!MPLS_RND") == 0)
1195 pkt_dev->flags &= ~F_MPLS_RND;
1196
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001197 else if (strcmp(f, "VID_RND") == 0)
1198 pkt_dev->flags |= F_VID_RND;
1199
1200 else if (strcmp(f, "!VID_RND") == 0)
1201 pkt_dev->flags &= ~F_VID_RND;
1202
1203 else if (strcmp(f, "SVID_RND") == 0)
1204 pkt_dev->flags |= F_SVID_RND;
1205
1206 else if (strcmp(f, "!SVID_RND") == 0)
1207 pkt_dev->flags &= ~F_SVID_RND;
1208
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001209 else if (strcmp(f, "FLOW_SEQ") == 0)
1210 pkt_dev->flags |= F_FLOW_SEQ;
1211
Robert Olsson45b270f2007-08-28 15:45:55 -07001212 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1213 pkt_dev->flags |= F_QUEUE_MAP_RND;
1214
1215 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1216 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001217
1218 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1219 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1220
1221 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1222 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001223#ifdef CONFIG_XFRM
1224 else if (strcmp(f, "IPSEC") == 0)
1225 pkt_dev->flags |= F_IPSEC_ON;
1226#endif
1227
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001228 else if (strcmp(f, "!IPV6") == 0)
1229 pkt_dev->flags &= ~F_IPV6;
1230
Robert Olssone99b99b2010-03-18 22:44:30 +00001231 else if (strcmp(f, "NODE_ALLOC") == 0)
1232 pkt_dev->flags |= F_NODE;
1233
1234 else if (strcmp(f, "!NODE_ALLOC") == 0)
1235 pkt_dev->flags &= ~F_NODE;
1236
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001237 else if (strcmp(f, "UDPCSUM") == 0)
1238 pkt_dev->flags |= F_UDPCSUM;
1239
1240 else if (strcmp(f, "!UDPCSUM") == 0)
1241 pkt_dev->flags &= ~F_UDPCSUM;
1242
Luiz Capitulino222f1802006-03-20 22:16:13 -08001243 else {
1244 sprintf(pg_result,
1245 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1246 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001247 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Robert Olssone99b99b2010-03-18 22:44:30 +00001248 "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 -08001249 return count;
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1252 return count;
1253 }
1254 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1255 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001256 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001257 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Luiz Capitulino222f1802006-03-20 22:16:13 -08001259 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001261 buf[len] = 0;
1262 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1263 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1264 strncpy(pkt_dev->dst_min, buf, len);
1265 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1266 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1267 }
1268 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001269 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001270 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1272 return count;
1273 }
1274 if (!strcmp(name, "dst_max")) {
1275 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001276 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001277 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return -EFAULT;
1282
Luiz Capitulino222f1802006-03-20 22:16:13 -08001283 buf[len] = 0;
1284 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1285 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1286 strncpy(pkt_dev->dst_max, buf, len);
1287 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1288 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1289 }
1290 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001291 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 i += len;
1293 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1294 return count;
1295 }
1296 if (!strcmp(name, "dst6")) {
1297 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001298 if (len < 0)
1299 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 pkt_dev->flags |= F_IPV6;
1302
Luiz Capitulino222f1802006-03-20 22:16:13 -08001303 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001305 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Amerigo Wangc468fb12012-10-09 17:48:20 +00001307 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001308 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001310 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Luiz Capitulino222f1802006-03-20 22:16:13 -08001312 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001313 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Luiz Capitulino222f1802006-03-20 22:16:13 -08001315 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 sprintf(pg_result, "OK: dst6=%s", buf);
1317 return count;
1318 }
1319 if (!strcmp(name, "dst6_min")) {
1320 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001321 if (len < 0)
1322 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 pkt_dev->flags |= F_IPV6;
1325
Luiz Capitulino222f1802006-03-20 22:16:13 -08001326 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001328 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Amerigo Wangc468fb12012-10-09 17:48:20 +00001330 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001331 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001333 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001334 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001335 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Luiz Capitulino222f1802006-03-20 22:16:13 -08001337 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 sprintf(pg_result, "OK: dst6_min=%s", buf);
1339 return count;
1340 }
1341 if (!strcmp(name, "dst6_max")) {
1342 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 if (len < 0)
1344 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 pkt_dev->flags |= F_IPV6;
1347
Luiz Capitulino222f1802006-03-20 22:16:13 -08001348 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001350 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Amerigo Wangc468fb12012-10-09 17:48:20 +00001352 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001353 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Luiz Capitulino222f1802006-03-20 22:16:13 -08001355 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001356 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Luiz Capitulino222f1802006-03-20 22:16:13 -08001358 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 sprintf(pg_result, "OK: dst6_max=%s", buf);
1360 return count;
1361 }
1362 if (!strcmp(name, "src6")) {
1363 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001364 if (len < 0)
1365 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 pkt_dev->flags |= F_IPV6;
1368
Luiz Capitulino222f1802006-03-20 22:16:13 -08001369 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001371 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Amerigo Wangc468fb12012-10-09 17:48:20 +00001373 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001374 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001376 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Luiz Capitulino222f1802006-03-20 22:16:13 -08001378 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001379 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001380
1381 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 sprintf(pg_result, "OK: src6=%s", buf);
1383 return count;
1384 }
1385 if (!strcmp(name, "src_min")) {
1386 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001387 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001388 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001389
Luiz Capitulino222f1802006-03-20 22:16:13 -08001390 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001392 buf[len] = 0;
1393 if (strcmp(buf, pkt_dev->src_min) != 0) {
1394 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1395 strncpy(pkt_dev->src_min, buf, len);
1396 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1397 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1398 }
1399 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001400 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 i += len;
1402 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1403 return count;
1404 }
1405 if (!strcmp(name, "src_max")) {
1406 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001407 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001408 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001409
Luiz Capitulino222f1802006-03-20 22:16:13 -08001410 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001412 buf[len] = 0;
1413 if (strcmp(buf, pkt_dev->src_max) != 0) {
1414 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1415 strncpy(pkt_dev->src_max, buf, len);
1416 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1417 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1418 }
1419 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001420 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 i += len;
1422 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1423 return count;
1424 }
1425 if (!strcmp(name, "dst_mac")) {
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001434 if (!mac_pton(valstr, pkt_dev->dst_mac))
1435 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 /* Set up Dest MAC */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001437 memcpy(&pkt_dev->hh[0], pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001438
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001439 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return count;
1441 }
1442 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001444 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001445 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001448 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001451 if (!mac_pton(valstr, pkt_dev->src_mac))
1452 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001453 /* Set up Src MAC */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001454 memcpy(&pkt_dev->hh[6], pkt_dev->src_mac, ETH_ALEN);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001455
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001456 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return count;
1458 }
1459
Luiz Capitulino222f1802006-03-20 22:16:13 -08001460 if (!strcmp(name, "clear_counters")) {
1461 pktgen_clear_counters(pkt_dev);
1462 sprintf(pg_result, "OK: Clearing counters.\n");
1463 return count;
1464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 if (!strcmp(name, "flows")) {
1467 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001468 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001469 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 i += len;
1472 if (value > MAX_CFLOWS)
1473 value = MAX_CFLOWS;
1474
1475 pkt_dev->cflows = value;
1476 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1477 return count;
1478 }
1479
1480 if (!strcmp(name, "flowlen")) {
1481 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001482 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001483 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 i += len;
1486 pkt_dev->lflow = value;
1487 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1488 return count;
1489 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001490
Robert Olsson45b270f2007-08-28 15:45:55 -07001491 if (!strcmp(name, "queue_map_min")) {
1492 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001493 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001494 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001495
Robert Olsson45b270f2007-08-28 15:45:55 -07001496 i += len;
1497 pkt_dev->queue_map_min = value;
1498 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1499 return count;
1500 }
1501
1502 if (!strcmp(name, "queue_map_max")) {
1503 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001504 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001505 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001506
Robert Olsson45b270f2007-08-28 15:45:55 -07001507 i += len;
1508 pkt_dev->queue_map_max = value;
1509 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1510 return count;
1511 }
1512
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001513 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001514 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001515
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001516 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001517 if (len < 0)
1518 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001519 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001520 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001521 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001522 cnt += sprintf(pg_result + cnt,
1523 "%08x%s", ntohl(pkt_dev->labels[n]),
1524 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001525
1526 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1527 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1528 pkt_dev->svlan_id = 0xffff;
1529
1530 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001531 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001532 }
1533 return count;
1534 }
1535
1536 if (!strcmp(name, "vlan_id")) {
1537 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001538 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001539 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001540
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001541 i += len;
1542 if (value <= 4095) {
1543 pkt_dev->vlan_id = value; /* turn on VLAN */
1544
1545 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001546 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001547
1548 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001549 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001550
1551 pkt_dev->nr_labels = 0; /* turn off MPLS */
1552 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1553 } else {
1554 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1555 pkt_dev->svlan_id = 0xffff;
1556
1557 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001558 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001559 }
1560 return count;
1561 }
1562
1563 if (!strcmp(name, "vlan_p")) {
1564 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001565 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001566 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001567
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001568 i += len;
1569 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1570 pkt_dev->vlan_p = value;
1571 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1572 } else {
1573 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1574 }
1575 return count;
1576 }
1577
1578 if (!strcmp(name, "vlan_cfi")) {
1579 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001580 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001581 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001582
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001583 i += len;
1584 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1585 pkt_dev->vlan_cfi = value;
1586 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1587 } else {
1588 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1589 }
1590 return count;
1591 }
1592
1593 if (!strcmp(name, "svlan_id")) {
1594 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001595 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001596 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001597
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001598 i += len;
1599 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1600 pkt_dev->svlan_id = value; /* turn on SVLAN */
1601
1602 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001603 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001604
1605 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001606 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001607
1608 pkt_dev->nr_labels = 0; /* turn off MPLS */
1609 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1610 } else {
1611 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1612 pkt_dev->svlan_id = 0xffff;
1613
1614 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001615 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001616 }
1617 return count;
1618 }
1619
1620 if (!strcmp(name, "svlan_p")) {
1621 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001622 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001623 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001624
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001625 i += len;
1626 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1627 pkt_dev->svlan_p = value;
1628 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1629 } else {
1630 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1631 }
1632 return count;
1633 }
1634
1635 if (!strcmp(name, "svlan_cfi")) {
1636 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001637 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001638 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001639
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001640 i += len;
1641 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1642 pkt_dev->svlan_cfi = value;
1643 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1644 } else {
1645 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1646 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001647 return count;
1648 }
1649
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001650 if (!strcmp(name, "tos")) {
1651 __u32 tmp_value = 0;
1652 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001653 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001654 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001655
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001656 i += len;
1657 if (len == 2) {
1658 pkt_dev->tos = tmp_value;
1659 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1660 } else {
1661 sprintf(pg_result, "ERROR: tos must be 00-ff");
1662 }
1663 return count;
1664 }
1665
1666 if (!strcmp(name, "traffic_class")) {
1667 __u32 tmp_value = 0;
1668 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001669 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001670 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001671
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001672 i += len;
1673 if (len == 2) {
1674 pkt_dev->traffic_class = tmp_value;
1675 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1676 } else {
1677 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1678 }
1679 return count;
1680 }
1681
John Fastabend9e50e3a2010-11-16 19:12:28 +00001682 if (!strcmp(name, "skb_priority")) {
1683 len = num_arg(&user_buffer[i], 9, &value);
1684 if (len < 0)
1685 return len;
1686
1687 i += len;
1688 pkt_dev->skb_priority = value;
1689 sprintf(pg_result, "OK: skb_priority=%i",
1690 pkt_dev->skb_priority);
1691 return count;
1692 }
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1695 return -EINVAL;
1696}
1697
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001698static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
Al Virod9dda782013-03-31 18:16:14 -04001700 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001701}
1702
Arjan van de Ven9a321442007-02-12 00:55:35 -08001703static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001704 .owner = THIS_MODULE,
1705 .open = pktgen_if_open,
1706 .read = seq_read,
1707 .llseek = seq_lseek,
1708 .write = pktgen_if_write,
1709 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001710};
1711
1712static int pktgen_thread_show(struct seq_file *seq, void *v)
1713{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001714 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001715 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001717 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Luiz Capitulino222f1802006-03-20 22:16:13 -08001719 seq_printf(seq, "Running: ");
1720
1721 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001722 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001723 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001724 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Luiz Capitulino222f1802006-03-20 22:16:13 -08001726 seq_printf(seq, "\nStopped: ");
1727
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001728 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001729 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001730 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001733 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001735 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Luiz Capitulino222f1802006-03-20 22:16:13 -08001737 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001742static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743 const char __user * user_buffer,
1744 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Joe Perches8a994a72010-07-12 10:50:23 +00001746 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001747 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001748 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001750 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001753 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return -EINVAL;
1755 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001756
Paul Gortmakerd6182222010-10-18 12:14:44 +00001757 max = count;
1758 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001759 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001760 return len;
1761
Paul Gortmakerd6182222010-10-18 12:14:44 +00001762 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /* Read variable name */
1765
1766 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001767 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001768 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 memset(name, 0, sizeof(name));
1771 if (copy_from_user(name, &user_buffer[i], len))
1772 return -EFAULT;
1773 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001774
Luiz Capitulino222f1802006-03-20 22:16:13 -08001775 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001777 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001778 return len;
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 i += len;
1781
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001782 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001783 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Luiz Capitulino222f1802006-03-20 22:16:13 -08001785 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001786 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 ret = -EINVAL;
1788 goto out;
1789 }
1790
1791 pg_result = &(t->result[0]);
1792
Luiz Capitulino222f1802006-03-20 22:16:13 -08001793 if (!strcmp(name, "add_device")) {
1794 char f[32];
1795 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001797 if (len < 0) {
1798 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 goto out;
1800 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001801 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return -EFAULT;
1803 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001804 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001805 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001806 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001807 if (!ret) {
1808 ret = count;
1809 sprintf(pg_result, "OK: add_device=%s", f);
1810 } else
1811 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 goto out;
1813 }
1814
Luiz Capitulino222f1802006-03-20 22:16:13 -08001815 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001816 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001817 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001818 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001819 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001821 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 goto out;
1823 }
1824
Luiz Capitulino222f1802006-03-20 22:16:13 -08001825 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001826 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001827 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 goto out;
1829 }
1830
1831 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001832out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return ret;
1834}
1835
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001836static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Al Virod9dda782013-03-31 18:16:14 -04001838 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
Arjan van de Ven9a321442007-02-12 00:55:35 -08001841static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001842 .owner = THIS_MODULE,
1843 .open = pktgen_thread_open,
1844 .read = seq_read,
1845 .llseek = seq_lseek,
1846 .write = pktgen_thread_write,
1847 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001848};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001851static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1852 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
1854 struct pktgen_thread *t;
1855 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001856 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Cong Wang4e58a022013-01-28 19:55:53 +00001858 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001859 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001861 if (remove) {
1862 if_lock(t);
1863 pkt_dev->removal_mark = 1;
1864 t->control |= T_REMDEV;
1865 if_unlock(t);
1866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 break;
1868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001870 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001873/*
1874 * mark a device for removal
1875 */
Cong Wang4e58a022013-01-28 19:55:53 +00001876static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
1878 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001879 const int max_tries = 10, msec_per_try = 125;
1880 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001881
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001882 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001883 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001884
Luiz Capitulino222f1802006-03-20 22:16:13 -08001885 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001886
Cong Wang4e58a022013-01-28 19:55:53 +00001887 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001888 if (pkt_dev == NULL)
1889 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001890
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001891 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001892 pr_debug("%s: waiting for %s to disappear....\n",
1893 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001894 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001895 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001896
1897 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001898 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1899 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001900 break;
1901 }
1902
1903 }
1904
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001905 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001906}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001907
Cong Wang4e58a022013-01-28 19:55:53 +00001908static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001909{
1910 struct pktgen_thread *t;
1911
Cong Wang4e58a022013-01-28 19:55:53 +00001912 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001913 struct pktgen_dev *pkt_dev;
1914
1915 list_for_each_entry(pkt_dev, &t->if_list, list) {
1916 if (pkt_dev->odev != dev)
1917 continue;
1918
David Howellsa8ca16e2013-04-12 17:27:28 +01001919 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001920
Alexey Dobriyan29753152009-08-28 23:34:43 -07001921 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001922 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001923 &pktgen_if_fops,
1924 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001925 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001926 pr_err("can't move proc entry for '%s'\n",
1927 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001928 break;
1929 }
1930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Luiz Capitulino222f1802006-03-20 22:16:13 -08001933static int pktgen_device_event(struct notifier_block *unused,
1934 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Jiri Pirko351638e2013-05-28 01:30:21 +00001936 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001937 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Cong Wang4e58a022013-01-28 19:55:53 +00001939 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001940 return NOTIFY_DONE;
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 /* It is OK that we do not hold the group lock right now,
1943 * as we run under the RTNL lock.
1944 */
1945
1946 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001947 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001948 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001952 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 return NOTIFY_DONE;
1957}
1958
Cong Wang4e58a022013-01-28 19:55:53 +00001959static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
1960 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001961 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001962{
1963 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00001964 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001965
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001966 for (i = 0; ifname[i] != '@'; i++) {
1967 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001968 break;
1969
1970 b[i] = ifname[i];
1971 }
1972 b[i] = 0;
1973
Cong Wang4e58a022013-01-28 19:55:53 +00001974 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07001975}
1976
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/* Associate pktgen_dev with a device. */
1979
Cong Wang4e58a022013-01-28 19:55:53 +00001980static int pktgen_setup_dev(const struct pktgen_net *pn,
1981 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001982{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001984 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (pkt_dev->odev) {
1988 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001989 pkt_dev->odev = NULL;
1990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Cong Wang4e58a022013-01-28 19:55:53 +00001992 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001994 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001995 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001999 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002000 err = -EINVAL;
2001 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002002 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002003 err = -ENETDOWN;
2004 } else {
2005 pkt_dev->odev = odev;
2006 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002010 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
2013/* Read pkt_dev from the interface and set up internal pktgen_dev
2014 * structure to have the right information to create/send packets
2015 */
2016static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2017{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002018 int ntxq;
2019
Luiz Capitulino222f1802006-03-20 22:16:13 -08002020 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002021 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002022 sprintf(pkt_dev->result,
2023 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2024 return;
2025 }
2026
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002027 /* make sure that we don't pick a non-existing transmit queue */
2028 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002029
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002030 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002031 pr_warning("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2032 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2033 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002034 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002035 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002036 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002037 pr_warning("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2038 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2039 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002040 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002041 }
2042
Luiz Capitulino222f1802006-03-20 22:16:13 -08002043 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002045 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002046 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Luiz Capitulino222f1802006-03-20 22:16:13 -08002048 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002049 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Luiz Capitulino222f1802006-03-20 22:16:13 -08002051 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002052 int i, set = 0, err = 1;
2053 struct inet6_dev *idev;
2054
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002055 if (pkt_dev->min_pkt_size == 0) {
2056 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2057 + sizeof(struct udphdr)
2058 + sizeof(struct pktgen_hdr)
2059 + pkt_dev->pkt_overhead;
2060 }
2061
Luiz Capitulino222f1802006-03-20 22:16:13 -08002062 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2063 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 set = 1;
2065 break;
2066 }
2067
Luiz Capitulino222f1802006-03-20 22:16:13 -08002068 if (!set) {
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /*
2071 * Use linklevel address if unconfigured.
2072 *
2073 * use ipv6_get_lladdr if/when it's get exported
2074 */
2075
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002076 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002077 idev = __in6_dev_get(pkt_dev->odev);
2078 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 struct inet6_ifaddr *ifp;
2080
2081 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002082 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2083 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002084 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002085 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 err = 0;
2087 break;
2088 }
2089 }
2090 read_unlock_bh(&idev->lock);
2091 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002092 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002093 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002094 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002096 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002097 if (pkt_dev->min_pkt_size == 0) {
2098 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2099 + sizeof(struct udphdr)
2100 + sizeof(struct pktgen_hdr)
2101 + pkt_dev->pkt_overhead;
2102 }
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 pkt_dev->saddr_min = 0;
2105 pkt_dev->saddr_max = 0;
2106 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002107
2108 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002111 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (in_dev) {
2113 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002114 pkt_dev->saddr_min =
2115 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 pkt_dev->saddr_max = pkt_dev->saddr_min;
2117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002120 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2122 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2123 }
2124
2125 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2126 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2127 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002128 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002129 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2130 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2131 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2132
Luiz Capitulino222f1802006-03-20 22:16:13 -08002133 pkt_dev->cur_dst_mac_offset = 0;
2134 pkt_dev->cur_src_mac_offset = 0;
2135 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2136 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2137 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2138 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 pkt_dev->nflows = 0;
2140}
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002143static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2144{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002145 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002146 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002147 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002148
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002149 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2150 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002151
Daniel Turull43d28b62010-06-09 22:49:57 +00002152 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002153 if (remaining <= 0) {
2154 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002155 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002156 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002157
Daniel Borkmann398f3822012-10-28 08:27:19 +00002158 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002159 if (remaining < 100000) {
2160 /* for small delays (<100us), just loop until limit is reached */
2161 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002162 end_time = ktime_get();
2163 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002164 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002165 /* see do_nanosleep */
2166 hrtimer_init_sleeper(&t, current);
2167 do {
2168 set_current_state(TASK_INTERRUPTIBLE);
2169 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2170 if (!hrtimer_active(&t.timer))
2171 t.task = NULL;
2172
2173 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002176 hrtimer_cancel(&t.timer);
2177 } while (t.task && pkt_dev->running && !signal_pending(current));
2178 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002179 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002181
2182 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002183 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002186static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2187{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002188 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002189 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2190 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2191 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2192}
2193
Stephen Hemminger648fda72009-08-27 13:55:07 +00002194static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002195{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002196 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002197}
2198
2199static inline int f_pick(struct pktgen_dev *pkt_dev)
2200{
2201 int flow = pkt_dev->curfl;
2202
2203 if (pkt_dev->flags & F_FLOW_SEQ) {
2204 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2205 /* reset time */
2206 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002207 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002208 pkt_dev->curfl += 1;
2209 if (pkt_dev->curfl >= pkt_dev->cflows)
2210 pkt_dev->curfl = 0; /*reset */
2211 }
2212 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002213 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002214 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002215
Robert Olsson1211a642008-08-05 18:44:26 -07002216 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002217 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002218 pkt_dev->flows[flow].flags = 0;
2219 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002220 }
2221
2222 return pkt_dev->curfl;
2223}
2224
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002225
2226#ifdef CONFIG_XFRM
2227/* If there was already an IPSEC SA, we keep it as is, else
2228 * we go look for it ...
2229*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002230#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002231static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002232{
2233 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002234 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002235 if (!x) {
2236 /*slow path: we dont already have xfrm_state*/
Cong Wang4e58a022013-01-28 19:55:53 +00002237 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
Alexey Dobriyan5447c5e2008-11-25 17:31:51 -08002238 (xfrm_address_t *)&pkt_dev->cur_daddr,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002239 (xfrm_address_t *)&pkt_dev->cur_saddr,
2240 AF_INET,
2241 pkt_dev->ipsmode,
2242 pkt_dev->ipsproto, 0);
2243 if (x) {
2244 pkt_dev->flows[flow].x = x;
2245 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002246 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002247 }
2248
2249 }
2250}
2251#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002252static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2253{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002254
2255 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2256 pkt_dev->cur_queue_map = smp_processor_id();
2257
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002258 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002259 __u16 t;
2260 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002261 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002262 (pkt_dev->queue_map_max -
2263 pkt_dev->queue_map_min + 1)
2264 + pkt_dev->queue_map_min;
2265 } else {
2266 t = pkt_dev->cur_queue_map + 1;
2267 if (t > pkt_dev->queue_map_max)
2268 t = pkt_dev->queue_map_min;
2269 }
2270 pkt_dev->cur_queue_map = t;
2271 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002272 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 -07002273}
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275/* Increment/randomize headers according to flags and current values
2276 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2277 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002278static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2279{
2280 __u32 imn;
2281 __u32 imx;
2282 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002284 if (pkt_dev->cflows)
2285 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002288 if (pkt_dev->src_mac_count > 1) {
2289 __u32 mc;
2290 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Luiz Capitulino222f1802006-03-20 22:16:13 -08002292 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002293 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002294 else {
2295 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002296 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002297 pkt_dev->src_mac_count)
2298 pkt_dev->cur_src_mac_offset = 0;
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Luiz Capitulino222f1802006-03-20 22:16:13 -08002301 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2302 pkt_dev->hh[11] = tmp;
2303 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2304 pkt_dev->hh[10] = tmp;
2305 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2306 pkt_dev->hh[9] = tmp;
2307 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2308 pkt_dev->hh[8] = tmp;
2309 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2310 pkt_dev->hh[7] = tmp;
2311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Luiz Capitulino222f1802006-03-20 22:16:13 -08002313 /* Deal with Destination MAC */
2314 if (pkt_dev->dst_mac_count > 1) {
2315 __u32 mc;
2316 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Luiz Capitulino222f1802006-03-20 22:16:13 -08002318 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002319 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Luiz Capitulino222f1802006-03-20 22:16:13 -08002321 else {
2322 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002323 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002324 pkt_dev->dst_mac_count) {
2325 pkt_dev->cur_dst_mac_offset = 0;
2326 }
2327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Luiz Capitulino222f1802006-03-20 22:16:13 -08002329 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2330 pkt_dev->hh[5] = tmp;
2331 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2332 pkt_dev->hh[4] = tmp;
2333 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2334 pkt_dev->hh[3] = tmp;
2335 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2336 pkt_dev->hh[2] = tmp;
2337 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2338 pkt_dev->hh[1] = tmp;
2339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002341 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002342 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002343 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002344 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2345 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002346 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002347 htonl(0x000fffff));
2348 }
2349
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002350 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002351 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002352 }
2353
2354 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002355 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002356 }
2357
Luiz Capitulino222f1802006-03-20 22:16:13 -08002358 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2359 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002360 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002361 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2362 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Luiz Capitulino222f1802006-03-20 22:16:13 -08002364 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 pkt_dev->cur_udp_src++;
2366 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2367 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002368 }
2369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Luiz Capitulino222f1802006-03-20 22:16:13 -08002371 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2372 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002373 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002374 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2375 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002376 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002378 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002380 }
2381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 if (!(pkt_dev->flags & F_IPV6)) {
2384
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002385 imn = ntohl(pkt_dev->saddr_min);
2386 imx = ntohl(pkt_dev->saddr_max);
2387 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002389 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002390 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 else {
2392 t = ntohl(pkt_dev->cur_saddr);
2393 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002394 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 }
2398 pkt_dev->cur_saddr = htonl(t);
2399 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002400
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002401 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2403 } else {
Al Viro252e3342006-11-14 20:48:11 -08002404 imn = ntohl(pkt_dev->daddr_min);
2405 imx = ntohl(pkt_dev->daddr_max);
2406 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002408 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if (pkt_dev->flags & F_IPDST_RND) {
2410
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002411 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002412 t = prandom_u32() %
2413 (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002414 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002415 } while (ipv4_is_loopback(s) ||
2416 ipv4_is_multicast(s) ||
2417 ipv4_is_lbcast(s) ||
2418 ipv4_is_zeronet(s) ||
2419 ipv4_is_local_multicast(s));
Al Viro252e3342006-11-14 20:48:11 -08002420 pkt_dev->cur_daddr = s;
2421 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 t = ntohl(pkt_dev->cur_daddr);
2423 t++;
2424 if (t > imx) {
2425 t = imn;
2426 }
2427 pkt_dev->cur_daddr = htonl(t);
2428 }
2429 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002430 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002431 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002432 pkt_dev->flows[flow].cur_daddr =
2433 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002434#ifdef CONFIG_XFRM
2435 if (pkt_dev->flags & F_IPSEC_ON)
2436 get_ipsec_sa(pkt_dev, flow);
2437#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 pkt_dev->nflows++;
2439 }
2440 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002441 } else { /* IPV6 * */
2442
Joe Perches06e30412012-10-18 17:55:31 +00002443 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 int i;
2445
2446 /* Only random destinations yet */
2447
Luiz Capitulino222f1802006-03-20 22:16:13 -08002448 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002450 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002451 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2452 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
2456
Luiz Capitulino222f1802006-03-20 22:16:13 -08002457 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2458 __u32 t;
2459 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002460 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002461 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2462 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002463 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002465 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002467 }
2468 pkt_dev->cur_pkt_size = t;
2469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002471 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 pkt_dev->flows[flow].count++;
2474}
2475
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002476
2477#ifdef CONFIG_XFRM
2478static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2479{
2480 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2481 int err = 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002482
2483 if (!x)
2484 return 0;
2485 /* XXX: we dont support tunnel mode for now until
2486 * we resolve the dst issue */
2487 if (x->props.mode != XFRM_MODE_TRANSPORT)
2488 return 0;
2489
2490 spin_lock(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002491
Herbert Xu13996372007-10-17 21:35:51 -07002492 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002493 if (err)
2494 goto error;
2495 err = x->type->output(x, skb);
2496 if (err)
2497 goto error;
2498
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002499 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002500 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002501error:
2502 spin_unlock(&x->lock);
2503 return err;
2504}
2505
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002506static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002507{
2508 if (pkt_dev->cflows) {
2509 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002510 int i;
2511 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002512 struct xfrm_state *x = pkt_dev->flows[i].x;
2513 if (x) {
2514 xfrm_state_put(x);
2515 pkt_dev->flows[i].x = NULL;
2516 }
2517 }
2518 }
2519}
2520
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002521static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002522 struct sk_buff *skb, __be16 protocol)
2523{
2524 if (pkt_dev->flags & F_IPSEC_ON) {
2525 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2526 int nhead = 0;
2527 if (x) {
2528 int ret;
2529 __u8 *eth;
fan.du38682042013-12-01 16:28:48 +08002530 struct iphdr *iph;
2531
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002532 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002533 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002534 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2535 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002536 pr_err("Error expanding ipsec packet %d\n",
2537 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002538 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002539 }
2540 }
2541
2542 /* ipsec is not expecting ll header */
2543 skb_pull(skb, ETH_HLEN);
2544 ret = pktgen_output_ipsec(skb, pkt_dev);
2545 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002546 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002547 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002548 }
2549 /* restore ll */
2550 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2551 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002552 *(u16 *) &eth[12] = protocol;
fan.du38682042013-12-01 16:28:48 +08002553
2554 /* Update IPv4 header len as well as checksum value */
2555 iph = ip_hdr(skb);
2556 iph->tot_len = htons(skb->len - ETH_HLEN);
2557 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002558 }
2559 }
2560 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002561err:
2562 kfree_skb(skb);
2563 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002564}
2565#endif
2566
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002567static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2568{
Eric Dumazet95c96172012-04-15 05:58:06 +00002569 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002570 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002571 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002572
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002573 mpls--;
2574 *mpls |= MPLS_STACK_BOTTOM;
2575}
2576
Al Viro0f37c602006-11-03 03:49:56 -08002577static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2578 unsigned int prio)
2579{
2580 return htons(id | (cfi << 12) | (prio << 13));
2581}
2582
Eric Dumazet26ad7872011-01-25 13:26:05 -08002583static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2584 int datalen)
2585{
2586 struct timeval timestamp;
2587 struct pktgen_hdr *pgh;
2588
2589 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2590 datalen -= sizeof(*pgh);
2591
2592 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002593 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002594 } else {
2595 int frags = pkt_dev->nfrags;
2596 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002597 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002598
2599
2600 if (frags > MAX_SKB_FRAGS)
2601 frags = MAX_SKB_FRAGS;
2602 len = datalen - frags * PAGE_SIZE;
2603 if (len > 0) {
2604 memset(skb_put(skb, len), 0, len);
2605 datalen = frags * PAGE_SIZE;
2606 }
2607
2608 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002609 frag_len = (datalen/frags) < PAGE_SIZE ?
2610 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002611 while (datalen > 0) {
2612 if (unlikely(!pkt_dev->page)) {
2613 int node = numa_node_id();
2614
2615 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2616 node = pkt_dev->node;
2617 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2618 if (!pkt_dev->page)
2619 break;
2620 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002621 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002622 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002623 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002624 /*last fragment, fill rest of data*/
2625 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002626 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2627 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002628 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002629 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2630 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2631 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2632 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002633 i++;
2634 skb_shinfo(skb)->nr_frags = i;
2635 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002636 }
2637
2638 /* Stamp the time, and sequence number,
2639 * convert them to network byte order
2640 */
2641 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2642 pgh->seq_num = htonl(pkt_dev->seq_num);
2643
2644 do_gettimeofday(&timestamp);
2645 pgh->tv_sec = htonl(timestamp.tv_sec);
2646 pgh->tv_usec = htonl(timestamp.tv_usec);
2647}
2648
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002649static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
2650 struct pktgen_dev *pkt_dev,
2651 unsigned int extralen)
2652{
2653 struct sk_buff *skb = NULL;
2654 unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen +
2655 pkt_dev->pkt_overhead;
2656
2657 if (pkt_dev->flags & F_NODE) {
2658 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2659
2660 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2661 if (likely(skb)) {
2662 skb_reserve(skb, NET_SKB_PAD);
2663 skb->dev = dev;
2664 }
2665 } else {
2666 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2667 }
2668
2669 return skb;
2670}
2671
Luiz Capitulino222f1802006-03-20 22:16:13 -08002672static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2673 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
2675 struct sk_buff *skb = NULL;
2676 __u8 *eth;
2677 struct udphdr *udph;
2678 int datalen, iplen;
2679 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002680 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002681 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002682 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2683 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2684 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2685 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002686 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002687
2688 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002689 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002690
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002691 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002692 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002693
Robert Olsson64053be2005-06-26 15:27:10 -07002694 /* Update any of the values, used when we're incrementing various
2695 * fields.
2696 */
2697 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002698 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002699
David S. Miller7ac54592006-01-18 14:19:10 -08002700 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002701
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002702 skb = pktgen_alloc_skb(odev, pkt_dev, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (!skb) {
2704 sprintf(pkt_dev->result, "No memory");
2705 return NULL;
2706 }
2707
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002708 prefetchw(skb->data);
David S. Miller7ac54592006-01-18 14:19:10 -08002709 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711 /* Reserve for ethernet and IP header */
2712 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002713 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2714 if (pkt_dev->nr_labels)
2715 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002716
2717 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002718 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002719 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002720 *svlan_tci = build_tci(pkt_dev->svlan_id,
2721 pkt_dev->svlan_cfi,
2722 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002723 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002724 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002725 }
2726 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002727 *vlan_tci = build_tci(pkt_dev->vlan_id,
2728 pkt_dev->vlan_cfi,
2729 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002730 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002731 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002732 }
2733
Thomas Graf525cebe2013-06-03 11:49:23 +00002734 skb_set_mac_header(skb, 0);
2735 skb_set_network_header(skb, skb->len);
2736 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2737
2738 skb_set_transport_header(skb, skb->len);
2739 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002740 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002741 skb->priority = pkt_dev->skb_priority;
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002744 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002746 /* Eth + IPh + UDPh + mpls */
2747 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002748 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002749 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 udph->source = htons(pkt_dev->cur_udp_src);
2753 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002754 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002755 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
2757 iph->ihl = 5;
2758 iph->version = 4;
2759 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002760 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002761 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 iph->saddr = pkt_dev->cur_saddr;
2763 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002764 iph->id = htons(pkt_dev->ip_id);
2765 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 iph->frag_off = 0;
2767 iplen = 20 + 8 + datalen;
2768 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002769 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002770 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 skb->dev = odev;
2772 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002773
2774 if (!(pkt_dev->flags & F_UDPCSUM)) {
2775 skb->ip_summed = CHECKSUM_NONE;
2776 } else if (odev->features & NETIF_F_V4_CSUM) {
2777 skb->ip_summed = CHECKSUM_PARTIAL;
2778 skb->csum = 0;
2779 udp4_hwcsum(skb, udph->source, udph->dest);
2780 } else {
2781 __wsum csum = udp_csum(skb);
2782
2783 /* add protocol-dependent pseudo-header */
2784 udph->check = csum_tcpudp_magic(udph->source, udph->dest,
2785 datalen + 8, IPPROTO_UDP, csum);
2786
2787 if (udph->check == 0)
2788 udph->check = CSUM_MANGLED_0;
2789 }
2790
Eric Dumazet26ad7872011-01-25 13:26:05 -08002791 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002792
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002793#ifdef CONFIG_XFRM
2794 if (!process_ipsec(pkt_dev, skb, protocol))
2795 return NULL;
2796#endif
2797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 return skb;
2799}
2800
Luiz Capitulino222f1802006-03-20 22:16:13 -08002801static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2802 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803{
2804 struct sk_buff *skb = NULL;
2805 __u8 *eth;
2806 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002807 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002809 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002810 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002811 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2812 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2813 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2814 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002815 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002816
2817 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002818 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002819
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002820 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002821 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002822
Robert Olsson64053be2005-06-26 15:27:10 -07002823 /* Update any of the values, used when we're incrementing various
2824 * fields.
2825 */
2826 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002827 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002828
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002829 skb = pktgen_alloc_skb(odev, pkt_dev, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (!skb) {
2831 sprintf(pkt_dev->result, "No memory");
2832 return NULL;
2833 }
2834
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002835 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 skb_reserve(skb, 16);
2837
2838 /* Reserve for ethernet and IP header */
2839 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002840 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2841 if (pkt_dev->nr_labels)
2842 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002843
2844 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002845 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002846 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002847 *svlan_tci = build_tci(pkt_dev->svlan_id,
2848 pkt_dev->svlan_cfi,
2849 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002850 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002851 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002852 }
2853 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002854 *vlan_tci = build_tci(pkt_dev->vlan_id,
2855 pkt_dev->vlan_cfi,
2856 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002857 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002858 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002859 }
2860
Thomas Graf525cebe2013-06-03 11:49:23 +00002861 skb_set_mac_header(skb, 0);
2862 skb_set_network_header(skb, skb->len);
2863 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2864
2865 skb_set_transport_header(skb, skb->len);
2866 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002867 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002868 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002871 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002872
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002873 /* Eth + IPh + UDPh + mpls */
2874 datalen = pkt_dev->cur_pkt_size - 14 -
2875 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002876 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002878 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002880 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 }
2882
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002883 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 udph->source = htons(pkt_dev->cur_udp_src);
2885 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002886 udph->len = htons(udplen);
2887 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002889 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002891 if (pkt_dev->traffic_class) {
2892 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002893 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002894 }
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 iph->hop_limit = 32;
2897
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002898 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 iph->nexthdr = IPPROTO_UDP;
2900
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002901 iph->daddr = pkt_dev->cur_in6_daddr;
2902 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002904 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 skb->dev = odev;
2906 skb->pkt_type = PACKET_HOST;
2907
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002908 if (!(pkt_dev->flags & F_UDPCSUM)) {
2909 skb->ip_summed = CHECKSUM_NONE;
2910 } else if (odev->features & NETIF_F_V6_CSUM) {
2911 skb->ip_summed = CHECKSUM_PARTIAL;
2912 skb->csum_start = skb_transport_header(skb) - skb->head;
2913 skb->csum_offset = offsetof(struct udphdr, check);
2914 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2915 } else {
2916 __wsum csum = udp_csum(skb);
2917
2918 /* add protocol-dependent pseudo-header */
2919 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2920
2921 if (udph->check == 0)
2922 udph->check = CSUM_MANGLED_0;
2923 }
2924
Eric Dumazet26ad7872011-01-25 13:26:05 -08002925 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 return skb;
2928}
2929
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002930static struct sk_buff *fill_packet(struct net_device *odev,
2931 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002933 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 return fill_packet_ipv6(odev, pkt_dev);
2935 else
2936 return fill_packet_ipv4(odev, pkt_dev);
2937}
2938
Luiz Capitulino222f1802006-03-20 22:16:13 -08002939static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002941 pkt_dev->seq_num = 1;
2942 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002944 pkt_dev->tx_bytes = 0;
2945 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946}
2947
2948/* Set up structure for sending pkts, clear counters */
2949
2950static void pktgen_run(struct pktgen_thread *t)
2951{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002952 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 int started = 0;
2954
Joe Perchesf9467ea2010-06-21 12:29:14 +00002955 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
2957 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002958 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960 /*
2961 * setup odev and create initial packet.
2962 */
2963 pktgen_setup_inject(pkt_dev);
2964
Luiz Capitulino222f1802006-03-20 22:16:13 -08002965 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002967 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00002969 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002970
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002971 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 strcpy(pkt_dev->result, "Starting");
2974 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002975 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 strcpy(pkt_dev->result, "Error starting");
2977 }
2978 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002979 if (started)
2980 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
Cong Wang4e58a022013-01-28 19:55:53 +00002983static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002985 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Joe Perchesf9467ea2010-06-21 12:29:14 +00002987 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002989 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002990
Cong Wang4e58a022013-01-28 19:55:53 +00002991 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002992 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002993
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002994 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995}
2996
Stephen Hemminger648fda72009-08-27 13:55:07 +00002997static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002999 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003001 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00003002 if (pkt_dev->running)
3003 return 1;
3004 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005}
3006
Luiz Capitulino222f1802006-03-20 22:16:13 -08003007static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003009 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Luiz Capitulino222f1802006-03-20 22:16:13 -08003011 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Luiz Capitulino222f1802006-03-20 22:16:13 -08003013 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Luiz Capitulino222f1802006-03-20 22:16:13 -08003015 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Luiz Capitulino222f1802006-03-20 22:16:13 -08003017 if (signal_pending(current))
3018 goto signal;
3019 if_lock(t);
3020 }
3021 if_unlock(t);
3022 return 1;
3023signal:
3024 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
Cong Wang4e58a022013-01-28 19:55:53 +00003027static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003029 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003031
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003032 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003033
Cong Wang4e58a022013-01-28 19:55:53 +00003034 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003036 if (sig == 0)
3037 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003039
3040 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003041 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003043
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003044 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 return sig;
3046}
3047
Cong Wang4e58a022013-01-28 19:55:53 +00003048static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003050 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Joe Perchesf9467ea2010-06-21 12:29:14 +00003052 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003054 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Cong Wang4e58a022013-01-28 19:55:53 +00003056 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003058
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003059 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003061 /* Propagate thread->control */
3062 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003063
Cong Wang4e58a022013-01-28 19:55:53 +00003064 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065}
3066
Cong Wang4e58a022013-01-28 19:55:53 +00003067static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003068{
3069 struct pktgen_thread *t;
3070
Joe Perchesf9467ea2010-06-21 12:29:14 +00003071 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003072
3073 mutex_lock(&pktgen_thread_lock);
3074
Cong Wang4e58a022013-01-28 19:55:53 +00003075 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003076 t->control |= (T_REMDEVALL);
3077
3078 mutex_unlock(&pktgen_thread_lock);
3079
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003080 /* Propagate thread->control */
3081 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003082
Cong Wang4e58a022013-01-28 19:55:53 +00003083 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003084}
3085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3087{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003088 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003089 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003090 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3091 pkt_dev->started_at);
3092 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Daniel Turull03a14ab2011-03-09 14:11:00 -08003094 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003095 (unsigned long long)ktime_to_us(elapsed),
3096 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3097 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003098 (unsigned long long)pkt_dev->sofar,
3099 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003101 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3102 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Luiz Capitulino222f1802006-03-20 22:16:13 -08003104 bps = pps * 8 * pkt_dev->cur_pkt_size;
3105
3106 mbps = bps;
3107 do_div(mbps, 1000000);
3108 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3109 (unsigned long long)pps,
3110 (unsigned long long)mbps,
3111 (unsigned long long)bps,
3112 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
3115/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003116static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003118 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003119
Luiz Capitulino222f1802006-03-20 22:16:13 -08003120 if (!pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003121 pr_warning("interface: %s is already stopped\n",
3122 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003123 return -EINVAL;
3124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003126 kfree_skb(pkt_dev->skb);
3127 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003128 pkt_dev->stopped_at = ktime_get();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003129 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003131 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Luiz Capitulino222f1802006-03-20 22:16:13 -08003133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134}
3135
Luiz Capitulino222f1802006-03-20 22:16:13 -08003136static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003138 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 if_lock(t);
3141
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003142 list_for_each_entry(pkt_dev, &t->if_list, list) {
3143 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003144 continue;
3145 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003146 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003147 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003148 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 }
3150 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003151 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152}
3153
Luiz Capitulino222f1802006-03-20 22:16:13 -08003154static void pktgen_stop(struct pktgen_thread *t)
3155{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003156 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
Joe Perchesf9467ea2010-06-21 12:29:14 +00003158 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Luiz Capitulino222f1802006-03-20 22:16:13 -08003160 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003162 list_for_each_entry(pkt_dev, &t->if_list, list) {
3163 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
Luiz Capitulino222f1802006-03-20 22:16:13 -08003166 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167}
3168
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003169/*
3170 * one of our devices needs to be removed - find it
3171 * and remove it
3172 */
3173static void pktgen_rem_one_if(struct pktgen_thread *t)
3174{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003175 struct list_head *q, *n;
3176 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003177
Joe Perchesf9467ea2010-06-21 12:29:14 +00003178 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003179
3180 if_lock(t);
3181
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003182 list_for_each_safe(q, n, &t->if_list) {
3183 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003184
Luiz Capitulino222f1802006-03-20 22:16:13 -08003185 if (!cur->removal_mark)
3186 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003187
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003188 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003189 cur->skb = NULL;
3190
3191 pktgen_remove_device(t, cur);
3192
3193 break;
3194 }
3195
3196 if_unlock(t);
3197}
3198
Luiz Capitulino222f1802006-03-20 22:16:13 -08003199static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003201 struct list_head *q, *n;
3202 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003203
Joe Perchesf9467ea2010-06-21 12:29:14 +00003204 func_enter();
3205
Luiz Capitulino222f1802006-03-20 22:16:13 -08003206 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003207
Luiz Capitulino222f1802006-03-20 22:16:13 -08003208 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003210 list_for_each_safe(q, n, &t->if_list) {
3211 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003212
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003213 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003214 cur->skb = NULL;
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 pktgen_remove_device(t, cur);
3217 }
3218
Luiz Capitulino222f1802006-03-20 22:16:13 -08003219 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220}
3221
Luiz Capitulino222f1802006-03-20 22:16:13 -08003222static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003224 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003225 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226}
3227
Stephen Hemmingeref879792009-09-22 19:41:43 +00003228static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003229{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003230 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003231 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003232 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003233}
3234
Stephen Hemmingeref879792009-09-22 19:41:43 +00003235static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3236{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003237 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003238
3239 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3240 if (signal_pending(current))
3241 break;
3242
3243 if (need_resched())
3244 pktgen_resched(pkt_dev);
3245 else
3246 cpu_relax();
3247 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003248 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003249}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003250
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003251static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252{
Stephen Hemminger00829822008-11-20 20:14:53 -08003253 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003254 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003255 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003256 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003257 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 int ret;
3259
Stephen Hemmingeref879792009-09-22 19:41:43 +00003260 /* If device is offline, then don't send */
3261 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3262 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003263 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003265
Stephen Hemmingeref879792009-09-22 19:41:43 +00003266 /* This is max DELAY, this has special meaning of
3267 * "never transmit"
3268 */
3269 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003270 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003271 return;
3272 }
3273
3274 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003275 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3276 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3277 /* build a new pkt */
3278 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003279
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003280 pkt_dev->skb = fill_packet(odev, pkt_dev);
3281 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003282 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003283 schedule();
3284 pkt_dev->clone_count--; /* back out increment, OOM */
3285 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003287 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003288 pkt_dev->allocated_skbs++;
3289 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003291
Stephen Hemmingeref879792009-09-22 19:41:43 +00003292 if (pkt_dev->delay && pkt_dev->last_ok)
3293 spin(pkt_dev, pkt_dev->next_tx);
3294
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003295 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3296 txq = netdev_get_tx_queue(odev, queue_map);
3297
3298 __netif_tx_lock_bh(txq);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003299
Tom Herbert734664982011-11-28 16:32:44 +00003300 if (unlikely(netif_xmit_frozen_or_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003301 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003302 pkt_dev->last_ok = 0;
3303 goto unlock;
3304 }
3305 atomic_inc(&(pkt_dev->skb->users));
3306 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Stephen Hemmingeref879792009-09-22 19:41:43 +00003308 switch (ret) {
3309 case NETDEV_TX_OK:
3310 txq_trans_update(txq);
3311 pkt_dev->last_ok = 1;
3312 pkt_dev->sofar++;
3313 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003314 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003315 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003316 case NET_XMIT_DROP:
3317 case NET_XMIT_CN:
3318 case NET_XMIT_POLICED:
3319 /* skb has been consumed */
3320 pkt_dev->errors++;
3321 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003322 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003323 net_info_ratelimited("%s xmit error: %d\n",
3324 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003325 pkt_dev->errors++;
3326 /* fallthru */
3327 case NETDEV_TX_LOCKED:
3328 case NETDEV_TX_BUSY:
3329 /* Retry it next time */
3330 atomic_dec(&(pkt_dev->skb->users));
3331 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003332 }
Eric Dumazet0835acf2009-09-30 13:03:33 +00003333unlock:
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003334 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003335
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 /* If pkt_dev->count is zero, then run forever */
3337 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003338 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 /* Done with this */
3341 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003342 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003345/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 * Main loop of the thread goes here
3347 */
3348
David S. Milleree74baa2007-01-01 20:51:53 -08003349static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350{
3351 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003352 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003353 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
David S. Milleree74baa2007-01-01 20:51:53 -08003356 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
3358 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003359 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
Joe Perchesf9467ea2010-06-21 12:29:14 +00003361 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
David S. Milleree74baa2007-01-01 20:51:53 -08003363 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003364
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003365 set_freezable();
3366
David S. Milleree74baa2007-01-01 20:51:53 -08003367 while (!kthread_should_stop()) {
3368 pkt_dev = next_to_run(t);
3369
Stephen Hemmingeref879792009-09-22 19:41:43 +00003370 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003371 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003372 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003373 wait_event_interruptible_timeout(t->queue,
3374 t->control != 0,
3375 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003376 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003377 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003378 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 __set_current_state(TASK_RUNNING);
3381
Stephen Hemmingeref879792009-09-22 19:41:43 +00003382 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 pktgen_xmit(pkt_dev);
3384
Stephen Hemmingeref879792009-09-22 19:41:43 +00003385 if (need_resched())
3386 pktgen_resched(pkt_dev);
3387 else
3388 cpu_relax();
3389 }
3390
Luiz Capitulino222f1802006-03-20 22:16:13 -08003391 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 pktgen_stop(t);
3393 t->control &= ~(T_STOP);
3394 }
3395
Luiz Capitulino222f1802006-03-20 22:16:13 -08003396 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 pktgen_run(t);
3398 t->control &= ~(T_RUN);
3399 }
3400
Luiz Capitulino222f1802006-03-20 22:16:13 -08003401 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003403 t->control &= ~(T_REMDEVALL);
3404 }
3405
Luiz Capitulino222f1802006-03-20 22:16:13 -08003406 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003407 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 t->control &= ~(T_REMDEV);
3409 }
3410
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003411 try_to_freeze();
3412
David S. Milleree74baa2007-01-01 20:51:53 -08003413 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
Joe Perchesf9467ea2010-06-21 12:29:14 +00003416 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003417 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Joe Perchesf9467ea2010-06-21 12:29:14 +00003419 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003420 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Joe Perchesf9467ea2010-06-21 12:29:14 +00003422 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003423 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003424
Eric Dumazet551eaff2010-11-21 10:26:44 -08003425 /* Wait for kthread_stop */
3426 while (!kthread_should_stop()) {
3427 set_current_state(TASK_INTERRUPTIBLE);
3428 schedule();
3429 }
3430 __set_current_state(TASK_RUNNING);
3431
David S. Milleree74baa2007-01-01 20:51:53 -08003432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433}
3434
Luiz Capitulino222f1802006-03-20 22:16:13 -08003435static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003436 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003438 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003439 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Eric Dumazet3e984842009-11-24 14:50:53 -08003441 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003442 list_for_each_entry(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003443 if (strncmp(p->odevname, ifname, len) == 0) {
3444 if (p->odevname[len]) {
3445 if (exact || p->odevname[len] != '@')
3446 continue;
3447 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003448 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003449 break;
3450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Luiz Capitulino222f1802006-03-20 22:16:13 -08003452 if_unlock(t);
Joe Perchesf9467ea2010-06-21 12:29:14 +00003453 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003454 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455}
3456
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003457/*
3458 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 */
3460
Luiz Capitulino222f1802006-03-20 22:16:13 -08003461static int add_dev_to_thread(struct pktgen_thread *t,
3462 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463{
3464 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
Luiz Capitulino222f1802006-03-20 22:16:13 -08003466 if_lock(t);
3467
3468 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003469 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003470 rv = -EBUSY;
3471 goto out;
3472 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003473
3474 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003475 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 pkt_dev->running = 0;
3477
Luiz Capitulino222f1802006-03-20 22:16:13 -08003478out:
3479 if_unlock(t);
3480 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481}
3482
3483/* Called under thread lock */
3484
Luiz Capitulino222f1802006-03-20 22:16:13 -08003485static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003487 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003488 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003489 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 /* We don't allow a device to be on several threads */
3492
Cong Wang4e58a022013-01-28 19:55:53 +00003493 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003494 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003495 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003496 return -EBUSY;
3497 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003498
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003499 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003500 if (!pkt_dev)
3501 return -ENOMEM;
3502
Eric Dumazet593f63b2009-11-23 01:44:37 +00003503 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003504 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003505 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003506 if (pkt_dev->flows == NULL) {
3507 kfree(pkt_dev);
3508 return -ENOMEM;
3509 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003510
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003511 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003512 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003513 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003514 pkt_dev->count = pg_count_d;
3515 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003516 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003517 pkt_dev->udp_src_max = 9;
3518 pkt_dev->udp_dst_min = 9;
3519 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003520 pkt_dev->vlan_p = 0;
3521 pkt_dev->vlan_cfi = 0;
3522 pkt_dev->vlan_id = 0xffff;
3523 pkt_dev->svlan_p = 0;
3524 pkt_dev->svlan_cfi = 0;
3525 pkt_dev->svlan_id = 0xffff;
Robert Olssone99b99b2010-03-18 22:44:30 +00003526 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003527
Cong Wang4e58a022013-01-28 19:55:53 +00003528 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003529 if (err)
3530 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003531 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3532 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003533
Cong Wang4e58a022013-01-28 19:55:53 +00003534 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003535 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003536 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003537 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003538 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003539 err = -EINVAL;
3540 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003541 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003542#ifdef CONFIG_XFRM
3543 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3544 pkt_dev->ipsproto = IPPROTO_ESP;
3545#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003546
3547 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003548out2:
3549 dev_put(pkt_dev->odev);
3550out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003551#ifdef CONFIG_XFRM
3552 free_SAs(pkt_dev);
3553#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003554 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003555 kfree(pkt_dev);
3556 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557}
3558
Cong Wang4e58a022013-01-28 19:55:53 +00003559static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003561 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003562 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003563 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003565 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3566 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003567 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003568 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003569 return -ENOMEM;
3570 }
3571
Luiz Capitulino222f1802006-03-20 22:16:13 -08003572 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003574
David S. Milleree74baa2007-01-01 20:51:53 -08003575 INIT_LIST_HEAD(&t->if_list);
3576
Cong Wang4e58a022013-01-28 19:55:53 +00003577 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003578 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003579
Eric Dumazet94dcf292011-03-22 16:30:45 -07003580 p = kthread_create_on_node(pktgen_thread_worker,
3581 t,
3582 cpu_to_node(cpu),
3583 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003584 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003585 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003586 list_del(&t->th_list);
3587 kfree(t);
3588 return PTR_ERR(p);
3589 }
3590 kthread_bind(p, cpu);
3591 t->tsk = p;
3592
Cong Wang4e58a022013-01-28 19:55:53 +00003593 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003594 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003595 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003596 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003597 PG_PROC_DIR, t->tsk->comm);
3598 kthread_stop(p);
3599 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003600 kfree(t);
3601 return -EINVAL;
3602 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003603
Cong Wang4e58a022013-01-28 19:55:53 +00003604 t->net = pn;
David S. Milleree74baa2007-01-01 20:51:53 -08003605 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003606 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
3608 return 0;
3609}
3610
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003611/*
3612 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003614static void _rem_dev_from_if_list(struct pktgen_thread *t,
3615 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003617 struct list_head *q, *n;
3618 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003620 list_for_each_safe(q, n, &t->if_list) {
3621 p = list_entry(q, struct pktgen_dev, list);
3622 if (p == pkt_dev)
3623 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 }
3625}
3626
Luiz Capitulino222f1802006-03-20 22:16:13 -08003627static int pktgen_remove_device(struct pktgen_thread *t,
3628 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003630 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Luiz Capitulino222f1802006-03-20 22:16:13 -08003632 if (pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003633 pr_warning("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003634 pktgen_stop_device(pkt_dev);
3635 }
3636
3637 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
3639 if (pkt_dev->odev) {
3640 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003641 pkt_dev->odev = NULL;
3642 }
3643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 /* And update the thread if_list */
3645
3646 _rem_dev_from_if_list(t, pkt_dev);
3647
Stephen Hemminger39df2322007-03-04 16:11:51 -08003648 if (pkt_dev->entry)
David Howellsa8ca16e2013-04-12 17:27:28 +01003649 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003651#ifdef CONFIG_XFRM
3652 free_SAs(pkt_dev);
3653#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003654 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003655 if (pkt_dev->page)
3656 put_page(pkt_dev->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003658 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659}
3660
Cong Wang4e58a022013-01-28 19:55:53 +00003661static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662{
Cong Wang4e58a022013-01-28 19:55:53 +00003663 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003664 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003665 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003666
Cong Wang4e58a022013-01-28 19:55:53 +00003667 pn->net = net;
3668 INIT_LIST_HEAD(&pn->pktgen_threads);
3669 pn->pktgen_exiting = false;
3670 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3671 if (!pn->proc_dir) {
3672 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003673 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003674 }
Cong Wang4e58a022013-01-28 19:55:53 +00003675 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3676 if (pe == NULL) {
3677 pr_err("cannot create %s procfs entry\n", PGCTRL);
3678 ret = -EINVAL;
3679 goto remove;
3680 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003681
John Hawkes670c02c2005-10-13 09:30:31 -07003682 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003683 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
Cong Wang4e58a022013-01-28 19:55:53 +00003685 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003686 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003687 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003688 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003689 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003690
Cong Wang4e58a022013-01-28 19:55:53 +00003691 if (list_empty(&pn->pktgen_threads)) {
3692 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003693 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003694 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003695 }
3696
Luiz Capitulino222f1802006-03-20 22:16:13 -08003697 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003698
Cong Wang4e58a022013-01-28 19:55:53 +00003699remove_entry:
3700 remove_proc_entry(PGCTRL, pn->proc_dir);
3701remove:
Gao fengece31ff2013-02-18 01:34:56 +00003702 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003703 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704}
3705
Cong Wang4e58a022013-01-28 19:55:53 +00003706static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707{
Cong Wang4e58a022013-01-28 19:55:53 +00003708 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003709 struct pktgen_thread *t;
3710 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003711 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Luiz Capitulino222f1802006-03-20 22:16:13 -08003713 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003714 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
Eric Dumazetc57b5462012-05-09 13:29:51 +00003716 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003717 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003718 mutex_unlock(&pktgen_thread_lock);
3719
3720 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003721 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003722 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003723 kthread_stop(t->tsk);
3724 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Cong Wang4e58a022013-01-28 19:55:53 +00003727 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003728 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003729}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
Cong Wang4e58a022013-01-28 19:55:53 +00003731static struct pernet_operations pg_net_ops = {
3732 .init = pg_net_init,
3733 .exit = pg_net_exit,
3734 .id = &pg_net_id,
3735 .size = sizeof(struct pktgen_net),
3736};
3737
3738static int __init pg_init(void)
3739{
3740 int ret = 0;
3741
3742 pr_info("%s", version);
3743 ret = register_pernet_subsys(&pg_net_ops);
3744 if (ret)
3745 return ret;
3746 ret = register_netdevice_notifier(&pktgen_notifier_block);
3747 if (ret)
3748 unregister_pernet_subsys(&pg_net_ops);
3749
3750 return ret;
3751}
3752
3753static void __exit pg_cleanup(void)
3754{
3755 unregister_netdevice_notifier(&pktgen_notifier_block);
3756 unregister_pernet_subsys(&pg_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757}
3758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759module_init(pg_init);
3760module_exit(pg_cleanup);
3761
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003762MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763MODULE_DESCRIPTION("Packet Generator tool");
3764MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003765MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003767MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003769MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003771MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003773MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");