blob: 7e258d255e9087a1f493152511651d31d558ef17 [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.
Mauro Carvalho Chehabc1e4535f2020-04-30 18:04:13 +020059 * See Documentation/networking/pktgen.rst for how to use this.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
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);
Yejune Dengcda9de02021-06-07 10:37:41 +0800470static void pktgen_stop_all_threads(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"))
Yejune Dengcda9de02021-06-07 10:37:41 +0800519 pktgen_stop_all_threads(pn);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800520 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000521 pktgen_run_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800522 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000523 pktgen_reset_all_threads(pn);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800524 else
Jesper Dangaard Brouer40207262015-05-21 12:16:56 +0200525 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Mathias Krause09455742014-02-21 21:38:35 +0100527 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700530static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Al Virod9dda782013-03-31 18:16:14 -0400532 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700533}
534
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800535static const struct proc_ops pktgen_proc_ops = {
536 .proc_open = pgctrl_open,
537 .proc_read = seq_read,
538 .proc_lseek = seq_lseek,
539 .proc_write = pgctrl_write,
540 .proc_release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700541};
542
543static int pktgen_if_show(struct seq_file *seq, void *v)
544{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000545 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000546 ktime_t stopped;
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000547 unsigned int i;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000548 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Luiz Capitulino222f1802006-03-20 22:16:13 -0800550 seq_printf(seq,
551 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
552 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
553 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Luiz Capitulino222f1802006-03-20 22:16:13 -0800555 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000556 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
557 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000558 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Luiz Capitulino222f1802006-03-20 22:16:13 -0800560 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
561 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Robert Olsson45b270f2007-08-28 15:45:55 -0700563 seq_printf(seq,
564 " queue_map_min: %u queue_map_max: %u\n",
565 pkt_dev->queue_map_min,
566 pkt_dev->queue_map_max);
567
John Fastabend9e50e3a2010-11-16 19:12:28 +0000568 if (pkt_dev->skb_priority)
569 seq_printf(seq, " skb_priority: %u\n",
570 pkt_dev->skb_priority);
571
Luiz Capitulino222f1802006-03-20 22:16:13 -0800572 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800573 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000574 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
575 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
576 &pkt_dev->in6_saddr,
577 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
578 &pkt_dev->in6_daddr,
579 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000580 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800581 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000582 " dst_min: %s dst_max: %s\n",
583 pkt_dev->dst_min, pkt_dev->dst_max);
584 seq_printf(seq,
Jesper Dangaard Brouerd079abd2015-05-21 12:16:11 +0200585 " src_min: %s src_max: %s\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000586 pkt_dev->src_min, pkt_dev->src_max);
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700589 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Johannes Berge1749612008-10-27 15:59:26 -0700591 seq_printf(seq, "%pM ",
592 is_zero_ether_addr(pkt_dev->src_mac) ?
593 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Thomas Graf97dc48e2014-05-16 23:28:54 +0200595 seq_puts(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700596 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Luiz Capitulino222f1802006-03-20 22:16:13 -0800598 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000599 " udp_src_min: %d udp_src_max: %d"
600 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800601 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
602 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Luiz Capitulino222f1802006-03-20 22:16:13 -0800604 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800605 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700606 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800608 if (pkt_dev->nr_labels) {
Thomas Graf97dc48e2014-05-16 23:28:54 +0200609 seq_puts(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700610 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800611 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
612 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
613 }
614
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000615 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700616 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000617 pkt_dev->vlan_id, pkt_dev->vlan_p,
618 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700619
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000620 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700621 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000622 pkt_dev->svlan_id, pkt_dev->svlan_p,
623 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700624
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000625 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700626 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700627
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000628 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700629 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700630
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700631 if (pkt_dev->burst > 1)
632 seq_printf(seq, " burst: %d\n", pkt_dev->burst);
633
Robert Olssone99b99b2010-03-18 22:44:30 +0000634 if (pkt_dev->node >= 0)
635 seq_printf(seq, " node: %d\n", pkt_dev->node);
636
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200637 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE)
638 seq_puts(seq, " xmit_mode: netif_receive\n");
John Fastabend0967f242016-07-02 14:12:54 -0700639 else if (pkt_dev->xmit_mode == M_QUEUE_XMIT)
640 seq_puts(seq, " xmit_mode: xmit_queue\n");
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200641
Thomas Graf97dc48e2014-05-16 23:28:54 +0200642 seq_puts(seq, " Flags: ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800643
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000644 for (i = 0; i < NR_PKT_FLAGS; i++) {
645 if (i == F_FLOW_SEQ)
646 if (!pkt_dev->cflows)
647 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000649 if (pkt_dev->flags & (1 << i))
650 seq_printf(seq, "%s ", pkt_flag_names[i]);
651 else if (i == F_FLOW_SEQ)
652 seq_puts(seq, "FLOW_RND ");
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700653
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700654#ifdef CONFIG_XFRM
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000655 if (i == F_IPSEC && pkt_dev->spi)
Fan Du81013282014-01-03 11:18:33 +0800656 seq_printf(seq, "spi:%u", pkt_dev->spi);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700657#endif
Dmitry Safonov99c6d3d2018-01-18 18:31:36 +0000658 }
Robert Olssone99b99b2010-03-18 22:44:30 +0000659
Luiz Capitulino222f1802006-03-20 22:16:13 -0800660 seq_puts(seq, "\n");
661
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000662 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000663 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000664 idle = pkt_dev->idle_acc;
665 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800666
667 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000668 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800669 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000670 (unsigned long long)pkt_dev->errors);
671
672 seq_printf(seq,
673 " started: %lluus stopped: %lluus idle: %lluus\n",
674 (unsigned long long) ktime_to_us(pkt_dev->started_at),
675 (unsigned long long) ktime_to_us(stopped),
676 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800677
678 seq_printf(seq,
679 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700680 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
681 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Luiz Capitulino222f1802006-03-20 22:16:13 -0800683 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000684 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
685 &pkt_dev->cur_in6_saddr,
686 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800687 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000688 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
689 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Luiz Capitulino222f1802006-03-20 22:16:13 -0800691 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700692 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Robert Olsson45b270f2007-08-28 15:45:55 -0700694 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
695
Luiz Capitulino222f1802006-03-20 22:16:13 -0800696 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800699 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200701 seq_puts(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700703 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800706
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000707static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
708 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800709{
710 int i = 0;
711 *num = 0;
712
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700713 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000714 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800715 char c;
716 *num <<= 4;
717 if (get_user(c, &user_buffer[i]))
718 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000719 value = hex_to_bin(c);
720 if (value >= 0)
721 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800722 else
723 break;
724 }
725 return i;
726}
727
Luiz Capitulino222f1802006-03-20 22:16:13 -0800728static int count_trail_chars(const char __user * user_buffer,
729 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 int i;
732
733 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800734 char c;
735 if (get_user(c, &user_buffer[i]))
736 return -EFAULT;
737 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 case '\"':
739 case '\n':
740 case '\r':
741 case '\t':
742 case ' ':
743 case '=':
744 break;
745 default:
746 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749done:
750 return i;
751}
752
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000753static long num_arg(const char __user *user_buffer, unsigned long maxlen,
754 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000756 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800758
Paul Gortmakerd6182222010-10-18 12:14:44 +0000759 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800760 char c;
761 if (get_user(c, &user_buffer[i]))
762 return -EFAULT;
763 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800765 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 } else
767 break;
768 }
769 return i;
770}
771
Luiz Capitulino222f1802006-03-20 22:16:13 -0800772static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000774 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Paul Gortmakerd6182222010-10-18 12:14:44 +0000776 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800777 char c;
778 if (get_user(c, &user_buffer[i]))
779 return -EFAULT;
780 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 case '\"':
782 case '\n':
783 case '\r':
784 case '\t':
785 case ' ':
786 goto done_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 default:
788 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return i;
793}
794
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800795static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
796{
Eric Dumazet95c96172012-04-15 05:58:06 +0000797 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800798 char c;
799 ssize_t i = 0;
800 int len;
801
802 pkt_dev->nr_labels = 0;
803 do {
804 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700805 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800806 if (len <= 0)
807 return len;
808 pkt_dev->labels[n] = htonl(tmp);
809 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
810 pkt_dev->flags |= F_MPLS_RND;
811 i += len;
812 if (get_user(c, &buffer[i]))
813 return -EFAULT;
814 i++;
815 n++;
816 if (n >= MAX_MPLS_LABELS)
817 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700818 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800819
820 pkt_dev->nr_labels = n;
821 return i;
822}
823
Dmitry Safonov52e12d52018-01-18 18:31:37 +0000824static __u32 pktgen_read_flag(const char *f, bool *disable)
825{
826 __u32 i;
827
828 if (f[0] == '!') {
829 *disable = true;
830 f++;
831 }
832
833 for (i = 0; i < NR_PKT_FLAGS; i++) {
834 if (!IS_ENABLED(CONFIG_XFRM) && i == IPSEC_SHIFT)
835 continue;
836
837 /* allow only disabling ipv6 flag */
838 if (!*disable && i == IPV6_SHIFT)
839 continue;
840
841 if (strcmp(f, pkt_flag_names[i]) == 0)
842 return 1 << i;
843 }
844
845 if (strcmp(f, "FLOW_RND") == 0) {
846 *disable = !*disable;
847 return F_FLOW_SEQ;
848 }
849
850 return 0;
851}
852
Luiz Capitulino222f1802006-03-20 22:16:13 -0800853static ssize_t pktgen_if_write(struct file *file,
854 const char __user * user_buffer, size_t count,
855 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Joe Perches8a994a72010-07-12 10:50:23 +0000857 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800858 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000859 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 char name[16], valstr[32];
861 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800862 char *pg_result = NULL;
863 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800865
866 pg_result = &(pkt_dev->result[0]);
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (count < 1) {
Joe Perches294a0b7f2014-09-09 21:17:30 -0700869 pr_warn("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return -EINVAL;
871 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800872
Paul Gortmakerd6182222010-10-18 12:14:44 +0000873 max = count;
874 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800875 if (tmp < 0) {
Joe Perches294a0b7f2014-09-09 21:17:30 -0700876 pr_warn("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800877 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000879 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* Read variable name */
882
883 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000884 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800885 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800888 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -EFAULT;
890 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800891
892 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800894 if (len < 0)
895 return len;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 i += len;
898
899 if (debug) {
Arnd Bergmanna870a022018-03-13 21:58:39 +0100900 size_t copy = min_t(size_t, count + 1, 1024);
901 char *tp = strndup_user(user_buffer, copy);
902
903 if (IS_ERR(tp))
904 return PTR_ERR(tp);
905
906 pr_debug("%s,%zu buffer -:%s:-\n", name, count, tp);
Gustavo A. R. Silva29d1df72018-03-14 03:07:27 -0500907 kfree(tp);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 if (!strcmp(name, "min_pkt_size")) {
911 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000912 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800913 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800916 if (value < 14 + 20 + 8)
917 value = 14 + 20 + 8;
918 if (value != pkt_dev->min_pkt_size) {
919 pkt_dev->min_pkt_size = value;
920 pkt_dev->cur_pkt_size = value;
921 }
Ye Bin32be4252020-09-30 09:08:37 +0800922 sprintf(pg_result, "OK: min_pkt_size=%d",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800923 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return count;
925 }
926
Luiz Capitulino222f1802006-03-20 22:16:13 -0800927 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000929 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800930 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800933 if (value < 14 + 20 + 8)
934 value = 14 + 20 + 8;
935 if (value != pkt_dev->max_pkt_size) {
936 pkt_dev->max_pkt_size = value;
937 pkt_dev->cur_pkt_size = value;
938 }
Ye Bin32be4252020-09-30 09:08:37 +0800939 sprintf(pg_result, "OK: max_pkt_size=%d",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800940 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return count;
942 }
943
Luiz Capitulino222f1802006-03-20 22:16:13 -0800944 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 if (!strcmp(name, "pkt_size")) {
947 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000948 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800949 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800952 if (value < 14 + 20 + 8)
953 value = 14 + 20 + 8;
954 if (value != pkt_dev->min_pkt_size) {
955 pkt_dev->min_pkt_size = value;
956 pkt_dev->max_pkt_size = value;
957 pkt_dev->cur_pkt_size = value;
958 }
Ye Bin32be4252020-09-30 09:08:37 +0800959 sprintf(pg_result, "OK: pkt_size=%d", pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return count;
961 }
962
Luiz Capitulino222f1802006-03-20 22:16:13 -0800963 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000965 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800966 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800969 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 sprintf(pg_result, "OK: debug=%u", debug);
971 return count;
972 }
973
Luiz Capitulino222f1802006-03-20 22:16:13 -0800974 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000976 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800977 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 i += len;
980 pkt_dev->nfrags = value;
Ye Bin32be4252020-09-30 09:08:37 +0800981 sprintf(pg_result, "OK: frags=%d", pkt_dev->nfrags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return count;
983 }
984 if (!strcmp(name, "delay")) {
985 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000986 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800987 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000990 if (value == 0x7FFFFFFF)
991 pkt_dev->delay = ULLONG_MAX;
992 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000993 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000994
995 sprintf(pg_result, "OK: delay=%llu",
996 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return count;
998 }
Daniel Turull43d28b62010-06-09 22:49:57 +0000999 if (!strcmp(name, "rate")) {
1000 len = num_arg(&user_buffer[i], 10, &value);
1001 if (len < 0)
1002 return len;
1003
1004 i += len;
1005 if (!value)
1006 return len;
1007 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
1008 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001009 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001010
1011 sprintf(pg_result, "OK: rate=%lu", value);
1012 return count;
1013 }
1014 if (!strcmp(name, "ratep")) {
1015 len = num_arg(&user_buffer[i], 10, &value);
1016 if (len < 0)
1017 return len;
1018
1019 i += len;
1020 if (!value)
1021 return len;
1022 pkt_dev->delay = NSEC_PER_SEC/value;
1023 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001024 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001025
1026 sprintf(pg_result, "OK: rate=%lu", value);
1027 return count;
1028 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001029 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001031 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001035 if (value != pkt_dev->udp_src_min) {
1036 pkt_dev->udp_src_min = value;
1037 pkt_dev->cur_udp_src = value;
1038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1040 return count;
1041 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001042 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001044 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001045 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001048 if (value != pkt_dev->udp_dst_min) {
1049 pkt_dev->udp_dst_min = value;
1050 pkt_dev->cur_udp_dst = value;
1051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1053 return count;
1054 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001055 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001057 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001058 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 if (value != pkt_dev->udp_src_max) {
1062 pkt_dev->udp_src_max = value;
1063 pkt_dev->cur_udp_src = value;
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1066 return count;
1067 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001068 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001070 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001071 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001074 if (value != pkt_dev->udp_dst_max) {
1075 pkt_dev->udp_dst_max = value;
1076 pkt_dev->cur_udp_dst = value;
1077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1079 return count;
1080 }
1081 if (!strcmp(name, "clone_skb")) {
1082 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001083 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001084 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001085 if ((value > 0) &&
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001086 ((pkt_dev->xmit_mode == M_NETIF_RECEIVE) ||
1087 !(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
Neil Hormand8873312011-07-26 06:05:37 +00001088 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001090 pkt_dev->clone_skb = value;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1093 return count;
1094 }
1095 if (!strcmp(name, "count")) {
1096 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001097 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001098 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 i += len;
1101 pkt_dev->count = value;
1102 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001103 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return count;
1105 }
1106 if (!strcmp(name, "src_mac_count")) {
1107 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001108 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001109 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 i += len;
1112 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001113 pkt_dev->src_mac_count = value;
1114 pkt_dev->cur_src_mac_offset = 0;
1115 }
1116 sprintf(pg_result, "OK: src_mac_count=%d",
1117 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return count;
1119 }
1120 if (!strcmp(name, "dst_mac_count")) {
1121 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001122 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001123 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 i += len;
1126 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001127 pkt_dev->dst_mac_count = value;
1128 pkt_dev->cur_dst_mac_offset = 0;
1129 }
1130 sprintf(pg_result, "OK: dst_mac_count=%d",
1131 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return count;
1133 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001134 if (!strcmp(name, "burst")) {
1135 len = num_arg(&user_buffer[i], 10, &value);
1136 if (len < 0)
1137 return len;
1138
1139 i += len;
John Fastabend0967f242016-07-02 14:12:54 -07001140 if ((value > 1) &&
1141 ((pkt_dev->xmit_mode == M_QUEUE_XMIT) ||
1142 ((pkt_dev->xmit_mode == M_START_XMIT) &&
1143 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))))
Eric Dumazet52d6c8c2015-02-22 17:03:41 -08001144 return -ENOTSUPP;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001145 pkt_dev->burst = value < 1 ? 1 : value;
Ye Bin32be4252020-09-30 09:08:37 +08001146 sprintf(pg_result, "OK: burst=%u", pkt_dev->burst);
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001147 return count;
1148 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001149 if (!strcmp(name, "node")) {
1150 len = num_arg(&user_buffer[i], 10, &value);
1151 if (len < 0)
1152 return len;
1153
1154 i += len;
1155
1156 if (node_possible(value)) {
1157 pkt_dev->node = value;
1158 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001159 if (pkt_dev->page) {
1160 put_page(pkt_dev->page);
1161 pkt_dev->page = NULL;
1162 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001163 }
1164 else
1165 sprintf(pg_result, "ERROR: node not possible");
1166 return count;
1167 }
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001168 if (!strcmp(name, "xmit_mode")) {
1169 char f[32];
1170
1171 memset(f, 0, 32);
1172 len = strn_len(&user_buffer[i], sizeof(f) - 1);
1173 if (len < 0)
1174 return len;
1175
1176 if (copy_from_user(f, &user_buffer[i], len))
1177 return -EFAULT;
1178 i += len;
1179
1180 if (strcmp(f, "start_xmit") == 0) {
1181 pkt_dev->xmit_mode = M_START_XMIT;
1182 } else if (strcmp(f, "netif_receive") == 0) {
1183 /* clone_skb set earlier, not supported in this mode */
1184 if (pkt_dev->clone_skb > 0)
1185 return -ENOTSUPP;
1186
1187 pkt_dev->xmit_mode = M_NETIF_RECEIVE;
Alexei Starovoitov9eea9222015-05-11 15:19:48 -07001188
1189 /* make sure new packet is allocated every time
1190 * pktgen_xmit() is called
1191 */
1192 pkt_dev->last_ok = 1;
1193
1194 /* override clone_skb if user passed default value
1195 * at module loading time
1196 */
1197 pkt_dev->clone_skb = 0;
John Fastabend0967f242016-07-02 14:12:54 -07001198 } else if (strcmp(f, "queue_xmit") == 0) {
1199 pkt_dev->xmit_mode = M_QUEUE_XMIT;
1200 pkt_dev->last_ok = 1;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001201 } else {
1202 sprintf(pg_result,
1203 "xmit_mode -:%s:- unknown\nAvailable modes: %s",
1204 f, "start_xmit, netif_receive\n");
1205 return count;
1206 }
1207 sprintf(pg_result, "OK: xmit_mode=%s", f);
1208 return count;
1209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (!strcmp(name, "flag")) {
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001211 __u32 flag;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001212 char f[32];
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001213 bool disable = false;
1214
Luiz Capitulino222f1802006-03-20 22:16:13 -08001215 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001217 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001218 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (copy_from_user(f, &user_buffer[i], len))
1221 return -EFAULT;
1222 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001223
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001224 flag = pktgen_read_flag(f, &disable);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001225
Dmitry Safonov52e12d52018-01-18 18:31:37 +00001226 if (flag) {
1227 if (disable)
1228 pkt_dev->flags &= ~flag;
1229 else
1230 pkt_dev->flags |= flag;
1231 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001232 sprintf(pg_result,
1233 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1234 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001235 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001236 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
1237 "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
1238 "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001239 "NO_TIMESTAMP, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001240#ifdef CONFIG_XFRM
1241 "IPSEC, "
1242#endif
1243 "NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001244 return count;
1245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1247 return count;
1248 }
1249 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1250 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001251 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001252 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Luiz Capitulino222f1802006-03-20 22:16:13 -08001254 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001256 buf[len] = 0;
1257 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1258 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001259 strcpy(pkt_dev->dst_min, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001260 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1261 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1262 }
1263 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001264 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001265 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1267 return count;
1268 }
1269 if (!strcmp(name, "dst_max")) {
1270 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001271 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001272 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001273
Luiz Capitulino222f1802006-03-20 22:16:13 -08001274 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001276 buf[len] = 0;
1277 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1278 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001279 strcpy(pkt_dev->dst_max, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1281 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1282 }
1283 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001284 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 i += len;
1286 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1287 return count;
1288 }
1289 if (!strcmp(name, "dst6")) {
1290 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001291 if (len < 0)
1292 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 pkt_dev->flags |= F_IPV6;
1295
Luiz Capitulino222f1802006-03-20 22:16:13 -08001296 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001298 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Amerigo Wangc468fb12012-10-09 17:48:20 +00001300 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001301 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001303 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Luiz Capitulino222f1802006-03-20 22:16:13 -08001305 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001306 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Luiz Capitulino222f1802006-03-20 22:16:13 -08001308 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 sprintf(pg_result, "OK: dst6=%s", buf);
1310 return count;
1311 }
1312 if (!strcmp(name, "dst6_min")) {
1313 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001314 if (len < 0)
1315 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 pkt_dev->flags |= F_IPV6;
1318
Luiz Capitulino222f1802006-03-20 22:16:13 -08001319 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001321 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Amerigo Wangc468fb12012-10-09 17:48:20 +00001323 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001324 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001326 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001327 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001328 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Luiz Capitulino222f1802006-03-20 22:16:13 -08001330 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 sprintf(pg_result, "OK: dst6_min=%s", buf);
1332 return count;
1333 }
1334 if (!strcmp(name, "dst6_max")) {
1335 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001336 if (len < 0)
1337 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 pkt_dev->flags |= F_IPV6;
1340
Luiz Capitulino222f1802006-03-20 22:16:13 -08001341 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Amerigo Wangc468fb12012-10-09 17:48:20 +00001345 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001346 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Luiz Capitulino222f1802006-03-20 22:16:13 -08001348 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001349 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Luiz Capitulino222f1802006-03-20 22:16:13 -08001351 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 sprintf(pg_result, "OK: dst6_max=%s", buf);
1353 return count;
1354 }
1355 if (!strcmp(name, "src6")) {
1356 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001357 if (len < 0)
1358 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 pkt_dev->flags |= F_IPV6;
1361
Luiz Capitulino222f1802006-03-20 22:16:13 -08001362 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001364 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Amerigo Wangc468fb12012-10-09 17:48:20 +00001366 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001367 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001369 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Luiz Capitulino222f1802006-03-20 22:16:13 -08001371 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001372 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001373
1374 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 sprintf(pg_result, "OK: src6=%s", buf);
1376 return count;
1377 }
1378 if (!strcmp(name, "src_min")) {
1379 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001380 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001381 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001382
Luiz Capitulino222f1802006-03-20 22:16:13 -08001383 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001385 buf[len] = 0;
1386 if (strcmp(buf, pkt_dev->src_min) != 0) {
1387 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001388 strcpy(pkt_dev->src_min, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001389 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1390 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1391 }
1392 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001393 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 i += len;
1395 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1396 return count;
1397 }
1398 if (!strcmp(name, "src_max")) {
1399 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001400 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001401 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001402
Luiz Capitulino222f1802006-03-20 22:16:13 -08001403 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001405 buf[len] = 0;
1406 if (strcmp(buf, pkt_dev->src_max) != 0) {
1407 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
Jakub Kicinskif15f0842018-07-17 14:32:24 -07001408 strcpy(pkt_dev->src_max, buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001409 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1410 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1411 }
1412 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001413 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 i += len;
1415 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1416 return count;
1417 }
1418 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001420 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001421 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001424 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001427 if (!mac_pton(valstr, pkt_dev->dst_mac))
1428 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001430 ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001431
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001432 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return count;
1434 }
1435 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001437 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001438 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001441 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001444 if (!mac_pton(valstr, pkt_dev->src_mac))
1445 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001446 /* Set up Src MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001447 ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001448
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001449 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return count;
1451 }
1452
Luiz Capitulino222f1802006-03-20 22:16:13 -08001453 if (!strcmp(name, "clear_counters")) {
1454 pktgen_clear_counters(pkt_dev);
1455 sprintf(pg_result, "OK: Clearing counters.\n");
1456 return count;
1457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 if (!strcmp(name, "flows")) {
1460 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001461 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001462 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 i += len;
1465 if (value > MAX_CFLOWS)
1466 value = MAX_CFLOWS;
1467
1468 pkt_dev->cflows = value;
1469 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1470 return count;
1471 }
Fan Du6bae9192014-01-10 14:39:13 +08001472#ifdef CONFIG_XFRM
Fan Dude4aee72014-01-03 11:18:30 +08001473 if (!strcmp(name, "spi")) {
1474 len = num_arg(&user_buffer[i], 10, &value);
1475 if (len < 0)
1476 return len;
1477
1478 i += len;
1479 pkt_dev->spi = value;
1480 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1481 return count;
1482 }
Fan Du6bae9192014-01-10 14:39:13 +08001483#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (!strcmp(name, "flowlen")) {
1485 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001486 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001487 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 i += len;
1490 pkt_dev->lflow = value;
1491 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1492 return count;
1493 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001494
Robert Olsson45b270f2007-08-28 15:45:55 -07001495 if (!strcmp(name, "queue_map_min")) {
1496 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001497 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001498 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001499
Robert Olsson45b270f2007-08-28 15:45:55 -07001500 i += len;
1501 pkt_dev->queue_map_min = value;
1502 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1503 return count;
1504 }
1505
1506 if (!strcmp(name, "queue_map_max")) {
1507 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001508 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001509 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001510
Robert Olsson45b270f2007-08-28 15:45:55 -07001511 i += len;
1512 pkt_dev->queue_map_max = value;
1513 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1514 return count;
1515 }
1516
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001517 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001518 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001519
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001520 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001521 if (len < 0)
1522 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001523 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001524 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001525 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001526 cnt += sprintf(pg_result + cnt,
1527 "%08x%s", ntohl(pkt_dev->labels[n]),
1528 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001529
1530 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1531 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1532 pkt_dev->svlan_id = 0xffff;
1533
1534 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001535 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001536 }
1537 return count;
1538 }
1539
1540 if (!strcmp(name, "vlan_id")) {
1541 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001542 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001543 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001544
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001545 i += len;
1546 if (value <= 4095) {
1547 pkt_dev->vlan_id = value; /* turn on VLAN */
1548
1549 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001550 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001551
1552 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001553 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001554
1555 pkt_dev->nr_labels = 0; /* turn off MPLS */
1556 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1557 } else {
1558 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1559 pkt_dev->svlan_id = 0xffff;
1560
1561 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001562 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001563 }
1564 return count;
1565 }
1566
1567 if (!strcmp(name, "vlan_p")) {
1568 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001569 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001570 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001571
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001572 i += len;
1573 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1574 pkt_dev->vlan_p = value;
1575 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1576 } else {
1577 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1578 }
1579 return count;
1580 }
1581
1582 if (!strcmp(name, "vlan_cfi")) {
1583 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001584 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001585 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001586
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001587 i += len;
1588 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1589 pkt_dev->vlan_cfi = value;
1590 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1591 } else {
1592 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1593 }
1594 return count;
1595 }
1596
1597 if (!strcmp(name, "svlan_id")) {
1598 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001599 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001600 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001601
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001602 i += len;
1603 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1604 pkt_dev->svlan_id = value; /* turn on SVLAN */
1605
1606 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001607 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001608
1609 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001610 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001611
1612 pkt_dev->nr_labels = 0; /* turn off MPLS */
1613 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1614 } else {
1615 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1616 pkt_dev->svlan_id = 0xffff;
1617
1618 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001619 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001620 }
1621 return count;
1622 }
1623
1624 if (!strcmp(name, "svlan_p")) {
1625 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001626 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001627 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001628
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001629 i += len;
1630 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1631 pkt_dev->svlan_p = value;
1632 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1633 } else {
1634 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1635 }
1636 return count;
1637 }
1638
1639 if (!strcmp(name, "svlan_cfi")) {
1640 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001641 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001642 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001643
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001644 i += len;
1645 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1646 pkt_dev->svlan_cfi = value;
1647 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1648 } else {
1649 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1650 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001651 return count;
1652 }
1653
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001654 if (!strcmp(name, "tos")) {
1655 __u32 tmp_value = 0;
1656 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001657 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001658 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001659
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001660 i += len;
1661 if (len == 2) {
1662 pkt_dev->tos = tmp_value;
1663 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1664 } else {
1665 sprintf(pg_result, "ERROR: tos must be 00-ff");
1666 }
1667 return count;
1668 }
1669
1670 if (!strcmp(name, "traffic_class")) {
1671 __u32 tmp_value = 0;
1672 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001673 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001674 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001675
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001676 i += len;
1677 if (len == 2) {
1678 pkt_dev->traffic_class = tmp_value;
1679 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1680 } else {
1681 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1682 }
1683 return count;
1684 }
1685
John Fastabend9e50e3a2010-11-16 19:12:28 +00001686 if (!strcmp(name, "skb_priority")) {
1687 len = num_arg(&user_buffer[i], 9, &value);
1688 if (len < 0)
1689 return len;
1690
1691 i += len;
1692 pkt_dev->skb_priority = value;
1693 sprintf(pg_result, "OK: skb_priority=%i",
1694 pkt_dev->skb_priority);
1695 return count;
1696 }
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1699 return -EINVAL;
1700}
1701
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001702static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
Al Virod9dda782013-03-31 18:16:14 -04001704 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001705}
1706
Alexey Dobriyan97a32532020-02-03 17:37:17 -08001707static const struct proc_ops pktgen_if_proc_ops = {
1708 .proc_open = pktgen_if_open,
1709 .proc_read = seq_read,
1710 .proc_lseek = seq_lseek,
1711 .proc_write = pktgen_if_write,
1712 .proc_release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001713};
1714
1715static int pktgen_thread_show(struct seq_file *seq, void *v)
1716{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001717 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001718 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001720 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Thomas Graf97dc48e2014-05-16 23:28:54 +02001722 seq_puts(seq, "Running: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001723
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001724 rcu_read_lock();
1725 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001726 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001727 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Thomas Graf97dc48e2014-05-16 23:28:54 +02001729 seq_puts(seq, "\nStopped: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001730
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001731 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001732 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001733 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001736 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 else
Thomas Graf97dc48e2014-05-16 23:28:54 +02001738 seq_puts(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001740 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001742 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001745static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001746 const char __user * user_buffer,
1747 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
Joe Perches8a994a72010-07-12 10:50:23 +00001749 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001750 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001751 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001753 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001756 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return -EINVAL;
1758 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001759
Paul Gortmakerd6182222010-10-18 12:14:44 +00001760 max = count;
1761 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001762 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001763 return len;
1764
Paul Gortmakerd6182222010-10-18 12:14:44 +00001765 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /* Read variable name */
1768
1769 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001770 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001771 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 memset(name, 0, sizeof(name));
1774 if (copy_from_user(name, &user_buffer[i], len))
1775 return -EFAULT;
1776 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001777
Luiz Capitulino222f1802006-03-20 22:16:13 -08001778 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001780 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001781 return len;
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 i += len;
1784
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001785 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001786 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Luiz Capitulino222f1802006-03-20 22:16:13 -08001788 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001789 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 ret = -EINVAL;
1791 goto out;
1792 }
1793
1794 pg_result = &(t->result[0]);
1795
Luiz Capitulino222f1802006-03-20 22:16:13 -08001796 if (!strcmp(name, "add_device")) {
1797 char f[32];
1798 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001800 if (len < 0) {
1801 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 goto out;
1803 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001804 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return -EFAULT;
1806 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001807 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001808 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001809 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001810 if (!ret) {
1811 ret = count;
1812 sprintf(pg_result, "OK: add_device=%s", f);
1813 } else
1814 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 goto out;
1816 }
1817
Luiz Capitulino222f1802006-03-20 22:16:13 -08001818 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001819 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001820 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001821 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001822 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001824 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 goto out;
1826 }
1827
Luiz Capitulino222f1802006-03-20 22:16:13 -08001828 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001829 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001830 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 goto out;
1832 }
1833
1834 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001835out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return ret;
1837}
1838
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001839static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
Al Virod9dda782013-03-31 18:16:14 -04001841 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
Alexey Dobriyan97a32532020-02-03 17:37:17 -08001844static const struct proc_ops pktgen_thread_proc_ops = {
1845 .proc_open = pktgen_thread_open,
1846 .proc_read = seq_read,
1847 .proc_lseek = seq_lseek,
1848 .proc_write = pktgen_thread_write,
1849 .proc_release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001850};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001853static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1854 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
1856 struct pktgen_thread *t;
1857 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001858 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Cong Wang4e58a022013-01-28 19:55:53 +00001860 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001861 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001863 if (remove) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001864 pkt_dev->removal_mark = 1;
1865 t->control |= T_REMDEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 break;
1868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001870 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001873/*
1874 * mark a device for removal
1875 */
Cong Wang4e58a022013-01-28 19:55:53 +00001876static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
1878 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001879 const int max_tries = 10, msec_per_try = 125;
1880 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001881
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001882 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001883 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001884
Luiz Capitulino222f1802006-03-20 22:16:13 -08001885 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001886
Cong Wang4e58a022013-01-28 19:55:53 +00001887 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001888 if (pkt_dev == NULL)
1889 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001890
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001891 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001892 pr_debug("%s: waiting for %s to disappear....\n",
1893 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001894 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001895 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001896
1897 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001898 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1899 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001900 break;
1901 }
1902
1903 }
1904
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001905 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001906}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001907
Cong Wang4e58a022013-01-28 19:55:53 +00001908static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001909{
1910 struct pktgen_thread *t;
1911
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001912 mutex_lock(&pktgen_thread_lock);
1913
Cong Wang4e58a022013-01-28 19:55:53 +00001914 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001915 struct pktgen_dev *pkt_dev;
1916
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001917 if_lock(t);
1918 list_for_each_entry(pkt_dev, &t->if_list, list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001919 if (pkt_dev->odev != dev)
1920 continue;
1921
David Howellsa8ca16e2013-04-12 17:27:28 +01001922 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001923
Alexey Dobriyan29753152009-08-28 23:34:43 -07001924 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001925 pn->proc_dir,
Alexey Dobriyan97a32532020-02-03 17:37:17 -08001926 &pktgen_if_proc_ops,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001927 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001928 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001929 pr_err("can't move proc entry for '%s'\n",
1930 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001931 break;
1932 }
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001933 if_unlock(t);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001934 }
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02001935 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
Luiz Capitulino222f1802006-03-20 22:16:13 -08001938static int pktgen_device_event(struct notifier_block *unused,
1939 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Jiri Pirko351638e2013-05-28 01:30:21 +00001941 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001942 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Cong Wang4e58a022013-01-28 19:55:53 +00001944 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001945 return NOTIFY_DONE;
1946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /* It is OK that we do not hold the group lock right now,
1948 * as we run under the RTNL lock.
1949 */
1950
1951 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001952 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001953 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001957 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 return NOTIFY_DONE;
1962}
1963
Cong Wang4e58a022013-01-28 19:55:53 +00001964static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
1965 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001966 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001967{
1968 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00001969 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001970
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001971 for (i = 0; ifname[i] != '@'; i++) {
1972 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001973 break;
1974
1975 b[i] = ifname[i];
1976 }
1977 b[i] = 0;
1978
Cong Wang4e58a022013-01-28 19:55:53 +00001979 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07001980}
1981
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983/* Associate pktgen_dev with a device. */
1984
Cong Wang4e58a022013-01-28 19:55:53 +00001985static int pktgen_setup_dev(const struct pktgen_net *pn,
1986 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001987{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001989 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (pkt_dev->odev) {
1993 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001994 pkt_dev->odev = NULL;
1995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Cong Wang4e58a022013-01-28 19:55:53 +00001997 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001999 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002000 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002002
Lukas Wunner1e09e582020-03-10 11:49:46 +01002003 if (odev->type != ARPHRD_ETHER && odev->type != ARPHRD_LOOPBACK) {
2004 pr_err("not an ethernet or loopback device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002005 err = -EINVAL;
2006 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002007 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002008 err = -ENETDOWN;
2009 } else {
2010 pkt_dev->odev = odev;
2011 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002015 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016}
2017
2018/* Read pkt_dev from the interface and set up internal pktgen_dev
2019 * structure to have the right information to create/send packets
2020 */
2021static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2022{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002023 int ntxq;
2024
Luiz Capitulino222f1802006-03-20 22:16:13 -08002025 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002026 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002027 sprintf(pkt_dev->result,
2028 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2029 return;
2030 }
2031
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002032 /* make sure that we don't pick a non-existing transmit queue */
2033 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002034
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002035 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07002036 pr_warn("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2037 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2038 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002039 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002040 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002041 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07002042 pr_warn("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2043 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2044 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002045 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002046 }
2047
Luiz Capitulino222f1802006-03-20 22:16:13 -08002048 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002050 if (is_zero_ether_addr(pkt_dev->src_mac))
Joe Perches9ea08b12014-01-20 09:52:19 -08002051 ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Luiz Capitulino222f1802006-03-20 22:16:13 -08002053 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08002054 ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Luiz Capitulino222f1802006-03-20 22:16:13 -08002056 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002057 int i, set = 0, err = 1;
2058 struct inet6_dev *idev;
2059
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002060 if (pkt_dev->min_pkt_size == 0) {
2061 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2062 + sizeof(struct udphdr)
2063 + sizeof(struct pktgen_hdr)
2064 + pkt_dev->pkt_overhead;
2065 }
2066
Eric Dumazetdf7e8e22017-11-04 08:27:14 -07002067 for (i = 0; i < sizeof(struct in6_addr); i++)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002068 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 set = 1;
2070 break;
2071 }
2072
Luiz Capitulino222f1802006-03-20 22:16:13 -08002073 if (!set) {
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 /*
2076 * Use linklevel address if unconfigured.
2077 *
2078 * use ipv6_get_lladdr if/when it's get exported
2079 */
2080
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002081 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002082 idev = __in6_dev_get(pkt_dev->odev);
2083 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct inet6_ifaddr *ifp;
2085
2086 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002087 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2088 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002089 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002090 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 err = 0;
2092 break;
2093 }
2094 }
2095 read_unlock_bh(&idev->lock);
2096 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002097 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002098 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002099 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002101 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002102 if (pkt_dev->min_pkt_size == 0) {
2103 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2104 + sizeof(struct udphdr)
2105 + sizeof(struct pktgen_hdr)
2106 + pkt_dev->pkt_overhead;
2107 }
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 pkt_dev->saddr_min = 0;
2110 pkt_dev->saddr_max = 0;
2111 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002112
2113 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002116 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 if (in_dev) {
Florian Westphal2638eb8b2019-05-31 18:27:09 +02002118 const struct in_ifaddr *ifa;
2119
2120 ifa = rcu_dereference(in_dev->ifa_list);
2121 if (ifa) {
2122 pkt_dev->saddr_min = ifa->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 pkt_dev->saddr_max = pkt_dev->saddr_min;
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
2126 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002127 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2129 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2130 }
2131
2132 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2133 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2134 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002135 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002136 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2137 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2138 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2139
Luiz Capitulino222f1802006-03-20 22:16:13 -08002140 pkt_dev->cur_dst_mac_offset = 0;
2141 pkt_dev->cur_src_mac_offset = 0;
2142 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2143 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2144 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2145 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 pkt_dev->nflows = 0;
2147}
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002150static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2151{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002152 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002153 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002154 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002155
Sebastian Andrzej Siewiordbc16252019-07-26 20:30:50 +02002156 hrtimer_init_sleeper_on_stack(&t, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002157 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002158
Daniel Turull43d28b62010-06-09 22:49:57 +00002159 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002160 if (remaining <= 0)
2161 goto out;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002162
Daniel Borkmann398f3822012-10-28 08:27:19 +00002163 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002164 if (remaining < 100000) {
2165 /* for small delays (<100us), just loop until limit is reached */
2166 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002167 end_time = ktime_get();
2168 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002169 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002170 do {
2171 set_current_state(TASK_INTERRUPTIBLE);
Thomas Gleixner9dd88132019-07-30 21:16:55 +02002172 hrtimer_sleeper_start_expires(&t, HRTIMER_MODE_ABS);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002173
2174 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002177 hrtimer_cancel(&t.timer);
2178 } while (t.task && pkt_dev->running && !signal_pending(current));
2179 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002180 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002182
2183 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002184out:
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002185 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002186 destroy_hrtimer_on_stack(&t.timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002189static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2190{
Paolo Abeni63d75462016-09-30 16:56:45 +02002191 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002192 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2193 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2194 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2195}
2196
Stephen Hemminger648fda72009-08-27 13:55:07 +00002197static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002198{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002199 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002200}
2201
2202static inline int f_pick(struct pktgen_dev *pkt_dev)
2203{
2204 int flow = pkt_dev->curfl;
2205
2206 if (pkt_dev->flags & F_FLOW_SEQ) {
2207 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2208 /* reset time */
2209 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002210 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002211 pkt_dev->curfl += 1;
2212 if (pkt_dev->curfl >= pkt_dev->cflows)
2213 pkt_dev->curfl = 0; /*reset */
2214 }
2215 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002216 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002217 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002218
Robert Olsson1211a642008-08-05 18:44:26 -07002219 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002220 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002221 pkt_dev->flows[flow].flags = 0;
2222 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002223 }
2224
2225 return pkt_dev->curfl;
2226}
2227
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002228
2229#ifdef CONFIG_XFRM
2230/* If there was already an IPSEC SA, we keep it as is, else
2231 * we go look for it ...
2232*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002233#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002234static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002235{
2236 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002237 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002238 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002239
2240 if (pkt_dev->spi) {
2241 /* We need as quick as possible to find the right SA
2242 * Searching with minimum criteria to archieve this.
2243 */
2244 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2245 } else {
2246 /* slow path: we dont already have xfrm_state */
Steffen Klassert7e652642018-06-12 14:07:07 +02002247 x = xfrm_stateonly_find(pn->net, DUMMY_MARK, 0,
Fan Duc4549972014-01-03 11:18:32 +08002248 (xfrm_address_t *)&pkt_dev->cur_daddr,
2249 (xfrm_address_t *)&pkt_dev->cur_saddr,
2250 AF_INET,
2251 pkt_dev->ipsmode,
2252 pkt_dev->ipsproto, 0);
2253 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002254 if (x) {
2255 pkt_dev->flows[flow].x = x;
2256 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002257 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002258 }
2259
2260 }
2261}
2262#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002263static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2264{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002265
2266 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2267 pkt_dev->cur_queue_map = smp_processor_id();
2268
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002269 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002270 __u16 t;
2271 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002272 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002273 (pkt_dev->queue_map_max -
2274 pkt_dev->queue_map_min + 1)
2275 + pkt_dev->queue_map_min;
2276 } else {
2277 t = pkt_dev->cur_queue_map + 1;
2278 if (t > pkt_dev->queue_map_max)
2279 t = pkt_dev->queue_map_min;
2280 }
2281 pkt_dev->cur_queue_map = t;
2282 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002283 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 -07002284}
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286/* Increment/randomize headers according to flags and current values
2287 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2288 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002289static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2290{
2291 __u32 imn;
2292 __u32 imx;
2293 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002295 if (pkt_dev->cflows)
2296 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002299 if (pkt_dev->src_mac_count > 1) {
2300 __u32 mc;
2301 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Luiz Capitulino222f1802006-03-20 22:16:13 -08002303 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002304 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002305 else {
2306 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002307 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002308 pkt_dev->src_mac_count)
2309 pkt_dev->cur_src_mac_offset = 0;
2310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Luiz Capitulino222f1802006-03-20 22:16:13 -08002312 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2313 pkt_dev->hh[11] = tmp;
2314 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2315 pkt_dev->hh[10] = tmp;
2316 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2317 pkt_dev->hh[9] = tmp;
2318 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2319 pkt_dev->hh[8] = tmp;
2320 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2321 pkt_dev->hh[7] = tmp;
2322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Luiz Capitulino222f1802006-03-20 22:16:13 -08002324 /* Deal with Destination MAC */
2325 if (pkt_dev->dst_mac_count > 1) {
2326 __u32 mc;
2327 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Luiz Capitulino222f1802006-03-20 22:16:13 -08002329 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002330 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Luiz Capitulino222f1802006-03-20 22:16:13 -08002332 else {
2333 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002334 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002335 pkt_dev->dst_mac_count) {
2336 pkt_dev->cur_dst_mac_offset = 0;
2337 }
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Luiz Capitulino222f1802006-03-20 22:16:13 -08002340 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2341 pkt_dev->hh[5] = tmp;
2342 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2343 pkt_dev->hh[4] = tmp;
2344 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2345 pkt_dev->hh[3] = tmp;
2346 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2347 pkt_dev->hh[2] = tmp;
2348 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2349 pkt_dev->hh[1] = tmp;
2350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002352 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002353 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002354 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002355 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2356 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002357 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002358 htonl(0x000fffff));
2359 }
2360
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002361 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002362 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002363 }
2364
2365 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002366 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002367 }
2368
Luiz Capitulino222f1802006-03-20 22:16:13 -08002369 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2370 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002371 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002372 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2373 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Luiz Capitulino222f1802006-03-20 22:16:13 -08002375 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 pkt_dev->cur_udp_src++;
2377 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2378 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002379 }
2380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Luiz Capitulino222f1802006-03-20 22:16:13 -08002382 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2383 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002384 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002385 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2386 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002387 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002389 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002391 }
2392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 if (!(pkt_dev->flags & F_IPV6)) {
2395
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002396 imn = ntohl(pkt_dev->saddr_min);
2397 imx = ntohl(pkt_dev->saddr_max);
2398 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002400 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002401 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 else {
2403 t = ntohl(pkt_dev->cur_saddr);
2404 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002405 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
2409 pkt_dev->cur_saddr = htonl(t);
2410 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002411
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002412 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2414 } else {
Al Viro252e33462006-11-14 20:48:11 -08002415 imn = ntohl(pkt_dev->daddr_min);
2416 imx = ntohl(pkt_dev->daddr_max);
2417 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 __u32 t;
Al Viro252e33462006-11-14 20:48:11 -08002419 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 if (pkt_dev->flags & F_IPDST_RND) {
2421
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002422 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002423 t = prandom_u32() %
2424 (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002425 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002426 } while (ipv4_is_loopback(s) ||
2427 ipv4_is_multicast(s) ||
2428 ipv4_is_lbcast(s) ||
2429 ipv4_is_zeronet(s) ||
2430 ipv4_is_local_multicast(s));
Al Viro252e33462006-11-14 20:48:11 -08002431 pkt_dev->cur_daddr = s;
2432 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 t = ntohl(pkt_dev->cur_daddr);
2434 t++;
2435 if (t > imx) {
2436 t = imn;
2437 }
2438 pkt_dev->cur_daddr = htonl(t);
2439 }
2440 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002441 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002442 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002443 pkt_dev->flows[flow].cur_daddr =
2444 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002445#ifdef CONFIG_XFRM
Dmitry Safonov6f107c72018-01-18 18:31:35 +00002446 if (pkt_dev->flags & F_IPSEC)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002447 get_ipsec_sa(pkt_dev, flow);
2448#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 pkt_dev->nflows++;
2450 }
2451 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002452 } else { /* IPV6 * */
2453
Joe Perches06e30412012-10-18 17:55:31 +00002454 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 int i;
2456
2457 /* Only random destinations yet */
2458
Luiz Capitulino222f1802006-03-20 22:16:13 -08002459 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002461 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002462 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2463 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
2467
Luiz Capitulino222f1802006-03-20 22:16:13 -08002468 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2469 __u32 t;
2470 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002471 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002472 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2473 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002474 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002476 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002478 }
2479 pkt_dev->cur_pkt_size = t;
2480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002482 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 pkt_dev->flows[flow].count++;
2485}
2486
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002487
2488#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002489static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d47e2014-01-03 11:18:31 +08002490
2491 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2492};
2493
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002494static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2495{
2496 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2497 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002498 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002499
2500 if (!x)
2501 return 0;
2502 /* XXX: we dont support tunnel mode for now until
2503 * we resolve the dst issue */
Fan Ducf93d47e2014-01-03 11:18:31 +08002504 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002505 return 0;
2506
Fan Ducf93d47e2014-01-03 11:18:31 +08002507 /* But when user specify an valid SPI, transformation
2508 * supports both transport/tunnel mode + ESP/AH type.
2509 */
2510 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
David Millerb6ca8bd2017-11-28 15:45:44 -05002511 skb->_skb_refdst = (unsigned long)&pkt_dev->xdst.u.dst | SKB_DST_NOREF;
Fan Ducf93d47e2014-01-03 11:18:31 +08002512
2513 rcu_read_lock_bh();
Florian Westphal0c620e92019-03-29 21:16:25 +01002514 err = pktgen_xfrm_outer_mode_output(x, skb);
Fan Ducf93d47e2014-01-03 11:18:31 +08002515 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002516 if (err) {
2517 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002518 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002519 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002520 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002521 if (err) {
2522 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002523 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002524 }
Fan Du0af0a412014-01-03 11:18:27 +08002525 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002526 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002527 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002528 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002529error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002530 return err;
2531}
2532
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002533static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002534{
2535 if (pkt_dev->cflows) {
2536 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002537 int i;
2538 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002539 struct xfrm_state *x = pkt_dev->flows[i].x;
2540 if (x) {
2541 xfrm_state_put(x);
2542 pkt_dev->flows[i].x = NULL;
2543 }
2544 }
2545 }
2546}
2547
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002548static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002549 struct sk_buff *skb, __be16 protocol)
2550{
Dmitry Safonov6f107c72018-01-18 18:31:35 +00002551 if (pkt_dev->flags & F_IPSEC) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002552 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2553 int nhead = 0;
2554 if (x) {
Eric Dumazetd4969582015-05-25 16:06:37 -07002555 struct ethhdr *eth;
fan.du38682042013-12-01 16:28:48 +08002556 struct iphdr *iph;
Eric Dumazetd4969582015-05-25 16:06:37 -07002557 int ret;
fan.du38682042013-12-01 16:28:48 +08002558
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002559 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002560 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002561 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2562 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002563 pr_err("Error expanding ipsec packet %d\n",
2564 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002565 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002566 }
2567 }
2568
2569 /* ipsec is not expecting ll header */
2570 skb_pull(skb, ETH_HLEN);
2571 ret = pktgen_output_ipsec(skb, pkt_dev);
2572 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002573 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002574 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002575 }
2576 /* restore ll */
Johannes Bergd58ff352017-06-16 14:29:23 +02002577 eth = skb_push(skb, ETH_HLEN);
Eric Dumazetd4969582015-05-25 16:06:37 -07002578 memcpy(eth, pkt_dev->hh, 2 * ETH_ALEN);
2579 eth->h_proto = protocol;
fan.du38682042013-12-01 16:28:48 +08002580
2581 /* Update IPv4 header len as well as checksum value */
2582 iph = ip_hdr(skb);
2583 iph->tot_len = htons(skb->len - ETH_HLEN);
2584 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002585 }
2586 }
2587 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002588err:
2589 kfree_skb(skb);
2590 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002591}
2592#endif
2593
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002594static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2595{
Eric Dumazet95c96172012-04-15 05:58:06 +00002596 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002597 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002598 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002599
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002600 mpls--;
2601 *mpls |= MPLS_STACK_BOTTOM;
2602}
2603
Al Viro0f37c602006-11-03 03:49:56 -08002604static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2605 unsigned int prio)
2606{
2607 return htons(id | (cfi << 12) | (prio << 13));
2608}
2609
Eric Dumazet26ad7872011-01-25 13:26:05 -08002610static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2611 int datalen)
2612{
Arnd Bergmann7f5d3f22017-11-07 11:38:32 +01002613 struct timespec64 timestamp;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002614 struct pktgen_hdr *pgh;
2615
Johannes Berg4df864c2017-06-16 14:29:21 +02002616 pgh = skb_put(skb, sizeof(*pgh));
Eric Dumazet26ad7872011-01-25 13:26:05 -08002617 datalen -= sizeof(*pgh);
2618
2619 if (pkt_dev->nfrags <= 0) {
Johannes Bergb080db52017-06-16 14:29:19 +02002620 skb_put_zero(skb, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002621 } else {
2622 int frags = pkt_dev->nfrags;
2623 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002624 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002625
2626
2627 if (frags > MAX_SKB_FRAGS)
2628 frags = MAX_SKB_FRAGS;
2629 len = datalen - frags * PAGE_SIZE;
2630 if (len > 0) {
Johannes Bergb080db52017-06-16 14:29:19 +02002631 skb_put_zero(skb, len);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002632 datalen = frags * PAGE_SIZE;
2633 }
2634
2635 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002636 frag_len = (datalen/frags) < PAGE_SIZE ?
2637 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002638 while (datalen > 0) {
2639 if (unlikely(!pkt_dev->page)) {
2640 int node = numa_node_id();
2641
2642 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2643 node = pkt_dev->node;
2644 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2645 if (!pkt_dev->page)
2646 break;
2647 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002648 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002649 skb_frag_set_page(skb, i, pkt_dev->page);
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07002650 skb_frag_off_set(&skb_shinfo(skb)->frags[i], 0);
amit salecha7d36a992011-04-22 16:22:20 +00002651 /*last fragment, fill rest of data*/
2652 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002653 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2654 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002655 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002656 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2657 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2658 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2659 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002660 i++;
2661 skb_shinfo(skb)->nr_frags = i;
2662 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002663 }
2664
2665 /* Stamp the time, and sequence number,
2666 * convert them to network byte order
2667 */
2668 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2669 pgh->seq_num = htonl(pkt_dev->seq_num);
2670
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002671 if (pkt_dev->flags & F_NO_TIMESTAMP) {
2672 pgh->tv_sec = 0;
2673 pgh->tv_usec = 0;
2674 } else {
Arnd Bergmann7f5d3f22017-11-07 11:38:32 +01002675 /*
2676 * pgh->tv_sec wraps in y2106 when interpreted as unsigned
2677 * as done by wireshark, or y2038 when interpreted as signed.
2678 * This is probably harmless, but if anyone wants to improve
2679 * it, we could introduce a variant that puts 64-bit nanoseconds
2680 * into the respective header bytes.
2681 * This would also be slightly faster to read.
2682 */
2683 ktime_get_real_ts64(&timestamp);
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002684 pgh->tv_sec = htonl(timestamp.tv_sec);
Arnd Bergmann7f5d3f22017-11-07 11:38:32 +01002685 pgh->tv_usec = htonl(timestamp.tv_nsec / NSEC_PER_USEC);
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002686 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002687}
2688
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002689static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
Paolo Abeni63d75462016-09-30 16:56:45 +02002690 struct pktgen_dev *pkt_dev)
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002691{
Paolo Abeni63d75462016-09-30 16:56:45 +02002692 unsigned int extralen = LL_RESERVED_SPACE(dev);
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002693 struct sk_buff *skb = NULL;
Paolo Abeni63d75462016-09-30 16:56:45 +02002694 unsigned int size;
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002695
Paolo Abeni63d75462016-09-30 16:56:45 +02002696 size = pkt_dev->cur_pkt_size + 64 + extralen + pkt_dev->pkt_overhead;
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002697 if (pkt_dev->flags & F_NODE) {
2698 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2699
2700 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2701 if (likely(skb)) {
2702 skb_reserve(skb, NET_SKB_PAD);
2703 skb->dev = dev;
2704 }
2705 } else {
2706 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2707 }
John Fastabend3de03592016-01-10 21:38:44 -08002708
Paolo Abeni63d75462016-09-30 16:56:45 +02002709 /* the caller pre-fetches from skb->data and reserves for the mac hdr */
John Fastabend3de03592016-01-10 21:38:44 -08002710 if (likely(skb))
Paolo Abeni63d75462016-09-30 16:56:45 +02002711 skb_reserve(skb, extralen - 16);
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002712
2713 return skb;
2714}
2715
Luiz Capitulino222f1802006-03-20 22:16:13 -08002716static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2717 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
2719 struct sk_buff *skb = NULL;
2720 __u8 *eth;
2721 struct udphdr *udph;
2722 int datalen, iplen;
2723 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002724 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002725 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002726 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2727 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2728 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2729 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002730 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002731
2732 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002733 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002734
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002735 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002736 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002737
Robert Olsson64053be2005-06-26 15:27:10 -07002738 /* Update any of the values, used when we're incrementing various
2739 * fields.
2740 */
2741 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002742 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002743
Paolo Abeni63d75462016-09-30 16:56:45 +02002744 skb = pktgen_alloc_skb(odev, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (!skb) {
2746 sprintf(pkt_dev->result, "No memory");
2747 return NULL;
2748 }
2749
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002750 prefetchw(skb->data);
Paolo Abeni63d75462016-09-30 16:56:45 +02002751 skb_reserve(skb, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 /* Reserve for ethernet and IP header */
Johannes Bergd58ff352017-06-16 14:29:23 +02002754 eth = skb_push(skb, 14);
Johannes Berg4df864c2017-06-16 14:29:21 +02002755 mpls = skb_put(skb, pkt_dev->nr_labels * sizeof(__u32));
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002756 if (pkt_dev->nr_labels)
2757 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002758
2759 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002760 if (pkt_dev->svlan_id != 0xffff) {
Johannes Berg4df864c2017-06-16 14:29:21 +02002761 svlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002762 *svlan_tci = build_tci(pkt_dev->svlan_id,
2763 pkt_dev->svlan_cfi,
2764 pkt_dev->svlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002765 svlan_encapsulated_proto = skb_put(skb,
2766 sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002767 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002768 }
Johannes Berg4df864c2017-06-16 14:29:21 +02002769 vlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002770 *vlan_tci = build_tci(pkt_dev->vlan_id,
2771 pkt_dev->vlan_cfi,
2772 pkt_dev->vlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002773 vlan_encapsulated_proto = skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002774 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002775 }
2776
Zhang Shengjuc145aeb2016-02-29 08:21:30 +00002777 skb_reset_mac_header(skb);
Thomas Graf525cebe2013-06-03 11:49:23 +00002778 skb_set_network_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002779 iph = skb_put(skb, sizeof(struct iphdr));
Thomas Graf525cebe2013-06-03 11:49:23 +00002780
2781 skb_set_transport_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002782 udph = skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002783 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002784 skb->priority = pkt_dev->skb_priority;
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002787 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002789 /* Eth + IPh + UDPh + mpls */
2790 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002791 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002792 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002794
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 udph->source = htons(pkt_dev->cur_udp_src);
2796 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002797 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002798 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800 iph->ihl = 5;
2801 iph->version = 4;
2802 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002803 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002804 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 iph->saddr = pkt_dev->cur_saddr;
2806 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002807 iph->id = htons(pkt_dev->ip_id);
2808 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 iph->frag_off = 0;
2810 iplen = 20 + 8 + datalen;
2811 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002812 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002813 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 skb->dev = odev;
2815 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002816
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002817 pktgen_finalize_skb(pkt_dev, skb, datalen);
2818
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002819 if (!(pkt_dev->flags & F_UDPCSUM)) {
2820 skb->ip_summed = CHECKSUM_NONE;
Tom Herbertc8cd0982015-12-14 11:19:44 -08002821 } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM)) {
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002822 skb->ip_summed = CHECKSUM_PARTIAL;
2823 skb->csum = 0;
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002824 udp4_hwcsum(skb, iph->saddr, iph->daddr);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002825 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002826 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), datalen + 8, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002827
2828 /* add protocol-dependent pseudo-header */
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002829 udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr,
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002830 datalen + 8, IPPROTO_UDP, csum);
2831
2832 if (udph->check == 0)
2833 udph->check = CSUM_MANGLED_0;
2834 }
2835
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002836#ifdef CONFIG_XFRM
2837 if (!process_ipsec(pkt_dev, skb, protocol))
2838 return NULL;
2839#endif
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return skb;
2842}
2843
Luiz Capitulino222f1802006-03-20 22:16:13 -08002844static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2845 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
2847 struct sk_buff *skb = NULL;
2848 __u8 *eth;
2849 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002850 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002852 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002853 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002854 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2855 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2856 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2857 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002858 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002859
2860 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002861 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002862
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002863 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002864 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002865
Robert Olsson64053be2005-06-26 15:27:10 -07002866 /* Update any of the values, used when we're incrementing various
2867 * fields.
2868 */
2869 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002870 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002871
Paolo Abeni63d75462016-09-30 16:56:45 +02002872 skb = pktgen_alloc_skb(odev, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 if (!skb) {
2874 sprintf(pkt_dev->result, "No memory");
2875 return NULL;
2876 }
2877
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002878 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 skb_reserve(skb, 16);
2880
2881 /* Reserve for ethernet and IP header */
Johannes Bergd58ff352017-06-16 14:29:23 +02002882 eth = skb_push(skb, 14);
Johannes Berg4df864c2017-06-16 14:29:21 +02002883 mpls = skb_put(skb, pkt_dev->nr_labels * sizeof(__u32));
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002884 if (pkt_dev->nr_labels)
2885 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002886
2887 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002888 if (pkt_dev->svlan_id != 0xffff) {
Johannes Berg4df864c2017-06-16 14:29:21 +02002889 svlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002890 *svlan_tci = build_tci(pkt_dev->svlan_id,
2891 pkt_dev->svlan_cfi,
2892 pkt_dev->svlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002893 svlan_encapsulated_proto = skb_put(skb,
2894 sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002895 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002896 }
Johannes Berg4df864c2017-06-16 14:29:21 +02002897 vlan_tci = skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002898 *vlan_tci = build_tci(pkt_dev->vlan_id,
2899 pkt_dev->vlan_cfi,
2900 pkt_dev->vlan_p);
Johannes Berg4df864c2017-06-16 14:29:21 +02002901 vlan_encapsulated_proto = skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002902 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002903 }
2904
Zhang Shengjuc145aeb2016-02-29 08:21:30 +00002905 skb_reset_mac_header(skb);
Thomas Graf525cebe2013-06-03 11:49:23 +00002906 skb_set_network_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002907 iph = skb_put(skb, sizeof(struct ipv6hdr));
Thomas Graf525cebe2013-06-03 11:49:23 +00002908
2909 skb_set_transport_header(skb, skb->len);
Johannes Berg4df864c2017-06-16 14:29:21 +02002910 udph = skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002911 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002912 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002915 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002916
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002917 /* Eth + IPh + UDPh + mpls */
2918 datalen = pkt_dev->cur_pkt_size - 14 -
2919 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002920 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002922 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002924 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 }
2926
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002927 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 udph->source = htons(pkt_dev->cur_udp_src);
2929 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002930 udph->len = htons(udplen);
2931 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002933 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002935 if (pkt_dev->traffic_class) {
2936 /* Version + traffic class + flow (0) */
Al Viro252e33462006-11-14 20:48:11 -08002937 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002938 }
2939
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 iph->hop_limit = 32;
2941
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002942 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 iph->nexthdr = IPPROTO_UDP;
2944
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002945 iph->daddr = pkt_dev->cur_in6_daddr;
2946 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002948 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 skb->dev = odev;
2950 skb->pkt_type = PACKET_HOST;
2951
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002952 pktgen_finalize_skb(pkt_dev, skb, datalen);
2953
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002954 if (!(pkt_dev->flags & F_UDPCSUM)) {
2955 skb->ip_summed = CHECKSUM_NONE;
Tom Herbertc8cd0982015-12-14 11:19:44 -08002956 } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM)) {
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002957 skb->ip_summed = CHECKSUM_PARTIAL;
2958 skb->csum_start = skb_transport_header(skb) - skb->head;
2959 skb->csum_offset = offsetof(struct udphdr, check);
2960 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2961 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002962 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), udplen, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002963
2964 /* add protocol-dependent pseudo-header */
2965 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2966
2967 if (udph->check == 0)
2968 udph->check = CSUM_MANGLED_0;
2969 }
2970
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 return skb;
2972}
2973
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002974static struct sk_buff *fill_packet(struct net_device *odev,
2975 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002977 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 return fill_packet_ipv6(odev, pkt_dev);
2979 else
2980 return fill_packet_ipv4(odev, pkt_dev);
2981}
2982
Luiz Capitulino222f1802006-03-20 22:16:13 -08002983static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002985 pkt_dev->seq_num = 1;
2986 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002988 pkt_dev->tx_bytes = 0;
2989 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991
2992/* Set up structure for sending pkts, clear counters */
2993
2994static void pktgen_run(struct pktgen_thread *t)
2995{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002996 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 int started = 0;
2998
Joe Perchesf9467ea2010-06-21 12:29:14 +00002999 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003001 rcu_read_lock();
3002 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
3004 /*
3005 * setup odev and create initial packet.
3006 */
3007 pktgen_setup_inject(pkt_dev);
3008
Luiz Capitulino222f1802006-03-20 22:16:13 -08003009 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 pktgen_clear_counters(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003012 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003013
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003014 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 strcpy(pkt_dev->result, "Starting");
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003017 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003019 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 strcpy(pkt_dev->result, "Error starting");
3021 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003022 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003023 if (started)
3024 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
Yejune Dengcda9de02021-06-07 10:37:41 +08003027static void pktgen_handle_all_threads(struct pktgen_net *pn, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003029 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003031 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003032
Cong Wang4e58a022013-01-28 19:55:53 +00003033 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Yejune Dengcda9de02021-06-07 10:37:41 +08003034 t->control |= (flags);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003035
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003036 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037}
3038
Yejune Dengcda9de02021-06-07 10:37:41 +08003039static void pktgen_stop_all_threads(struct pktgen_net *pn)
3040{
3041 func_enter();
3042
3043 pktgen_handle_all_threads(pn, T_STOP);
3044}
3045
Stephen Hemminger648fda72009-08-27 13:55:07 +00003046static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003048 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003050 rcu_read_lock();
3051 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
3052 if (pkt_dev->running) {
3053 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003054 return 1;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003055 }
3056 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
Luiz Capitulino222f1802006-03-20 22:16:13 -08003060static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003062 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Paolo Abeni720f1de2019-06-06 15:45:03 +02003064 /* note: 't' will still be around even after the unlock/lock
3065 * cycle because pktgen_thread threads are only cleared at
3066 * net exit
3067 */
3068 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003069 msleep_interruptible(100);
Paolo Abeni720f1de2019-06-06 15:45:03 +02003070 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Luiz Capitulino222f1802006-03-20 22:16:13 -08003072 if (signal_pending(current))
3073 goto signal;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003074 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003075 return 1;
3076signal:
3077 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078}
3079
Cong Wang4e58a022013-01-28 19:55:53 +00003080static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003082 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003084
Paolo Abeni720f1de2019-06-06 15:45:03 +02003085 /* prevent from racing with rmmod */
3086 if (!try_module_get(THIS_MODULE))
3087 return sig;
3088
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003089 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003090
Cong Wang4e58a022013-01-28 19:55:53 +00003091 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003093 if (sig == 0)
3094 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003096
3097 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003098 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003100
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003101 mutex_unlock(&pktgen_thread_lock);
Paolo Abeni720f1de2019-06-06 15:45:03 +02003102 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 return sig;
3104}
3105
Cong Wang4e58a022013-01-28 19:55:53 +00003106static void pktgen_run_all_threads(struct pktgen_net *pn)
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
Yejune Dengcda9de02021-06-07 10:37:41 +08003110 pktgen_handle_all_threads(pn, T_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003112 /* Propagate thread->control */
3113 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003114
Cong Wang4e58a022013-01-28 19:55:53 +00003115 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116}
3117
Cong Wang4e58a022013-01-28 19:55:53 +00003118static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003119{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003120 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003121
Yejune Dengcda9de02021-06-07 10:37:41 +08003122 pktgen_handle_all_threads(pn, T_REMDEVALL);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003123
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003124 /* Propagate thread->control */
3125 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003126
Cong Wang4e58a022013-01-28 19:55:53 +00003127 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003128}
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3131{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003132 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003133 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003134 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3135 pkt_dev->started_at);
3136 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
Daniel Turull03a14ab2011-03-09 14:11:00 -08003138 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003139 (unsigned long long)ktime_to_us(elapsed),
3140 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3141 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003142 (unsigned long long)pkt_dev->sofar,
3143 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003145 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3146 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Luiz Capitulino222f1802006-03-20 22:16:13 -08003148 bps = pps * 8 * pkt_dev->cur_pkt_size;
3149
3150 mbps = bps;
3151 do_div(mbps, 1000000);
3152 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3153 (unsigned long long)pps,
3154 (unsigned long long)mbps,
3155 (unsigned long long)bps,
3156 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
3159/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003160static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003162 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003163
Luiz Capitulino222f1802006-03-20 22:16:13 -08003164 if (!pkt_dev->running) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07003165 pr_warn("interface: %s is already stopped\n",
3166 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003167 return -EINVAL;
3168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003170 pkt_dev->running = 0;
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003171 kfree_skb(pkt_dev->skb);
3172 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003173 pkt_dev->stopped_at = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003175 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Luiz Capitulino222f1802006-03-20 22:16:13 -08003177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
Luiz Capitulino222f1802006-03-20 22:16:13 -08003180static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003182 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003183
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003184 rcu_read_lock();
3185 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003186 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003187 continue;
3188 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003189 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003190 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003191 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003193 rcu_read_unlock();
3194
Luiz Capitulino222f1802006-03-20 22:16:13 -08003195 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
3197
Luiz Capitulino222f1802006-03-20 22:16:13 -08003198static void pktgen_stop(struct pktgen_thread *t)
3199{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003200 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Joe Perchesf9467ea2010-06-21 12:29:14 +00003202 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003204 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003206 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003207 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003210 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211}
3212
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003213/*
3214 * one of our devices needs to be removed - find it
3215 * and remove it
3216 */
3217static void pktgen_rem_one_if(struct pktgen_thread *t)
3218{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003219 struct list_head *q, *n;
3220 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003221
Joe Perchesf9467ea2010-06-21 12:29:14 +00003222 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003223
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003224 list_for_each_safe(q, n, &t->if_list) {
3225 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003226
Luiz Capitulino222f1802006-03-20 22:16:13 -08003227 if (!cur->removal_mark)
3228 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003229
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003230 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003231 cur->skb = NULL;
3232
3233 pktgen_remove_device(t, cur);
3234
3235 break;
3236 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003237}
3238
Luiz Capitulino222f1802006-03-20 22:16:13 -08003239static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003241 struct list_head *q, *n;
3242 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003243
Joe Perchesf9467ea2010-06-21 12:29:14 +00003244 func_enter();
3245
Luiz Capitulino222f1802006-03-20 22:16:13 -08003246 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003247
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003248 list_for_each_safe(q, n, &t->if_list) {
3249 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003250
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003251 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003252 cur->skb = NULL;
3253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 pktgen_remove_device(t, cur);
3255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256}
3257
Luiz Capitulino222f1802006-03-20 22:16:13 -08003258static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003260 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003261 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262}
3263
Stephen Hemmingeref879792009-09-22 19:41:43 +00003264static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003265{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003266 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003267 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003268 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003269}
3270
Stephen Hemmingeref879792009-09-22 19:41:43 +00003271static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3272{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003273 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003274
Reshetova, Elena63354792017-06-30 13:07:58 +03003275 while (refcount_read(&(pkt_dev->skb->users)) != 1) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003276 if (signal_pending(current))
3277 break;
3278
3279 if (need_resched())
3280 pktgen_resched(pkt_dev);
3281 else
3282 cpu_relax();
3283 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003284 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003285}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003286
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003287static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288{
Mark Rutland6aa7de02017-10-23 14:07:29 -07003289 unsigned int burst = READ_ONCE(pkt_dev->burst);
Stephen Hemminger00829822008-11-20 20:14:53 -08003290 struct net_device *odev = pkt_dev->odev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003291 struct netdev_queue *txq;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003292 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 int ret;
3294
Stephen Hemmingeref879792009-09-22 19:41:43 +00003295 /* If device is offline, then don't send */
3296 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3297 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003298 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003300
Stephen Hemmingeref879792009-09-22 19:41:43 +00003301 /* This is max DELAY, this has special meaning of
3302 * "never transmit"
3303 */
3304 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003305 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003306 return;
3307 }
3308
3309 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003310 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3311 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3312 /* build a new pkt */
3313 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003314
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003315 pkt_dev->skb = fill_packet(odev, pkt_dev);
3316 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003317 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003318 schedule();
3319 pkt_dev->clone_count--; /* back out increment, OOM */
3320 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003322 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003323 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003325
Stephen Hemmingeref879792009-09-22 19:41:43 +00003326 if (pkt_dev->delay && pkt_dev->last_ok)
3327 spin(pkt_dev, pkt_dev->next_tx);
3328
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003329 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE) {
3330 skb = pkt_dev->skb;
3331 skb->protocol = eth_type_trans(skb, skb->dev);
Reshetova, Elena63354792017-06-30 13:07:58 +03003332 refcount_add(burst, &skb->users);
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003333 local_bh_disable();
3334 do {
3335 ret = netif_receive_skb(skb);
3336 if (ret == NET_RX_DROP)
3337 pkt_dev->errors++;
3338 pkt_dev->sofar++;
3339 pkt_dev->seq_num++;
Reshetova, Elena63354792017-06-30 13:07:58 +03003340 if (refcount_read(&skb->users) != burst) {
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003341 /* skb was queued by rps/rfs or taps,
3342 * so cannot reuse this skb
3343 */
Reshetova, Elena63354792017-06-30 13:07:58 +03003344 WARN_ON(refcount_sub_and_test(burst - 1, &skb->users));
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003345 /* get out of the loop and wait
3346 * until skb is consumed
3347 */
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003348 break;
3349 }
3350 /* skb was 'freed' by stack, so clean few
3351 * bits and reuse it
3352 */
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01003353 skb_reset_redirect(skb);
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003354 } while (--burst > 0);
3355 goto out; /* Skips xmit_mode M_START_XMIT */
John Fastabend0967f242016-07-02 14:12:54 -07003356 } else if (pkt_dev->xmit_mode == M_QUEUE_XMIT) {
3357 local_bh_disable();
Reshetova, Elena63354792017-06-30 13:07:58 +03003358 refcount_inc(&pkt_dev->skb->users);
John Fastabend0967f242016-07-02 14:12:54 -07003359
3360 ret = dev_queue_xmit(pkt_dev->skb);
3361 switch (ret) {
3362 case NET_XMIT_SUCCESS:
3363 pkt_dev->sofar++;
3364 pkt_dev->seq_num++;
3365 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
3366 break;
3367 case NET_XMIT_DROP:
3368 case NET_XMIT_CN:
3369 /* These are all valid return codes for a qdisc but
3370 * indicate packets are being dropped or will likely
3371 * be dropped soon.
3372 */
3373 case NETDEV_TX_BUSY:
3374 /* qdisc may call dev_hard_start_xmit directly in cases
3375 * where no queues exist e.g. loopback device, virtual
3376 * devices, etc. In this case we need to handle
3377 * NETDEV_TX_ codes.
3378 */
3379 default:
3380 pkt_dev->errors++;
3381 net_info_ratelimited("%s xmit error: %d\n",
3382 pkt_dev->odevname, ret);
3383 break;
3384 }
3385 goto out;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003386 }
3387
Daniel Borkmann10c51b56232014-08-27 11:11:27 +02003388 txq = skb_get_tx_queue(odev, pkt_dev->skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003389
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003390 local_bh_disable();
3391
3392 HARD_TX_LOCK(odev, txq, smp_processor_id());
Stephen Hemmingeref879792009-09-22 19:41:43 +00003393
Daniel Borkmann6f25cd42014-04-07 17:18:30 +02003394 if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) {
Eric Dumazet0835acf2009-09-30 13:03:33 +00003395 pkt_dev->last_ok = 0;
3396 goto unlock;
3397 }
Reshetova, Elena63354792017-06-30 13:07:58 +03003398 refcount_add(burst, &pkt_dev->skb->users);
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003399
3400xmit_more:
3401 ret = netdev_start_xmit(pkt_dev->skb, odev, txq, --burst > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Stephen Hemmingeref879792009-09-22 19:41:43 +00003403 switch (ret) {
3404 case NETDEV_TX_OK:
Stephen Hemmingeref879792009-09-22 19:41:43 +00003405 pkt_dev->last_ok = 1;
3406 pkt_dev->sofar++;
3407 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003408 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003409 if (burst > 0 && !netif_xmit_frozen_or_drv_stopped(txq))
3410 goto xmit_more;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003411 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003412 case NET_XMIT_DROP:
3413 case NET_XMIT_CN:
John Fastabendf466dba2009-12-23 22:02:57 -08003414 /* skb has been consumed */
3415 pkt_dev->errors++;
3416 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003417 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003418 net_info_ratelimited("%s xmit error: %d\n",
3419 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003420 pkt_dev->errors++;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003421 fallthrough;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003422 case NETDEV_TX_BUSY:
3423 /* Retry it next time */
Reshetova, Elena63354792017-06-30 13:07:58 +03003424 refcount_dec(&(pkt_dev->skb->users));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003425 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003426 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003427 if (unlikely(burst))
Reshetova, Elena63354792017-06-30 13:07:58 +03003428 WARN_ON(refcount_sub_and_test(burst, &pkt_dev->skb->users));
Eric Dumazet0835acf2009-09-30 13:03:33 +00003429unlock:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003430 HARD_TX_UNLOCK(odev, txq);
3431
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003432out:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003433 local_bh_enable();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 /* If pkt_dev->count is zero, then run forever */
3436 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003437 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003438
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 /* Done with this */
3440 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003441 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003442}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003444/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 * Main loop of the thread goes here
3446 */
3447
David S. Milleree74baa2007-01-01 20:51:53 -08003448static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449{
3450 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003451 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003452 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
Di Zhu275b1e82021-01-25 20:42:29 +08003455 WARN_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
3457 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003458 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Joe Perchesf9467ea2010-06-21 12:29:14 +00003460 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003462 set_freezable();
3463
David S. Milleree74baa2007-01-01 20:51:53 -08003464 while (!kthread_should_stop()) {
3465 pkt_dev = next_to_run(t);
3466
Stephen Hemmingeref879792009-09-22 19:41:43 +00003467 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003468 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003469 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003470 wait_event_interruptible_timeout(t->queue,
3471 t->control != 0,
3472 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003473 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003474 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003475 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003476
Stephen Hemmingeref879792009-09-22 19:41:43 +00003477 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 pktgen_xmit(pkt_dev);
3479
Stephen Hemmingeref879792009-09-22 19:41:43 +00003480 if (need_resched())
3481 pktgen_resched(pkt_dev);
3482 else
3483 cpu_relax();
3484 }
3485
Luiz Capitulino222f1802006-03-20 22:16:13 -08003486 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 pktgen_stop(t);
3488 t->control &= ~(T_STOP);
3489 }
3490
Luiz Capitulino222f1802006-03-20 22:16:13 -08003491 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 pktgen_run(t);
3493 t->control &= ~(T_RUN);
3494 }
3495
Luiz Capitulino222f1802006-03-20 22:16:13 -08003496 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003498 t->control &= ~(T_REMDEVALL);
3499 }
3500
Luiz Capitulino222f1802006-03-20 22:16:13 -08003501 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003502 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 t->control &= ~(T_REMDEV);
3504 }
3505
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003506 try_to_freeze();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
Joe Perchesf9467ea2010-06-21 12:29:14 +00003509 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003510 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
Joe Perchesf9467ea2010-06-21 12:29:14 +00003512 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003513 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
Joe Perchesf9467ea2010-06-21 12:29:14 +00003515 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003516 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003517
David S. Milleree74baa2007-01-01 20:51:53 -08003518 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519}
3520
Luiz Capitulino222f1802006-03-20 22:16:13 -08003521static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003522 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003524 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003525 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003527 rcu_read_lock();
3528 list_for_each_entry_rcu(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003529 if (strncmp(p->odevname, ifname, len) == 0) {
3530 if (p->odevname[len]) {
3531 if (exact || p->odevname[len] != '@')
3532 continue;
3533 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003534 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003535 break;
3536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003538 rcu_read_unlock();
Joe Perchesf9467ea2010-06-21 12:29:14 +00003539 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003540 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541}
3542
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003543/*
3544 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 */
3546
Luiz Capitulino222f1802006-03-20 22:16:13 -08003547static int add_dev_to_thread(struct pktgen_thread *t,
3548 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549{
3550 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003552 /* This function cannot be called concurrently, as its called
3553 * under pktgen_thread_lock mutex, but it can run from
3554 * userspace on another CPU than the kthread. The if_lock()
3555 * is used here to sync with concurrent instances of
3556 * _rem_dev_from_if_list() invoked via kthread, which is also
3557 * updating the if_list */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003558 if_lock(t);
3559
3560 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003561 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003562 rv = -EBUSY;
3563 goto out;
3564 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003565
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 pkt_dev->running = 0;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003567 pkt_dev->pg_thread = t;
3568 list_add_rcu(&pkt_dev->list, &t->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Luiz Capitulino222f1802006-03-20 22:16:13 -08003570out:
3571 if_unlock(t);
3572 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573}
3574
3575/* Called under thread lock */
3576
Luiz Capitulino222f1802006-03-20 22:16:13 -08003577static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003579 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003580 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003581 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 /* We don't allow a device to be on several threads */
3584
Cong Wang4e58a022013-01-28 19:55:53 +00003585 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003586 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003587 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003588 return -EBUSY;
3589 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003590
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003591 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003592 if (!pkt_dev)
3593 return -ENOMEM;
3594
Eric Dumazet593f63b2009-11-23 01:44:37 +00003595 strcpy(pkt_dev->odevname, ifname);
Kees Cookfd7bece2018-06-12 14:27:52 -07003596 pkt_dev->flows = vzalloc_node(array_size(MAX_CFLOWS,
3597 sizeof(struct flow_state)),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003598 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003599 if (pkt_dev->flows == NULL) {
3600 kfree(pkt_dev);
3601 return -ENOMEM;
3602 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003603
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003604 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003605 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003606 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003607 pkt_dev->count = pg_count_d;
3608 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003609 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003610 pkt_dev->udp_src_max = 9;
3611 pkt_dev->udp_dst_min = 9;
3612 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003613 pkt_dev->vlan_p = 0;
3614 pkt_dev->vlan_cfi = 0;
3615 pkt_dev->vlan_id = 0xffff;
3616 pkt_dev->svlan_p = 0;
3617 pkt_dev->svlan_cfi = 0;
3618 pkt_dev->svlan_id = 0xffff;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003619 pkt_dev->burst = 1;
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08003620 pkt_dev->node = NUMA_NO_NODE;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003621
Cong Wang4e58a022013-01-28 19:55:53 +00003622 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003623 if (err)
3624 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003625 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3626 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003627
Cong Wang4e58a022013-01-28 19:55:53 +00003628 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Alexey Dobriyan97a32532020-02-03 17:37:17 -08003629 &pktgen_if_proc_ops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003630 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003631 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003632 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003633 err = -EINVAL;
3634 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003635 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003636#ifdef CONFIG_XFRM
3637 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3638 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d47e2014-01-03 11:18:31 +08003639
3640 /* xfrm tunnel mode needs additional dst to extract outter
3641 * ip header protocol/ttl/id field, here creat a phony one.
3642 * instead of looking for a valid rt, which definitely hurting
3643 * performance under such circumstance.
3644 */
3645 pkt_dev->dstops.family = AF_INET;
David Millerb6ca8bd2017-11-28 15:45:44 -05003646 pkt_dev->xdst.u.dst.dev = pkt_dev->odev;
3647 dst_init_metrics(&pkt_dev->xdst.u.dst, pktgen_dst_metrics, false);
3648 pkt_dev->xdst.child = &pkt_dev->xdst.u.dst;
3649 pkt_dev->xdst.u.dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003650#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003651
3652 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003653out2:
3654 dev_put(pkt_dev->odev);
3655out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003656#ifdef CONFIG_XFRM
3657 free_SAs(pkt_dev);
3658#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003659 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003660 kfree(pkt_dev);
3661 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662}
3663
Cong Wang4e58a022013-01-28 19:55:53 +00003664static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003666 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003667 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003668 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003670 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3671 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003672 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003673 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003674 return -ENOMEM;
3675 }
3676
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02003677 mutex_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003679
David S. Milleree74baa2007-01-01 20:51:53 -08003680 INIT_LIST_HEAD(&t->if_list);
3681
Cong Wang4e58a022013-01-28 19:55:53 +00003682 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003683 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003684
Eric Dumazet94dcf292011-03-22 16:30:45 -07003685 p = kthread_create_on_node(pktgen_thread_worker,
3686 t,
3687 cpu_to_node(cpu),
3688 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003689 if (IS_ERR(p)) {
Leesoo Ahn355db392020-09-01 22:04:47 +09003690 pr_err("kthread_create_on_node() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003691 list_del(&t->th_list);
3692 kfree(t);
3693 return PTR_ERR(p);
3694 }
3695 kthread_bind(p, cpu);
3696 t->tsk = p;
3697
Cong Wang4e58a022013-01-28 19:55:53 +00003698 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Alexey Dobriyan97a32532020-02-03 17:37:17 -08003699 &pktgen_thread_proc_ops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003700 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003701 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003702 PG_PROC_DIR, t->tsk->comm);
3703 kthread_stop(p);
3704 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003705 kfree(t);
3706 return -EINVAL;
3707 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003708
Cong Wang4e58a022013-01-28 19:55:53 +00003709 t->net = pn;
Oleg Nesterov1fbe4b462015-07-08 21:42:13 +02003710 get_task_struct(p);
David S. Milleree74baa2007-01-01 20:51:53 -08003711 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003712 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
3714 return 0;
3715}
3716
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003717/*
3718 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003720static void _rem_dev_from_if_list(struct pktgen_thread *t,
3721 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003723 struct list_head *q, *n;
3724 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003726 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003727 list_for_each_safe(q, n, &t->if_list) {
3728 p = list_entry(q, struct pktgen_dev, list);
3729 if (p == pkt_dev)
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003730 list_del_rcu(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003732 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733}
3734
Luiz Capitulino222f1802006-03-20 22:16:13 -08003735static int pktgen_remove_device(struct pktgen_thread *t,
3736 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003738 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
Luiz Capitulino222f1802006-03-20 22:16:13 -08003740 if (pkt_dev->running) {
Joe Perches294a0b7f2014-09-09 21:17:30 -07003741 pr_warn("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003742 pktgen_stop_device(pkt_dev);
3743 }
3744
3745 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746
3747 if (pkt_dev->odev) {
3748 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003749 pkt_dev->odev = NULL;
3750 }
3751
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003752 /* Remove proc before if_list entry, because add_device uses
3753 * list to determine if interface already exist, avoid race
3754 * with proc_create_data() */
Markus Elfringef87c5d2014-11-18 20:10:34 +01003755 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003757 /* And update the thread if_list */
3758 _rem_dev_from_if_list(t, pkt_dev);
3759
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003760#ifdef CONFIG_XFRM
3761 free_SAs(pkt_dev);
3762#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003763 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003764 if (pkt_dev->page)
3765 put_page(pkt_dev->page);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003766 kfree_rcu(pkt_dev, rcu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768}
3769
Cong Wang4e58a022013-01-28 19:55:53 +00003770static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771{
Cong Wang4e58a022013-01-28 19:55:53 +00003772 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003773 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003774 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003775
Cong Wang4e58a022013-01-28 19:55:53 +00003776 pn->net = net;
3777 INIT_LIST_HEAD(&pn->pktgen_threads);
3778 pn->pktgen_exiting = false;
3779 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3780 if (!pn->proc_dir) {
3781 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003782 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003783 }
Alexey Dobriyan97a32532020-02-03 17:37:17 -08003784 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_proc_ops);
Cong Wang4e58a022013-01-28 19:55:53 +00003785 if (pe == NULL) {
3786 pr_err("cannot create %s procfs entry\n", PGCTRL);
3787 ret = -EINVAL;
3788 goto remove;
3789 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003790
John Hawkes670c02c2005-10-13 09:30:31 -07003791 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003792 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
Cong Wang4e58a022013-01-28 19:55:53 +00003794 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003795 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003796 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003797 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003798 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003799
Cong Wang4e58a022013-01-28 19:55:53 +00003800 if (list_empty(&pn->pktgen_threads)) {
3801 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003802 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003803 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003804 }
3805
Luiz Capitulino222f1802006-03-20 22:16:13 -08003806 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003807
Cong Wang4e58a022013-01-28 19:55:53 +00003808remove_entry:
3809 remove_proc_entry(PGCTRL, pn->proc_dir);
3810remove:
Gao fengece31ff2013-02-18 01:34:56 +00003811 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003812 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813}
3814
Cong Wang4e58a022013-01-28 19:55:53 +00003815static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
Cong Wang4e58a022013-01-28 19:55:53 +00003817 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003818 struct pktgen_thread *t;
3819 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003820 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Luiz Capitulino222f1802006-03-20 22:16:13 -08003822 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003823 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
Eric Dumazetc57b5462012-05-09 13:29:51 +00003825 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003826 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003827 mutex_unlock(&pktgen_thread_lock);
3828
3829 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003830 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003831 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003832 kthread_stop(t->tsk);
Oleg Nesterov1fbe4b462015-07-08 21:42:13 +02003833 put_task_struct(t->tsk);
David S. Milleree74baa2007-01-01 20:51:53 -08003834 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
Cong Wang4e58a022013-01-28 19:55:53 +00003837 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003838 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003839}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Cong Wang4e58a022013-01-28 19:55:53 +00003841static struct pernet_operations pg_net_ops = {
3842 .init = pg_net_init,
3843 .exit = pg_net_exit,
3844 .id = &pg_net_id,
3845 .size = sizeof(struct pktgen_net),
3846};
3847
3848static int __init pg_init(void)
3849{
3850 int ret = 0;
3851
3852 pr_info("%s", version);
3853 ret = register_pernet_subsys(&pg_net_ops);
3854 if (ret)
3855 return ret;
3856 ret = register_netdevice_notifier(&pktgen_notifier_block);
3857 if (ret)
3858 unregister_pernet_subsys(&pg_net_ops);
3859
3860 return ret;
3861}
3862
3863static void __exit pg_cleanup(void)
3864{
3865 unregister_netdevice_notifier(&pktgen_notifier_block);
3866 unregister_pernet_subsys(&pg_net_ops);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003867 /* Don't need rcu_barrier() due to use of kfree_rcu() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868}
3869
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870module_init(pg_init);
3871module_exit(pg_cleanup);
3872
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003873MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874MODULE_DESCRIPTION("Packet Generator tool");
3875MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003876MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003878MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003880MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003882MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003884MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");