blob: 508155b283ddcc73a967a2bc8068e67cb8cada7d [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
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +020072 * way.
73 * The if_list is RCU protected, and the if_lock remains to protect updating
74 * of if_list, from "add_device" as it invoked from userspace (via proc write).
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090076 * By design there should only be *one* "controlling" process. In practice
77 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070079 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090081 * Note when adding devices to a specific CPU there good idea to also assign
82 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * --ro
84 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090085 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * memleak 030710- KJP
87 *
88 * First "ranges" functionality for ipv6 030726 --ro
89 *
90 * Included flow support. 030802 ANK.
91 *
92 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090093 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
95 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
96 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090097 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * <shemminger@osdl.org> 040923
99 *
Stephen Hemmingerca9f1fd2015-02-14 13:47:54 -0500100 * Randy Dunlap fixed u64 printk compiler warning
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
102 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
103 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
104 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900105 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
107 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900108 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800110 *
111 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
112 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700113 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
114 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700115 * Fixed src_mac command to set source mac of packet to value specified in
116 * command by Adit Ranadive <adit.262@gmail.com>
117 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000119
120#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <linux/sys.h>
123#include <linux/types.h>
124#include <linux/module.h>
125#include <linux/moduleparam.h>
126#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800127#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#include <linux/sched.h>
129#include <linux/slab.h>
130#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#include <linux/unistd.h>
132#include <linux/string.h>
133#include <linux/ptrace.h>
134#include <linux/errno.h>
135#include <linux/ioport.h>
136#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800137#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700138#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700139#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#include <linux/delay.h>
141#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800142#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#include <linux/init.h>
144#include <linux/skbuff.h>
145#include <linux/netdevice.h>
146#include <linux/inet.h>
147#include <linux/inetdevice.h>
148#include <linux/rtnetlink.h>
149#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700150#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#include <linux/in.h>
152#include <linux/ip.h>
153#include <linux/ipv6.h>
154#include <linux/udp.h>
155#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700156#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800158#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800159#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700160#include <linux/prefetch.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200161#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#include <net/checksum.h>
163#include <net/ipv6.h>
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200164#include <net/udp.h>
Stephen Rothwell73d94e92013-07-29 16:21:26 +1000165#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700167#ifdef CONFIG_XFRM
168#include <net/xfrm.h>
169#endif
Cong Wang4e58a022013-01-28 19:55:53 +0000170#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#include <asm/byteorder.h>
172#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700173#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000174#include <linux/io.h>
175#include <linux/timex.h>
176#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800178#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Daniel Turull43d28b62010-06-09 22:49:57 +0000180#define VERSION "2.74"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800182#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800183#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Joe Perchesf9467ea2010-06-21 12:29:14 +0000185#define func_enter() pr_debug("entering %s\n", __func__);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800188#define F_IPSRC_RND (1<<0) /* IP-Src Random */
189#define F_IPDST_RND (1<<1) /* IP-Dst Random */
190#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
191#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
192#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
193#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
194#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
195#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800196#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700197#define F_VID_RND (1<<9) /* Random VLAN ID */
198#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700199#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700200#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700201#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700202#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000203#define F_NODE (1<<15) /* Node memory alloc*/
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200204#define F_UDPCSUM (1<<16) /* Include UDP checksum */
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +0200205#define F_NO_TIMESTAMP (1<<17) /* Don't timestamp packets (default TS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000208#define T_STOP (1<<0) /* Stop run */
209#define T_RUN (1<<1) /* Start run */
210#define T_REMDEVALL (1<<2) /* Remove all devs */
211#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200213/* If lock -- protects updating of if_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#define if_lock(t) spin_lock(&(t->if_lock));
215#define if_unlock(t) spin_unlock(&(t->if_lock));
216
217/* Used to help with determining the pkts on receive */
218#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700219#define PG_PROC_DIR "pktgen"
220#define PGCTRL "pgctrl"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222#define MAX_CFLOWS 65536
223
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700224#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
225#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
226
Luiz Capitulino222f1802006-03-20 22:16:13 -0800227struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800228 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800229 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700230#ifdef CONFIG_XFRM
231 struct xfrm_state *x;
232#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700233 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700236/* flow flag bits */
237#define F_INIT (1<<0) /* flow has been initialized */
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /*
241 * Try to keep frequent/infrequent used vars. separated.
242 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800243 struct proc_dir_entry *entry; /* proc file */
244 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000245 struct list_head list; /* chaining in the thread's run-queue */
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200246 struct rcu_head rcu; /* freed by RCU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000248 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800249
250 /* If min != max, then we will either do a linear iteration, or
251 * we will do a random selection from within the range.
252 */
253 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800254 int removal_mark; /* non-zero => the device is marked for
255 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Amerigo Wang68bf9f02012-10-09 17:48:17 +0000257 int min_pkt_size;
258 int max_pkt_size;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700259 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800260 int nfrags;
Eric Dumazet26ad7872011-01-25 13:26:05 -0800261 struct page *page;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000262 u64 delay; /* nano-seconds */
263
Luiz Capitulino222f1802006-03-20 22:16:13 -0800264 __u64 count; /* Default No packets to send */
265 __u64 sofar; /* How many pkts we've sent so far */
266 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800267 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Luiz Capitulino222f1802006-03-20 22:16:13 -0800269 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Luiz Capitulino222f1802006-03-20 22:16:13 -0800271 __u64 allocated_skbs;
272 __u32 clone_count;
273 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000274 * Or a failed transmit of some sort?
275 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800276 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000277 ktime_t next_tx;
278 ktime_t started_at;
279 ktime_t stopped_at;
280 u64 idle_acc; /* nano-seconds */
281
Luiz Capitulino222f1802006-03-20 22:16:13 -0800282 __u32 seq_num;
283
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000284 int clone_skb; /*
285 * Use multiple SKBs during packet gen.
286 * If this number is greater than 1, then
287 * that many copies of the same packet will be
288 * sent before a new packet is allocated.
289 * If you want to send 1024 identical packets
290 * before creating a new packet,
291 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800292 */
293
294 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
295 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
296 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
297 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
298
299 struct in6_addr in6_saddr;
300 struct in6_addr in6_daddr;
301 struct in6_addr cur_in6_daddr;
302 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800304 struct in6_addr min_in6_daddr;
305 struct in6_addr max_in6_daddr;
306 struct in6_addr min_in6_saddr;
307 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Luiz Capitulino222f1802006-03-20 22:16:13 -0800309 /* If we're doing ranges, random or incremental, then this
310 * defines the min/max for those ranges.
311 */
Al Viro252e3342006-11-14 20:48:11 -0800312 __be32 saddr_min; /* inclusive, source IP address */
313 __be32 saddr_max; /* exclusive, source IP address */
314 __be32 daddr_min; /* inclusive, dest IP address */
315 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Luiz Capitulino222f1802006-03-20 22:16:13 -0800317 __u16 udp_src_min; /* inclusive, source UDP port */
318 __u16 udp_src_max; /* exclusive, source UDP port */
319 __u16 udp_dst_min; /* inclusive, dest UDP port */
320 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700322 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000323 __u8 tos; /* six MSB of (former) IPv4 TOS
324 are for dscp codepoint */
325 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
326 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700327
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800328 /* MPLS */
Eric Dumazet95c96172012-04-15 05:58:06 +0000329 unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800330 __be32 labels[MAX_MPLS_LABELS];
331
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700332 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
333 __u8 vlan_p;
334 __u8 vlan_cfi;
335 __u16 vlan_id; /* 0xffff means no vlan tag */
336
337 __u8 svlan_p;
338 __u8 svlan_cfi;
339 __u16 svlan_id; /* 0xffff means no svlan tag */
340
Luiz Capitulino222f1802006-03-20 22:16:13 -0800341 __u32 src_mac_count; /* How many MACs to iterate through */
342 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Luiz Capitulino222f1802006-03-20 22:16:13 -0800344 unsigned char dst_mac[ETH_ALEN];
345 unsigned char src_mac[ETH_ALEN];
346
347 __u32 cur_dst_mac_offset;
348 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800349 __be32 cur_saddr;
350 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700351 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800352 __u16 cur_udp_dst;
353 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700354 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800355 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800356 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800357
358 __u8 hh[14];
359 /* = {
360 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
361
362 We fill in SRC address later
363 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
364 0x08, 0x00
365 };
366 */
367 __u16 pad; /* pad out the hh struct to an even 16 bytes */
368
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000369 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800370 * are transmitting the same one multiple times
371 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000372 struct net_device *odev; /* The out-going device.
373 * Note that the device should have it's
374 * pg_info pointer pointing back to this
375 * device.
376 * Set when the user specifies the out-going
377 * device name (not when the inject is
378 * started as it used to do.)
379 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000380 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 struct flow_state *flows;
Eric Dumazet95c96172012-04-15 05:58:06 +0000382 unsigned int cflows; /* Concurrent flows (config) */
383 unsigned int lflow; /* Flow length (config) */
384 unsigned int nflows; /* accumulated flows (stats) */
385 unsigned int curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700386
387 u16 queue_map_min;
388 u16 queue_map_max;
John Fastabend9e50e3a2010-11-16 19:12:28 +0000389 __u32 skb_priority; /* skb priority field */
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700390 unsigned int burst; /* number of duplicated packets to burst */
Robert Olssone99b99b2010-03-18 22:44:30 +0000391 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700392
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700393#ifdef CONFIG_XFRM
394 __u8 ipsmode; /* IPSEC mode (config) */
395 __u8 ipsproto; /* IPSEC type (config) */
Fan Dude4aee72014-01-03 11:18:30 +0800396 __u32 spi;
Fan Ducf93d472014-01-03 11:18:31 +0800397 struct dst_entry dst;
398 struct dst_ops dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700399#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800400 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401};
402
403struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800404 __be32 pgh_magic;
405 __be32 seq_num;
406 __be32 tv_sec;
407 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408};
409
Cong Wang4e58a022013-01-28 19:55:53 +0000410
411static int pg_net_id __read_mostly;
412
413struct pktgen_net {
414 struct net *net;
415 struct proc_dir_entry *proc_dir;
416 struct list_head pktgen_threads;
417 bool pktgen_exiting;
418};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000421 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800422 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800423 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800424 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800425 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000427 /* Field for thread to receive "posted" events terminate,
428 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800429
430 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int cpu;
432
Luiz Capitulino222f1802006-03-20 22:16:13 -0800433 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700434 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000435 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436};
437
438#define REMOVE 1
439#define FIND 0
440
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000441static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000442 "Packet Generator for packet performance testing. "
443 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Luiz Capitulino222f1802006-03-20 22:16:13 -0800445static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
446static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
447static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800448 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000450static void pktgen_run_all_threads(struct pktgen_net *pn);
451static void pktgen_reset_all_threads(struct pktgen_net *pn);
452static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000453
Luiz Capitulino222f1802006-03-20 22:16:13 -0800454static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000458static int pg_count_d __read_mostly = 1000;
459static int pg_delay_d __read_mostly;
460static int pg_clone_skb_d __read_mostly;
461static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Luiz Capitulino222fa072006-03-20 22:24:27 -0800463static DEFINE_MUTEX(pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465static struct notifier_block pktgen_notifier_block = {
466 .notifier_call = pktgen_device_event,
467};
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900470 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 *
472 */
473
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700474static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800475{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000476 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000480static ssize_t pgctrl_write(struct file *file, const char __user *buf,
481 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700483 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000484 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Mathias Krause09455742014-02-21 21:38:35 +0100486 if (!capable(CAP_NET_ADMIN))
487 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Mathias Krause20b0c712014-02-21 21:38:34 +0100489 if (count == 0)
490 return -EINVAL;
491
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700492 if (count > sizeof(data))
493 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Mathias Krause09455742014-02-21 21:38:35 +0100495 if (copy_from_user(data, buf, count))
496 return -EFAULT;
497
Mathias Krause20b0c712014-02-21 21:38:34 +0100498 data[count - 1] = 0; /* Strip trailing '\n' and terminate string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Luiz Capitulino222f1802006-03-20 22:16:13 -0800500 if (!strcmp(data, "stop"))
Cong Wang4e58a022013-01-28 19:55:53 +0000501 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Luiz Capitulino222f1802006-03-20 22:16:13 -0800503 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000504 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800506 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000507 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800508
Luiz Capitulino222f1802006-03-20 22:16:13 -0800509 else
Joe Perches294a0b72014-09-09 21:17:30 -0700510 pr_warn("Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Mathias Krause09455742014-02-21 21:38:35 +0100512 return count;
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
Thomas Graf97dc48e2014-05-16 23:28:54 +0200580 seq_puts(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;
Thomas Graf97dc48e2014-05-16 23:28:54 +0200595 seq_puts(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
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700617 if (pkt_dev->burst > 1)
618 seq_printf(seq, " burst: %d\n", pkt_dev->burst);
619
Robert Olssone99b99b2010-03-18 22:44:30 +0000620 if (pkt_dev->node >= 0)
621 seq_printf(seq, " node: %d\n", pkt_dev->node);
622
Thomas Graf97dc48e2014-05-16 23:28:54 +0200623 seq_puts(seq, " Flags: ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800624
Luiz Capitulino222f1802006-03-20 22:16:13 -0800625 if (pkt_dev->flags & F_IPV6)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200626 seq_puts(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Luiz Capitulino222f1802006-03-20 22:16:13 -0800628 if (pkt_dev->flags & F_IPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200629 seq_puts(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Luiz Capitulino222f1802006-03-20 22:16:13 -0800631 if (pkt_dev->flags & F_IPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200632 seq_puts(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Luiz Capitulino222f1802006-03-20 22:16:13 -0800634 if (pkt_dev->flags & F_TXSIZE_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200635 seq_puts(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Luiz Capitulino222f1802006-03-20 22:16:13 -0800637 if (pkt_dev->flags & F_UDPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200638 seq_puts(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Luiz Capitulino222f1802006-03-20 22:16:13 -0800640 if (pkt_dev->flags & F_UDPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200641 seq_puts(seq, "UDPDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800642
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200643 if (pkt_dev->flags & F_UDPCSUM)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200644 seq_puts(seq, "UDPCSUM ");
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200645
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +0200646 if (pkt_dev->flags & F_NO_TIMESTAMP)
647 seq_puts(seq, "NO_TIMESTAMP ");
648
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800649 if (pkt_dev->flags & F_MPLS_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200650 seq_puts(seq, "MPLS_RND ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800651
Robert Olsson45b270f2007-08-28 15:45:55 -0700652 if (pkt_dev->flags & F_QUEUE_MAP_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200653 seq_puts(seq, "QUEUE_MAP_RND ");
Robert Olsson45b270f2007-08-28 15:45:55 -0700654
Robert Olssone6fce5b2008-08-07 02:23:01 -0700655 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200656 seq_puts(seq, "QUEUE_MAP_CPU ");
Robert Olssone6fce5b2008-08-07 02:23:01 -0700657
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700658 if (pkt_dev->cflows) {
659 if (pkt_dev->flags & F_FLOW_SEQ)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200660 seq_puts(seq, "FLOW_SEQ "); /*in sequence flows*/
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700661 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200662 seq_puts(seq, "FLOW_RND ");
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700663 }
664
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700665#ifdef CONFIG_XFRM
Fan Du81013282014-01-03 11:18:33 +0800666 if (pkt_dev->flags & F_IPSEC_ON) {
Thomas Graf97dc48e2014-05-16 23:28:54 +0200667 seq_puts(seq, "IPSEC ");
Fan Du81013282014-01-03 11:18:33 +0800668 if (pkt_dev->spi)
669 seq_printf(seq, "spi:%u", pkt_dev->spi);
670 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700671#endif
672
Luiz Capitulino222f1802006-03-20 22:16:13 -0800673 if (pkt_dev->flags & F_MACSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200674 seq_puts(seq, "MACSRC_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800675
676 if (pkt_dev->flags & F_MACDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200677 seq_puts(seq, "MACDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800678
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700679 if (pkt_dev->flags & F_VID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200680 seq_puts(seq, "VID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700681
682 if (pkt_dev->flags & F_SVID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200683 seq_puts(seq, "SVID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700684
Robert Olssone99b99b2010-03-18 22:44:30 +0000685 if (pkt_dev->flags & F_NODE)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200686 seq_puts(seq, "NODE_ALLOC ");
Robert Olssone99b99b2010-03-18 22:44:30 +0000687
Luiz Capitulino222f1802006-03-20 22:16:13 -0800688 seq_puts(seq, "\n");
689
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000690 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000691 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000692 idle = pkt_dev->idle_acc;
693 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800694
695 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000696 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800697 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000698 (unsigned long long)pkt_dev->errors);
699
700 seq_printf(seq,
701 " started: %lluus stopped: %lluus idle: %lluus\n",
702 (unsigned long long) ktime_to_us(pkt_dev->started_at),
703 (unsigned long long) ktime_to_us(stopped),
704 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800705
706 seq_printf(seq,
707 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700708 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
709 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Luiz Capitulino222f1802006-03-20 22:16:13 -0800711 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000712 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
713 &pkt_dev->cur_in6_saddr,
714 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800715 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000716 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
717 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Luiz Capitulino222f1802006-03-20 22:16:13 -0800719 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700720 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Robert Olsson45b270f2007-08-28 15:45:55 -0700722 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
723
Luiz Capitulino222f1802006-03-20 22:16:13 -0800724 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800727 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200729 seq_puts(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800734
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000735static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
736 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800737{
738 int i = 0;
739 *num = 0;
740
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700741 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000742 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800743 char c;
744 *num <<= 4;
745 if (get_user(c, &user_buffer[i]))
746 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000747 value = hex_to_bin(c);
748 if (value >= 0)
749 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800750 else
751 break;
752 }
753 return i;
754}
755
Luiz Capitulino222f1802006-03-20 22:16:13 -0800756static int count_trail_chars(const char __user * user_buffer,
757 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 int i;
760
761 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800762 char c;
763 if (get_user(c, &user_buffer[i]))
764 return -EFAULT;
765 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 case '\"':
767 case '\n':
768 case '\r':
769 case '\t':
770 case ' ':
771 case '=':
772 break;
773 default:
774 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777done:
778 return i;
779}
780
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000781static long num_arg(const char __user *user_buffer, unsigned long maxlen,
782 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000784 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800786
Paul Gortmakerd6182222010-10-18 12:14:44 +0000787 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800788 char c;
789 if (get_user(c, &user_buffer[i]))
790 return -EFAULT;
791 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800793 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 } else
795 break;
796 }
797 return i;
798}
799
Luiz Capitulino222f1802006-03-20 22:16:13 -0800800static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000802 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Paul Gortmakerd6182222010-10-18 12:14:44 +0000804 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800805 char c;
806 if (get_user(c, &user_buffer[i]))
807 return -EFAULT;
808 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 case '\"':
810 case '\n':
811 case '\r':
812 case '\t':
813 case ' ':
814 goto done_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 default:
816 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return i;
821}
822
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800823static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
824{
Eric Dumazet95c96172012-04-15 05:58:06 +0000825 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800826 char c;
827 ssize_t i = 0;
828 int len;
829
830 pkt_dev->nr_labels = 0;
831 do {
832 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700833 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800834 if (len <= 0)
835 return len;
836 pkt_dev->labels[n] = htonl(tmp);
837 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
838 pkt_dev->flags |= F_MPLS_RND;
839 i += len;
840 if (get_user(c, &buffer[i]))
841 return -EFAULT;
842 i++;
843 n++;
844 if (n >= MAX_MPLS_LABELS)
845 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700846 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800847
848 pkt_dev->nr_labels = n;
849 return i;
850}
851
Luiz Capitulino222f1802006-03-20 22:16:13 -0800852static ssize_t pktgen_if_write(struct file *file,
853 const char __user * user_buffer, size_t count,
854 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Joe Perches8a994a72010-07-12 10:50:23 +0000856 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800857 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000858 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 char name[16], valstr[32];
860 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800861 char *pg_result = NULL;
862 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800864
865 pg_result = &(pkt_dev->result[0]);
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (count < 1) {
Joe Perches294a0b72014-09-09 21:17:30 -0700868 pr_warn("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return -EINVAL;
870 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800871
Paul Gortmakerd6182222010-10-18 12:14:44 +0000872 max = count;
873 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800874 if (tmp < 0) {
Joe Perches294a0b72014-09-09 21:17:30 -0700875 pr_warn("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800876 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000878 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 /* Read variable name */
881
882 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000883 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800884 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800887 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return -EFAULT;
889 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800890
891 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800893 if (len < 0)
894 return len;
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 i += len;
897
898 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000899 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700900 char tb[copy + 1];
901 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700903 tb[copy] = 0;
Joe Perchesf342cda2012-05-16 17:50:41 +0000904 pr_debug("%s,%lu buffer -:%s:-\n",
905 name, (unsigned long)count, tb);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 if (!strcmp(name, "min_pkt_size")) {
909 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000910 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800911 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800914 if (value < 14 + 20 + 8)
915 value = 14 + 20 + 8;
916 if (value != pkt_dev->min_pkt_size) {
917 pkt_dev->min_pkt_size = value;
918 pkt_dev->cur_pkt_size = value;
919 }
920 sprintf(pg_result, "OK: min_pkt_size=%u",
921 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return count;
923 }
924
Luiz Capitulino222f1802006-03-20 22:16:13 -0800925 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000927 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800928 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800931 if (value < 14 + 20 + 8)
932 value = 14 + 20 + 8;
933 if (value != pkt_dev->max_pkt_size) {
934 pkt_dev->max_pkt_size = value;
935 pkt_dev->cur_pkt_size = value;
936 }
937 sprintf(pg_result, "OK: max_pkt_size=%u",
938 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return count;
940 }
941
Luiz Capitulino222f1802006-03-20 22:16:13 -0800942 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 if (!strcmp(name, "pkt_size")) {
945 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000946 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800947 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800950 if (value < 14 + 20 + 8)
951 value = 14 + 20 + 8;
952 if (value != pkt_dev->min_pkt_size) {
953 pkt_dev->min_pkt_size = value;
954 pkt_dev->max_pkt_size = value;
955 pkt_dev->cur_pkt_size = value;
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
958 return count;
959 }
960
Luiz Capitulino222f1802006-03-20 22:16:13 -0800961 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000963 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800964 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800967 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 sprintf(pg_result, "OK: debug=%u", debug);
969 return count;
970 }
971
Luiz Capitulino222f1802006-03-20 22:16:13 -0800972 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000974 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800975 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 i += len;
978 pkt_dev->nfrags = value;
979 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
980 return count;
981 }
982 if (!strcmp(name, "delay")) {
983 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000984 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800985 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000988 if (value == 0x7FFFFFFF)
989 pkt_dev->delay = ULLONG_MAX;
990 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000991 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000992
993 sprintf(pg_result, "OK: delay=%llu",
994 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return count;
996 }
Daniel Turull43d28b62010-06-09 22:49:57 +0000997 if (!strcmp(name, "rate")) {
998 len = num_arg(&user_buffer[i], 10, &value);
999 if (len < 0)
1000 return len;
1001
1002 i += len;
1003 if (!value)
1004 return len;
1005 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
1006 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001007 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001008
1009 sprintf(pg_result, "OK: rate=%lu", value);
1010 return count;
1011 }
1012 if (!strcmp(name, "ratep")) {
1013 len = num_arg(&user_buffer[i], 10, &value);
1014 if (len < 0)
1015 return len;
1016
1017 i += len;
1018 if (!value)
1019 return len;
1020 pkt_dev->delay = NSEC_PER_SEC/value;
1021 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001022 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001023
1024 sprintf(pg_result, "OK: rate=%lu", value);
1025 return count;
1026 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001027 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001029 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001030 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001033 if (value != pkt_dev->udp_src_min) {
1034 pkt_dev->udp_src_min = value;
1035 pkt_dev->cur_udp_src = value;
1036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1038 return count;
1039 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001040 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001042 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001043 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001046 if (value != pkt_dev->udp_dst_min) {
1047 pkt_dev->udp_dst_min = value;
1048 pkt_dev->cur_udp_dst = value;
1049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1051 return count;
1052 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001053 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001055 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001056 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001059 if (value != pkt_dev->udp_src_max) {
1060 pkt_dev->udp_src_max = value;
1061 pkt_dev->cur_udp_src = value;
1062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1064 return count;
1065 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001066 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001068 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001069 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001072 if (value != pkt_dev->udp_dst_max) {
1073 pkt_dev->udp_dst_max = value;
1074 pkt_dev->cur_udp_dst = value;
1075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1077 return count;
1078 }
1079 if (!strcmp(name, "clone_skb")) {
1080 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001081 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001082 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001083 if ((value > 0) &&
1084 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
1085 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001087 pkt_dev->clone_skb = value;
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1090 return count;
1091 }
1092 if (!strcmp(name, "count")) {
1093 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001094 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001095 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 i += len;
1098 pkt_dev->count = value;
1099 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001100 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return count;
1102 }
1103 if (!strcmp(name, "src_mac_count")) {
1104 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001105 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001106 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 i += len;
1109 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001110 pkt_dev->src_mac_count = value;
1111 pkt_dev->cur_src_mac_offset = 0;
1112 }
1113 sprintf(pg_result, "OK: src_mac_count=%d",
1114 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return count;
1116 }
1117 if (!strcmp(name, "dst_mac_count")) {
1118 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001119 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001120 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 i += len;
1123 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001124 pkt_dev->dst_mac_count = value;
1125 pkt_dev->cur_dst_mac_offset = 0;
1126 }
1127 sprintf(pg_result, "OK: dst_mac_count=%d",
1128 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return count;
1130 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001131 if (!strcmp(name, "burst")) {
1132 len = num_arg(&user_buffer[i], 10, &value);
1133 if (len < 0)
1134 return len;
1135
1136 i += len;
Eric Dumazet52d6c8c2015-02-22 17:03:41 -08001137 if ((value > 1) &&
1138 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
1139 return -ENOTSUPP;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001140 pkt_dev->burst = value < 1 ? 1 : value;
1141 sprintf(pg_result, "OK: burst=%d", pkt_dev->burst);
1142 return count;
1143 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001144 if (!strcmp(name, "node")) {
1145 len = num_arg(&user_buffer[i], 10, &value);
1146 if (len < 0)
1147 return len;
1148
1149 i += len;
1150
1151 if (node_possible(value)) {
1152 pkt_dev->node = value;
1153 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001154 if (pkt_dev->page) {
1155 put_page(pkt_dev->page);
1156 pkt_dev->page = NULL;
1157 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001158 }
1159 else
1160 sprintf(pg_result, "ERROR: node not possible");
1161 return count;
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001164 char f[32];
1165 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001167 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001168 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (copy_from_user(f, &user_buffer[i], len))
1171 return -EFAULT;
1172 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001173 if (strcmp(f, "IPSRC_RND") == 0)
1174 pkt_dev->flags |= F_IPSRC_RND;
1175
1176 else if (strcmp(f, "!IPSRC_RND") == 0)
1177 pkt_dev->flags &= ~F_IPSRC_RND;
1178
1179 else if (strcmp(f, "TXSIZE_RND") == 0)
1180 pkt_dev->flags |= F_TXSIZE_RND;
1181
1182 else if (strcmp(f, "!TXSIZE_RND") == 0)
1183 pkt_dev->flags &= ~F_TXSIZE_RND;
1184
1185 else if (strcmp(f, "IPDST_RND") == 0)
1186 pkt_dev->flags |= F_IPDST_RND;
1187
1188 else if (strcmp(f, "!IPDST_RND") == 0)
1189 pkt_dev->flags &= ~F_IPDST_RND;
1190
1191 else if (strcmp(f, "UDPSRC_RND") == 0)
1192 pkt_dev->flags |= F_UDPSRC_RND;
1193
1194 else if (strcmp(f, "!UDPSRC_RND") == 0)
1195 pkt_dev->flags &= ~F_UDPSRC_RND;
1196
1197 else if (strcmp(f, "UDPDST_RND") == 0)
1198 pkt_dev->flags |= F_UDPDST_RND;
1199
1200 else if (strcmp(f, "!UDPDST_RND") == 0)
1201 pkt_dev->flags &= ~F_UDPDST_RND;
1202
1203 else if (strcmp(f, "MACSRC_RND") == 0)
1204 pkt_dev->flags |= F_MACSRC_RND;
1205
1206 else if (strcmp(f, "!MACSRC_RND") == 0)
1207 pkt_dev->flags &= ~F_MACSRC_RND;
1208
1209 else if (strcmp(f, "MACDST_RND") == 0)
1210 pkt_dev->flags |= F_MACDST_RND;
1211
1212 else if (strcmp(f, "!MACDST_RND") == 0)
1213 pkt_dev->flags &= ~F_MACDST_RND;
1214
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001215 else if (strcmp(f, "MPLS_RND") == 0)
1216 pkt_dev->flags |= F_MPLS_RND;
1217
1218 else if (strcmp(f, "!MPLS_RND") == 0)
1219 pkt_dev->flags &= ~F_MPLS_RND;
1220
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001221 else if (strcmp(f, "VID_RND") == 0)
1222 pkt_dev->flags |= F_VID_RND;
1223
1224 else if (strcmp(f, "!VID_RND") == 0)
1225 pkt_dev->flags &= ~F_VID_RND;
1226
1227 else if (strcmp(f, "SVID_RND") == 0)
1228 pkt_dev->flags |= F_SVID_RND;
1229
1230 else if (strcmp(f, "!SVID_RND") == 0)
1231 pkt_dev->flags &= ~F_SVID_RND;
1232
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001233 else if (strcmp(f, "FLOW_SEQ") == 0)
1234 pkt_dev->flags |= F_FLOW_SEQ;
1235
Robert Olsson45b270f2007-08-28 15:45:55 -07001236 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1237 pkt_dev->flags |= F_QUEUE_MAP_RND;
1238
1239 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1240 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001241
1242 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1243 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1244
1245 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1246 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001247#ifdef CONFIG_XFRM
1248 else if (strcmp(f, "IPSEC") == 0)
1249 pkt_dev->flags |= F_IPSEC_ON;
1250#endif
1251
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001252 else if (strcmp(f, "!IPV6") == 0)
1253 pkt_dev->flags &= ~F_IPV6;
1254
Robert Olssone99b99b2010-03-18 22:44:30 +00001255 else if (strcmp(f, "NODE_ALLOC") == 0)
1256 pkt_dev->flags |= F_NODE;
1257
1258 else if (strcmp(f, "!NODE_ALLOC") == 0)
1259 pkt_dev->flags &= ~F_NODE;
1260
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001261 else if (strcmp(f, "UDPCSUM") == 0)
1262 pkt_dev->flags |= F_UDPCSUM;
1263
1264 else if (strcmp(f, "!UDPCSUM") == 0)
1265 pkt_dev->flags &= ~F_UDPCSUM;
1266
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001267 else if (strcmp(f, "NO_TIMESTAMP") == 0)
1268 pkt_dev->flags |= F_NO_TIMESTAMP;
1269
Luiz Capitulino222f1802006-03-20 22:16:13 -08001270 else {
1271 sprintf(pg_result,
1272 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1273 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001274 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001275 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
1276 "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
1277 "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001278 "NO_TIMESTAMP, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001279#ifdef CONFIG_XFRM
1280 "IPSEC, "
1281#endif
1282 "NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001283 return count;
1284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1286 return count;
1287 }
1288 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1289 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001290 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001291 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Luiz Capitulino222f1802006-03-20 22:16:13 -08001293 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001295 buf[len] = 0;
1296 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1297 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1298 strncpy(pkt_dev->dst_min, buf, len);
1299 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1300 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1301 }
1302 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001303 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001304 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1306 return count;
1307 }
1308 if (!strcmp(name, "dst_max")) {
1309 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001310 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001311 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Luiz Capitulino222f1802006-03-20 22:16:13 -08001314 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return -EFAULT;
1316
Luiz Capitulino222f1802006-03-20 22:16:13 -08001317 buf[len] = 0;
1318 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1319 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1320 strncpy(pkt_dev->dst_max, buf, len);
1321 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1322 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1323 }
1324 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001325 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 i += len;
1327 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1328 return count;
1329 }
1330 if (!strcmp(name, "dst6")) {
1331 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001332 if (len < 0)
1333 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 pkt_dev->flags |= F_IPV6;
1336
Luiz Capitulino222f1802006-03-20 22:16:13 -08001337 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001339 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Amerigo Wangc468fb12012-10-09 17:48:20 +00001341 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001342 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001344 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Luiz Capitulino222f1802006-03-20 22:16:13 -08001346 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001347 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Luiz Capitulino222f1802006-03-20 22:16:13 -08001349 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 sprintf(pg_result, "OK: dst6=%s", buf);
1351 return count;
1352 }
1353 if (!strcmp(name, "dst6_min")) {
1354 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001355 if (len < 0)
1356 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 pkt_dev->flags |= F_IPV6;
1359
Luiz Capitulino222f1802006-03-20 22:16:13 -08001360 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001362 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Amerigo Wangc468fb12012-10-09 17:48:20 +00001364 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001365 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001367 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001368 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001369 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Luiz Capitulino222f1802006-03-20 22:16:13 -08001371 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 sprintf(pg_result, "OK: dst6_min=%s", buf);
1373 return count;
1374 }
1375 if (!strcmp(name, "dst6_max")) {
1376 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001377 if (len < 0)
1378 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 pkt_dev->flags |= F_IPV6;
1381
Luiz Capitulino222f1802006-03-20 22:16:13 -08001382 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001384 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Amerigo Wangc468fb12012-10-09 17:48:20 +00001386 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001387 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Luiz Capitulino222f1802006-03-20 22:16:13 -08001389 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001390 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Luiz Capitulino222f1802006-03-20 22:16:13 -08001392 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 sprintf(pg_result, "OK: dst6_max=%s", buf);
1394 return count;
1395 }
1396 if (!strcmp(name, "src6")) {
1397 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001398 if (len < 0)
1399 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 pkt_dev->flags |= F_IPV6;
1402
Luiz Capitulino222f1802006-03-20 22:16:13 -08001403 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001405 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Amerigo Wangc468fb12012-10-09 17:48:20 +00001407 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001408 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001410 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Luiz Capitulino222f1802006-03-20 22:16:13 -08001412 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001413 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001414
1415 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 sprintf(pg_result, "OK: src6=%s", buf);
1417 return count;
1418 }
1419 if (!strcmp(name, "src_min")) {
1420 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001421 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001422 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001423
Luiz Capitulino222f1802006-03-20 22:16:13 -08001424 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001426 buf[len] = 0;
1427 if (strcmp(buf, pkt_dev->src_min) != 0) {
1428 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1429 strncpy(pkt_dev->src_min, buf, len);
1430 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1431 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1432 }
1433 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001434 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 i += len;
1436 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1437 return count;
1438 }
1439 if (!strcmp(name, "src_max")) {
1440 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001441 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001442 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001443
Luiz Capitulino222f1802006-03-20 22:16:13 -08001444 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001446 buf[len] = 0;
1447 if (strcmp(buf, pkt_dev->src_max) != 0) {
1448 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1449 strncpy(pkt_dev->src_max, buf, len);
1450 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1451 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1452 }
1453 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001454 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 i += len;
1456 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1457 return count;
1458 }
1459 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001461 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001462 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001465 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001468 if (!mac_pton(valstr, pkt_dev->dst_mac))
1469 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001471 ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001472
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001473 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return count;
1475 }
1476 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001478 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001479 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001482 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001485 if (!mac_pton(valstr, pkt_dev->src_mac))
1486 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001487 /* Set up Src MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001488 ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001489
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001490 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return count;
1492 }
1493
Luiz Capitulino222f1802006-03-20 22:16:13 -08001494 if (!strcmp(name, "clear_counters")) {
1495 pktgen_clear_counters(pkt_dev);
1496 sprintf(pg_result, "OK: Clearing counters.\n");
1497 return count;
1498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 if (!strcmp(name, "flows")) {
1501 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001502 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001503 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 i += len;
1506 if (value > MAX_CFLOWS)
1507 value = MAX_CFLOWS;
1508
1509 pkt_dev->cflows = value;
1510 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1511 return count;
1512 }
Fan Du6bae9192014-01-10 14:39:13 +08001513#ifdef CONFIG_XFRM
Fan Dude4aee72014-01-03 11:18:30 +08001514 if (!strcmp(name, "spi")) {
1515 len = num_arg(&user_buffer[i], 10, &value);
1516 if (len < 0)
1517 return len;
1518
1519 i += len;
1520 pkt_dev->spi = value;
1521 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1522 return count;
1523 }
Fan Du6bae9192014-01-10 14:39:13 +08001524#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (!strcmp(name, "flowlen")) {
1526 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001527 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001528 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 i += len;
1531 pkt_dev->lflow = value;
1532 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1533 return count;
1534 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001535
Robert Olsson45b270f2007-08-28 15:45:55 -07001536 if (!strcmp(name, "queue_map_min")) {
1537 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001538 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001539 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001540
Robert Olsson45b270f2007-08-28 15:45:55 -07001541 i += len;
1542 pkt_dev->queue_map_min = value;
1543 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1544 return count;
1545 }
1546
1547 if (!strcmp(name, "queue_map_max")) {
1548 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001549 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001550 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001551
Robert Olsson45b270f2007-08-28 15:45:55 -07001552 i += len;
1553 pkt_dev->queue_map_max = value;
1554 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1555 return count;
1556 }
1557
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001558 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001559 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001560
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001561 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001562 if (len < 0)
1563 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001564 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001565 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001566 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001567 cnt += sprintf(pg_result + cnt,
1568 "%08x%s", ntohl(pkt_dev->labels[n]),
1569 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001570
1571 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1572 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1573 pkt_dev->svlan_id = 0xffff;
1574
1575 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001576 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001577 }
1578 return count;
1579 }
1580
1581 if (!strcmp(name, "vlan_id")) {
1582 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001583 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001584 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001585
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001586 i += len;
1587 if (value <= 4095) {
1588 pkt_dev->vlan_id = value; /* turn on VLAN */
1589
1590 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001591 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001592
1593 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001594 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001595
1596 pkt_dev->nr_labels = 0; /* turn off MPLS */
1597 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1598 } else {
1599 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1600 pkt_dev->svlan_id = 0xffff;
1601
1602 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001603 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001604 }
1605 return count;
1606 }
1607
1608 if (!strcmp(name, "vlan_p")) {
1609 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001610 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001611 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001612
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001613 i += len;
1614 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1615 pkt_dev->vlan_p = value;
1616 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1617 } else {
1618 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1619 }
1620 return count;
1621 }
1622
1623 if (!strcmp(name, "vlan_cfi")) {
1624 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001625 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001626 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001627
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001628 i += len;
1629 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1630 pkt_dev->vlan_cfi = value;
1631 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1632 } else {
1633 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1634 }
1635 return count;
1636 }
1637
1638 if (!strcmp(name, "svlan_id")) {
1639 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001640 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001641 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001642
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001643 i += len;
1644 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1645 pkt_dev->svlan_id = value; /* turn on SVLAN */
1646
1647 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001648 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001649
1650 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001651 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001652
1653 pkt_dev->nr_labels = 0; /* turn off MPLS */
1654 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1655 } else {
1656 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1657 pkt_dev->svlan_id = 0xffff;
1658
1659 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001660 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001661 }
1662 return count;
1663 }
1664
1665 if (!strcmp(name, "svlan_p")) {
1666 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001667 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001668 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001669
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001670 i += len;
1671 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1672 pkt_dev->svlan_p = value;
1673 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1674 } else {
1675 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1676 }
1677 return count;
1678 }
1679
1680 if (!strcmp(name, "svlan_cfi")) {
1681 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001682 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001683 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001684
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001685 i += len;
1686 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1687 pkt_dev->svlan_cfi = value;
1688 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1689 } else {
1690 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1691 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001692 return count;
1693 }
1694
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001695 if (!strcmp(name, "tos")) {
1696 __u32 tmp_value = 0;
1697 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001698 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001699 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001700
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001701 i += len;
1702 if (len == 2) {
1703 pkt_dev->tos = tmp_value;
1704 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1705 } else {
1706 sprintf(pg_result, "ERROR: tos must be 00-ff");
1707 }
1708 return count;
1709 }
1710
1711 if (!strcmp(name, "traffic_class")) {
1712 __u32 tmp_value = 0;
1713 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001714 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001715 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001716
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001717 i += len;
1718 if (len == 2) {
1719 pkt_dev->traffic_class = tmp_value;
1720 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1721 } else {
1722 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1723 }
1724 return count;
1725 }
1726
John Fastabend9e50e3a2010-11-16 19:12:28 +00001727 if (!strcmp(name, "skb_priority")) {
1728 len = num_arg(&user_buffer[i], 9, &value);
1729 if (len < 0)
1730 return len;
1731
1732 i += len;
1733 pkt_dev->skb_priority = value;
1734 sprintf(pg_result, "OK: skb_priority=%i",
1735 pkt_dev->skb_priority);
1736 return count;
1737 }
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1740 return -EINVAL;
1741}
1742
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001743static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Al Virod9dda782013-03-31 18:16:14 -04001745 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001746}
1747
Arjan van de Ven9a321442007-02-12 00:55:35 -08001748static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001749 .owner = THIS_MODULE,
1750 .open = pktgen_if_open,
1751 .read = seq_read,
1752 .llseek = seq_lseek,
1753 .write = pktgen_if_write,
1754 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001755};
1756
1757static int pktgen_thread_show(struct seq_file *seq, void *v)
1758{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001759 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001760 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001762 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Thomas Graf97dc48e2014-05-16 23:28:54 +02001764 seq_puts(seq, "Running: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001765
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001766 rcu_read_lock();
1767 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001768 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001769 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Thomas Graf97dc48e2014-05-16 23:28:54 +02001771 seq_puts(seq, "\nStopped: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001772
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001773 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001774 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001775 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001778 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 else
Thomas Graf97dc48e2014-05-16 23:28:54 +02001780 seq_puts(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001782 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001787static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001788 const char __user * user_buffer,
1789 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
Joe Perches8a994a72010-07-12 10:50:23 +00001791 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001792 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001793 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001795 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001798 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return -EINVAL;
1800 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001801
Paul Gortmakerd6182222010-10-18 12:14:44 +00001802 max = count;
1803 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001804 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001805 return len;
1806
Paul Gortmakerd6182222010-10-18 12:14:44 +00001807 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 /* Read variable name */
1810
1811 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001812 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001813 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 memset(name, 0, sizeof(name));
1816 if (copy_from_user(name, &user_buffer[i], len))
1817 return -EFAULT;
1818 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001819
Luiz Capitulino222f1802006-03-20 22:16:13 -08001820 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001822 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001823 return len;
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 i += len;
1826
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001827 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001828 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Luiz Capitulino222f1802006-03-20 22:16:13 -08001830 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001831 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 ret = -EINVAL;
1833 goto out;
1834 }
1835
1836 pg_result = &(t->result[0]);
1837
Luiz Capitulino222f1802006-03-20 22:16:13 -08001838 if (!strcmp(name, "add_device")) {
1839 char f[32];
1840 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001842 if (len < 0) {
1843 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 goto out;
1845 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001846 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return -EFAULT;
1848 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001849 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001850 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001851 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001852 if (!ret) {
1853 ret = count;
1854 sprintf(pg_result, "OK: add_device=%s", f);
1855 } else
1856 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 goto out;
1858 }
1859
Luiz Capitulino222f1802006-03-20 22:16:13 -08001860 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001861 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001862 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001863 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001864 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001866 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 goto out;
1868 }
1869
Luiz Capitulino222f1802006-03-20 22:16:13 -08001870 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001871 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001872 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 goto out;
1874 }
1875
1876 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001877out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return ret;
1879}
1880
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001881static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
Al Virod9dda782013-03-31 18:16:14 -04001883 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}
1885
Arjan van de Ven9a321442007-02-12 00:55:35 -08001886static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001887 .owner = THIS_MODULE,
1888 .open = pktgen_thread_open,
1889 .read = seq_read,
1890 .llseek = seq_lseek,
1891 .write = pktgen_thread_write,
1892 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001893};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001896static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1897 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
1899 struct pktgen_thread *t;
1900 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001901 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Cong Wang4e58a022013-01-28 19:55:53 +00001903 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001904 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001906 if (remove) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001907 pkt_dev->removal_mark = 1;
1908 t->control |= T_REMDEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 break;
1911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001913 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914}
1915
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001916/*
1917 * mark a device for removal
1918 */
Cong Wang4e58a022013-01-28 19:55:53 +00001919static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001922 const int max_tries = 10, msec_per_try = 125;
1923 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001924
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001925 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001926 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001927
Luiz Capitulino222f1802006-03-20 22:16:13 -08001928 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001929
Cong Wang4e58a022013-01-28 19:55:53 +00001930 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001931 if (pkt_dev == NULL)
1932 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001933
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001934 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001935 pr_debug("%s: waiting for %s to disappear....\n",
1936 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001937 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001938 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001939
1940 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001941 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1942 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001943 break;
1944 }
1945
1946 }
1947
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001948 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001949}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001950
Cong Wang4e58a022013-01-28 19:55:53 +00001951static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001952{
1953 struct pktgen_thread *t;
1954
Cong Wang4e58a022013-01-28 19:55:53 +00001955 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001956 struct pktgen_dev *pkt_dev;
1957
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001958 rcu_read_lock();
1959 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001960 if (pkt_dev->odev != dev)
1961 continue;
1962
David Howellsa8ca16e2013-04-12 17:27:28 +01001963 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001964
Alexey Dobriyan29753152009-08-28 23:34:43 -07001965 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001966 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001967 &pktgen_if_fops,
1968 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001969 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001970 pr_err("can't move proc entry for '%s'\n",
1971 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001972 break;
1973 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001974 rcu_read_unlock();
Stephen Hemminger39df2322007-03-04 16:11:51 -08001975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
Luiz Capitulino222f1802006-03-20 22:16:13 -08001978static int pktgen_device_event(struct notifier_block *unused,
1979 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Jiri Pirko351638e2013-05-28 01:30:21 +00001981 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001982 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Cong Wang4e58a022013-01-28 19:55:53 +00001984 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001985 return NOTIFY_DONE;
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 /* It is OK that we do not hold the group lock right now,
1988 * as we run under the RTNL lock.
1989 */
1990
1991 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001992 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001993 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001997 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 return NOTIFY_DONE;
2002}
2003
Cong Wang4e58a022013-01-28 19:55:53 +00002004static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
2005 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002006 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002007{
2008 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00002009 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07002010
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002011 for (i = 0; ifname[i] != '@'; i++) {
2012 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002013 break;
2014
2015 b[i] = ifname[i];
2016 }
2017 b[i] = 0;
2018
Cong Wang4e58a022013-01-28 19:55:53 +00002019 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07002020}
2021
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023/* Associate pktgen_dev with a device. */
2024
Cong Wang4e58a022013-01-28 19:55:53 +00002025static int pktgen_setup_dev(const struct pktgen_net *pn,
2026 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002027{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08002029 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 if (pkt_dev->odev) {
2033 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002034 pkt_dev->odev = NULL;
2035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Cong Wang4e58a022013-01-28 19:55:53 +00002037 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002039 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002040 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002044 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002045 err = -EINVAL;
2046 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002047 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002048 err = -ENETDOWN;
2049 } else {
2050 pkt_dev->odev = odev;
2051 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002055 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056}
2057
2058/* Read pkt_dev from the interface and set up internal pktgen_dev
2059 * structure to have the right information to create/send packets
2060 */
2061static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2062{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002063 int ntxq;
2064
Luiz Capitulino222f1802006-03-20 22:16:13 -08002065 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002066 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002067 sprintf(pkt_dev->result,
2068 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2069 return;
2070 }
2071
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002072 /* make sure that we don't pick a non-existing transmit queue */
2073 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002074
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002075 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perches294a0b72014-09-09 21:17:30 -07002076 pr_warn("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2077 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2078 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002079 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002080 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002081 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perches294a0b72014-09-09 21:17:30 -07002082 pr_warn("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2083 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2084 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002085 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002086 }
2087
Luiz Capitulino222f1802006-03-20 22:16:13 -08002088 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002090 if (is_zero_ether_addr(pkt_dev->src_mac))
Joe Perches9ea08b12014-01-20 09:52:19 -08002091 ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Luiz Capitulino222f1802006-03-20 22:16:13 -08002093 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08002094 ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Luiz Capitulino222f1802006-03-20 22:16:13 -08002096 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002097 int i, set = 0, err = 1;
2098 struct inet6_dev *idev;
2099
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002100 if (pkt_dev->min_pkt_size == 0) {
2101 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2102 + sizeof(struct udphdr)
2103 + sizeof(struct pktgen_hdr)
2104 + pkt_dev->pkt_overhead;
2105 }
2106
Luiz Capitulino222f1802006-03-20 22:16:13 -08002107 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2108 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 set = 1;
2110 break;
2111 }
2112
Luiz Capitulino222f1802006-03-20 22:16:13 -08002113 if (!set) {
2114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 /*
2116 * Use linklevel address if unconfigured.
2117 *
2118 * use ipv6_get_lladdr if/when it's get exported
2119 */
2120
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002121 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002122 idev = __in6_dev_get(pkt_dev->odev);
2123 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 struct inet6_ifaddr *ifp;
2125
2126 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002127 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2128 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002129 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002130 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 err = 0;
2132 break;
2133 }
2134 }
2135 read_unlock_bh(&idev->lock);
2136 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002137 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002138 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002139 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002141 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002142 if (pkt_dev->min_pkt_size == 0) {
2143 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2144 + sizeof(struct udphdr)
2145 + sizeof(struct pktgen_hdr)
2146 + pkt_dev->pkt_overhead;
2147 }
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 pkt_dev->saddr_min = 0;
2150 pkt_dev->saddr_max = 0;
2151 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002152
2153 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002156 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if (in_dev) {
2158 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002159 pkt_dev->saddr_min =
2160 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 pkt_dev->saddr_max = pkt_dev->saddr_min;
2162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 }
2164 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002165 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2167 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2168 }
2169
2170 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2171 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2172 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002173 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002174 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2175 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2176 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2177
Luiz Capitulino222f1802006-03-20 22:16:13 -08002178 pkt_dev->cur_dst_mac_offset = 0;
2179 pkt_dev->cur_src_mac_offset = 0;
2180 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2181 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2182 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2183 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 pkt_dev->nflows = 0;
2185}
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002188static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2189{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002190 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002191 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002192 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002193
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002194 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2195 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002196
Daniel Turull43d28b62010-06-09 22:49:57 +00002197 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002198 if (remaining <= 0) {
2199 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002200 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002201 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002202
Daniel Borkmann398f3822012-10-28 08:27:19 +00002203 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002204 if (remaining < 100000) {
2205 /* for small delays (<100us), just loop until limit is reached */
2206 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002207 end_time = ktime_get();
2208 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002209 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002210 /* see do_nanosleep */
2211 hrtimer_init_sleeper(&t, current);
2212 do {
2213 set_current_state(TASK_INTERRUPTIBLE);
2214 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2215 if (!hrtimer_active(&t.timer))
2216 t.task = NULL;
2217
2218 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002221 hrtimer_cancel(&t.timer);
2222 } while (t.task && pkt_dev->running && !signal_pending(current));
2223 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002224 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002226
2227 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002228 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002231static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2232{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002233 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002234 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2235 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2236 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2237}
2238
Stephen Hemminger648fda72009-08-27 13:55:07 +00002239static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002240{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002241 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002242}
2243
2244static inline int f_pick(struct pktgen_dev *pkt_dev)
2245{
2246 int flow = pkt_dev->curfl;
2247
2248 if (pkt_dev->flags & F_FLOW_SEQ) {
2249 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2250 /* reset time */
2251 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002252 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002253 pkt_dev->curfl += 1;
2254 if (pkt_dev->curfl >= pkt_dev->cflows)
2255 pkt_dev->curfl = 0; /*reset */
2256 }
2257 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002258 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002259 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002260
Robert Olsson1211a642008-08-05 18:44:26 -07002261 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002262 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002263 pkt_dev->flows[flow].flags = 0;
2264 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002265 }
2266
2267 return pkt_dev->curfl;
2268}
2269
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002270
2271#ifdef CONFIG_XFRM
2272/* If there was already an IPSEC SA, we keep it as is, else
2273 * we go look for it ...
2274*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002275#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002276static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002277{
2278 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002279 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002280 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002281
2282 if (pkt_dev->spi) {
2283 /* We need as quick as possible to find the right SA
2284 * Searching with minimum criteria to archieve this.
2285 */
2286 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2287 } else {
2288 /* slow path: we dont already have xfrm_state */
2289 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
2290 (xfrm_address_t *)&pkt_dev->cur_daddr,
2291 (xfrm_address_t *)&pkt_dev->cur_saddr,
2292 AF_INET,
2293 pkt_dev->ipsmode,
2294 pkt_dev->ipsproto, 0);
2295 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002296 if (x) {
2297 pkt_dev->flows[flow].x = x;
2298 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002299 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002300 }
2301
2302 }
2303}
2304#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002305static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2306{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002307
2308 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2309 pkt_dev->cur_queue_map = smp_processor_id();
2310
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002311 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002312 __u16 t;
2313 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002314 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002315 (pkt_dev->queue_map_max -
2316 pkt_dev->queue_map_min + 1)
2317 + pkt_dev->queue_map_min;
2318 } else {
2319 t = pkt_dev->cur_queue_map + 1;
2320 if (t > pkt_dev->queue_map_max)
2321 t = pkt_dev->queue_map_min;
2322 }
2323 pkt_dev->cur_queue_map = t;
2324 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002325 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 -07002326}
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328/* Increment/randomize headers according to flags and current values
2329 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2330 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002331static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2332{
2333 __u32 imn;
2334 __u32 imx;
2335 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002337 if (pkt_dev->cflows)
2338 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002341 if (pkt_dev->src_mac_count > 1) {
2342 __u32 mc;
2343 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Luiz Capitulino222f1802006-03-20 22:16:13 -08002345 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002346 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002347 else {
2348 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002349 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002350 pkt_dev->src_mac_count)
2351 pkt_dev->cur_src_mac_offset = 0;
2352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Luiz Capitulino222f1802006-03-20 22:16:13 -08002354 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2355 pkt_dev->hh[11] = tmp;
2356 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2357 pkt_dev->hh[10] = tmp;
2358 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2359 pkt_dev->hh[9] = tmp;
2360 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2361 pkt_dev->hh[8] = tmp;
2362 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2363 pkt_dev->hh[7] = tmp;
2364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Luiz Capitulino222f1802006-03-20 22:16:13 -08002366 /* Deal with Destination MAC */
2367 if (pkt_dev->dst_mac_count > 1) {
2368 __u32 mc;
2369 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Luiz Capitulino222f1802006-03-20 22:16:13 -08002371 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002372 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Luiz Capitulino222f1802006-03-20 22:16:13 -08002374 else {
2375 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002376 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002377 pkt_dev->dst_mac_count) {
2378 pkt_dev->cur_dst_mac_offset = 0;
2379 }
2380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Luiz Capitulino222f1802006-03-20 22:16:13 -08002382 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2383 pkt_dev->hh[5] = tmp;
2384 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2385 pkt_dev->hh[4] = tmp;
2386 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2387 pkt_dev->hh[3] = tmp;
2388 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2389 pkt_dev->hh[2] = tmp;
2390 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2391 pkt_dev->hh[1] = tmp;
2392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002394 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002395 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002396 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002397 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2398 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002399 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002400 htonl(0x000fffff));
2401 }
2402
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002403 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002404 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002405 }
2406
2407 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002408 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002409 }
2410
Luiz Capitulino222f1802006-03-20 22:16:13 -08002411 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2412 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002413 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002414 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2415 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Luiz Capitulino222f1802006-03-20 22:16:13 -08002417 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 pkt_dev->cur_udp_src++;
2419 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2420 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002421 }
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Luiz Capitulino222f1802006-03-20 22:16:13 -08002424 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2425 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002426 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002427 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2428 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002429 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002431 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002433 }
2434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 if (!(pkt_dev->flags & F_IPV6)) {
2437
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002438 imn = ntohl(pkt_dev->saddr_min);
2439 imx = ntohl(pkt_dev->saddr_max);
2440 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002442 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002443 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 else {
2445 t = ntohl(pkt_dev->cur_saddr);
2446 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002447 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
2451 pkt_dev->cur_saddr = htonl(t);
2452 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002453
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002454 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2456 } else {
Al Viro252e3342006-11-14 20:48:11 -08002457 imn = ntohl(pkt_dev->daddr_min);
2458 imx = ntohl(pkt_dev->daddr_max);
2459 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002461 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 if (pkt_dev->flags & F_IPDST_RND) {
2463
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002464 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002465 t = prandom_u32() %
2466 (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002467 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002468 } while (ipv4_is_loopback(s) ||
2469 ipv4_is_multicast(s) ||
2470 ipv4_is_lbcast(s) ||
2471 ipv4_is_zeronet(s) ||
2472 ipv4_is_local_multicast(s));
Al Viro252e3342006-11-14 20:48:11 -08002473 pkt_dev->cur_daddr = s;
2474 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 t = ntohl(pkt_dev->cur_daddr);
2476 t++;
2477 if (t > imx) {
2478 t = imn;
2479 }
2480 pkt_dev->cur_daddr = htonl(t);
2481 }
2482 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002483 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002484 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002485 pkt_dev->flows[flow].cur_daddr =
2486 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002487#ifdef CONFIG_XFRM
2488 if (pkt_dev->flags & F_IPSEC_ON)
2489 get_ipsec_sa(pkt_dev, flow);
2490#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 pkt_dev->nflows++;
2492 }
2493 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002494 } else { /* IPV6 * */
2495
Joe Perches06e30412012-10-18 17:55:31 +00002496 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 int i;
2498
2499 /* Only random destinations yet */
2500
Luiz Capitulino222f1802006-03-20 22:16:13 -08002501 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002503 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002504 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2505 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 }
2509
Luiz Capitulino222f1802006-03-20 22:16:13 -08002510 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2511 __u32 t;
2512 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002513 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002514 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2515 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002516 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002518 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002520 }
2521 pkt_dev->cur_pkt_size = t;
2522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002524 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 pkt_dev->flows[flow].count++;
2527}
2528
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002529
2530#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002531static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d472014-01-03 11:18:31 +08002532
2533 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2534};
2535
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002536static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2537{
2538 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2539 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002540 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002541
2542 if (!x)
2543 return 0;
2544 /* XXX: we dont support tunnel mode for now until
2545 * we resolve the dst issue */
Fan Ducf93d472014-01-03 11:18:31 +08002546 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002547 return 0;
2548
Fan Ducf93d472014-01-03 11:18:31 +08002549 /* But when user specify an valid SPI, transformation
2550 * supports both transport/tunnel mode + ESP/AH type.
2551 */
2552 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
2553 skb->_skb_refdst = (unsigned long)&pkt_dev->dst | SKB_DST_NOREF;
2554
2555 rcu_read_lock_bh();
Herbert Xu13996372007-10-17 21:35:51 -07002556 err = x->outer_mode->output(x, skb);
Fan Ducf93d472014-01-03 11:18:31 +08002557 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002558 if (err) {
2559 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002560 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002561 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002562 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002563 if (err) {
2564 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002565 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002566 }
Fan Du0af0a412014-01-03 11:18:27 +08002567 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002568 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002569 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002570 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002571error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002572 return err;
2573}
2574
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002575static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002576{
2577 if (pkt_dev->cflows) {
2578 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002579 int i;
2580 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002581 struct xfrm_state *x = pkt_dev->flows[i].x;
2582 if (x) {
2583 xfrm_state_put(x);
2584 pkt_dev->flows[i].x = NULL;
2585 }
2586 }
2587 }
2588}
2589
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002590static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002591 struct sk_buff *skb, __be16 protocol)
2592{
2593 if (pkt_dev->flags & F_IPSEC_ON) {
2594 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2595 int nhead = 0;
2596 if (x) {
2597 int ret;
2598 __u8 *eth;
fan.du38682042013-12-01 16:28:48 +08002599 struct iphdr *iph;
2600
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002601 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002602 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002603 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2604 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002605 pr_err("Error expanding ipsec packet %d\n",
2606 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002607 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002608 }
2609 }
2610
2611 /* ipsec is not expecting ll header */
2612 skb_pull(skb, ETH_HLEN);
2613 ret = pktgen_output_ipsec(skb, pkt_dev);
2614 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002615 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002616 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002617 }
2618 /* restore ll */
2619 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2620 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002621 *(u16 *) &eth[12] = protocol;
fan.du38682042013-12-01 16:28:48 +08002622
2623 /* Update IPv4 header len as well as checksum value */
2624 iph = ip_hdr(skb);
2625 iph->tot_len = htons(skb->len - ETH_HLEN);
2626 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002627 }
2628 }
2629 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002630err:
2631 kfree_skb(skb);
2632 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002633}
2634#endif
2635
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002636static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2637{
Eric Dumazet95c96172012-04-15 05:58:06 +00002638 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002639 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002640 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002641
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002642 mpls--;
2643 *mpls |= MPLS_STACK_BOTTOM;
2644}
2645
Al Viro0f37c602006-11-03 03:49:56 -08002646static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2647 unsigned int prio)
2648{
2649 return htons(id | (cfi << 12) | (prio << 13));
2650}
2651
Eric Dumazet26ad7872011-01-25 13:26:05 -08002652static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2653 int datalen)
2654{
2655 struct timeval timestamp;
2656 struct pktgen_hdr *pgh;
2657
2658 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2659 datalen -= sizeof(*pgh);
2660
2661 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002662 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002663 } else {
2664 int frags = pkt_dev->nfrags;
2665 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002666 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002667
2668
2669 if (frags > MAX_SKB_FRAGS)
2670 frags = MAX_SKB_FRAGS;
2671 len = datalen - frags * PAGE_SIZE;
2672 if (len > 0) {
2673 memset(skb_put(skb, len), 0, len);
2674 datalen = frags * PAGE_SIZE;
2675 }
2676
2677 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002678 frag_len = (datalen/frags) < PAGE_SIZE ?
2679 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002680 while (datalen > 0) {
2681 if (unlikely(!pkt_dev->page)) {
2682 int node = numa_node_id();
2683
2684 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2685 node = pkt_dev->node;
2686 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2687 if (!pkt_dev->page)
2688 break;
2689 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002690 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002691 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002692 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002693 /*last fragment, fill rest of data*/
2694 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002695 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2696 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002697 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002698 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2699 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2700 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2701 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002702 i++;
2703 skb_shinfo(skb)->nr_frags = i;
2704 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002705 }
2706
2707 /* Stamp the time, and sequence number,
2708 * convert them to network byte order
2709 */
2710 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2711 pgh->seq_num = htonl(pkt_dev->seq_num);
2712
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002713 if (pkt_dev->flags & F_NO_TIMESTAMP) {
2714 pgh->tv_sec = 0;
2715 pgh->tv_usec = 0;
2716 } else {
2717 do_gettimeofday(&timestamp);
2718 pgh->tv_sec = htonl(timestamp.tv_sec);
2719 pgh->tv_usec = htonl(timestamp.tv_usec);
2720 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002721}
2722
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002723static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
2724 struct pktgen_dev *pkt_dev,
2725 unsigned int extralen)
2726{
2727 struct sk_buff *skb = NULL;
2728 unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen +
2729 pkt_dev->pkt_overhead;
2730
2731 if (pkt_dev->flags & F_NODE) {
2732 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2733
2734 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2735 if (likely(skb)) {
2736 skb_reserve(skb, NET_SKB_PAD);
2737 skb->dev = dev;
2738 }
2739 } else {
2740 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2741 }
2742
2743 return skb;
2744}
2745
Luiz Capitulino222f1802006-03-20 22:16:13 -08002746static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2747 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
2749 struct sk_buff *skb = NULL;
2750 __u8 *eth;
2751 struct udphdr *udph;
2752 int datalen, iplen;
2753 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002754 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002755 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002756 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2757 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2758 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2759 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002760 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002761
2762 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002763 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002764
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002765 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002766 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002767
Robert Olsson64053be2005-06-26 15:27:10 -07002768 /* Update any of the values, used when we're incrementing various
2769 * fields.
2770 */
2771 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002772 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002773
David S. Miller7ac54592006-01-18 14:19:10 -08002774 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002775
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002776 skb = pktgen_alloc_skb(odev, pkt_dev, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (!skb) {
2778 sprintf(pkt_dev->result, "No memory");
2779 return NULL;
2780 }
2781
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002782 prefetchw(skb->data);
David S. Miller7ac54592006-01-18 14:19:10 -08002783 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785 /* Reserve for ethernet and IP header */
2786 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002787 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2788 if (pkt_dev->nr_labels)
2789 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002790
2791 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002792 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002793 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002794 *svlan_tci = build_tci(pkt_dev->svlan_id,
2795 pkt_dev->svlan_cfi,
2796 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002797 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002798 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002799 }
2800 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002801 *vlan_tci = build_tci(pkt_dev->vlan_id,
2802 pkt_dev->vlan_cfi,
2803 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002804 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002805 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002806 }
2807
Thomas Graf525cebe2013-06-03 11:49:23 +00002808 skb_set_mac_header(skb, 0);
2809 skb_set_network_header(skb, skb->len);
2810 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2811
2812 skb_set_transport_header(skb, skb->len);
2813 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002814 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002815 skb->priority = pkt_dev->skb_priority;
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002818 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002820 /* Eth + IPh + UDPh + mpls */
2821 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002822 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002823 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 udph->source = htons(pkt_dev->cur_udp_src);
2827 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002828 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002829 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 iph->ihl = 5;
2832 iph->version = 4;
2833 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002834 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002835 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 iph->saddr = pkt_dev->cur_saddr;
2837 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002838 iph->id = htons(pkt_dev->ip_id);
2839 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 iph->frag_off = 0;
2841 iplen = 20 + 8 + datalen;
2842 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002843 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002844 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 skb->dev = odev;
2846 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002847
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002848 pktgen_finalize_skb(pkt_dev, skb, datalen);
2849
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002850 if (!(pkt_dev->flags & F_UDPCSUM)) {
2851 skb->ip_summed = CHECKSUM_NONE;
2852 } else if (odev->features & NETIF_F_V4_CSUM) {
2853 skb->ip_summed = CHECKSUM_PARTIAL;
2854 skb->csum = 0;
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002855 udp4_hwcsum(skb, iph->saddr, iph->daddr);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002856 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002857 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), datalen + 8, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002858
2859 /* add protocol-dependent pseudo-header */
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002860 udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr,
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002861 datalen + 8, IPPROTO_UDP, csum);
2862
2863 if (udph->check == 0)
2864 udph->check = CSUM_MANGLED_0;
2865 }
2866
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002867#ifdef CONFIG_XFRM
2868 if (!process_ipsec(pkt_dev, skb, protocol))
2869 return NULL;
2870#endif
2871
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 return skb;
2873}
2874
Luiz Capitulino222f1802006-03-20 22:16:13 -08002875static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2876 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
2878 struct sk_buff *skb = NULL;
2879 __u8 *eth;
2880 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002881 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002883 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002884 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002885 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2886 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2887 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2888 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002889 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002890
2891 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002892 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002893
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002894 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002895 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002896
Robert Olsson64053be2005-06-26 15:27:10 -07002897 /* Update any of the values, used when we're incrementing various
2898 * fields.
2899 */
2900 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002901 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002902
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002903 skb = pktgen_alloc_skb(odev, pkt_dev, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 if (!skb) {
2905 sprintf(pkt_dev->result, "No memory");
2906 return NULL;
2907 }
2908
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002909 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 skb_reserve(skb, 16);
2911
2912 /* Reserve for ethernet and IP header */
2913 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002914 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2915 if (pkt_dev->nr_labels)
2916 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002917
2918 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002919 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002920 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002921 *svlan_tci = build_tci(pkt_dev->svlan_id,
2922 pkt_dev->svlan_cfi,
2923 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002924 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002925 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002926 }
2927 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002928 *vlan_tci = build_tci(pkt_dev->vlan_id,
2929 pkt_dev->vlan_cfi,
2930 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002931 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002932 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002933 }
2934
Thomas Graf525cebe2013-06-03 11:49:23 +00002935 skb_set_mac_header(skb, 0);
2936 skb_set_network_header(skb, skb->len);
2937 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2938
2939 skb_set_transport_header(skb, skb->len);
2940 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002941 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002942 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002945 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002946
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002947 /* Eth + IPh + UDPh + mpls */
2948 datalen = pkt_dev->cur_pkt_size - 14 -
2949 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002950 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002952 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002954 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
2956
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002957 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 udph->source = htons(pkt_dev->cur_udp_src);
2959 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002960 udph->len = htons(udplen);
2961 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002963 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002965 if (pkt_dev->traffic_class) {
2966 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002967 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002968 }
2969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 iph->hop_limit = 32;
2971
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002972 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 iph->nexthdr = IPPROTO_UDP;
2974
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002975 iph->daddr = pkt_dev->cur_in6_daddr;
2976 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002978 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 skb->dev = odev;
2980 skb->pkt_type = PACKET_HOST;
2981
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002982 pktgen_finalize_skb(pkt_dev, skb, datalen);
2983
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002984 if (!(pkt_dev->flags & F_UDPCSUM)) {
2985 skb->ip_summed = CHECKSUM_NONE;
2986 } else if (odev->features & NETIF_F_V6_CSUM) {
2987 skb->ip_summed = CHECKSUM_PARTIAL;
2988 skb->csum_start = skb_transport_header(skb) - skb->head;
2989 skb->csum_offset = offsetof(struct udphdr, check);
2990 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2991 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002992 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), udplen, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002993
2994 /* add protocol-dependent pseudo-header */
2995 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2996
2997 if (udph->check == 0)
2998 udph->check = CSUM_MANGLED_0;
2999 }
3000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 return skb;
3002}
3003
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003004static struct sk_buff *fill_packet(struct net_device *odev,
3005 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003007 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 return fill_packet_ipv6(odev, pkt_dev);
3009 else
3010 return fill_packet_ipv4(odev, pkt_dev);
3011}
3012
Luiz Capitulino222f1802006-03-20 22:16:13 -08003013static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003015 pkt_dev->seq_num = 1;
3016 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003018 pkt_dev->tx_bytes = 0;
3019 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020}
3021
3022/* Set up structure for sending pkts, clear counters */
3023
3024static void pktgen_run(struct pktgen_thread *t)
3025{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003026 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 int started = 0;
3028
Joe Perchesf9467ea2010-06-21 12:29:14 +00003029 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003031 rcu_read_lock();
3032 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
3034 /*
3035 * setup odev and create initial packet.
3036 */
3037 pktgen_setup_inject(pkt_dev);
3038
Luiz Capitulino222f1802006-03-20 22:16:13 -08003039 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 pktgen_clear_counters(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003042 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003043
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003044 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 strcpy(pkt_dev->result, "Starting");
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003047 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003049 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 strcpy(pkt_dev->result, "Error starting");
3051 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003052 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003053 if (started)
3054 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
Cong Wang4e58a022013-01-28 19:55:53 +00003057static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003059 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Joe Perchesf9467ea2010-06-21 12:29:14 +00003061 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003063 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003064
Cong Wang4e58a022013-01-28 19:55:53 +00003065 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003066 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003067
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003068 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069}
3070
Stephen Hemminger648fda72009-08-27 13:55:07 +00003071static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003073 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003075 rcu_read_lock();
3076 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
3077 if (pkt_dev->running) {
3078 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003079 return 1;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003080 }
3081 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003082 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
Luiz Capitulino222f1802006-03-20 22:16:13 -08003085static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003087 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
Luiz Capitulino222f1802006-03-20 22:16:13 -08003089 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Luiz Capitulino222f1802006-03-20 22:16:13 -08003091 if (signal_pending(current))
3092 goto signal;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003093 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003094 return 1;
3095signal:
3096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097}
3098
Cong Wang4e58a022013-01-28 19:55:53 +00003099static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003101 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003103
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003104 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003105
Cong Wang4e58a022013-01-28 19:55:53 +00003106 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003108 if (sig == 0)
3109 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003111
3112 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003113 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003115
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003116 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 return sig;
3118}
3119
Cong Wang4e58a022013-01-28 19:55:53 +00003120static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003122 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Joe Perchesf9467ea2010-06-21 12:29:14 +00003124 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003126 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Cong Wang4e58a022013-01-28 19:55:53 +00003128 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003130
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003131 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003133 /* Propagate thread->control */
3134 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003135
Cong Wang4e58a022013-01-28 19:55:53 +00003136 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
3138
Cong Wang4e58a022013-01-28 19:55:53 +00003139static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003140{
3141 struct pktgen_thread *t;
3142
Joe Perchesf9467ea2010-06-21 12:29:14 +00003143 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003144
3145 mutex_lock(&pktgen_thread_lock);
3146
Cong Wang4e58a022013-01-28 19:55:53 +00003147 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003148 t->control |= (T_REMDEVALL);
3149
3150 mutex_unlock(&pktgen_thread_lock);
3151
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003152 /* Propagate thread->control */
3153 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003154
Cong Wang4e58a022013-01-28 19:55:53 +00003155 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003156}
3157
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3159{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003160 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003161 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003162 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3163 pkt_dev->started_at);
3164 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
Daniel Turull03a14ab2011-03-09 14:11:00 -08003166 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003167 (unsigned long long)ktime_to_us(elapsed),
3168 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3169 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003170 (unsigned long long)pkt_dev->sofar,
3171 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003173 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3174 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Luiz Capitulino222f1802006-03-20 22:16:13 -08003176 bps = pps * 8 * pkt_dev->cur_pkt_size;
3177
3178 mbps = bps;
3179 do_div(mbps, 1000000);
3180 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3181 (unsigned long long)pps,
3182 (unsigned long long)mbps,
3183 (unsigned long long)bps,
3184 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003188static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003190 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003191
Luiz Capitulino222f1802006-03-20 22:16:13 -08003192 if (!pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003193 pr_warn("interface: %s is already stopped\n",
3194 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003195 return -EINVAL;
3196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003198 pkt_dev->running = 0;
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003199 kfree_skb(pkt_dev->skb);
3200 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003201 pkt_dev->stopped_at = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003203 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Luiz Capitulino222f1802006-03-20 22:16:13 -08003205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206}
3207
Luiz Capitulino222f1802006-03-20 22:16:13 -08003208static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003210 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003211
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003212 rcu_read_lock();
3213 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003214 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003215 continue;
3216 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003217 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003218 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003219 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003221 rcu_read_unlock();
3222
Luiz Capitulino222f1802006-03-20 22:16:13 -08003223 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224}
3225
Luiz Capitulino222f1802006-03-20 22:16:13 -08003226static void pktgen_stop(struct pktgen_thread *t)
3227{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003228 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Joe Perchesf9467ea2010-06-21 12:29:14 +00003230 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003232 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003234 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003235 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003238 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239}
3240
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003241/*
3242 * one of our devices needs to be removed - find it
3243 * and remove it
3244 */
3245static void pktgen_rem_one_if(struct pktgen_thread *t)
3246{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003247 struct list_head *q, *n;
3248 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003249
Joe Perchesf9467ea2010-06-21 12:29:14 +00003250 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003251
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003252 list_for_each_safe(q, n, &t->if_list) {
3253 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003254
Luiz Capitulino222f1802006-03-20 22:16:13 -08003255 if (!cur->removal_mark)
3256 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003257
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003258 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003259 cur->skb = NULL;
3260
3261 pktgen_remove_device(t, cur);
3262
3263 break;
3264 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003265}
3266
Luiz Capitulino222f1802006-03-20 22:16:13 -08003267static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003269 struct list_head *q, *n;
3270 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003271
Joe Perchesf9467ea2010-06-21 12:29:14 +00003272 func_enter();
3273
Luiz Capitulino222f1802006-03-20 22:16:13 -08003274 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003275
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003276 list_for_each_safe(q, n, &t->if_list) {
3277 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003278
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003279 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003280 cur->skb = NULL;
3281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 pktgen_remove_device(t, cur);
3283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284}
3285
Luiz Capitulino222f1802006-03-20 22:16:13 -08003286static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003288 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003289 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
Stephen Hemmingeref879792009-09-22 19:41:43 +00003292static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003293{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003294 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003295 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003296 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003297}
3298
Stephen Hemmingeref879792009-09-22 19:41:43 +00003299static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3300{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003301 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003302
3303 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3304 if (signal_pending(current))
3305 break;
3306
3307 if (need_resched())
3308 pktgen_resched(pkt_dev);
3309 else
3310 cpu_relax();
3311 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003312 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003313}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003314
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003315static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003317 unsigned int burst = ACCESS_ONCE(pkt_dev->burst);
Stephen Hemminger00829822008-11-20 20:14:53 -08003318 struct net_device *odev = pkt_dev->odev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003319 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 int ret;
3321
Stephen Hemmingeref879792009-09-22 19:41:43 +00003322 /* If device is offline, then don't send */
3323 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3324 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003325 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003327
Stephen Hemmingeref879792009-09-22 19:41:43 +00003328 /* This is max DELAY, this has special meaning of
3329 * "never transmit"
3330 */
3331 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003332 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003333 return;
3334 }
3335
3336 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003337 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3338 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3339 /* build a new pkt */
3340 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003341
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003342 pkt_dev->skb = fill_packet(odev, pkt_dev);
3343 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003344 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003345 schedule();
3346 pkt_dev->clone_count--; /* back out increment, OOM */
3347 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003349 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003350 pkt_dev->allocated_skbs++;
3351 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003353
Stephen Hemmingeref879792009-09-22 19:41:43 +00003354 if (pkt_dev->delay && pkt_dev->last_ok)
3355 spin(pkt_dev, pkt_dev->next_tx);
3356
Daniel Borkmann10c51b56232014-08-27 11:11:27 +02003357 txq = skb_get_tx_queue(odev, pkt_dev->skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003358
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003359 local_bh_disable();
3360
3361 HARD_TX_LOCK(odev, txq, smp_processor_id());
Stephen Hemmingeref879792009-09-22 19:41:43 +00003362
Daniel Borkmann6f25cd42014-04-07 17:18:30 +02003363 if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003364 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003365 pkt_dev->last_ok = 0;
3366 goto unlock;
3367 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003368 atomic_add(burst, &pkt_dev->skb->users);
3369
3370xmit_more:
3371 ret = netdev_start_xmit(pkt_dev->skb, odev, txq, --burst > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Stephen Hemmingeref879792009-09-22 19:41:43 +00003373 switch (ret) {
3374 case NETDEV_TX_OK:
Stephen Hemmingeref879792009-09-22 19:41:43 +00003375 pkt_dev->last_ok = 1;
3376 pkt_dev->sofar++;
3377 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003378 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003379 if (burst > 0 && !netif_xmit_frozen_or_drv_stopped(txq))
3380 goto xmit_more;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003381 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003382 case NET_XMIT_DROP:
3383 case NET_XMIT_CN:
3384 case NET_XMIT_POLICED:
3385 /* skb has been consumed */
3386 pkt_dev->errors++;
3387 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003388 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003389 net_info_ratelimited("%s xmit error: %d\n",
3390 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003391 pkt_dev->errors++;
3392 /* fallthru */
3393 case NETDEV_TX_LOCKED:
3394 case NETDEV_TX_BUSY:
3395 /* Retry it next time */
3396 atomic_dec(&(pkt_dev->skb->users));
3397 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003398 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003399 if (unlikely(burst))
3400 atomic_sub(burst, &pkt_dev->skb->users);
Eric Dumazet0835acf2009-09-30 13:03:33 +00003401unlock:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003402 HARD_TX_UNLOCK(odev, txq);
3403
3404 local_bh_enable();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 /* If pkt_dev->count is zero, then run forever */
3407 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003408 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003409
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 /* Done with this */
3411 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003412 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003413}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003415/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 * Main loop of the thread goes here
3417 */
3418
David S. Milleree74baa2007-01-01 20:51:53 -08003419static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420{
3421 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003422 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003423 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
David S. Milleree74baa2007-01-01 20:51:53 -08003426 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003429 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
Joe Perchesf9467ea2010-06-21 12:29:14 +00003431 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003433 set_freezable();
3434
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003435 __set_current_state(TASK_RUNNING);
3436
David S. Milleree74baa2007-01-01 20:51:53 -08003437 while (!kthread_should_stop()) {
3438 pkt_dev = next_to_run(t);
3439
Stephen Hemmingeref879792009-09-22 19:41:43 +00003440 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003441 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003442 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003443 wait_event_interruptible_timeout(t->queue,
3444 t->control != 0,
3445 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003446 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003447 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003448 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003449
Stephen Hemmingeref879792009-09-22 19:41:43 +00003450 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 pktgen_xmit(pkt_dev);
3452
Stephen Hemmingeref879792009-09-22 19:41:43 +00003453 if (need_resched())
3454 pktgen_resched(pkt_dev);
3455 else
3456 cpu_relax();
3457 }
3458
Luiz Capitulino222f1802006-03-20 22:16:13 -08003459 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 pktgen_stop(t);
3461 t->control &= ~(T_STOP);
3462 }
3463
Luiz Capitulino222f1802006-03-20 22:16:13 -08003464 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 pktgen_run(t);
3466 t->control &= ~(T_RUN);
3467 }
3468
Luiz Capitulino222f1802006-03-20 22:16:13 -08003469 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003471 t->control &= ~(T_REMDEVALL);
3472 }
3473
Luiz Capitulino222f1802006-03-20 22:16:13 -08003474 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003475 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 t->control &= ~(T_REMDEV);
3477 }
3478
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003479 try_to_freeze();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003480 }
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003481 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Joe Perchesf9467ea2010-06-21 12:29:14 +00003483 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003484 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Joe Perchesf9467ea2010-06-21 12:29:14 +00003486 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003487 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Joe Perchesf9467ea2010-06-21 12:29:14 +00003489 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003490 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003491
Eric Dumazet551eaff2010-11-21 10:26:44 -08003492 /* Wait for kthread_stop */
3493 while (!kthread_should_stop()) {
3494 set_current_state(TASK_INTERRUPTIBLE);
3495 schedule();
3496 }
3497 __set_current_state(TASK_RUNNING);
3498
David S. Milleree74baa2007-01-01 20:51:53 -08003499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500}
3501
Luiz Capitulino222f1802006-03-20 22:16:13 -08003502static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003503 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003505 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003506 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003508 rcu_read_lock();
3509 list_for_each_entry_rcu(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003510 if (strncmp(p->odevname, ifname, len) == 0) {
3511 if (p->odevname[len]) {
3512 if (exact || p->odevname[len] != '@')
3513 continue;
3514 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003515 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003516 break;
3517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003519 rcu_read_unlock();
Joe Perchesf9467ea2010-06-21 12:29:14 +00003520 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003521 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522}
3523
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003524/*
3525 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 */
3527
Luiz Capitulino222f1802006-03-20 22:16:13 -08003528static int add_dev_to_thread(struct pktgen_thread *t,
3529 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530{
3531 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003533 /* This function cannot be called concurrently, as its called
3534 * under pktgen_thread_lock mutex, but it can run from
3535 * userspace on another CPU than the kthread. The if_lock()
3536 * is used here to sync with concurrent instances of
3537 * _rem_dev_from_if_list() invoked via kthread, which is also
3538 * updating the if_list */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003539 if_lock(t);
3540
3541 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003542 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003543 rv = -EBUSY;
3544 goto out;
3545 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003546
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 pkt_dev->running = 0;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003548 pkt_dev->pg_thread = t;
3549 list_add_rcu(&pkt_dev->list, &t->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Luiz Capitulino222f1802006-03-20 22:16:13 -08003551out:
3552 if_unlock(t);
3553 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554}
3555
3556/* Called under thread lock */
3557
Luiz Capitulino222f1802006-03-20 22:16:13 -08003558static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003560 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003561 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003562 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 /* We don't allow a device to be on several threads */
3565
Cong Wang4e58a022013-01-28 19:55:53 +00003566 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003567 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003568 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003569 return -EBUSY;
3570 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003571
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003572 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003573 if (!pkt_dev)
3574 return -ENOMEM;
3575
Eric Dumazet593f63b2009-11-23 01:44:37 +00003576 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003577 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003578 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003579 if (pkt_dev->flows == NULL) {
3580 kfree(pkt_dev);
3581 return -ENOMEM;
3582 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003583
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003584 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003585 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003586 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003587 pkt_dev->count = pg_count_d;
3588 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003589 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003590 pkt_dev->udp_src_max = 9;
3591 pkt_dev->udp_dst_min = 9;
3592 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003593 pkt_dev->vlan_p = 0;
3594 pkt_dev->vlan_cfi = 0;
3595 pkt_dev->vlan_id = 0xffff;
3596 pkt_dev->svlan_p = 0;
3597 pkt_dev->svlan_cfi = 0;
3598 pkt_dev->svlan_id = 0xffff;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003599 pkt_dev->burst = 1;
Robert Olssone99b99b2010-03-18 22:44:30 +00003600 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003601
Cong Wang4e58a022013-01-28 19:55:53 +00003602 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003603 if (err)
3604 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003605 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3606 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003607
Cong Wang4e58a022013-01-28 19:55:53 +00003608 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003609 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003610 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003611 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003612 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003613 err = -EINVAL;
3614 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003615 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003616#ifdef CONFIG_XFRM
3617 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3618 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d472014-01-03 11:18:31 +08003619
3620 /* xfrm tunnel mode needs additional dst to extract outter
3621 * ip header protocol/ttl/id field, here creat a phony one.
3622 * instead of looking for a valid rt, which definitely hurting
3623 * performance under such circumstance.
3624 */
3625 pkt_dev->dstops.family = AF_INET;
3626 pkt_dev->dst.dev = pkt_dev->odev;
3627 dst_init_metrics(&pkt_dev->dst, pktgen_dst_metrics, false);
3628 pkt_dev->dst.child = &pkt_dev->dst;
3629 pkt_dev->dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003630#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003631
3632 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003633out2:
3634 dev_put(pkt_dev->odev);
3635out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003636#ifdef CONFIG_XFRM
3637 free_SAs(pkt_dev);
3638#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003639 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003640 kfree(pkt_dev);
3641 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642}
3643
Cong Wang4e58a022013-01-28 19:55:53 +00003644static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003646 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003647 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003648 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003650 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3651 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003652 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003653 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003654 return -ENOMEM;
3655 }
3656
Luiz Capitulino222f1802006-03-20 22:16:13 -08003657 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003659
David S. Milleree74baa2007-01-01 20:51:53 -08003660 INIT_LIST_HEAD(&t->if_list);
3661
Cong Wang4e58a022013-01-28 19:55:53 +00003662 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003663 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003664
Eric Dumazet94dcf292011-03-22 16:30:45 -07003665 p = kthread_create_on_node(pktgen_thread_worker,
3666 t,
3667 cpu_to_node(cpu),
3668 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003669 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003670 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003671 list_del(&t->th_list);
3672 kfree(t);
3673 return PTR_ERR(p);
3674 }
3675 kthread_bind(p, cpu);
3676 t->tsk = p;
3677
Cong Wang4e58a022013-01-28 19:55:53 +00003678 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003679 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003680 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003681 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003682 PG_PROC_DIR, t->tsk->comm);
3683 kthread_stop(p);
3684 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003685 kfree(t);
3686 return -EINVAL;
3687 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003688
Cong Wang4e58a022013-01-28 19:55:53 +00003689 t->net = pn;
David S. Milleree74baa2007-01-01 20:51:53 -08003690 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003691 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
3693 return 0;
3694}
3695
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003696/*
3697 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003699static void _rem_dev_from_if_list(struct pktgen_thread *t,
3700 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003702 struct list_head *q, *n;
3703 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003705 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003706 list_for_each_safe(q, n, &t->if_list) {
3707 p = list_entry(q, struct pktgen_dev, list);
3708 if (p == pkt_dev)
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003709 list_del_rcu(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003711 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712}
3713
Luiz Capitulino222f1802006-03-20 22:16:13 -08003714static int pktgen_remove_device(struct pktgen_thread *t,
3715 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003717 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Luiz Capitulino222f1802006-03-20 22:16:13 -08003719 if (pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003720 pr_warn("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003721 pktgen_stop_device(pkt_dev);
3722 }
3723
3724 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
3726 if (pkt_dev->odev) {
3727 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003728 pkt_dev->odev = NULL;
3729 }
3730
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003731 /* Remove proc before if_list entry, because add_device uses
3732 * list to determine if interface already exist, avoid race
3733 * with proc_create_data() */
Markus Elfringef87c5d2014-11-18 20:10:34 +01003734 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003736 /* And update the thread if_list */
3737 _rem_dev_from_if_list(t, pkt_dev);
3738
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003739#ifdef CONFIG_XFRM
3740 free_SAs(pkt_dev);
3741#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003742 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003743 if (pkt_dev->page)
3744 put_page(pkt_dev->page);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003745 kfree_rcu(pkt_dev, rcu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747}
3748
Cong Wang4e58a022013-01-28 19:55:53 +00003749static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750{
Cong Wang4e58a022013-01-28 19:55:53 +00003751 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003752 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003753 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003754
Cong Wang4e58a022013-01-28 19:55:53 +00003755 pn->net = net;
3756 INIT_LIST_HEAD(&pn->pktgen_threads);
3757 pn->pktgen_exiting = false;
3758 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3759 if (!pn->proc_dir) {
3760 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003761 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003762 }
Cong Wang4e58a022013-01-28 19:55:53 +00003763 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3764 if (pe == NULL) {
3765 pr_err("cannot create %s procfs entry\n", PGCTRL);
3766 ret = -EINVAL;
3767 goto remove;
3768 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003769
John Hawkes670c02c2005-10-13 09:30:31 -07003770 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003771 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Cong Wang4e58a022013-01-28 19:55:53 +00003773 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003774 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003775 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003776 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003777 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003778
Cong Wang4e58a022013-01-28 19:55:53 +00003779 if (list_empty(&pn->pktgen_threads)) {
3780 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003781 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003782 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003783 }
3784
Luiz Capitulino222f1802006-03-20 22:16:13 -08003785 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003786
Cong Wang4e58a022013-01-28 19:55:53 +00003787remove_entry:
3788 remove_proc_entry(PGCTRL, pn->proc_dir);
3789remove:
Gao fengece31ff2013-02-18 01:34:56 +00003790 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003791 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792}
3793
Cong Wang4e58a022013-01-28 19:55:53 +00003794static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795{
Cong Wang4e58a022013-01-28 19:55:53 +00003796 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003797 struct pktgen_thread *t;
3798 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003799 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Luiz Capitulino222f1802006-03-20 22:16:13 -08003801 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003802 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Eric Dumazetc57b5462012-05-09 13:29:51 +00003804 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003805 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003806 mutex_unlock(&pktgen_thread_lock);
3807
3808 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003809 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003810 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003811 kthread_stop(t->tsk);
3812 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Cong Wang4e58a022013-01-28 19:55:53 +00003815 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003816 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003817}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Cong Wang4e58a022013-01-28 19:55:53 +00003819static struct pernet_operations pg_net_ops = {
3820 .init = pg_net_init,
3821 .exit = pg_net_exit,
3822 .id = &pg_net_id,
3823 .size = sizeof(struct pktgen_net),
3824};
3825
3826static int __init pg_init(void)
3827{
3828 int ret = 0;
3829
3830 pr_info("%s", version);
3831 ret = register_pernet_subsys(&pg_net_ops);
3832 if (ret)
3833 return ret;
3834 ret = register_netdevice_notifier(&pktgen_notifier_block);
3835 if (ret)
3836 unregister_pernet_subsys(&pg_net_ops);
3837
3838 return ret;
3839}
3840
3841static void __exit pg_cleanup(void)
3842{
3843 unregister_netdevice_notifier(&pktgen_notifier_block);
3844 unregister_pernet_subsys(&pg_net_ops);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003845 /* Don't need rcu_barrier() due to use of kfree_rcu() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846}
3847
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848module_init(pg_init);
3849module_exit(pg_cleanup);
3850
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003851MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852MODULE_DESCRIPTION("Packet Generator tool");
3853MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003854MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003856MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003858MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003860MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003862MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");