blob: 294bfcf0ce0eb9a2aba61751a4c517ba11db9a89 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Authors:
4 * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se>
5 * Uppsala University and
6 * Swedish University of Agricultural Sciences
7 *
8 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9 * Ben Greear <greearb@candelatech.com>
Jan Engelhardt96de0e22007-10-19 23:21:04 +020010 * Jens Låås <jens.laas@data.slu.se>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * A tool for loading the network with preconfigurated packets.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090013 * The tool is implemented as a linux module. Parameters are output
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * device, delay (to hard_xmit), number of packets, and whether
15 * to use multiple SKBs or just the same one.
16 * pktgen uses the installed interface's output routine.
17 *
18 * Additional hacking by:
19 *
20 * Jens.Laas@data.slu.se
21 * Improved by ANK. 010120.
22 * Improved by ANK even more. 010212.
23 * MAC address typo fixed. 010417 --ro
24 * Integrated. 020301 --DaveM
25 * Added multiskb option 020301 --DaveM
26 * Scaling of results. 020417--sigurdur@linpro.no
27 * Significant re-work of the module:
28 * * Convert to threaded model to more efficiently be able to transmit
29 * and receive on multiple interfaces at once.
30 * * Converted many counters to __u64 to allow longer runs.
31 * * Allow configuration of ranges, like min/max IP address, MACs,
32 * and UDP-ports, for both source and destination, and can
33 * set to use a random distribution or sequentially walk the range.
34 * * Can now change most values after starting.
35 * * Place 12-byte packet in UDP payload with magic number,
36 * sequence number, and timestamp.
37 * * Add receiver code that detects dropped pkts, re-ordered pkts, and
38 * latencies (with micro-second) precision.
39 * * Add IOCTL interface to easily get counters & configuration.
40 * --Ben Greear <greearb@candelatech.com>
41 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090042 * Renamed multiskb to clone_skb and cleaned up sending core for two distinct
43 * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * as a "fastpath" with a configurable number of clones after alloc's.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090045 * clone_skb=0 means all packets are allocated this also means ranges time
46 * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * clones.
48 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090049 * Also moved to /proc/net/pktgen/
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * --ro
51 *
52 * Sept 10: Fixed threading/locking. Lots of bone-headed and more clever
53 * mistakes. Also merged in DaveM's patch in the -pre6 patch.
54 * --Ben Greear <greearb@candelatech.com>
55 *
56 * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br)
57 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 * 021124 Finished major redesign and rewrite for new functionality.
59 * See Documentation/networking/pktgen.txt for how to use this.
60 *
61 * The new operation:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090062 * For each CPU one thread/process is created at start. This process checks
63 * for running devices in the if_list and sends packets until count is 0 it
64 * also the thread checks the thread->control which is used for inter-process
65 * communication. controlling process "posts" operations to the threads this
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +020066 * way.
67 * The if_list is RCU protected, and the if_lock remains to protect updating
68 * of if_list, from "add_device" as it invoked from userspace (via proc write).
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090070 * By design there should only be *one* "controlling" process. In practice
71 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070073 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090075 * Note when adding devices to a specific CPU there good idea to also assign
76 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * --ro
78 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090079 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * memleak 030710- KJP
81 *
82 * First "ranges" functionality for ipv6 030726 --ro
83 *
84 * Included flow support. 030802 ANK.
85 *
86 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090087 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
89 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
90 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090091 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 * <shemminger@osdl.org> 040923
93 *
Stephen Hemmingerca9f1fd2015-02-14 13:47:54 -050094 * Randy Dunlap fixed u64 printk compiler warning
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 *
96 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
97 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
98 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090099 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
101 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900102 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800104 *
105 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
106 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700107 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
108 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700109 * Fixed src_mac command to set source mac of packet to value specified in
110 * command by Adit Ranadive <adit.262@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000112
113#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#include <linux/sys.h>
116#include <linux/types.h>
117#include <linux/module.h>
118#include <linux/moduleparam.h>
119#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800120#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#include <linux/sched.h>
122#include <linux/slab.h>
123#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#include <linux/unistd.h>
125#include <linux/string.h>
126#include <linux/ptrace.h>
127#include <linux/errno.h>
128#include <linux/ioport.h>
129#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800130#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700131#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700132#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#include <linux/delay.h>
134#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800135#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#include <linux/init.h>
137#include <linux/skbuff.h>
138#include <linux/netdevice.h>
139#include <linux/inet.h>
140#include <linux/inetdevice.h>
141#include <linux/rtnetlink.h>
142#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700143#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#include <linux/in.h>
145#include <linux/ip.h>
146#include <linux/ipv6.h>
147#include <linux/udp.h>
148#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700149#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800151#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800152#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700153#include <linux/prefetch.h>
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800154#include <linux/mmzone.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200155#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#include <net/checksum.h>
157#include <net/ipv6.h>
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200158#include <net/udp.h>
Stephen Rothwell73d94e92013-07-29 16:21:26 +1000159#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700161#ifdef CONFIG_XFRM
162#include <net/xfrm.h>
163#endif
Cong Wang4e58a022013-01-28 19:55:53 +0000164#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#include <asm/byteorder.h>
166#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700167#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000168#include <linux/io.h>
169#include <linux/timex.h>
170#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800172#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Jesper Dangaard Brouer40207262015-05-21 12:16:56 +0200174#define VERSION "2.75"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800176#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800177#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Joe Perchesf9467ea2010-06-21 12:29:14 +0000179#define func_enter() pr_debug("entering %s\n", __func__);
180
Dmitry Safonov6f107c72018-01-18 18:31:35 +0000181#define PKT_FLAGS \
182 pf(IPV6) /* Interface in IPV6 Mode */ \
183 pf(IPSRC_RND) /* IP-Src Random */ \
184 pf(IPDST_RND) /* IP-Dst Random */ \
185 pf(TXSIZE_RND) /* Transmit size is random */ \
186 pf(UDPSRC_RND) /* UDP-Src Random */ \
187 pf(UDPDST_RND) /* UDP-Dst Random */ \
188 pf(UDPCSUM) /* Include UDP checksum */ \
189 pf(NO_TIMESTAMP) /* Don't timestamp packets (default TS) */ \
190 pf(MPLS_RND) /* Random MPLS labels */ \
191 pf(QUEUE_MAP_RND) /* queue map Random */ \
192 pf(QUEUE_MAP_CPU) /* queue map mirrors smp_processor_id() */ \
193 pf(FLOW_SEQ) /* Sequential flows */ \
194 pf(IPSEC) /* ipsec on for flows */ \
195 pf(MACSRC_RND) /* MAC-Src Random */ \
196 pf(MACDST_RND) /* MAC-Dst Random */ \
197 pf(VID_RND) /* Random VLAN ID */ \
198 pf(SVID_RND) /* Random SVLAN ID */ \
199 pf(NODE) /* Node memory alloc*/ \
200
201#define pf(flag) flag##_SHIFT,
202enum pkt_flags {
203 PKT_FLAGS
204};
205#undef pf
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* Device flag bits */
Dmitry Safonov6f107c72018-01-18 18:31:35 +0000208#define pf(flag) static const __u32 F_##flag = (1<<flag##_SHIFT);
209PKT_FLAGS
210#undef pf
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000212#define pf(flag) __stringify(flag),
213static char *pkt_flag_names[] = {
214 PKT_FLAGS
215};
216#undef pf
217
218#define NR_PKT_FLAGS ARRAY_SIZE(pkt_flag_names)
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000221#define T_STOP (1<<0) /* Stop run */
222#define T_RUN (1<<1) /* Start run */
223#define T_REMDEVALL (1<<2) /* Remove all devs */
224#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200226/* Xmit modes */
227#define M_START_XMIT 0 /* Default normal TX */
228#define M_NETIF_RECEIVE 1 /* Inject packets into stack */
John Fastabend0967f242016-07-02 14:12:54 -0700229#define M_QUEUE_XMIT 2 /* Inject packet into qdisc */
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200230
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200231/* If lock -- protects updating of if_list */
Eric Dumazet9a0b1e82016-10-15 17:50:49 +0200232#define if_lock(t) mutex_lock(&(t->if_lock));
233#define if_unlock(t) mutex_unlock(&(t->if_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235/* Used to help with determining the pkts on receive */
236#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700237#define PG_PROC_DIR "pktgen"
238#define PGCTRL "pgctrl"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240#define MAX_CFLOWS 65536
241
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700242#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
243#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
244
Luiz Capitulino222f1802006-03-20 22:16:13 -0800245struct flow_state {
Al Viro252e33462006-11-14 20:48:11 -0800246 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800247 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700248#ifdef CONFIG_XFRM
249 struct xfrm_state *x;
250#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700251 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700254/* flow flag bits */
255#define F_INIT (1<<0) /* flow has been initialized */
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /*
259 * Try to keep frequent/infrequent used vars. separated.
260 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800261 struct proc_dir_entry *entry; /* proc file */
262 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000263 struct list_head list; /* chaining in the thread's run-queue */
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200264 struct rcu_head rcu; /* freed by RCU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000266 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800267
268 /* If min != max, then we will either do a linear iteration, or
269 * we will do a random selection from within the range.
270 */
271 __u32 flags;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200272 int xmit_mode;
Amerigo Wang68bf9f02012-10-09 17:48:17 +0000273 int min_pkt_size;
274 int max_pkt_size;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700275 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800276 int nfrags;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200277 int removal_mark; /* non-zero => the device is marked for
278 * removal by worker thread */
279
Eric Dumazet26ad7872011-01-25 13:26:05 -0800280 struct page *page;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000281 u64 delay; /* nano-seconds */
282
Luiz Capitulino222f1802006-03-20 22:16:13 -0800283 __u64 count; /* Default No packets to send */
284 __u64 sofar; /* How many pkts we've sent so far */
285 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800286 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Luiz Capitulino222f1802006-03-20 22:16:13 -0800288 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Luiz Capitulino222f1802006-03-20 22:16:13 -0800290 __u32 clone_count;
291 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000292 * Or a failed transmit of some sort?
293 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800294 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000295 ktime_t next_tx;
296 ktime_t started_at;
297 ktime_t stopped_at;
298 u64 idle_acc; /* nano-seconds */
299
Luiz Capitulino222f1802006-03-20 22:16:13 -0800300 __u32 seq_num;
301
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000302 int clone_skb; /*
303 * Use multiple SKBs during packet gen.
304 * If this number is greater than 1, then
305 * that many copies of the same packet will be
306 * sent before a new packet is allocated.
307 * If you want to send 1024 identical packets
308 * before creating a new packet,
309 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800310 */
311
312 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
313 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
314 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
315 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
316
317 struct in6_addr in6_saddr;
318 struct in6_addr in6_daddr;
319 struct in6_addr cur_in6_daddr;
320 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800322 struct in6_addr min_in6_daddr;
323 struct in6_addr max_in6_daddr;
324 struct in6_addr min_in6_saddr;
325 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Luiz Capitulino222f1802006-03-20 22:16:13 -0800327 /* If we're doing ranges, random or incremental, then this
328 * defines the min/max for those ranges.
329 */
Al Viro252e33462006-11-14 20:48:11 -0800330 __be32 saddr_min; /* inclusive, source IP address */
331 __be32 saddr_max; /* exclusive, source IP address */
332 __be32 daddr_min; /* inclusive, dest IP address */
333 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Luiz Capitulino222f1802006-03-20 22:16:13 -0800335 __u16 udp_src_min; /* inclusive, source UDP port */
336 __u16 udp_src_max; /* exclusive, source UDP port */
337 __u16 udp_dst_min; /* inclusive, dest UDP port */
338 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700340 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000341 __u8 tos; /* six MSB of (former) IPv4 TOS
342 are for dscp codepoint */
343 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
344 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700345
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800346 /* MPLS */
Eric Dumazet95c96172012-04-15 05:58:06 +0000347 unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800348 __be32 labels[MAX_MPLS_LABELS];
349
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700350 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
351 __u8 vlan_p;
352 __u8 vlan_cfi;
353 __u16 vlan_id; /* 0xffff means no vlan tag */
354
355 __u8 svlan_p;
356 __u8 svlan_cfi;
357 __u16 svlan_id; /* 0xffff means no svlan tag */
358
Luiz Capitulino222f1802006-03-20 22:16:13 -0800359 __u32 src_mac_count; /* How many MACs to iterate through */
360 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Luiz Capitulino222f1802006-03-20 22:16:13 -0800362 unsigned char dst_mac[ETH_ALEN];
363 unsigned char src_mac[ETH_ALEN];
364
365 __u32 cur_dst_mac_offset;
366 __u32 cur_src_mac_offset;
Al Viro252e33462006-11-14 20:48:11 -0800367 __be32 cur_saddr;
368 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700369 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800370 __u16 cur_udp_dst;
371 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700372 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800373 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800374 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800375
376 __u8 hh[14];
377 /* = {
378 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
379
380 We fill in SRC address later
381 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
382 0x08, 0x00
383 };
384 */
385 __u16 pad; /* pad out the hh struct to an even 16 bytes */
386
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000387 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800388 * are transmitting the same one multiple times
389 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000390 struct net_device *odev; /* The out-going device.
391 * Note that the device should have it's
392 * pg_info pointer pointing back to this
393 * device.
394 * Set when the user specifies the out-going
395 * device name (not when the inject is
396 * started as it used to do.)
397 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000398 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct flow_state *flows;
Eric Dumazet95c96172012-04-15 05:58:06 +0000400 unsigned int cflows; /* Concurrent flows (config) */
401 unsigned int lflow; /* Flow length (config) */
402 unsigned int nflows; /* accumulated flows (stats) */
403 unsigned int curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700404
405 u16 queue_map_min;
406 u16 queue_map_max;
John Fastabend9e50e3a2010-11-16 19:12:28 +0000407 __u32 skb_priority; /* skb priority field */
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700408 unsigned int burst; /* number of duplicated packets to burst */
Robert Olssone99b99b2010-03-18 22:44:30 +0000409 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700410
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700411#ifdef CONFIG_XFRM
412 __u8 ipsmode; /* IPSEC mode (config) */
413 __u8 ipsproto; /* IPSEC type (config) */
Fan Dude4aee72014-01-03 11:18:30 +0800414 __u32 spi;
David Millerb6ca8bd2017-11-28 15:45:44 -0500415 struct xfrm_dst xdst;
Fan Ducf93d47e2014-01-03 11:18:31 +0800416 struct dst_ops dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700417#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800418 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419};
420
421struct pktgen_hdr {
Al Viro252e33462006-11-14 20:48:11 -0800422 __be32 pgh_magic;
423 __be32 seq_num;
424 __be32 tv_sec;
425 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426};
427
Cong Wang4e58a022013-01-28 19:55:53 +0000428
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +0300429static unsigned int pg_net_id __read_mostly;
Cong Wang4e58a022013-01-28 19:55:53 +0000430
431struct pktgen_net {
432 struct net *net;
433 struct proc_dir_entry *proc_dir;
434 struct list_head pktgen_threads;
435 bool pktgen_exiting;
436};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438struct pktgen_thread {
Eric Dumazet9a0b1e82016-10-15 17:50:49 +0200439 struct mutex if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800440 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800441 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800442 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800443 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000445 /* Field for thread to receive "posted" events terminate,
446 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800447
448 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int cpu;
450
Luiz Capitulino222f1802006-03-20 22:16:13 -0800451 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700452 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000453 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454};
455
456#define REMOVE 1
457#define FIND 0
458
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000459static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000460 "Packet Generator for packet performance testing. "
461 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Luiz Capitulino222f1802006-03-20 22:16:13 -0800463static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
464static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
465static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800466 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000468static void pktgen_run_all_threads(struct pktgen_net *pn);
469static void pktgen_reset_all_threads(struct pktgen_net *pn);
470static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000471
Luiz Capitulino222f1802006-03-20 22:16:13 -0800472static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000476static int pg_count_d __read_mostly = 1000;
477static int pg_delay_d __read_mostly;
478static int pg_clone_skb_d __read_mostly;
479static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Luiz Capitulino222fa072006-03-20 22:24:27 -0800481static DEFINE_MUTEX(pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static struct notifier_block pktgen_notifier_block = {
484 .notifier_call = pktgen_device_event,
485};
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900488 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 *
490 */
491
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700492static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800493{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000494 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000498static ssize_t pgctrl_write(struct file *file, const char __user *buf,
499 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700501 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000502 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Mathias Krause09455742014-02-21 21:38:35 +0100504 if (!capable(CAP_NET_ADMIN))
505 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Mathias Krause20b0c712014-02-21 21:38:34 +0100507 if (count == 0)
508 return -EINVAL;
509
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700510 if (count > sizeof(data))
511 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Mathias Krause09455742014-02-21 21:38:35 +0100513 if (copy_from_user(data, buf, count))
514 return -EFAULT;
515
Mathias Krause20b0c712014-02-21 21:38:34 +0100516 data[count - 1] = 0; /* Strip trailing '\n' and terminate string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Luiz Capitulino222f1802006-03-20 22:16:13 -0800518 if (!strcmp(data, "stop"))
Cong Wang4e58a022013-01-28 19:55:53 +0000519 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Luiz Capitulino222f1802006-03-20 22:16:13 -0800521 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000522 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800524 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000525 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800526
Luiz Capitulino222f1802006-03-20 22:16:13 -0800527 else
Jesper Dangaard Brouer40207262015-05-21 12:16:56 +0200528 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Mathias Krause09455742014-02-21 21:38:35 +0100530 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700533static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Al Virod9dda782013-03-31 18:16:14 -0400535 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700536}
537
Arjan van de Ven9a321442007-02-12 00:55:35 -0800538static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800539 .open = pgctrl_open,
540 .read = seq_read,
541 .llseek = seq_lseek,
542 .write = pgctrl_write,
543 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700544};
545
546static int pktgen_if_show(struct seq_file *seq, void *v)
547{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000548 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000549 ktime_t stopped;
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000550 unsigned int i;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000551 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Luiz Capitulino222f1802006-03-20 22:16:13 -0800553 seq_printf(seq,
554 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
555 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
556 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Luiz Capitulino222f1802006-03-20 22:16:13 -0800558 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000559 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
560 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000561 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
564 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Robert Olsson45b270f2007-08-28 15:45:55 -0700566 seq_printf(seq,
567 " queue_map_min: %u queue_map_max: %u\n",
568 pkt_dev->queue_map_min,
569 pkt_dev->queue_map_max);
570
John Fastabend9e50e3a2010-11-16 19:12:28 +0000571 if (pkt_dev->skb_priority)
572 seq_printf(seq, " skb_priority: %u\n",
573 pkt_dev->skb_priority);
574
Luiz Capitulino222f1802006-03-20 22:16:13 -0800575 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800576 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000577 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
578 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
579 &pkt_dev->in6_saddr,
580 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
581 &pkt_dev->in6_daddr,
582 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000583 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800584 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000585 " dst_min: %s dst_max: %s\n",
586 pkt_dev->dst_min, pkt_dev->dst_max);
587 seq_printf(seq,
Jesper Dangaard Brouerd079abd2015-05-21 12:16:11 +0200588 " src_min: %s src_max: %s\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000589 pkt_dev->src_min, pkt_dev->src_max);
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700592 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Johannes Berge1749612008-10-27 15:59:26 -0700594 seq_printf(seq, "%pM ",
595 is_zero_ether_addr(pkt_dev->src_mac) ?
596 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Thomas Graf97dc48e2014-05-16 23:28:54 +0200598 seq_puts(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700599 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Luiz Capitulino222f1802006-03-20 22:16:13 -0800601 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000602 " udp_src_min: %d udp_src_max: %d"
603 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800604 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
605 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Luiz Capitulino222f1802006-03-20 22:16:13 -0800607 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800608 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700609 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800611 if (pkt_dev->nr_labels) {
Thomas Graf97dc48e2014-05-16 23:28:54 +0200612 seq_puts(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700613 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800614 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
615 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
616 }
617
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000618 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700619 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000620 pkt_dev->vlan_id, pkt_dev->vlan_p,
621 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700622
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000623 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700624 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000625 pkt_dev->svlan_id, pkt_dev->svlan_p,
626 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700627
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000628 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700629 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700630
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000631 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700632 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700633
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700634 if (pkt_dev->burst > 1)
635 seq_printf(seq, " burst: %d\n", pkt_dev->burst);
636
Robert Olssone99b99b2010-03-18 22:44:30 +0000637 if (pkt_dev->node >= 0)
638 seq_printf(seq, " node: %d\n", pkt_dev->node);
639
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200640 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE)
641 seq_puts(seq, " xmit_mode: netif_receive\n");
John Fastabend0967f242016-07-02 14:12:54 -0700642 else if (pkt_dev->xmit_mode == M_QUEUE_XMIT)
643 seq_puts(seq, " xmit_mode: xmit_queue\n");
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200644
Thomas Graf97dc48e2014-05-16 23:28:54 +0200645 seq_puts(seq, " Flags: ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800646
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000647 for (i = 0; i < NR_PKT_FLAGS; i++) {
648 if (i == F_FLOW_SEQ)
649 if (!pkt_dev->cflows)
650 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000652 if (pkt_dev->flags & (1 << i))
653 seq_printf(seq, "%s ", pkt_flag_names[i]);
654 else if (i == F_FLOW_SEQ)
655 seq_puts(seq, "FLOW_RND ");
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700656
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700657#ifdef CONFIG_XFRM
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000658 if (i == F_IPSEC && pkt_dev->spi)
Fan Du81013282014-01-03 11:18:33 +0800659 seq_printf(seq, "spi:%u", pkt_dev->spi);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700660#endif
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000661 }
Robert Olssone99b99b2010-03-18 22:44:30 +0000662
Luiz Capitulino222f1802006-03-20 22:16:13 -0800663 seq_puts(seq, "\n");
664
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000665 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000666 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000667 idle = pkt_dev->idle_acc;
668 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800669
670 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000671 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800672 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000673 (unsigned long long)pkt_dev->errors);
674
675 seq_printf(seq,
676 " started: %lluus stopped: %lluus idle: %lluus\n",
677 (unsigned long long) ktime_to_us(pkt_dev->started_at),
678 (unsigned long long) ktime_to_us(stopped),
679 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800680
681 seq_printf(seq,
682 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700683 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
684 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000687 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
688 &pkt_dev->cur_in6_saddr,
689 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800690 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000691 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
692 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Luiz Capitulino222f1802006-03-20 22:16:13 -0800694 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700695 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Robert Olsson45b270f2007-08-28 15:45:55 -0700697 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
698
Luiz Capitulino222f1802006-03-20 22:16:13 -0800699 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800702 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200704 seq_puts(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700706 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800709
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000710static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
711 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800712{
713 int i = 0;
714 *num = 0;
715
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700716 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000717 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800718 char c;
719 *num <<= 4;
720 if (get_user(c, &user_buffer[i]))
721 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000722 value = hex_to_bin(c);
723 if (value >= 0)
724 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800725 else
726 break;
727 }
728 return i;
729}
730
Luiz Capitulino222f1802006-03-20 22:16:13 -0800731static int count_trail_chars(const char __user * user_buffer,
732 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 int i;
735
736 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800737 char c;
738 if (get_user(c, &user_buffer[i]))
739 return -EFAULT;
740 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 case '\"':
742 case '\n':
743 case '\r':
744 case '\t':
745 case ' ':
746 case '=':
747 break;
748 default:
749 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752done:
753 return i;
754}
755
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000756static long num_arg(const char __user *user_buffer, unsigned long maxlen,
757 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000759 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800761
Paul Gortmakerd6182222010-10-18 12:14:44 +0000762 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800763 char c;
764 if (get_user(c, &user_buffer[i]))
765 return -EFAULT;
766 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800768 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 } else
770 break;
771 }
772 return i;
773}
774
Luiz Capitulino222f1802006-03-20 22:16:13 -0800775static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000777 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Paul Gortmakerd6182222010-10-18 12:14:44 +0000779 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800780 char c;
781 if (get_user(c, &user_buffer[i]))
782 return -EFAULT;
783 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 case '\"':
785 case '\n':
786 case '\r':
787 case '\t':
788 case ' ':
789 goto done_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 default:
791 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return i;
796}
797
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800798static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
799{
Eric Dumazet95c96172012-04-15 05:58:06 +0000800 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800801 char c;
802 ssize_t i = 0;
803 int len;
804
805 pkt_dev->nr_labels = 0;
806 do {
807 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700808 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800809 if (len <= 0)
810 return len;
811 pkt_dev->labels[n] = htonl(tmp);
812 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
813 pkt_dev->flags |= F_MPLS_RND;
814 i += len;
815 if (get_user(c, &buffer[i]))
816 return -EFAULT;
817 i++;
818 n++;
819 if (n >= MAX_MPLS_LABELS)
820 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700821 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800822
823 pkt_dev->nr_labels = n;
824 return i;
825}
826
Dmitry Safonov52e12d52018-01-18 18:31:37 +0000827static __u32 pktgen_read_flag(const char *f, bool *disable)
828{
829 __u32 i;
830
831 if (f[0] == '!') {
832 *disable = true;
833 f++;
834 }
835
836 for (i = 0; i < NR_PKT_FLAGS; i++) {
837 if (!IS_ENABLED(CONFIG_XFRM) && i == IPSEC_SHIFT)
838 continue;
839
840 /* allow only disabling ipv6 flag */
841 if (!*disable && i == IPV6_SHIFT)
842 continue;
843
844 if (strcmp(f, pkt_flag_names[i]) == 0)
845 return 1 << i;
846 }
847
848 if (strcmp(f, "FLOW_RND") == 0) {
849 *disable = !*disable;
850 return F_FLOW_SEQ;
851 }
852
853 return 0;
854}
855
Luiz Capitulino222f1802006-03-20 22:16:13 -0800856static ssize_t pktgen_if_write(struct file *file,
857 const char __user * user_buffer, size_t count,
858 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Joe Perches8a994a72010-07-12 10:50:23 +0000860 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800861 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000862 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 char name[16], valstr[32];
864 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800865 char *pg_result = NULL;
866 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800868
869 pg_result = &(pkt_dev->result[0]);
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (count < 1) {
Joe Perches294a0b7f2014-09-09 21:17:30 -0700872 pr_warn("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return -EINVAL;
874 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800875
Paul Gortmakerd6182222010-10-18 12:14:44 +0000876 max = count;
877 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800878 if (tmp < 0) {
Joe Perches294a0b7f2014-09-09 21:17:30 -0700879 pr_warn("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800880 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000882 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 /* Read variable name */
885
886 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000887 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800888 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800891 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 return -EFAULT;
893 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800894
895 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800897 if (len < 0)
898 return len;
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 i += len;
901
902 if (debug) {
Arnd Bergmanna870a022018-03-13 21:58:39 +0100903 size_t copy = min_t(size_t, count + 1, 1024);
904 char *tp = strndup_user(user_buffer, copy);
905
906 if (IS_ERR(tp))
907 return PTR_ERR(tp);
908
909 pr_debug("%s,%zu buffer -:%s:-\n", name, count, tp);
Gustavo A. R. Silva29d1df72018-03-14 03:07:27 -0500910 kfree(tp);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 if (!strcmp(name, "min_pkt_size")) {
914 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000915 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800916 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800919 if (value < 14 + 20 + 8)
920 value = 14 + 20 + 8;
921 if (value != pkt_dev->min_pkt_size) {
922 pkt_dev->min_pkt_size = value;
923 pkt_dev->cur_pkt_size = value;
924 }
925 sprintf(pg_result, "OK: min_pkt_size=%u",
926 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return count;
928 }
929
Luiz Capitulino222f1802006-03-20 22:16:13 -0800930 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000932 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800933 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800936 if (value < 14 + 20 + 8)
937 value = 14 + 20 + 8;
938 if (value != pkt_dev->max_pkt_size) {
939 pkt_dev->max_pkt_size = value;
940 pkt_dev->cur_pkt_size = value;
941 }
942 sprintf(pg_result, "OK: max_pkt_size=%u",
943 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return count;
945 }
946
Luiz Capitulino222f1802006-03-20 22:16:13 -0800947 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 if (!strcmp(name, "pkt_size")) {
950 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000951 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800952 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800955 if (value < 14 + 20 + 8)
956 value = 14 + 20 + 8;
957 if (value != pkt_dev->min_pkt_size) {
958 pkt_dev->min_pkt_size = value;
959 pkt_dev->max_pkt_size = value;
960 pkt_dev->cur_pkt_size = value;
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
963 return count;
964 }
965
Luiz Capitulino222f1802006-03-20 22:16:13 -0800966 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000968 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800969 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800972 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 sprintf(pg_result, "OK: debug=%u", debug);
974 return count;
975 }
976
Luiz Capitulino222f1802006-03-20 22:16:13 -0800977 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000979 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800980 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 i += len;
983 pkt_dev->nfrags = value;
984 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
985 return count;
986 }
987 if (!strcmp(name, "delay")) {
988 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000989 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800990 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000993 if (value == 0x7FFFFFFF)
994 pkt_dev->delay = ULLONG_MAX;
995 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000996 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000997
998 sprintf(pg_result, "OK: delay=%llu",
999 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return count;
1001 }
Daniel Turull43d28b62010-06-09 22:49:57 +00001002 if (!strcmp(name, "rate")) {
1003 len = num_arg(&user_buffer[i], 10, &value);
1004 if (len < 0)
1005 return len;
1006
1007 i += len;
1008 if (!value)
1009 return len;
1010 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
1011 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001012 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001013
1014 sprintf(pg_result, "OK: rate=%lu", value);
1015 return count;
1016 }
1017 if (!strcmp(name, "ratep")) {
1018 len = num_arg(&user_buffer[i], 10, &value);
1019 if (len < 0)
1020 return len;
1021
1022 i += len;
1023 if (!value)
1024 return len;
1025 pkt_dev->delay = NSEC_PER_SEC/value;
1026 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001027 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001028
1029 sprintf(pg_result, "OK: rate=%lu", value);
1030 return count;
1031 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001034 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001035 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001038 if (value != pkt_dev->udp_src_min) {
1039 pkt_dev->udp_src_min = value;
1040 pkt_dev->cur_udp_src = value;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1043 return count;
1044 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001045 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001047 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001048 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001051 if (value != pkt_dev->udp_dst_min) {
1052 pkt_dev->udp_dst_min = value;
1053 pkt_dev->cur_udp_dst = value;
1054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1056 return count;
1057 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001058 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001060 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001064 if (value != pkt_dev->udp_src_max) {
1065 pkt_dev->udp_src_max = value;
1066 pkt_dev->cur_udp_src = value;
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1069 return count;
1070 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001071 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001073 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001074 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001077 if (value != pkt_dev->udp_dst_max) {
1078 pkt_dev->udp_dst_max = value;
1079 pkt_dev->cur_udp_dst = value;
1080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1082 return count;
1083 }
1084 if (!strcmp(name, "clone_skb")) {
1085 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001086 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001087 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001088 if ((value > 0) &&
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001089 ((pkt_dev->xmit_mode == M_NETIF_RECEIVE) ||
1090 !(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
Neil Hormand8873312011-07-26 06:05:37 +00001091 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001093 pkt_dev->clone_skb = value;
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1096 return count;
1097 }
1098 if (!strcmp(name, "count")) {
1099 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001100 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001101 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 i += len;
1104 pkt_dev->count = value;
1105 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001106 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return count;
1108 }
1109 if (!strcmp(name, "src_mac_count")) {
1110 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001111 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001112 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 i += len;
1115 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001116 pkt_dev->src_mac_count = value;
1117 pkt_dev->cur_src_mac_offset = 0;
1118 }
1119 sprintf(pg_result, "OK: src_mac_count=%d",
1120 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return count;
1122 }
1123 if (!strcmp(name, "dst_mac_count")) {
1124 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001125 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001126 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 i += len;
1129 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001130 pkt_dev->dst_mac_count = value;
1131 pkt_dev->cur_dst_mac_offset = 0;
1132 }
1133 sprintf(pg_result, "OK: dst_mac_count=%d",
1134 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return count;
1136 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001137 if (!strcmp(name, "burst")) {
1138 len = num_arg(&user_buffer[i], 10, &value);
1139 if (len < 0)
1140 return len;
1141
1142 i += len;
John Fastabend0967f242016-07-02 14:12:54 -07001143 if ((value > 1) &&
1144 ((pkt_dev->xmit_mode == M_QUEUE_XMIT) ||
1145 ((pkt_dev->xmit_mode == M_START_XMIT) &&
1146 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))))
Eric Dumazet52d6c8c2015-02-22 17:03:41 -08001147 return -ENOTSUPP;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001148 pkt_dev->burst = value < 1 ? 1 : value;
1149 sprintf(pg_result, "OK: burst=%d", pkt_dev->burst);
1150 return count;
1151 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001152 if (!strcmp(name, "node")) {
1153 len = num_arg(&user_buffer[i], 10, &value);
1154 if (len < 0)
1155 return len;
1156
1157 i += len;
1158
1159 if (node_possible(value)) {
1160 pkt_dev->node = value;
1161 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001162 if (pkt_dev->page) {
1163 put_page(pkt_dev->page);
1164 pkt_dev->page = NULL;
1165 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001166 }
1167 else
1168 sprintf(pg_result, "ERROR: node not possible");
1169 return count;
1170 }
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001171 if (!strcmp(name, "xmit_mode")) {
1172 char f[32];
1173
1174 memset(f, 0, 32);
1175 len = strn_len(&user_buffer[i], sizeof(f) - 1);
1176 if (len < 0)
1177 return len;
1178
1179 if (copy_from_user(f, &user_buffer[i], len))
1180 return -EFAULT;
1181 i += len;
1182
1183 if (strcmp(f, "start_xmit") == 0) {
1184 pkt_dev->xmit_mode = M_START_XMIT;
1185 } else if (strcmp(f, "netif_receive") == 0) {
1186 /* clone_skb set earlier, not supported in this mode */
1187 if (pkt_dev->clone_skb > 0)
1188 return -ENOTSUPP;
1189
1190 pkt_dev->xmit_mode = M_NETIF_RECEIVE;
Alexei Starovoitov9eea9222015-05-11 15:19:48 -07001191
1192 /* make sure new packet is allocated every time
1193 * pktgen_xmit() is called
1194 */
1195 pkt_dev->last_ok = 1;
1196
1197 /* override clone_skb if user passed default value
1198 * at module loading time
1199 */
1200 pkt_dev->clone_skb = 0;
John Fastabend0967f242016-07-02 14:12:54 -07001201 } else if (strcmp(f, "queue_xmit") == 0) {
1202 pkt_dev->xmit_mode = M_QUEUE_XMIT;
1203 pkt_dev->last_ok = 1;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001204 } else {
1205 sprintf(pg_result,
1206 "xmit_mode -:%s:- unknown\nAvailable modes: %s",
1207 f, "start_xmit, netif_receive\n");
1208 return count;
1209 }
1210 sprintf(pg_result, "OK: xmit_mode=%s", f);
1211 return count;
1212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (!strcmp(name, "flag")) {
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001214 __u32 flag;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001215 char f[32];
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001216 bool disable = false;
1217
Luiz Capitulino222f1802006-03-20 22:16:13 -08001218 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001220 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001221 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (copy_from_user(f, &user_buffer[i], len))
1224 return -EFAULT;
1225 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001226
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001227 flag = pktgen_read_flag(f, &disable);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001228
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001229 if (flag) {
1230 if (disable)
1231 pkt_dev->flags &= ~flag;
1232 else
1233 pkt_dev->flags |= flag;
1234 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001235 sprintf(pg_result,
1236 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1237 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001238 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001239 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
1240 "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
1241 "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001242 "NO_TIMESTAMP, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001243#ifdef CONFIG_XFRM
1244 "IPSEC, "
1245#endif
1246 "NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001247 return count;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1250 return count;
1251 }
1252 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1253 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001254 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001255 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Luiz Capitulino222f1802006-03-20 22:16:13 -08001257 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001259 buf[len] = 0;
1260 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1261 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001262 strcpy(pkt_dev->dst_min, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001263 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1264 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1265 }
1266 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001267 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001268 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1270 return count;
1271 }
1272 if (!strcmp(name, "dst_max")) {
1273 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001274 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001275 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001276
Luiz Capitulino222f1802006-03-20 22:16:13 -08001277 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001279 buf[len] = 0;
1280 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1281 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001282 strcpy(pkt_dev->dst_max, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001283 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1284 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1285 }
1286 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001287 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 i += len;
1289 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1290 return count;
1291 }
1292 if (!strcmp(name, "dst6")) {
1293 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001294 if (len < 0)
1295 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 pkt_dev->flags |= F_IPV6;
1298
Luiz Capitulino222f1802006-03-20 22:16:13 -08001299 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001301 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Amerigo Wangc468fb12012-10-09 17:48:20 +00001303 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001304 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001306 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Luiz Capitulino222f1802006-03-20 22:16:13 -08001308 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001309 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Luiz Capitulino222f1802006-03-20 22:16:13 -08001311 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 sprintf(pg_result, "OK: dst6=%s", buf);
1313 return count;
1314 }
1315 if (!strcmp(name, "dst6_min")) {
1316 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001317 if (len < 0)
1318 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 pkt_dev->flags |= F_IPV6;
1321
Luiz Capitulino222f1802006-03-20 22:16:13 -08001322 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001324 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Amerigo Wangc468fb12012-10-09 17:48:20 +00001326 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001327 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001329 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001330 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001331 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Luiz Capitulino222f1802006-03-20 22:16:13 -08001333 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 sprintf(pg_result, "OK: dst6_min=%s", buf);
1335 return count;
1336 }
1337 if (!strcmp(name, "dst6_max")) {
1338 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001339 if (len < 0)
1340 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 pkt_dev->flags |= F_IPV6;
1343
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Amerigo Wangc468fb12012-10-09 17:48:20 +00001348 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001349 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Luiz Capitulino222f1802006-03-20 22:16:13 -08001351 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001352 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Luiz Capitulino222f1802006-03-20 22:16:13 -08001354 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 sprintf(pg_result, "OK: dst6_max=%s", buf);
1356 return count;
1357 }
1358 if (!strcmp(name, "src6")) {
1359 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001360 if (len < 0)
1361 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 pkt_dev->flags |= F_IPV6;
1364
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;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001367 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Amerigo Wangc468fb12012-10-09 17:48:20 +00001369 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001370 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001372 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Luiz Capitulino222f1802006-03-20 22:16:13 -08001374 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001375 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001376
1377 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 sprintf(pg_result, "OK: src6=%s", buf);
1379 return count;
1380 }
1381 if (!strcmp(name, "src_min")) {
1382 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001383 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001384 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001385
Luiz Capitulino222f1802006-03-20 22:16:13 -08001386 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001388 buf[len] = 0;
1389 if (strcmp(buf, pkt_dev->src_min) != 0) {
1390 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001391 strcpy(pkt_dev->src_min, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001392 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1393 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1394 }
1395 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001396 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 i += len;
1398 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1399 return count;
1400 }
1401 if (!strcmp(name, "src_max")) {
1402 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001403 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001404 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001405
Luiz Capitulino222f1802006-03-20 22:16:13 -08001406 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001408 buf[len] = 0;
1409 if (strcmp(buf, pkt_dev->src_max) != 0) {
1410 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001411 strcpy(pkt_dev->src_max, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001412 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1413 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1414 }
1415 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001416 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 i += len;
1418 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1419 return count;
1420 }
1421 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001423 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001424 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001427 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001430 if (!mac_pton(valstr, pkt_dev->dst_mac))
1431 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001433 ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001434
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001435 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 return count;
1437 }
1438 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001440 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001441 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001444 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001447 if (!mac_pton(valstr, pkt_dev->src_mac))
1448 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001449 /* Set up Src MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001450 ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001451
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001452 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return count;
1454 }
1455
Luiz Capitulino222f1802006-03-20 22:16:13 -08001456 if (!strcmp(name, "clear_counters")) {
1457 pktgen_clear_counters(pkt_dev);
1458 sprintf(pg_result, "OK: Clearing counters.\n");
1459 return count;
1460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 if (!strcmp(name, "flows")) {
1463 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001464 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001465 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 i += len;
1468 if (value > MAX_CFLOWS)
1469 value = MAX_CFLOWS;
1470
1471 pkt_dev->cflows = value;
1472 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1473 return count;
1474 }
Fan Du6bae9192014-01-10 14:39:13 +08001475#ifdef CONFIG_XFRM
Fan Dude4aee72014-01-03 11:18:30 +08001476 if (!strcmp(name, "spi")) {
1477 len = num_arg(&user_buffer[i], 10, &value);
1478 if (len < 0)
1479 return len;
1480
1481 i += len;
1482 pkt_dev->spi = value;
1483 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1484 return count;
1485 }
Fan Du6bae9192014-01-10 14:39:13 +08001486#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (!strcmp(name, "flowlen")) {
1488 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001489 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001490 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 i += len;
1493 pkt_dev->lflow = value;
1494 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1495 return count;
1496 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001497
Robert Olsson45b270f2007-08-28 15:45:55 -07001498 if (!strcmp(name, "queue_map_min")) {
1499 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001500 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001501 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001502
Robert Olsson45b270f2007-08-28 15:45:55 -07001503 i += len;
1504 pkt_dev->queue_map_min = value;
1505 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1506 return count;
1507 }
1508
1509 if (!strcmp(name, "queue_map_max")) {
1510 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001511 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001512 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001513
Robert Olsson45b270f2007-08-28 15:45:55 -07001514 i += len;
1515 pkt_dev->queue_map_max = value;
1516 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1517 return count;
1518 }
1519
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001520 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001521 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001522
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001523 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001524 if (len < 0)
1525 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001526 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001527 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001528 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001529 cnt += sprintf(pg_result + cnt,
1530 "%08x%s", ntohl(pkt_dev->labels[n]),
1531 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001532
1533 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1534 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1535 pkt_dev->svlan_id = 0xffff;
1536
1537 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001538 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001539 }
1540 return count;
1541 }
1542
1543 if (!strcmp(name, "vlan_id")) {
1544 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001545 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001546 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001547
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001548 i += len;
1549 if (value <= 4095) {
1550 pkt_dev->vlan_id = value; /* turn on VLAN */
1551
1552 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001553 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001554
1555 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001556 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001557
1558 pkt_dev->nr_labels = 0; /* turn off MPLS */
1559 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1560 } else {
1561 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1562 pkt_dev->svlan_id = 0xffff;
1563
1564 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001565 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001566 }
1567 return count;
1568 }
1569
1570 if (!strcmp(name, "vlan_p")) {
1571 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001572 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001573 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001574
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001575 i += len;
1576 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1577 pkt_dev->vlan_p = value;
1578 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1579 } else {
1580 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1581 }
1582 return count;
1583 }
1584
1585 if (!strcmp(name, "vlan_cfi")) {
1586 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001587 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001588 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001589
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001590 i += len;
1591 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1592 pkt_dev->vlan_cfi = value;
1593 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1594 } else {
1595 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1596 }
1597 return count;
1598 }
1599
1600 if (!strcmp(name, "svlan_id")) {
1601 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001602 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001603 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001604
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001605 i += len;
1606 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1607 pkt_dev->svlan_id = value; /* turn on SVLAN */
1608
1609 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001610 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001611
1612 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001613 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001614
1615 pkt_dev->nr_labels = 0; /* turn off MPLS */
1616 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1617 } else {
1618 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1619 pkt_dev->svlan_id = 0xffff;
1620
1621 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001622 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001623 }
1624 return count;
1625 }
1626
1627 if (!strcmp(name, "svlan_p")) {
1628 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001629 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001630 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001631
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001632 i += len;
1633 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1634 pkt_dev->svlan_p = value;
1635 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1636 } else {
1637 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1638 }
1639 return count;
1640 }
1641
1642 if (!strcmp(name, "svlan_cfi")) {
1643 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001644 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001645 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001646
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001647 i += len;
1648 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1649 pkt_dev->svlan_cfi = value;
1650 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1651 } else {
1652 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1653 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001654 return count;
1655 }
1656
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001657 if (!strcmp(name, "tos")) {
1658 __u32 tmp_value = 0;
1659 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001660 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001661 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001662
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001663 i += len;
1664 if (len == 2) {
1665 pkt_dev->tos = tmp_value;
1666 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1667 } else {
1668 sprintf(pg_result, "ERROR: tos must be 00-ff");
1669 }
1670 return count;
1671 }
1672
1673 if (!strcmp(name, "traffic_class")) {
1674 __u32 tmp_value = 0;
1675 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001676 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001677 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001678
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001679 i += len;
1680 if (len == 2) {
1681 pkt_dev->traffic_class = tmp_value;
1682 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1683 } else {
1684 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1685 }
1686 return count;
1687 }
1688
John Fastabend9e50e3a2010-11-16 19:12:28 +00001689 if (!strcmp(name, "skb_priority")) {
1690 len = num_arg(&user_buffer[i], 9, &value);
1691 if (len < 0)
1692 return len;
1693
1694 i += len;
1695 pkt_dev->skb_priority = value;
1696 sprintf(pg_result, "OK: skb_priority=%i",
1697 pkt_dev->skb_priority);
1698 return count;
1699 }
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1702 return -EINVAL;
1703}
1704
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001705static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Al Virod9dda782013-03-31 18:16:14 -04001707 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001708}
1709
Arjan van de Ven9a321442007-02-12 00:55:35 -08001710static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001711 .open = pktgen_if_open,
1712 .read = seq_read,
1713 .llseek = seq_lseek,
1714 .write = pktgen_if_write,
1715 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001716};
1717
1718static int pktgen_thread_show(struct seq_file *seq, void *v)
1719{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001720 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001721 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001723 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Thomas Graf97dc48e2014-05-16 23:28:54 +02001725 seq_puts(seq, "Running: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001726
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001727 rcu_read_lock();
1728 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001729 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001730 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Thomas Graf97dc48e2014-05-16 23:28:54 +02001732 seq_puts(seq, "\nStopped: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001733
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001734 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001735 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001736 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001739 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 else
Thomas Graf97dc48e2014-05-16 23:28:54 +02001741 seq_puts(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001743 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001748static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001749 const char __user * user_buffer,
1750 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
Joe Perches8a994a72010-07-12 10:50:23 +00001752 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001753 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001754 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001756 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001759 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return -EINVAL;
1761 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001762
Paul Gortmakerd6182222010-10-18 12:14:44 +00001763 max = count;
1764 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001765 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001766 return len;
1767
Paul Gortmakerd6182222010-10-18 12:14:44 +00001768 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* Read variable name */
1771
1772 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001773 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001774 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 memset(name, 0, sizeof(name));
1777 if (copy_from_user(name, &user_buffer[i], len))
1778 return -EFAULT;
1779 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001780
Luiz Capitulino222f1802006-03-20 22:16:13 -08001781 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001783 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001784 return len;
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 i += len;
1787
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001788 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001789 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Luiz Capitulino222f1802006-03-20 22:16:13 -08001791 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001792 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 ret = -EINVAL;
1794 goto out;
1795 }
1796
1797 pg_result = &(t->result[0]);
1798
Luiz Capitulino222f1802006-03-20 22:16:13 -08001799 if (!strcmp(name, "add_device")) {
1800 char f[32];
1801 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001803 if (len < 0) {
1804 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 goto out;
1806 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001807 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return -EFAULT;
1809 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001810 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001811 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001812 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001813 if (!ret) {
1814 ret = count;
1815 sprintf(pg_result, "OK: add_device=%s", f);
1816 } else
1817 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 goto out;
1819 }
1820
Luiz Capitulino222f1802006-03-20 22:16:13 -08001821 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001822 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001823 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001824 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001825 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001827 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 goto out;
1829 }
1830
Luiz Capitulino222f1802006-03-20 22:16:13 -08001831 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001832 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001833 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 goto out;
1835 }
1836
1837 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001838out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return ret;
1840}
1841
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001842static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Al Virod9dda782013-03-31 18:16:14 -04001844 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
Arjan van de Ven9a321442007-02-12 00:55:35 -08001847static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001848 .open = pktgen_thread_open,
1849 .read = seq_read,
1850 .llseek = seq_lseek,
1851 .write = pktgen_thread_write,
1852 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001853};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001856static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1857 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
1859 struct pktgen_thread *t;
1860 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001861 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Cong Wang4e58a022013-01-28 19:55:53 +00001863 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001864 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001866 if (remove) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001867 pkt_dev->removal_mark = 1;
1868 t->control |= T_REMDEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 break;
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001873 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001876/*
1877 * mark a device for removal
1878 */
Cong Wang4e58a022013-01-28 19:55:53 +00001879static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
1881 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001882 const int max_tries = 10, msec_per_try = 125;
1883 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001884
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001885 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001886 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001887
Luiz Capitulino222f1802006-03-20 22:16:13 -08001888 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001889
Cong Wang4e58a022013-01-28 19:55:53 +00001890 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001891 if (pkt_dev == NULL)
1892 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001893
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001894 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001895 pr_debug("%s: waiting for %s to disappear....\n",
1896 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001897 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001898 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001899
1900 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001901 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1902 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001903 break;
1904 }
1905
1906 }
1907
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001908 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001909}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001910
Cong Wang4e58a022013-01-28 19:55:53 +00001911static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001912{
1913 struct pktgen_thread *t;
1914
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001915 mutex_lock(&pktgen_thread_lock);
1916
Cong Wang4e58a022013-01-28 19:55:53 +00001917 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001918 struct pktgen_dev *pkt_dev;
1919
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001920 if_lock(t);
1921 list_for_each_entry(pkt_dev, &t->if_list, list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001922 if (pkt_dev->odev != dev)
1923 continue;
1924
David Howellsa8ca16e2013-04-12 17:27:28 +01001925 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001926
Alexey Dobriyan29753152009-08-28 23:34:43 -07001927 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001928 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001929 &pktgen_if_fops,
1930 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001931 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001932 pr_err("can't move proc entry for '%s'\n",
1933 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001934 break;
1935 }
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001936 if_unlock(t);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001937 }
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001938 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939}
1940
Luiz Capitulino222f1802006-03-20 22:16:13 -08001941static int pktgen_device_event(struct notifier_block *unused,
1942 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Jiri Pirko351638e2013-05-28 01:30:21 +00001944 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001945 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Cong Wang4e58a022013-01-28 19:55:53 +00001947 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001948 return NOTIFY_DONE;
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 /* It is OK that we do not hold the group lock right now,
1951 * as we run under the RTNL lock.
1952 */
1953
1954 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001955 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001956 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001960 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 return NOTIFY_DONE;
1965}
1966
Cong Wang4e58a022013-01-28 19:55:53 +00001967static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
1968 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001969 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001970{
1971 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00001972 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001973
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001974 for (i = 0; ifname[i] != '@'; i++) {
1975 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001976 break;
1977
1978 b[i] = ifname[i];
1979 }
1980 b[i] = 0;
1981
Cong Wang4e58a022013-01-28 19:55:53 +00001982 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07001983}
1984
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986/* Associate pktgen_dev with a device. */
1987
Cong Wang4e58a022013-01-28 19:55:53 +00001988static int pktgen_setup_dev(const struct pktgen_net *pn,
1989 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001990{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001992 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 if (pkt_dev->odev) {
1996 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001997 pkt_dev->odev = NULL;
1998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Cong Wang4e58a022013-01-28 19:55:53 +00002000 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002002 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002003 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002007 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002008 err = -EINVAL;
2009 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002010 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002011 err = -ENETDOWN;
2012 } else {
2013 pkt_dev->odev = odev;
2014 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002018 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
2021/* Read pkt_dev from the interface and set up internal pktgen_dev
2022 * structure to have the right information to create/send packets
2023 */
2024static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2025{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002026 int ntxq;
2027
Luiz Capitulino222f1802006-03-20 22:16:13 -08002028 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002029 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002030 sprintf(pkt_dev->result,
2031 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2032 return;
2033 }
2034
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002035 /* make sure that we don't pick a non-existing transmit queue */
2036 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002037
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002038 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07002039 pr_warn("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2040 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2041 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002042 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002043 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002044 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07002045 pr_warn("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2046 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2047 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002048 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002049 }
2050
Luiz Capitulino222f1802006-03-20 22:16:13 -08002051 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002053 if (is_zero_ether_addr(pkt_dev->src_mac))
Joe Perches9ea08b12014-01-20 09:52:19 -08002054 ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Luiz Capitulino222f1802006-03-20 22:16:13 -08002056 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08002057 ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Luiz Capitulino222f1802006-03-20 22:16:13 -08002059 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002060 int i, set = 0, err = 1;
2061 struct inet6_dev *idev;
2062
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002063 if (pkt_dev->min_pkt_size == 0) {
2064 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2065 + sizeof(struct udphdr)
2066 + sizeof(struct pktgen_hdr)
2067 + pkt_dev->pkt_overhead;
2068 }
2069
Eric Dumazetdf7e8e22017-11-04 08:27:14 -07002070 for (i = 0; i < sizeof(struct in6_addr); i++)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002071 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 set = 1;
2073 break;
2074 }
2075
Luiz Capitulino222f1802006-03-20 22:16:13 -08002076 if (!set) {
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 /*
2079 * Use linklevel address if unconfigured.
2080 *
2081 * use ipv6_get_lladdr if/when it's get exported
2082 */
2083
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002084 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002085 idev = __in6_dev_get(pkt_dev->odev);
2086 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 struct inet6_ifaddr *ifp;
2088
2089 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002090 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2091 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002092 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002093 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 err = 0;
2095 break;
2096 }
2097 }
2098 read_unlock_bh(&idev->lock);
2099 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002100 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002101 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002102 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002104 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002105 if (pkt_dev->min_pkt_size == 0) {
2106 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2107 + sizeof(struct udphdr)
2108 + sizeof(struct pktgen_hdr)
2109 + pkt_dev->pkt_overhead;
2110 }
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 pkt_dev->saddr_min = 0;
2113 pkt_dev->saddr_max = 0;
2114 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002115
2116 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002119 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (in_dev) {
Florian Westphal2638eb8b2019-05-31 18:27:09 +02002121 const struct in_ifaddr *ifa;
2122
2123 ifa = rcu_dereference(in_dev->ifa_list);
2124 if (ifa) {
2125 pkt_dev->saddr_min = ifa->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 pkt_dev->saddr_max = pkt_dev->saddr_min;
2127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002130 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2132 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2133 }
2134
2135 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2136 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2137 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002138 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002139 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2140 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2141 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2142
Luiz Capitulino222f1802006-03-20 22:16:13 -08002143 pkt_dev->cur_dst_mac_offset = 0;
2144 pkt_dev->cur_src_mac_offset = 0;
2145 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2146 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2147 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2148 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 pkt_dev->nflows = 0;
2150}
2151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002153static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2154{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002155 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002156 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002157 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002158
Sebastian Andrzej Siewiordbc16252019-07-26 20:30:50 +02002159 hrtimer_init_sleeper_on_stack(&t, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002160 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002161
Daniel Turull43d28b62010-06-09 22:49:57 +00002162 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002163 if (remaining <= 0)
2164 goto out;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002165
Daniel Borkmann398f3822012-10-28 08:27:19 +00002166 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002167 if (remaining < 100000) {
2168 /* for small delays (<100us), just loop until limit is reached */
2169 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002170 end_time = ktime_get();
2171 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002172 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002173 do {
2174 set_current_state(TASK_INTERRUPTIBLE);
Thomas Gleixner9dd88132019-07-30 21:16:55 +02002175 hrtimer_sleeper_start_expires(&t, HRTIMER_MODE_ABS);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002176
2177 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002180 hrtimer_cancel(&t.timer);
2181 } while (t.task && pkt_dev->running && !signal_pending(current));
2182 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002183 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002185
2186 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002187out:
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002188 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002189 destroy_hrtimer_on_stack(&t.timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002192static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2193{
Paolo Abeni63d75462016-09-30 16:56:45 +02002194 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002195 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2196 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2197 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2198}
2199
Stephen Hemminger648fda72009-08-27 13:55:07 +00002200static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002201{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002202 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002203}
2204
2205static inline int f_pick(struct pktgen_dev *pkt_dev)
2206{
2207 int flow = pkt_dev->curfl;
2208
2209 if (pkt_dev->flags & F_FLOW_SEQ) {
2210 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2211 /* reset time */
2212 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002213 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002214 pkt_dev->curfl += 1;
2215 if (pkt_dev->curfl >= pkt_dev->cflows)
2216 pkt_dev->curfl = 0; /*reset */
2217 }
2218 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002219 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002220 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002221
Robert Olsson1211a642008-08-05 18:44:26 -07002222 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002223 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002224 pkt_dev->flows[flow].flags = 0;
2225 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002226 }
2227
2228 return pkt_dev->curfl;
2229}
2230
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002231
2232#ifdef CONFIG_XFRM
2233/* If there was already an IPSEC SA, we keep it as is, else
2234 * we go look for it ...
2235*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002236#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002237static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002238{
2239 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002240 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002241 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002242
2243 if (pkt_dev->spi) {
2244 /* We need as quick as possible to find the right SA
2245 * Searching with minimum criteria to archieve this.
2246 */
2247 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2248 } else {
2249 /* slow path: we dont already have xfrm_state */
Steffen Klassert7e652642018-06-12 14:07:07 +02002250 x = xfrm_stateonly_find(pn->net, DUMMY_MARK, 0,
Fan Duc4549972014-01-03 11:18:32 +08002251 (xfrm_address_t *)&pkt_dev->cur_daddr,
2252 (xfrm_address_t *)&pkt_dev->cur_saddr,
2253 AF_INET,
2254 pkt_dev->ipsmode,
2255 pkt_dev->ipsproto, 0);
2256 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002257 if (x) {
2258 pkt_dev->flows[flow].x = x;
2259 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002260 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002261 }
2262
2263 }
2264}
2265#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002266static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2267{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002268
2269 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2270 pkt_dev->cur_queue_map = smp_processor_id();
2271
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002272 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002273 __u16 t;
2274 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002275 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002276 (pkt_dev->queue_map_max -
2277 pkt_dev->queue_map_min + 1)
2278 + pkt_dev->queue_map_min;
2279 } else {
2280 t = pkt_dev->cur_queue_map + 1;
2281 if (t > pkt_dev->queue_map_max)
2282 t = pkt_dev->queue_map_min;
2283 }
2284 pkt_dev->cur_queue_map = t;
2285 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002286 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 -07002287}
2288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289/* Increment/randomize headers according to flags and current values
2290 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2291 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002292static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2293{
2294 __u32 imn;
2295 __u32 imx;
2296 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002298 if (pkt_dev->cflows)
2299 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002302 if (pkt_dev->src_mac_count > 1) {
2303 __u32 mc;
2304 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Luiz Capitulino222f1802006-03-20 22:16:13 -08002306 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002307 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002308 else {
2309 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002310 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002311 pkt_dev->src_mac_count)
2312 pkt_dev->cur_src_mac_offset = 0;
2313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Luiz Capitulino222f1802006-03-20 22:16:13 -08002315 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2316 pkt_dev->hh[11] = tmp;
2317 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2318 pkt_dev->hh[10] = tmp;
2319 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2320 pkt_dev->hh[9] = tmp;
2321 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2322 pkt_dev->hh[8] = tmp;
2323 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2324 pkt_dev->hh[7] = tmp;
2325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Luiz Capitulino222f1802006-03-20 22:16:13 -08002327 /* Deal with Destination MAC */
2328 if (pkt_dev->dst_mac_count > 1) {
2329 __u32 mc;
2330 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Luiz Capitulino222f1802006-03-20 22:16:13 -08002332 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002333 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Luiz Capitulino222f1802006-03-20 22:16:13 -08002335 else {
2336 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002337 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002338 pkt_dev->dst_mac_count) {
2339 pkt_dev->cur_dst_mac_offset = 0;
2340 }
2341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Luiz Capitulino222f1802006-03-20 22:16:13 -08002343 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2344 pkt_dev->hh[5] = tmp;
2345 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2346 pkt_dev->hh[4] = tmp;
2347 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2348 pkt_dev->hh[3] = tmp;
2349 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2350 pkt_dev->hh[2] = tmp;
2351 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2352 pkt_dev->hh[1] = tmp;
2353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002355 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002356 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002357 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002358 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2359 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002360 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002361 htonl(0x000fffff));
2362 }
2363
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002364 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002365 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002366 }
2367
2368 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002369 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002370 }
2371
Luiz Capitulino222f1802006-03-20 22:16:13 -08002372 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2373 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002374 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002375 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2376 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Luiz Capitulino222f1802006-03-20 22:16:13 -08002378 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 pkt_dev->cur_udp_src++;
2380 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2381 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002382 }
2383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Luiz Capitulino222f1802006-03-20 22:16:13 -08002385 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2386 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002387 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002388 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2389 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002390 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002392 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002394 }
2395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397 if (!(pkt_dev->flags & F_IPV6)) {
2398
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002399 imn = ntohl(pkt_dev->saddr_min);
2400 imx = ntohl(pkt_dev->saddr_max);
2401 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002403 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002404 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 else {
2406 t = ntohl(pkt_dev->cur_saddr);
2407 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002408 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
2412 pkt_dev->cur_saddr = htonl(t);
2413 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002414
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002415 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2417 } else {
Al Viro252e33462006-11-14 20:48:11 -08002418 imn = ntohl(pkt_dev->daddr_min);
2419 imx = ntohl(pkt_dev->daddr_max);
2420 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 __u32 t;
Al Viro252e33462006-11-14 20:48:11 -08002422 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 if (pkt_dev->flags & F_IPDST_RND) {
2424
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002425 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002426 t = prandom_u32() %
2427 (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002428 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002429 } while (ipv4_is_loopback(s) ||
2430 ipv4_is_multicast(s) ||
2431 ipv4_is_lbcast(s) ||
2432 ipv4_is_zeronet(s) ||
2433 ipv4_is_local_multicast(s));
Al Viro252e33462006-11-14 20:48:11 -08002434 pkt_dev->cur_daddr = s;
2435 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 t = ntohl(pkt_dev->cur_daddr);
2437 t++;
2438 if (t > imx) {
2439 t = imn;
2440 }
2441 pkt_dev->cur_daddr = htonl(t);
2442 }
2443 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002444 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002445 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002446 pkt_dev->flows[flow].cur_daddr =
2447 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002448#ifdef CONFIG_XFRM
Dmitry Safonov6f107c72018-01-18 18:31:35 +00002449 if (pkt_dev->flags & F_IPSEC)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002450 get_ipsec_sa(pkt_dev, flow);
2451#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 pkt_dev->nflows++;
2453 }
2454 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002455 } else { /* IPV6 * */
2456
Joe Perches06e30412012-10-18 17:55:31 +00002457 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 int i;
2459
2460 /* Only random destinations yet */
2461
Luiz Capitulino222f1802006-03-20 22:16:13 -08002462 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002464 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002465 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2466 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
2470
Luiz Capitulino222f1802006-03-20 22:16:13 -08002471 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2472 __u32 t;
2473 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002474 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002475 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2476 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002477 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002479 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002481 }
2482 pkt_dev->cur_pkt_size = t;
2483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002485 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 pkt_dev->flows[flow].count++;
2488}
2489
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002490
2491#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002492static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d47e2014-01-03 11:18:31 +08002493
2494 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2495};
2496
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002497static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2498{
2499 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2500 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002501 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002502
2503 if (!x)
2504 return 0;
2505 /* XXX: we dont support tunnel mode for now until
2506 * we resolve the dst issue */
Fan Ducf93d47e2014-01-03 11:18:31 +08002507 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002508 return 0;
2509
Fan Ducf93d47e2014-01-03 11:18:31 +08002510 /* But when user specify an valid SPI, transformation
2511 * supports both transport/tunnel mode + ESP/AH type.
2512 */
2513 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
David Millerb6ca8bd2017-11-28 15:45:44 -05002514 skb->_skb_refdst = (unsigned long)&pkt_dev->xdst.u.dst | SKB_DST_NOREF;
Fan Ducf93d47e2014-01-03 11:18:31 +08002515
2516 rcu_read_lock_bh();
Florian Westphal0c620e92019-03-29 21:16:25 +01002517 err = pktgen_xfrm_outer_mode_output(x, skb);
Fan Ducf93d47e2014-01-03 11:18:31 +08002518 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002519 if (err) {
2520 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002521 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002522 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002523 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002524 if (err) {
2525 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002526 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002527 }
Fan Du0af0a412014-01-03 11:18:27 +08002528 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002529 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002530 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002531 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002532error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002533 return err;
2534}
2535
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002536static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002537{
2538 if (pkt_dev->cflows) {
2539 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002540 int i;
2541 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002542 struct xfrm_state *x = pkt_dev->flows[i].x;
2543 if (x) {
2544 xfrm_state_put(x);
2545 pkt_dev->flows[i].x = NULL;
2546 }
2547 }
2548 }
2549}
2550
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002551static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002552 struct sk_buff *skb, __be16 protocol)
2553{
Dmitry Safonov6f107c72018-01-18 18:31:35 +00002554 if (pkt_dev->flags & F_IPSEC) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002555 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2556 int nhead = 0;
2557 if (x) {
Eric Dumazetd4969582015-05-25 16:06:37 -07002558 struct ethhdr *eth;
fan.du38682042013-12-01 16:28:48 +08002559 struct iphdr *iph;
Eric Dumazetd4969582015-05-25 16:06:37 -07002560 int ret;
fan.du38682042013-12-01 16:28:48 +08002561
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002562 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002563 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002564 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2565 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002566 pr_err("Error expanding ipsec packet %d\n",
2567 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002568 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002569 }
2570 }
2571
2572 /* ipsec is not expecting ll header */
2573 skb_pull(skb, ETH_HLEN);
2574 ret = pktgen_output_ipsec(skb, pkt_dev);
2575 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002576 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002577 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002578 }
2579 /* restore ll */
Johannes Bergd58ff352017-06-16 14:29:23 +02002580 eth = skb_push(skb, ETH_HLEN);
Eric Dumazetd4969582015-05-25 16:06:37 -07002581 memcpy(eth, pkt_dev->hh, 2 * ETH_ALEN);
2582 eth->h_proto = protocol;
fan.du38682042013-12-01 16:28:48 +08002583
2584 /* Update IPv4 header len as well as checksum value */
2585 iph = ip_hdr(skb);
2586 iph->tot_len = htons(skb->len - ETH_HLEN);
2587 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002588 }
2589 }
2590 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002591err:
2592 kfree_skb(skb);
2593 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002594}
2595#endif
2596
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002597static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2598{
Eric Dumazet95c96172012-04-15 05:58:06 +00002599 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002600 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002601 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002602
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002603 mpls--;
2604 *mpls |= MPLS_STACK_BOTTOM;
2605}
2606
Al Viro0f37c602006-11-03 03:49:56 -08002607static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2608 unsigned int prio)
2609{
2610 return htons(id | (cfi << 12) | (prio << 13));
2611}
2612
Eric Dumazet26ad7872011-01-25 13:26:05 -08002613static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2614 int datalen)
2615{
Arnd Bergmann7f5d3f22017-11-07 11:38:32 +01002616 struct timespec64 timestamp;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002617 struct pktgen_hdr *pgh;
2618
Johannes Berg4df864c2017-06-16 14:29:21 +02002619 pgh = skb_put(skb, sizeof(*pgh));
Eric Dumazet26ad7872011-01-25 13:26:05 -08002620 datalen -= sizeof(*pgh);
2621
2622 if (pkt_dev->nfrags <= 0) {
Johannes Bergb080db52017-06-16 14:29:19 +02002623 skb_put_zero(skb, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002624 } else {
2625 int frags = pkt_dev->nfrags;
2626 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002627 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002628
2629
2630 if (frags > MAX_SKB_FRAGS)
2631 frags = MAX_SKB_FRAGS;
2632 len = datalen - frags * PAGE_SIZE;
2633 if (len > 0) {
Johannes Bergb080db52017-06-16 14:29:19 +02002634 skb_put_zero(skb, len);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002635 datalen = frags * PAGE_SIZE;
2636 }
2637
2638 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002639 frag_len = (datalen/frags) < PAGE_SIZE ?
2640 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002641 while (datalen > 0) {
2642 if (unlikely(!pkt_dev->page)) {
2643 int node = numa_node_id();
2644
2645 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2646 node = pkt_dev->node;
2647 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2648 if (!pkt_dev->page)
2649 break;
2650 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002651 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002652 skb_frag_set_page(skb, i, pkt_dev->page);
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07002653 skb_frag_off_set(&skb_shinfo(skb)->frags[i], 0);
amit salecha7d36a992011-04-22 16:22:20 +00002654 /*last fragment, fill rest of data*/
2655 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002656 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2657 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002658 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002659 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2660 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2661 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2662 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002663 i++;
2664 skb_shinfo(skb)->nr_frags = i;
2665 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002666 }
2667
2668 /* Stamp the time, and sequence number,
2669 * convert them to network byte order
2670 */
2671 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2672 pgh->seq_num = htonl(pkt_dev->seq_num);
2673
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002674 if (pkt_dev->flags & F_NO_TIMESTAMP) {
2675 pgh->tv_sec = 0;
2676 pgh->tv_usec = 0;
2677 } else {
Arnd Bergmann7f5d3f22017-11-07 11:38:32 +01002678 /*
2679 * pgh->tv_sec wraps in y2106 when interpreted as unsigned
2680 * as done by wireshark, or y2038 when interpreted as signed.
2681 * This is probably harmless, but if anyone wants to improve
2682 * it, we could introduce a variant that puts 64-bit nanoseconds
2683 * into the respective header bytes.
2684 * This would also be slightly faster to read.
2685 */
2686 ktime_get_real_ts64(&timestamp);
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002687 pgh->tv_sec = htonl(timestamp.tv_sec);
Arnd Bergmann7f5d3f22017-11-07 11:38:32 +01002688 pgh->tv_usec = htonl(timestamp.tv_nsec / NSEC_PER_USEC);
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002689 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002690}
2691
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002692static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
Paolo Abeni63d75462016-09-30 16:56:45 +02002693 struct pktgen_dev *pkt_dev)
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002694{
Paolo Abeni63d75462016-09-30 16:56:45 +02002695 unsigned int extralen = LL_RESERVED_SPACE(dev);
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002696 struct sk_buff *skb = NULL;
Paolo Abeni63d75462016-09-30 16:56:45 +02002697 unsigned int size;
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002698
Paolo Abeni63d75462016-09-30 16:56:45 +02002699 size = pkt_dev->cur_pkt_size + 64 + extralen + pkt_dev->pkt_overhead;
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002700 if (pkt_dev->flags & F_NODE) {
2701 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2702
2703 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2704 if (likely(skb)) {
2705 skb_reserve(skb, NET_SKB_PAD);
2706 skb->dev = dev;
2707 }
2708 } else {
2709 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2710 }
John Fastabend3de03592016-01-10 21:38:44 -08002711
Paolo Abeni63d75462016-09-30 16:56:45 +02002712 /* the caller pre-fetches from skb->data and reserves for the mac hdr */
John Fastabend3de03592016-01-10 21:38:44 -08002713 if (likely(skb))
Paolo Abeni63d75462016-09-30 16:56:45 +02002714 skb_reserve(skb, extralen - 16);
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002715
2716 return skb;
2717}
2718
Luiz Capitulino222f1802006-03-20 22:16:13 -08002719static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2720 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
2722 struct sk_buff *skb = NULL;
2723 __u8 *eth;
2724 struct udphdr *udph;
2725 int datalen, iplen;
2726 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002727 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002728 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002729 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2730 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2731 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2732 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002733 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002734
2735 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002736 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002737
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002738 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002739 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002740
Robert Olsson64053be2005-06-26 15:27:10 -07002741 /* Update any of the values, used when we're incrementing various
2742 * fields.
2743 */
2744 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002745 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002746
Paolo Abeni63d75462016-09-30 16:56:45 +02002747 skb = pktgen_alloc_skb(odev, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 if (!skb) {
2749 sprintf(pkt_dev->result, "No memory");
2750 return NULL;
2751 }
2752
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002753 prefetchw(skb->data);
Paolo Abeni63d75462016-09-30 16:56:45 +02002754 skb_reserve(skb, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 /* Reserve for ethernet and IP header */
Johannes Bergd58ff352017-06-16 14:29:23 +02002757 eth = skb_push(skb, 14);
Johannes Berg4df864c2017-06-16 14:29:21 +02002758 mpls = skb_put(skb, pkt_dev->nr_labels * sizeof(__u32));
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002759 if (pkt_dev->nr_labels)
2760 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002761
2762 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002763 if (pkt_dev->svlan_id != 0xffff) {
Johannes Berg4df864c2017-06-16 14:29:21 +02002764 svlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002765 *svlan_tci = build_tci(pkt_dev->svlan_id,
2766 pkt_dev->svlan_cfi,
2767 pkt_dev->svlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002768 svlan_encapsulated_proto = skb_put(skb,
2769 sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002770 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002771 }
Johannes Berg4df864c2017-06-16 14:29:21 +02002772 vlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002773 *vlan_tci = build_tci(pkt_dev->vlan_id,
2774 pkt_dev->vlan_cfi,
2775 pkt_dev->vlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002776 vlan_encapsulated_proto = skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002777 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002778 }
2779
Zhang Shengjuc145aeb2016-02-29 08:21:30 +00002780 skb_reset_mac_header(skb);
Thomas Graf525cebe2013-06-03 11:49:23 +00002781 skb_set_network_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002782 iph = skb_put(skb, sizeof(struct iphdr));
Thomas Graf525cebe2013-06-03 11:49:23 +00002783
2784 skb_set_transport_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002785 udph = skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002786 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002787 skb->priority = pkt_dev->skb_priority;
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002790 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002792 /* Eth + IPh + UDPh + mpls */
2793 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002794 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002795 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 udph->source = htons(pkt_dev->cur_udp_src);
2799 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002800 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002801 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 iph->ihl = 5;
2804 iph->version = 4;
2805 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002806 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002807 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 iph->saddr = pkt_dev->cur_saddr;
2809 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002810 iph->id = htons(pkt_dev->ip_id);
2811 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 iph->frag_off = 0;
2813 iplen = 20 + 8 + datalen;
2814 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002815 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002816 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 skb->dev = odev;
2818 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002819
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002820 pktgen_finalize_skb(pkt_dev, skb, datalen);
2821
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002822 if (!(pkt_dev->flags & F_UDPCSUM)) {
2823 skb->ip_summed = CHECKSUM_NONE;
Tom Herbertc8cd0982015-12-14 11:19:44 -08002824 } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM)) {
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002825 skb->ip_summed = CHECKSUM_PARTIAL;
2826 skb->csum = 0;
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002827 udp4_hwcsum(skb, iph->saddr, iph->daddr);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002828 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002829 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), datalen + 8, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002830
2831 /* add protocol-dependent pseudo-header */
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002832 udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr,
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002833 datalen + 8, IPPROTO_UDP, csum);
2834
2835 if (udph->check == 0)
2836 udph->check = CSUM_MANGLED_0;
2837 }
2838
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002839#ifdef CONFIG_XFRM
2840 if (!process_ipsec(pkt_dev, skb, protocol))
2841 return NULL;
2842#endif
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 return skb;
2845}
2846
Luiz Capitulino222f1802006-03-20 22:16:13 -08002847static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2848 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849{
2850 struct sk_buff *skb = NULL;
2851 __u8 *eth;
2852 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002853 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002855 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002856 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002857 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2858 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2859 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2860 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002861 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002862
2863 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002864 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002865
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002866 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002867 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002868
Robert Olsson64053be2005-06-26 15:27:10 -07002869 /* Update any of the values, used when we're incrementing various
2870 * fields.
2871 */
2872 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002873 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002874
Paolo Abeni63d75462016-09-30 16:56:45 +02002875 skb = pktgen_alloc_skb(odev, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 if (!skb) {
2877 sprintf(pkt_dev->result, "No memory");
2878 return NULL;
2879 }
2880
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002881 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 skb_reserve(skb, 16);
2883
2884 /* Reserve for ethernet and IP header */
Johannes Bergd58ff352017-06-16 14:29:23 +02002885 eth = skb_push(skb, 14);
Johannes Berg4df864c2017-06-16 14:29:21 +02002886 mpls = skb_put(skb, pkt_dev->nr_labels * sizeof(__u32));
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002887 if (pkt_dev->nr_labels)
2888 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002889
2890 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002891 if (pkt_dev->svlan_id != 0xffff) {
Johannes Berg4df864c2017-06-16 14:29:21 +02002892 svlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002893 *svlan_tci = build_tci(pkt_dev->svlan_id,
2894 pkt_dev->svlan_cfi,
2895 pkt_dev->svlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002896 svlan_encapsulated_proto = skb_put(skb,
2897 sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002898 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002899 }
Johannes Berg4df864c2017-06-16 14:29:21 +02002900 vlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002901 *vlan_tci = build_tci(pkt_dev->vlan_id,
2902 pkt_dev->vlan_cfi,
2903 pkt_dev->vlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002904 vlan_encapsulated_proto = skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002905 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002906 }
2907
Zhang Shengjuc145aeb2016-02-29 08:21:30 +00002908 skb_reset_mac_header(skb);
Thomas Graf525cebe2013-06-03 11:49:23 +00002909 skb_set_network_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002910 iph = skb_put(skb, sizeof(struct ipv6hdr));
Thomas Graf525cebe2013-06-03 11:49:23 +00002911
2912 skb_set_transport_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002913 udph = skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002914 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002915 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002918 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002919
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002920 /* Eth + IPh + UDPh + mpls */
2921 datalen = pkt_dev->cur_pkt_size - 14 -
2922 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002923 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002925 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002927 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002930 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 udph->source = htons(pkt_dev->cur_udp_src);
2932 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002933 udph->len = htons(udplen);
2934 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002936 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002938 if (pkt_dev->traffic_class) {
2939 /* Version + traffic class + flow (0) */
Al Viro252e33462006-11-14 20:48:11 -08002940 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002941 }
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 iph->hop_limit = 32;
2944
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002945 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 iph->nexthdr = IPPROTO_UDP;
2947
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002948 iph->daddr = pkt_dev->cur_in6_daddr;
2949 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002951 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 skb->dev = odev;
2953 skb->pkt_type = PACKET_HOST;
2954
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002955 pktgen_finalize_skb(pkt_dev, skb, datalen);
2956
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002957 if (!(pkt_dev->flags & F_UDPCSUM)) {
2958 skb->ip_summed = CHECKSUM_NONE;
Tom Herbertc8cd0982015-12-14 11:19:44 -08002959 } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM)) {
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002960 skb->ip_summed = CHECKSUM_PARTIAL;
2961 skb->csum_start = skb_transport_header(skb) - skb->head;
2962 skb->csum_offset = offsetof(struct udphdr, check);
2963 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2964 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002965 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), udplen, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002966
2967 /* add protocol-dependent pseudo-header */
2968 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2969
2970 if (udph->check == 0)
2971 udph->check = CSUM_MANGLED_0;
2972 }
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 return skb;
2975}
2976
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002977static struct sk_buff *fill_packet(struct net_device *odev,
2978 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002980 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 return fill_packet_ipv6(odev, pkt_dev);
2982 else
2983 return fill_packet_ipv4(odev, pkt_dev);
2984}
2985
Luiz Capitulino222f1802006-03-20 22:16:13 -08002986static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002988 pkt_dev->seq_num = 1;
2989 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002991 pkt_dev->tx_bytes = 0;
2992 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993}
2994
2995/* Set up structure for sending pkts, clear counters */
2996
2997static void pktgen_run(struct pktgen_thread *t)
2998{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002999 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 int started = 0;
3001
Joe Perchesf9467ea2010-06-21 12:29:14 +00003002 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003004 rcu_read_lock();
3005 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
3007 /*
3008 * setup odev and create initial packet.
3009 */
3010 pktgen_setup_inject(pkt_dev);
3011
Luiz Capitulino222f1802006-03-20 22:16:13 -08003012 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 pktgen_clear_counters(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003015 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003016
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003017 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 strcpy(pkt_dev->result, "Starting");
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003020 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003022 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 strcpy(pkt_dev->result, "Error starting");
3024 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003025 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003026 if (started)
3027 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028}
3029
Cong Wang4e58a022013-01-28 19:55:53 +00003030static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003032 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Joe Perchesf9467ea2010-06-21 12:29:14 +00003034 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003036 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003037
Cong Wang4e58a022013-01-28 19:55:53 +00003038 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003039 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003040
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003041 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042}
3043
Stephen Hemminger648fda72009-08-27 13:55:07 +00003044static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003046 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003048 rcu_read_lock();
3049 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
3050 if (pkt_dev->running) {
3051 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003052 return 1;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003053 }
3054 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003055 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056}
3057
Luiz Capitulino222f1802006-03-20 22:16:13 -08003058static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003060 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Paolo Abeni720f1de2019-06-06 15:45:03 +02003062 /* note: 't' will still be around even after the unlock/lock
3063 * cycle because pktgen_thread threads are only cleared at
3064 * net exit
3065 */
3066 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003067 msleep_interruptible(100);
Paolo Abeni720f1de2019-06-06 15:45:03 +02003068 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Luiz Capitulino222f1802006-03-20 22:16:13 -08003070 if (signal_pending(current))
3071 goto signal;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003072 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003073 return 1;
3074signal:
3075 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076}
3077
Cong Wang4e58a022013-01-28 19:55:53 +00003078static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003080 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003082
Paolo Abeni720f1de2019-06-06 15:45:03 +02003083 /* prevent from racing with rmmod */
3084 if (!try_module_get(THIS_MODULE))
3085 return sig;
3086
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003087 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003088
Cong Wang4e58a022013-01-28 19:55:53 +00003089 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003091 if (sig == 0)
3092 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003094
3095 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003096 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003098
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003099 mutex_unlock(&pktgen_thread_lock);
Paolo Abeni720f1de2019-06-06 15:45:03 +02003100 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 return sig;
3102}
3103
Cong Wang4e58a022013-01-28 19:55:53 +00003104static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003106 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Joe Perchesf9467ea2010-06-21 12:29:14 +00003108 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003110 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Cong Wang4e58a022013-01-28 19:55:53 +00003112 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003114
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003115 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003117 /* Propagate thread->control */
3118 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003119
Cong Wang4e58a022013-01-28 19:55:53 +00003120 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121}
3122
Cong Wang4e58a022013-01-28 19:55:53 +00003123static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003124{
3125 struct pktgen_thread *t;
3126
Joe Perchesf9467ea2010-06-21 12:29:14 +00003127 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003128
3129 mutex_lock(&pktgen_thread_lock);
3130
Cong Wang4e58a022013-01-28 19:55:53 +00003131 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003132 t->control |= (T_REMDEVALL);
3133
3134 mutex_unlock(&pktgen_thread_lock);
3135
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003136 /* Propagate thread->control */
3137 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003138
Cong Wang4e58a022013-01-28 19:55:53 +00003139 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003140}
3141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3143{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003144 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003145 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003146 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3147 pkt_dev->started_at);
3148 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Daniel Turull03a14ab2011-03-09 14:11:00 -08003150 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003151 (unsigned long long)ktime_to_us(elapsed),
3152 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3153 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003154 (unsigned long long)pkt_dev->sofar,
3155 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003157 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3158 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Luiz Capitulino222f1802006-03-20 22:16:13 -08003160 bps = pps * 8 * pkt_dev->cur_pkt_size;
3161
3162 mbps = bps;
3163 do_div(mbps, 1000000);
3164 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3165 (unsigned long long)pps,
3166 (unsigned long long)mbps,
3167 (unsigned long long)bps,
3168 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
3171/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003172static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003174 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003175
Luiz Capitulino222f1802006-03-20 22:16:13 -08003176 if (!pkt_dev->running) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07003177 pr_warn("interface: %s is already stopped\n",
3178 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003179 return -EINVAL;
3180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003182 pkt_dev->running = 0;
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003183 kfree_skb(pkt_dev->skb);
3184 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003185 pkt_dev->stopped_at = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003187 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Luiz Capitulino222f1802006-03-20 22:16:13 -08003189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190}
3191
Luiz Capitulino222f1802006-03-20 22:16:13 -08003192static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003194 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003195
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003196 rcu_read_lock();
3197 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003198 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003199 continue;
3200 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003201 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003202 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003203 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003205 rcu_read_unlock();
3206
Luiz Capitulino222f1802006-03-20 22:16:13 -08003207 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208}
3209
Luiz Capitulino222f1802006-03-20 22:16:13 -08003210static void pktgen_stop(struct pktgen_thread *t)
3211{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003212 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
Joe Perchesf9467ea2010-06-21 12:29:14 +00003214 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003216 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003218 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003219 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003222 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223}
3224
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003225/*
3226 * one of our devices needs to be removed - find it
3227 * and remove it
3228 */
3229static void pktgen_rem_one_if(struct pktgen_thread *t)
3230{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003231 struct list_head *q, *n;
3232 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003233
Joe Perchesf9467ea2010-06-21 12:29:14 +00003234 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003235
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003236 list_for_each_safe(q, n, &t->if_list) {
3237 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003238
Luiz Capitulino222f1802006-03-20 22:16:13 -08003239 if (!cur->removal_mark)
3240 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003241
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003242 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003243 cur->skb = NULL;
3244
3245 pktgen_remove_device(t, cur);
3246
3247 break;
3248 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003249}
3250
Luiz Capitulino222f1802006-03-20 22:16:13 -08003251static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003253 struct list_head *q, *n;
3254 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003255
Joe Perchesf9467ea2010-06-21 12:29:14 +00003256 func_enter();
3257
Luiz Capitulino222f1802006-03-20 22:16:13 -08003258 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003259
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003260 list_for_each_safe(q, n, &t->if_list) {
3261 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003262
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003263 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003264 cur->skb = NULL;
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 pktgen_remove_device(t, cur);
3267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268}
3269
Luiz Capitulino222f1802006-03-20 22:16:13 -08003270static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003272 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003273 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274}
3275
Stephen Hemmingeref879792009-09-22 19:41:43 +00003276static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003277{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003278 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003279 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003280 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003281}
3282
Stephen Hemmingeref879792009-09-22 19:41:43 +00003283static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3284{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003285 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003286
Reshetova, Elena63354792017-06-30 13:07:58 +03003287 while (refcount_read(&(pkt_dev->skb->users)) != 1) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003288 if (signal_pending(current))
3289 break;
3290
3291 if (need_resched())
3292 pktgen_resched(pkt_dev);
3293 else
3294 cpu_relax();
3295 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003296 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003297}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003298
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003299static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
Mark Rutland6aa7de02017-10-23 14:07:29 -07003301 unsigned int burst = READ_ONCE(pkt_dev->burst);
Stephen Hemminger00829822008-11-20 20:14:53 -08003302 struct net_device *odev = pkt_dev->odev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003303 struct netdev_queue *txq;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003304 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 int ret;
3306
Stephen Hemmingeref879792009-09-22 19:41:43 +00003307 /* If device is offline, then don't send */
3308 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3309 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003310 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003312
Stephen Hemmingeref879792009-09-22 19:41:43 +00003313 /* This is max DELAY, this has special meaning of
3314 * "never transmit"
3315 */
3316 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003317 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003318 return;
3319 }
3320
3321 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003322 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3323 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3324 /* build a new pkt */
3325 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003326
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003327 pkt_dev->skb = fill_packet(odev, pkt_dev);
3328 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003329 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003330 schedule();
3331 pkt_dev->clone_count--; /* back out increment, OOM */
3332 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003334 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003335 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003337
Stephen Hemmingeref879792009-09-22 19:41:43 +00003338 if (pkt_dev->delay && pkt_dev->last_ok)
3339 spin(pkt_dev, pkt_dev->next_tx);
3340
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003341 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE) {
3342 skb = pkt_dev->skb;
3343 skb->protocol = eth_type_trans(skb, skb->dev);
Reshetova, Elena63354792017-06-30 13:07:58 +03003344 refcount_add(burst, &skb->users);
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003345 local_bh_disable();
3346 do {
3347 ret = netif_receive_skb(skb);
3348 if (ret == NET_RX_DROP)
3349 pkt_dev->errors++;
3350 pkt_dev->sofar++;
3351 pkt_dev->seq_num++;
Reshetova, Elena63354792017-06-30 13:07:58 +03003352 if (refcount_read(&skb->users) != burst) {
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003353 /* skb was queued by rps/rfs or taps,
3354 * so cannot reuse this skb
3355 */
Reshetova, Elena63354792017-06-30 13:07:58 +03003356 WARN_ON(refcount_sub_and_test(burst - 1, &skb->users));
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003357 /* get out of the loop and wait
3358 * until skb is consumed
3359 */
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003360 break;
3361 }
3362 /* skb was 'freed' by stack, so clean few
3363 * bits and reuse it
3364 */
Willem de Bruijna5135bc2017-01-07 17:06:36 -05003365 skb_reset_tc(skb);
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003366 } while (--burst > 0);
3367 goto out; /* Skips xmit_mode M_START_XMIT */
John Fastabend0967f242016-07-02 14:12:54 -07003368 } else if (pkt_dev->xmit_mode == M_QUEUE_XMIT) {
3369 local_bh_disable();
Reshetova, Elena63354792017-06-30 13:07:58 +03003370 refcount_inc(&pkt_dev->skb->users);
John Fastabend0967f242016-07-02 14:12:54 -07003371
3372 ret = dev_queue_xmit(pkt_dev->skb);
3373 switch (ret) {
3374 case NET_XMIT_SUCCESS:
3375 pkt_dev->sofar++;
3376 pkt_dev->seq_num++;
3377 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
3378 break;
3379 case NET_XMIT_DROP:
3380 case NET_XMIT_CN:
3381 /* These are all valid return codes for a qdisc but
3382 * indicate packets are being dropped or will likely
3383 * be dropped soon.
3384 */
3385 case NETDEV_TX_BUSY:
3386 /* qdisc may call dev_hard_start_xmit directly in cases
3387 * where no queues exist e.g. loopback device, virtual
3388 * devices, etc. In this case we need to handle
3389 * NETDEV_TX_ codes.
3390 */
3391 default:
3392 pkt_dev->errors++;
3393 net_info_ratelimited("%s xmit error: %d\n",
3394 pkt_dev->odevname, ret);
3395 break;
3396 }
3397 goto out;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003398 }
3399
Daniel Borkmann10c51b56232014-08-27 11:11:27 +02003400 txq = skb_get_tx_queue(odev, pkt_dev->skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003401
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003402 local_bh_disable();
3403
3404 HARD_TX_LOCK(odev, txq, smp_processor_id());
Stephen Hemmingeref879792009-09-22 19:41:43 +00003405
Daniel Borkmann6f25cd42014-04-07 17:18:30 +02003406 if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) {
Eric Dumazet0835acf2009-09-30 13:03:33 +00003407 pkt_dev->last_ok = 0;
3408 goto unlock;
3409 }
Reshetova, Elena63354792017-06-30 13:07:58 +03003410 refcount_add(burst, &pkt_dev->skb->users);
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003411
3412xmit_more:
3413 ret = netdev_start_xmit(pkt_dev->skb, odev, txq, --burst > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Stephen Hemmingeref879792009-09-22 19:41:43 +00003415 switch (ret) {
3416 case NETDEV_TX_OK:
Stephen Hemmingeref879792009-09-22 19:41:43 +00003417 pkt_dev->last_ok = 1;
3418 pkt_dev->sofar++;
3419 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003420 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003421 if (burst > 0 && !netif_xmit_frozen_or_drv_stopped(txq))
3422 goto xmit_more;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003423 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003424 case NET_XMIT_DROP:
3425 case NET_XMIT_CN:
John Fastabendf466dba2009-12-23 22:02:57 -08003426 /* skb has been consumed */
3427 pkt_dev->errors++;
3428 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003429 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003430 net_info_ratelimited("%s xmit error: %d\n",
3431 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003432 pkt_dev->errors++;
Gustavo A. R. Silvaf91845d2018-09-13 14:03:20 -05003433 /* fall through */
Stephen Hemmingeref879792009-09-22 19:41:43 +00003434 case NETDEV_TX_BUSY:
3435 /* Retry it next time */
Reshetova, Elena63354792017-06-30 13:07:58 +03003436 refcount_dec(&(pkt_dev->skb->users));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003437 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003438 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003439 if (unlikely(burst))
Reshetova, Elena63354792017-06-30 13:07:58 +03003440 WARN_ON(refcount_sub_and_test(burst, &pkt_dev->skb->users));
Eric Dumazet0835acf2009-09-30 13:03:33 +00003441unlock:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003442 HARD_TX_UNLOCK(odev, txq);
3443
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003444out:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003445 local_bh_enable();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003446
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 /* If pkt_dev->count is zero, then run forever */
3448 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003449 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 /* Done with this */
3452 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003453 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003454}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003456/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 * Main loop of the thread goes here
3458 */
3459
David S. Milleree74baa2007-01-01 20:51:53 -08003460static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461{
3462 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003463 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003464 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
David S. Milleree74baa2007-01-01 20:51:53 -08003467 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
3469 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003470 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Joe Perchesf9467ea2010-06-21 12:29:14 +00003472 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003474 set_freezable();
3475
David S. Milleree74baa2007-01-01 20:51:53 -08003476 while (!kthread_should_stop()) {
3477 pkt_dev = next_to_run(t);
3478
Stephen Hemmingeref879792009-09-22 19:41:43 +00003479 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003480 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003481 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003482 wait_event_interruptible_timeout(t->queue,
3483 t->control != 0,
3484 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003485 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003486 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003487 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003488
Stephen Hemmingeref879792009-09-22 19:41:43 +00003489 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 pktgen_xmit(pkt_dev);
3491
Stephen Hemmingeref879792009-09-22 19:41:43 +00003492 if (need_resched())
3493 pktgen_resched(pkt_dev);
3494 else
3495 cpu_relax();
3496 }
3497
Luiz Capitulino222f1802006-03-20 22:16:13 -08003498 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 pktgen_stop(t);
3500 t->control &= ~(T_STOP);
3501 }
3502
Luiz Capitulino222f1802006-03-20 22:16:13 -08003503 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 pktgen_run(t);
3505 t->control &= ~(T_RUN);
3506 }
3507
Luiz Capitulino222f1802006-03-20 22:16:13 -08003508 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003510 t->control &= ~(T_REMDEVALL);
3511 }
3512
Luiz Capitulino222f1802006-03-20 22:16:13 -08003513 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003514 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 t->control &= ~(T_REMDEV);
3516 }
3517
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003518 try_to_freeze();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Joe Perchesf9467ea2010-06-21 12:29:14 +00003521 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003522 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Joe Perchesf9467ea2010-06-21 12:29:14 +00003524 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003525 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Joe Perchesf9467ea2010-06-21 12:29:14 +00003527 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003528 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003529
David S. Milleree74baa2007-01-01 20:51:53 -08003530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531}
3532
Luiz Capitulino222f1802006-03-20 22:16:13 -08003533static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003534 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003536 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003537 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003539 rcu_read_lock();
3540 list_for_each_entry_rcu(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003541 if (strncmp(p->odevname, ifname, len) == 0) {
3542 if (p->odevname[len]) {
3543 if (exact || p->odevname[len] != '@')
3544 continue;
3545 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003546 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003547 break;
3548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003550 rcu_read_unlock();
Joe Perchesf9467ea2010-06-21 12:29:14 +00003551 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003552 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553}
3554
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003555/*
3556 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 */
3558
Luiz Capitulino222f1802006-03-20 22:16:13 -08003559static int add_dev_to_thread(struct pktgen_thread *t,
3560 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561{
3562 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003564 /* This function cannot be called concurrently, as its called
3565 * under pktgen_thread_lock mutex, but it can run from
3566 * userspace on another CPU than the kthread. The if_lock()
3567 * is used here to sync with concurrent instances of
3568 * _rem_dev_from_if_list() invoked via kthread, which is also
3569 * updating the if_list */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003570 if_lock(t);
3571
3572 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003573 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003574 rv = -EBUSY;
3575 goto out;
3576 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 pkt_dev->running = 0;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003579 pkt_dev->pg_thread = t;
3580 list_add_rcu(&pkt_dev->list, &t->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
Luiz Capitulino222f1802006-03-20 22:16:13 -08003582out:
3583 if_unlock(t);
3584 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585}
3586
3587/* Called under thread lock */
3588
Luiz Capitulino222f1802006-03-20 22:16:13 -08003589static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003591 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003592 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003593 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 /* We don't allow a device to be on several threads */
3596
Cong Wang4e58a022013-01-28 19:55:53 +00003597 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003598 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003599 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003600 return -EBUSY;
3601 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003602
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003603 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003604 if (!pkt_dev)
3605 return -ENOMEM;
3606
Eric Dumazet593f63b2009-11-23 01:44:37 +00003607 strcpy(pkt_dev->odevname, ifname);
Kees Cookfd7bece2018-06-12 14:27:52 -07003608 pkt_dev->flows = vzalloc_node(array_size(MAX_CFLOWS,
3609 sizeof(struct flow_state)),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003610 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003611 if (pkt_dev->flows == NULL) {
3612 kfree(pkt_dev);
3613 return -ENOMEM;
3614 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003615
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003616 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003617 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003618 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003619 pkt_dev->count = pg_count_d;
3620 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003621 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003622 pkt_dev->udp_src_max = 9;
3623 pkt_dev->udp_dst_min = 9;
3624 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003625 pkt_dev->vlan_p = 0;
3626 pkt_dev->vlan_cfi = 0;
3627 pkt_dev->vlan_id = 0xffff;
3628 pkt_dev->svlan_p = 0;
3629 pkt_dev->svlan_cfi = 0;
3630 pkt_dev->svlan_id = 0xffff;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003631 pkt_dev->burst = 1;
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08003632 pkt_dev->node = NUMA_NO_NODE;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003633
Cong Wang4e58a022013-01-28 19:55:53 +00003634 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003635 if (err)
3636 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003637 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3638 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003639
Cong Wang4e58a022013-01-28 19:55:53 +00003640 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003641 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003642 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003643 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003644 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003645 err = -EINVAL;
3646 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003647 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003648#ifdef CONFIG_XFRM
3649 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3650 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d47e2014-01-03 11:18:31 +08003651
3652 /* xfrm tunnel mode needs additional dst to extract outter
3653 * ip header protocol/ttl/id field, here creat a phony one.
3654 * instead of looking for a valid rt, which definitely hurting
3655 * performance under such circumstance.
3656 */
3657 pkt_dev->dstops.family = AF_INET;
David Millerb6ca8bd2017-11-28 15:45:44 -05003658 pkt_dev->xdst.u.dst.dev = pkt_dev->odev;
3659 dst_init_metrics(&pkt_dev->xdst.u.dst, pktgen_dst_metrics, false);
3660 pkt_dev->xdst.child = &pkt_dev->xdst.u.dst;
3661 pkt_dev->xdst.u.dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003662#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003663
3664 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003665out2:
3666 dev_put(pkt_dev->odev);
3667out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003668#ifdef CONFIG_XFRM
3669 free_SAs(pkt_dev);
3670#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003671 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003672 kfree(pkt_dev);
3673 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674}
3675
Cong Wang4e58a022013-01-28 19:55:53 +00003676static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003678 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003679 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003680 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003682 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3683 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003684 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003685 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003686 return -ENOMEM;
3687 }
3688
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02003689 mutex_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003691
David S. Milleree74baa2007-01-01 20:51:53 -08003692 INIT_LIST_HEAD(&t->if_list);
3693
Cong Wang4e58a022013-01-28 19:55:53 +00003694 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003695 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003696
Eric Dumazet94dcf292011-03-22 16:30:45 -07003697 p = kthread_create_on_node(pktgen_thread_worker,
3698 t,
3699 cpu_to_node(cpu),
3700 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003701 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003702 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003703 list_del(&t->th_list);
3704 kfree(t);
3705 return PTR_ERR(p);
3706 }
3707 kthread_bind(p, cpu);
3708 t->tsk = p;
3709
Cong Wang4e58a022013-01-28 19:55:53 +00003710 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003711 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003712 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003713 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003714 PG_PROC_DIR, t->tsk->comm);
3715 kthread_stop(p);
3716 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003717 kfree(t);
3718 return -EINVAL;
3719 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003720
Cong Wang4e58a022013-01-28 19:55:53 +00003721 t->net = pn;
Oleg Nesterov1fbe4b462015-07-08 21:42:13 +02003722 get_task_struct(p);
David S. Milleree74baa2007-01-01 20:51:53 -08003723 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003724 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
3726 return 0;
3727}
3728
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003729/*
3730 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003732static void _rem_dev_from_if_list(struct pktgen_thread *t,
3733 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003735 struct list_head *q, *n;
3736 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003738 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003739 list_for_each_safe(q, n, &t->if_list) {
3740 p = list_entry(q, struct pktgen_dev, list);
3741 if (p == pkt_dev)
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003742 list_del_rcu(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003744 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745}
3746
Luiz Capitulino222f1802006-03-20 22:16:13 -08003747static int pktgen_remove_device(struct pktgen_thread *t,
3748 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003750 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Luiz Capitulino222f1802006-03-20 22:16:13 -08003752 if (pkt_dev->running) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07003753 pr_warn("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003754 pktgen_stop_device(pkt_dev);
3755 }
3756
3757 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
3759 if (pkt_dev->odev) {
3760 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003761 pkt_dev->odev = NULL;
3762 }
3763
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003764 /* Remove proc before if_list entry, because add_device uses
3765 * list to determine if interface already exist, avoid race
3766 * with proc_create_data() */
Markus Elfringef87c5d2014-11-18 20:10:34 +01003767 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003769 /* And update the thread if_list */
3770 _rem_dev_from_if_list(t, pkt_dev);
3771
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003772#ifdef CONFIG_XFRM
3773 free_SAs(pkt_dev);
3774#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003775 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003776 if (pkt_dev->page)
3777 put_page(pkt_dev->page);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003778 kfree_rcu(pkt_dev, rcu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780}
3781
Cong Wang4e58a022013-01-28 19:55:53 +00003782static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783{
Cong Wang4e58a022013-01-28 19:55:53 +00003784 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003785 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003786 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003787
Cong Wang4e58a022013-01-28 19:55:53 +00003788 pn->net = net;
3789 INIT_LIST_HEAD(&pn->pktgen_threads);
3790 pn->pktgen_exiting = false;
3791 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3792 if (!pn->proc_dir) {
3793 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003794 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003795 }
Cong Wang4e58a022013-01-28 19:55:53 +00003796 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3797 if (pe == NULL) {
3798 pr_err("cannot create %s procfs entry\n", PGCTRL);
3799 ret = -EINVAL;
3800 goto remove;
3801 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003802
John Hawkes670c02c2005-10-13 09:30:31 -07003803 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003804 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
Cong Wang4e58a022013-01-28 19:55:53 +00003806 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003807 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003808 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003809 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003810 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003811
Cong Wang4e58a022013-01-28 19:55:53 +00003812 if (list_empty(&pn->pktgen_threads)) {
3813 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003814 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003815 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003816 }
3817
Luiz Capitulino222f1802006-03-20 22:16:13 -08003818 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003819
Cong Wang4e58a022013-01-28 19:55:53 +00003820remove_entry:
3821 remove_proc_entry(PGCTRL, pn->proc_dir);
3822remove:
Gao fengece31ff2013-02-18 01:34:56 +00003823 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003824 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825}
3826
Cong Wang4e58a022013-01-28 19:55:53 +00003827static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
Cong Wang4e58a022013-01-28 19:55:53 +00003829 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003830 struct pktgen_thread *t;
3831 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003832 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Luiz Capitulino222f1802006-03-20 22:16:13 -08003834 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003835 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
Eric Dumazetc57b5462012-05-09 13:29:51 +00003837 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003838 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003839 mutex_unlock(&pktgen_thread_lock);
3840
3841 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003842 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003843 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003844 kthread_stop(t->tsk);
Oleg Nesterov1fbe4b462015-07-08 21:42:13 +02003845 put_task_struct(t->tsk);
David S. Milleree74baa2007-01-01 20:51:53 -08003846 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
Cong Wang4e58a022013-01-28 19:55:53 +00003849 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003850 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003851}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Cong Wang4e58a022013-01-28 19:55:53 +00003853static struct pernet_operations pg_net_ops = {
3854 .init = pg_net_init,
3855 .exit = pg_net_exit,
3856 .id = &pg_net_id,
3857 .size = sizeof(struct pktgen_net),
3858};
3859
3860static int __init pg_init(void)
3861{
3862 int ret = 0;
3863
3864 pr_info("%s", version);
3865 ret = register_pernet_subsys(&pg_net_ops);
3866 if (ret)
3867 return ret;
3868 ret = register_netdevice_notifier(&pktgen_notifier_block);
3869 if (ret)
3870 unregister_pernet_subsys(&pg_net_ops);
3871
3872 return ret;
3873}
3874
3875static void __exit pg_cleanup(void)
3876{
3877 unregister_netdevice_notifier(&pktgen_notifier_block);
3878 unregister_pernet_subsys(&pg_net_ops);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003879 /* Don't need rcu_barrier() due to use of kfree_rcu() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880}
3881
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882module_init(pg_init);
3883module_exit(pg_cleanup);
3884
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003885MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886MODULE_DESCRIPTION("Packet Generator tool");
3887MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003888MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003890MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003892MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003894MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003896MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");