blob: 443256bdcddc8e01c2ba0f0b01c0b0bf78a6608b [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 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900100 * Randy Dunlap fixed u64 printk compiler waring
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;
1137 pkt_dev->burst = value < 1 ? 1 : value;
1138 sprintf(pg_result, "OK: burst=%d", pkt_dev->burst);
1139 return count;
1140 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001141 if (!strcmp(name, "node")) {
1142 len = num_arg(&user_buffer[i], 10, &value);
1143 if (len < 0)
1144 return len;
1145
1146 i += len;
1147
1148 if (node_possible(value)) {
1149 pkt_dev->node = value;
1150 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001151 if (pkt_dev->page) {
1152 put_page(pkt_dev->page);
1153 pkt_dev->page = NULL;
1154 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001155 }
1156 else
1157 sprintf(pg_result, "ERROR: node not possible");
1158 return count;
1159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001161 char f[32];
1162 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001164 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001165 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (copy_from_user(f, &user_buffer[i], len))
1168 return -EFAULT;
1169 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001170 if (strcmp(f, "IPSRC_RND") == 0)
1171 pkt_dev->flags |= F_IPSRC_RND;
1172
1173 else if (strcmp(f, "!IPSRC_RND") == 0)
1174 pkt_dev->flags &= ~F_IPSRC_RND;
1175
1176 else if (strcmp(f, "TXSIZE_RND") == 0)
1177 pkt_dev->flags |= F_TXSIZE_RND;
1178
1179 else if (strcmp(f, "!TXSIZE_RND") == 0)
1180 pkt_dev->flags &= ~F_TXSIZE_RND;
1181
1182 else if (strcmp(f, "IPDST_RND") == 0)
1183 pkt_dev->flags |= F_IPDST_RND;
1184
1185 else if (strcmp(f, "!IPDST_RND") == 0)
1186 pkt_dev->flags &= ~F_IPDST_RND;
1187
1188 else if (strcmp(f, "UDPSRC_RND") == 0)
1189 pkt_dev->flags |= F_UDPSRC_RND;
1190
1191 else if (strcmp(f, "!UDPSRC_RND") == 0)
1192 pkt_dev->flags &= ~F_UDPSRC_RND;
1193
1194 else if (strcmp(f, "UDPDST_RND") == 0)
1195 pkt_dev->flags |= F_UDPDST_RND;
1196
1197 else if (strcmp(f, "!UDPDST_RND") == 0)
1198 pkt_dev->flags &= ~F_UDPDST_RND;
1199
1200 else if (strcmp(f, "MACSRC_RND") == 0)
1201 pkt_dev->flags |= F_MACSRC_RND;
1202
1203 else if (strcmp(f, "!MACSRC_RND") == 0)
1204 pkt_dev->flags &= ~F_MACSRC_RND;
1205
1206 else if (strcmp(f, "MACDST_RND") == 0)
1207 pkt_dev->flags |= F_MACDST_RND;
1208
1209 else if (strcmp(f, "!MACDST_RND") == 0)
1210 pkt_dev->flags &= ~F_MACDST_RND;
1211
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001212 else if (strcmp(f, "MPLS_RND") == 0)
1213 pkt_dev->flags |= F_MPLS_RND;
1214
1215 else if (strcmp(f, "!MPLS_RND") == 0)
1216 pkt_dev->flags &= ~F_MPLS_RND;
1217
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001218 else if (strcmp(f, "VID_RND") == 0)
1219 pkt_dev->flags |= F_VID_RND;
1220
1221 else if (strcmp(f, "!VID_RND") == 0)
1222 pkt_dev->flags &= ~F_VID_RND;
1223
1224 else if (strcmp(f, "SVID_RND") == 0)
1225 pkt_dev->flags |= F_SVID_RND;
1226
1227 else if (strcmp(f, "!SVID_RND") == 0)
1228 pkt_dev->flags &= ~F_SVID_RND;
1229
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001230 else if (strcmp(f, "FLOW_SEQ") == 0)
1231 pkt_dev->flags |= F_FLOW_SEQ;
1232
Robert Olsson45b270f2007-08-28 15:45:55 -07001233 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1234 pkt_dev->flags |= F_QUEUE_MAP_RND;
1235
1236 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1237 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001238
1239 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1240 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1241
1242 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1243 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001244#ifdef CONFIG_XFRM
1245 else if (strcmp(f, "IPSEC") == 0)
1246 pkt_dev->flags |= F_IPSEC_ON;
1247#endif
1248
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001249 else if (strcmp(f, "!IPV6") == 0)
1250 pkt_dev->flags &= ~F_IPV6;
1251
Robert Olssone99b99b2010-03-18 22:44:30 +00001252 else if (strcmp(f, "NODE_ALLOC") == 0)
1253 pkt_dev->flags |= F_NODE;
1254
1255 else if (strcmp(f, "!NODE_ALLOC") == 0)
1256 pkt_dev->flags &= ~F_NODE;
1257
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001258 else if (strcmp(f, "UDPCSUM") == 0)
1259 pkt_dev->flags |= F_UDPCSUM;
1260
1261 else if (strcmp(f, "!UDPCSUM") == 0)
1262 pkt_dev->flags &= ~F_UDPCSUM;
1263
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001264 else if (strcmp(f, "NO_TIMESTAMP") == 0)
1265 pkt_dev->flags |= F_NO_TIMESTAMP;
1266
Luiz Capitulino222f1802006-03-20 22:16:13 -08001267 else {
1268 sprintf(pg_result,
1269 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1270 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001271 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001272 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
1273 "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
1274 "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001275 "NO_TIMESTAMP, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001276#ifdef CONFIG_XFRM
1277 "IPSEC, "
1278#endif
1279 "NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 return count;
1281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1283 return count;
1284 }
1285 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1286 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001287 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001288 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Luiz Capitulino222f1802006-03-20 22:16:13 -08001290 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001292 buf[len] = 0;
1293 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1294 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1295 strncpy(pkt_dev->dst_min, buf, len);
1296 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1297 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1298 }
1299 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001300 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001301 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1303 return count;
1304 }
1305 if (!strcmp(name, "dst_max")) {
1306 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001307 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001308 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Luiz Capitulino222f1802006-03-20 22:16:13 -08001311 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return -EFAULT;
1313
Luiz Capitulino222f1802006-03-20 22:16:13 -08001314 buf[len] = 0;
1315 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1316 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1317 strncpy(pkt_dev->dst_max, buf, len);
1318 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1319 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1320 }
1321 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001322 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 i += len;
1324 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1325 return count;
1326 }
1327 if (!strcmp(name, "dst6")) {
1328 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001329 if (len < 0)
1330 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 pkt_dev->flags |= F_IPV6;
1333
Luiz Capitulino222f1802006-03-20 22:16:13 -08001334 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001336 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Amerigo Wangc468fb12012-10-09 17:48:20 +00001338 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001339 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001341 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001344 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Luiz Capitulino222f1802006-03-20 22:16:13 -08001346 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 sprintf(pg_result, "OK: dst6=%s", buf);
1348 return count;
1349 }
1350 if (!strcmp(name, "dst6_min")) {
1351 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001352 if (len < 0)
1353 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 pkt_dev->flags |= F_IPV6;
1356
Luiz Capitulino222f1802006-03-20 22:16:13 -08001357 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001359 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Amerigo Wangc468fb12012-10-09 17:48:20 +00001361 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001362 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001364 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001365 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001366 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Luiz Capitulino222f1802006-03-20 22:16:13 -08001368 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 sprintf(pg_result, "OK: dst6_min=%s", buf);
1370 return count;
1371 }
1372 if (!strcmp(name, "dst6_max")) {
1373 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001374 if (len < 0)
1375 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 pkt_dev->flags |= F_IPV6;
1378
Luiz Capitulino222f1802006-03-20 22:16:13 -08001379 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001381 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Amerigo Wangc468fb12012-10-09 17:48:20 +00001383 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001384 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Luiz Capitulino222f1802006-03-20 22:16:13 -08001386 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001387 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Luiz Capitulino222f1802006-03-20 22:16:13 -08001389 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 sprintf(pg_result, "OK: dst6_max=%s", buf);
1391 return count;
1392 }
1393 if (!strcmp(name, "src6")) {
1394 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001395 if (len < 0)
1396 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 pkt_dev->flags |= F_IPV6;
1399
Luiz Capitulino222f1802006-03-20 22:16:13 -08001400 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001402 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Amerigo Wangc468fb12012-10-09 17:48:20 +00001404 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001405 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001407 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Luiz Capitulino222f1802006-03-20 22:16:13 -08001409 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001410 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001411
1412 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 sprintf(pg_result, "OK: src6=%s", buf);
1414 return count;
1415 }
1416 if (!strcmp(name, "src_min")) {
1417 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001418 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001419 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001420
Luiz Capitulino222f1802006-03-20 22:16:13 -08001421 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001423 buf[len] = 0;
1424 if (strcmp(buf, pkt_dev->src_min) != 0) {
1425 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1426 strncpy(pkt_dev->src_min, buf, len);
1427 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1428 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1429 }
1430 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001431 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 i += len;
1433 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1434 return count;
1435 }
1436 if (!strcmp(name, "src_max")) {
1437 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001438 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001439 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001440
Luiz Capitulino222f1802006-03-20 22:16:13 -08001441 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001443 buf[len] = 0;
1444 if (strcmp(buf, pkt_dev->src_max) != 0) {
1445 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1446 strncpy(pkt_dev->src_max, buf, len);
1447 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1448 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1449 }
1450 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001451 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 i += len;
1453 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1454 return count;
1455 }
1456 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001458 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001459 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001462 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001465 if (!mac_pton(valstr, pkt_dev->dst_mac))
1466 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001468 ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001469
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001470 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return count;
1472 }
1473 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001475 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001476 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001479 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001482 if (!mac_pton(valstr, pkt_dev->src_mac))
1483 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001484 /* Set up Src MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001485 ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001486
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001487 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return count;
1489 }
1490
Luiz Capitulino222f1802006-03-20 22:16:13 -08001491 if (!strcmp(name, "clear_counters")) {
1492 pktgen_clear_counters(pkt_dev);
1493 sprintf(pg_result, "OK: Clearing counters.\n");
1494 return count;
1495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 if (!strcmp(name, "flows")) {
1498 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001499 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001500 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 i += len;
1503 if (value > MAX_CFLOWS)
1504 value = MAX_CFLOWS;
1505
1506 pkt_dev->cflows = value;
1507 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1508 return count;
1509 }
Fan Du6bae9192014-01-10 14:39:13 +08001510#ifdef CONFIG_XFRM
Fan Dude4aee72014-01-03 11:18:30 +08001511 if (!strcmp(name, "spi")) {
1512 len = num_arg(&user_buffer[i], 10, &value);
1513 if (len < 0)
1514 return len;
1515
1516 i += len;
1517 pkt_dev->spi = value;
1518 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1519 return count;
1520 }
Fan Du6bae9192014-01-10 14:39:13 +08001521#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (!strcmp(name, "flowlen")) {
1523 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001524 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001525 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 i += len;
1528 pkt_dev->lflow = value;
1529 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1530 return count;
1531 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001532
Robert Olsson45b270f2007-08-28 15:45:55 -07001533 if (!strcmp(name, "queue_map_min")) {
1534 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001535 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001536 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001537
Robert Olsson45b270f2007-08-28 15:45:55 -07001538 i += len;
1539 pkt_dev->queue_map_min = value;
1540 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1541 return count;
1542 }
1543
1544 if (!strcmp(name, "queue_map_max")) {
1545 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001546 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001547 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001548
Robert Olsson45b270f2007-08-28 15:45:55 -07001549 i += len;
1550 pkt_dev->queue_map_max = value;
1551 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1552 return count;
1553 }
1554
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001555 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001556 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001557
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001558 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001559 if (len < 0)
1560 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001561 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001562 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001563 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001564 cnt += sprintf(pg_result + cnt,
1565 "%08x%s", ntohl(pkt_dev->labels[n]),
1566 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001567
1568 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1569 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1570 pkt_dev->svlan_id = 0xffff;
1571
1572 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001573 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001574 }
1575 return count;
1576 }
1577
1578 if (!strcmp(name, "vlan_id")) {
1579 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001580 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001581 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001582
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001583 i += len;
1584 if (value <= 4095) {
1585 pkt_dev->vlan_id = value; /* turn on VLAN */
1586
1587 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001588 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001589
1590 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001591 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001592
1593 pkt_dev->nr_labels = 0; /* turn off MPLS */
1594 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1595 } else {
1596 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1597 pkt_dev->svlan_id = 0xffff;
1598
1599 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001600 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001601 }
1602 return count;
1603 }
1604
1605 if (!strcmp(name, "vlan_p")) {
1606 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001607 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001608 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001609
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001610 i += len;
1611 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1612 pkt_dev->vlan_p = value;
1613 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1614 } else {
1615 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1616 }
1617 return count;
1618 }
1619
1620 if (!strcmp(name, "vlan_cfi")) {
1621 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001622 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001623 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001624
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001625 i += len;
1626 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1627 pkt_dev->vlan_cfi = value;
1628 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1629 } else {
1630 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1631 }
1632 return count;
1633 }
1634
1635 if (!strcmp(name, "svlan_id")) {
1636 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001637 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001638 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001639
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001640 i += len;
1641 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1642 pkt_dev->svlan_id = value; /* turn on SVLAN */
1643
1644 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001645 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001646
1647 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001648 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001649
1650 pkt_dev->nr_labels = 0; /* turn off MPLS */
1651 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1652 } else {
1653 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1654 pkt_dev->svlan_id = 0xffff;
1655
1656 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001657 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001658 }
1659 return count;
1660 }
1661
1662 if (!strcmp(name, "svlan_p")) {
1663 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001664 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001665 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001666
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001667 i += len;
1668 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1669 pkt_dev->svlan_p = value;
1670 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1671 } else {
1672 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1673 }
1674 return count;
1675 }
1676
1677 if (!strcmp(name, "svlan_cfi")) {
1678 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001679 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001680 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001681
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001682 i += len;
1683 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1684 pkt_dev->svlan_cfi = value;
1685 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1686 } else {
1687 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1688 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001689 return count;
1690 }
1691
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001692 if (!strcmp(name, "tos")) {
1693 __u32 tmp_value = 0;
1694 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001695 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001696 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001697
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001698 i += len;
1699 if (len == 2) {
1700 pkt_dev->tos = tmp_value;
1701 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1702 } else {
1703 sprintf(pg_result, "ERROR: tos must be 00-ff");
1704 }
1705 return count;
1706 }
1707
1708 if (!strcmp(name, "traffic_class")) {
1709 __u32 tmp_value = 0;
1710 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001711 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001712 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001713
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001714 i += len;
1715 if (len == 2) {
1716 pkt_dev->traffic_class = tmp_value;
1717 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1718 } else {
1719 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1720 }
1721 return count;
1722 }
1723
John Fastabend9e50e3a2010-11-16 19:12:28 +00001724 if (!strcmp(name, "skb_priority")) {
1725 len = num_arg(&user_buffer[i], 9, &value);
1726 if (len < 0)
1727 return len;
1728
1729 i += len;
1730 pkt_dev->skb_priority = value;
1731 sprintf(pg_result, "OK: skb_priority=%i",
1732 pkt_dev->skb_priority);
1733 return count;
1734 }
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1737 return -EINVAL;
1738}
1739
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001740static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
Al Virod9dda782013-03-31 18:16:14 -04001742 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001743}
1744
Arjan van de Ven9a321442007-02-12 00:55:35 -08001745static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001746 .owner = THIS_MODULE,
1747 .open = pktgen_if_open,
1748 .read = seq_read,
1749 .llseek = seq_lseek,
1750 .write = pktgen_if_write,
1751 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001752};
1753
1754static int pktgen_thread_show(struct seq_file *seq, void *v)
1755{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001756 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001757 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001759 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Thomas Graf97dc48e2014-05-16 23:28:54 +02001761 seq_puts(seq, "Running: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001762
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001763 rcu_read_lock();
1764 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001765 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001766 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Thomas Graf97dc48e2014-05-16 23:28:54 +02001768 seq_puts(seq, "\nStopped: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001769
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001770 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001771 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001772 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001775 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 else
Thomas Graf97dc48e2014-05-16 23:28:54 +02001777 seq_puts(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001779 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001781 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
1783
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001784static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001785 const char __user * user_buffer,
1786 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
Joe Perches8a994a72010-07-12 10:50:23 +00001788 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001789 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001790 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001792 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001795 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return -EINVAL;
1797 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001798
Paul Gortmakerd6182222010-10-18 12:14:44 +00001799 max = count;
1800 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001801 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001802 return len;
1803
Paul Gortmakerd6182222010-10-18 12:14:44 +00001804 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 /* Read variable name */
1807
1808 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001809 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001810 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 memset(name, 0, sizeof(name));
1813 if (copy_from_user(name, &user_buffer[i], len))
1814 return -EFAULT;
1815 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001816
Luiz Capitulino222f1802006-03-20 22:16:13 -08001817 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001819 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001820 return len;
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 i += len;
1823
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001824 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001825 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Luiz Capitulino222f1802006-03-20 22:16:13 -08001827 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001828 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 ret = -EINVAL;
1830 goto out;
1831 }
1832
1833 pg_result = &(t->result[0]);
1834
Luiz Capitulino222f1802006-03-20 22:16:13 -08001835 if (!strcmp(name, "add_device")) {
1836 char f[32];
1837 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001839 if (len < 0) {
1840 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 goto out;
1842 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001843 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return -EFAULT;
1845 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001846 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001847 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001848 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001849 if (!ret) {
1850 ret = count;
1851 sprintf(pg_result, "OK: add_device=%s", f);
1852 } else
1853 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 goto out;
1855 }
1856
Luiz Capitulino222f1802006-03-20 22:16:13 -08001857 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001858 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001859 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001860 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001861 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001863 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 goto out;
1865 }
1866
Luiz Capitulino222f1802006-03-20 22:16:13 -08001867 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001868 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001869 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 goto out;
1871 }
1872
1873 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001874out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return ret;
1876}
1877
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001878static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Al Virod9dda782013-03-31 18:16:14 -04001880 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
Arjan van de Ven9a321442007-02-12 00:55:35 -08001883static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001884 .owner = THIS_MODULE,
1885 .open = pktgen_thread_open,
1886 .read = seq_read,
1887 .llseek = seq_lseek,
1888 .write = pktgen_thread_write,
1889 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001890};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001893static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1894 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 struct pktgen_thread *t;
1897 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001898 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Cong Wang4e58a022013-01-28 19:55:53 +00001900 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001901 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001903 if (remove) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001904 pkt_dev->removal_mark = 1;
1905 t->control |= T_REMDEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 break;
1908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001910 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911}
1912
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001913/*
1914 * mark a device for removal
1915 */
Cong Wang4e58a022013-01-28 19:55:53 +00001916static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
1918 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001919 const int max_tries = 10, msec_per_try = 125;
1920 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001921
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001922 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001923 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001924
Luiz Capitulino222f1802006-03-20 22:16:13 -08001925 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001926
Cong Wang4e58a022013-01-28 19:55:53 +00001927 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001928 if (pkt_dev == NULL)
1929 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001930
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001931 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001932 pr_debug("%s: waiting for %s to disappear....\n",
1933 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001934 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001935 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001936
1937 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001938 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1939 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001940 break;
1941 }
1942
1943 }
1944
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001945 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001946}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001947
Cong Wang4e58a022013-01-28 19:55:53 +00001948static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001949{
1950 struct pktgen_thread *t;
1951
Cong Wang4e58a022013-01-28 19:55:53 +00001952 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001953 struct pktgen_dev *pkt_dev;
1954
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001955 rcu_read_lock();
1956 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001957 if (pkt_dev->odev != dev)
1958 continue;
1959
David Howellsa8ca16e2013-04-12 17:27:28 +01001960 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001961
Alexey Dobriyan29753152009-08-28 23:34:43 -07001962 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001963 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001964 &pktgen_if_fops,
1965 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001966 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001967 pr_err("can't move proc entry for '%s'\n",
1968 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001969 break;
1970 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001971 rcu_read_unlock();
Stephen Hemminger39df2322007-03-04 16:11:51 -08001972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974
Luiz Capitulino222f1802006-03-20 22:16:13 -08001975static int pktgen_device_event(struct notifier_block *unused,
1976 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
Jiri Pirko351638e2013-05-28 01:30:21 +00001978 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001979 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Cong Wang4e58a022013-01-28 19:55:53 +00001981 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001982 return NOTIFY_DONE;
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 /* It is OK that we do not hold the group lock right now,
1985 * as we run under the RTNL lock.
1986 */
1987
1988 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001989 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001990 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001994 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 return NOTIFY_DONE;
1999}
2000
Cong Wang4e58a022013-01-28 19:55:53 +00002001static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
2002 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002003 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002004{
2005 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00002006 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07002007
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002008 for (i = 0; ifname[i] != '@'; i++) {
2009 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002010 break;
2011
2012 b[i] = ifname[i];
2013 }
2014 b[i] = 0;
2015
Cong Wang4e58a022013-01-28 19:55:53 +00002016 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07002017}
2018
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020/* Associate pktgen_dev with a device. */
2021
Cong Wang4e58a022013-01-28 19:55:53 +00002022static int pktgen_setup_dev(const struct pktgen_net *pn,
2023 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002024{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08002026 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (pkt_dev->odev) {
2030 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002031 pkt_dev->odev = NULL;
2032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Cong Wang4e58a022013-01-28 19:55:53 +00002034 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002036 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002037 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002041 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002042 err = -EINVAL;
2043 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002044 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002045 err = -ENETDOWN;
2046 } else {
2047 pkt_dev->odev = odev;
2048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002052 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055/* Read pkt_dev from the interface and set up internal pktgen_dev
2056 * structure to have the right information to create/send packets
2057 */
2058static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2059{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002060 int ntxq;
2061
Luiz Capitulino222f1802006-03-20 22:16:13 -08002062 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002063 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002064 sprintf(pkt_dev->result,
2065 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2066 return;
2067 }
2068
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002069 /* make sure that we don't pick a non-existing transmit queue */
2070 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002071
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002072 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perches294a0b72014-09-09 21:17:30 -07002073 pr_warn("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2074 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2075 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002076 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002077 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002078 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perches294a0b72014-09-09 21:17:30 -07002079 pr_warn("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2080 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2081 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002082 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002083 }
2084
Luiz Capitulino222f1802006-03-20 22:16:13 -08002085 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002087 if (is_zero_ether_addr(pkt_dev->src_mac))
Joe Perches9ea08b12014-01-20 09:52:19 -08002088 ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Luiz Capitulino222f1802006-03-20 22:16:13 -08002090 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08002091 ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Luiz Capitulino222f1802006-03-20 22:16:13 -08002093 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002094 int i, set = 0, err = 1;
2095 struct inet6_dev *idev;
2096
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002097 if (pkt_dev->min_pkt_size == 0) {
2098 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2099 + sizeof(struct udphdr)
2100 + sizeof(struct pktgen_hdr)
2101 + pkt_dev->pkt_overhead;
2102 }
2103
Luiz Capitulino222f1802006-03-20 22:16:13 -08002104 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2105 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 set = 1;
2107 break;
2108 }
2109
Luiz Capitulino222f1802006-03-20 22:16:13 -08002110 if (!set) {
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 /*
2113 * Use linklevel address if unconfigured.
2114 *
2115 * use ipv6_get_lladdr if/when it's get exported
2116 */
2117
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002118 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002119 idev = __in6_dev_get(pkt_dev->odev);
2120 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 struct inet6_ifaddr *ifp;
2122
2123 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002124 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2125 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002126 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002127 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 err = 0;
2129 break;
2130 }
2131 }
2132 read_unlock_bh(&idev->lock);
2133 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002134 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002135 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002136 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002138 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002139 if (pkt_dev->min_pkt_size == 0) {
2140 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2141 + sizeof(struct udphdr)
2142 + sizeof(struct pktgen_hdr)
2143 + pkt_dev->pkt_overhead;
2144 }
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 pkt_dev->saddr_min = 0;
2147 pkt_dev->saddr_max = 0;
2148 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002149
2150 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002153 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (in_dev) {
2155 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002156 pkt_dev->saddr_min =
2157 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 pkt_dev->saddr_max = pkt_dev->saddr_min;
2159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
2161 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002162 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2164 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2165 }
2166
2167 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2168 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2169 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002170 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002171 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2172 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2173 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2174
Luiz Capitulino222f1802006-03-20 22:16:13 -08002175 pkt_dev->cur_dst_mac_offset = 0;
2176 pkt_dev->cur_src_mac_offset = 0;
2177 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2178 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2179 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2180 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 pkt_dev->nflows = 0;
2182}
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002185static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2186{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002187 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002188 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002189 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002190
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002191 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2192 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002193
Daniel Turull43d28b62010-06-09 22:49:57 +00002194 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002195 if (remaining <= 0) {
2196 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002197 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002198 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002199
Daniel Borkmann398f3822012-10-28 08:27:19 +00002200 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002201 if (remaining < 100000) {
2202 /* for small delays (<100us), just loop until limit is reached */
2203 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002204 end_time = ktime_get();
2205 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002206 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002207 /* see do_nanosleep */
2208 hrtimer_init_sleeper(&t, current);
2209 do {
2210 set_current_state(TASK_INTERRUPTIBLE);
2211 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2212 if (!hrtimer_active(&t.timer))
2213 t.task = NULL;
2214
2215 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002218 hrtimer_cancel(&t.timer);
2219 } while (t.task && pkt_dev->running && !signal_pending(current));
2220 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002221 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002223
2224 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002225 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
2227
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002228static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2229{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002230 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002231 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2232 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2233 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2234}
2235
Stephen Hemminger648fda72009-08-27 13:55:07 +00002236static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002237{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002238 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002239}
2240
2241static inline int f_pick(struct pktgen_dev *pkt_dev)
2242{
2243 int flow = pkt_dev->curfl;
2244
2245 if (pkt_dev->flags & F_FLOW_SEQ) {
2246 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2247 /* reset time */
2248 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002249 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002250 pkt_dev->curfl += 1;
2251 if (pkt_dev->curfl >= pkt_dev->cflows)
2252 pkt_dev->curfl = 0; /*reset */
2253 }
2254 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002255 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002256 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002257
Robert Olsson1211a642008-08-05 18:44:26 -07002258 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002259 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002260 pkt_dev->flows[flow].flags = 0;
2261 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002262 }
2263
2264 return pkt_dev->curfl;
2265}
2266
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002267
2268#ifdef CONFIG_XFRM
2269/* If there was already an IPSEC SA, we keep it as is, else
2270 * we go look for it ...
2271*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002272#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002273static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002274{
2275 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002276 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002277 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002278
2279 if (pkt_dev->spi) {
2280 /* We need as quick as possible to find the right SA
2281 * Searching with minimum criteria to archieve this.
2282 */
2283 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2284 } else {
2285 /* slow path: we dont already have xfrm_state */
2286 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
2287 (xfrm_address_t *)&pkt_dev->cur_daddr,
2288 (xfrm_address_t *)&pkt_dev->cur_saddr,
2289 AF_INET,
2290 pkt_dev->ipsmode,
2291 pkt_dev->ipsproto, 0);
2292 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002293 if (x) {
2294 pkt_dev->flows[flow].x = x;
2295 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002296 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002297 }
2298
2299 }
2300}
2301#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002302static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2303{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002304
2305 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2306 pkt_dev->cur_queue_map = smp_processor_id();
2307
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002308 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002309 __u16 t;
2310 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002311 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002312 (pkt_dev->queue_map_max -
2313 pkt_dev->queue_map_min + 1)
2314 + pkt_dev->queue_map_min;
2315 } else {
2316 t = pkt_dev->cur_queue_map + 1;
2317 if (t > pkt_dev->queue_map_max)
2318 t = pkt_dev->queue_map_min;
2319 }
2320 pkt_dev->cur_queue_map = t;
2321 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002322 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 -07002323}
2324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325/* Increment/randomize headers according to flags and current values
2326 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2327 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002328static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2329{
2330 __u32 imn;
2331 __u32 imx;
2332 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002334 if (pkt_dev->cflows)
2335 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002338 if (pkt_dev->src_mac_count > 1) {
2339 __u32 mc;
2340 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Luiz Capitulino222f1802006-03-20 22:16:13 -08002342 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002343 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002344 else {
2345 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002346 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002347 pkt_dev->src_mac_count)
2348 pkt_dev->cur_src_mac_offset = 0;
2349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Luiz Capitulino222f1802006-03-20 22:16:13 -08002351 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2352 pkt_dev->hh[11] = tmp;
2353 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2354 pkt_dev->hh[10] = tmp;
2355 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2356 pkt_dev->hh[9] = tmp;
2357 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2358 pkt_dev->hh[8] = tmp;
2359 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2360 pkt_dev->hh[7] = tmp;
2361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Luiz Capitulino222f1802006-03-20 22:16:13 -08002363 /* Deal with Destination MAC */
2364 if (pkt_dev->dst_mac_count > 1) {
2365 __u32 mc;
2366 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Luiz Capitulino222f1802006-03-20 22:16:13 -08002368 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002369 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Luiz Capitulino222f1802006-03-20 22:16:13 -08002371 else {
2372 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002373 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002374 pkt_dev->dst_mac_count) {
2375 pkt_dev->cur_dst_mac_offset = 0;
2376 }
2377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Luiz Capitulino222f1802006-03-20 22:16:13 -08002379 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2380 pkt_dev->hh[5] = tmp;
2381 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2382 pkt_dev->hh[4] = tmp;
2383 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2384 pkt_dev->hh[3] = tmp;
2385 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2386 pkt_dev->hh[2] = tmp;
2387 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2388 pkt_dev->hh[1] = tmp;
2389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002391 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002392 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002393 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002394 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2395 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002396 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002397 htonl(0x000fffff));
2398 }
2399
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002400 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002401 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002402 }
2403
2404 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002405 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002406 }
2407
Luiz Capitulino222f1802006-03-20 22:16:13 -08002408 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2409 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002410 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002411 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2412 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Luiz Capitulino222f1802006-03-20 22:16:13 -08002414 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 pkt_dev->cur_udp_src++;
2416 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2417 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002418 }
2419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Luiz Capitulino222f1802006-03-20 22:16:13 -08002421 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2422 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002423 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002424 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2425 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002426 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002428 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002430 }
2431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433 if (!(pkt_dev->flags & F_IPV6)) {
2434
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002435 imn = ntohl(pkt_dev->saddr_min);
2436 imx = ntohl(pkt_dev->saddr_max);
2437 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002439 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002440 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 else {
2442 t = ntohl(pkt_dev->cur_saddr);
2443 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002444 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 }
2448 pkt_dev->cur_saddr = htonl(t);
2449 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002450
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002451 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2453 } else {
Al Viro252e3342006-11-14 20:48:11 -08002454 imn = ntohl(pkt_dev->daddr_min);
2455 imx = ntohl(pkt_dev->daddr_max);
2456 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002458 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 if (pkt_dev->flags & F_IPDST_RND) {
2460
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002461 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002462 t = prandom_u32() %
2463 (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002464 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002465 } while (ipv4_is_loopback(s) ||
2466 ipv4_is_multicast(s) ||
2467 ipv4_is_lbcast(s) ||
2468 ipv4_is_zeronet(s) ||
2469 ipv4_is_local_multicast(s));
Al Viro252e3342006-11-14 20:48:11 -08002470 pkt_dev->cur_daddr = s;
2471 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 t = ntohl(pkt_dev->cur_daddr);
2473 t++;
2474 if (t > imx) {
2475 t = imn;
2476 }
2477 pkt_dev->cur_daddr = htonl(t);
2478 }
2479 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002480 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002481 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002482 pkt_dev->flows[flow].cur_daddr =
2483 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002484#ifdef CONFIG_XFRM
2485 if (pkt_dev->flags & F_IPSEC_ON)
2486 get_ipsec_sa(pkt_dev, flow);
2487#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 pkt_dev->nflows++;
2489 }
2490 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002491 } else { /* IPV6 * */
2492
Joe Perches06e30412012-10-18 17:55:31 +00002493 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 int i;
2495
2496 /* Only random destinations yet */
2497
Luiz Capitulino222f1802006-03-20 22:16:13 -08002498 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002500 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002501 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2502 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 }
2506
Luiz Capitulino222f1802006-03-20 22:16:13 -08002507 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2508 __u32 t;
2509 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002510 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002511 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2512 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002513 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002515 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002517 }
2518 pkt_dev->cur_pkt_size = t;
2519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002521 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 pkt_dev->flows[flow].count++;
2524}
2525
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002526
2527#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002528static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d472014-01-03 11:18:31 +08002529
2530 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2531};
2532
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002533static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2534{
2535 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2536 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002537 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002538
2539 if (!x)
2540 return 0;
2541 /* XXX: we dont support tunnel mode for now until
2542 * we resolve the dst issue */
Fan Ducf93d472014-01-03 11:18:31 +08002543 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002544 return 0;
2545
Fan Ducf93d472014-01-03 11:18:31 +08002546 /* But when user specify an valid SPI, transformation
2547 * supports both transport/tunnel mode + ESP/AH type.
2548 */
2549 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
2550 skb->_skb_refdst = (unsigned long)&pkt_dev->dst | SKB_DST_NOREF;
2551
2552 rcu_read_lock_bh();
Herbert Xu13996372007-10-17 21:35:51 -07002553 err = x->outer_mode->output(x, skb);
Fan Ducf93d472014-01-03 11:18:31 +08002554 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002555 if (err) {
2556 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002557 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002558 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002559 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002560 if (err) {
2561 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002562 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002563 }
Fan Du0af0a412014-01-03 11:18:27 +08002564 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002565 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002566 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002567 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002568error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002569 return err;
2570}
2571
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002572static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002573{
2574 if (pkt_dev->cflows) {
2575 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002576 int i;
2577 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002578 struct xfrm_state *x = pkt_dev->flows[i].x;
2579 if (x) {
2580 xfrm_state_put(x);
2581 pkt_dev->flows[i].x = NULL;
2582 }
2583 }
2584 }
2585}
2586
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002587static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002588 struct sk_buff *skb, __be16 protocol)
2589{
2590 if (pkt_dev->flags & F_IPSEC_ON) {
2591 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2592 int nhead = 0;
2593 if (x) {
2594 int ret;
2595 __u8 *eth;
fan.du38682042013-12-01 16:28:48 +08002596 struct iphdr *iph;
2597
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002598 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002599 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002600 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2601 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002602 pr_err("Error expanding ipsec packet %d\n",
2603 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002604 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002605 }
2606 }
2607
2608 /* ipsec is not expecting ll header */
2609 skb_pull(skb, ETH_HLEN);
2610 ret = pktgen_output_ipsec(skb, pkt_dev);
2611 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002612 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002613 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002614 }
2615 /* restore ll */
2616 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2617 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002618 *(u16 *) &eth[12] = protocol;
fan.du38682042013-12-01 16:28:48 +08002619
2620 /* Update IPv4 header len as well as checksum value */
2621 iph = ip_hdr(skb);
2622 iph->tot_len = htons(skb->len - ETH_HLEN);
2623 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002624 }
2625 }
2626 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002627err:
2628 kfree_skb(skb);
2629 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002630}
2631#endif
2632
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002633static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2634{
Eric Dumazet95c96172012-04-15 05:58:06 +00002635 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002636 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002637 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002638
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002639 mpls--;
2640 *mpls |= MPLS_STACK_BOTTOM;
2641}
2642
Al Viro0f37c602006-11-03 03:49:56 -08002643static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2644 unsigned int prio)
2645{
2646 return htons(id | (cfi << 12) | (prio << 13));
2647}
2648
Eric Dumazet26ad7872011-01-25 13:26:05 -08002649static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2650 int datalen)
2651{
2652 struct timeval timestamp;
2653 struct pktgen_hdr *pgh;
2654
2655 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2656 datalen -= sizeof(*pgh);
2657
2658 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002659 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002660 } else {
2661 int frags = pkt_dev->nfrags;
2662 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002663 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002664
2665
2666 if (frags > MAX_SKB_FRAGS)
2667 frags = MAX_SKB_FRAGS;
2668 len = datalen - frags * PAGE_SIZE;
2669 if (len > 0) {
2670 memset(skb_put(skb, len), 0, len);
2671 datalen = frags * PAGE_SIZE;
2672 }
2673
2674 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002675 frag_len = (datalen/frags) < PAGE_SIZE ?
2676 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002677 while (datalen > 0) {
2678 if (unlikely(!pkt_dev->page)) {
2679 int node = numa_node_id();
2680
2681 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2682 node = pkt_dev->node;
2683 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2684 if (!pkt_dev->page)
2685 break;
2686 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002687 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002688 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002689 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002690 /*last fragment, fill rest of data*/
2691 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002692 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2693 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002694 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002695 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2696 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2697 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2698 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002699 i++;
2700 skb_shinfo(skb)->nr_frags = i;
2701 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002702 }
2703
2704 /* Stamp the time, and sequence number,
2705 * convert them to network byte order
2706 */
2707 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2708 pgh->seq_num = htonl(pkt_dev->seq_num);
2709
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002710 if (pkt_dev->flags & F_NO_TIMESTAMP) {
2711 pgh->tv_sec = 0;
2712 pgh->tv_usec = 0;
2713 } else {
2714 do_gettimeofday(&timestamp);
2715 pgh->tv_sec = htonl(timestamp.tv_sec);
2716 pgh->tv_usec = htonl(timestamp.tv_usec);
2717 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002718}
2719
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002720static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
2721 struct pktgen_dev *pkt_dev,
2722 unsigned int extralen)
2723{
2724 struct sk_buff *skb = NULL;
2725 unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen +
2726 pkt_dev->pkt_overhead;
2727
2728 if (pkt_dev->flags & F_NODE) {
2729 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2730
2731 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2732 if (likely(skb)) {
2733 skb_reserve(skb, NET_SKB_PAD);
2734 skb->dev = dev;
2735 }
2736 } else {
2737 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2738 }
2739
2740 return skb;
2741}
2742
Luiz Capitulino222f1802006-03-20 22:16:13 -08002743static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2744 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
2746 struct sk_buff *skb = NULL;
2747 __u8 *eth;
2748 struct udphdr *udph;
2749 int datalen, iplen;
2750 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002751 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002752 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002753 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2754 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2755 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2756 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002757 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002758
2759 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002760 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002761
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002762 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002763 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002764
Robert Olsson64053be2005-06-26 15:27:10 -07002765 /* Update any of the values, used when we're incrementing various
2766 * fields.
2767 */
2768 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002769 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002770
David S. Miller7ac54592006-01-18 14:19:10 -08002771 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002772
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002773 skb = pktgen_alloc_skb(odev, pkt_dev, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 if (!skb) {
2775 sprintf(pkt_dev->result, "No memory");
2776 return NULL;
2777 }
2778
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002779 prefetchw(skb->data);
David S. Miller7ac54592006-01-18 14:19:10 -08002780 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 /* Reserve for ethernet and IP header */
2783 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002784 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2785 if (pkt_dev->nr_labels)
2786 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002787
2788 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002789 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002790 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002791 *svlan_tci = build_tci(pkt_dev->svlan_id,
2792 pkt_dev->svlan_cfi,
2793 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002794 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002795 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002796 }
2797 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002798 *vlan_tci = build_tci(pkt_dev->vlan_id,
2799 pkt_dev->vlan_cfi,
2800 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002801 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002802 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002803 }
2804
Thomas Graf525cebe2013-06-03 11:49:23 +00002805 skb_set_mac_header(skb, 0);
2806 skb_set_network_header(skb, skb->len);
2807 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2808
2809 skb_set_transport_header(skb, skb->len);
2810 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002811 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002812 skb->priority = pkt_dev->skb_priority;
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002815 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002817 /* Eth + IPh + UDPh + mpls */
2818 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002819 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002820 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 udph->source = htons(pkt_dev->cur_udp_src);
2824 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002825 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002826 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 iph->ihl = 5;
2829 iph->version = 4;
2830 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002831 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002832 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 iph->saddr = pkt_dev->cur_saddr;
2834 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002835 iph->id = htons(pkt_dev->ip_id);
2836 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 iph->frag_off = 0;
2838 iplen = 20 + 8 + datalen;
2839 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002840 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002841 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 skb->dev = odev;
2843 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002844
2845 if (!(pkt_dev->flags & F_UDPCSUM)) {
2846 skb->ip_summed = CHECKSUM_NONE;
2847 } else if (odev->features & NETIF_F_V4_CSUM) {
2848 skb->ip_summed = CHECKSUM_PARTIAL;
2849 skb->csum = 0;
2850 udp4_hwcsum(skb, udph->source, udph->dest);
2851 } else {
2852 __wsum csum = udp_csum(skb);
2853
2854 /* add protocol-dependent pseudo-header */
2855 udph->check = csum_tcpudp_magic(udph->source, udph->dest,
2856 datalen + 8, IPPROTO_UDP, csum);
2857
2858 if (udph->check == 0)
2859 udph->check = CSUM_MANGLED_0;
2860 }
2861
Eric Dumazet26ad7872011-01-25 13:26:05 -08002862 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002863
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002864#ifdef CONFIG_XFRM
2865 if (!process_ipsec(pkt_dev, skb, protocol))
2866 return NULL;
2867#endif
2868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 return skb;
2870}
2871
Luiz Capitulino222f1802006-03-20 22:16:13 -08002872static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2873 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874{
2875 struct sk_buff *skb = NULL;
2876 __u8 *eth;
2877 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002878 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002880 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002881 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002882 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2883 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2884 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2885 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002886 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002887
2888 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002889 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002890
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002891 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002892 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002893
Robert Olsson64053be2005-06-26 15:27:10 -07002894 /* Update any of the values, used when we're incrementing various
2895 * fields.
2896 */
2897 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002898 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002899
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002900 skb = pktgen_alloc_skb(odev, pkt_dev, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 if (!skb) {
2902 sprintf(pkt_dev->result, "No memory");
2903 return NULL;
2904 }
2905
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002906 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 skb_reserve(skb, 16);
2908
2909 /* Reserve for ethernet and IP header */
2910 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002911 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2912 if (pkt_dev->nr_labels)
2913 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002914
2915 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002916 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002917 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002918 *svlan_tci = build_tci(pkt_dev->svlan_id,
2919 pkt_dev->svlan_cfi,
2920 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002921 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002922 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002923 }
2924 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002925 *vlan_tci = build_tci(pkt_dev->vlan_id,
2926 pkt_dev->vlan_cfi,
2927 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002928 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002929 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002930 }
2931
Thomas Graf525cebe2013-06-03 11:49:23 +00002932 skb_set_mac_header(skb, 0);
2933 skb_set_network_header(skb, skb->len);
2934 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2935
2936 skb_set_transport_header(skb, skb->len);
2937 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002938 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002939 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002942 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002943
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002944 /* Eth + IPh + UDPh + mpls */
2945 datalen = pkt_dev->cur_pkt_size - 14 -
2946 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002947 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002949 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002951 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 }
2953
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002954 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 udph->source = htons(pkt_dev->cur_udp_src);
2956 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002957 udph->len = htons(udplen);
2958 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002960 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002962 if (pkt_dev->traffic_class) {
2963 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002964 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002965 }
2966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 iph->hop_limit = 32;
2968
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002969 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 iph->nexthdr = IPPROTO_UDP;
2971
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002972 iph->daddr = pkt_dev->cur_in6_daddr;
2973 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002975 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 skb->dev = odev;
2977 skb->pkt_type = PACKET_HOST;
2978
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002979 if (!(pkt_dev->flags & F_UDPCSUM)) {
2980 skb->ip_summed = CHECKSUM_NONE;
2981 } else if (odev->features & NETIF_F_V6_CSUM) {
2982 skb->ip_summed = CHECKSUM_PARTIAL;
2983 skb->csum_start = skb_transport_header(skb) - skb->head;
2984 skb->csum_offset = offsetof(struct udphdr, check);
2985 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2986 } else {
2987 __wsum csum = udp_csum(skb);
2988
2989 /* add protocol-dependent pseudo-header */
2990 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2991
2992 if (udph->check == 0)
2993 udph->check = CSUM_MANGLED_0;
2994 }
2995
Eric Dumazet26ad7872011-01-25 13:26:05 -08002996 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 return skb;
2999}
3000
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003001static struct sk_buff *fill_packet(struct net_device *odev,
3002 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003004 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 return fill_packet_ipv6(odev, pkt_dev);
3006 else
3007 return fill_packet_ipv4(odev, pkt_dev);
3008}
3009
Luiz Capitulino222f1802006-03-20 22:16:13 -08003010static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003012 pkt_dev->seq_num = 1;
3013 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003015 pkt_dev->tx_bytes = 0;
3016 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017}
3018
3019/* Set up structure for sending pkts, clear counters */
3020
3021static void pktgen_run(struct pktgen_thread *t)
3022{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003023 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 int started = 0;
3025
Joe Perchesf9467ea2010-06-21 12:29:14 +00003026 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003028 rcu_read_lock();
3029 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
3031 /*
3032 * setup odev and create initial packet.
3033 */
3034 pktgen_setup_inject(pkt_dev);
3035
Luiz Capitulino222f1802006-03-20 22:16:13 -08003036 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 pktgen_clear_counters(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003039 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003040
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003041 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003042
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 strcpy(pkt_dev->result, "Starting");
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003044 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003046 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 strcpy(pkt_dev->result, "Error starting");
3048 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003049 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003050 if (started)
3051 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052}
3053
Cong Wang4e58a022013-01-28 19:55:53 +00003054static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003056 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Joe Perchesf9467ea2010-06-21 12:29:14 +00003058 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003060 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003061
Cong Wang4e58a022013-01-28 19:55:53 +00003062 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003063 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003064
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003065 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066}
3067
Stephen Hemminger648fda72009-08-27 13:55:07 +00003068static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003070 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003072 rcu_read_lock();
3073 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
3074 if (pkt_dev->running) {
3075 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003076 return 1;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003077 }
3078 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080}
3081
Luiz Capitulino222f1802006-03-20 22:16:13 -08003082static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003084 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Luiz Capitulino222f1802006-03-20 22:16:13 -08003086 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Luiz Capitulino222f1802006-03-20 22:16:13 -08003088 if (signal_pending(current))
3089 goto signal;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003090 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003091 return 1;
3092signal:
3093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
3095
Cong Wang4e58a022013-01-28 19:55:53 +00003096static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003098 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003100
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003101 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003102
Cong Wang4e58a022013-01-28 19:55:53 +00003103 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003105 if (sig == 0)
3106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003108
3109 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003110 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003112
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003113 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 return sig;
3115}
3116
Cong Wang4e58a022013-01-28 19:55:53 +00003117static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003119 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Joe Perchesf9467ea2010-06-21 12:29:14 +00003121 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003123 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Cong Wang4e58a022013-01-28 19:55:53 +00003125 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003127
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003128 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003130 /* Propagate thread->control */
3131 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003132
Cong Wang4e58a022013-01-28 19:55:53 +00003133 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134}
3135
Cong Wang4e58a022013-01-28 19:55:53 +00003136static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003137{
3138 struct pktgen_thread *t;
3139
Joe Perchesf9467ea2010-06-21 12:29:14 +00003140 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003141
3142 mutex_lock(&pktgen_thread_lock);
3143
Cong Wang4e58a022013-01-28 19:55:53 +00003144 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003145 t->control |= (T_REMDEVALL);
3146
3147 mutex_unlock(&pktgen_thread_lock);
3148
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003149 /* Propagate thread->control */
3150 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003151
Cong Wang4e58a022013-01-28 19:55:53 +00003152 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003153}
3154
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3156{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003157 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003158 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003159 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3160 pkt_dev->started_at);
3161 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
Daniel Turull03a14ab2011-03-09 14:11:00 -08003163 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003164 (unsigned long long)ktime_to_us(elapsed),
3165 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3166 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003167 (unsigned long long)pkt_dev->sofar,
3168 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003170 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3171 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Luiz Capitulino222f1802006-03-20 22:16:13 -08003173 bps = pps * 8 * pkt_dev->cur_pkt_size;
3174
3175 mbps = bps;
3176 do_div(mbps, 1000000);
3177 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3178 (unsigned long long)pps,
3179 (unsigned long long)mbps,
3180 (unsigned long long)bps,
3181 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
3184/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003185static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003187 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003188
Luiz Capitulino222f1802006-03-20 22:16:13 -08003189 if (!pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003190 pr_warn("interface: %s is already stopped\n",
3191 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003192 return -EINVAL;
3193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003195 pkt_dev->running = 0;
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003196 kfree_skb(pkt_dev->skb);
3197 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003198 pkt_dev->stopped_at = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003200 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Luiz Capitulino222f1802006-03-20 22:16:13 -08003202 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203}
3204
Luiz Capitulino222f1802006-03-20 22:16:13 -08003205static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003207 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003208
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003209 rcu_read_lock();
3210 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003211 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003212 continue;
3213 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003214 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003215 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003216 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003218 rcu_read_unlock();
3219
Luiz Capitulino222f1802006-03-20 22:16:13 -08003220 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221}
3222
Luiz Capitulino222f1802006-03-20 22:16:13 -08003223static void pktgen_stop(struct pktgen_thread *t)
3224{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003225 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Joe Perchesf9467ea2010-06-21 12:29:14 +00003227 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003229 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003231 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003232 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003235 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
3237
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003238/*
3239 * one of our devices needs to be removed - find it
3240 * and remove it
3241 */
3242static void pktgen_rem_one_if(struct pktgen_thread *t)
3243{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003244 struct list_head *q, *n;
3245 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003246
Joe Perchesf9467ea2010-06-21 12:29:14 +00003247 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003248
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003249 list_for_each_safe(q, n, &t->if_list) {
3250 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003251
Luiz Capitulino222f1802006-03-20 22:16:13 -08003252 if (!cur->removal_mark)
3253 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003254
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003255 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003256 cur->skb = NULL;
3257
3258 pktgen_remove_device(t, cur);
3259
3260 break;
3261 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003262}
3263
Luiz Capitulino222f1802006-03-20 22:16:13 -08003264static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003266 struct list_head *q, *n;
3267 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003268
Joe Perchesf9467ea2010-06-21 12:29:14 +00003269 func_enter();
3270
Luiz Capitulino222f1802006-03-20 22:16:13 -08003271 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003272
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003273 list_for_each_safe(q, n, &t->if_list) {
3274 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003275
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003276 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003277 cur->skb = NULL;
3278
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 pktgen_remove_device(t, cur);
3280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281}
3282
Luiz Capitulino222f1802006-03-20 22:16:13 -08003283static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003285 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003286 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287}
3288
Stephen Hemmingeref879792009-09-22 19:41:43 +00003289static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003290{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003291 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003292 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003293 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003294}
3295
Stephen Hemmingeref879792009-09-22 19:41:43 +00003296static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3297{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003298 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003299
3300 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3301 if (signal_pending(current))
3302 break;
3303
3304 if (need_resched())
3305 pktgen_resched(pkt_dev);
3306 else
3307 cpu_relax();
3308 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003309 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003310}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003311
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003312static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313{
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003314 unsigned int burst = ACCESS_ONCE(pkt_dev->burst);
Stephen Hemminger00829822008-11-20 20:14:53 -08003315 struct net_device *odev = pkt_dev->odev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003316 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 int ret;
3318
Stephen Hemmingeref879792009-09-22 19:41:43 +00003319 /* If device is offline, then don't send */
3320 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3321 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003322 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003324
Stephen Hemmingeref879792009-09-22 19:41:43 +00003325 /* This is max DELAY, this has special meaning of
3326 * "never transmit"
3327 */
3328 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003329 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003330 return;
3331 }
3332
3333 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003334 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3335 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3336 /* build a new pkt */
3337 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003338
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003339 pkt_dev->skb = fill_packet(odev, pkt_dev);
3340 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003341 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003342 schedule();
3343 pkt_dev->clone_count--; /* back out increment, OOM */
3344 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003346 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003347 pkt_dev->allocated_skbs++;
3348 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003350
Stephen Hemmingeref879792009-09-22 19:41:43 +00003351 if (pkt_dev->delay && pkt_dev->last_ok)
3352 spin(pkt_dev, pkt_dev->next_tx);
3353
Daniel Borkmann10c51b56232014-08-27 11:11:27 +02003354 txq = skb_get_tx_queue(odev, pkt_dev->skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003355
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003356 local_bh_disable();
3357
3358 HARD_TX_LOCK(odev, txq, smp_processor_id());
Stephen Hemmingeref879792009-09-22 19:41:43 +00003359
Daniel Borkmann6f25cd42014-04-07 17:18:30 +02003360 if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003361 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003362 pkt_dev->last_ok = 0;
3363 goto unlock;
3364 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003365 atomic_add(burst, &pkt_dev->skb->users);
3366
3367xmit_more:
3368 ret = netdev_start_xmit(pkt_dev->skb, odev, txq, --burst > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Stephen Hemmingeref879792009-09-22 19:41:43 +00003370 switch (ret) {
3371 case NETDEV_TX_OK:
Stephen Hemmingeref879792009-09-22 19:41:43 +00003372 pkt_dev->last_ok = 1;
3373 pkt_dev->sofar++;
3374 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003375 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003376 if (burst > 0 && !netif_xmit_frozen_or_drv_stopped(txq))
3377 goto xmit_more;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003378 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003379 case NET_XMIT_DROP:
3380 case NET_XMIT_CN:
3381 case NET_XMIT_POLICED:
3382 /* skb has been consumed */
3383 pkt_dev->errors++;
3384 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003385 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003386 net_info_ratelimited("%s xmit error: %d\n",
3387 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003388 pkt_dev->errors++;
3389 /* fallthru */
3390 case NETDEV_TX_LOCKED:
3391 case NETDEV_TX_BUSY:
3392 /* Retry it next time */
3393 atomic_dec(&(pkt_dev->skb->users));
3394 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003395 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003396 if (unlikely(burst))
3397 atomic_sub(burst, &pkt_dev->skb->users);
Eric Dumazet0835acf2009-09-30 13:03:33 +00003398unlock:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003399 HARD_TX_UNLOCK(odev, txq);
3400
3401 local_bh_enable();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 /* If pkt_dev->count is zero, then run forever */
3404 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003405 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 /* Done with this */
3408 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003409 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003410}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003412/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 * Main loop of the thread goes here
3414 */
3415
David S. Milleree74baa2007-01-01 20:51:53 -08003416static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417{
3418 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003419 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003420 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
David S. Milleree74baa2007-01-01 20:51:53 -08003423 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
3425 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003426 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Joe Perchesf9467ea2010-06-21 12:29:14 +00003428 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003430 set_freezable();
3431
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003432 __set_current_state(TASK_RUNNING);
3433
David S. Milleree74baa2007-01-01 20:51:53 -08003434 while (!kthread_should_stop()) {
3435 pkt_dev = next_to_run(t);
3436
Stephen Hemmingeref879792009-09-22 19:41:43 +00003437 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003438 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003439 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003440 wait_event_interruptible_timeout(t->queue,
3441 t->control != 0,
3442 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003443 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003444 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003445 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003446
Stephen Hemmingeref879792009-09-22 19:41:43 +00003447 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 pktgen_xmit(pkt_dev);
3449
Stephen Hemmingeref879792009-09-22 19:41:43 +00003450 if (need_resched())
3451 pktgen_resched(pkt_dev);
3452 else
3453 cpu_relax();
3454 }
3455
Luiz Capitulino222f1802006-03-20 22:16:13 -08003456 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 pktgen_stop(t);
3458 t->control &= ~(T_STOP);
3459 }
3460
Luiz Capitulino222f1802006-03-20 22:16:13 -08003461 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 pktgen_run(t);
3463 t->control &= ~(T_RUN);
3464 }
3465
Luiz Capitulino222f1802006-03-20 22:16:13 -08003466 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003468 t->control &= ~(T_REMDEVALL);
3469 }
3470
Luiz Capitulino222f1802006-03-20 22:16:13 -08003471 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003472 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 t->control &= ~(T_REMDEV);
3474 }
3475
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003476 try_to_freeze();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003477 }
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003478 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Joe Perchesf9467ea2010-06-21 12:29:14 +00003480 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003481 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Joe Perchesf9467ea2010-06-21 12:29:14 +00003483 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003484 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Joe Perchesf9467ea2010-06-21 12:29:14 +00003486 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003487 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003488
Eric Dumazet551eaff2010-11-21 10:26:44 -08003489 /* Wait for kthread_stop */
3490 while (!kthread_should_stop()) {
3491 set_current_state(TASK_INTERRUPTIBLE);
3492 schedule();
3493 }
3494 __set_current_state(TASK_RUNNING);
3495
David S. Milleree74baa2007-01-01 20:51:53 -08003496 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497}
3498
Luiz Capitulino222f1802006-03-20 22:16:13 -08003499static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003500 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003502 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003503 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003505 rcu_read_lock();
3506 list_for_each_entry_rcu(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003507 if (strncmp(p->odevname, ifname, len) == 0) {
3508 if (p->odevname[len]) {
3509 if (exact || p->odevname[len] != '@')
3510 continue;
3511 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003512 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003513 break;
3514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003516 rcu_read_unlock();
Joe Perchesf9467ea2010-06-21 12:29:14 +00003517 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003518 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519}
3520
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003521/*
3522 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 */
3524
Luiz Capitulino222f1802006-03-20 22:16:13 -08003525static int add_dev_to_thread(struct pktgen_thread *t,
3526 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
3528 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003530 /* This function cannot be called concurrently, as its called
3531 * under pktgen_thread_lock mutex, but it can run from
3532 * userspace on another CPU than the kthread. The if_lock()
3533 * is used here to sync with concurrent instances of
3534 * _rem_dev_from_if_list() invoked via kthread, which is also
3535 * updating the if_list */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003536 if_lock(t);
3537
3538 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003539 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003540 rv = -EBUSY;
3541 goto out;
3542 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 pkt_dev->running = 0;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003545 pkt_dev->pg_thread = t;
3546 list_add_rcu(&pkt_dev->list, &t->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
Luiz Capitulino222f1802006-03-20 22:16:13 -08003548out:
3549 if_unlock(t);
3550 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551}
3552
3553/* Called under thread lock */
3554
Luiz Capitulino222f1802006-03-20 22:16:13 -08003555static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003557 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003558 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003559 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003560
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 /* We don't allow a device to be on several threads */
3562
Cong Wang4e58a022013-01-28 19:55:53 +00003563 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003564 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003565 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003566 return -EBUSY;
3567 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003568
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003569 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003570 if (!pkt_dev)
3571 return -ENOMEM;
3572
Eric Dumazet593f63b2009-11-23 01:44:37 +00003573 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003574 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003575 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003576 if (pkt_dev->flows == NULL) {
3577 kfree(pkt_dev);
3578 return -ENOMEM;
3579 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003580
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003581 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003582 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003583 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003584 pkt_dev->count = pg_count_d;
3585 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003586 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003587 pkt_dev->udp_src_max = 9;
3588 pkt_dev->udp_dst_min = 9;
3589 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003590 pkt_dev->vlan_p = 0;
3591 pkt_dev->vlan_cfi = 0;
3592 pkt_dev->vlan_id = 0xffff;
3593 pkt_dev->svlan_p = 0;
3594 pkt_dev->svlan_cfi = 0;
3595 pkt_dev->svlan_id = 0xffff;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003596 pkt_dev->burst = 1;
Robert Olssone99b99b2010-03-18 22:44:30 +00003597 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003598
Cong Wang4e58a022013-01-28 19:55:53 +00003599 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003600 if (err)
3601 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003602 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3603 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003604
Cong Wang4e58a022013-01-28 19:55:53 +00003605 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003606 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003607 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003608 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003609 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003610 err = -EINVAL;
3611 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003612 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003613#ifdef CONFIG_XFRM
3614 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3615 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d472014-01-03 11:18:31 +08003616
3617 /* xfrm tunnel mode needs additional dst to extract outter
3618 * ip header protocol/ttl/id field, here creat a phony one.
3619 * instead of looking for a valid rt, which definitely hurting
3620 * performance under such circumstance.
3621 */
3622 pkt_dev->dstops.family = AF_INET;
3623 pkt_dev->dst.dev = pkt_dev->odev;
3624 dst_init_metrics(&pkt_dev->dst, pktgen_dst_metrics, false);
3625 pkt_dev->dst.child = &pkt_dev->dst;
3626 pkt_dev->dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003627#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003628
3629 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003630out2:
3631 dev_put(pkt_dev->odev);
3632out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003633#ifdef CONFIG_XFRM
3634 free_SAs(pkt_dev);
3635#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003636 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003637 kfree(pkt_dev);
3638 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639}
3640
Cong Wang4e58a022013-01-28 19:55:53 +00003641static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003643 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003644 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003645 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003647 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3648 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003649 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003650 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003651 return -ENOMEM;
3652 }
3653
Luiz Capitulino222f1802006-03-20 22:16:13 -08003654 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003656
David S. Milleree74baa2007-01-01 20:51:53 -08003657 INIT_LIST_HEAD(&t->if_list);
3658
Cong Wang4e58a022013-01-28 19:55:53 +00003659 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003660 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003661
Eric Dumazet94dcf292011-03-22 16:30:45 -07003662 p = kthread_create_on_node(pktgen_thread_worker,
3663 t,
3664 cpu_to_node(cpu),
3665 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003666 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003667 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003668 list_del(&t->th_list);
3669 kfree(t);
3670 return PTR_ERR(p);
3671 }
3672 kthread_bind(p, cpu);
3673 t->tsk = p;
3674
Cong Wang4e58a022013-01-28 19:55:53 +00003675 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003676 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003677 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003678 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003679 PG_PROC_DIR, t->tsk->comm);
3680 kthread_stop(p);
3681 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003682 kfree(t);
3683 return -EINVAL;
3684 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003685
Cong Wang4e58a022013-01-28 19:55:53 +00003686 t->net = pn;
David S. Milleree74baa2007-01-01 20:51:53 -08003687 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003688 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
3690 return 0;
3691}
3692
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003693/*
3694 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003696static void _rem_dev_from_if_list(struct pktgen_thread *t,
3697 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003699 struct list_head *q, *n;
3700 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003702 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003703 list_for_each_safe(q, n, &t->if_list) {
3704 p = list_entry(q, struct pktgen_dev, list);
3705 if (p == pkt_dev)
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003706 list_del_rcu(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003708 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709}
3710
Luiz Capitulino222f1802006-03-20 22:16:13 -08003711static int pktgen_remove_device(struct pktgen_thread *t,
3712 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003714 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
Luiz Capitulino222f1802006-03-20 22:16:13 -08003716 if (pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003717 pr_warn("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003718 pktgen_stop_device(pkt_dev);
3719 }
3720
3721 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722
3723 if (pkt_dev->odev) {
3724 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003725 pkt_dev->odev = NULL;
3726 }
3727
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003728 /* Remove proc before if_list entry, because add_device uses
3729 * list to determine if interface already exist, avoid race
3730 * with proc_create_data() */
Stephen Hemminger39df2322007-03-04 16:11:51 -08003731 if (pkt_dev->entry)
David Howellsa8ca16e2013-04-12 17:27:28 +01003732 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003734 /* And update the thread if_list */
3735 _rem_dev_from_if_list(t, pkt_dev);
3736
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003737#ifdef CONFIG_XFRM
3738 free_SAs(pkt_dev);
3739#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003740 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003741 if (pkt_dev->page)
3742 put_page(pkt_dev->page);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003743 kfree_rcu(pkt_dev, rcu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003744 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745}
3746
Cong Wang4e58a022013-01-28 19:55:53 +00003747static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748{
Cong Wang4e58a022013-01-28 19:55:53 +00003749 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003750 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003751 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003752
Cong Wang4e58a022013-01-28 19:55:53 +00003753 pn->net = net;
3754 INIT_LIST_HEAD(&pn->pktgen_threads);
3755 pn->pktgen_exiting = false;
3756 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3757 if (!pn->proc_dir) {
3758 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003759 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003760 }
Cong Wang4e58a022013-01-28 19:55:53 +00003761 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3762 if (pe == NULL) {
3763 pr_err("cannot create %s procfs entry\n", PGCTRL);
3764 ret = -EINVAL;
3765 goto remove;
3766 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003767
John Hawkes670c02c2005-10-13 09:30:31 -07003768 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003769 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Cong Wang4e58a022013-01-28 19:55:53 +00003771 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003772 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003773 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003774 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003775 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003776
Cong Wang4e58a022013-01-28 19:55:53 +00003777 if (list_empty(&pn->pktgen_threads)) {
3778 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003779 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003780 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003781 }
3782
Luiz Capitulino222f1802006-03-20 22:16:13 -08003783 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003784
Cong Wang4e58a022013-01-28 19:55:53 +00003785remove_entry:
3786 remove_proc_entry(PGCTRL, pn->proc_dir);
3787remove:
Gao fengece31ff2013-02-18 01:34:56 +00003788 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003789 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790}
3791
Cong Wang4e58a022013-01-28 19:55:53 +00003792static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793{
Cong Wang4e58a022013-01-28 19:55:53 +00003794 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003795 struct pktgen_thread *t;
3796 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003797 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
Luiz Capitulino222f1802006-03-20 22:16:13 -08003799 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003800 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801
Eric Dumazetc57b5462012-05-09 13:29:51 +00003802 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003803 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003804 mutex_unlock(&pktgen_thread_lock);
3805
3806 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003807 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003808 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003809 kthread_stop(t->tsk);
3810 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Cong Wang4e58a022013-01-28 19:55:53 +00003813 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003814 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003815}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Cong Wang4e58a022013-01-28 19:55:53 +00003817static struct pernet_operations pg_net_ops = {
3818 .init = pg_net_init,
3819 .exit = pg_net_exit,
3820 .id = &pg_net_id,
3821 .size = sizeof(struct pktgen_net),
3822};
3823
3824static int __init pg_init(void)
3825{
3826 int ret = 0;
3827
3828 pr_info("%s", version);
3829 ret = register_pernet_subsys(&pg_net_ops);
3830 if (ret)
3831 return ret;
3832 ret = register_netdevice_notifier(&pktgen_notifier_block);
3833 if (ret)
3834 unregister_pernet_subsys(&pg_net_ops);
3835
3836 return ret;
3837}
3838
3839static void __exit pg_cleanup(void)
3840{
3841 unregister_netdevice_notifier(&pktgen_notifier_block);
3842 unregister_pernet_subsys(&pg_net_ops);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003843 /* Don't need rcu_barrier() due to use of kfree_rcu() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844}
3845
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846module_init(pg_init);
3847module_exit(pg_cleanup);
3848
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003849MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850MODULE_DESCRIPTION("Packet Generator tool");
3851MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003852MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003854MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003856MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003858MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003860MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");