blob: a37ec53c554c6b52203e4fe6ec02255e7c15e064 [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 Viro252e33462006-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 Viro252e33462006-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 Viro252e33462006-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) */
Fan Dude4aee72014-01-03 11:18:30 +0800392 __u32 spi;
Fan Ducf93d47e2014-01-03 11:18:31 +0800393 struct dst_entry dst;
394 struct dst_ops dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700395#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800396 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397};
398
399struct pktgen_hdr {
Al Viro252e33462006-11-14 20:48:11 -0800400 __be32 pgh_magic;
401 __be32 seq_num;
402 __be32 tv_sec;
403 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404};
405
Cong Wang4e58a022013-01-28 19:55:53 +0000406
407static int pg_net_id __read_mostly;
408
409struct pktgen_net {
410 struct net *net;
411 struct proc_dir_entry *proc_dir;
412 struct list_head pktgen_threads;
413 bool pktgen_exiting;
414};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000417 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800418 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800419 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800420 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800421 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000423 /* Field for thread to receive "posted" events terminate,
424 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800425
426 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 int cpu;
428
Luiz Capitulino222f1802006-03-20 22:16:13 -0800429 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700430 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000431 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432};
433
434#define REMOVE 1
435#define FIND 0
436
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000437static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000438 "Packet Generator for packet performance testing. "
439 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Luiz Capitulino222f1802006-03-20 22:16:13 -0800441static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
442static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
443static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800444 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000446static void pktgen_run_all_threads(struct pktgen_net *pn);
447static void pktgen_reset_all_threads(struct pktgen_net *pn);
448static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000449
Luiz Capitulino222f1802006-03-20 22:16:13 -0800450static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000454static int pg_count_d __read_mostly = 1000;
455static int pg_delay_d __read_mostly;
456static int pg_clone_skb_d __read_mostly;
457static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Luiz Capitulino222fa072006-03-20 22:24:27 -0800459static DEFINE_MUTEX(pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461static struct notifier_block pktgen_notifier_block = {
462 .notifier_call = pktgen_device_event,
463};
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900466 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 *
468 */
469
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700470static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800471{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000472 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000476static ssize_t pgctrl_write(struct file *file, const char __user *buf,
477 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700480 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000481 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Luiz Capitulino222f1802006-03-20 22:16:13 -0800483 if (!capable(CAP_NET_ADMIN)) {
484 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700488 if (count > sizeof(data))
489 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700492 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700493 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800494 }
495 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Luiz Capitulino222f1802006-03-20 22:16:13 -0800497 if (!strcmp(data, "stop"))
Cong Wang4e58a022013-01-28 19:55:53 +0000498 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Luiz Capitulino222f1802006-03-20 22:16:13 -0800500 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000501 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800503 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000504 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800505
Luiz Capitulino222f1802006-03-20 22:16:13 -0800506 else
Joe Perchesf9467ea2010-06-21 12:29:14 +0000507 pr_warning("Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 err = count;
510
Luiz Capitulino222f1802006-03-20 22:16:13 -0800511out:
512 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700515static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Al Virod9dda782013-03-31 18:16:14 -0400517 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700518}
519
Arjan van de Ven9a321442007-02-12 00:55:35 -0800520static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800521 .owner = THIS_MODULE,
522 .open = pgctrl_open,
523 .read = seq_read,
524 .llseek = seq_lseek,
525 .write = pgctrl_write,
526 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700527};
528
529static int pktgen_if_show(struct seq_file *seq, void *v)
530{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000531 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000532 ktime_t stopped;
533 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Luiz Capitulino222f1802006-03-20 22:16:13 -0800535 seq_printf(seq,
536 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
537 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
538 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Luiz Capitulino222f1802006-03-20 22:16:13 -0800540 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000541 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
542 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000543 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Luiz Capitulino222f1802006-03-20 22:16:13 -0800545 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
546 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Robert Olsson45b270f2007-08-28 15:45:55 -0700548 seq_printf(seq,
549 " queue_map_min: %u queue_map_max: %u\n",
550 pkt_dev->queue_map_min,
551 pkt_dev->queue_map_max);
552
John Fastabend9e50e3a2010-11-16 19:12:28 +0000553 if (pkt_dev->skb_priority)
554 seq_printf(seq, " skb_priority: %u\n",
555 pkt_dev->skb_priority);
556
Luiz Capitulino222f1802006-03-20 22:16:13 -0800557 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800558 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000559 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
560 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
561 &pkt_dev->in6_saddr,
562 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
563 &pkt_dev->in6_daddr,
564 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000565 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800566 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000567 " dst_min: %s dst_max: %s\n",
568 pkt_dev->dst_min, pkt_dev->dst_max);
569 seq_printf(seq,
570 " src_min: %s src_max: %s\n",
571 pkt_dev->src_min, pkt_dev->src_max);
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700574 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Johannes Berge1749612008-10-27 15:59:26 -0700576 seq_printf(seq, "%pM ",
577 is_zero_ether_addr(pkt_dev->src_mac) ?
578 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Luiz Capitulino222f1802006-03-20 22:16:13 -0800580 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700581 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Luiz Capitulino222f1802006-03-20 22:16:13 -0800583 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000584 " udp_src_min: %d udp_src_max: %d"
585 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800586 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
587 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Luiz Capitulino222f1802006-03-20 22:16:13 -0800589 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800590 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700591 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800593 if (pkt_dev->nr_labels) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000594 unsigned int i;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800595 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700596 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800597 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
598 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
599 }
600
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000601 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700602 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000603 pkt_dev->vlan_id, pkt_dev->vlan_p,
604 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700605
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000606 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700607 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000608 pkt_dev->svlan_id, pkt_dev->svlan_p,
609 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700610
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000611 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700612 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700613
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000614 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700615 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700616
Robert Olssone99b99b2010-03-18 22:44:30 +0000617 if (pkt_dev->node >= 0)
618 seq_printf(seq, " node: %d\n", pkt_dev->node);
619
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800620 seq_printf(seq, " Flags: ");
621
Luiz Capitulino222f1802006-03-20 22:16:13 -0800622 if (pkt_dev->flags & F_IPV6)
623 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Luiz Capitulino222f1802006-03-20 22:16:13 -0800625 if (pkt_dev->flags & F_IPSRC_RND)
626 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Luiz Capitulino222f1802006-03-20 22:16:13 -0800628 if (pkt_dev->flags & F_IPDST_RND)
629 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Luiz Capitulino222f1802006-03-20 22:16:13 -0800631 if (pkt_dev->flags & F_TXSIZE_RND)
632 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Luiz Capitulino222f1802006-03-20 22:16:13 -0800634 if (pkt_dev->flags & F_UDPSRC_RND)
635 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Luiz Capitulino222f1802006-03-20 22:16:13 -0800637 if (pkt_dev->flags & F_UDPDST_RND)
638 seq_printf(seq, "UDPDST_RND ");
639
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200640 if (pkt_dev->flags & F_UDPCSUM)
641 seq_printf(seq, "UDPCSUM ");
642
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800643 if (pkt_dev->flags & F_MPLS_RND)
644 seq_printf(seq, "MPLS_RND ");
645
Robert Olsson45b270f2007-08-28 15:45:55 -0700646 if (pkt_dev->flags & F_QUEUE_MAP_RND)
647 seq_printf(seq, "QUEUE_MAP_RND ");
648
Robert Olssone6fce5b2008-08-07 02:23:01 -0700649 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
650 seq_printf(seq, "QUEUE_MAP_CPU ");
651
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700652 if (pkt_dev->cflows) {
653 if (pkt_dev->flags & F_FLOW_SEQ)
654 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
655 else
656 seq_printf(seq, "FLOW_RND ");
657 }
658
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700659#ifdef CONFIG_XFRM
Fan Du81013282014-01-03 11:18:33 +0800660 if (pkt_dev->flags & F_IPSEC_ON) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700661 seq_printf(seq, "IPSEC ");
Fan Du81013282014-01-03 11:18:33 +0800662 if (pkt_dev->spi)
663 seq_printf(seq, "spi:%u", pkt_dev->spi);
664 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700665#endif
666
Luiz Capitulino222f1802006-03-20 22:16:13 -0800667 if (pkt_dev->flags & F_MACSRC_RND)
668 seq_printf(seq, "MACSRC_RND ");
669
670 if (pkt_dev->flags & F_MACDST_RND)
671 seq_printf(seq, "MACDST_RND ");
672
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700673 if (pkt_dev->flags & F_VID_RND)
674 seq_printf(seq, "VID_RND ");
675
676 if (pkt_dev->flags & F_SVID_RND)
677 seq_printf(seq, "SVID_RND ");
678
Robert Olssone99b99b2010-03-18 22:44:30 +0000679 if (pkt_dev->flags & F_NODE)
680 seq_printf(seq, "NODE_ALLOC ");
681
Luiz Capitulino222f1802006-03-20 22:16:13 -0800682 seq_puts(seq, "\n");
683
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000684 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000685 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000686 idle = pkt_dev->idle_acc;
687 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800688
689 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000690 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800691 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000692 (unsigned long long)pkt_dev->errors);
693
694 seq_printf(seq,
695 " started: %lluus stopped: %lluus idle: %lluus\n",
696 (unsigned long long) ktime_to_us(pkt_dev->started_at),
697 (unsigned long long) ktime_to_us(stopped),
698 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800699
700 seq_printf(seq,
701 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700702 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
703 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Luiz Capitulino222f1802006-03-20 22:16:13 -0800705 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000706 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
707 &pkt_dev->cur_in6_saddr,
708 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800709 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000710 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
711 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Luiz Capitulino222f1802006-03-20 22:16:13 -0800713 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700714 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Robert Olsson45b270f2007-08-28 15:45:55 -0700716 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
717
Luiz Capitulino222f1802006-03-20 22:16:13 -0800718 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800721 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800723 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700725 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800728
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000729static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
730 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800731{
732 int i = 0;
733 *num = 0;
734
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700735 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000736 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800737 char c;
738 *num <<= 4;
739 if (get_user(c, &user_buffer[i]))
740 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000741 value = hex_to_bin(c);
742 if (value >= 0)
743 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800744 else
745 break;
746 }
747 return i;
748}
749
Luiz Capitulino222f1802006-03-20 22:16:13 -0800750static int count_trail_chars(const char __user * user_buffer,
751 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 int i;
754
755 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800756 char c;
757 if (get_user(c, &user_buffer[i]))
758 return -EFAULT;
759 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 case '\"':
761 case '\n':
762 case '\r':
763 case '\t':
764 case ' ':
765 case '=':
766 break;
767 default:
768 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771done:
772 return i;
773}
774
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000775static long num_arg(const char __user *user_buffer, unsigned long maxlen,
776 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000778 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800780
Paul Gortmakerd6182222010-10-18 12:14:44 +0000781 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800782 char c;
783 if (get_user(c, &user_buffer[i]))
784 return -EFAULT;
785 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800787 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 } else
789 break;
790 }
791 return i;
792}
793
Luiz Capitulino222f1802006-03-20 22:16:13 -0800794static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000796 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Paul Gortmakerd6182222010-10-18 12:14:44 +0000798 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800799 char c;
800 if (get_user(c, &user_buffer[i]))
801 return -EFAULT;
802 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 case '\"':
804 case '\n':
805 case '\r':
806 case '\t':
807 case ' ':
808 goto done_str;
809 break;
810 default:
811 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return i;
816}
817
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800818static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
819{
Eric Dumazet95c96172012-04-15 05:58:06 +0000820 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800821 char c;
822 ssize_t i = 0;
823 int len;
824
825 pkt_dev->nr_labels = 0;
826 do {
827 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700828 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800829 if (len <= 0)
830 return len;
831 pkt_dev->labels[n] = htonl(tmp);
832 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
833 pkt_dev->flags |= F_MPLS_RND;
834 i += len;
835 if (get_user(c, &buffer[i]))
836 return -EFAULT;
837 i++;
838 n++;
839 if (n >= MAX_MPLS_LABELS)
840 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700841 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800842
843 pkt_dev->nr_labels = n;
844 return i;
845}
846
Luiz Capitulino222f1802006-03-20 22:16:13 -0800847static ssize_t pktgen_if_write(struct file *file,
848 const char __user * user_buffer, size_t count,
849 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Joe Perches8a994a72010-07-12 10:50:23 +0000851 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800852 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000853 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 char name[16], valstr[32];
855 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800856 char *pg_result = NULL;
857 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800859
860 pg_result = &(pkt_dev->result[0]);
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (count < 1) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000863 pr_warning("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return -EINVAL;
865 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800866
Paul Gortmakerd6182222010-10-18 12:14:44 +0000867 max = count;
868 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800869 if (tmp < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000870 pr_warning("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800871 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000873 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* Read variable name */
876
877 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000878 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800882 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return -EFAULT;
884 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800885
886 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800888 if (len < 0)
889 return len;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 i += len;
892
893 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000894 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700895 char tb[copy + 1];
896 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700898 tb[copy] = 0;
Joe Perchesf342cda2012-05-16 17:50:41 +0000899 pr_debug("%s,%lu buffer -:%s:-\n",
900 name, (unsigned long)count, tb);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 if (!strcmp(name, "min_pkt_size")) {
904 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000905 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800906 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800909 if (value < 14 + 20 + 8)
910 value = 14 + 20 + 8;
911 if (value != pkt_dev->min_pkt_size) {
912 pkt_dev->min_pkt_size = value;
913 pkt_dev->cur_pkt_size = value;
914 }
915 sprintf(pg_result, "OK: min_pkt_size=%u",
916 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return count;
918 }
919
Luiz Capitulino222f1802006-03-20 22:16:13 -0800920 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000922 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800923 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800926 if (value < 14 + 20 + 8)
927 value = 14 + 20 + 8;
928 if (value != pkt_dev->max_pkt_size) {
929 pkt_dev->max_pkt_size = value;
930 pkt_dev->cur_pkt_size = value;
931 }
932 sprintf(pg_result, "OK: max_pkt_size=%u",
933 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return count;
935 }
936
Luiz Capitulino222f1802006-03-20 22:16:13 -0800937 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (!strcmp(name, "pkt_size")) {
940 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000941 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800942 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800945 if (value < 14 + 20 + 8)
946 value = 14 + 20 + 8;
947 if (value != pkt_dev->min_pkt_size) {
948 pkt_dev->min_pkt_size = value;
949 pkt_dev->max_pkt_size = value;
950 pkt_dev->cur_pkt_size = value;
951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
953 return count;
954 }
955
Luiz Capitulino222f1802006-03-20 22:16:13 -0800956 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000958 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800959 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800962 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 sprintf(pg_result, "OK: debug=%u", debug);
964 return count;
965 }
966
Luiz Capitulino222f1802006-03-20 22:16:13 -0800967 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000969 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800970 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 i += len;
973 pkt_dev->nfrags = value;
974 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
975 return count;
976 }
977 if (!strcmp(name, "delay")) {
978 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000979 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800980 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000983 if (value == 0x7FFFFFFF)
984 pkt_dev->delay = ULLONG_MAX;
985 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000986 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000987
988 sprintf(pg_result, "OK: delay=%llu",
989 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return count;
991 }
Daniel Turull43d28b62010-06-09 22:49:57 +0000992 if (!strcmp(name, "rate")) {
993 len = num_arg(&user_buffer[i], 10, &value);
994 if (len < 0)
995 return len;
996
997 i += len;
998 if (!value)
999 return len;
1000 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
1001 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001002 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001003
1004 sprintf(pg_result, "OK: rate=%lu", value);
1005 return count;
1006 }
1007 if (!strcmp(name, "ratep")) {
1008 len = num_arg(&user_buffer[i], 10, &value);
1009 if (len < 0)
1010 return len;
1011
1012 i += len;
1013 if (!value)
1014 return len;
1015 pkt_dev->delay = NSEC_PER_SEC/value;
1016 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001017 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001018
1019 sprintf(pg_result, "OK: rate=%lu", value);
1020 return count;
1021 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001022 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001024 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001025 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001028 if (value != pkt_dev->udp_src_min) {
1029 pkt_dev->udp_src_min = value;
1030 pkt_dev->cur_udp_src = value;
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1033 return count;
1034 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001035 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001037 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001038 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001041 if (value != pkt_dev->udp_dst_min) {
1042 pkt_dev->udp_dst_min = value;
1043 pkt_dev->cur_udp_dst = value;
1044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1046 return count;
1047 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001048 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001050 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001051 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001054 if (value != pkt_dev->udp_src_max) {
1055 pkt_dev->udp_src_max = value;
1056 pkt_dev->cur_udp_src = value;
1057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1059 return count;
1060 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001063 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001064 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001067 if (value != pkt_dev->udp_dst_max) {
1068 pkt_dev->udp_dst_max = value;
1069 pkt_dev->cur_udp_dst = value;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1072 return count;
1073 }
1074 if (!strcmp(name, "clone_skb")) {
1075 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001076 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001077 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001078 if ((value > 0) &&
1079 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
1080 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001082 pkt_dev->clone_skb = value;
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1085 return count;
1086 }
1087 if (!strcmp(name, "count")) {
1088 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001089 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001090 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 i += len;
1093 pkt_dev->count = value;
1094 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001095 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return count;
1097 }
1098 if (!strcmp(name, "src_mac_count")) {
1099 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001100 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001101 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 i += len;
1104 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001105 pkt_dev->src_mac_count = value;
1106 pkt_dev->cur_src_mac_offset = 0;
1107 }
1108 sprintf(pg_result, "OK: src_mac_count=%d",
1109 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return count;
1111 }
1112 if (!strcmp(name, "dst_mac_count")) {
1113 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001114 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001115 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 i += len;
1118 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001119 pkt_dev->dst_mac_count = value;
1120 pkt_dev->cur_dst_mac_offset = 0;
1121 }
1122 sprintf(pg_result, "OK: dst_mac_count=%d",
1123 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return count;
1125 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001126 if (!strcmp(name, "node")) {
1127 len = num_arg(&user_buffer[i], 10, &value);
1128 if (len < 0)
1129 return len;
1130
1131 i += len;
1132
1133 if (node_possible(value)) {
1134 pkt_dev->node = value;
1135 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001136 if (pkt_dev->page) {
1137 put_page(pkt_dev->page);
1138 pkt_dev->page = NULL;
1139 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001140 }
1141 else
1142 sprintf(pg_result, "ERROR: node not possible");
1143 return count;
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001146 char f[32];
1147 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001149 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001150 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (copy_from_user(f, &user_buffer[i], len))
1153 return -EFAULT;
1154 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001155 if (strcmp(f, "IPSRC_RND") == 0)
1156 pkt_dev->flags |= F_IPSRC_RND;
1157
1158 else if (strcmp(f, "!IPSRC_RND") == 0)
1159 pkt_dev->flags &= ~F_IPSRC_RND;
1160
1161 else if (strcmp(f, "TXSIZE_RND") == 0)
1162 pkt_dev->flags |= F_TXSIZE_RND;
1163
1164 else if (strcmp(f, "!TXSIZE_RND") == 0)
1165 pkt_dev->flags &= ~F_TXSIZE_RND;
1166
1167 else if (strcmp(f, "IPDST_RND") == 0)
1168 pkt_dev->flags |= F_IPDST_RND;
1169
1170 else if (strcmp(f, "!IPDST_RND") == 0)
1171 pkt_dev->flags &= ~F_IPDST_RND;
1172
1173 else if (strcmp(f, "UDPSRC_RND") == 0)
1174 pkt_dev->flags |= F_UDPSRC_RND;
1175
1176 else if (strcmp(f, "!UDPSRC_RND") == 0)
1177 pkt_dev->flags &= ~F_UDPSRC_RND;
1178
1179 else if (strcmp(f, "UDPDST_RND") == 0)
1180 pkt_dev->flags |= F_UDPDST_RND;
1181
1182 else if (strcmp(f, "!UDPDST_RND") == 0)
1183 pkt_dev->flags &= ~F_UDPDST_RND;
1184
1185 else if (strcmp(f, "MACSRC_RND") == 0)
1186 pkt_dev->flags |= F_MACSRC_RND;
1187
1188 else if (strcmp(f, "!MACSRC_RND") == 0)
1189 pkt_dev->flags &= ~F_MACSRC_RND;
1190
1191 else if (strcmp(f, "MACDST_RND") == 0)
1192 pkt_dev->flags |= F_MACDST_RND;
1193
1194 else if (strcmp(f, "!MACDST_RND") == 0)
1195 pkt_dev->flags &= ~F_MACDST_RND;
1196
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001197 else if (strcmp(f, "MPLS_RND") == 0)
1198 pkt_dev->flags |= F_MPLS_RND;
1199
1200 else if (strcmp(f, "!MPLS_RND") == 0)
1201 pkt_dev->flags &= ~F_MPLS_RND;
1202
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001203 else if (strcmp(f, "VID_RND") == 0)
1204 pkt_dev->flags |= F_VID_RND;
1205
1206 else if (strcmp(f, "!VID_RND") == 0)
1207 pkt_dev->flags &= ~F_VID_RND;
1208
1209 else if (strcmp(f, "SVID_RND") == 0)
1210 pkt_dev->flags |= F_SVID_RND;
1211
1212 else if (strcmp(f, "!SVID_RND") == 0)
1213 pkt_dev->flags &= ~F_SVID_RND;
1214
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001215 else if (strcmp(f, "FLOW_SEQ") == 0)
1216 pkt_dev->flags |= F_FLOW_SEQ;
1217
Robert Olsson45b270f2007-08-28 15:45:55 -07001218 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1219 pkt_dev->flags |= F_QUEUE_MAP_RND;
1220
1221 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1222 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001223
1224 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1225 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1226
1227 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1228 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001229#ifdef CONFIG_XFRM
1230 else if (strcmp(f, "IPSEC") == 0)
1231 pkt_dev->flags |= F_IPSEC_ON;
1232#endif
1233
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001234 else if (strcmp(f, "!IPV6") == 0)
1235 pkt_dev->flags &= ~F_IPV6;
1236
Robert Olssone99b99b2010-03-18 22:44:30 +00001237 else if (strcmp(f, "NODE_ALLOC") == 0)
1238 pkt_dev->flags |= F_NODE;
1239
1240 else if (strcmp(f, "!NODE_ALLOC") == 0)
1241 pkt_dev->flags &= ~F_NODE;
1242
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001243 else if (strcmp(f, "UDPCSUM") == 0)
1244 pkt_dev->flags |= F_UDPCSUM;
1245
1246 else if (strcmp(f, "!UDPCSUM") == 0)
1247 pkt_dev->flags &= ~F_UDPCSUM;
1248
Luiz Capitulino222f1802006-03-20 22:16:13 -08001249 else {
1250 sprintf(pg_result,
1251 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1252 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001253 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Robert Olssone99b99b2010-03-18 22:44:30 +00001254 "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 -08001255 return count;
1256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1258 return count;
1259 }
1260 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1261 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001262 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001263 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Luiz Capitulino222f1802006-03-20 22:16:13 -08001265 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001267 buf[len] = 0;
1268 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1269 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1270 strncpy(pkt_dev->dst_min, buf, len);
1271 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1272 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1273 }
1274 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001275 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001276 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1278 return count;
1279 }
1280 if (!strcmp(name, "dst_max")) {
1281 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001282 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001283 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Luiz Capitulino222f1802006-03-20 22:16:13 -08001286 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return -EFAULT;
1288
Luiz Capitulino222f1802006-03-20 22:16:13 -08001289 buf[len] = 0;
1290 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1291 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1292 strncpy(pkt_dev->dst_max, buf, len);
1293 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1294 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1295 }
1296 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001297 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 i += len;
1299 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1300 return count;
1301 }
1302 if (!strcmp(name, "dst6")) {
1303 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001304 if (len < 0)
1305 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 pkt_dev->flags |= F_IPV6;
1308
Luiz Capitulino222f1802006-03-20 22:16:13 -08001309 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001311 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Amerigo Wangc468fb12012-10-09 17:48:20 +00001313 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001314 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001316 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Luiz Capitulino222f1802006-03-20 22:16:13 -08001318 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001319 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Luiz Capitulino222f1802006-03-20 22:16:13 -08001321 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 sprintf(pg_result, "OK: dst6=%s", buf);
1323 return count;
1324 }
1325 if (!strcmp(name, "dst6_min")) {
1326 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001327 if (len < 0)
1328 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 pkt_dev->flags |= F_IPV6;
1331
Luiz Capitulino222f1802006-03-20 22:16:13 -08001332 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001334 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Amerigo Wangc468fb12012-10-09 17:48:20 +00001336 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001337 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001339 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001340 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001341 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 sprintf(pg_result, "OK: dst6_min=%s", buf);
1345 return count;
1346 }
1347 if (!strcmp(name, "dst6_max")) {
1348 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001349 if (len < 0)
1350 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 pkt_dev->flags |= F_IPV6;
1353
Luiz Capitulino222f1802006-03-20 22:16:13 -08001354 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001356 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Amerigo Wangc468fb12012-10-09 17:48:20 +00001358 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001359 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Luiz Capitulino222f1802006-03-20 22:16:13 -08001361 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001362 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Luiz Capitulino222f1802006-03-20 22:16:13 -08001364 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 sprintf(pg_result, "OK: dst6_max=%s", buf);
1366 return count;
1367 }
1368 if (!strcmp(name, "src6")) {
1369 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001370 if (len < 0)
1371 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 pkt_dev->flags |= F_IPV6;
1374
Luiz Capitulino222f1802006-03-20 22:16:13 -08001375 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001377 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Amerigo Wangc468fb12012-10-09 17:48:20 +00001379 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001380 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001382 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Luiz Capitulino222f1802006-03-20 22:16:13 -08001384 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001385 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001386
1387 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 sprintf(pg_result, "OK: src6=%s", buf);
1389 return count;
1390 }
1391 if (!strcmp(name, "src_min")) {
1392 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001393 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001394 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001395
Luiz Capitulino222f1802006-03-20 22:16:13 -08001396 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001398 buf[len] = 0;
1399 if (strcmp(buf, pkt_dev->src_min) != 0) {
1400 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1401 strncpy(pkt_dev->src_min, buf, len);
1402 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1403 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1404 }
1405 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001406 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 i += len;
1408 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1409 return count;
1410 }
1411 if (!strcmp(name, "src_max")) {
1412 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001413 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001414 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001415
Luiz Capitulino222f1802006-03-20 22:16:13 -08001416 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001418 buf[len] = 0;
1419 if (strcmp(buf, pkt_dev->src_max) != 0) {
1420 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1421 strncpy(pkt_dev->src_max, buf, len);
1422 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1423 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1424 }
1425 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001426 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 i += len;
1428 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1429 return count;
1430 }
1431 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001433 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001434 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001437 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001440 if (!mac_pton(valstr, pkt_dev->dst_mac))
1441 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 /* Set up Dest MAC */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001443 memcpy(&pkt_dev->hh[0], pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001444
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001445 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return count;
1447 }
1448 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001450 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001451 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001454 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001457 if (!mac_pton(valstr, pkt_dev->src_mac))
1458 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001459 /* Set up Src MAC */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001460 memcpy(&pkt_dev->hh[6], pkt_dev->src_mac, ETH_ALEN);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001461
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001462 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return count;
1464 }
1465
Luiz Capitulino222f1802006-03-20 22:16:13 -08001466 if (!strcmp(name, "clear_counters")) {
1467 pktgen_clear_counters(pkt_dev);
1468 sprintf(pg_result, "OK: Clearing counters.\n");
1469 return count;
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 if (!strcmp(name, "flows")) {
1473 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001474 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001475 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 i += len;
1478 if (value > MAX_CFLOWS)
1479 value = MAX_CFLOWS;
1480
1481 pkt_dev->cflows = value;
1482 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1483 return count;
1484 }
1485
Fan Dude4aee72014-01-03 11:18:30 +08001486 if (!strcmp(name, "spi")) {
1487 len = num_arg(&user_buffer[i], 10, &value);
1488 if (len < 0)
1489 return len;
1490
1491 i += len;
1492 pkt_dev->spi = value;
1493 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1494 return count;
1495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (!strcmp(name, "flowlen")) {
1498 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001499 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001500 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 i += len;
1503 pkt_dev->lflow = value;
1504 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1505 return count;
1506 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001507
Robert Olsson45b270f2007-08-28 15:45:55 -07001508 if (!strcmp(name, "queue_map_min")) {
1509 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001510 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001511 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001512
Robert Olsson45b270f2007-08-28 15:45:55 -07001513 i += len;
1514 pkt_dev->queue_map_min = value;
1515 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1516 return count;
1517 }
1518
1519 if (!strcmp(name, "queue_map_max")) {
1520 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001521 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001522 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001523
Robert Olsson45b270f2007-08-28 15:45:55 -07001524 i += len;
1525 pkt_dev->queue_map_max = value;
1526 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1527 return count;
1528 }
1529
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001530 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001531 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001532
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001533 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001534 if (len < 0)
1535 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001536 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001537 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001538 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001539 cnt += sprintf(pg_result + cnt,
1540 "%08x%s", ntohl(pkt_dev->labels[n]),
1541 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001542
1543 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1544 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1545 pkt_dev->svlan_id = 0xffff;
1546
1547 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001548 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001549 }
1550 return count;
1551 }
1552
1553 if (!strcmp(name, "vlan_id")) {
1554 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001555 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001556 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001557
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001558 i += len;
1559 if (value <= 4095) {
1560 pkt_dev->vlan_id = value; /* turn on VLAN */
1561
1562 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001563 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001564
1565 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001566 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001567
1568 pkt_dev->nr_labels = 0; /* turn off MPLS */
1569 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1570 } else {
1571 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1572 pkt_dev->svlan_id = 0xffff;
1573
1574 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001575 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001576 }
1577 return count;
1578 }
1579
1580 if (!strcmp(name, "vlan_p")) {
1581 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001582 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001583 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001584
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001585 i += len;
1586 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1587 pkt_dev->vlan_p = value;
1588 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1589 } else {
1590 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1591 }
1592 return count;
1593 }
1594
1595 if (!strcmp(name, "vlan_cfi")) {
1596 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001597 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001598 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001599
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001600 i += len;
1601 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1602 pkt_dev->vlan_cfi = value;
1603 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1604 } else {
1605 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1606 }
1607 return count;
1608 }
1609
1610 if (!strcmp(name, "svlan_id")) {
1611 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001612 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001613 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001614
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001615 i += len;
1616 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1617 pkt_dev->svlan_id = value; /* turn on SVLAN */
1618
1619 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001620 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001621
1622 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001623 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001624
1625 pkt_dev->nr_labels = 0; /* turn off MPLS */
1626 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1627 } else {
1628 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1629 pkt_dev->svlan_id = 0xffff;
1630
1631 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001632 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001633 }
1634 return count;
1635 }
1636
1637 if (!strcmp(name, "svlan_p")) {
1638 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001639 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001640 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001641
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001642 i += len;
1643 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1644 pkt_dev->svlan_p = value;
1645 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1646 } else {
1647 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1648 }
1649 return count;
1650 }
1651
1652 if (!strcmp(name, "svlan_cfi")) {
1653 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001654 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001655 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001656
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001657 i += len;
1658 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1659 pkt_dev->svlan_cfi = value;
1660 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1661 } else {
1662 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1663 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001664 return count;
1665 }
1666
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001667 if (!strcmp(name, "tos")) {
1668 __u32 tmp_value = 0;
1669 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001670 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001671 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001672
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001673 i += len;
1674 if (len == 2) {
1675 pkt_dev->tos = tmp_value;
1676 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1677 } else {
1678 sprintf(pg_result, "ERROR: tos must be 00-ff");
1679 }
1680 return count;
1681 }
1682
1683 if (!strcmp(name, "traffic_class")) {
1684 __u32 tmp_value = 0;
1685 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001686 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001687 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001688
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001689 i += len;
1690 if (len == 2) {
1691 pkt_dev->traffic_class = tmp_value;
1692 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1693 } else {
1694 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1695 }
1696 return count;
1697 }
1698
John Fastabend9e50e3a2010-11-16 19:12:28 +00001699 if (!strcmp(name, "skb_priority")) {
1700 len = num_arg(&user_buffer[i], 9, &value);
1701 if (len < 0)
1702 return len;
1703
1704 i += len;
1705 pkt_dev->skb_priority = value;
1706 sprintf(pg_result, "OK: skb_priority=%i",
1707 pkt_dev->skb_priority);
1708 return count;
1709 }
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1712 return -EINVAL;
1713}
1714
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001715static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
Al Virod9dda782013-03-31 18:16:14 -04001717 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001718}
1719
Arjan van de Ven9a321442007-02-12 00:55:35 -08001720static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001721 .owner = THIS_MODULE,
1722 .open = pktgen_if_open,
1723 .read = seq_read,
1724 .llseek = seq_lseek,
1725 .write = pktgen_if_write,
1726 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001727};
1728
1729static int pktgen_thread_show(struct seq_file *seq, void *v)
1730{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001731 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001732 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001734 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Luiz Capitulino222f1802006-03-20 22:16:13 -08001736 seq_printf(seq, "Running: ");
1737
1738 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001739 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001740 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001741 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743 seq_printf(seq, "\nStopped: ");
1744
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001745 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001746 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001747 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001750 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001752 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Luiz Capitulino222f1802006-03-20 22:16:13 -08001754 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001759static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001760 const char __user * user_buffer,
1761 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Joe Perches8a994a72010-07-12 10:50:23 +00001763 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001764 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001765 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001767 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001770 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 return -EINVAL;
1772 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001773
Paul Gortmakerd6182222010-10-18 12:14:44 +00001774 max = count;
1775 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001776 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001777 return len;
1778
Paul Gortmakerd6182222010-10-18 12:14:44 +00001779 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /* Read variable name */
1782
1783 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001784 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001785 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 memset(name, 0, sizeof(name));
1788 if (copy_from_user(name, &user_buffer[i], len))
1789 return -EFAULT;
1790 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001791
Luiz Capitulino222f1802006-03-20 22:16:13 -08001792 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001794 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001795 return len;
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 i += len;
1798
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001799 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001800 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Luiz Capitulino222f1802006-03-20 22:16:13 -08001802 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001803 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 ret = -EINVAL;
1805 goto out;
1806 }
1807
1808 pg_result = &(t->result[0]);
1809
Luiz Capitulino222f1802006-03-20 22:16:13 -08001810 if (!strcmp(name, "add_device")) {
1811 char f[32];
1812 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001814 if (len < 0) {
1815 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 goto out;
1817 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001818 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return -EFAULT;
1820 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001821 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001822 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001823 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001824 if (!ret) {
1825 ret = count;
1826 sprintf(pg_result, "OK: add_device=%s", f);
1827 } else
1828 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 goto out;
1830 }
1831
Luiz Capitulino222f1802006-03-20 22:16:13 -08001832 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001833 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001834 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001835 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001836 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001838 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 goto out;
1840 }
1841
Luiz Capitulino222f1802006-03-20 22:16:13 -08001842 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001843 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001844 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 goto out;
1846 }
1847
1848 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001849out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return ret;
1851}
1852
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001853static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Al Virod9dda782013-03-31 18:16:14 -04001855 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856}
1857
Arjan van de Ven9a321442007-02-12 00:55:35 -08001858static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001859 .owner = THIS_MODULE,
1860 .open = pktgen_thread_open,
1861 .read = seq_read,
1862 .llseek = seq_lseek,
1863 .write = pktgen_thread_write,
1864 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001865};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001868static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1869 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 struct pktgen_thread *t;
1872 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001873 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Cong Wang4e58a022013-01-28 19:55:53 +00001875 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001876 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001878 if (remove) {
1879 if_lock(t);
1880 pkt_dev->removal_mark = 1;
1881 t->control |= T_REMDEV;
1882 if_unlock(t);
1883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 break;
1885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001887 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001890/*
1891 * mark a device for removal
1892 */
Cong Wang4e58a022013-01-28 19:55:53 +00001893static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
1895 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001896 const int max_tries = 10, msec_per_try = 125;
1897 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001898
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001899 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001900 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001901
Luiz Capitulino222f1802006-03-20 22:16:13 -08001902 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001903
Cong Wang4e58a022013-01-28 19:55:53 +00001904 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001905 if (pkt_dev == NULL)
1906 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001907
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001908 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001909 pr_debug("%s: waiting for %s to disappear....\n",
1910 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001911 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001912 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001913
1914 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001915 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1916 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001917 break;
1918 }
1919
1920 }
1921
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001922 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001923}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001924
Cong Wang4e58a022013-01-28 19:55:53 +00001925static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001926{
1927 struct pktgen_thread *t;
1928
Cong Wang4e58a022013-01-28 19:55:53 +00001929 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001930 struct pktgen_dev *pkt_dev;
1931
1932 list_for_each_entry(pkt_dev, &t->if_list, list) {
1933 if (pkt_dev->odev != dev)
1934 continue;
1935
David Howellsa8ca16e2013-04-12 17:27:28 +01001936 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001937
Alexey Dobriyan29753152009-08-28 23:34:43 -07001938 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001939 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001940 &pktgen_if_fops,
1941 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001942 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001943 pr_err("can't move proc entry for '%s'\n",
1944 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001945 break;
1946 }
1947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
Luiz Capitulino222f1802006-03-20 22:16:13 -08001950static int pktgen_device_event(struct notifier_block *unused,
1951 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
Jiri Pirko351638e2013-05-28 01:30:21 +00001953 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001954 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Cong Wang4e58a022013-01-28 19:55:53 +00001956 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001957 return NOTIFY_DONE;
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 /* It is OK that we do not hold the group lock right now,
1960 * as we run under the RTNL lock.
1961 */
1962
1963 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001964 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001965 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001969 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 return NOTIFY_DONE;
1974}
1975
Cong Wang4e58a022013-01-28 19:55:53 +00001976static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
1977 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001978 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001979{
1980 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00001981 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001982
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001983 for (i = 0; ifname[i] != '@'; i++) {
1984 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001985 break;
1986
1987 b[i] = ifname[i];
1988 }
1989 b[i] = 0;
1990
Cong Wang4e58a022013-01-28 19:55:53 +00001991 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07001992}
1993
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995/* Associate pktgen_dev with a device. */
1996
Cong Wang4e58a022013-01-28 19:55:53 +00001997static int pktgen_setup_dev(const struct pktgen_net *pn,
1998 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001999{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08002001 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 if (pkt_dev->odev) {
2005 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002006 pkt_dev->odev = NULL;
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Cong Wang4e58a022013-01-28 19:55:53 +00002009 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002011 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002012 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002016 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002017 err = -EINVAL;
2018 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002019 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002020 err = -ENETDOWN;
2021 } else {
2022 pkt_dev->odev = odev;
2023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002027 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
2030/* Read pkt_dev from the interface and set up internal pktgen_dev
2031 * structure to have the right information to create/send packets
2032 */
2033static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2034{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002035 int ntxq;
2036
Luiz Capitulino222f1802006-03-20 22:16:13 -08002037 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002038 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002039 sprintf(pkt_dev->result,
2040 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2041 return;
2042 }
2043
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002044 /* make sure that we don't pick a non-existing transmit queue */
2045 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002046
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002047 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002048 pr_warning("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2049 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2050 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002051 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002052 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002053 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002054 pr_warning("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2055 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2056 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002057 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002058 }
2059
Luiz Capitulino222f1802006-03-20 22:16:13 -08002060 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002062 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002063 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Luiz Capitulino222f1802006-03-20 22:16:13 -08002065 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002066 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Luiz Capitulino222f1802006-03-20 22:16:13 -08002068 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002069 int i, set = 0, err = 1;
2070 struct inet6_dev *idev;
2071
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002072 if (pkt_dev->min_pkt_size == 0) {
2073 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2074 + sizeof(struct udphdr)
2075 + sizeof(struct pktgen_hdr)
2076 + pkt_dev->pkt_overhead;
2077 }
2078
Luiz Capitulino222f1802006-03-20 22:16:13 -08002079 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2080 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 set = 1;
2082 break;
2083 }
2084
Luiz Capitulino222f1802006-03-20 22:16:13 -08002085 if (!set) {
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 /*
2088 * Use linklevel address if unconfigured.
2089 *
2090 * use ipv6_get_lladdr if/when it's get exported
2091 */
2092
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002093 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002094 idev = __in6_dev_get(pkt_dev->odev);
2095 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 struct inet6_ifaddr *ifp;
2097
2098 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002099 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2100 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002101 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002102 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 err = 0;
2104 break;
2105 }
2106 }
2107 read_unlock_bh(&idev->lock);
2108 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002109 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002110 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002111 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002113 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002114 if (pkt_dev->min_pkt_size == 0) {
2115 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2116 + sizeof(struct udphdr)
2117 + sizeof(struct pktgen_hdr)
2118 + pkt_dev->pkt_overhead;
2119 }
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 pkt_dev->saddr_min = 0;
2122 pkt_dev->saddr_max = 0;
2123 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002124
2125 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002128 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (in_dev) {
2130 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002131 pkt_dev->saddr_min =
2132 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 pkt_dev->saddr_max = pkt_dev->saddr_min;
2134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
2136 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002137 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2139 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2140 }
2141
2142 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2143 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2144 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002145 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002146 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2147 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2148 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2149
Luiz Capitulino222f1802006-03-20 22:16:13 -08002150 pkt_dev->cur_dst_mac_offset = 0;
2151 pkt_dev->cur_src_mac_offset = 0;
2152 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2153 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2154 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2155 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 pkt_dev->nflows = 0;
2157}
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002160static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2161{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002162 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002163 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002164 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002165
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002166 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2167 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002168
Daniel Turull43d28b62010-06-09 22:49:57 +00002169 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002170 if (remaining <= 0) {
2171 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002172 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002173 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002174
Daniel Borkmann398f3822012-10-28 08:27:19 +00002175 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002176 if (remaining < 100000) {
2177 /* for small delays (<100us), just loop until limit is reached */
2178 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002179 end_time = ktime_get();
2180 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002181 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002182 /* see do_nanosleep */
2183 hrtimer_init_sleeper(&t, current);
2184 do {
2185 set_current_state(TASK_INTERRUPTIBLE);
2186 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2187 if (!hrtimer_active(&t.timer))
2188 t.task = NULL;
2189
2190 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002193 hrtimer_cancel(&t.timer);
2194 } while (t.task && pkt_dev->running && !signal_pending(current));
2195 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002196 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002198
2199 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002200 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002203static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2204{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002205 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002206 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2207 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2208 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2209}
2210
Stephen Hemminger648fda72009-08-27 13:55:07 +00002211static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002212{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002213 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002214}
2215
2216static inline int f_pick(struct pktgen_dev *pkt_dev)
2217{
2218 int flow = pkt_dev->curfl;
2219
2220 if (pkt_dev->flags & F_FLOW_SEQ) {
2221 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2222 /* reset time */
2223 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002224 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002225 pkt_dev->curfl += 1;
2226 if (pkt_dev->curfl >= pkt_dev->cflows)
2227 pkt_dev->curfl = 0; /*reset */
2228 }
2229 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002230 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002231 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002232
Robert Olsson1211a642008-08-05 18:44:26 -07002233 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002234 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002235 pkt_dev->flows[flow].flags = 0;
2236 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002237 }
2238
2239 return pkt_dev->curfl;
2240}
2241
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002242
2243#ifdef CONFIG_XFRM
2244/* If there was already an IPSEC SA, we keep it as is, else
2245 * we go look for it ...
2246*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002247#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002248static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002249{
2250 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002251 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002252 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002253
2254 if (pkt_dev->spi) {
2255 /* We need as quick as possible to find the right SA
2256 * Searching with minimum criteria to archieve this.
2257 */
2258 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2259 } else {
2260 /* slow path: we dont already have xfrm_state */
2261 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
2262 (xfrm_address_t *)&pkt_dev->cur_daddr,
2263 (xfrm_address_t *)&pkt_dev->cur_saddr,
2264 AF_INET,
2265 pkt_dev->ipsmode,
2266 pkt_dev->ipsproto, 0);
2267 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002268 if (x) {
2269 pkt_dev->flows[flow].x = x;
2270 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002271 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002272 }
2273
2274 }
2275}
2276#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002277static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2278{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002279
2280 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2281 pkt_dev->cur_queue_map = smp_processor_id();
2282
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002283 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002284 __u16 t;
2285 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002286 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002287 (pkt_dev->queue_map_max -
2288 pkt_dev->queue_map_min + 1)
2289 + pkt_dev->queue_map_min;
2290 } else {
2291 t = pkt_dev->cur_queue_map + 1;
2292 if (t > pkt_dev->queue_map_max)
2293 t = pkt_dev->queue_map_min;
2294 }
2295 pkt_dev->cur_queue_map = t;
2296 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002297 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 -07002298}
2299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300/* Increment/randomize headers according to flags and current values
2301 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2302 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002303static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2304{
2305 __u32 imn;
2306 __u32 imx;
2307 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002309 if (pkt_dev->cflows)
2310 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002313 if (pkt_dev->src_mac_count > 1) {
2314 __u32 mc;
2315 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Luiz Capitulino222f1802006-03-20 22:16:13 -08002317 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002318 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002319 else {
2320 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002321 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002322 pkt_dev->src_mac_count)
2323 pkt_dev->cur_src_mac_offset = 0;
2324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Luiz Capitulino222f1802006-03-20 22:16:13 -08002326 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2327 pkt_dev->hh[11] = tmp;
2328 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2329 pkt_dev->hh[10] = tmp;
2330 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2331 pkt_dev->hh[9] = tmp;
2332 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2333 pkt_dev->hh[8] = tmp;
2334 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2335 pkt_dev->hh[7] = tmp;
2336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Luiz Capitulino222f1802006-03-20 22:16:13 -08002338 /* Deal with Destination MAC */
2339 if (pkt_dev->dst_mac_count > 1) {
2340 __u32 mc;
2341 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Luiz Capitulino222f1802006-03-20 22:16:13 -08002343 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002344 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Luiz Capitulino222f1802006-03-20 22:16:13 -08002346 else {
2347 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002348 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002349 pkt_dev->dst_mac_count) {
2350 pkt_dev->cur_dst_mac_offset = 0;
2351 }
2352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Luiz Capitulino222f1802006-03-20 22:16:13 -08002354 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2355 pkt_dev->hh[5] = tmp;
2356 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2357 pkt_dev->hh[4] = tmp;
2358 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2359 pkt_dev->hh[3] = tmp;
2360 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2361 pkt_dev->hh[2] = tmp;
2362 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2363 pkt_dev->hh[1] = tmp;
2364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002366 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002367 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002368 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002369 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2370 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002371 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002372 htonl(0x000fffff));
2373 }
2374
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002375 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002376 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002377 }
2378
2379 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002380 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002381 }
2382
Luiz Capitulino222f1802006-03-20 22:16:13 -08002383 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2384 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002385 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002386 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2387 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Luiz Capitulino222f1802006-03-20 22:16:13 -08002389 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 pkt_dev->cur_udp_src++;
2391 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2392 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002393 }
2394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Luiz Capitulino222f1802006-03-20 22:16:13 -08002396 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2397 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002398 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002399 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2400 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002401 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002403 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002405 }
2406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 if (!(pkt_dev->flags & F_IPV6)) {
2409
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002410 imn = ntohl(pkt_dev->saddr_min);
2411 imx = ntohl(pkt_dev->saddr_max);
2412 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002414 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002415 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 else {
2417 t = ntohl(pkt_dev->cur_saddr);
2418 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002419 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
2423 pkt_dev->cur_saddr = htonl(t);
2424 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002425
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002426 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2428 } else {
Al Viro252e33462006-11-14 20:48:11 -08002429 imn = ntohl(pkt_dev->daddr_min);
2430 imx = ntohl(pkt_dev->daddr_max);
2431 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 __u32 t;
Al Viro252e33462006-11-14 20:48:11 -08002433 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 if (pkt_dev->flags & F_IPDST_RND) {
2435
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002436 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002437 t = prandom_u32() %
2438 (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002439 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002440 } while (ipv4_is_loopback(s) ||
2441 ipv4_is_multicast(s) ||
2442 ipv4_is_lbcast(s) ||
2443 ipv4_is_zeronet(s) ||
2444 ipv4_is_local_multicast(s));
Al Viro252e33462006-11-14 20:48:11 -08002445 pkt_dev->cur_daddr = s;
2446 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 t = ntohl(pkt_dev->cur_daddr);
2448 t++;
2449 if (t > imx) {
2450 t = imn;
2451 }
2452 pkt_dev->cur_daddr = htonl(t);
2453 }
2454 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002455 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002456 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002457 pkt_dev->flows[flow].cur_daddr =
2458 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002459#ifdef CONFIG_XFRM
2460 if (pkt_dev->flags & F_IPSEC_ON)
2461 get_ipsec_sa(pkt_dev, flow);
2462#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 pkt_dev->nflows++;
2464 }
2465 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002466 } else { /* IPV6 * */
2467
Joe Perches06e30412012-10-18 17:55:31 +00002468 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 int i;
2470
2471 /* Only random destinations yet */
2472
Luiz Capitulino222f1802006-03-20 22:16:13 -08002473 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002475 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002476 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2477 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
2481
Luiz Capitulino222f1802006-03-20 22:16:13 -08002482 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2483 __u32 t;
2484 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002485 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002486 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2487 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002488 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002490 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002492 }
2493 pkt_dev->cur_pkt_size = t;
2494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002496 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 pkt_dev->flows[flow].count++;
2499}
2500
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002501
2502#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002503static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d47e2014-01-03 11:18:31 +08002504
2505 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2506};
2507
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002508static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2509{
2510 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2511 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002512 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002513
2514 if (!x)
2515 return 0;
2516 /* XXX: we dont support tunnel mode for now until
2517 * we resolve the dst issue */
Fan Ducf93d47e2014-01-03 11:18:31 +08002518 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002519 return 0;
2520
Fan Ducf93d47e2014-01-03 11:18:31 +08002521 /* But when user specify an valid SPI, transformation
2522 * supports both transport/tunnel mode + ESP/AH type.
2523 */
2524 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
2525 skb->_skb_refdst = (unsigned long)&pkt_dev->dst | SKB_DST_NOREF;
2526
2527 rcu_read_lock_bh();
Herbert Xu13996372007-10-17 21:35:51 -07002528 err = x->outer_mode->output(x, skb);
Fan Ducf93d47e2014-01-03 11:18:31 +08002529 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002530 if (err) {
2531 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002532 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002533 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002534 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002535 if (err) {
2536 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002537 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002538 }
Fan Du0af0a412014-01-03 11:18:27 +08002539 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002540 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002541 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002542 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002543error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002544 return err;
2545}
2546
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002547static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002548{
2549 if (pkt_dev->cflows) {
2550 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002551 int i;
2552 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002553 struct xfrm_state *x = pkt_dev->flows[i].x;
2554 if (x) {
2555 xfrm_state_put(x);
2556 pkt_dev->flows[i].x = NULL;
2557 }
2558 }
2559 }
2560}
2561
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002562static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002563 struct sk_buff *skb, __be16 protocol)
2564{
2565 if (pkt_dev->flags & F_IPSEC_ON) {
2566 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2567 int nhead = 0;
2568 if (x) {
2569 int ret;
2570 __u8 *eth;
fan.du38682042013-12-01 16:28:48 +08002571 struct iphdr *iph;
2572
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002573 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002574 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002575 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2576 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002577 pr_err("Error expanding ipsec packet %d\n",
2578 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002579 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002580 }
2581 }
2582
2583 /* ipsec is not expecting ll header */
2584 skb_pull(skb, ETH_HLEN);
2585 ret = pktgen_output_ipsec(skb, pkt_dev);
2586 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002587 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002588 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002589 }
2590 /* restore ll */
2591 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2592 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002593 *(u16 *) &eth[12] = protocol;
fan.du38682042013-12-01 16:28:48 +08002594
2595 /* Update IPv4 header len as well as checksum value */
2596 iph = ip_hdr(skb);
2597 iph->tot_len = htons(skb->len - ETH_HLEN);
2598 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002599 }
2600 }
2601 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002602err:
2603 kfree_skb(skb);
2604 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002605}
2606#endif
2607
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002608static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2609{
Eric Dumazet95c96172012-04-15 05:58:06 +00002610 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002611 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002612 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002613
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002614 mpls--;
2615 *mpls |= MPLS_STACK_BOTTOM;
2616}
2617
Al Viro0f37c602006-11-03 03:49:56 -08002618static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2619 unsigned int prio)
2620{
2621 return htons(id | (cfi << 12) | (prio << 13));
2622}
2623
Eric Dumazet26ad7872011-01-25 13:26:05 -08002624static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2625 int datalen)
2626{
2627 struct timeval timestamp;
2628 struct pktgen_hdr *pgh;
2629
2630 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2631 datalen -= sizeof(*pgh);
2632
2633 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002634 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002635 } else {
2636 int frags = pkt_dev->nfrags;
2637 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002638 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002639
2640
2641 if (frags > MAX_SKB_FRAGS)
2642 frags = MAX_SKB_FRAGS;
2643 len = datalen - frags * PAGE_SIZE;
2644 if (len > 0) {
2645 memset(skb_put(skb, len), 0, len);
2646 datalen = frags * PAGE_SIZE;
2647 }
2648
2649 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002650 frag_len = (datalen/frags) < PAGE_SIZE ?
2651 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002652 while (datalen > 0) {
2653 if (unlikely(!pkt_dev->page)) {
2654 int node = numa_node_id();
2655
2656 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2657 node = pkt_dev->node;
2658 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2659 if (!pkt_dev->page)
2660 break;
2661 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002662 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002663 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002664 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002665 /*last fragment, fill rest of data*/
2666 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002667 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2668 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002669 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002670 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2671 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2672 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2673 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002674 i++;
2675 skb_shinfo(skb)->nr_frags = i;
2676 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002677 }
2678
2679 /* Stamp the time, and sequence number,
2680 * convert them to network byte order
2681 */
2682 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2683 pgh->seq_num = htonl(pkt_dev->seq_num);
2684
2685 do_gettimeofday(&timestamp);
2686 pgh->tv_sec = htonl(timestamp.tv_sec);
2687 pgh->tv_usec = htonl(timestamp.tv_usec);
2688}
2689
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002690static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
2691 struct pktgen_dev *pkt_dev,
2692 unsigned int extralen)
2693{
2694 struct sk_buff *skb = NULL;
2695 unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen +
2696 pkt_dev->pkt_overhead;
2697
2698 if (pkt_dev->flags & F_NODE) {
2699 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2700
2701 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2702 if (likely(skb)) {
2703 skb_reserve(skb, NET_SKB_PAD);
2704 skb->dev = dev;
2705 }
2706 } else {
2707 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2708 }
2709
2710 return skb;
2711}
2712
Luiz Capitulino222f1802006-03-20 22:16:13 -08002713static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2714 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
2716 struct sk_buff *skb = NULL;
2717 __u8 *eth;
2718 struct udphdr *udph;
2719 int datalen, iplen;
2720 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002721 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002722 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002723 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2724 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2725 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2726 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002727 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002728
2729 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002730 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002731
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002732 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002733 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002734
Robert Olsson64053be2005-06-26 15:27:10 -07002735 /* Update any of the values, used when we're incrementing various
2736 * fields.
2737 */
2738 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002739 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002740
David S. Miller7ac54592006-01-18 14:19:10 -08002741 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002742
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002743 skb = pktgen_alloc_skb(odev, pkt_dev, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 if (!skb) {
2745 sprintf(pkt_dev->result, "No memory");
2746 return NULL;
2747 }
2748
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002749 prefetchw(skb->data);
David S. Miller7ac54592006-01-18 14:19:10 -08002750 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752 /* Reserve for ethernet and IP header */
2753 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002754 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2755 if (pkt_dev->nr_labels)
2756 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002757
2758 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002759 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002760 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002761 *svlan_tci = build_tci(pkt_dev->svlan_id,
2762 pkt_dev->svlan_cfi,
2763 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002764 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002765 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002766 }
2767 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002768 *vlan_tci = build_tci(pkt_dev->vlan_id,
2769 pkt_dev->vlan_cfi,
2770 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002771 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002772 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002773 }
2774
Thomas Graf525cebe2013-06-03 11:49:23 +00002775 skb_set_mac_header(skb, 0);
2776 skb_set_network_header(skb, skb->len);
2777 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2778
2779 skb_set_transport_header(skb, skb->len);
2780 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002781 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002782 skb->priority = pkt_dev->skb_priority;
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002785 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002787 /* Eth + IPh + UDPh + mpls */
2788 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002789 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002790 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 udph->source = htons(pkt_dev->cur_udp_src);
2794 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002795 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002796 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 iph->ihl = 5;
2799 iph->version = 4;
2800 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002801 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002802 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 iph->saddr = pkt_dev->cur_saddr;
2804 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002805 iph->id = htons(pkt_dev->ip_id);
2806 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 iph->frag_off = 0;
2808 iplen = 20 + 8 + datalen;
2809 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002810 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002811 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 skb->dev = odev;
2813 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002814
2815 if (!(pkt_dev->flags & F_UDPCSUM)) {
2816 skb->ip_summed = CHECKSUM_NONE;
2817 } else if (odev->features & NETIF_F_V4_CSUM) {
2818 skb->ip_summed = CHECKSUM_PARTIAL;
2819 skb->csum = 0;
2820 udp4_hwcsum(skb, udph->source, udph->dest);
2821 } else {
2822 __wsum csum = udp_csum(skb);
2823
2824 /* add protocol-dependent pseudo-header */
2825 udph->check = csum_tcpudp_magic(udph->source, udph->dest,
2826 datalen + 8, IPPROTO_UDP, csum);
2827
2828 if (udph->check == 0)
2829 udph->check = CSUM_MANGLED_0;
2830 }
2831
Eric Dumazet26ad7872011-01-25 13:26:05 -08002832 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002833
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002834#ifdef CONFIG_XFRM
2835 if (!process_ipsec(pkt_dev, skb, protocol))
2836 return NULL;
2837#endif
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 return skb;
2840}
2841
Luiz Capitulino222f1802006-03-20 22:16:13 -08002842static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2843 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844{
2845 struct sk_buff *skb = NULL;
2846 __u8 *eth;
2847 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002848 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002850 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002851 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002852 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2853 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2854 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2855 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002856 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002857
2858 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002859 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002860
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002861 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002862 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002863
Robert Olsson64053be2005-06-26 15:27:10 -07002864 /* Update any of the values, used when we're incrementing various
2865 * fields.
2866 */
2867 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002868 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002869
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002870 skb = pktgen_alloc_skb(odev, pkt_dev, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 if (!skb) {
2872 sprintf(pkt_dev->result, "No memory");
2873 return NULL;
2874 }
2875
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002876 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 skb_reserve(skb, 16);
2878
2879 /* Reserve for ethernet and IP header */
2880 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002881 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2882 if (pkt_dev->nr_labels)
2883 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002884
2885 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002886 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002887 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002888 *svlan_tci = build_tci(pkt_dev->svlan_id,
2889 pkt_dev->svlan_cfi,
2890 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002891 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002892 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002893 }
2894 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002895 *vlan_tci = build_tci(pkt_dev->vlan_id,
2896 pkt_dev->vlan_cfi,
2897 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002898 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002899 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002900 }
2901
Thomas Graf525cebe2013-06-03 11:49:23 +00002902 skb_set_mac_header(skb, 0);
2903 skb_set_network_header(skb, skb->len);
2904 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2905
2906 skb_set_transport_header(skb, skb->len);
2907 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002908 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002909 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002912 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002913
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002914 /* Eth + IPh + UDPh + mpls */
2915 datalen = pkt_dev->cur_pkt_size - 14 -
2916 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002917 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002919 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002921 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
2923
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002924 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 udph->source = htons(pkt_dev->cur_udp_src);
2926 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002927 udph->len = htons(udplen);
2928 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002930 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002932 if (pkt_dev->traffic_class) {
2933 /* Version + traffic class + flow (0) */
Al Viro252e33462006-11-14 20:48:11 -08002934 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002935 }
2936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 iph->hop_limit = 32;
2938
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002939 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 iph->nexthdr = IPPROTO_UDP;
2941
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002942 iph->daddr = pkt_dev->cur_in6_daddr;
2943 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002945 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 skb->dev = odev;
2947 skb->pkt_type = PACKET_HOST;
2948
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002949 if (!(pkt_dev->flags & F_UDPCSUM)) {
2950 skb->ip_summed = CHECKSUM_NONE;
2951 } else if (odev->features & NETIF_F_V6_CSUM) {
2952 skb->ip_summed = CHECKSUM_PARTIAL;
2953 skb->csum_start = skb_transport_header(skb) - skb->head;
2954 skb->csum_offset = offsetof(struct udphdr, check);
2955 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2956 } else {
2957 __wsum csum = udp_csum(skb);
2958
2959 /* add protocol-dependent pseudo-header */
2960 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2961
2962 if (udph->check == 0)
2963 udph->check = CSUM_MANGLED_0;
2964 }
2965
Eric Dumazet26ad7872011-01-25 13:26:05 -08002966 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 return skb;
2969}
2970
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002971static struct sk_buff *fill_packet(struct net_device *odev,
2972 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002974 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 return fill_packet_ipv6(odev, pkt_dev);
2976 else
2977 return fill_packet_ipv4(odev, pkt_dev);
2978}
2979
Luiz Capitulino222f1802006-03-20 22:16:13 -08002980static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002982 pkt_dev->seq_num = 1;
2983 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002985 pkt_dev->tx_bytes = 0;
2986 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987}
2988
2989/* Set up structure for sending pkts, clear counters */
2990
2991static void pktgen_run(struct pktgen_thread *t)
2992{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002993 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 int started = 0;
2995
Joe Perchesf9467ea2010-06-21 12:29:14 +00002996 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
2998 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002999 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001 /*
3002 * setup odev and create initial packet.
3003 */
3004 pktgen_setup_inject(pkt_dev);
3005
Luiz Capitulino222f1802006-03-20 22:16:13 -08003006 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003008 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003010 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003011
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003012 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 strcpy(pkt_dev->result, "Starting");
3015 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003016 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 strcpy(pkt_dev->result, "Error starting");
3018 }
3019 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003020 if (started)
3021 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022}
3023
Cong Wang4e58a022013-01-28 19:55:53 +00003024static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003026 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Joe Perchesf9467ea2010-06-21 12:29:14 +00003028 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003030 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003031
Cong Wang4e58a022013-01-28 19:55:53 +00003032 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003033 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003034
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003035 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036}
3037
Stephen Hemminger648fda72009-08-27 13:55:07 +00003038static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003040 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003042 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00003043 if (pkt_dev->running)
3044 return 1;
3045 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046}
3047
Luiz Capitulino222f1802006-03-20 22:16:13 -08003048static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003050 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Luiz Capitulino222f1802006-03-20 22:16:13 -08003052 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Luiz Capitulino222f1802006-03-20 22:16:13 -08003054 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Luiz Capitulino222f1802006-03-20 22:16:13 -08003056 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Luiz Capitulino222f1802006-03-20 22:16:13 -08003058 if (signal_pending(current))
3059 goto signal;
3060 if_lock(t);
3061 }
3062 if_unlock(t);
3063 return 1;
3064signal:
3065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066}
3067
Cong Wang4e58a022013-01-28 19:55:53 +00003068static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003070 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003072
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003073 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003074
Cong Wang4e58a022013-01-28 19:55:53 +00003075 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003077 if (sig == 0)
3078 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003080
3081 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003082 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003084
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003085 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 return sig;
3087}
3088
Cong Wang4e58a022013-01-28 19:55:53 +00003089static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003091 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Joe Perchesf9467ea2010-06-21 12:29:14 +00003093 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003095 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Cong Wang4e58a022013-01-28 19:55:53 +00003097 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003099
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003100 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003102 /* Propagate thread->control */
3103 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003104
Cong Wang4e58a022013-01-28 19:55:53 +00003105 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106}
3107
Cong Wang4e58a022013-01-28 19:55:53 +00003108static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003109{
3110 struct pktgen_thread *t;
3111
Joe Perchesf9467ea2010-06-21 12:29:14 +00003112 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003113
3114 mutex_lock(&pktgen_thread_lock);
3115
Cong Wang4e58a022013-01-28 19:55:53 +00003116 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003117 t->control |= (T_REMDEVALL);
3118
3119 mutex_unlock(&pktgen_thread_lock);
3120
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003121 /* Propagate thread->control */
3122 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003123
Cong Wang4e58a022013-01-28 19:55:53 +00003124 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003125}
3126
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3128{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003129 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003130 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003131 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3132 pkt_dev->started_at);
3133 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
Daniel Turull03a14ab2011-03-09 14:11:00 -08003135 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003136 (unsigned long long)ktime_to_us(elapsed),
3137 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3138 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003139 (unsigned long long)pkt_dev->sofar,
3140 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003142 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3143 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Luiz Capitulino222f1802006-03-20 22:16:13 -08003145 bps = pps * 8 * pkt_dev->cur_pkt_size;
3146
3147 mbps = bps;
3148 do_div(mbps, 1000000);
3149 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3150 (unsigned long long)pps,
3151 (unsigned long long)mbps,
3152 (unsigned long long)bps,
3153 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
3156/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003157static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003159 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003160
Luiz Capitulino222f1802006-03-20 22:16:13 -08003161 if (!pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003162 pr_warning("interface: %s is already stopped\n",
3163 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003164 return -EINVAL;
3165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003167 kfree_skb(pkt_dev->skb);
3168 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003169 pkt_dev->stopped_at = ktime_get();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003170 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003172 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
Luiz Capitulino222f1802006-03-20 22:16:13 -08003174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175}
3176
Luiz Capitulino222f1802006-03-20 22:16:13 -08003177static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003179 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 if_lock(t);
3182
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003183 list_for_each_entry(pkt_dev, &t->if_list, list) {
3184 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003185 continue;
3186 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003187 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003188 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003189 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 }
3191 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003192 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193}
3194
Luiz Capitulino222f1802006-03-20 22:16:13 -08003195static void pktgen_stop(struct pktgen_thread *t)
3196{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003197 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Joe Perchesf9467ea2010-06-21 12:29:14 +00003199 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Luiz Capitulino222f1802006-03-20 22:16:13 -08003201 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003203 list_for_each_entry(pkt_dev, &t->if_list, list) {
3204 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
Luiz Capitulino222f1802006-03-20 22:16:13 -08003207 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208}
3209
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003210/*
3211 * one of our devices needs to be removed - find it
3212 * and remove it
3213 */
3214static void pktgen_rem_one_if(struct pktgen_thread *t)
3215{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003216 struct list_head *q, *n;
3217 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003218
Joe Perchesf9467ea2010-06-21 12:29:14 +00003219 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003220
3221 if_lock(t);
3222
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003223 list_for_each_safe(q, n, &t->if_list) {
3224 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003225
Luiz Capitulino222f1802006-03-20 22:16:13 -08003226 if (!cur->removal_mark)
3227 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003228
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003229 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003230 cur->skb = NULL;
3231
3232 pktgen_remove_device(t, cur);
3233
3234 break;
3235 }
3236
3237 if_unlock(t);
3238}
3239
Luiz Capitulino222f1802006-03-20 22:16:13 -08003240static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003242 struct list_head *q, *n;
3243 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003244
Joe Perchesf9467ea2010-06-21 12:29:14 +00003245 func_enter();
3246
Luiz Capitulino222f1802006-03-20 22:16:13 -08003247 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003248
Luiz Capitulino222f1802006-03-20 22:16:13 -08003249 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003251 list_for_each_safe(q, n, &t->if_list) {
3252 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003253
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003254 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003255 cur->skb = NULL;
3256
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 pktgen_remove_device(t, cur);
3258 }
3259
Luiz Capitulino222f1802006-03-20 22:16:13 -08003260 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261}
3262
Luiz Capitulino222f1802006-03-20 22:16:13 -08003263static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003265 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003266 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267}
3268
Stephen Hemmingeref879792009-09-22 19:41:43 +00003269static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003270{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003271 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003272 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003273 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003274}
3275
Stephen Hemmingeref879792009-09-22 19:41:43 +00003276static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3277{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003278 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003279
3280 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3281 if (signal_pending(current))
3282 break;
3283
3284 if (need_resched())
3285 pktgen_resched(pkt_dev);
3286 else
3287 cpu_relax();
3288 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003289 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003290}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003291
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003292static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
Stephen Hemminger00829822008-11-20 20:14:53 -08003294 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003295 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003296 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003297 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003298 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 int ret;
3300
Stephen Hemmingeref879792009-09-22 19:41:43 +00003301 /* If device is offline, then don't send */
3302 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3303 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003304 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003306
Stephen Hemmingeref879792009-09-22 19:41:43 +00003307 /* This is max DELAY, this has special meaning of
3308 * "never transmit"
3309 */
3310 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003311 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003312 return;
3313 }
3314
3315 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003316 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3317 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3318 /* build a new pkt */
3319 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003320
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003321 pkt_dev->skb = fill_packet(odev, pkt_dev);
3322 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003323 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003324 schedule();
3325 pkt_dev->clone_count--; /* back out increment, OOM */
3326 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003328 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003329 pkt_dev->allocated_skbs++;
3330 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003332
Stephen Hemmingeref879792009-09-22 19:41:43 +00003333 if (pkt_dev->delay && pkt_dev->last_ok)
3334 spin(pkt_dev, pkt_dev->next_tx);
3335
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003336 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3337 txq = netdev_get_tx_queue(odev, queue_map);
3338
3339 __netif_tx_lock_bh(txq);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003340
Tom Herbert734664982011-11-28 16:32:44 +00003341 if (unlikely(netif_xmit_frozen_or_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003342 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003343 pkt_dev->last_ok = 0;
3344 goto unlock;
3345 }
3346 atomic_inc(&(pkt_dev->skb->users));
3347 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Stephen Hemmingeref879792009-09-22 19:41:43 +00003349 switch (ret) {
3350 case NETDEV_TX_OK:
3351 txq_trans_update(txq);
3352 pkt_dev->last_ok = 1;
3353 pkt_dev->sofar++;
3354 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003355 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003356 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003357 case NET_XMIT_DROP:
3358 case NET_XMIT_CN:
3359 case NET_XMIT_POLICED:
3360 /* skb has been consumed */
3361 pkt_dev->errors++;
3362 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003363 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003364 net_info_ratelimited("%s xmit error: %d\n",
3365 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003366 pkt_dev->errors++;
3367 /* fallthru */
3368 case NETDEV_TX_LOCKED:
3369 case NETDEV_TX_BUSY:
3370 /* Retry it next time */
3371 atomic_dec(&(pkt_dev->skb->users));
3372 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003373 }
Eric Dumazet0835acf2009-09-30 13:03:33 +00003374unlock:
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003375 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 /* If pkt_dev->count is zero, then run forever */
3378 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003379 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 /* Done with this */
3382 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003383 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003384}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003386/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 * Main loop of the thread goes here
3388 */
3389
David S. Milleree74baa2007-01-01 20:51:53 -08003390static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391{
3392 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003393 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003394 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
David S. Milleree74baa2007-01-01 20:51:53 -08003397 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
3399 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003400 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
Joe Perchesf9467ea2010-06-21 12:29:14 +00003402 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
David S. Milleree74baa2007-01-01 20:51:53 -08003404 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003405
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003406 set_freezable();
3407
David S. Milleree74baa2007-01-01 20:51:53 -08003408 while (!kthread_should_stop()) {
3409 pkt_dev = next_to_run(t);
3410
Stephen Hemmingeref879792009-09-22 19:41:43 +00003411 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003412 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003413 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003414 wait_event_interruptible_timeout(t->queue,
3415 t->control != 0,
3416 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003417 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003418 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003419 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 __set_current_state(TASK_RUNNING);
3422
Stephen Hemmingeref879792009-09-22 19:41:43 +00003423 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 pktgen_xmit(pkt_dev);
3425
Stephen Hemmingeref879792009-09-22 19:41:43 +00003426 if (need_resched())
3427 pktgen_resched(pkt_dev);
3428 else
3429 cpu_relax();
3430 }
3431
Luiz Capitulino222f1802006-03-20 22:16:13 -08003432 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 pktgen_stop(t);
3434 t->control &= ~(T_STOP);
3435 }
3436
Luiz Capitulino222f1802006-03-20 22:16:13 -08003437 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 pktgen_run(t);
3439 t->control &= ~(T_RUN);
3440 }
3441
Luiz Capitulino222f1802006-03-20 22:16:13 -08003442 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003444 t->control &= ~(T_REMDEVALL);
3445 }
3446
Luiz Capitulino222f1802006-03-20 22:16:13 -08003447 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003448 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 t->control &= ~(T_REMDEV);
3450 }
3451
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003452 try_to_freeze();
3453
David S. Milleree74baa2007-01-01 20:51:53 -08003454 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Joe Perchesf9467ea2010-06-21 12:29:14 +00003457 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003458 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Joe Perchesf9467ea2010-06-21 12:29:14 +00003460 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003461 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Joe Perchesf9467ea2010-06-21 12:29:14 +00003463 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003464 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003465
Eric Dumazet551eaff2010-11-21 10:26:44 -08003466 /* Wait for kthread_stop */
3467 while (!kthread_should_stop()) {
3468 set_current_state(TASK_INTERRUPTIBLE);
3469 schedule();
3470 }
3471 __set_current_state(TASK_RUNNING);
3472
David S. Milleree74baa2007-01-01 20:51:53 -08003473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474}
3475
Luiz Capitulino222f1802006-03-20 22:16:13 -08003476static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003477 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003479 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003480 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Eric Dumazet3e984842009-11-24 14:50:53 -08003482 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003483 list_for_each_entry(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003484 if (strncmp(p->odevname, ifname, len) == 0) {
3485 if (p->odevname[len]) {
3486 if (exact || p->odevname[len] != '@')
3487 continue;
3488 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003489 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003490 break;
3491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
Luiz Capitulino222f1802006-03-20 22:16:13 -08003493 if_unlock(t);
Joe Perchesf9467ea2010-06-21 12:29:14 +00003494 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003495 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496}
3497
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003498/*
3499 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 */
3501
Luiz Capitulino222f1802006-03-20 22:16:13 -08003502static int add_dev_to_thread(struct pktgen_thread *t,
3503 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504{
3505 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Luiz Capitulino222f1802006-03-20 22:16:13 -08003507 if_lock(t);
3508
3509 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003510 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003511 rv = -EBUSY;
3512 goto out;
3513 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003514
3515 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003516 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 pkt_dev->running = 0;
3518
Luiz Capitulino222f1802006-03-20 22:16:13 -08003519out:
3520 if_unlock(t);
3521 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522}
3523
3524/* Called under thread lock */
3525
Luiz Capitulino222f1802006-03-20 22:16:13 -08003526static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003528 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003529 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003530 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003531
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 /* We don't allow a device to be on several threads */
3533
Cong Wang4e58a022013-01-28 19:55:53 +00003534 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003535 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003536 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003537 return -EBUSY;
3538 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003539
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003540 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003541 if (!pkt_dev)
3542 return -ENOMEM;
3543
Eric Dumazet593f63b2009-11-23 01:44:37 +00003544 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003545 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003546 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003547 if (pkt_dev->flows == NULL) {
3548 kfree(pkt_dev);
3549 return -ENOMEM;
3550 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003551
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003552 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003553 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003554 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003555 pkt_dev->count = pg_count_d;
3556 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003557 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003558 pkt_dev->udp_src_max = 9;
3559 pkt_dev->udp_dst_min = 9;
3560 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003561 pkt_dev->vlan_p = 0;
3562 pkt_dev->vlan_cfi = 0;
3563 pkt_dev->vlan_id = 0xffff;
3564 pkt_dev->svlan_p = 0;
3565 pkt_dev->svlan_cfi = 0;
3566 pkt_dev->svlan_id = 0xffff;
Robert Olssone99b99b2010-03-18 22:44:30 +00003567 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003568
Cong Wang4e58a022013-01-28 19:55:53 +00003569 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003570 if (err)
3571 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003572 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3573 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003574
Cong Wang4e58a022013-01-28 19:55:53 +00003575 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003576 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003577 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003578 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003579 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003580 err = -EINVAL;
3581 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003582 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003583#ifdef CONFIG_XFRM
3584 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3585 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d47e2014-01-03 11:18:31 +08003586
3587 /* xfrm tunnel mode needs additional dst to extract outter
3588 * ip header protocol/ttl/id field, here creat a phony one.
3589 * instead of looking for a valid rt, which definitely hurting
3590 * performance under such circumstance.
3591 */
3592 pkt_dev->dstops.family = AF_INET;
3593 pkt_dev->dst.dev = pkt_dev->odev;
3594 dst_init_metrics(&pkt_dev->dst, pktgen_dst_metrics, false);
3595 pkt_dev->dst.child = &pkt_dev->dst;
3596 pkt_dev->dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003597#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003598
3599 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003600out2:
3601 dev_put(pkt_dev->odev);
3602out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003603#ifdef CONFIG_XFRM
3604 free_SAs(pkt_dev);
3605#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003606 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003607 kfree(pkt_dev);
3608 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609}
3610
Cong Wang4e58a022013-01-28 19:55:53 +00003611static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003613 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003614 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003615 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003617 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3618 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003619 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003620 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003621 return -ENOMEM;
3622 }
3623
Luiz Capitulino222f1802006-03-20 22:16:13 -08003624 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003626
David S. Milleree74baa2007-01-01 20:51:53 -08003627 INIT_LIST_HEAD(&t->if_list);
3628
Cong Wang4e58a022013-01-28 19:55:53 +00003629 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003630 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003631
Eric Dumazet94dcf292011-03-22 16:30:45 -07003632 p = kthread_create_on_node(pktgen_thread_worker,
3633 t,
3634 cpu_to_node(cpu),
3635 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003636 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003637 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003638 list_del(&t->th_list);
3639 kfree(t);
3640 return PTR_ERR(p);
3641 }
3642 kthread_bind(p, cpu);
3643 t->tsk = p;
3644
Cong Wang4e58a022013-01-28 19:55:53 +00003645 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003646 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003647 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003648 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003649 PG_PROC_DIR, t->tsk->comm);
3650 kthread_stop(p);
3651 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003652 kfree(t);
3653 return -EINVAL;
3654 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003655
Cong Wang4e58a022013-01-28 19:55:53 +00003656 t->net = pn;
David S. Milleree74baa2007-01-01 20:51:53 -08003657 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003658 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
3660 return 0;
3661}
3662
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003663/*
3664 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003666static void _rem_dev_from_if_list(struct pktgen_thread *t,
3667 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003669 struct list_head *q, *n;
3670 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003672 list_for_each_safe(q, n, &t->if_list) {
3673 p = list_entry(q, struct pktgen_dev, list);
3674 if (p == pkt_dev)
3675 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 }
3677}
3678
Luiz Capitulino222f1802006-03-20 22:16:13 -08003679static int pktgen_remove_device(struct pktgen_thread *t,
3680 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003682 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
Luiz Capitulino222f1802006-03-20 22:16:13 -08003684 if (pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003685 pr_warning("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003686 pktgen_stop_device(pkt_dev);
3687 }
3688
3689 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 if (pkt_dev->odev) {
3692 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003693 pkt_dev->odev = NULL;
3694 }
3695
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 /* And update the thread if_list */
3697
3698 _rem_dev_from_if_list(t, pkt_dev);
3699
Stephen Hemminger39df2322007-03-04 16:11:51 -08003700 if (pkt_dev->entry)
David Howellsa8ca16e2013-04-12 17:27:28 +01003701 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003703#ifdef CONFIG_XFRM
3704 free_SAs(pkt_dev);
3705#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003706 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003707 if (pkt_dev->page)
3708 put_page(pkt_dev->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003710 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711}
3712
Cong Wang4e58a022013-01-28 19:55:53 +00003713static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714{
Cong Wang4e58a022013-01-28 19:55:53 +00003715 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003716 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003717 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003718
Cong Wang4e58a022013-01-28 19:55:53 +00003719 pn->net = net;
3720 INIT_LIST_HEAD(&pn->pktgen_threads);
3721 pn->pktgen_exiting = false;
3722 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3723 if (!pn->proc_dir) {
3724 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003725 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003726 }
Cong Wang4e58a022013-01-28 19:55:53 +00003727 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3728 if (pe == NULL) {
3729 pr_err("cannot create %s procfs entry\n", PGCTRL);
3730 ret = -EINVAL;
3731 goto remove;
3732 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003733
John Hawkes670c02c2005-10-13 09:30:31 -07003734 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003735 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
Cong Wang4e58a022013-01-28 19:55:53 +00003737 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003738 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003739 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003740 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003741 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003742
Cong Wang4e58a022013-01-28 19:55:53 +00003743 if (list_empty(&pn->pktgen_threads)) {
3744 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003745 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003746 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003747 }
3748
Luiz Capitulino222f1802006-03-20 22:16:13 -08003749 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003750
Cong Wang4e58a022013-01-28 19:55:53 +00003751remove_entry:
3752 remove_proc_entry(PGCTRL, pn->proc_dir);
3753remove:
Gao fengece31ff2013-02-18 01:34:56 +00003754 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003755 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756}
3757
Cong Wang4e58a022013-01-28 19:55:53 +00003758static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759{
Cong Wang4e58a022013-01-28 19:55:53 +00003760 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003761 struct pktgen_thread *t;
3762 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003763 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Luiz Capitulino222f1802006-03-20 22:16:13 -08003765 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003766 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Eric Dumazetc57b5462012-05-09 13:29:51 +00003768 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003769 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003770 mutex_unlock(&pktgen_thread_lock);
3771
3772 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003773 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003774 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003775 kthread_stop(t->tsk);
3776 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
Cong Wang4e58a022013-01-28 19:55:53 +00003779 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003780 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003781}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Cong Wang4e58a022013-01-28 19:55:53 +00003783static struct pernet_operations pg_net_ops = {
3784 .init = pg_net_init,
3785 .exit = pg_net_exit,
3786 .id = &pg_net_id,
3787 .size = sizeof(struct pktgen_net),
3788};
3789
3790static int __init pg_init(void)
3791{
3792 int ret = 0;
3793
3794 pr_info("%s", version);
3795 ret = register_pernet_subsys(&pg_net_ops);
3796 if (ret)
3797 return ret;
3798 ret = register_netdevice_notifier(&pktgen_notifier_block);
3799 if (ret)
3800 unregister_pernet_subsys(&pg_net_ops);
3801
3802 return ret;
3803}
3804
3805static void __exit pg_cleanup(void)
3806{
3807 unregister_netdevice_notifier(&pktgen_notifier_block);
3808 unregister_pernet_subsys(&pg_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809}
3810
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811module_init(pg_init);
3812module_exit(pg_cleanup);
3813
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003814MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815MODULE_DESCRIPTION("Packet Generator tool");
3816MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003817MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003819MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003821MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003823MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003825MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");