blob: 167e59243feabbea2cab8faf6cbfb8c5b47765a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Authors:
3 * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se>
4 * Uppsala University and
5 * Swedish University of Agricultural Sciences
6 *
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Ben Greear <greearb@candelatech.com>
Jan Engelhardt96de0e22007-10-19 23:21:04 +02009 * Jens Låås <jens.laas@data.slu.se>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 *
17 * A tool for loading the network with preconfigurated packets.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090018 * The tool is implemented as a linux module. Parameters are output
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * device, delay (to hard_xmit), number of packets, and whether
20 * to use multiple SKBs or just the same one.
21 * pktgen uses the installed interface's output routine.
22 *
23 * Additional hacking by:
24 *
25 * Jens.Laas@data.slu.se
26 * Improved by ANK. 010120.
27 * Improved by ANK even more. 010212.
28 * MAC address typo fixed. 010417 --ro
29 * Integrated. 020301 --DaveM
30 * Added multiskb option 020301 --DaveM
31 * Scaling of results. 020417--sigurdur@linpro.no
32 * Significant re-work of the module:
33 * * Convert to threaded model to more efficiently be able to transmit
34 * and receive on multiple interfaces at once.
35 * * Converted many counters to __u64 to allow longer runs.
36 * * Allow configuration of ranges, like min/max IP address, MACs,
37 * and UDP-ports, for both source and destination, and can
38 * set to use a random distribution or sequentially walk the range.
39 * * Can now change most values after starting.
40 * * Place 12-byte packet in UDP payload with magic number,
41 * sequence number, and timestamp.
42 * * Add receiver code that detects dropped pkts, re-ordered pkts, and
43 * latencies (with micro-second) precision.
44 * * Add IOCTL interface to easily get counters & configuration.
45 * --Ben Greear <greearb@candelatech.com>
46 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090047 * Renamed multiskb to clone_skb and cleaned up sending core for two distinct
48 * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * as a "fastpath" with a configurable number of clones after alloc's.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090050 * clone_skb=0 means all packets are allocated this also means ranges time
51 * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * clones.
53 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090054 * Also moved to /proc/net/pktgen/
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * --ro
56 *
57 * Sept 10: Fixed threading/locking. Lots of bone-headed and more clever
58 * mistakes. Also merged in DaveM's patch in the -pre6 patch.
59 * --Ben Greear <greearb@candelatech.com>
60 *
61 * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br)
62 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * 021124 Finished major redesign and rewrite for new functionality.
65 * See Documentation/networking/pktgen.txt for how to use this.
66 *
67 * The new operation:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090068 * For each CPU one thread/process is created at start. This process checks
69 * for running devices in the if_list and sends packets until count is 0 it
70 * also the thread checks the thread->control which is used for inter-process
71 * communication. controlling process "posts" operations to the threads this
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +020072 * way.
73 * The if_list is RCU protected, and the if_lock remains to protect updating
74 * of if_list, from "add_device" as it invoked from userspace (via proc write).
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090076 * By design there should only be *one* "controlling" process. In practice
77 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070079 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090081 * Note when adding devices to a specific CPU there good idea to also assign
82 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * --ro
84 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090085 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * memleak 030710- KJP
87 *
88 * First "ranges" functionality for ipv6 030726 --ro
89 *
90 * Included flow support. 030802 ANK.
91 *
92 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090093 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
95 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
96 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090097 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * <shemminger@osdl.org> 040923
99 *
Stephen Hemmingerca9f1fd2015-02-14 13:47:54 -0500100 * Randy Dunlap fixed u64 printk compiler warning
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
102 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
103 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
104 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900105 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
107 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900108 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800110 *
111 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
112 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700113 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
114 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700115 * Fixed src_mac command to set source mac of packet to value specified in
116 * command by Adit Ranadive <adit.262@gmail.com>
117 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000119
120#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <linux/sys.h>
123#include <linux/types.h>
124#include <linux/module.h>
125#include <linux/moduleparam.h>
126#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800127#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#include <linux/sched.h>
129#include <linux/slab.h>
130#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#include <linux/unistd.h>
132#include <linux/string.h>
133#include <linux/ptrace.h>
134#include <linux/errno.h>
135#include <linux/ioport.h>
136#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800137#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700138#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700139#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#include <linux/delay.h>
141#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800142#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#include <linux/init.h>
144#include <linux/skbuff.h>
145#include <linux/netdevice.h>
146#include <linux/inet.h>
147#include <linux/inetdevice.h>
148#include <linux/rtnetlink.h>
149#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700150#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#include <linux/in.h>
152#include <linux/ip.h>
153#include <linux/ipv6.h>
154#include <linux/udp.h>
155#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700156#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800158#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800159#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700160#include <linux/prefetch.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200161#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#include <net/checksum.h>
163#include <net/ipv6.h>
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200164#include <net/udp.h>
Stephen Rothwell73d94e92013-07-29 16:21:26 +1000165#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700167#ifdef CONFIG_XFRM
168#include <net/xfrm.h>
169#endif
Cong Wang4e58a022013-01-28 19:55:53 +0000170#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#include <asm/byteorder.h>
172#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700173#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000174#include <linux/io.h>
175#include <linux/timex.h>
176#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800178#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Daniel Turull43d28b62010-06-09 22:49:57 +0000180#define VERSION "2.74"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800182#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800183#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Joe Perchesf9467ea2010-06-21 12:29:14 +0000185#define func_enter() pr_debug("entering %s\n", __func__);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800188#define F_IPSRC_RND (1<<0) /* IP-Src Random */
189#define F_IPDST_RND (1<<1) /* IP-Dst Random */
190#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
191#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
192#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
193#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
194#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
195#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800196#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700197#define F_VID_RND (1<<9) /* Random VLAN ID */
198#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700199#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700200#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700201#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700202#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000203#define F_NODE (1<<15) /* Node memory alloc*/
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200204#define F_UDPCSUM (1<<16) /* Include UDP checksum */
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +0200205#define F_NO_TIMESTAMP (1<<17) /* Don't timestamp packets (default TS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000208#define T_STOP (1<<0) /* Stop run */
209#define T_RUN (1<<1) /* Start run */
210#define T_REMDEVALL (1<<2) /* Remove all devs */
211#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200213/* Xmit modes */
214#define M_START_XMIT 0 /* Default normal TX */
215#define M_NETIF_RECEIVE 1 /* Inject packets into stack */
216
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200217/* If lock -- protects updating of if_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#define if_lock(t) spin_lock(&(t->if_lock));
219#define if_unlock(t) spin_unlock(&(t->if_lock));
220
221/* Used to help with determining the pkts on receive */
222#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700223#define PG_PROC_DIR "pktgen"
224#define PGCTRL "pgctrl"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226#define MAX_CFLOWS 65536
227
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700228#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
229#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
230
Luiz Capitulino222f1802006-03-20 22:16:13 -0800231struct flow_state {
Al Viro252e33462006-11-14 20:48:11 -0800232 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800233 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700234#ifdef CONFIG_XFRM
235 struct xfrm_state *x;
236#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700237 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238};
239
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700240/* flow flag bits */
241#define F_INIT (1<<0) /* flow has been initialized */
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /*
245 * Try to keep frequent/infrequent used vars. separated.
246 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800247 struct proc_dir_entry *entry; /* proc file */
248 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000249 struct list_head list; /* chaining in the thread's run-queue */
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200250 struct rcu_head rcu; /* freed by RCU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000252 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800253
254 /* If min != max, then we will either do a linear iteration, or
255 * we will do a random selection from within the range.
256 */
257 __u32 flags;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200258 int xmit_mode;
Amerigo Wang68bf9f02012-10-09 17:48:17 +0000259 int min_pkt_size;
260 int max_pkt_size;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700261 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800262 int nfrags;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200263 int removal_mark; /* non-zero => the device is marked for
264 * removal by worker thread */
265
Eric Dumazet26ad7872011-01-25 13:26:05 -0800266 struct page *page;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000267 u64 delay; /* nano-seconds */
268
Luiz Capitulino222f1802006-03-20 22:16:13 -0800269 __u64 count; /* Default No packets to send */
270 __u64 sofar; /* How many pkts we've sent so far */
271 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800272 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Luiz Capitulino222f1802006-03-20 22:16:13 -0800274 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Luiz Capitulino222f1802006-03-20 22:16:13 -0800276 __u64 allocated_skbs;
277 __u32 clone_count;
278 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000279 * Or a failed transmit of some sort?
280 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800281 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000282 ktime_t next_tx;
283 ktime_t started_at;
284 ktime_t stopped_at;
285 u64 idle_acc; /* nano-seconds */
286
Luiz Capitulino222f1802006-03-20 22:16:13 -0800287 __u32 seq_num;
288
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000289 int clone_skb; /*
290 * Use multiple SKBs during packet gen.
291 * If this number is greater than 1, then
292 * that many copies of the same packet will be
293 * sent before a new packet is allocated.
294 * If you want to send 1024 identical packets
295 * before creating a new packet,
296 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800297 */
298
299 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
300 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
301 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
302 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
303
304 struct in6_addr in6_saddr;
305 struct in6_addr in6_daddr;
306 struct in6_addr cur_in6_daddr;
307 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800309 struct in6_addr min_in6_daddr;
310 struct in6_addr max_in6_daddr;
311 struct in6_addr min_in6_saddr;
312 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Luiz Capitulino222f1802006-03-20 22:16:13 -0800314 /* If we're doing ranges, random or incremental, then this
315 * defines the min/max for those ranges.
316 */
Al Viro252e33462006-11-14 20:48:11 -0800317 __be32 saddr_min; /* inclusive, source IP address */
318 __be32 saddr_max; /* exclusive, source IP address */
319 __be32 daddr_min; /* inclusive, dest IP address */
320 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Luiz Capitulino222f1802006-03-20 22:16:13 -0800322 __u16 udp_src_min; /* inclusive, source UDP port */
323 __u16 udp_src_max; /* exclusive, source UDP port */
324 __u16 udp_dst_min; /* inclusive, dest UDP port */
325 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700327 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000328 __u8 tos; /* six MSB of (former) IPv4 TOS
329 are for dscp codepoint */
330 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
331 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700332
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800333 /* MPLS */
Eric Dumazet95c96172012-04-15 05:58:06 +0000334 unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800335 __be32 labels[MAX_MPLS_LABELS];
336
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700337 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
338 __u8 vlan_p;
339 __u8 vlan_cfi;
340 __u16 vlan_id; /* 0xffff means no vlan tag */
341
342 __u8 svlan_p;
343 __u8 svlan_cfi;
344 __u16 svlan_id; /* 0xffff means no svlan tag */
345
Luiz Capitulino222f1802006-03-20 22:16:13 -0800346 __u32 src_mac_count; /* How many MACs to iterate through */
347 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Luiz Capitulino222f1802006-03-20 22:16:13 -0800349 unsigned char dst_mac[ETH_ALEN];
350 unsigned char src_mac[ETH_ALEN];
351
352 __u32 cur_dst_mac_offset;
353 __u32 cur_src_mac_offset;
Al Viro252e33462006-11-14 20:48:11 -0800354 __be32 cur_saddr;
355 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700356 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800357 __u16 cur_udp_dst;
358 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700359 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800360 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800361 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800362
363 __u8 hh[14];
364 /* = {
365 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
366
367 We fill in SRC address later
368 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
369 0x08, 0x00
370 };
371 */
372 __u16 pad; /* pad out the hh struct to an even 16 bytes */
373
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000374 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800375 * are transmitting the same one multiple times
376 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000377 struct net_device *odev; /* The out-going device.
378 * Note that the device should have it's
379 * pg_info pointer pointing back to this
380 * device.
381 * Set when the user specifies the out-going
382 * device name (not when the inject is
383 * started as it used to do.)
384 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000385 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 struct flow_state *flows;
Eric Dumazet95c96172012-04-15 05:58:06 +0000387 unsigned int cflows; /* Concurrent flows (config) */
388 unsigned int lflow; /* Flow length (config) */
389 unsigned int nflows; /* accumulated flows (stats) */
390 unsigned int curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700391
392 u16 queue_map_min;
393 u16 queue_map_max;
John Fastabend9e50e3a2010-11-16 19:12:28 +0000394 __u32 skb_priority; /* skb priority field */
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700395 unsigned int burst; /* number of duplicated packets to burst */
Robert Olssone99b99b2010-03-18 22:44:30 +0000396 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700397
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700398#ifdef CONFIG_XFRM
399 __u8 ipsmode; /* IPSEC mode (config) */
400 __u8 ipsproto; /* IPSEC type (config) */
Fan Dude4aee72014-01-03 11:18:30 +0800401 __u32 spi;
Fan Ducf93d47e2014-01-03 11:18:31 +0800402 struct dst_entry dst;
403 struct dst_ops dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700404#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800405 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
408struct pktgen_hdr {
Al Viro252e33462006-11-14 20:48:11 -0800409 __be32 pgh_magic;
410 __be32 seq_num;
411 __be32 tv_sec;
412 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413};
414
Cong Wang4e58a022013-01-28 19:55:53 +0000415
416static int pg_net_id __read_mostly;
417
418struct pktgen_net {
419 struct net *net;
420 struct proc_dir_entry *proc_dir;
421 struct list_head pktgen_threads;
422 bool pktgen_exiting;
423};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000426 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800427 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800428 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800429 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800430 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000432 /* Field for thread to receive "posted" events terminate,
433 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800434
435 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 int cpu;
437
Luiz Capitulino222f1802006-03-20 22:16:13 -0800438 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700439 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000440 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441};
442
443#define REMOVE 1
444#define FIND 0
445
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000446static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000447 "Packet Generator for packet performance testing. "
448 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Luiz Capitulino222f1802006-03-20 22:16:13 -0800450static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
451static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
452static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800453 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000455static void pktgen_run_all_threads(struct pktgen_net *pn);
456static void pktgen_reset_all_threads(struct pktgen_net *pn);
457static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000458
Luiz Capitulino222f1802006-03-20 22:16:13 -0800459static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000463static int pg_count_d __read_mostly = 1000;
464static int pg_delay_d __read_mostly;
465static int pg_clone_skb_d __read_mostly;
466static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Luiz Capitulino222fa072006-03-20 22:24:27 -0800468static DEFINE_MUTEX(pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470static struct notifier_block pktgen_notifier_block = {
471 .notifier_call = pktgen_device_event,
472};
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900475 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
477 */
478
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700479static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800480{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000481 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000485static ssize_t pgctrl_write(struct file *file, const char __user *buf,
486 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700488 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000489 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Mathias Krause09455742014-02-21 21:38:35 +0100491 if (!capable(CAP_NET_ADMIN))
492 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Mathias Krause20b0c712014-02-21 21:38:34 +0100494 if (count == 0)
495 return -EINVAL;
496
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700497 if (count > sizeof(data))
498 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Mathias Krause09455742014-02-21 21:38:35 +0100500 if (copy_from_user(data, buf, count))
501 return -EFAULT;
502
Mathias Krause20b0c712014-02-21 21:38:34 +0100503 data[count - 1] = 0; /* Strip trailing '\n' and terminate string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Luiz Capitulino222f1802006-03-20 22:16:13 -0800505 if (!strcmp(data, "stop"))
Cong Wang4e58a022013-01-28 19:55:53 +0000506 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Luiz Capitulino222f1802006-03-20 22:16:13 -0800508 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000509 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800511 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000512 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800513
Luiz Capitulino222f1802006-03-20 22:16:13 -0800514 else
Joe Perches294a0b72014-09-09 21:17:30 -0700515 pr_warn("Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Mathias Krause09455742014-02-21 21:38:35 +0100517 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700520static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Al Virod9dda782013-03-31 18:16:14 -0400522 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700523}
524
Arjan van de Ven9a321442007-02-12 00:55:35 -0800525static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800526 .owner = THIS_MODULE,
527 .open = pgctrl_open,
528 .read = seq_read,
529 .llseek = seq_lseek,
530 .write = pgctrl_write,
531 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700532};
533
534static int pktgen_if_show(struct seq_file *seq, void *v)
535{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000536 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000537 ktime_t stopped;
538 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Luiz Capitulino222f1802006-03-20 22:16:13 -0800540 seq_printf(seq,
541 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
542 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
543 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Luiz Capitulino222f1802006-03-20 22:16:13 -0800545 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000546 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
547 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000548 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Luiz Capitulino222f1802006-03-20 22:16:13 -0800550 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
551 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Robert Olsson45b270f2007-08-28 15:45:55 -0700553 seq_printf(seq,
554 " queue_map_min: %u queue_map_max: %u\n",
555 pkt_dev->queue_map_min,
556 pkt_dev->queue_map_max);
557
John Fastabend9e50e3a2010-11-16 19:12:28 +0000558 if (pkt_dev->skb_priority)
559 seq_printf(seq, " skb_priority: %u\n",
560 pkt_dev->skb_priority);
561
Luiz Capitulino222f1802006-03-20 22:16:13 -0800562 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000564 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
565 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
566 &pkt_dev->in6_saddr,
567 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
568 &pkt_dev->in6_daddr,
569 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000570 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800571 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000572 " dst_min: %s dst_max: %s\n",
573 pkt_dev->dst_min, pkt_dev->dst_max);
574 seq_printf(seq,
Jesper Dangaard Brouerd079abd2015-05-21 12:16:11 +0200575 " src_min: %s src_max: %s\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000576 pkt_dev->src_min, pkt_dev->src_max);
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700579 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Johannes Berge1749612008-10-27 15:59:26 -0700581 seq_printf(seq, "%pM ",
582 is_zero_ether_addr(pkt_dev->src_mac) ?
583 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Thomas Graf97dc48e2014-05-16 23:28:54 +0200585 seq_puts(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700586 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Luiz Capitulino222f1802006-03-20 22:16:13 -0800588 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000589 " udp_src_min: %d udp_src_max: %d"
590 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800591 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
592 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Luiz Capitulino222f1802006-03-20 22:16:13 -0800594 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800595 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700596 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800598 if (pkt_dev->nr_labels) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000599 unsigned int i;
Thomas Graf97dc48e2014-05-16 23:28:54 +0200600 seq_puts(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700601 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800602 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
603 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
604 }
605
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000606 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700607 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000608 pkt_dev->vlan_id, pkt_dev->vlan_p,
609 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700610
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000611 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700612 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000613 pkt_dev->svlan_id, pkt_dev->svlan_p,
614 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700615
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000616 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700617 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700618
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000619 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700620 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700621
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700622 if (pkt_dev->burst > 1)
623 seq_printf(seq, " burst: %d\n", pkt_dev->burst);
624
Robert Olssone99b99b2010-03-18 22:44:30 +0000625 if (pkt_dev->node >= 0)
626 seq_printf(seq, " node: %d\n", pkt_dev->node);
627
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200628 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE)
629 seq_puts(seq, " xmit_mode: netif_receive\n");
630
Thomas Graf97dc48e2014-05-16 23:28:54 +0200631 seq_puts(seq, " Flags: ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800632
Luiz Capitulino222f1802006-03-20 22:16:13 -0800633 if (pkt_dev->flags & F_IPV6)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200634 seq_puts(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Luiz Capitulino222f1802006-03-20 22:16:13 -0800636 if (pkt_dev->flags & F_IPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200637 seq_puts(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Luiz Capitulino222f1802006-03-20 22:16:13 -0800639 if (pkt_dev->flags & F_IPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200640 seq_puts(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Luiz Capitulino222f1802006-03-20 22:16:13 -0800642 if (pkt_dev->flags & F_TXSIZE_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200643 seq_puts(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Luiz Capitulino222f1802006-03-20 22:16:13 -0800645 if (pkt_dev->flags & F_UDPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200646 seq_puts(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Luiz Capitulino222f1802006-03-20 22:16:13 -0800648 if (pkt_dev->flags & F_UDPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200649 seq_puts(seq, "UDPDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800650
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200651 if (pkt_dev->flags & F_UDPCSUM)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200652 seq_puts(seq, "UDPCSUM ");
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200653
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +0200654 if (pkt_dev->flags & F_NO_TIMESTAMP)
655 seq_puts(seq, "NO_TIMESTAMP ");
656
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800657 if (pkt_dev->flags & F_MPLS_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200658 seq_puts(seq, "MPLS_RND ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800659
Robert Olsson45b270f2007-08-28 15:45:55 -0700660 if (pkt_dev->flags & F_QUEUE_MAP_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200661 seq_puts(seq, "QUEUE_MAP_RND ");
Robert Olsson45b270f2007-08-28 15:45:55 -0700662
Robert Olssone6fce5b2008-08-07 02:23:01 -0700663 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200664 seq_puts(seq, "QUEUE_MAP_CPU ");
Robert Olssone6fce5b2008-08-07 02:23:01 -0700665
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700666 if (pkt_dev->cflows) {
667 if (pkt_dev->flags & F_FLOW_SEQ)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200668 seq_puts(seq, "FLOW_SEQ "); /*in sequence flows*/
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700669 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200670 seq_puts(seq, "FLOW_RND ");
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700671 }
672
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700673#ifdef CONFIG_XFRM
Fan Du81013282014-01-03 11:18:33 +0800674 if (pkt_dev->flags & F_IPSEC_ON) {
Thomas Graf97dc48e2014-05-16 23:28:54 +0200675 seq_puts(seq, "IPSEC ");
Fan Du81013282014-01-03 11:18:33 +0800676 if (pkt_dev->spi)
677 seq_printf(seq, "spi:%u", pkt_dev->spi);
678 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700679#endif
680
Luiz Capitulino222f1802006-03-20 22:16:13 -0800681 if (pkt_dev->flags & F_MACSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200682 seq_puts(seq, "MACSRC_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800683
684 if (pkt_dev->flags & F_MACDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200685 seq_puts(seq, "MACDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700687 if (pkt_dev->flags & F_VID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200688 seq_puts(seq, "VID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700689
690 if (pkt_dev->flags & F_SVID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200691 seq_puts(seq, "SVID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700692
Robert Olssone99b99b2010-03-18 22:44:30 +0000693 if (pkt_dev->flags & F_NODE)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200694 seq_puts(seq, "NODE_ALLOC ");
Robert Olssone99b99b2010-03-18 22:44:30 +0000695
Luiz Capitulino222f1802006-03-20 22:16:13 -0800696 seq_puts(seq, "\n");
697
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000698 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000699 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000700 idle = pkt_dev->idle_acc;
701 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800702
703 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000704 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800705 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000706 (unsigned long long)pkt_dev->errors);
707
708 seq_printf(seq,
709 " started: %lluus stopped: %lluus idle: %lluus\n",
710 (unsigned long long) ktime_to_us(pkt_dev->started_at),
711 (unsigned long long) ktime_to_us(stopped),
712 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800713
714 seq_printf(seq,
715 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700716 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
717 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Luiz Capitulino222f1802006-03-20 22:16:13 -0800719 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000720 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
721 &pkt_dev->cur_in6_saddr,
722 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800723 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000724 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
725 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Luiz Capitulino222f1802006-03-20 22:16:13 -0800727 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700728 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Robert Olsson45b270f2007-08-28 15:45:55 -0700730 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
731
Luiz Capitulino222f1802006-03-20 22:16:13 -0800732 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800735 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200737 seq_puts(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800742
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000743static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
744 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800745{
746 int i = 0;
747 *num = 0;
748
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700749 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000750 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800751 char c;
752 *num <<= 4;
753 if (get_user(c, &user_buffer[i]))
754 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000755 value = hex_to_bin(c);
756 if (value >= 0)
757 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800758 else
759 break;
760 }
761 return i;
762}
763
Luiz Capitulino222f1802006-03-20 22:16:13 -0800764static int count_trail_chars(const char __user * user_buffer,
765 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 int i;
768
769 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800770 char c;
771 if (get_user(c, &user_buffer[i]))
772 return -EFAULT;
773 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 case '\"':
775 case '\n':
776 case '\r':
777 case '\t':
778 case ' ':
779 case '=':
780 break;
781 default:
782 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785done:
786 return i;
787}
788
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000789static long num_arg(const char __user *user_buffer, unsigned long maxlen,
790 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000792 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800794
Paul Gortmakerd6182222010-10-18 12:14:44 +0000795 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800796 char c;
797 if (get_user(c, &user_buffer[i]))
798 return -EFAULT;
799 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800801 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 } else
803 break;
804 }
805 return i;
806}
807
Luiz Capitulino222f1802006-03-20 22:16:13 -0800808static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000810 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Paul Gortmakerd6182222010-10-18 12:14:44 +0000812 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800813 char c;
814 if (get_user(c, &user_buffer[i]))
815 return -EFAULT;
816 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 case '\"':
818 case '\n':
819 case '\r':
820 case '\t':
821 case ' ':
822 goto done_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 default:
824 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return i;
829}
830
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800831static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
832{
Eric Dumazet95c96172012-04-15 05:58:06 +0000833 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800834 char c;
835 ssize_t i = 0;
836 int len;
837
838 pkt_dev->nr_labels = 0;
839 do {
840 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700841 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800842 if (len <= 0)
843 return len;
844 pkt_dev->labels[n] = htonl(tmp);
845 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
846 pkt_dev->flags |= F_MPLS_RND;
847 i += len;
848 if (get_user(c, &buffer[i]))
849 return -EFAULT;
850 i++;
851 n++;
852 if (n >= MAX_MPLS_LABELS)
853 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700854 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800855
856 pkt_dev->nr_labels = n;
857 return i;
858}
859
Luiz Capitulino222f1802006-03-20 22:16:13 -0800860static ssize_t pktgen_if_write(struct file *file,
861 const char __user * user_buffer, size_t count,
862 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Joe Perches8a994a72010-07-12 10:50:23 +0000864 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800865 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000866 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 char name[16], valstr[32];
868 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800869 char *pg_result = NULL;
870 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800872
873 pg_result = &(pkt_dev->result[0]);
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (count < 1) {
Joe Perches294a0b72014-09-09 21:17:30 -0700876 pr_warn("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return -EINVAL;
878 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879
Paul Gortmakerd6182222010-10-18 12:14:44 +0000880 max = count;
881 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800882 if (tmp < 0) {
Joe Perches294a0b72014-09-09 21:17:30 -0700883 pr_warn("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800884 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000886 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /* Read variable name */
889
890 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000891 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800892 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800895 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return -EFAULT;
897 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800898
899 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800901 if (len < 0)
902 return len;
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 i += len;
905
906 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000907 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700908 char tb[copy + 1];
909 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700911 tb[copy] = 0;
Joe Perchesf342cda2012-05-16 17:50:41 +0000912 pr_debug("%s,%lu buffer -:%s:-\n",
913 name, (unsigned long)count, tb);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 if (!strcmp(name, "min_pkt_size")) {
917 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000918 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800919 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800922 if (value < 14 + 20 + 8)
923 value = 14 + 20 + 8;
924 if (value != pkt_dev->min_pkt_size) {
925 pkt_dev->min_pkt_size = value;
926 pkt_dev->cur_pkt_size = value;
927 }
928 sprintf(pg_result, "OK: min_pkt_size=%u",
929 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return count;
931 }
932
Luiz Capitulino222f1802006-03-20 22:16:13 -0800933 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000935 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800936 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800939 if (value < 14 + 20 + 8)
940 value = 14 + 20 + 8;
941 if (value != pkt_dev->max_pkt_size) {
942 pkt_dev->max_pkt_size = value;
943 pkt_dev->cur_pkt_size = value;
944 }
945 sprintf(pg_result, "OK: max_pkt_size=%u",
946 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return count;
948 }
949
Luiz Capitulino222f1802006-03-20 22:16:13 -0800950 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 if (!strcmp(name, "pkt_size")) {
953 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000954 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800955 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800958 if (value < 14 + 20 + 8)
959 value = 14 + 20 + 8;
960 if (value != pkt_dev->min_pkt_size) {
961 pkt_dev->min_pkt_size = value;
962 pkt_dev->max_pkt_size = value;
963 pkt_dev->cur_pkt_size = value;
964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
966 return count;
967 }
968
Luiz Capitulino222f1802006-03-20 22:16:13 -0800969 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000971 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800972 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800975 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 sprintf(pg_result, "OK: debug=%u", debug);
977 return count;
978 }
979
Luiz Capitulino222f1802006-03-20 22:16:13 -0800980 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000982 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800983 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 i += len;
986 pkt_dev->nfrags = value;
987 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
988 return count;
989 }
990 if (!strcmp(name, "delay")) {
991 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000992 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800993 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000996 if (value == 0x7FFFFFFF)
997 pkt_dev->delay = ULLONG_MAX;
998 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000999 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00001000
1001 sprintf(pg_result, "OK: delay=%llu",
1002 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return count;
1004 }
Daniel Turull43d28b62010-06-09 22:49:57 +00001005 if (!strcmp(name, "rate")) {
1006 len = num_arg(&user_buffer[i], 10, &value);
1007 if (len < 0)
1008 return len;
1009
1010 i += len;
1011 if (!value)
1012 return len;
1013 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
1014 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001015 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001016
1017 sprintf(pg_result, "OK: rate=%lu", value);
1018 return count;
1019 }
1020 if (!strcmp(name, "ratep")) {
1021 len = num_arg(&user_buffer[i], 10, &value);
1022 if (len < 0)
1023 return len;
1024
1025 i += len;
1026 if (!value)
1027 return len;
1028 pkt_dev->delay = NSEC_PER_SEC/value;
1029 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001030 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001031
1032 sprintf(pg_result, "OK: rate=%lu", value);
1033 return count;
1034 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001035 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001037 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001038 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001041 if (value != pkt_dev->udp_src_min) {
1042 pkt_dev->udp_src_min = value;
1043 pkt_dev->cur_udp_src = value;
1044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1046 return count;
1047 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001048 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001050 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001051 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001054 if (value != pkt_dev->udp_dst_min) {
1055 pkt_dev->udp_dst_min = value;
1056 pkt_dev->cur_udp_dst = value;
1057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1059 return count;
1060 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001063 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001064 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001067 if (value != pkt_dev->udp_src_max) {
1068 pkt_dev->udp_src_max = value;
1069 pkt_dev->cur_udp_src = value;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1072 return count;
1073 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001074 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001076 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001077 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001080 if (value != pkt_dev->udp_dst_max) {
1081 pkt_dev->udp_dst_max = value;
1082 pkt_dev->cur_udp_dst = value;
1083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1085 return count;
1086 }
1087 if (!strcmp(name, "clone_skb")) {
1088 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001089 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001090 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001091 if ((value > 0) &&
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001092 ((pkt_dev->xmit_mode == M_NETIF_RECEIVE) ||
1093 !(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
Neil Hormand8873312011-07-26 06:05:37 +00001094 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001096 pkt_dev->clone_skb = value;
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1099 return count;
1100 }
1101 if (!strcmp(name, "count")) {
1102 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001103 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001104 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 i += len;
1107 pkt_dev->count = value;
1108 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001109 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return count;
1111 }
1112 if (!strcmp(name, "src_mac_count")) {
1113 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001114 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001115 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 i += len;
1118 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001119 pkt_dev->src_mac_count = value;
1120 pkt_dev->cur_src_mac_offset = 0;
1121 }
1122 sprintf(pg_result, "OK: src_mac_count=%d",
1123 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return count;
1125 }
1126 if (!strcmp(name, "dst_mac_count")) {
1127 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001128 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001129 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 i += len;
1132 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001133 pkt_dev->dst_mac_count = value;
1134 pkt_dev->cur_dst_mac_offset = 0;
1135 }
1136 sprintf(pg_result, "OK: dst_mac_count=%d",
1137 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return count;
1139 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001140 if (!strcmp(name, "burst")) {
1141 len = num_arg(&user_buffer[i], 10, &value);
1142 if (len < 0)
1143 return len;
1144
1145 i += len;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001146 if ((value > 1) && (pkt_dev->xmit_mode == M_START_XMIT) &&
Eric Dumazet52d6c8c2015-02-22 17:03:41 -08001147 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
1148 return -ENOTSUPP;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001149 pkt_dev->burst = value < 1 ? 1 : value;
1150 sprintf(pg_result, "OK: burst=%d", pkt_dev->burst);
1151 return count;
1152 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001153 if (!strcmp(name, "node")) {
1154 len = num_arg(&user_buffer[i], 10, &value);
1155 if (len < 0)
1156 return len;
1157
1158 i += len;
1159
1160 if (node_possible(value)) {
1161 pkt_dev->node = value;
1162 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001163 if (pkt_dev->page) {
1164 put_page(pkt_dev->page);
1165 pkt_dev->page = NULL;
1166 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001167 }
1168 else
1169 sprintf(pg_result, "ERROR: node not possible");
1170 return count;
1171 }
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001172 if (!strcmp(name, "xmit_mode")) {
1173 char f[32];
1174
1175 memset(f, 0, 32);
1176 len = strn_len(&user_buffer[i], sizeof(f) - 1);
1177 if (len < 0)
1178 return len;
1179
1180 if (copy_from_user(f, &user_buffer[i], len))
1181 return -EFAULT;
1182 i += len;
1183
1184 if (strcmp(f, "start_xmit") == 0) {
1185 pkt_dev->xmit_mode = M_START_XMIT;
1186 } else if (strcmp(f, "netif_receive") == 0) {
1187 /* clone_skb set earlier, not supported in this mode */
1188 if (pkt_dev->clone_skb > 0)
1189 return -ENOTSUPP;
1190
1191 pkt_dev->xmit_mode = M_NETIF_RECEIVE;
Alexei Starovoitov9eea9222015-05-11 15:19:48 -07001192
1193 /* make sure new packet is allocated every time
1194 * pktgen_xmit() is called
1195 */
1196 pkt_dev->last_ok = 1;
1197
1198 /* override clone_skb if user passed default value
1199 * at module loading time
1200 */
1201 pkt_dev->clone_skb = 0;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001202 } else {
1203 sprintf(pg_result,
1204 "xmit_mode -:%s:- unknown\nAvailable modes: %s",
1205 f, "start_xmit, netif_receive\n");
1206 return count;
1207 }
1208 sprintf(pg_result, "OK: xmit_mode=%s", f);
1209 return count;
1210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001212 char f[32];
1213 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001215 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001216 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (copy_from_user(f, &user_buffer[i], len))
1219 return -EFAULT;
1220 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001221 if (strcmp(f, "IPSRC_RND") == 0)
1222 pkt_dev->flags |= F_IPSRC_RND;
1223
1224 else if (strcmp(f, "!IPSRC_RND") == 0)
1225 pkt_dev->flags &= ~F_IPSRC_RND;
1226
1227 else if (strcmp(f, "TXSIZE_RND") == 0)
1228 pkt_dev->flags |= F_TXSIZE_RND;
1229
1230 else if (strcmp(f, "!TXSIZE_RND") == 0)
1231 pkt_dev->flags &= ~F_TXSIZE_RND;
1232
1233 else if (strcmp(f, "IPDST_RND") == 0)
1234 pkt_dev->flags |= F_IPDST_RND;
1235
1236 else if (strcmp(f, "!IPDST_RND") == 0)
1237 pkt_dev->flags &= ~F_IPDST_RND;
1238
1239 else if (strcmp(f, "UDPSRC_RND") == 0)
1240 pkt_dev->flags |= F_UDPSRC_RND;
1241
1242 else if (strcmp(f, "!UDPSRC_RND") == 0)
1243 pkt_dev->flags &= ~F_UDPSRC_RND;
1244
1245 else if (strcmp(f, "UDPDST_RND") == 0)
1246 pkt_dev->flags |= F_UDPDST_RND;
1247
1248 else if (strcmp(f, "!UDPDST_RND") == 0)
1249 pkt_dev->flags &= ~F_UDPDST_RND;
1250
1251 else if (strcmp(f, "MACSRC_RND") == 0)
1252 pkt_dev->flags |= F_MACSRC_RND;
1253
1254 else if (strcmp(f, "!MACSRC_RND") == 0)
1255 pkt_dev->flags &= ~F_MACSRC_RND;
1256
1257 else if (strcmp(f, "MACDST_RND") == 0)
1258 pkt_dev->flags |= F_MACDST_RND;
1259
1260 else if (strcmp(f, "!MACDST_RND") == 0)
1261 pkt_dev->flags &= ~F_MACDST_RND;
1262
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001263 else if (strcmp(f, "MPLS_RND") == 0)
1264 pkt_dev->flags |= F_MPLS_RND;
1265
1266 else if (strcmp(f, "!MPLS_RND") == 0)
1267 pkt_dev->flags &= ~F_MPLS_RND;
1268
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001269 else if (strcmp(f, "VID_RND") == 0)
1270 pkt_dev->flags |= F_VID_RND;
1271
1272 else if (strcmp(f, "!VID_RND") == 0)
1273 pkt_dev->flags &= ~F_VID_RND;
1274
1275 else if (strcmp(f, "SVID_RND") == 0)
1276 pkt_dev->flags |= F_SVID_RND;
1277
1278 else if (strcmp(f, "!SVID_RND") == 0)
1279 pkt_dev->flags &= ~F_SVID_RND;
1280
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001281 else if (strcmp(f, "FLOW_SEQ") == 0)
1282 pkt_dev->flags |= F_FLOW_SEQ;
1283
Robert Olsson45b270f2007-08-28 15:45:55 -07001284 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1285 pkt_dev->flags |= F_QUEUE_MAP_RND;
1286
1287 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1288 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001289
1290 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1291 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1292
1293 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1294 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001295#ifdef CONFIG_XFRM
1296 else if (strcmp(f, "IPSEC") == 0)
1297 pkt_dev->flags |= F_IPSEC_ON;
1298#endif
1299
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001300 else if (strcmp(f, "!IPV6") == 0)
1301 pkt_dev->flags &= ~F_IPV6;
1302
Robert Olssone99b99b2010-03-18 22:44:30 +00001303 else if (strcmp(f, "NODE_ALLOC") == 0)
1304 pkt_dev->flags |= F_NODE;
1305
1306 else if (strcmp(f, "!NODE_ALLOC") == 0)
1307 pkt_dev->flags &= ~F_NODE;
1308
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001309 else if (strcmp(f, "UDPCSUM") == 0)
1310 pkt_dev->flags |= F_UDPCSUM;
1311
1312 else if (strcmp(f, "!UDPCSUM") == 0)
1313 pkt_dev->flags &= ~F_UDPCSUM;
1314
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001315 else if (strcmp(f, "NO_TIMESTAMP") == 0)
1316 pkt_dev->flags |= F_NO_TIMESTAMP;
1317
Jesper Dangaard Brouerf1f00d8ff2015-05-07 16:34:51 +02001318 else if (strcmp(f, "!NO_TIMESTAMP") == 0)
1319 pkt_dev->flags &= ~F_NO_TIMESTAMP;
1320
Luiz Capitulino222f1802006-03-20 22:16:13 -08001321 else {
1322 sprintf(pg_result,
1323 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1324 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001325 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001326 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
1327 "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
1328 "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001329 "NO_TIMESTAMP, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001330#ifdef CONFIG_XFRM
1331 "IPSEC, "
1332#endif
1333 "NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001334 return count;
1335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1337 return count;
1338 }
1339 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1340 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001341 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001342 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Luiz Capitulino222f1802006-03-20 22:16:13 -08001344 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001346 buf[len] = 0;
1347 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1348 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1349 strncpy(pkt_dev->dst_min, buf, len);
1350 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1351 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1352 }
1353 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001354 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001355 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1357 return count;
1358 }
1359 if (!strcmp(name, "dst_max")) {
1360 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001361 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001362 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Luiz Capitulino222f1802006-03-20 22:16:13 -08001365 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return -EFAULT;
1367
Luiz Capitulino222f1802006-03-20 22:16:13 -08001368 buf[len] = 0;
1369 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1370 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1371 strncpy(pkt_dev->dst_max, buf, len);
1372 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1373 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1374 }
1375 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001376 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 i += len;
1378 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1379 return count;
1380 }
1381 if (!strcmp(name, "dst6")) {
1382 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001383 if (len < 0)
1384 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 pkt_dev->flags |= F_IPV6;
1387
Luiz Capitulino222f1802006-03-20 22:16:13 -08001388 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001390 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Amerigo Wangc468fb12012-10-09 17:48:20 +00001392 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001393 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001395 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Luiz Capitulino222f1802006-03-20 22:16:13 -08001397 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001398 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Luiz Capitulino222f1802006-03-20 22:16:13 -08001400 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 sprintf(pg_result, "OK: dst6=%s", buf);
1402 return count;
1403 }
1404 if (!strcmp(name, "dst6_min")) {
1405 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001406 if (len < 0)
1407 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 pkt_dev->flags |= F_IPV6;
1410
Luiz Capitulino222f1802006-03-20 22:16:13 -08001411 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001413 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Amerigo Wangc468fb12012-10-09 17:48:20 +00001415 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001416 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001418 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001419 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001420 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Luiz Capitulino222f1802006-03-20 22:16:13 -08001422 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 sprintf(pg_result, "OK: dst6_min=%s", buf);
1424 return count;
1425 }
1426 if (!strcmp(name, "dst6_max")) {
1427 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001428 if (len < 0)
1429 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 pkt_dev->flags |= F_IPV6;
1432
Luiz Capitulino222f1802006-03-20 22:16:13 -08001433 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001435 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Amerigo Wangc468fb12012-10-09 17:48:20 +00001437 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001438 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Luiz Capitulino222f1802006-03-20 22:16:13 -08001440 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001441 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Luiz Capitulino222f1802006-03-20 22:16:13 -08001443 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 sprintf(pg_result, "OK: dst6_max=%s", buf);
1445 return count;
1446 }
1447 if (!strcmp(name, "src6")) {
1448 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001449 if (len < 0)
1450 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 pkt_dev->flags |= F_IPV6;
1453
Luiz Capitulino222f1802006-03-20 22:16:13 -08001454 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001456 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Amerigo Wangc468fb12012-10-09 17:48:20 +00001458 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001459 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001461 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Luiz Capitulino222f1802006-03-20 22:16:13 -08001463 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001464 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001465
1466 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 sprintf(pg_result, "OK: src6=%s", buf);
1468 return count;
1469 }
1470 if (!strcmp(name, "src_min")) {
1471 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001472 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001473 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001474
Luiz Capitulino222f1802006-03-20 22:16:13 -08001475 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001477 buf[len] = 0;
1478 if (strcmp(buf, pkt_dev->src_min) != 0) {
1479 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1480 strncpy(pkt_dev->src_min, buf, len);
1481 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1482 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1483 }
1484 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001485 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 i += len;
1487 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1488 return count;
1489 }
1490 if (!strcmp(name, "src_max")) {
1491 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001492 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001493 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001494
Luiz Capitulino222f1802006-03-20 22:16:13 -08001495 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001497 buf[len] = 0;
1498 if (strcmp(buf, pkt_dev->src_max) != 0) {
1499 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1500 strncpy(pkt_dev->src_max, buf, len);
1501 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1502 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1503 }
1504 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001505 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 i += len;
1507 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1508 return count;
1509 }
1510 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001512 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001513 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001516 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001519 if (!mac_pton(valstr, pkt_dev->dst_mac))
1520 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001522 ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001523
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001524 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return count;
1526 }
1527 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001529 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001530 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001533 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001536 if (!mac_pton(valstr, pkt_dev->src_mac))
1537 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001538 /* Set up Src MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001539 ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001540
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001541 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return count;
1543 }
1544
Luiz Capitulino222f1802006-03-20 22:16:13 -08001545 if (!strcmp(name, "clear_counters")) {
1546 pktgen_clear_counters(pkt_dev);
1547 sprintf(pg_result, "OK: Clearing counters.\n");
1548 return count;
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 if (!strcmp(name, "flows")) {
1552 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001553 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001554 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 i += len;
1557 if (value > MAX_CFLOWS)
1558 value = MAX_CFLOWS;
1559
1560 pkt_dev->cflows = value;
1561 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1562 return count;
1563 }
Fan Du6bae9192014-01-10 14:39:13 +08001564#ifdef CONFIG_XFRM
Fan Dude4aee72014-01-03 11:18:30 +08001565 if (!strcmp(name, "spi")) {
1566 len = num_arg(&user_buffer[i], 10, &value);
1567 if (len < 0)
1568 return len;
1569
1570 i += len;
1571 pkt_dev->spi = value;
1572 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1573 return count;
1574 }
Fan Du6bae9192014-01-10 14:39:13 +08001575#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (!strcmp(name, "flowlen")) {
1577 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001578 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001579 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 i += len;
1582 pkt_dev->lflow = value;
1583 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1584 return count;
1585 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001586
Robert Olsson45b270f2007-08-28 15:45:55 -07001587 if (!strcmp(name, "queue_map_min")) {
1588 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001589 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001590 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001591
Robert Olsson45b270f2007-08-28 15:45:55 -07001592 i += len;
1593 pkt_dev->queue_map_min = value;
1594 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1595 return count;
1596 }
1597
1598 if (!strcmp(name, "queue_map_max")) {
1599 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001600 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001601 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001602
Robert Olsson45b270f2007-08-28 15:45:55 -07001603 i += len;
1604 pkt_dev->queue_map_max = value;
1605 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1606 return count;
1607 }
1608
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001609 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001610 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001611
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001612 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001613 if (len < 0)
1614 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001615 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001616 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001617 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001618 cnt += sprintf(pg_result + cnt,
1619 "%08x%s", ntohl(pkt_dev->labels[n]),
1620 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001621
1622 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1623 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1624 pkt_dev->svlan_id = 0xffff;
1625
1626 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001627 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001628 }
1629 return count;
1630 }
1631
1632 if (!strcmp(name, "vlan_id")) {
1633 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001634 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001635 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001636
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001637 i += len;
1638 if (value <= 4095) {
1639 pkt_dev->vlan_id = value; /* turn on VLAN */
1640
1641 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001642 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001643
1644 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001645 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001646
1647 pkt_dev->nr_labels = 0; /* turn off MPLS */
1648 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1649 } else {
1650 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1651 pkt_dev->svlan_id = 0xffff;
1652
1653 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001654 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001655 }
1656 return count;
1657 }
1658
1659 if (!strcmp(name, "vlan_p")) {
1660 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001661 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001662 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001663
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001664 i += len;
1665 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1666 pkt_dev->vlan_p = value;
1667 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1668 } else {
1669 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1670 }
1671 return count;
1672 }
1673
1674 if (!strcmp(name, "vlan_cfi")) {
1675 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001676 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001677 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001678
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001679 i += len;
1680 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1681 pkt_dev->vlan_cfi = value;
1682 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1683 } else {
1684 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1685 }
1686 return count;
1687 }
1688
1689 if (!strcmp(name, "svlan_id")) {
1690 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001691 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001692 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001693
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001694 i += len;
1695 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1696 pkt_dev->svlan_id = value; /* turn on SVLAN */
1697
1698 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001699 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001700
1701 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001702 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001703
1704 pkt_dev->nr_labels = 0; /* turn off MPLS */
1705 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1706 } else {
1707 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1708 pkt_dev->svlan_id = 0xffff;
1709
1710 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001711 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001712 }
1713 return count;
1714 }
1715
1716 if (!strcmp(name, "svlan_p")) {
1717 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001718 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001719 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001720
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001721 i += len;
1722 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1723 pkt_dev->svlan_p = value;
1724 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1725 } else {
1726 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1727 }
1728 return count;
1729 }
1730
1731 if (!strcmp(name, "svlan_cfi")) {
1732 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001733 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001734 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001735
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001736 i += len;
1737 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1738 pkt_dev->svlan_cfi = value;
1739 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1740 } else {
1741 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1742 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001743 return count;
1744 }
1745
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001746 if (!strcmp(name, "tos")) {
1747 __u32 tmp_value = 0;
1748 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001749 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001750 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001751
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001752 i += len;
1753 if (len == 2) {
1754 pkt_dev->tos = tmp_value;
1755 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1756 } else {
1757 sprintf(pg_result, "ERROR: tos must be 00-ff");
1758 }
1759 return count;
1760 }
1761
1762 if (!strcmp(name, "traffic_class")) {
1763 __u32 tmp_value = 0;
1764 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001765 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001766 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001767
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001768 i += len;
1769 if (len == 2) {
1770 pkt_dev->traffic_class = tmp_value;
1771 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1772 } else {
1773 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1774 }
1775 return count;
1776 }
1777
John Fastabend9e50e3a2010-11-16 19:12:28 +00001778 if (!strcmp(name, "skb_priority")) {
1779 len = num_arg(&user_buffer[i], 9, &value);
1780 if (len < 0)
1781 return len;
1782
1783 i += len;
1784 pkt_dev->skb_priority = value;
1785 sprintf(pg_result, "OK: skb_priority=%i",
1786 pkt_dev->skb_priority);
1787 return count;
1788 }
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1791 return -EINVAL;
1792}
1793
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001794static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Al Virod9dda782013-03-31 18:16:14 -04001796 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001797}
1798
Arjan van de Ven9a321442007-02-12 00:55:35 -08001799static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001800 .owner = THIS_MODULE,
1801 .open = pktgen_if_open,
1802 .read = seq_read,
1803 .llseek = seq_lseek,
1804 .write = pktgen_if_write,
1805 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001806};
1807
1808static int pktgen_thread_show(struct seq_file *seq, void *v)
1809{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001810 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001811 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001813 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Thomas Graf97dc48e2014-05-16 23:28:54 +02001815 seq_puts(seq, "Running: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001816
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001817 rcu_read_lock();
1818 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001819 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001820 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Thomas Graf97dc48e2014-05-16 23:28:54 +02001822 seq_puts(seq, "\nStopped: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001823
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001824 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001825 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001826 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001829 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 else
Thomas Graf97dc48e2014-05-16 23:28:54 +02001831 seq_puts(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001833 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001838static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001839 const char __user * user_buffer,
1840 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
Joe Perches8a994a72010-07-12 10:50:23 +00001842 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001843 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001844 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001846 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001849 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return -EINVAL;
1851 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001852
Paul Gortmakerd6182222010-10-18 12:14:44 +00001853 max = count;
1854 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001855 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001856 return len;
1857
Paul Gortmakerd6182222010-10-18 12:14:44 +00001858 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 /* Read variable name */
1861
1862 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001863 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001864 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 memset(name, 0, sizeof(name));
1867 if (copy_from_user(name, &user_buffer[i], len))
1868 return -EFAULT;
1869 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001870
Luiz Capitulino222f1802006-03-20 22:16:13 -08001871 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001873 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001874 return len;
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 i += len;
1877
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001878 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001879 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Luiz Capitulino222f1802006-03-20 22:16:13 -08001881 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001882 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 ret = -EINVAL;
1884 goto out;
1885 }
1886
1887 pg_result = &(t->result[0]);
1888
Luiz Capitulino222f1802006-03-20 22:16:13 -08001889 if (!strcmp(name, "add_device")) {
1890 char f[32];
1891 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001893 if (len < 0) {
1894 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 goto out;
1896 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001897 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 return -EFAULT;
1899 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001900 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001901 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001902 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001903 if (!ret) {
1904 ret = count;
1905 sprintf(pg_result, "OK: add_device=%s", f);
1906 } else
1907 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 goto out;
1909 }
1910
Luiz Capitulino222f1802006-03-20 22:16:13 -08001911 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001912 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001913 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001914 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001915 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001917 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 goto out;
1919 }
1920
Luiz Capitulino222f1802006-03-20 22:16:13 -08001921 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001922 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001923 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 goto out;
1925 }
1926
1927 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001928out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return ret;
1930}
1931
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001932static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Al Virod9dda782013-03-31 18:16:14 -04001934 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
Arjan van de Ven9a321442007-02-12 00:55:35 -08001937static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001938 .owner = THIS_MODULE,
1939 .open = pktgen_thread_open,
1940 .read = seq_read,
1941 .llseek = seq_lseek,
1942 .write = pktgen_thread_write,
1943 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001944};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001947static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1948 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 struct pktgen_thread *t;
1951 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001952 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Cong Wang4e58a022013-01-28 19:55:53 +00001954 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001955 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001957 if (remove) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001958 pkt_dev->removal_mark = 1;
1959 t->control |= T_REMDEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 break;
1962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001964 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001967/*
1968 * mark a device for removal
1969 */
Cong Wang4e58a022013-01-28 19:55:53 +00001970static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
1972 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001973 const int max_tries = 10, msec_per_try = 125;
1974 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001975
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001976 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001977 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001978
Luiz Capitulino222f1802006-03-20 22:16:13 -08001979 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001980
Cong Wang4e58a022013-01-28 19:55:53 +00001981 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001982 if (pkt_dev == NULL)
1983 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001984
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001985 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001986 pr_debug("%s: waiting for %s to disappear....\n",
1987 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001988 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001989 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001990
1991 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001992 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1993 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001994 break;
1995 }
1996
1997 }
1998
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001999 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002000}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002001
Cong Wang4e58a022013-01-28 19:55:53 +00002002static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08002003{
2004 struct pktgen_thread *t;
2005
Cong Wang4e58a022013-01-28 19:55:53 +00002006 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08002007 struct pktgen_dev *pkt_dev;
2008
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02002009 rcu_read_lock();
2010 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08002011 if (pkt_dev->odev != dev)
2012 continue;
2013
David Howellsa8ca16e2013-04-12 17:27:28 +01002014 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002015
Alexey Dobriyan29753152009-08-28 23:34:43 -07002016 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00002017 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07002018 &pktgen_if_fops,
2019 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002020 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002021 pr_err("can't move proc entry for '%s'\n",
2022 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002023 break;
2024 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02002025 rcu_read_unlock();
Stephen Hemminger39df2322007-03-04 16:11:51 -08002026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
2028
Luiz Capitulino222f1802006-03-20 22:16:13 -08002029static int pktgen_device_event(struct notifier_block *unused,
2030 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Jiri Pirko351638e2013-05-28 01:30:21 +00002032 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00002033 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Cong Wang4e58a022013-01-28 19:55:53 +00002035 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002036 return NOTIFY_DONE;
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 /* It is OK that we do not hold the group lock right now,
2039 * as we run under the RTNL lock.
2040 */
2041
2042 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08002043 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00002044 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00002048 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 return NOTIFY_DONE;
2053}
2054
Cong Wang4e58a022013-01-28 19:55:53 +00002055static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
2056 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002057 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002058{
2059 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00002060 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07002061
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002062 for (i = 0; ifname[i] != '@'; i++) {
2063 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002064 break;
2065
2066 b[i] = ifname[i];
2067 }
2068 b[i] = 0;
2069
Cong Wang4e58a022013-01-28 19:55:53 +00002070 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07002071}
2072
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074/* Associate pktgen_dev with a device. */
2075
Cong Wang4e58a022013-01-28 19:55:53 +00002076static int pktgen_setup_dev(const struct pktgen_net *pn,
2077 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002078{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08002080 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (pkt_dev->odev) {
2084 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002085 pkt_dev->odev = NULL;
2086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Cong Wang4e58a022013-01-28 19:55:53 +00002088 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002090 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002091 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002095 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002096 err = -EINVAL;
2097 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002098 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002099 err = -ENETDOWN;
2100 } else {
2101 pkt_dev->odev = odev;
2102 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002106 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
2109/* Read pkt_dev from the interface and set up internal pktgen_dev
2110 * structure to have the right information to create/send packets
2111 */
2112static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2113{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002114 int ntxq;
2115
Luiz Capitulino222f1802006-03-20 22:16:13 -08002116 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002117 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002118 sprintf(pkt_dev->result,
2119 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2120 return;
2121 }
2122
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002123 /* make sure that we don't pick a non-existing transmit queue */
2124 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002125
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002126 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perches294a0b72014-09-09 21:17:30 -07002127 pr_warn("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2128 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2129 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002130 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002131 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002132 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perches294a0b72014-09-09 21:17:30 -07002133 pr_warn("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2134 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2135 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002136 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002137 }
2138
Luiz Capitulino222f1802006-03-20 22:16:13 -08002139 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002141 if (is_zero_ether_addr(pkt_dev->src_mac))
Joe Perches9ea08b12014-01-20 09:52:19 -08002142 ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Luiz Capitulino222f1802006-03-20 22:16:13 -08002144 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08002145 ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Luiz Capitulino222f1802006-03-20 22:16:13 -08002147 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002148 int i, set = 0, err = 1;
2149 struct inet6_dev *idev;
2150
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002151 if (pkt_dev->min_pkt_size == 0) {
2152 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2153 + sizeof(struct udphdr)
2154 + sizeof(struct pktgen_hdr)
2155 + pkt_dev->pkt_overhead;
2156 }
2157
Luiz Capitulino222f1802006-03-20 22:16:13 -08002158 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2159 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 set = 1;
2161 break;
2162 }
2163
Luiz Capitulino222f1802006-03-20 22:16:13 -08002164 if (!set) {
2165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 /*
2167 * Use linklevel address if unconfigured.
2168 *
2169 * use ipv6_get_lladdr if/when it's get exported
2170 */
2171
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002172 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002173 idev = __in6_dev_get(pkt_dev->odev);
2174 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 struct inet6_ifaddr *ifp;
2176
2177 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002178 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2179 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002180 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002181 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 err = 0;
2183 break;
2184 }
2185 }
2186 read_unlock_bh(&idev->lock);
2187 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002188 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002189 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002190 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002192 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002193 if (pkt_dev->min_pkt_size == 0) {
2194 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2195 + sizeof(struct udphdr)
2196 + sizeof(struct pktgen_hdr)
2197 + pkt_dev->pkt_overhead;
2198 }
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 pkt_dev->saddr_min = 0;
2201 pkt_dev->saddr_max = 0;
2202 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002203
2204 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002207 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (in_dev) {
2209 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002210 pkt_dev->saddr_min =
2211 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 pkt_dev->saddr_max = pkt_dev->saddr_min;
2213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
2215 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002216 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2218 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2219 }
2220
2221 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2222 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2223 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002224 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002225 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2226 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2227 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2228
Luiz Capitulino222f1802006-03-20 22:16:13 -08002229 pkt_dev->cur_dst_mac_offset = 0;
2230 pkt_dev->cur_src_mac_offset = 0;
2231 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2232 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2233 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2234 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 pkt_dev->nflows = 0;
2236}
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002239static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2240{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002241 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002242 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002243 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002244
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002245 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2246 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002247
Daniel Turull43d28b62010-06-09 22:49:57 +00002248 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002249 if (remaining <= 0) {
2250 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002251 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002252 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002253
Daniel Borkmann398f3822012-10-28 08:27:19 +00002254 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002255 if (remaining < 100000) {
2256 /* for small delays (<100us), just loop until limit is reached */
2257 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002258 end_time = ktime_get();
2259 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002260 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002261 /* see do_nanosleep */
2262 hrtimer_init_sleeper(&t, current);
2263 do {
2264 set_current_state(TASK_INTERRUPTIBLE);
2265 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2266 if (!hrtimer_active(&t.timer))
2267 t.task = NULL;
2268
2269 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002272 hrtimer_cancel(&t.timer);
2273 } while (t.task && pkt_dev->running && !signal_pending(current));
2274 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002275 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002277
2278 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002279 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280}
2281
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002282static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2283{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002284 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002285 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2286 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2287 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2288}
2289
Stephen Hemminger648fda72009-08-27 13:55:07 +00002290static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002291{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002292 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002293}
2294
2295static inline int f_pick(struct pktgen_dev *pkt_dev)
2296{
2297 int flow = pkt_dev->curfl;
2298
2299 if (pkt_dev->flags & F_FLOW_SEQ) {
2300 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2301 /* reset time */
2302 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002303 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002304 pkt_dev->curfl += 1;
2305 if (pkt_dev->curfl >= pkt_dev->cflows)
2306 pkt_dev->curfl = 0; /*reset */
2307 }
2308 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002309 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002310 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002311
Robert Olsson1211a642008-08-05 18:44:26 -07002312 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002313 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002314 pkt_dev->flows[flow].flags = 0;
2315 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002316 }
2317
2318 return pkt_dev->curfl;
2319}
2320
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002321
2322#ifdef CONFIG_XFRM
2323/* If there was already an IPSEC SA, we keep it as is, else
2324 * we go look for it ...
2325*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002326#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002327static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002328{
2329 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002330 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002331 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002332
2333 if (pkt_dev->spi) {
2334 /* We need as quick as possible to find the right SA
2335 * Searching with minimum criteria to archieve this.
2336 */
2337 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2338 } else {
2339 /* slow path: we dont already have xfrm_state */
2340 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
2341 (xfrm_address_t *)&pkt_dev->cur_daddr,
2342 (xfrm_address_t *)&pkt_dev->cur_saddr,
2343 AF_INET,
2344 pkt_dev->ipsmode,
2345 pkt_dev->ipsproto, 0);
2346 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002347 if (x) {
2348 pkt_dev->flows[flow].x = x;
2349 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002350 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002351 }
2352
2353 }
2354}
2355#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002356static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2357{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002358
2359 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2360 pkt_dev->cur_queue_map = smp_processor_id();
2361
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002362 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002363 __u16 t;
2364 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002365 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002366 (pkt_dev->queue_map_max -
2367 pkt_dev->queue_map_min + 1)
2368 + pkt_dev->queue_map_min;
2369 } else {
2370 t = pkt_dev->cur_queue_map + 1;
2371 if (t > pkt_dev->queue_map_max)
2372 t = pkt_dev->queue_map_min;
2373 }
2374 pkt_dev->cur_queue_map = t;
2375 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002376 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 -07002377}
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379/* Increment/randomize headers according to flags and current values
2380 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2381 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002382static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2383{
2384 __u32 imn;
2385 __u32 imx;
2386 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002388 if (pkt_dev->cflows)
2389 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002392 if (pkt_dev->src_mac_count > 1) {
2393 __u32 mc;
2394 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Luiz Capitulino222f1802006-03-20 22:16:13 -08002396 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002397 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002398 else {
2399 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002400 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002401 pkt_dev->src_mac_count)
2402 pkt_dev->cur_src_mac_offset = 0;
2403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Luiz Capitulino222f1802006-03-20 22:16:13 -08002405 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2406 pkt_dev->hh[11] = tmp;
2407 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2408 pkt_dev->hh[10] = tmp;
2409 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2410 pkt_dev->hh[9] = tmp;
2411 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2412 pkt_dev->hh[8] = tmp;
2413 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2414 pkt_dev->hh[7] = tmp;
2415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Luiz Capitulino222f1802006-03-20 22:16:13 -08002417 /* Deal with Destination MAC */
2418 if (pkt_dev->dst_mac_count > 1) {
2419 __u32 mc;
2420 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Luiz Capitulino222f1802006-03-20 22:16:13 -08002422 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002423 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Luiz Capitulino222f1802006-03-20 22:16:13 -08002425 else {
2426 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002427 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002428 pkt_dev->dst_mac_count) {
2429 pkt_dev->cur_dst_mac_offset = 0;
2430 }
2431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Luiz Capitulino222f1802006-03-20 22:16:13 -08002433 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2434 pkt_dev->hh[5] = tmp;
2435 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2436 pkt_dev->hh[4] = tmp;
2437 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2438 pkt_dev->hh[3] = tmp;
2439 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2440 pkt_dev->hh[2] = tmp;
2441 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2442 pkt_dev->hh[1] = tmp;
2443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002445 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002446 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002447 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002448 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2449 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002450 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002451 htonl(0x000fffff));
2452 }
2453
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002454 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002455 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002456 }
2457
2458 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002459 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002460 }
2461
Luiz Capitulino222f1802006-03-20 22:16:13 -08002462 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2463 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002464 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002465 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2466 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Luiz Capitulino222f1802006-03-20 22:16:13 -08002468 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 pkt_dev->cur_udp_src++;
2470 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2471 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002472 }
2473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Luiz Capitulino222f1802006-03-20 22:16:13 -08002475 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2476 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002477 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002478 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2479 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002480 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002482 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002484 }
2485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487 if (!(pkt_dev->flags & F_IPV6)) {
2488
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002489 imn = ntohl(pkt_dev->saddr_min);
2490 imx = ntohl(pkt_dev->saddr_max);
2491 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002493 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002494 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 else {
2496 t = ntohl(pkt_dev->cur_saddr);
2497 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002498 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
2502 pkt_dev->cur_saddr = htonl(t);
2503 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002504
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002505 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2507 } else {
Al Viro252e33462006-11-14 20:48:11 -08002508 imn = ntohl(pkt_dev->daddr_min);
2509 imx = ntohl(pkt_dev->daddr_max);
2510 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 __u32 t;
Al Viro252e33462006-11-14 20:48:11 -08002512 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 if (pkt_dev->flags & F_IPDST_RND) {
2514
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002515 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002516 t = prandom_u32() %
2517 (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002518 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002519 } while (ipv4_is_loopback(s) ||
2520 ipv4_is_multicast(s) ||
2521 ipv4_is_lbcast(s) ||
2522 ipv4_is_zeronet(s) ||
2523 ipv4_is_local_multicast(s));
Al Viro252e33462006-11-14 20:48:11 -08002524 pkt_dev->cur_daddr = s;
2525 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 t = ntohl(pkt_dev->cur_daddr);
2527 t++;
2528 if (t > imx) {
2529 t = imn;
2530 }
2531 pkt_dev->cur_daddr = htonl(t);
2532 }
2533 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002534 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002535 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002536 pkt_dev->flows[flow].cur_daddr =
2537 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002538#ifdef CONFIG_XFRM
2539 if (pkt_dev->flags & F_IPSEC_ON)
2540 get_ipsec_sa(pkt_dev, flow);
2541#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 pkt_dev->nflows++;
2543 }
2544 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002545 } else { /* IPV6 * */
2546
Joe Perches06e30412012-10-18 17:55:31 +00002547 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 int i;
2549
2550 /* Only random destinations yet */
2551
Luiz Capitulino222f1802006-03-20 22:16:13 -08002552 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002554 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002555 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2556 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 }
2560
Luiz Capitulino222f1802006-03-20 22:16:13 -08002561 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2562 __u32 t;
2563 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002564 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002565 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2566 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002567 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002569 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002571 }
2572 pkt_dev->cur_pkt_size = t;
2573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002575 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 pkt_dev->flows[flow].count++;
2578}
2579
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002580
2581#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002582static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d47e2014-01-03 11:18:31 +08002583
2584 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2585};
2586
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002587static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2588{
2589 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2590 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002591 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002592
2593 if (!x)
2594 return 0;
2595 /* XXX: we dont support tunnel mode for now until
2596 * we resolve the dst issue */
Fan Ducf93d47e2014-01-03 11:18:31 +08002597 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002598 return 0;
2599
Fan Ducf93d47e2014-01-03 11:18:31 +08002600 /* But when user specify an valid SPI, transformation
2601 * supports both transport/tunnel mode + ESP/AH type.
2602 */
2603 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
2604 skb->_skb_refdst = (unsigned long)&pkt_dev->dst | SKB_DST_NOREF;
2605
2606 rcu_read_lock_bh();
Herbert Xu13996372007-10-17 21:35:51 -07002607 err = x->outer_mode->output(x, skb);
Fan Ducf93d47e2014-01-03 11:18:31 +08002608 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002609 if (err) {
2610 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002611 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002612 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002613 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002614 if (err) {
2615 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002616 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002617 }
Fan Du0af0a412014-01-03 11:18:27 +08002618 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002619 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002620 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002621 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002622error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002623 return err;
2624}
2625
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002626static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002627{
2628 if (pkt_dev->cflows) {
2629 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002630 int i;
2631 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002632 struct xfrm_state *x = pkt_dev->flows[i].x;
2633 if (x) {
2634 xfrm_state_put(x);
2635 pkt_dev->flows[i].x = NULL;
2636 }
2637 }
2638 }
2639}
2640
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002641static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002642 struct sk_buff *skb, __be16 protocol)
2643{
2644 if (pkt_dev->flags & F_IPSEC_ON) {
2645 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2646 int nhead = 0;
2647 if (x) {
2648 int ret;
2649 __u8 *eth;
fan.du38682042013-12-01 16:28:48 +08002650 struct iphdr *iph;
2651
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002652 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002653 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002654 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2655 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002656 pr_err("Error expanding ipsec packet %d\n",
2657 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002658 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002659 }
2660 }
2661
2662 /* ipsec is not expecting ll header */
2663 skb_pull(skb, ETH_HLEN);
2664 ret = pktgen_output_ipsec(skb, pkt_dev);
2665 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002666 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002667 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002668 }
2669 /* restore ll */
2670 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2671 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002672 *(u16 *) &eth[12] = protocol;
fan.du38682042013-12-01 16:28:48 +08002673
2674 /* Update IPv4 header len as well as checksum value */
2675 iph = ip_hdr(skb);
2676 iph->tot_len = htons(skb->len - ETH_HLEN);
2677 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002678 }
2679 }
2680 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002681err:
2682 kfree_skb(skb);
2683 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002684}
2685#endif
2686
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002687static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2688{
Eric Dumazet95c96172012-04-15 05:58:06 +00002689 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002690 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002691 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002692
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002693 mpls--;
2694 *mpls |= MPLS_STACK_BOTTOM;
2695}
2696
Al Viro0f37c602006-11-03 03:49:56 -08002697static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2698 unsigned int prio)
2699{
2700 return htons(id | (cfi << 12) | (prio << 13));
2701}
2702
Eric Dumazet26ad7872011-01-25 13:26:05 -08002703static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2704 int datalen)
2705{
2706 struct timeval timestamp;
2707 struct pktgen_hdr *pgh;
2708
2709 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2710 datalen -= sizeof(*pgh);
2711
2712 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002713 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002714 } else {
2715 int frags = pkt_dev->nfrags;
2716 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002717 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002718
2719
2720 if (frags > MAX_SKB_FRAGS)
2721 frags = MAX_SKB_FRAGS;
2722 len = datalen - frags * PAGE_SIZE;
2723 if (len > 0) {
2724 memset(skb_put(skb, len), 0, len);
2725 datalen = frags * PAGE_SIZE;
2726 }
2727
2728 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002729 frag_len = (datalen/frags) < PAGE_SIZE ?
2730 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002731 while (datalen > 0) {
2732 if (unlikely(!pkt_dev->page)) {
2733 int node = numa_node_id();
2734
2735 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2736 node = pkt_dev->node;
2737 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2738 if (!pkt_dev->page)
2739 break;
2740 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002741 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002742 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002743 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002744 /*last fragment, fill rest of data*/
2745 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002746 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2747 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002748 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002749 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2750 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2751 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2752 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002753 i++;
2754 skb_shinfo(skb)->nr_frags = i;
2755 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002756 }
2757
2758 /* Stamp the time, and sequence number,
2759 * convert them to network byte order
2760 */
2761 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2762 pgh->seq_num = htonl(pkt_dev->seq_num);
2763
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002764 if (pkt_dev->flags & F_NO_TIMESTAMP) {
2765 pgh->tv_sec = 0;
2766 pgh->tv_usec = 0;
2767 } else {
2768 do_gettimeofday(&timestamp);
2769 pgh->tv_sec = htonl(timestamp.tv_sec);
2770 pgh->tv_usec = htonl(timestamp.tv_usec);
2771 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002772}
2773
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002774static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
2775 struct pktgen_dev *pkt_dev,
2776 unsigned int extralen)
2777{
2778 struct sk_buff *skb = NULL;
2779 unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen +
2780 pkt_dev->pkt_overhead;
2781
2782 if (pkt_dev->flags & F_NODE) {
2783 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2784
2785 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2786 if (likely(skb)) {
2787 skb_reserve(skb, NET_SKB_PAD);
2788 skb->dev = dev;
2789 }
2790 } else {
2791 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2792 }
2793
2794 return skb;
2795}
2796
Luiz Capitulino222f1802006-03-20 22:16:13 -08002797static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2798 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
2800 struct sk_buff *skb = NULL;
2801 __u8 *eth;
2802 struct udphdr *udph;
2803 int datalen, iplen;
2804 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002805 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002806 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002807 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2808 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2809 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2810 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002811 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002812
2813 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002814 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002815
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002816 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002817 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002818
Robert Olsson64053be2005-06-26 15:27:10 -07002819 /* Update any of the values, used when we're incrementing various
2820 * fields.
2821 */
2822 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002823 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002824
David S. Miller7ac54592006-01-18 14:19:10 -08002825 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002826
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002827 skb = pktgen_alloc_skb(odev, pkt_dev, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 if (!skb) {
2829 sprintf(pkt_dev->result, "No memory");
2830 return NULL;
2831 }
2832
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002833 prefetchw(skb->data);
David S. Miller7ac54592006-01-18 14:19:10 -08002834 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 /* Reserve for ethernet and IP header */
2837 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002838 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2839 if (pkt_dev->nr_labels)
2840 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002841
2842 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002843 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002844 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002845 *svlan_tci = build_tci(pkt_dev->svlan_id,
2846 pkt_dev->svlan_cfi,
2847 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002848 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002849 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002850 }
2851 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002852 *vlan_tci = build_tci(pkt_dev->vlan_id,
2853 pkt_dev->vlan_cfi,
2854 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002855 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002856 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002857 }
2858
Thomas Graf525cebe2013-06-03 11:49:23 +00002859 skb_set_mac_header(skb, 0);
2860 skb_set_network_header(skb, skb->len);
2861 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2862
2863 skb_set_transport_header(skb, skb->len);
2864 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002865 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002866 skb->priority = pkt_dev->skb_priority;
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002869 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002871 /* Eth + IPh + UDPh + mpls */
2872 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002873 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002874 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 udph->source = htons(pkt_dev->cur_udp_src);
2878 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002879 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002880 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
2882 iph->ihl = 5;
2883 iph->version = 4;
2884 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002885 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002886 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 iph->saddr = pkt_dev->cur_saddr;
2888 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002889 iph->id = htons(pkt_dev->ip_id);
2890 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 iph->frag_off = 0;
2892 iplen = 20 + 8 + datalen;
2893 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002894 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002895 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 skb->dev = odev;
2897 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002898
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002899 pktgen_finalize_skb(pkt_dev, skb, datalen);
2900
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002901 if (!(pkt_dev->flags & F_UDPCSUM)) {
2902 skb->ip_summed = CHECKSUM_NONE;
2903 } else if (odev->features & NETIF_F_V4_CSUM) {
2904 skb->ip_summed = CHECKSUM_PARTIAL;
2905 skb->csum = 0;
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002906 udp4_hwcsum(skb, iph->saddr, iph->daddr);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002907 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002908 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), datalen + 8, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002909
2910 /* add protocol-dependent pseudo-header */
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002911 udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr,
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002912 datalen + 8, IPPROTO_UDP, csum);
2913
2914 if (udph->check == 0)
2915 udph->check = CSUM_MANGLED_0;
2916 }
2917
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002918#ifdef CONFIG_XFRM
2919 if (!process_ipsec(pkt_dev, skb, protocol))
2920 return NULL;
2921#endif
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 return skb;
2924}
2925
Luiz Capitulino222f1802006-03-20 22:16:13 -08002926static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2927 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928{
2929 struct sk_buff *skb = NULL;
2930 __u8 *eth;
2931 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002932 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002934 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002935 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002936 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2937 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2938 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2939 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002940 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002941
2942 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002943 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002944
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002945 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002946 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002947
Robert Olsson64053be2005-06-26 15:27:10 -07002948 /* Update any of the values, used when we're incrementing various
2949 * fields.
2950 */
2951 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002952 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002953
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002954 skb = pktgen_alloc_skb(odev, pkt_dev, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 if (!skb) {
2956 sprintf(pkt_dev->result, "No memory");
2957 return NULL;
2958 }
2959
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002960 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 skb_reserve(skb, 16);
2962
2963 /* Reserve for ethernet and IP header */
2964 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002965 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2966 if (pkt_dev->nr_labels)
2967 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002968
2969 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002970 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002971 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002972 *svlan_tci = build_tci(pkt_dev->svlan_id,
2973 pkt_dev->svlan_cfi,
2974 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002975 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002976 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002977 }
2978 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002979 *vlan_tci = build_tci(pkt_dev->vlan_id,
2980 pkt_dev->vlan_cfi,
2981 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002982 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002983 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002984 }
2985
Thomas Graf525cebe2013-06-03 11:49:23 +00002986 skb_set_mac_header(skb, 0);
2987 skb_set_network_header(skb, skb->len);
2988 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2989
2990 skb_set_transport_header(skb, skb->len);
2991 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002992 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002993 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002996 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002997
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002998 /* Eth + IPh + UDPh + mpls */
2999 datalen = pkt_dev->cur_pkt_size - 14 -
3000 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003001 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Amerigo Wang5aa8b572012-10-09 17:48:16 +00003003 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00003005 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
3007
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003008 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 udph->source = htons(pkt_dev->cur_udp_src);
3010 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003011 udph->len = htons(udplen);
3012 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003014 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003016 if (pkt_dev->traffic_class) {
3017 /* Version + traffic class + flow (0) */
Al Viro252e33462006-11-14 20:48:11 -08003018 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003019 }
3020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 iph->hop_limit = 32;
3022
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003023 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 iph->nexthdr = IPPROTO_UDP;
3025
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003026 iph->daddr = pkt_dev->cur_in6_daddr;
3027 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Steven Whitehouseca6549a2006-03-23 01:10:26 -08003029 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 skb->dev = odev;
3031 skb->pkt_type = PACKET_HOST;
3032
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01003033 pktgen_finalize_skb(pkt_dev, skb, datalen);
3034
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003035 if (!(pkt_dev->flags & F_UDPCSUM)) {
3036 skb->ip_summed = CHECKSUM_NONE;
3037 } else if (odev->features & NETIF_F_V6_CSUM) {
3038 skb->ip_summed = CHECKSUM_PARTIAL;
3039 skb->csum_start = skb_transport_header(skb) - skb->head;
3040 skb->csum_offset = offsetof(struct udphdr, check);
3041 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
3042 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01003043 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), udplen, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003044
3045 /* add protocol-dependent pseudo-header */
3046 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
3047
3048 if (udph->check == 0)
3049 udph->check = CSUM_MANGLED_0;
3050 }
3051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 return skb;
3053}
3054
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003055static struct sk_buff *fill_packet(struct net_device *odev,
3056 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003058 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 return fill_packet_ipv6(odev, pkt_dev);
3060 else
3061 return fill_packet_ipv4(odev, pkt_dev);
3062}
3063
Luiz Capitulino222f1802006-03-20 22:16:13 -08003064static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003066 pkt_dev->seq_num = 1;
3067 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003069 pkt_dev->tx_bytes = 0;
3070 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071}
3072
3073/* Set up structure for sending pkts, clear counters */
3074
3075static void pktgen_run(struct pktgen_thread *t)
3076{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003077 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 int started = 0;
3079
Joe Perchesf9467ea2010-06-21 12:29:14 +00003080 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003082 rcu_read_lock();
3083 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085 /*
3086 * setup odev and create initial packet.
3087 */
3088 pktgen_setup_inject(pkt_dev);
3089
Luiz Capitulino222f1802006-03-20 22:16:13 -08003090 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 pktgen_clear_counters(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003093 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003094
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003095 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 strcpy(pkt_dev->result, "Starting");
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003098 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003100 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 strcpy(pkt_dev->result, "Error starting");
3102 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003103 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003104 if (started)
3105 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106}
3107
Cong Wang4e58a022013-01-28 19:55:53 +00003108static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003110 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Joe Perchesf9467ea2010-06-21 12:29:14 +00003112 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003114 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003115
Cong Wang4e58a022013-01-28 19:55:53 +00003116 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003117 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003118
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003119 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120}
3121
Stephen Hemminger648fda72009-08-27 13:55:07 +00003122static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003124 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003126 rcu_read_lock();
3127 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
3128 if (pkt_dev->running) {
3129 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003130 return 1;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003131 }
3132 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134}
3135
Luiz Capitulino222f1802006-03-20 22:16:13 -08003136static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003138 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
Luiz Capitulino222f1802006-03-20 22:16:13 -08003140 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
Luiz Capitulino222f1802006-03-20 22:16:13 -08003142 if (signal_pending(current))
3143 goto signal;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003144 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003145 return 1;
3146signal:
3147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148}
3149
Cong Wang4e58a022013-01-28 19:55:53 +00003150static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003152 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003154
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003155 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003156
Cong Wang4e58a022013-01-28 19:55:53 +00003157 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003159 if (sig == 0)
3160 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003162
3163 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003164 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003166
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003167 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 return sig;
3169}
3170
Cong Wang4e58a022013-01-28 19:55:53 +00003171static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003173 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Joe Perchesf9467ea2010-06-21 12:29:14 +00003175 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003177 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Cong Wang4e58a022013-01-28 19:55:53 +00003179 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003181
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003182 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003184 /* Propagate thread->control */
3185 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003186
Cong Wang4e58a022013-01-28 19:55:53 +00003187 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
3189
Cong Wang4e58a022013-01-28 19:55:53 +00003190static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003191{
3192 struct pktgen_thread *t;
3193
Joe Perchesf9467ea2010-06-21 12:29:14 +00003194 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003195
3196 mutex_lock(&pktgen_thread_lock);
3197
Cong Wang4e58a022013-01-28 19:55:53 +00003198 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003199 t->control |= (T_REMDEVALL);
3200
3201 mutex_unlock(&pktgen_thread_lock);
3202
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003203 /* Propagate thread->control */
3204 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003205
Cong Wang4e58a022013-01-28 19:55:53 +00003206 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003207}
3208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3210{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003211 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003212 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003213 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3214 pkt_dev->started_at);
3215 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Daniel Turull03a14ab2011-03-09 14:11:00 -08003217 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003218 (unsigned long long)ktime_to_us(elapsed),
3219 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3220 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003221 (unsigned long long)pkt_dev->sofar,
3222 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003224 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3225 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Luiz Capitulino222f1802006-03-20 22:16:13 -08003227 bps = pps * 8 * pkt_dev->cur_pkt_size;
3228
3229 mbps = bps;
3230 do_div(mbps, 1000000);
3231 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3232 (unsigned long long)pps,
3233 (unsigned long long)mbps,
3234 (unsigned long long)bps,
3235 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003239static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003241 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003242
Luiz Capitulino222f1802006-03-20 22:16:13 -08003243 if (!pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003244 pr_warn("interface: %s is already stopped\n",
3245 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003246 return -EINVAL;
3247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003249 pkt_dev->running = 0;
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003250 kfree_skb(pkt_dev->skb);
3251 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003252 pkt_dev->stopped_at = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003254 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Luiz Capitulino222f1802006-03-20 22:16:13 -08003256 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257}
3258
Luiz Capitulino222f1802006-03-20 22:16:13 -08003259static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003261 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003262
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003263 rcu_read_lock();
3264 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003265 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003266 continue;
3267 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003268 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003269 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003270 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003272 rcu_read_unlock();
3273
Luiz Capitulino222f1802006-03-20 22:16:13 -08003274 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275}
3276
Luiz Capitulino222f1802006-03-20 22:16:13 -08003277static void pktgen_stop(struct pktgen_thread *t)
3278{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003279 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Joe Perchesf9467ea2010-06-21 12:29:14 +00003281 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003283 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003285 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003286 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003289 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003292/*
3293 * one of our devices needs to be removed - find it
3294 * and remove it
3295 */
3296static void pktgen_rem_one_if(struct pktgen_thread *t)
3297{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003298 struct list_head *q, *n;
3299 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003300
Joe Perchesf9467ea2010-06-21 12:29:14 +00003301 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003302
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003303 list_for_each_safe(q, n, &t->if_list) {
3304 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003305
Luiz Capitulino222f1802006-03-20 22:16:13 -08003306 if (!cur->removal_mark)
3307 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003308
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003309 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003310 cur->skb = NULL;
3311
3312 pktgen_remove_device(t, cur);
3313
3314 break;
3315 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003316}
3317
Luiz Capitulino222f1802006-03-20 22:16:13 -08003318static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003320 struct list_head *q, *n;
3321 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003322
Joe Perchesf9467ea2010-06-21 12:29:14 +00003323 func_enter();
3324
Luiz Capitulino222f1802006-03-20 22:16:13 -08003325 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003326
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003327 list_for_each_safe(q, n, &t->if_list) {
3328 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003329
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003330 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003331 cur->skb = NULL;
3332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 pktgen_remove_device(t, cur);
3334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335}
3336
Luiz Capitulino222f1802006-03-20 22:16:13 -08003337static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003339 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003340 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341}
3342
Stephen Hemmingeref879792009-09-22 19:41:43 +00003343static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003344{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003345 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003346 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003347 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003348}
3349
Stephen Hemmingeref879792009-09-22 19:41:43 +00003350static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3351{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003352 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003353
3354 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3355 if (signal_pending(current))
3356 break;
3357
3358 if (need_resched())
3359 pktgen_resched(pkt_dev);
3360 else
3361 cpu_relax();
3362 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003363 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003364}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003365
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003366static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367{
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003368 unsigned int burst = ACCESS_ONCE(pkt_dev->burst);
Stephen Hemminger00829822008-11-20 20:14:53 -08003369 struct net_device *odev = pkt_dev->odev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003370 struct netdev_queue *txq;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003371 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 int ret;
3373
Stephen Hemmingeref879792009-09-22 19:41:43 +00003374 /* If device is offline, then don't send */
3375 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3376 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003377 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003379
Stephen Hemmingeref879792009-09-22 19:41:43 +00003380 /* This is max DELAY, this has special meaning of
3381 * "never transmit"
3382 */
3383 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003384 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003385 return;
3386 }
3387
3388 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003389 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3390 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3391 /* build a new pkt */
3392 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003393
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003394 pkt_dev->skb = fill_packet(odev, pkt_dev);
3395 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003396 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003397 schedule();
3398 pkt_dev->clone_count--; /* back out increment, OOM */
3399 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003401 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003402 pkt_dev->allocated_skbs++;
3403 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003405
Stephen Hemmingeref879792009-09-22 19:41:43 +00003406 if (pkt_dev->delay && pkt_dev->last_ok)
3407 spin(pkt_dev, pkt_dev->next_tx);
3408
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003409 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE) {
3410 skb = pkt_dev->skb;
3411 skb->protocol = eth_type_trans(skb, skb->dev);
3412 atomic_add(burst, &skb->users);
3413 local_bh_disable();
3414 do {
3415 ret = netif_receive_skb(skb);
3416 if (ret == NET_RX_DROP)
3417 pkt_dev->errors++;
3418 pkt_dev->sofar++;
3419 pkt_dev->seq_num++;
3420 if (atomic_read(&skb->users) != burst) {
3421 /* skb was queued by rps/rfs or taps,
3422 * so cannot reuse this skb
3423 */
3424 atomic_sub(burst - 1, &skb->users);
3425 /* get out of the loop and wait
3426 * until skb is consumed
3427 */
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003428 break;
3429 }
3430 /* skb was 'freed' by stack, so clean few
3431 * bits and reuse it
3432 */
3433#ifdef CONFIG_NET_CLS_ACT
3434 skb->tc_verd = 0; /* reset reclass/redir ttl */
3435#endif
3436 } while (--burst > 0);
3437 goto out; /* Skips xmit_mode M_START_XMIT */
3438 }
3439
Daniel Borkmann10c51b56232014-08-27 11:11:27 +02003440 txq = skb_get_tx_queue(odev, pkt_dev->skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003441
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003442 local_bh_disable();
3443
3444 HARD_TX_LOCK(odev, txq, smp_processor_id());
Stephen Hemmingeref879792009-09-22 19:41:43 +00003445
Daniel Borkmann6f25cd42014-04-07 17:18:30 +02003446 if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003447 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003448 pkt_dev->last_ok = 0;
3449 goto unlock;
3450 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003451 atomic_add(burst, &pkt_dev->skb->users);
3452
3453xmit_more:
3454 ret = netdev_start_xmit(pkt_dev->skb, odev, txq, --burst > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Stephen Hemmingeref879792009-09-22 19:41:43 +00003456 switch (ret) {
3457 case NETDEV_TX_OK:
Stephen Hemmingeref879792009-09-22 19:41:43 +00003458 pkt_dev->last_ok = 1;
3459 pkt_dev->sofar++;
3460 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003461 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003462 if (burst > 0 && !netif_xmit_frozen_or_drv_stopped(txq))
3463 goto xmit_more;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003464 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003465 case NET_XMIT_DROP:
3466 case NET_XMIT_CN:
3467 case NET_XMIT_POLICED:
3468 /* skb has been consumed */
3469 pkt_dev->errors++;
3470 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003471 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003472 net_info_ratelimited("%s xmit error: %d\n",
3473 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003474 pkt_dev->errors++;
3475 /* fallthru */
3476 case NETDEV_TX_LOCKED:
3477 case NETDEV_TX_BUSY:
3478 /* Retry it next time */
3479 atomic_dec(&(pkt_dev->skb->users));
3480 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003481 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003482 if (unlikely(burst))
3483 atomic_sub(burst, &pkt_dev->skb->users);
Eric Dumazet0835acf2009-09-30 13:03:33 +00003484unlock:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003485 HARD_TX_UNLOCK(odev, txq);
3486
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003487out:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003488 local_bh_enable();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003489
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 /* If pkt_dev->count is zero, then run forever */
3491 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003492 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 /* Done with this */
3495 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003496 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003497}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 * Main loop of the thread goes here
3501 */
3502
David S. Milleree74baa2007-01-01 20:51:53 -08003503static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504{
3505 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003506 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003507 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
David S. Milleree74baa2007-01-01 20:51:53 -08003510 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
3512 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003513 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
Joe Perchesf9467ea2010-06-21 12:29:14 +00003515 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003517 set_freezable();
3518
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003519 __set_current_state(TASK_RUNNING);
3520
David S. Milleree74baa2007-01-01 20:51:53 -08003521 while (!kthread_should_stop()) {
3522 pkt_dev = next_to_run(t);
3523
Stephen Hemmingeref879792009-09-22 19:41:43 +00003524 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003525 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003526 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003527 wait_event_interruptible_timeout(t->queue,
3528 t->control != 0,
3529 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003530 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003531 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003532 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003533
Stephen Hemmingeref879792009-09-22 19:41:43 +00003534 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 pktgen_xmit(pkt_dev);
3536
Stephen Hemmingeref879792009-09-22 19:41:43 +00003537 if (need_resched())
3538 pktgen_resched(pkt_dev);
3539 else
3540 cpu_relax();
3541 }
3542
Luiz Capitulino222f1802006-03-20 22:16:13 -08003543 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 pktgen_stop(t);
3545 t->control &= ~(T_STOP);
3546 }
3547
Luiz Capitulino222f1802006-03-20 22:16:13 -08003548 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 pktgen_run(t);
3550 t->control &= ~(T_RUN);
3551 }
3552
Luiz Capitulino222f1802006-03-20 22:16:13 -08003553 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003555 t->control &= ~(T_REMDEVALL);
3556 }
3557
Luiz Capitulino222f1802006-03-20 22:16:13 -08003558 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003559 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 t->control &= ~(T_REMDEV);
3561 }
3562
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003563 try_to_freeze();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003564 }
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003565 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
Joe Perchesf9467ea2010-06-21 12:29:14 +00003567 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003568 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Joe Perchesf9467ea2010-06-21 12:29:14 +00003570 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003571 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
Joe Perchesf9467ea2010-06-21 12:29:14 +00003573 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003574 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003575
Eric Dumazet551eaff2010-11-21 10:26:44 -08003576 /* Wait for kthread_stop */
3577 while (!kthread_should_stop()) {
3578 set_current_state(TASK_INTERRUPTIBLE);
3579 schedule();
3580 }
3581 __set_current_state(TASK_RUNNING);
3582
David S. Milleree74baa2007-01-01 20:51:53 -08003583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584}
3585
Luiz Capitulino222f1802006-03-20 22:16:13 -08003586static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003587 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003589 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003590 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003592 rcu_read_lock();
3593 list_for_each_entry_rcu(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003594 if (strncmp(p->odevname, ifname, len) == 0) {
3595 if (p->odevname[len]) {
3596 if (exact || p->odevname[len] != '@')
3597 continue;
3598 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003599 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003600 break;
3601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003603 rcu_read_unlock();
Joe Perchesf9467ea2010-06-21 12:29:14 +00003604 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003605 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606}
3607
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003608/*
3609 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 */
3611
Luiz Capitulino222f1802006-03-20 22:16:13 -08003612static int add_dev_to_thread(struct pktgen_thread *t,
3613 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614{
3615 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003617 /* This function cannot be called concurrently, as its called
3618 * under pktgen_thread_lock mutex, but it can run from
3619 * userspace on another CPU than the kthread. The if_lock()
3620 * is used here to sync with concurrent instances of
3621 * _rem_dev_from_if_list() invoked via kthread, which is also
3622 * updating the if_list */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003623 if_lock(t);
3624
3625 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003626 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003627 rv = -EBUSY;
3628 goto out;
3629 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003630
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 pkt_dev->running = 0;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003632 pkt_dev->pg_thread = t;
3633 list_add_rcu(&pkt_dev->list, &t->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634
Luiz Capitulino222f1802006-03-20 22:16:13 -08003635out:
3636 if_unlock(t);
3637 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638}
3639
3640/* Called under thread lock */
3641
Luiz Capitulino222f1802006-03-20 22:16:13 -08003642static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003644 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003645 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003646 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 /* We don't allow a device to be on several threads */
3649
Cong Wang4e58a022013-01-28 19:55:53 +00003650 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003651 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003652 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003653 return -EBUSY;
3654 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003655
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003656 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003657 if (!pkt_dev)
3658 return -ENOMEM;
3659
Eric Dumazet593f63b2009-11-23 01:44:37 +00003660 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003661 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003662 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003663 if (pkt_dev->flows == NULL) {
3664 kfree(pkt_dev);
3665 return -ENOMEM;
3666 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003667
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003668 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003669 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003670 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003671 pkt_dev->count = pg_count_d;
3672 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003673 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003674 pkt_dev->udp_src_max = 9;
3675 pkt_dev->udp_dst_min = 9;
3676 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003677 pkt_dev->vlan_p = 0;
3678 pkt_dev->vlan_cfi = 0;
3679 pkt_dev->vlan_id = 0xffff;
3680 pkt_dev->svlan_p = 0;
3681 pkt_dev->svlan_cfi = 0;
3682 pkt_dev->svlan_id = 0xffff;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003683 pkt_dev->burst = 1;
Robert Olssone99b99b2010-03-18 22:44:30 +00003684 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003685
Cong Wang4e58a022013-01-28 19:55:53 +00003686 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003687 if (err)
3688 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003689 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3690 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003691
Cong Wang4e58a022013-01-28 19:55:53 +00003692 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003693 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003694 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003695 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003696 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003697 err = -EINVAL;
3698 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003699 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003700#ifdef CONFIG_XFRM
3701 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3702 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d47e2014-01-03 11:18:31 +08003703
3704 /* xfrm tunnel mode needs additional dst to extract outter
3705 * ip header protocol/ttl/id field, here creat a phony one.
3706 * instead of looking for a valid rt, which definitely hurting
3707 * performance under such circumstance.
3708 */
3709 pkt_dev->dstops.family = AF_INET;
3710 pkt_dev->dst.dev = pkt_dev->odev;
3711 dst_init_metrics(&pkt_dev->dst, pktgen_dst_metrics, false);
3712 pkt_dev->dst.child = &pkt_dev->dst;
3713 pkt_dev->dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003714#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003715
3716 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003717out2:
3718 dev_put(pkt_dev->odev);
3719out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003720#ifdef CONFIG_XFRM
3721 free_SAs(pkt_dev);
3722#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003723 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003724 kfree(pkt_dev);
3725 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726}
3727
Cong Wang4e58a022013-01-28 19:55:53 +00003728static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003730 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003731 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003732 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003734 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3735 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003736 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003737 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003738 return -ENOMEM;
3739 }
3740
Luiz Capitulino222f1802006-03-20 22:16:13 -08003741 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003743
David S. Milleree74baa2007-01-01 20:51:53 -08003744 INIT_LIST_HEAD(&t->if_list);
3745
Cong Wang4e58a022013-01-28 19:55:53 +00003746 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003747 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003748
Eric Dumazet94dcf292011-03-22 16:30:45 -07003749 p = kthread_create_on_node(pktgen_thread_worker,
3750 t,
3751 cpu_to_node(cpu),
3752 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003753 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003754 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003755 list_del(&t->th_list);
3756 kfree(t);
3757 return PTR_ERR(p);
3758 }
3759 kthread_bind(p, cpu);
3760 t->tsk = p;
3761
Cong Wang4e58a022013-01-28 19:55:53 +00003762 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003763 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003764 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003765 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003766 PG_PROC_DIR, t->tsk->comm);
3767 kthread_stop(p);
3768 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003769 kfree(t);
3770 return -EINVAL;
3771 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003772
Cong Wang4e58a022013-01-28 19:55:53 +00003773 t->net = pn;
David S. Milleree74baa2007-01-01 20:51:53 -08003774 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003775 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
3777 return 0;
3778}
3779
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003780/*
3781 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003783static void _rem_dev_from_if_list(struct pktgen_thread *t,
3784 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003786 struct list_head *q, *n;
3787 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003789 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003790 list_for_each_safe(q, n, &t->if_list) {
3791 p = list_entry(q, struct pktgen_dev, list);
3792 if (p == pkt_dev)
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003793 list_del_rcu(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003795 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796}
3797
Luiz Capitulino222f1802006-03-20 22:16:13 -08003798static int pktgen_remove_device(struct pktgen_thread *t,
3799 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003801 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
Luiz Capitulino222f1802006-03-20 22:16:13 -08003803 if (pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003804 pr_warn("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003805 pktgen_stop_device(pkt_dev);
3806 }
3807
3808 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
3810 if (pkt_dev->odev) {
3811 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003812 pkt_dev->odev = NULL;
3813 }
3814
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003815 /* Remove proc before if_list entry, because add_device uses
3816 * list to determine if interface already exist, avoid race
3817 * with proc_create_data() */
Markus Elfringef87c5d2014-11-18 20:10:34 +01003818 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003820 /* And update the thread if_list */
3821 _rem_dev_from_if_list(t, pkt_dev);
3822
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003823#ifdef CONFIG_XFRM
3824 free_SAs(pkt_dev);
3825#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003826 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003827 if (pkt_dev->page)
3828 put_page(pkt_dev->page);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003829 kfree_rcu(pkt_dev, rcu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003830 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831}
3832
Cong Wang4e58a022013-01-28 19:55:53 +00003833static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834{
Cong Wang4e58a022013-01-28 19:55:53 +00003835 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003836 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003837 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003838
Cong Wang4e58a022013-01-28 19:55:53 +00003839 pn->net = net;
3840 INIT_LIST_HEAD(&pn->pktgen_threads);
3841 pn->pktgen_exiting = false;
3842 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3843 if (!pn->proc_dir) {
3844 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003845 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003846 }
Cong Wang4e58a022013-01-28 19:55:53 +00003847 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3848 if (pe == NULL) {
3849 pr_err("cannot create %s procfs entry\n", PGCTRL);
3850 ret = -EINVAL;
3851 goto remove;
3852 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003853
John Hawkes670c02c2005-10-13 09:30:31 -07003854 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003855 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
Cong Wang4e58a022013-01-28 19:55:53 +00003857 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003858 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003859 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003860 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003861 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003862
Cong Wang4e58a022013-01-28 19:55:53 +00003863 if (list_empty(&pn->pktgen_threads)) {
3864 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003865 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003866 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003867 }
3868
Luiz Capitulino222f1802006-03-20 22:16:13 -08003869 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003870
Cong Wang4e58a022013-01-28 19:55:53 +00003871remove_entry:
3872 remove_proc_entry(PGCTRL, pn->proc_dir);
3873remove:
Gao fengece31ff2013-02-18 01:34:56 +00003874 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003875 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876}
3877
Cong Wang4e58a022013-01-28 19:55:53 +00003878static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879{
Cong Wang4e58a022013-01-28 19:55:53 +00003880 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003881 struct pktgen_thread *t;
3882 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003883 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
Luiz Capitulino222f1802006-03-20 22:16:13 -08003885 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003886 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Eric Dumazetc57b5462012-05-09 13:29:51 +00003888 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003889 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003890 mutex_unlock(&pktgen_thread_lock);
3891
3892 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003893 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003894 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003895 kthread_stop(t->tsk);
3896 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Cong Wang4e58a022013-01-28 19:55:53 +00003899 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003900 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003901}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
Cong Wang4e58a022013-01-28 19:55:53 +00003903static struct pernet_operations pg_net_ops = {
3904 .init = pg_net_init,
3905 .exit = pg_net_exit,
3906 .id = &pg_net_id,
3907 .size = sizeof(struct pktgen_net),
3908};
3909
3910static int __init pg_init(void)
3911{
3912 int ret = 0;
3913
3914 pr_info("%s", version);
3915 ret = register_pernet_subsys(&pg_net_ops);
3916 if (ret)
3917 return ret;
3918 ret = register_netdevice_notifier(&pktgen_notifier_block);
3919 if (ret)
3920 unregister_pernet_subsys(&pg_net_ops);
3921
3922 return ret;
3923}
3924
3925static void __exit pg_cleanup(void)
3926{
3927 unregister_netdevice_notifier(&pktgen_notifier_block);
3928 unregister_pernet_subsys(&pg_net_ops);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003929 /* Don't need rcu_barrier() due to use of kfree_rcu() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930}
3931
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932module_init(pg_init);
3933module_exit(pg_cleanup);
3934
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003935MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936MODULE_DESCRIPTION("Packet Generator tool");
3937MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003938MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003940MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003942MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003944MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003946MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");