blob: 433b26feb320cf49efd6fac2732d42beffdc9fc6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Authors:
3 * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se>
4 * Uppsala University and
5 * Swedish University of Agricultural Sciences
6 *
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Ben Greear <greearb@candelatech.com>
Jan Engelhardt96de0e22007-10-19 23:21:04 +02009 * Jens Låås <jens.laas@data.slu.se>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 *
17 * A tool for loading the network with preconfigurated packets.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090018 * The tool is implemented as a linux module. Parameters are output
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * device, delay (to hard_xmit), number of packets, and whether
20 * to use multiple SKBs or just the same one.
21 * pktgen uses the installed interface's output routine.
22 *
23 * Additional hacking by:
24 *
25 * Jens.Laas@data.slu.se
26 * Improved by ANK. 010120.
27 * Improved by ANK even more. 010212.
28 * MAC address typo fixed. 010417 --ro
29 * Integrated. 020301 --DaveM
30 * Added multiskb option 020301 --DaveM
31 * Scaling of results. 020417--sigurdur@linpro.no
32 * Significant re-work of the module:
33 * * Convert to threaded model to more efficiently be able to transmit
34 * and receive on multiple interfaces at once.
35 * * Converted many counters to __u64 to allow longer runs.
36 * * Allow configuration of ranges, like min/max IP address, MACs,
37 * and UDP-ports, for both source and destination, and can
38 * set to use a random distribution or sequentially walk the range.
39 * * Can now change most values after starting.
40 * * Place 12-byte packet in UDP payload with magic number,
41 * sequence number, and timestamp.
42 * * Add receiver code that detects dropped pkts, re-ordered pkts, and
43 * latencies (with micro-second) precision.
44 * * Add IOCTL interface to easily get counters & configuration.
45 * --Ben Greear <greearb@candelatech.com>
46 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090047 * Renamed multiskb to clone_skb and cleaned up sending core for two distinct
48 * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * as a "fastpath" with a configurable number of clones after alloc's.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090050 * clone_skb=0 means all packets are allocated this also means ranges time
51 * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * clones.
53 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090054 * Also moved to /proc/net/pktgen/
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * --ro
56 *
57 * Sept 10: Fixed threading/locking. Lots of bone-headed and more clever
58 * mistakes. Also merged in DaveM's patch in the -pre6 patch.
59 * --Ben Greear <greearb@candelatech.com>
60 *
61 * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br)
62 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * 021124 Finished major redesign and rewrite for new functionality.
65 * See Documentation/networking/pktgen.txt for how to use this.
66 *
67 * The new operation:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090068 * For each CPU one thread/process is created at start. This process checks
69 * for running devices in the if_list and sends packets until count is 0 it
70 * also the thread checks the thread->control which is used for inter-process
71 * communication. controlling process "posts" operations to the threads this
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +020072 * way.
73 * The if_list is RCU protected, and the if_lock remains to protect updating
74 * of if_list, from "add_device" as it invoked from userspace (via proc write).
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090076 * By design there should only be *one* "controlling" process. In practice
77 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070079 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090081 * Note when adding devices to a specific CPU there good idea to also assign
82 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * --ro
84 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090085 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * memleak 030710- KJP
87 *
88 * First "ranges" functionality for ipv6 030726 --ro
89 *
90 * Included flow support. 030802 ANK.
91 *
92 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090093 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
95 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
96 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090097 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * <shemminger@osdl.org> 040923
99 *
Stephen Hemmingerca9f1fd2015-02-14 13:47:54 -0500100 * Randy Dunlap fixed u64 printk compiler warning
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
102 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
103 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
104 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900105 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
107 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900108 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800110 *
111 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
112 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700113 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
114 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700115 * Fixed src_mac command to set source mac of packet to value specified in
116 * command by Adit Ranadive <adit.262@gmail.com>
117 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000119
120#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <linux/sys.h>
123#include <linux/types.h>
124#include <linux/module.h>
125#include <linux/moduleparam.h>
126#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800127#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#include <linux/sched.h>
129#include <linux/slab.h>
130#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#include <linux/unistd.h>
132#include <linux/string.h>
133#include <linux/ptrace.h>
134#include <linux/errno.h>
135#include <linux/ioport.h>
136#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800137#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700138#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700139#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#include <linux/delay.h>
141#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800142#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#include <linux/init.h>
144#include <linux/skbuff.h>
145#include <linux/netdevice.h>
146#include <linux/inet.h>
147#include <linux/inetdevice.h>
148#include <linux/rtnetlink.h>
149#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700150#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#include <linux/in.h>
152#include <linux/ip.h>
153#include <linux/ipv6.h>
154#include <linux/udp.h>
155#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700156#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800158#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800159#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700160#include <linux/prefetch.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200161#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#include <net/checksum.h>
163#include <net/ipv6.h>
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200164#include <net/udp.h>
Stephen Rothwell73d94e92013-07-29 16:21:26 +1000165#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700167#ifdef CONFIG_XFRM
168#include <net/xfrm.h>
169#endif
Cong Wang4e58a022013-01-28 19:55:53 +0000170#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#include <asm/byteorder.h>
172#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700173#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000174#include <linux/io.h>
175#include <linux/timex.h>
176#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800178#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Jesper Dangaard Brouer40207262015-05-21 12:16:56 +0200180#define VERSION "2.75"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800182#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800183#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Joe Perchesf9467ea2010-06-21 12:29:14 +0000185#define func_enter() pr_debug("entering %s\n", __func__);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800188#define F_IPSRC_RND (1<<0) /* IP-Src Random */
189#define F_IPDST_RND (1<<1) /* IP-Dst Random */
190#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
191#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
192#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
193#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
194#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
195#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800196#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700197#define F_VID_RND (1<<9) /* Random VLAN ID */
198#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700199#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700200#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700201#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700202#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000203#define F_NODE (1<<15) /* Node memory alloc*/
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200204#define F_UDPCSUM (1<<16) /* Include UDP checksum */
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +0200205#define F_NO_TIMESTAMP (1<<17) /* Don't timestamp packets (default TS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000208#define T_STOP (1<<0) /* Stop run */
209#define T_RUN (1<<1) /* Start run */
210#define T_REMDEVALL (1<<2) /* Remove all devs */
211#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200213/* Xmit modes */
214#define M_START_XMIT 0 /* Default normal TX */
215#define M_NETIF_RECEIVE 1 /* Inject packets into stack */
John Fastabend0967f242016-07-02 14:12:54 -0700216#define M_QUEUE_XMIT 2 /* Inject packet into qdisc */
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200217
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200218/* If lock -- protects updating of if_list */
Eric Dumazet9a0b1e82016-10-15 17:50:49 +0200219#define if_lock(t) mutex_lock(&(t->if_lock));
220#define if_unlock(t) mutex_unlock(&(t->if_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/* Used to help with determining the pkts on receive */
223#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700224#define PG_PROC_DIR "pktgen"
225#define PGCTRL "pgctrl"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227#define MAX_CFLOWS 65536
228
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700229#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
230#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
231
Luiz Capitulino222f1802006-03-20 22:16:13 -0800232struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800233 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800234 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700235#ifdef CONFIG_XFRM
236 struct xfrm_state *x;
237#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700238 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239};
240
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700241/* flow flag bits */
242#define F_INIT (1<<0) /* flow has been initialized */
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /*
246 * Try to keep frequent/infrequent used vars. separated.
247 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800248 struct proc_dir_entry *entry; /* proc file */
249 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000250 struct list_head list; /* chaining in the thread's run-queue */
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200251 struct rcu_head rcu; /* freed by RCU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000253 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800254
255 /* If min != max, then we will either do a linear iteration, or
256 * we will do a random selection from within the range.
257 */
258 __u32 flags;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200259 int xmit_mode;
Amerigo Wang68bf9f02012-10-09 17:48:17 +0000260 int min_pkt_size;
261 int max_pkt_size;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700262 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800263 int nfrags;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200264 int removal_mark; /* non-zero => the device is marked for
265 * removal by worker thread */
266
Eric Dumazet26ad7872011-01-25 13:26:05 -0800267 struct page *page;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000268 u64 delay; /* nano-seconds */
269
Luiz Capitulino222f1802006-03-20 22:16:13 -0800270 __u64 count; /* Default No packets to send */
271 __u64 sofar; /* How many pkts we've sent so far */
272 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800273 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Luiz Capitulino222f1802006-03-20 22:16:13 -0800275 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Luiz Capitulino222f1802006-03-20 22:16:13 -0800277 __u32 clone_count;
278 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000279 * Or a failed transmit of some sort?
280 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800281 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000282 ktime_t next_tx;
283 ktime_t started_at;
284 ktime_t stopped_at;
285 u64 idle_acc; /* nano-seconds */
286
Luiz Capitulino222f1802006-03-20 22:16:13 -0800287 __u32 seq_num;
288
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000289 int clone_skb; /*
290 * Use multiple SKBs during packet gen.
291 * If this number is greater than 1, then
292 * that many copies of the same packet will be
293 * sent before a new packet is allocated.
294 * If you want to send 1024 identical packets
295 * before creating a new packet,
296 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800297 */
298
299 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
300 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
301 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
302 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
303
304 struct in6_addr in6_saddr;
305 struct in6_addr in6_daddr;
306 struct in6_addr cur_in6_daddr;
307 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800309 struct in6_addr min_in6_daddr;
310 struct in6_addr max_in6_daddr;
311 struct in6_addr min_in6_saddr;
312 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Luiz Capitulino222f1802006-03-20 22:16:13 -0800314 /* If we're doing ranges, random or incremental, then this
315 * defines the min/max for those ranges.
316 */
Al Viro252e3342006-11-14 20:48:11 -0800317 __be32 saddr_min; /* inclusive, source IP address */
318 __be32 saddr_max; /* exclusive, source IP address */
319 __be32 daddr_min; /* inclusive, dest IP address */
320 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Luiz Capitulino222f1802006-03-20 22:16:13 -0800322 __u16 udp_src_min; /* inclusive, source UDP port */
323 __u16 udp_src_max; /* exclusive, source UDP port */
324 __u16 udp_dst_min; /* inclusive, dest UDP port */
325 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700327 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000328 __u8 tos; /* six MSB of (former) IPv4 TOS
329 are for dscp codepoint */
330 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
331 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700332
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800333 /* MPLS */
Eric Dumazet95c96172012-04-15 05:58:06 +0000334 unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800335 __be32 labels[MAX_MPLS_LABELS];
336
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700337 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
338 __u8 vlan_p;
339 __u8 vlan_cfi;
340 __u16 vlan_id; /* 0xffff means no vlan tag */
341
342 __u8 svlan_p;
343 __u8 svlan_cfi;
344 __u16 svlan_id; /* 0xffff means no svlan tag */
345
Luiz Capitulino222f1802006-03-20 22:16:13 -0800346 __u32 src_mac_count; /* How many MACs to iterate through */
347 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Luiz Capitulino222f1802006-03-20 22:16:13 -0800349 unsigned char dst_mac[ETH_ALEN];
350 unsigned char src_mac[ETH_ALEN];
351
352 __u32 cur_dst_mac_offset;
353 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800354 __be32 cur_saddr;
355 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700356 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800357 __u16 cur_udp_dst;
358 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700359 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800360 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800361 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800362
363 __u8 hh[14];
364 /* = {
365 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
366
367 We fill in SRC address later
368 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
369 0x08, 0x00
370 };
371 */
372 __u16 pad; /* pad out the hh struct to an even 16 bytes */
373
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000374 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800375 * are transmitting the same one multiple times
376 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000377 struct net_device *odev; /* The out-going device.
378 * Note that the device should have it's
379 * pg_info pointer pointing back to this
380 * device.
381 * Set when the user specifies the out-going
382 * device name (not when the inject is
383 * started as it used to do.)
384 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000385 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 struct flow_state *flows;
Eric Dumazet95c96172012-04-15 05:58:06 +0000387 unsigned int cflows; /* Concurrent flows (config) */
388 unsigned int lflow; /* Flow length (config) */
389 unsigned int nflows; /* accumulated flows (stats) */
390 unsigned int curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700391
392 u16 queue_map_min;
393 u16 queue_map_max;
John Fastabend9e50e3a2010-11-16 19:12:28 +0000394 __u32 skb_priority; /* skb priority field */
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700395 unsigned int burst; /* number of duplicated packets to burst */
Robert Olssone99b99b2010-03-18 22:44:30 +0000396 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700397
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700398#ifdef CONFIG_XFRM
399 __u8 ipsmode; /* IPSEC mode (config) */
400 __u8 ipsproto; /* IPSEC type (config) */
Fan Dude4aee72014-01-03 11:18:30 +0800401 __u32 spi;
Fan Ducf93d472014-01-03 11:18:31 +0800402 struct dst_entry dst;
403 struct dst_ops dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700404#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800405 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
408struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800409 __be32 pgh_magic;
410 __be32 seq_num;
411 __be32 tv_sec;
412 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413};
414
Cong Wang4e58a022013-01-28 19:55:53 +0000415
416static int pg_net_id __read_mostly;
417
418struct pktgen_net {
419 struct net *net;
420 struct proc_dir_entry *proc_dir;
421 struct list_head pktgen_threads;
422 bool pktgen_exiting;
423};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425struct pktgen_thread {
Eric Dumazet9a0b1e82016-10-15 17:50:49 +0200426 struct mutex if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800427 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800428 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800429 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800430 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000432 /* Field for thread to receive "posted" events terminate,
433 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800434
435 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 int cpu;
437
Luiz Capitulino222f1802006-03-20 22:16:13 -0800438 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700439 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000440 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441};
442
443#define REMOVE 1
444#define FIND 0
445
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000446static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000447 "Packet Generator for packet performance testing. "
448 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Luiz Capitulino222f1802006-03-20 22:16:13 -0800450static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
451static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
452static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800453 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000455static void pktgen_run_all_threads(struct pktgen_net *pn);
456static void pktgen_reset_all_threads(struct pktgen_net *pn);
457static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000458
Luiz Capitulino222f1802006-03-20 22:16:13 -0800459static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000463static int pg_count_d __read_mostly = 1000;
464static int pg_delay_d __read_mostly;
465static int pg_clone_skb_d __read_mostly;
466static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Luiz Capitulino222fa072006-03-20 22:24:27 -0800468static DEFINE_MUTEX(pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470static struct notifier_block pktgen_notifier_block = {
471 .notifier_call = pktgen_device_event,
472};
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900475 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
477 */
478
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700479static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800480{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000481 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000485static ssize_t pgctrl_write(struct file *file, const char __user *buf,
486 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700488 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000489 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Mathias Krause09455742014-02-21 21:38:35 +0100491 if (!capable(CAP_NET_ADMIN))
492 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Mathias Krause20b0c712014-02-21 21:38:34 +0100494 if (count == 0)
495 return -EINVAL;
496
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700497 if (count > sizeof(data))
498 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Mathias Krause09455742014-02-21 21:38:35 +0100500 if (copy_from_user(data, buf, count))
501 return -EFAULT;
502
Mathias Krause20b0c712014-02-21 21:38:34 +0100503 data[count - 1] = 0; /* Strip trailing '\n' and terminate string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Luiz Capitulino222f1802006-03-20 22:16:13 -0800505 if (!strcmp(data, "stop"))
Cong Wang4e58a022013-01-28 19:55:53 +0000506 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Luiz Capitulino222f1802006-03-20 22:16:13 -0800508 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000509 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800511 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000512 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800513
Luiz Capitulino222f1802006-03-20 22:16:13 -0800514 else
Jesper Dangaard Brouer40207262015-05-21 12:16:56 +0200515 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Mathias Krause09455742014-02-21 21:38:35 +0100517 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700520static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Al Virod9dda782013-03-31 18:16:14 -0400522 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700523}
524
Arjan van de Ven9a321442007-02-12 00:55:35 -0800525static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800526 .owner = THIS_MODULE,
527 .open = pgctrl_open,
528 .read = seq_read,
529 .llseek = seq_lseek,
530 .write = pgctrl_write,
531 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700532};
533
534static int pktgen_if_show(struct seq_file *seq, void *v)
535{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000536 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000537 ktime_t stopped;
538 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Luiz Capitulino222f1802006-03-20 22:16:13 -0800540 seq_printf(seq,
541 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
542 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
543 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Luiz Capitulino222f1802006-03-20 22:16:13 -0800545 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000546 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
547 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000548 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Luiz Capitulino222f1802006-03-20 22:16:13 -0800550 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
551 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Robert Olsson45b270f2007-08-28 15:45:55 -0700553 seq_printf(seq,
554 " queue_map_min: %u queue_map_max: %u\n",
555 pkt_dev->queue_map_min,
556 pkt_dev->queue_map_max);
557
John Fastabend9e50e3a2010-11-16 19:12:28 +0000558 if (pkt_dev->skb_priority)
559 seq_printf(seq, " skb_priority: %u\n",
560 pkt_dev->skb_priority);
561
Luiz Capitulino222f1802006-03-20 22:16:13 -0800562 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000564 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
565 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
566 &pkt_dev->in6_saddr,
567 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
568 &pkt_dev->in6_daddr,
569 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000570 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800571 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000572 " dst_min: %s dst_max: %s\n",
573 pkt_dev->dst_min, pkt_dev->dst_max);
574 seq_printf(seq,
Jesper Dangaard Brouerd079abd2015-05-21 12:16:11 +0200575 " src_min: %s src_max: %s\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000576 pkt_dev->src_min, pkt_dev->src_max);
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700579 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Johannes Berge1749612008-10-27 15:59:26 -0700581 seq_printf(seq, "%pM ",
582 is_zero_ether_addr(pkt_dev->src_mac) ?
583 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Thomas Graf97dc48e2014-05-16 23:28:54 +0200585 seq_puts(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700586 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Luiz Capitulino222f1802006-03-20 22:16:13 -0800588 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000589 " udp_src_min: %d udp_src_max: %d"
590 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800591 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
592 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Luiz Capitulino222f1802006-03-20 22:16:13 -0800594 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800595 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700596 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800598 if (pkt_dev->nr_labels) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000599 unsigned int i;
Thomas Graf97dc48e2014-05-16 23:28:54 +0200600 seq_puts(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700601 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800602 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
603 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
604 }
605
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000606 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700607 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000608 pkt_dev->vlan_id, pkt_dev->vlan_p,
609 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700610
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000611 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700612 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000613 pkt_dev->svlan_id, pkt_dev->svlan_p,
614 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700615
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000616 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700617 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700618
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000619 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700620 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700621
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -0700622 if (pkt_dev->burst > 1)
623 seq_printf(seq, " burst: %d\n", pkt_dev->burst);
624
Robert Olssone99b99b2010-03-18 22:44:30 +0000625 if (pkt_dev->node >= 0)
626 seq_printf(seq, " node: %d\n", pkt_dev->node);
627
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200628 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE)
629 seq_puts(seq, " xmit_mode: netif_receive\n");
John Fastabend0967f242016-07-02 14:12:54 -0700630 else if (pkt_dev->xmit_mode == M_QUEUE_XMIT)
631 seq_puts(seq, " xmit_mode: xmit_queue\n");
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +0200632
Thomas Graf97dc48e2014-05-16 23:28:54 +0200633 seq_puts(seq, " Flags: ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800634
Luiz Capitulino222f1802006-03-20 22:16:13 -0800635 if (pkt_dev->flags & F_IPV6)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200636 seq_puts(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Luiz Capitulino222f1802006-03-20 22:16:13 -0800638 if (pkt_dev->flags & F_IPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200639 seq_puts(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Luiz Capitulino222f1802006-03-20 22:16:13 -0800641 if (pkt_dev->flags & F_IPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200642 seq_puts(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Luiz Capitulino222f1802006-03-20 22:16:13 -0800644 if (pkt_dev->flags & F_TXSIZE_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200645 seq_puts(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Luiz Capitulino222f1802006-03-20 22:16:13 -0800647 if (pkt_dev->flags & F_UDPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200648 seq_puts(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Luiz Capitulino222f1802006-03-20 22:16:13 -0800650 if (pkt_dev->flags & F_UDPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200651 seq_puts(seq, "UDPDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800652
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200653 if (pkt_dev->flags & F_UDPCSUM)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200654 seq_puts(seq, "UDPCSUM ");
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200655
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +0200656 if (pkt_dev->flags & F_NO_TIMESTAMP)
657 seq_puts(seq, "NO_TIMESTAMP ");
658
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800659 if (pkt_dev->flags & F_MPLS_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200660 seq_puts(seq, "MPLS_RND ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800661
Robert Olsson45b270f2007-08-28 15:45:55 -0700662 if (pkt_dev->flags & F_QUEUE_MAP_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200663 seq_puts(seq, "QUEUE_MAP_RND ");
Robert Olsson45b270f2007-08-28 15:45:55 -0700664
Robert Olssone6fce5b2008-08-07 02:23:01 -0700665 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200666 seq_puts(seq, "QUEUE_MAP_CPU ");
Robert Olssone6fce5b2008-08-07 02:23:01 -0700667
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700668 if (pkt_dev->cflows) {
669 if (pkt_dev->flags & F_FLOW_SEQ)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200670 seq_puts(seq, "FLOW_SEQ "); /*in sequence flows*/
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700671 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200672 seq_puts(seq, "FLOW_RND ");
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700673 }
674
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700675#ifdef CONFIG_XFRM
Fan Du81013282014-01-03 11:18:33 +0800676 if (pkt_dev->flags & F_IPSEC_ON) {
Thomas Graf97dc48e2014-05-16 23:28:54 +0200677 seq_puts(seq, "IPSEC ");
Fan Du81013282014-01-03 11:18:33 +0800678 if (pkt_dev->spi)
679 seq_printf(seq, "spi:%u", pkt_dev->spi);
680 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700681#endif
682
Luiz Capitulino222f1802006-03-20 22:16:13 -0800683 if (pkt_dev->flags & F_MACSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200684 seq_puts(seq, "MACSRC_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800685
686 if (pkt_dev->flags & F_MACDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200687 seq_puts(seq, "MACDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800688
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700689 if (pkt_dev->flags & F_VID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200690 seq_puts(seq, "VID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700691
692 if (pkt_dev->flags & F_SVID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200693 seq_puts(seq, "SVID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700694
Robert Olssone99b99b2010-03-18 22:44:30 +0000695 if (pkt_dev->flags & F_NODE)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200696 seq_puts(seq, "NODE_ALLOC ");
Robert Olssone99b99b2010-03-18 22:44:30 +0000697
Luiz Capitulino222f1802006-03-20 22:16:13 -0800698 seq_puts(seq, "\n");
699
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000700 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000701 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000702 idle = pkt_dev->idle_acc;
703 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800704
705 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000706 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800707 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000708 (unsigned long long)pkt_dev->errors);
709
710 seq_printf(seq,
711 " started: %lluus stopped: %lluus idle: %lluus\n",
712 (unsigned long long) ktime_to_us(pkt_dev->started_at),
713 (unsigned long long) ktime_to_us(stopped),
714 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800715
716 seq_printf(seq,
717 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700718 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
719 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Luiz Capitulino222f1802006-03-20 22:16:13 -0800721 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000722 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
723 &pkt_dev->cur_in6_saddr,
724 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800725 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000726 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
727 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Luiz Capitulino222f1802006-03-20 22:16:13 -0800729 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700730 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Robert Olsson45b270f2007-08-28 15:45:55 -0700732 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
733
Luiz Capitulino222f1802006-03-20 22:16:13 -0800734 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800737 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200739 seq_puts(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800744
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000745static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
746 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800747{
748 int i = 0;
749 *num = 0;
750
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700751 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000752 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800753 char c;
754 *num <<= 4;
755 if (get_user(c, &user_buffer[i]))
756 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000757 value = hex_to_bin(c);
758 if (value >= 0)
759 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800760 else
761 break;
762 }
763 return i;
764}
765
Luiz Capitulino222f1802006-03-20 22:16:13 -0800766static int count_trail_chars(const char __user * user_buffer,
767 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 int i;
770
771 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800772 char c;
773 if (get_user(c, &user_buffer[i]))
774 return -EFAULT;
775 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 case '\"':
777 case '\n':
778 case '\r':
779 case '\t':
780 case ' ':
781 case '=':
782 break;
783 default:
784 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787done:
788 return i;
789}
790
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000791static long num_arg(const char __user *user_buffer, unsigned long maxlen,
792 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000794 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800796
Paul Gortmakerd6182222010-10-18 12:14:44 +0000797 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800798 char c;
799 if (get_user(c, &user_buffer[i]))
800 return -EFAULT;
801 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800803 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 } else
805 break;
806 }
807 return i;
808}
809
Luiz Capitulino222f1802006-03-20 22:16:13 -0800810static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000812 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Paul Gortmakerd6182222010-10-18 12:14:44 +0000814 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800815 char c;
816 if (get_user(c, &user_buffer[i]))
817 return -EFAULT;
818 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 case '\"':
820 case '\n':
821 case '\r':
822 case '\t':
823 case ' ':
824 goto done_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 default:
826 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return i;
831}
832
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800833static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
834{
Eric Dumazet95c96172012-04-15 05:58:06 +0000835 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800836 char c;
837 ssize_t i = 0;
838 int len;
839
840 pkt_dev->nr_labels = 0;
841 do {
842 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700843 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800844 if (len <= 0)
845 return len;
846 pkt_dev->labels[n] = htonl(tmp);
847 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
848 pkt_dev->flags |= F_MPLS_RND;
849 i += len;
850 if (get_user(c, &buffer[i]))
851 return -EFAULT;
852 i++;
853 n++;
854 if (n >= MAX_MPLS_LABELS)
855 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700856 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800857
858 pkt_dev->nr_labels = n;
859 return i;
860}
861
Luiz Capitulino222f1802006-03-20 22:16:13 -0800862static ssize_t pktgen_if_write(struct file *file,
863 const char __user * user_buffer, size_t count,
864 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Joe Perches8a994a72010-07-12 10:50:23 +0000866 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800867 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000868 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 char name[16], valstr[32];
870 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800871 char *pg_result = NULL;
872 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800874
875 pg_result = &(pkt_dev->result[0]);
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (count < 1) {
Joe Perches294a0b72014-09-09 21:17:30 -0700878 pr_warn("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return -EINVAL;
880 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800881
Paul Gortmakerd6182222010-10-18 12:14:44 +0000882 max = count;
883 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800884 if (tmp < 0) {
Joe Perches294a0b72014-09-09 21:17:30 -0700885 pr_warn("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800886 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000888 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /* Read variable name */
891
892 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000893 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800894 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800897 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return -EFAULT;
899 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800900
901 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800903 if (len < 0)
904 return len;
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 i += len;
907
908 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000909 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700910 char tb[copy + 1];
911 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700913 tb[copy] = 0;
Joe Perchesf342cda2012-05-16 17:50:41 +0000914 pr_debug("%s,%lu buffer -:%s:-\n",
915 name, (unsigned long)count, tb);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 if (!strcmp(name, "min_pkt_size")) {
919 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000920 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800921 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800924 if (value < 14 + 20 + 8)
925 value = 14 + 20 + 8;
926 if (value != pkt_dev->min_pkt_size) {
927 pkt_dev->min_pkt_size = value;
928 pkt_dev->cur_pkt_size = value;
929 }
930 sprintf(pg_result, "OK: min_pkt_size=%u",
931 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return count;
933 }
934
Luiz Capitulino222f1802006-03-20 22:16:13 -0800935 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000937 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800938 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800941 if (value < 14 + 20 + 8)
942 value = 14 + 20 + 8;
943 if (value != pkt_dev->max_pkt_size) {
944 pkt_dev->max_pkt_size = value;
945 pkt_dev->cur_pkt_size = value;
946 }
947 sprintf(pg_result, "OK: max_pkt_size=%u",
948 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return count;
950 }
951
Luiz Capitulino222f1802006-03-20 22:16:13 -0800952 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 if (!strcmp(name, "pkt_size")) {
955 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000956 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800957 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800960 if (value < 14 + 20 + 8)
961 value = 14 + 20 + 8;
962 if (value != pkt_dev->min_pkt_size) {
963 pkt_dev->min_pkt_size = value;
964 pkt_dev->max_pkt_size = value;
965 pkt_dev->cur_pkt_size = value;
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
968 return count;
969 }
970
Luiz Capitulino222f1802006-03-20 22:16:13 -0800971 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000973 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800974 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800977 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 sprintf(pg_result, "OK: debug=%u", debug);
979 return count;
980 }
981
Luiz Capitulino222f1802006-03-20 22:16:13 -0800982 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000984 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800985 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 i += len;
988 pkt_dev->nfrags = value;
989 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
990 return count;
991 }
992 if (!strcmp(name, "delay")) {
993 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000994 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800995 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000998 if (value == 0x7FFFFFFF)
999 pkt_dev->delay = ULLONG_MAX;
1000 else
Eric Dumazet9240d712009-10-03 01:39:18 +00001001 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00001002
1003 sprintf(pg_result, "OK: delay=%llu",
1004 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return count;
1006 }
Daniel Turull43d28b62010-06-09 22:49:57 +00001007 if (!strcmp(name, "rate")) {
1008 len = num_arg(&user_buffer[i], 10, &value);
1009 if (len < 0)
1010 return len;
1011
1012 i += len;
1013 if (!value)
1014 return len;
1015 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
1016 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001017 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001018
1019 sprintf(pg_result, "OK: rate=%lu", value);
1020 return count;
1021 }
1022 if (!strcmp(name, "ratep")) {
1023 len = num_arg(&user_buffer[i], 10, &value);
1024 if (len < 0)
1025 return len;
1026
1027 i += len;
1028 if (!value)
1029 return len;
1030 pkt_dev->delay = NSEC_PER_SEC/value;
1031 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001032 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001033
1034 sprintf(pg_result, "OK: rate=%lu", value);
1035 return count;
1036 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001037 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001039 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001040 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001043 if (value != pkt_dev->udp_src_min) {
1044 pkt_dev->udp_src_min = value;
1045 pkt_dev->cur_udp_src = value;
1046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1048 return count;
1049 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001050 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001052 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001053 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001056 if (value != pkt_dev->udp_dst_min) {
1057 pkt_dev->udp_dst_min = value;
1058 pkt_dev->cur_udp_dst = value;
1059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1061 return count;
1062 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001063 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001065 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001066 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001069 if (value != pkt_dev->udp_src_max) {
1070 pkt_dev->udp_src_max = value;
1071 pkt_dev->cur_udp_src = value;
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1074 return count;
1075 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001076 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001078 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001079 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001082 if (value != pkt_dev->udp_dst_max) {
1083 pkt_dev->udp_dst_max = value;
1084 pkt_dev->cur_udp_dst = value;
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1087 return count;
1088 }
1089 if (!strcmp(name, "clone_skb")) {
1090 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001091 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001092 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001093 if ((value > 0) &&
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001094 ((pkt_dev->xmit_mode == M_NETIF_RECEIVE) ||
1095 !(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
Neil Hormand8873312011-07-26 06:05:37 +00001096 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001098 pkt_dev->clone_skb = value;
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1101 return count;
1102 }
1103 if (!strcmp(name, "count")) {
1104 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001105 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001106 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 i += len;
1109 pkt_dev->count = value;
1110 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001111 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return count;
1113 }
1114 if (!strcmp(name, "src_mac_count")) {
1115 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001116 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001117 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 i += len;
1120 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001121 pkt_dev->src_mac_count = value;
1122 pkt_dev->cur_src_mac_offset = 0;
1123 }
1124 sprintf(pg_result, "OK: src_mac_count=%d",
1125 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return count;
1127 }
1128 if (!strcmp(name, "dst_mac_count")) {
1129 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001130 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001131 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 i += len;
1134 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001135 pkt_dev->dst_mac_count = value;
1136 pkt_dev->cur_dst_mac_offset = 0;
1137 }
1138 sprintf(pg_result, "OK: dst_mac_count=%d",
1139 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return count;
1141 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001142 if (!strcmp(name, "burst")) {
1143 len = num_arg(&user_buffer[i], 10, &value);
1144 if (len < 0)
1145 return len;
1146
1147 i += len;
John Fastabend0967f242016-07-02 14:12:54 -07001148 if ((value > 1) &&
1149 ((pkt_dev->xmit_mode == M_QUEUE_XMIT) ||
1150 ((pkt_dev->xmit_mode == M_START_XMIT) &&
1151 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))))
Eric Dumazet52d6c8c2015-02-22 17:03:41 -08001152 return -ENOTSUPP;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07001153 pkt_dev->burst = value < 1 ? 1 : value;
1154 sprintf(pg_result, "OK: burst=%d", pkt_dev->burst);
1155 return count;
1156 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001157 if (!strcmp(name, "node")) {
1158 len = num_arg(&user_buffer[i], 10, &value);
1159 if (len < 0)
1160 return len;
1161
1162 i += len;
1163
1164 if (node_possible(value)) {
1165 pkt_dev->node = value;
1166 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001167 if (pkt_dev->page) {
1168 put_page(pkt_dev->page);
1169 pkt_dev->page = NULL;
1170 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001171 }
1172 else
1173 sprintf(pg_result, "ERROR: node not possible");
1174 return count;
1175 }
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001176 if (!strcmp(name, "xmit_mode")) {
1177 char f[32];
1178
1179 memset(f, 0, 32);
1180 len = strn_len(&user_buffer[i], sizeof(f) - 1);
1181 if (len < 0)
1182 return len;
1183
1184 if (copy_from_user(f, &user_buffer[i], len))
1185 return -EFAULT;
1186 i += len;
1187
1188 if (strcmp(f, "start_xmit") == 0) {
1189 pkt_dev->xmit_mode = M_START_XMIT;
1190 } else if (strcmp(f, "netif_receive") == 0) {
1191 /* clone_skb set earlier, not supported in this mode */
1192 if (pkt_dev->clone_skb > 0)
1193 return -ENOTSUPP;
1194
1195 pkt_dev->xmit_mode = M_NETIF_RECEIVE;
Alexei Starovoitov9eea9222015-05-11 15:19:48 -07001196
1197 /* make sure new packet is allocated every time
1198 * pktgen_xmit() is called
1199 */
1200 pkt_dev->last_ok = 1;
1201
1202 /* override clone_skb if user passed default value
1203 * at module loading time
1204 */
1205 pkt_dev->clone_skb = 0;
John Fastabend0967f242016-07-02 14:12:54 -07001206 } else if (strcmp(f, "queue_xmit") == 0) {
1207 pkt_dev->xmit_mode = M_QUEUE_XMIT;
1208 pkt_dev->last_ok = 1;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02001209 } else {
1210 sprintf(pg_result,
1211 "xmit_mode -:%s:- unknown\nAvailable modes: %s",
1212 f, "start_xmit, netif_receive\n");
1213 return count;
1214 }
1215 sprintf(pg_result, "OK: xmit_mode=%s", f);
1216 return count;
1217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001219 char f[32];
1220 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001222 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001223 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (copy_from_user(f, &user_buffer[i], len))
1226 return -EFAULT;
1227 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001228 if (strcmp(f, "IPSRC_RND") == 0)
1229 pkt_dev->flags |= F_IPSRC_RND;
1230
1231 else if (strcmp(f, "!IPSRC_RND") == 0)
1232 pkt_dev->flags &= ~F_IPSRC_RND;
1233
1234 else if (strcmp(f, "TXSIZE_RND") == 0)
1235 pkt_dev->flags |= F_TXSIZE_RND;
1236
1237 else if (strcmp(f, "!TXSIZE_RND") == 0)
1238 pkt_dev->flags &= ~F_TXSIZE_RND;
1239
1240 else if (strcmp(f, "IPDST_RND") == 0)
1241 pkt_dev->flags |= F_IPDST_RND;
1242
1243 else if (strcmp(f, "!IPDST_RND") == 0)
1244 pkt_dev->flags &= ~F_IPDST_RND;
1245
1246 else if (strcmp(f, "UDPSRC_RND") == 0)
1247 pkt_dev->flags |= F_UDPSRC_RND;
1248
1249 else if (strcmp(f, "!UDPSRC_RND") == 0)
1250 pkt_dev->flags &= ~F_UDPSRC_RND;
1251
1252 else if (strcmp(f, "UDPDST_RND") == 0)
1253 pkt_dev->flags |= F_UDPDST_RND;
1254
1255 else if (strcmp(f, "!UDPDST_RND") == 0)
1256 pkt_dev->flags &= ~F_UDPDST_RND;
1257
1258 else if (strcmp(f, "MACSRC_RND") == 0)
1259 pkt_dev->flags |= F_MACSRC_RND;
1260
1261 else if (strcmp(f, "!MACSRC_RND") == 0)
1262 pkt_dev->flags &= ~F_MACSRC_RND;
1263
1264 else if (strcmp(f, "MACDST_RND") == 0)
1265 pkt_dev->flags |= F_MACDST_RND;
1266
1267 else if (strcmp(f, "!MACDST_RND") == 0)
1268 pkt_dev->flags &= ~F_MACDST_RND;
1269
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001270 else if (strcmp(f, "MPLS_RND") == 0)
1271 pkt_dev->flags |= F_MPLS_RND;
1272
1273 else if (strcmp(f, "!MPLS_RND") == 0)
1274 pkt_dev->flags &= ~F_MPLS_RND;
1275
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001276 else if (strcmp(f, "VID_RND") == 0)
1277 pkt_dev->flags |= F_VID_RND;
1278
1279 else if (strcmp(f, "!VID_RND") == 0)
1280 pkt_dev->flags &= ~F_VID_RND;
1281
1282 else if (strcmp(f, "SVID_RND") == 0)
1283 pkt_dev->flags |= F_SVID_RND;
1284
1285 else if (strcmp(f, "!SVID_RND") == 0)
1286 pkt_dev->flags &= ~F_SVID_RND;
1287
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001288 else if (strcmp(f, "FLOW_SEQ") == 0)
1289 pkt_dev->flags |= F_FLOW_SEQ;
1290
Robert Olsson45b270f2007-08-28 15:45:55 -07001291 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1292 pkt_dev->flags |= F_QUEUE_MAP_RND;
1293
1294 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1295 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001296
1297 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1298 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1299
1300 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1301 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001302#ifdef CONFIG_XFRM
1303 else if (strcmp(f, "IPSEC") == 0)
1304 pkt_dev->flags |= F_IPSEC_ON;
1305#endif
1306
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001307 else if (strcmp(f, "!IPV6") == 0)
1308 pkt_dev->flags &= ~F_IPV6;
1309
Robert Olssone99b99b2010-03-18 22:44:30 +00001310 else if (strcmp(f, "NODE_ALLOC") == 0)
1311 pkt_dev->flags |= F_NODE;
1312
1313 else if (strcmp(f, "!NODE_ALLOC") == 0)
1314 pkt_dev->flags &= ~F_NODE;
1315
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001316 else if (strcmp(f, "UDPCSUM") == 0)
1317 pkt_dev->flags |= F_UDPCSUM;
1318
1319 else if (strcmp(f, "!UDPCSUM") == 0)
1320 pkt_dev->flags &= ~F_UDPCSUM;
1321
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001322 else if (strcmp(f, "NO_TIMESTAMP") == 0)
1323 pkt_dev->flags |= F_NO_TIMESTAMP;
1324
Jesper Dangaard Brouerf1f00d8ff2015-05-07 16:34:51 +02001325 else if (strcmp(f, "!NO_TIMESTAMP") == 0)
1326 pkt_dev->flags &= ~F_NO_TIMESTAMP;
1327
Luiz Capitulino222f1802006-03-20 22:16:13 -08001328 else {
1329 sprintf(pg_result,
1330 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1331 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001332 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001333 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
1334 "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
1335 "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02001336 "NO_TIMESTAMP, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001337#ifdef CONFIG_XFRM
1338 "IPSEC, "
1339#endif
1340 "NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001341 return count;
1342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1344 return count;
1345 }
1346 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1347 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001348 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001349 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Luiz Capitulino222f1802006-03-20 22:16:13 -08001351 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001353 buf[len] = 0;
1354 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1355 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1356 strncpy(pkt_dev->dst_min, buf, len);
1357 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1358 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1359 }
1360 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001361 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001362 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1364 return count;
1365 }
1366 if (!strcmp(name, "dst_max")) {
1367 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001368 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001369 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Luiz Capitulino222f1802006-03-20 22:16:13 -08001372 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return -EFAULT;
1374
Luiz Capitulino222f1802006-03-20 22:16:13 -08001375 buf[len] = 0;
1376 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1377 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1378 strncpy(pkt_dev->dst_max, buf, len);
1379 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1380 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1381 }
1382 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001383 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 i += len;
1385 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1386 return count;
1387 }
1388 if (!strcmp(name, "dst6")) {
1389 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001390 if (len < 0)
1391 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 pkt_dev->flags |= F_IPV6;
1394
Luiz Capitulino222f1802006-03-20 22:16:13 -08001395 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001397 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Amerigo Wangc468fb12012-10-09 17:48:20 +00001399 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001400 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001402 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Luiz Capitulino222f1802006-03-20 22:16:13 -08001404 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001405 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Luiz Capitulino222f1802006-03-20 22:16:13 -08001407 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 sprintf(pg_result, "OK: dst6=%s", buf);
1409 return count;
1410 }
1411 if (!strcmp(name, "dst6_min")) {
1412 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001413 if (len < 0)
1414 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 pkt_dev->flags |= F_IPV6;
1417
Luiz Capitulino222f1802006-03-20 22:16:13 -08001418 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001420 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Amerigo Wangc468fb12012-10-09 17:48:20 +00001422 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001423 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001425 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001426 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001427 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Luiz Capitulino222f1802006-03-20 22:16:13 -08001429 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 sprintf(pg_result, "OK: dst6_min=%s", buf);
1431 return count;
1432 }
1433 if (!strcmp(name, "dst6_max")) {
1434 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001435 if (len < 0)
1436 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 pkt_dev->flags |= F_IPV6;
1439
Luiz Capitulino222f1802006-03-20 22:16:13 -08001440 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001442 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Amerigo Wangc468fb12012-10-09 17:48:20 +00001444 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001445 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Luiz Capitulino222f1802006-03-20 22:16:13 -08001447 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001448 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Luiz Capitulino222f1802006-03-20 22:16:13 -08001450 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 sprintf(pg_result, "OK: dst6_max=%s", buf);
1452 return count;
1453 }
1454 if (!strcmp(name, "src6")) {
1455 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001456 if (len < 0)
1457 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 pkt_dev->flags |= F_IPV6;
1460
Luiz Capitulino222f1802006-03-20 22:16:13 -08001461 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001463 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Amerigo Wangc468fb12012-10-09 17:48:20 +00001465 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001466 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001468 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Luiz Capitulino222f1802006-03-20 22:16:13 -08001470 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001471 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001472
1473 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 sprintf(pg_result, "OK: src6=%s", buf);
1475 return count;
1476 }
1477 if (!strcmp(name, "src_min")) {
1478 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001479 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001480 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001481
Luiz Capitulino222f1802006-03-20 22:16:13 -08001482 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001484 buf[len] = 0;
1485 if (strcmp(buf, pkt_dev->src_min) != 0) {
1486 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1487 strncpy(pkt_dev->src_min, buf, len);
1488 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1489 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1490 }
1491 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001492 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 i += len;
1494 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1495 return count;
1496 }
1497 if (!strcmp(name, "src_max")) {
1498 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001499 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001500 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001501
Luiz Capitulino222f1802006-03-20 22:16:13 -08001502 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001504 buf[len] = 0;
1505 if (strcmp(buf, pkt_dev->src_max) != 0) {
1506 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1507 strncpy(pkt_dev->src_max, buf, len);
1508 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1509 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1510 }
1511 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001512 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 i += len;
1514 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1515 return count;
1516 }
1517 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001519 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001520 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001523 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001526 if (!mac_pton(valstr, pkt_dev->dst_mac))
1527 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001529 ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001530
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001531 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return count;
1533 }
1534 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001536 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001537 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001540 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001543 if (!mac_pton(valstr, pkt_dev->src_mac))
1544 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001545 /* Set up Src MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001546 ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001547
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001548 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return count;
1550 }
1551
Luiz Capitulino222f1802006-03-20 22:16:13 -08001552 if (!strcmp(name, "clear_counters")) {
1553 pktgen_clear_counters(pkt_dev);
1554 sprintf(pg_result, "OK: Clearing counters.\n");
1555 return count;
1556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 if (!strcmp(name, "flows")) {
1559 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001560 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001561 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 i += len;
1564 if (value > MAX_CFLOWS)
1565 value = MAX_CFLOWS;
1566
1567 pkt_dev->cflows = value;
1568 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1569 return count;
1570 }
Fan Du6bae9192014-01-10 14:39:13 +08001571#ifdef CONFIG_XFRM
Fan Dude4aee72014-01-03 11:18:30 +08001572 if (!strcmp(name, "spi")) {
1573 len = num_arg(&user_buffer[i], 10, &value);
1574 if (len < 0)
1575 return len;
1576
1577 i += len;
1578 pkt_dev->spi = value;
1579 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1580 return count;
1581 }
Fan Du6bae9192014-01-10 14:39:13 +08001582#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (!strcmp(name, "flowlen")) {
1584 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001585 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001586 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 i += len;
1589 pkt_dev->lflow = value;
1590 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1591 return count;
1592 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001593
Robert Olsson45b270f2007-08-28 15:45:55 -07001594 if (!strcmp(name, "queue_map_min")) {
1595 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001596 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001597 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001598
Robert Olsson45b270f2007-08-28 15:45:55 -07001599 i += len;
1600 pkt_dev->queue_map_min = value;
1601 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1602 return count;
1603 }
1604
1605 if (!strcmp(name, "queue_map_max")) {
1606 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001607 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001608 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001609
Robert Olsson45b270f2007-08-28 15:45:55 -07001610 i += len;
1611 pkt_dev->queue_map_max = value;
1612 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1613 return count;
1614 }
1615
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001616 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001617 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001618
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001619 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001620 if (len < 0)
1621 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001622 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001623 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001624 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001625 cnt += sprintf(pg_result + cnt,
1626 "%08x%s", ntohl(pkt_dev->labels[n]),
1627 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001628
1629 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1630 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1631 pkt_dev->svlan_id = 0xffff;
1632
1633 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001634 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001635 }
1636 return count;
1637 }
1638
1639 if (!strcmp(name, "vlan_id")) {
1640 len = num_arg(&user_buffer[i], 4, &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 <= 4095) {
1646 pkt_dev->vlan_id = value; /* turn on VLAN */
1647
1648 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001649 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001650
1651 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001652 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001653
1654 pkt_dev->nr_labels = 0; /* turn off MPLS */
1655 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1656 } else {
1657 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1658 pkt_dev->svlan_id = 0xffff;
1659
1660 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001661 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001662 }
1663 return count;
1664 }
1665
1666 if (!strcmp(name, "vlan_p")) {
1667 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001668 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001669 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001670
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001671 i += len;
1672 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1673 pkt_dev->vlan_p = value;
1674 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1675 } else {
1676 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1677 }
1678 return count;
1679 }
1680
1681 if (!strcmp(name, "vlan_cfi")) {
1682 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001683 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001684 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001685
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001686 i += len;
1687 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1688 pkt_dev->vlan_cfi = value;
1689 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1690 } else {
1691 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1692 }
1693 return count;
1694 }
1695
1696 if (!strcmp(name, "svlan_id")) {
1697 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001698 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001699 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001700
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001701 i += len;
1702 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1703 pkt_dev->svlan_id = value; /* turn on SVLAN */
1704
1705 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001706 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001707
1708 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001709 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001710
1711 pkt_dev->nr_labels = 0; /* turn off MPLS */
1712 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1713 } else {
1714 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1715 pkt_dev->svlan_id = 0xffff;
1716
1717 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001718 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001719 }
1720 return count;
1721 }
1722
1723 if (!strcmp(name, "svlan_p")) {
1724 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001725 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001726 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001727
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001728 i += len;
1729 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1730 pkt_dev->svlan_p = value;
1731 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1732 } else {
1733 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1734 }
1735 return count;
1736 }
1737
1738 if (!strcmp(name, "svlan_cfi")) {
1739 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001740 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001741 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001742
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001743 i += len;
1744 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1745 pkt_dev->svlan_cfi = value;
1746 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1747 } else {
1748 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1749 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001750 return count;
1751 }
1752
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001753 if (!strcmp(name, "tos")) {
1754 __u32 tmp_value = 0;
1755 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001756 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001757 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001758
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001759 i += len;
1760 if (len == 2) {
1761 pkt_dev->tos = tmp_value;
1762 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1763 } else {
1764 sprintf(pg_result, "ERROR: tos must be 00-ff");
1765 }
1766 return count;
1767 }
1768
1769 if (!strcmp(name, "traffic_class")) {
1770 __u32 tmp_value = 0;
1771 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001772 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001773 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001774
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001775 i += len;
1776 if (len == 2) {
1777 pkt_dev->traffic_class = tmp_value;
1778 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1779 } else {
1780 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1781 }
1782 return count;
1783 }
1784
John Fastabend9e50e3a2010-11-16 19:12:28 +00001785 if (!strcmp(name, "skb_priority")) {
1786 len = num_arg(&user_buffer[i], 9, &value);
1787 if (len < 0)
1788 return len;
1789
1790 i += len;
1791 pkt_dev->skb_priority = value;
1792 sprintf(pg_result, "OK: skb_priority=%i",
1793 pkt_dev->skb_priority);
1794 return count;
1795 }
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1798 return -EINVAL;
1799}
1800
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001801static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Al Virod9dda782013-03-31 18:16:14 -04001803 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001804}
1805
Arjan van de Ven9a321442007-02-12 00:55:35 -08001806static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001807 .owner = THIS_MODULE,
1808 .open = pktgen_if_open,
1809 .read = seq_read,
1810 .llseek = seq_lseek,
1811 .write = pktgen_if_write,
1812 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001813};
1814
1815static int pktgen_thread_show(struct seq_file *seq, void *v)
1816{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001817 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001818 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001820 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Thomas Graf97dc48e2014-05-16 23:28:54 +02001822 seq_puts(seq, "Running: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001823
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001824 rcu_read_lock();
1825 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001826 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001827 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Thomas Graf97dc48e2014-05-16 23:28:54 +02001829 seq_puts(seq, "\nStopped: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001830
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001831 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001832 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001833 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001836 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 else
Thomas Graf97dc48e2014-05-16 23:28:54 +02001838 seq_puts(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001840 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
1844
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001845static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001846 const char __user * user_buffer,
1847 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Joe Perches8a994a72010-07-12 10:50:23 +00001849 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001850 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001851 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001853 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001856 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return -EINVAL;
1858 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001859
Paul Gortmakerd6182222010-10-18 12:14:44 +00001860 max = count;
1861 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001862 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001863 return len;
1864
Paul Gortmakerd6182222010-10-18 12:14:44 +00001865 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* Read variable name */
1868
1869 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001870 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001871 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 memset(name, 0, sizeof(name));
1874 if (copy_from_user(name, &user_buffer[i], len))
1875 return -EFAULT;
1876 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001877
Luiz Capitulino222f1802006-03-20 22:16:13 -08001878 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001880 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001881 return len;
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 i += len;
1884
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001885 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001886 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Luiz Capitulino222f1802006-03-20 22:16:13 -08001888 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001889 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 ret = -EINVAL;
1891 goto out;
1892 }
1893
1894 pg_result = &(t->result[0]);
1895
Luiz Capitulino222f1802006-03-20 22:16:13 -08001896 if (!strcmp(name, "add_device")) {
1897 char f[32];
1898 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001900 if (len < 0) {
1901 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 goto out;
1903 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001904 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return -EFAULT;
1906 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001907 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001908 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001909 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001910 if (!ret) {
1911 ret = count;
1912 sprintf(pg_result, "OK: add_device=%s", f);
1913 } else
1914 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 goto out;
1916 }
1917
Luiz Capitulino222f1802006-03-20 22:16:13 -08001918 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001919 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001920 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001921 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001922 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001924 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 goto out;
1926 }
1927
Luiz Capitulino222f1802006-03-20 22:16:13 -08001928 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001929 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001930 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 goto out;
1932 }
1933
1934 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001935out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 return ret;
1937}
1938
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001939static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Al Virod9dda782013-03-31 18:16:14 -04001941 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
Arjan van de Ven9a321442007-02-12 00:55:35 -08001944static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001945 .owner = THIS_MODULE,
1946 .open = pktgen_thread_open,
1947 .read = seq_read,
1948 .llseek = seq_lseek,
1949 .write = pktgen_thread_write,
1950 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001951};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001954static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1955 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
1957 struct pktgen_thread *t;
1958 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001959 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Cong Wang4e58a022013-01-28 19:55:53 +00001961 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001962 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001964 if (remove) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001965 pkt_dev->removal_mark = 1;
1966 t->control |= T_REMDEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 break;
1969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001971 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001974/*
1975 * mark a device for removal
1976 */
Cong Wang4e58a022013-01-28 19:55:53 +00001977static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
1979 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001980 const int max_tries = 10, msec_per_try = 125;
1981 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001982
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001983 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001984 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001985
Luiz Capitulino222f1802006-03-20 22:16:13 -08001986 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001987
Cong Wang4e58a022013-01-28 19:55:53 +00001988 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001989 if (pkt_dev == NULL)
1990 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001991
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001992 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001993 pr_debug("%s: waiting for %s to disappear....\n",
1994 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001995 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001996 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001997
1998 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001999 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
2000 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002001 break;
2002 }
2003
2004 }
2005
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002006 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002007}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002008
Cong Wang4e58a022013-01-28 19:55:53 +00002009static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08002010{
2011 struct pktgen_thread *t;
2012
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02002013 mutex_lock(&pktgen_thread_lock);
2014
Cong Wang4e58a022013-01-28 19:55:53 +00002015 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08002016 struct pktgen_dev *pkt_dev;
2017
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02002018 if_lock(t);
2019 list_for_each_entry(pkt_dev, &t->if_list, list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08002020 if (pkt_dev->odev != dev)
2021 continue;
2022
David Howellsa8ca16e2013-04-12 17:27:28 +01002023 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002024
Alexey Dobriyan29753152009-08-28 23:34:43 -07002025 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00002026 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07002027 &pktgen_if_fops,
2028 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002029 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002030 pr_err("can't move proc entry for '%s'\n",
2031 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002032 break;
2033 }
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02002034 if_unlock(t);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002035 }
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02002036 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
Luiz Capitulino222f1802006-03-20 22:16:13 -08002039static int pktgen_device_event(struct notifier_block *unused,
2040 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
Jiri Pirko351638e2013-05-28 01:30:21 +00002042 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00002043 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Cong Wang4e58a022013-01-28 19:55:53 +00002045 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02002046 return NOTIFY_DONE;
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 /* It is OK that we do not hold the group lock right now,
2049 * as we run under the RTNL lock.
2050 */
2051
2052 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08002053 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00002054 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00002058 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 return NOTIFY_DONE;
2063}
2064
Cong Wang4e58a022013-01-28 19:55:53 +00002065static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
2066 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002067 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002068{
2069 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00002070 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07002071
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002072 for (i = 0; ifname[i] != '@'; i++) {
2073 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07002074 break;
2075
2076 b[i] = ifname[i];
2077 }
2078 b[i] = 0;
2079
Cong Wang4e58a022013-01-28 19:55:53 +00002080 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07002081}
2082
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084/* Associate pktgen_dev with a device. */
2085
Cong Wang4e58a022013-01-28 19:55:53 +00002086static int pktgen_setup_dev(const struct pktgen_net *pn,
2087 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002088{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08002090 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (pkt_dev->odev) {
2094 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002095 pkt_dev->odev = NULL;
2096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Cong Wang4e58a022013-01-28 19:55:53 +00002098 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002100 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002101 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002105 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002106 err = -EINVAL;
2107 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002108 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002109 err = -ENETDOWN;
2110 } else {
2111 pkt_dev->odev = odev;
2112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002116 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
2119/* Read pkt_dev from the interface and set up internal pktgen_dev
2120 * structure to have the right information to create/send packets
2121 */
2122static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2123{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002124 int ntxq;
2125
Luiz Capitulino222f1802006-03-20 22:16:13 -08002126 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002127 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002128 sprintf(pkt_dev->result,
2129 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2130 return;
2131 }
2132
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002133 /* make sure that we don't pick a non-existing transmit queue */
2134 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002135
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002136 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perches294a0b72014-09-09 21:17:30 -07002137 pr_warn("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2138 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2139 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002140 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002141 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002142 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perches294a0b72014-09-09 21:17:30 -07002143 pr_warn("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2144 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2145 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002146 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002147 }
2148
Luiz Capitulino222f1802006-03-20 22:16:13 -08002149 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002151 if (is_zero_ether_addr(pkt_dev->src_mac))
Joe Perches9ea08b12014-01-20 09:52:19 -08002152 ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Luiz Capitulino222f1802006-03-20 22:16:13 -08002154 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08002155 ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Luiz Capitulino222f1802006-03-20 22:16:13 -08002157 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002158 int i, set = 0, err = 1;
2159 struct inet6_dev *idev;
2160
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002161 if (pkt_dev->min_pkt_size == 0) {
2162 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2163 + sizeof(struct udphdr)
2164 + sizeof(struct pktgen_hdr)
2165 + pkt_dev->pkt_overhead;
2166 }
2167
Luiz Capitulino222f1802006-03-20 22:16:13 -08002168 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2169 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 set = 1;
2171 break;
2172 }
2173
Luiz Capitulino222f1802006-03-20 22:16:13 -08002174 if (!set) {
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 /*
2177 * Use linklevel address if unconfigured.
2178 *
2179 * use ipv6_get_lladdr if/when it's get exported
2180 */
2181
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002182 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002183 idev = __in6_dev_get(pkt_dev->odev);
2184 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 struct inet6_ifaddr *ifp;
2186
2187 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002188 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2189 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002190 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002191 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 err = 0;
2193 break;
2194 }
2195 }
2196 read_unlock_bh(&idev->lock);
2197 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002198 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002199 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002200 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002202 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002203 if (pkt_dev->min_pkt_size == 0) {
2204 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2205 + sizeof(struct udphdr)
2206 + sizeof(struct pktgen_hdr)
2207 + pkt_dev->pkt_overhead;
2208 }
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 pkt_dev->saddr_min = 0;
2211 pkt_dev->saddr_max = 0;
2212 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002213
2214 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002217 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (in_dev) {
2219 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002220 pkt_dev->saddr_min =
2221 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 pkt_dev->saddr_max = pkt_dev->saddr_min;
2223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
2225 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002226 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2228 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2229 }
2230
2231 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2232 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2233 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002234 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002235 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2236 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2237 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2238
Luiz Capitulino222f1802006-03-20 22:16:13 -08002239 pkt_dev->cur_dst_mac_offset = 0;
2240 pkt_dev->cur_src_mac_offset = 0;
2241 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2242 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2243 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2244 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 pkt_dev->nflows = 0;
2246}
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002249static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2250{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002251 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002252 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002253 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002254
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002255 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2256 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002257
Daniel Turull43d28b62010-06-09 22:49:57 +00002258 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002259 if (remaining <= 0)
2260 goto out;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002261
Daniel Borkmann398f3822012-10-28 08:27:19 +00002262 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002263 if (remaining < 100000) {
2264 /* for small delays (<100us), just loop until limit is reached */
2265 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002266 end_time = ktime_get();
2267 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002268 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002269 /* see do_nanosleep */
2270 hrtimer_init_sleeper(&t, current);
2271 do {
2272 set_current_state(TASK_INTERRUPTIBLE);
2273 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002274
2275 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002278 hrtimer_cancel(&t.timer);
2279 } while (t.task && pkt_dev->running && !signal_pending(current));
2280 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002281 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002283
2284 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002285out:
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002286 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Guenter Roeckbcf91bd2016-05-26 17:21:06 -07002287 destroy_hrtimer_on_stack(&t.timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288}
2289
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002290static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2291{
Paolo Abeni63d75462016-09-30 16:56:45 +02002292 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002293 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2294 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2295 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2296}
2297
Stephen Hemminger648fda72009-08-27 13:55:07 +00002298static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002299{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002300 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002301}
2302
2303static inline int f_pick(struct pktgen_dev *pkt_dev)
2304{
2305 int flow = pkt_dev->curfl;
2306
2307 if (pkt_dev->flags & F_FLOW_SEQ) {
2308 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2309 /* reset time */
2310 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002311 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002312 pkt_dev->curfl += 1;
2313 if (pkt_dev->curfl >= pkt_dev->cflows)
2314 pkt_dev->curfl = 0; /*reset */
2315 }
2316 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002317 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002318 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002319
Robert Olsson1211a642008-08-05 18:44:26 -07002320 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002321 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002322 pkt_dev->flows[flow].flags = 0;
2323 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002324 }
2325
2326 return pkt_dev->curfl;
2327}
2328
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002329
2330#ifdef CONFIG_XFRM
2331/* If there was already an IPSEC SA, we keep it as is, else
2332 * we go look for it ...
2333*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002334#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002335static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002336{
2337 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002338 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002339 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002340
2341 if (pkt_dev->spi) {
2342 /* We need as quick as possible to find the right SA
2343 * Searching with minimum criteria to archieve this.
2344 */
2345 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2346 } else {
2347 /* slow path: we dont already have xfrm_state */
2348 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
2349 (xfrm_address_t *)&pkt_dev->cur_daddr,
2350 (xfrm_address_t *)&pkt_dev->cur_saddr,
2351 AF_INET,
2352 pkt_dev->ipsmode,
2353 pkt_dev->ipsproto, 0);
2354 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002355 if (x) {
2356 pkt_dev->flows[flow].x = x;
2357 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002358 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002359 }
2360
2361 }
2362}
2363#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002364static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2365{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002366
2367 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2368 pkt_dev->cur_queue_map = smp_processor_id();
2369
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002370 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002371 __u16 t;
2372 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002373 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002374 (pkt_dev->queue_map_max -
2375 pkt_dev->queue_map_min + 1)
2376 + pkt_dev->queue_map_min;
2377 } else {
2378 t = pkt_dev->cur_queue_map + 1;
2379 if (t > pkt_dev->queue_map_max)
2380 t = pkt_dev->queue_map_min;
2381 }
2382 pkt_dev->cur_queue_map = t;
2383 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002384 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 -07002385}
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387/* Increment/randomize headers according to flags and current values
2388 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2389 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002390static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2391{
2392 __u32 imn;
2393 __u32 imx;
2394 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002396 if (pkt_dev->cflows)
2397 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
2399 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002400 if (pkt_dev->src_mac_count > 1) {
2401 __u32 mc;
2402 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Luiz Capitulino222f1802006-03-20 22:16:13 -08002404 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002405 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002406 else {
2407 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002408 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002409 pkt_dev->src_mac_count)
2410 pkt_dev->cur_src_mac_offset = 0;
2411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Luiz Capitulino222f1802006-03-20 22:16:13 -08002413 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2414 pkt_dev->hh[11] = tmp;
2415 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2416 pkt_dev->hh[10] = tmp;
2417 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2418 pkt_dev->hh[9] = tmp;
2419 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2420 pkt_dev->hh[8] = tmp;
2421 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2422 pkt_dev->hh[7] = tmp;
2423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Luiz Capitulino222f1802006-03-20 22:16:13 -08002425 /* Deal with Destination MAC */
2426 if (pkt_dev->dst_mac_count > 1) {
2427 __u32 mc;
2428 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Luiz Capitulino222f1802006-03-20 22:16:13 -08002430 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002431 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Luiz Capitulino222f1802006-03-20 22:16:13 -08002433 else {
2434 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002435 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002436 pkt_dev->dst_mac_count) {
2437 pkt_dev->cur_dst_mac_offset = 0;
2438 }
2439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Luiz Capitulino222f1802006-03-20 22:16:13 -08002441 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2442 pkt_dev->hh[5] = tmp;
2443 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2444 pkt_dev->hh[4] = tmp;
2445 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2446 pkt_dev->hh[3] = tmp;
2447 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2448 pkt_dev->hh[2] = tmp;
2449 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2450 pkt_dev->hh[1] = tmp;
2451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002453 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002454 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002455 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002456 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2457 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002458 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002459 htonl(0x000fffff));
2460 }
2461
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002462 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002463 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002464 }
2465
2466 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002467 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002468 }
2469
Luiz Capitulino222f1802006-03-20 22:16:13 -08002470 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2471 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002472 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002473 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2474 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Luiz Capitulino222f1802006-03-20 22:16:13 -08002476 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 pkt_dev->cur_udp_src++;
2478 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2479 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002480 }
2481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Luiz Capitulino222f1802006-03-20 22:16:13 -08002483 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2484 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002485 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002486 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2487 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002488 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002490 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002492 }
2493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495 if (!(pkt_dev->flags & F_IPV6)) {
2496
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002497 imn = ntohl(pkt_dev->saddr_min);
2498 imx = ntohl(pkt_dev->saddr_max);
2499 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002501 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002502 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 else {
2504 t = ntohl(pkt_dev->cur_saddr);
2505 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002506 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 }
2510 pkt_dev->cur_saddr = htonl(t);
2511 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002512
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002513 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2515 } else {
Al Viro252e3342006-11-14 20:48:11 -08002516 imn = ntohl(pkt_dev->daddr_min);
2517 imx = ntohl(pkt_dev->daddr_max);
2518 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002520 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 if (pkt_dev->flags & F_IPDST_RND) {
2522
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002523 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002524 t = prandom_u32() %
2525 (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002526 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002527 } while (ipv4_is_loopback(s) ||
2528 ipv4_is_multicast(s) ||
2529 ipv4_is_lbcast(s) ||
2530 ipv4_is_zeronet(s) ||
2531 ipv4_is_local_multicast(s));
Al Viro252e3342006-11-14 20:48:11 -08002532 pkt_dev->cur_daddr = s;
2533 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 t = ntohl(pkt_dev->cur_daddr);
2535 t++;
2536 if (t > imx) {
2537 t = imn;
2538 }
2539 pkt_dev->cur_daddr = htonl(t);
2540 }
2541 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002542 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002543 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002544 pkt_dev->flows[flow].cur_daddr =
2545 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002546#ifdef CONFIG_XFRM
2547 if (pkt_dev->flags & F_IPSEC_ON)
2548 get_ipsec_sa(pkt_dev, flow);
2549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 pkt_dev->nflows++;
2551 }
2552 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002553 } else { /* IPV6 * */
2554
Joe Perches06e30412012-10-18 17:55:31 +00002555 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 int i;
2557
2558 /* Only random destinations yet */
2559
Luiz Capitulino222f1802006-03-20 22:16:13 -08002560 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002562 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002563 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2564 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 }
2568
Luiz Capitulino222f1802006-03-20 22:16:13 -08002569 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2570 __u32 t;
2571 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002572 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002573 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2574 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002575 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002577 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002579 }
2580 pkt_dev->cur_pkt_size = t;
2581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002583 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 pkt_dev->flows[flow].count++;
2586}
2587
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002588
2589#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002590static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d472014-01-03 11:18:31 +08002591
2592 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2593};
2594
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002595static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2596{
2597 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2598 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002599 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002600
2601 if (!x)
2602 return 0;
2603 /* XXX: we dont support tunnel mode for now until
2604 * we resolve the dst issue */
Fan Ducf93d472014-01-03 11:18:31 +08002605 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002606 return 0;
2607
Fan Ducf93d472014-01-03 11:18:31 +08002608 /* But when user specify an valid SPI, transformation
2609 * supports both transport/tunnel mode + ESP/AH type.
2610 */
2611 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
2612 skb->_skb_refdst = (unsigned long)&pkt_dev->dst | SKB_DST_NOREF;
2613
2614 rcu_read_lock_bh();
Herbert Xu13996372007-10-17 21:35:51 -07002615 err = x->outer_mode->output(x, skb);
Fan Ducf93d472014-01-03 11:18:31 +08002616 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002617 if (err) {
2618 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002619 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002620 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002621 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002622 if (err) {
2623 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002624 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002625 }
Fan Du0af0a412014-01-03 11:18:27 +08002626 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002627 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002628 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002629 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002630error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002631 return err;
2632}
2633
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002634static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002635{
2636 if (pkt_dev->cflows) {
2637 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002638 int i;
2639 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002640 struct xfrm_state *x = pkt_dev->flows[i].x;
2641 if (x) {
2642 xfrm_state_put(x);
2643 pkt_dev->flows[i].x = NULL;
2644 }
2645 }
2646 }
2647}
2648
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002649static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002650 struct sk_buff *skb, __be16 protocol)
2651{
2652 if (pkt_dev->flags & F_IPSEC_ON) {
2653 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2654 int nhead = 0;
2655 if (x) {
Eric Dumazetd4969582015-05-25 16:06:37 -07002656 struct ethhdr *eth;
fan.du38682042013-12-01 16:28:48 +08002657 struct iphdr *iph;
Eric Dumazetd4969582015-05-25 16:06:37 -07002658 int ret;
fan.du38682042013-12-01 16:28:48 +08002659
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002660 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002661 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002662 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2663 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002664 pr_err("Error expanding ipsec packet %d\n",
2665 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002666 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002667 }
2668 }
2669
2670 /* ipsec is not expecting ll header */
2671 skb_pull(skb, ETH_HLEN);
2672 ret = pktgen_output_ipsec(skb, pkt_dev);
2673 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002674 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002675 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002676 }
2677 /* restore ll */
Eric Dumazetd4969582015-05-25 16:06:37 -07002678 eth = (struct ethhdr *)skb_push(skb, ETH_HLEN);
2679 memcpy(eth, pkt_dev->hh, 2 * ETH_ALEN);
2680 eth->h_proto = protocol;
fan.du38682042013-12-01 16:28:48 +08002681
2682 /* Update IPv4 header len as well as checksum value */
2683 iph = ip_hdr(skb);
2684 iph->tot_len = htons(skb->len - ETH_HLEN);
2685 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002686 }
2687 }
2688 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002689err:
2690 kfree_skb(skb);
2691 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002692}
2693#endif
2694
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002695static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2696{
Eric Dumazet95c96172012-04-15 05:58:06 +00002697 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002698 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002699 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002700
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002701 mpls--;
2702 *mpls |= MPLS_STACK_BOTTOM;
2703}
2704
Al Viro0f37c602006-11-03 03:49:56 -08002705static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2706 unsigned int prio)
2707{
2708 return htons(id | (cfi << 12) | (prio << 13));
2709}
2710
Eric Dumazet26ad7872011-01-25 13:26:05 -08002711static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2712 int datalen)
2713{
2714 struct timeval timestamp;
2715 struct pktgen_hdr *pgh;
2716
2717 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2718 datalen -= sizeof(*pgh);
2719
2720 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002721 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002722 } else {
2723 int frags = pkt_dev->nfrags;
2724 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002725 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002726
2727
2728 if (frags > MAX_SKB_FRAGS)
2729 frags = MAX_SKB_FRAGS;
2730 len = datalen - frags * PAGE_SIZE;
2731 if (len > 0) {
2732 memset(skb_put(skb, len), 0, len);
2733 datalen = frags * PAGE_SIZE;
2734 }
2735
2736 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002737 frag_len = (datalen/frags) < PAGE_SIZE ?
2738 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002739 while (datalen > 0) {
2740 if (unlikely(!pkt_dev->page)) {
2741 int node = numa_node_id();
2742
2743 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2744 node = pkt_dev->node;
2745 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2746 if (!pkt_dev->page)
2747 break;
2748 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002749 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002750 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002751 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002752 /*last fragment, fill rest of data*/
2753 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002754 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2755 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002756 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002757 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2758 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2759 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2760 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002761 i++;
2762 skb_shinfo(skb)->nr_frags = i;
2763 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002764 }
2765
2766 /* Stamp the time, and sequence number,
2767 * convert them to network byte order
2768 */
2769 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2770 pgh->seq_num = htonl(pkt_dev->seq_num);
2771
Jesper Dangaard Brouerafb84b622014-08-28 18:14:47 +02002772 if (pkt_dev->flags & F_NO_TIMESTAMP) {
2773 pgh->tv_sec = 0;
2774 pgh->tv_usec = 0;
2775 } else {
2776 do_gettimeofday(&timestamp);
2777 pgh->tv_sec = htonl(timestamp.tv_sec);
2778 pgh->tv_usec = htonl(timestamp.tv_usec);
2779 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002780}
2781
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002782static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
Paolo Abeni63d75462016-09-30 16:56:45 +02002783 struct pktgen_dev *pkt_dev)
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002784{
Paolo Abeni63d75462016-09-30 16:56:45 +02002785 unsigned int extralen = LL_RESERVED_SPACE(dev);
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002786 struct sk_buff *skb = NULL;
Paolo Abeni63d75462016-09-30 16:56:45 +02002787 unsigned int size;
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002788
Paolo Abeni63d75462016-09-30 16:56:45 +02002789 size = pkt_dev->cur_pkt_size + 64 + extralen + pkt_dev->pkt_overhead;
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002790 if (pkt_dev->flags & F_NODE) {
2791 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2792
2793 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2794 if (likely(skb)) {
2795 skb_reserve(skb, NET_SKB_PAD);
2796 skb->dev = dev;
2797 }
2798 } else {
2799 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2800 }
John Fastabend3de03592016-01-10 21:38:44 -08002801
Paolo Abeni63d75462016-09-30 16:56:45 +02002802 /* the caller pre-fetches from skb->data and reserves for the mac hdr */
John Fastabend3de03592016-01-10 21:38:44 -08002803 if (likely(skb))
Paolo Abeni63d75462016-09-30 16:56:45 +02002804 skb_reserve(skb, extralen - 16);
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002805
2806 return skb;
2807}
2808
Luiz Capitulino222f1802006-03-20 22:16:13 -08002809static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2810 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
2812 struct sk_buff *skb = NULL;
2813 __u8 *eth;
2814 struct udphdr *udph;
2815 int datalen, iplen;
2816 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002817 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002818 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002819 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2820 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2821 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2822 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002823 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002824
2825 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002826 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002827
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002828 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002829 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002830
Robert Olsson64053be2005-06-26 15:27:10 -07002831 /* Update any of the values, used when we're incrementing various
2832 * fields.
2833 */
2834 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002835 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002836
Paolo Abeni63d75462016-09-30 16:56:45 +02002837 skb = pktgen_alloc_skb(odev, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 if (!skb) {
2839 sprintf(pkt_dev->result, "No memory");
2840 return NULL;
2841 }
2842
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002843 prefetchw(skb->data);
Paolo Abeni63d75462016-09-30 16:56:45 +02002844 skb_reserve(skb, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
2846 /* Reserve for ethernet and IP header */
2847 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002848 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2849 if (pkt_dev->nr_labels)
2850 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002851
2852 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002853 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002854 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002855 *svlan_tci = build_tci(pkt_dev->svlan_id,
2856 pkt_dev->svlan_cfi,
2857 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002858 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002859 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002860 }
2861 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002862 *vlan_tci = build_tci(pkt_dev->vlan_id,
2863 pkt_dev->vlan_cfi,
2864 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002865 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002866 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002867 }
2868
Zhang Shengjuc145aeb2016-02-29 08:21:30 +00002869 skb_reset_mac_header(skb);
Thomas Graf525cebe2013-06-03 11:49:23 +00002870 skb_set_network_header(skb, skb->len);
2871 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2872
2873 skb_set_transport_header(skb, skb->len);
2874 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002875 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002876 skb->priority = pkt_dev->skb_priority;
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002879 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002881 /* Eth + IPh + UDPh + mpls */
2882 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002883 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002884 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 udph->source = htons(pkt_dev->cur_udp_src);
2888 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002889 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002890 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892 iph->ihl = 5;
2893 iph->version = 4;
2894 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002895 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002896 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 iph->saddr = pkt_dev->cur_saddr;
2898 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002899 iph->id = htons(pkt_dev->ip_id);
2900 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 iph->frag_off = 0;
2902 iplen = 20 + 8 + datalen;
2903 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002904 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002905 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 skb->dev = odev;
2907 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002908
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002909 pktgen_finalize_skb(pkt_dev, skb, datalen);
2910
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002911 if (!(pkt_dev->flags & F_UDPCSUM)) {
2912 skb->ip_summed = CHECKSUM_NONE;
Tom Herbertc8cd0982015-12-14 11:19:44 -08002913 } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM)) {
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002914 skb->ip_summed = CHECKSUM_PARTIAL;
2915 skb->csum = 0;
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002916 udp4_hwcsum(skb, iph->saddr, iph->daddr);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002917 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002918 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), datalen + 8, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002919
2920 /* add protocol-dependent pseudo-header */
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01002921 udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr,
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002922 datalen + 8, IPPROTO_UDP, csum);
2923
2924 if (udph->check == 0)
2925 udph->check = CSUM_MANGLED_0;
2926 }
2927
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002928#ifdef CONFIG_XFRM
2929 if (!process_ipsec(pkt_dev, skb, protocol))
2930 return NULL;
2931#endif
2932
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 return skb;
2934}
2935
Luiz Capitulino222f1802006-03-20 22:16:13 -08002936static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2937 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938{
2939 struct sk_buff *skb = NULL;
2940 __u8 *eth;
2941 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002942 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002944 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002945 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002946 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2947 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2948 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2949 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002950 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002951
2952 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002953 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002954
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002955 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002956 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002957
Robert Olsson64053be2005-06-26 15:27:10 -07002958 /* Update any of the values, used when we're incrementing various
2959 * fields.
2960 */
2961 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002962 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002963
Paolo Abeni63d75462016-09-30 16:56:45 +02002964 skb = pktgen_alloc_skb(odev, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 if (!skb) {
2966 sprintf(pkt_dev->result, "No memory");
2967 return NULL;
2968 }
2969
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002970 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 skb_reserve(skb, 16);
2972
2973 /* Reserve for ethernet and IP header */
2974 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002975 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2976 if (pkt_dev->nr_labels)
2977 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002978
2979 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002980 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002981 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002982 *svlan_tci = build_tci(pkt_dev->svlan_id,
2983 pkt_dev->svlan_cfi,
2984 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002985 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002986 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002987 }
2988 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002989 *vlan_tci = build_tci(pkt_dev->vlan_id,
2990 pkt_dev->vlan_cfi,
2991 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002992 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002993 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002994 }
2995
Zhang Shengjuc145aeb2016-02-29 08:21:30 +00002996 skb_reset_mac_header(skb);
Thomas Graf525cebe2013-06-03 11:49:23 +00002997 skb_set_network_header(skb, skb->len);
2998 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2999
3000 skb_set_transport_header(skb, skb->len);
3001 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003002 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00003003 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003006 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07003007
Steven Whitehouseca6549a2006-03-23 01:10:26 -08003008 /* Eth + IPh + UDPh + mpls */
3009 datalen = pkt_dev->cur_pkt_size - 14 -
3010 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003011 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Amerigo Wang5aa8b572012-10-09 17:48:16 +00003013 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00003015 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 }
3017
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003018 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 udph->source = htons(pkt_dev->cur_udp_src);
3020 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003021 udph->len = htons(udplen);
3022 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003024 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003026 if (pkt_dev->traffic_class) {
3027 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08003028 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003029 }
3030
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 iph->hop_limit = 32;
3032
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003033 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 iph->nexthdr = IPPROTO_UDP;
3035
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00003036 iph->daddr = pkt_dev->cur_in6_daddr;
3037 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Steven Whitehouseca6549a2006-03-23 01:10:26 -08003039 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 skb->dev = odev;
3041 skb->pkt_type = PACKET_HOST;
3042
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01003043 pktgen_finalize_skb(pkt_dev, skb, datalen);
3044
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003045 if (!(pkt_dev->flags & F_UDPCSUM)) {
3046 skb->ip_summed = CHECKSUM_NONE;
Tom Herbertc8cd0982015-12-14 11:19:44 -08003047 } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM)) {
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003048 skb->ip_summed = CHECKSUM_PARTIAL;
3049 skb->csum_start = skb_transport_header(skb) - skb->head;
3050 skb->csum_offset = offsetof(struct udphdr, check);
3051 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
3052 } else {
Sabrina Dubroca7744b5f2015-02-04 23:08:50 +01003053 __wsum csum = skb_checksum(skb, skb_transport_offset(skb), udplen, 0);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02003054
3055 /* add protocol-dependent pseudo-header */
3056 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
3057
3058 if (udph->check == 0)
3059 udph->check = CSUM_MANGLED_0;
3060 }
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 return skb;
3063}
3064
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003065static struct sk_buff *fill_packet(struct net_device *odev,
3066 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003068 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 return fill_packet_ipv6(odev, pkt_dev);
3070 else
3071 return fill_packet_ipv4(odev, pkt_dev);
3072}
3073
Luiz Capitulino222f1802006-03-20 22:16:13 -08003074static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003076 pkt_dev->seq_num = 1;
3077 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003079 pkt_dev->tx_bytes = 0;
3080 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081}
3082
3083/* Set up structure for sending pkts, clear counters */
3084
3085static void pktgen_run(struct pktgen_thread *t)
3086{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003087 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 int started = 0;
3089
Joe Perchesf9467ea2010-06-21 12:29:14 +00003090 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003092 rcu_read_lock();
3093 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 /*
3096 * setup odev and create initial packet.
3097 */
3098 pktgen_setup_inject(pkt_dev);
3099
Luiz Capitulino222f1802006-03-20 22:16:13 -08003100 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 pktgen_clear_counters(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003103 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003104
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003105 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003106
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 strcpy(pkt_dev->result, "Starting");
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003108 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003110 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 strcpy(pkt_dev->result, "Error starting");
3112 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003113 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003114 if (started)
3115 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116}
3117
Cong Wang4e58a022013-01-28 19:55:53 +00003118static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003120 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
Joe Perchesf9467ea2010-06-21 12:29:14 +00003122 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003124 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003125
Cong Wang4e58a022013-01-28 19:55:53 +00003126 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003127 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003128
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003129 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130}
3131
Stephen Hemminger648fda72009-08-27 13:55:07 +00003132static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003134 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003136 rcu_read_lock();
3137 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
3138 if (pkt_dev->running) {
3139 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003140 return 1;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003141 }
3142 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
3145
Luiz Capitulino222f1802006-03-20 22:16:13 -08003146static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003148 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Paolo Abeni32a64fb2019-06-06 15:45:03 +02003150 /* note: 't' will still be around even after the unlock/lock
3151 * cycle because pktgen_thread threads are only cleared at
3152 * net exit
3153 */
3154 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003155 msleep_interruptible(100);
Paolo Abeni32a64fb2019-06-06 15:45:03 +02003156 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
Luiz Capitulino222f1802006-03-20 22:16:13 -08003158 if (signal_pending(current))
3159 goto signal;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003160 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003161 return 1;
3162signal:
3163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164}
3165
Cong Wang4e58a022013-01-28 19:55:53 +00003166static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003168 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003170
Paolo Abeni32a64fb2019-06-06 15:45:03 +02003171 /* prevent from racing with rmmod */
3172 if (!try_module_get(THIS_MODULE))
3173 return sig;
3174
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003175 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003176
Cong Wang4e58a022013-01-28 19:55:53 +00003177 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003179 if (sig == 0)
3180 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003182
3183 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003184 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003186
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003187 mutex_unlock(&pktgen_thread_lock);
Paolo Abeni32a64fb2019-06-06 15:45:03 +02003188 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 return sig;
3190}
3191
Cong Wang4e58a022013-01-28 19:55:53 +00003192static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003194 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Joe Perchesf9467ea2010-06-21 12:29:14 +00003196 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003198 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Cong Wang4e58a022013-01-28 19:55:53 +00003200 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003202
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003203 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003205 /* Propagate thread->control */
3206 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003207
Cong Wang4e58a022013-01-28 19:55:53 +00003208 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209}
3210
Cong Wang4e58a022013-01-28 19:55:53 +00003211static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003212{
3213 struct pktgen_thread *t;
3214
Joe Perchesf9467ea2010-06-21 12:29:14 +00003215 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003216
3217 mutex_lock(&pktgen_thread_lock);
3218
Cong Wang4e58a022013-01-28 19:55:53 +00003219 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003220 t->control |= (T_REMDEVALL);
3221
3222 mutex_unlock(&pktgen_thread_lock);
3223
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003224 /* Propagate thread->control */
3225 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003226
Cong Wang4e58a022013-01-28 19:55:53 +00003227 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003228}
3229
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3231{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003232 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003233 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003234 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3235 pkt_dev->started_at);
3236 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Daniel Turull03a14ab2011-03-09 14:11:00 -08003238 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003239 (unsigned long long)ktime_to_us(elapsed),
3240 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3241 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003242 (unsigned long long)pkt_dev->sofar,
3243 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003245 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3246 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Luiz Capitulino222f1802006-03-20 22:16:13 -08003248 bps = pps * 8 * pkt_dev->cur_pkt_size;
3249
3250 mbps = bps;
3251 do_div(mbps, 1000000);
3252 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3253 (unsigned long long)pps,
3254 (unsigned long long)mbps,
3255 (unsigned long long)bps,
3256 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
3259/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003260static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003262 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003263
Luiz Capitulino222f1802006-03-20 22:16:13 -08003264 if (!pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003265 pr_warn("interface: %s is already stopped\n",
3266 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003267 return -EINVAL;
3268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003270 pkt_dev->running = 0;
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003271 kfree_skb(pkt_dev->skb);
3272 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003273 pkt_dev->stopped_at = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003275 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
Luiz Capitulino222f1802006-03-20 22:16:13 -08003277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278}
3279
Luiz Capitulino222f1802006-03-20 22:16:13 -08003280static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003282 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003283
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003284 rcu_read_lock();
3285 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003286 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003287 continue;
3288 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003289 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003290 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003291 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003293 rcu_read_unlock();
3294
Luiz Capitulino222f1802006-03-20 22:16:13 -08003295 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296}
3297
Luiz Capitulino222f1802006-03-20 22:16:13 -08003298static void pktgen_stop(struct pktgen_thread *t)
3299{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003300 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Joe Perchesf9467ea2010-06-21 12:29:14 +00003302 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003304 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003306 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003307 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003310 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311}
3312
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003313/*
3314 * one of our devices needs to be removed - find it
3315 * and remove it
3316 */
3317static void pktgen_rem_one_if(struct pktgen_thread *t)
3318{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003319 struct list_head *q, *n;
3320 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003321
Joe Perchesf9467ea2010-06-21 12:29:14 +00003322 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003323
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003324 list_for_each_safe(q, n, &t->if_list) {
3325 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003326
Luiz Capitulino222f1802006-03-20 22:16:13 -08003327 if (!cur->removal_mark)
3328 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003329
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003330 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003331 cur->skb = NULL;
3332
3333 pktgen_remove_device(t, cur);
3334
3335 break;
3336 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003337}
3338
Luiz Capitulino222f1802006-03-20 22:16:13 -08003339static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003341 struct list_head *q, *n;
3342 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003343
Joe Perchesf9467ea2010-06-21 12:29:14 +00003344 func_enter();
3345
Luiz Capitulino222f1802006-03-20 22:16:13 -08003346 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003347
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003348 list_for_each_safe(q, n, &t->if_list) {
3349 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003350
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003351 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003352 cur->skb = NULL;
3353
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 pktgen_remove_device(t, cur);
3355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356}
3357
Luiz Capitulino222f1802006-03-20 22:16:13 -08003358static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003360 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003361 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362}
3363
Stephen Hemmingeref879792009-09-22 19:41:43 +00003364static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003365{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003366 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003367 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003368 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003369}
3370
Stephen Hemmingeref879792009-09-22 19:41:43 +00003371static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3372{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003373 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003374
3375 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3376 if (signal_pending(current))
3377 break;
3378
3379 if (need_resched())
3380 pktgen_resched(pkt_dev);
3381 else
3382 cpu_relax();
3383 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003384 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003385}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003386
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003387static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003389 unsigned int burst = ACCESS_ONCE(pkt_dev->burst);
Stephen Hemminger00829822008-11-20 20:14:53 -08003390 struct net_device *odev = pkt_dev->odev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003391 struct netdev_queue *txq;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003392 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 int ret;
3394
Stephen Hemmingeref879792009-09-22 19:41:43 +00003395 /* If device is offline, then don't send */
3396 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3397 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003398 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003400
Stephen Hemmingeref879792009-09-22 19:41:43 +00003401 /* This is max DELAY, this has special meaning of
3402 * "never transmit"
3403 */
3404 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003405 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003406 return;
3407 }
3408
3409 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003410 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3411 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3412 /* build a new pkt */
3413 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003414
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003415 pkt_dev->skb = fill_packet(odev, pkt_dev);
3416 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003417 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003418 schedule();
3419 pkt_dev->clone_count--; /* back out increment, OOM */
3420 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003422 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003423 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003425
Stephen Hemmingeref879792009-09-22 19:41:43 +00003426 if (pkt_dev->delay && pkt_dev->last_ok)
3427 spin(pkt_dev, pkt_dev->next_tx);
3428
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003429 if (pkt_dev->xmit_mode == M_NETIF_RECEIVE) {
3430 skb = pkt_dev->skb;
3431 skb->protocol = eth_type_trans(skb, skb->dev);
3432 atomic_add(burst, &skb->users);
3433 local_bh_disable();
3434 do {
3435 ret = netif_receive_skb(skb);
3436 if (ret == NET_RX_DROP)
3437 pkt_dev->errors++;
3438 pkt_dev->sofar++;
3439 pkt_dev->seq_num++;
3440 if (atomic_read(&skb->users) != burst) {
3441 /* skb was queued by rps/rfs or taps,
3442 * so cannot reuse this skb
3443 */
3444 atomic_sub(burst - 1, &skb->users);
3445 /* get out of the loop and wait
3446 * until skb is consumed
3447 */
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003448 break;
3449 }
3450 /* skb was 'freed' by stack, so clean few
3451 * bits and reuse it
3452 */
3453#ifdef CONFIG_NET_CLS_ACT
3454 skb->tc_verd = 0; /* reset reclass/redir ttl */
3455#endif
3456 } while (--burst > 0);
3457 goto out; /* Skips xmit_mode M_START_XMIT */
John Fastabend0967f242016-07-02 14:12:54 -07003458 } else if (pkt_dev->xmit_mode == M_QUEUE_XMIT) {
3459 local_bh_disable();
3460 atomic_inc(&pkt_dev->skb->users);
3461
3462 ret = dev_queue_xmit(pkt_dev->skb);
3463 switch (ret) {
3464 case NET_XMIT_SUCCESS:
3465 pkt_dev->sofar++;
3466 pkt_dev->seq_num++;
3467 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
3468 break;
3469 case NET_XMIT_DROP:
3470 case NET_XMIT_CN:
3471 /* These are all valid return codes for a qdisc but
3472 * indicate packets are being dropped or will likely
3473 * be dropped soon.
3474 */
3475 case NETDEV_TX_BUSY:
3476 /* qdisc may call dev_hard_start_xmit directly in cases
3477 * where no queues exist e.g. loopback device, virtual
3478 * devices, etc. In this case we need to handle
3479 * NETDEV_TX_ codes.
3480 */
3481 default:
3482 pkt_dev->errors++;
3483 net_info_ratelimited("%s xmit error: %d\n",
3484 pkt_dev->odevname, ret);
3485 break;
3486 }
3487 goto out;
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003488 }
3489
Daniel Borkmann10c51b56232014-08-27 11:11:27 +02003490 txq = skb_get_tx_queue(odev, pkt_dev->skb);
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003491
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003492 local_bh_disable();
3493
3494 HARD_TX_LOCK(odev, txq, smp_processor_id());
Stephen Hemmingeref879792009-09-22 19:41:43 +00003495
Daniel Borkmann6f25cd42014-04-07 17:18:30 +02003496 if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003497 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003498 pkt_dev->last_ok = 0;
3499 goto unlock;
3500 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003501 atomic_add(burst, &pkt_dev->skb->users);
3502
3503xmit_more:
3504 ret = netdev_start_xmit(pkt_dev->skb, odev, txq, --burst > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
Stephen Hemmingeref879792009-09-22 19:41:43 +00003506 switch (ret) {
3507 case NETDEV_TX_OK:
Stephen Hemmingeref879792009-09-22 19:41:43 +00003508 pkt_dev->last_ok = 1;
3509 pkt_dev->sofar++;
3510 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003511 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003512 if (burst > 0 && !netif_xmit_frozen_or_drv_stopped(txq))
3513 goto xmit_more;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003514 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003515 case NET_XMIT_DROP:
3516 case NET_XMIT_CN:
John Fastabendf466dba2009-12-23 22:02:57 -08003517 /* skb has been consumed */
3518 pkt_dev->errors++;
3519 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003520 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003521 net_info_ratelimited("%s xmit error: %d\n",
3522 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003523 pkt_dev->errors++;
3524 /* fallthru */
Stephen Hemmingeref879792009-09-22 19:41:43 +00003525 case NETDEV_TX_BUSY:
3526 /* Retry it next time */
3527 atomic_dec(&(pkt_dev->skb->users));
3528 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003529 }
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003530 if (unlikely(burst))
3531 atomic_sub(burst, &pkt_dev->skb->users);
Eric Dumazet0835acf2009-09-30 13:03:33 +00003532unlock:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003533 HARD_TX_UNLOCK(odev, txq);
3534
Alexei Starovoitov62f64ae2015-05-07 16:35:32 +02003535out:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003536 local_bh_enable();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 /* If pkt_dev->count is zero, then run forever */
3539 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003540 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003541
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 /* Done with this */
3543 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003544 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003545}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003547/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 * Main loop of the thread goes here
3549 */
3550
David S. Milleree74baa2007-01-01 20:51:53 -08003551static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552{
3553 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003554 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003555 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
David S. Milleree74baa2007-01-01 20:51:53 -08003558 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
3560 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003561 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562
Joe Perchesf9467ea2010-06-21 12:29:14 +00003563 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003565 set_freezable();
3566
David S. Milleree74baa2007-01-01 20:51:53 -08003567 while (!kthread_should_stop()) {
3568 pkt_dev = next_to_run(t);
3569
Stephen Hemmingeref879792009-09-22 19:41:43 +00003570 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003571 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003572 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003573 wait_event_interruptible_timeout(t->queue,
3574 t->control != 0,
3575 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003576 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003577 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003578 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003579
Stephen Hemmingeref879792009-09-22 19:41:43 +00003580 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 pktgen_xmit(pkt_dev);
3582
Stephen Hemmingeref879792009-09-22 19:41:43 +00003583 if (need_resched())
3584 pktgen_resched(pkt_dev);
3585 else
3586 cpu_relax();
3587 }
3588
Luiz Capitulino222f1802006-03-20 22:16:13 -08003589 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 pktgen_stop(t);
3591 t->control &= ~(T_STOP);
3592 }
3593
Luiz Capitulino222f1802006-03-20 22:16:13 -08003594 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 pktgen_run(t);
3596 t->control &= ~(T_RUN);
3597 }
3598
Luiz Capitulino222f1802006-03-20 22:16:13 -08003599 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003601 t->control &= ~(T_REMDEVALL);
3602 }
3603
Luiz Capitulino222f1802006-03-20 22:16:13 -08003604 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003605 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 t->control &= ~(T_REMDEV);
3607 }
3608
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003609 try_to_freeze();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Joe Perchesf9467ea2010-06-21 12:29:14 +00003612 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003613 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Joe Perchesf9467ea2010-06-21 12:29:14 +00003615 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003616 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617
Joe Perchesf9467ea2010-06-21 12:29:14 +00003618 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003619 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003620
David S. Milleree74baa2007-01-01 20:51:53 -08003621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622}
3623
Luiz Capitulino222f1802006-03-20 22:16:13 -08003624static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003625 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003627 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003628 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003630 rcu_read_lock();
3631 list_for_each_entry_rcu(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003632 if (strncmp(p->odevname, ifname, len) == 0) {
3633 if (p->odevname[len]) {
3634 if (exact || p->odevname[len] != '@')
3635 continue;
3636 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003637 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003638 break;
3639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003641 rcu_read_unlock();
Joe Perchesf9467ea2010-06-21 12:29:14 +00003642 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003643 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644}
3645
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003646/*
3647 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 */
3649
Luiz Capitulino222f1802006-03-20 22:16:13 -08003650static int add_dev_to_thread(struct pktgen_thread *t,
3651 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652{
3653 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003655 /* This function cannot be called concurrently, as its called
3656 * under pktgen_thread_lock mutex, but it can run from
3657 * userspace on another CPU than the kthread. The if_lock()
3658 * is used here to sync with concurrent instances of
3659 * _rem_dev_from_if_list() invoked via kthread, which is also
3660 * updating the if_list */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003661 if_lock(t);
3662
3663 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003664 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003665 rv = -EBUSY;
3666 goto out;
3667 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 pkt_dev->running = 0;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003670 pkt_dev->pg_thread = t;
3671 list_add_rcu(&pkt_dev->list, &t->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
Luiz Capitulino222f1802006-03-20 22:16:13 -08003673out:
3674 if_unlock(t);
3675 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676}
3677
3678/* Called under thread lock */
3679
Luiz Capitulino222f1802006-03-20 22:16:13 -08003680static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003682 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003683 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003684 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 /* We don't allow a device to be on several threads */
3687
Cong Wang4e58a022013-01-28 19:55:53 +00003688 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003689 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003690 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003691 return -EBUSY;
3692 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003693
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003694 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003695 if (!pkt_dev)
3696 return -ENOMEM;
3697
Eric Dumazet593f63b2009-11-23 01:44:37 +00003698 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003699 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003700 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003701 if (pkt_dev->flows == NULL) {
3702 kfree(pkt_dev);
3703 return -ENOMEM;
3704 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003705
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003706 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003707 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003708 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003709 pkt_dev->count = pg_count_d;
3710 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003711 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003712 pkt_dev->udp_src_max = 9;
3713 pkt_dev->udp_dst_min = 9;
3714 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003715 pkt_dev->vlan_p = 0;
3716 pkt_dev->vlan_cfi = 0;
3717 pkt_dev->vlan_id = 0xffff;
3718 pkt_dev->svlan_p = 0;
3719 pkt_dev->svlan_cfi = 0;
3720 pkt_dev->svlan_id = 0xffff;
Alexei Starovoitov38b2cf22014-09-30 17:53:21 -07003721 pkt_dev->burst = 1;
Robert Olssone99b99b2010-03-18 22:44:30 +00003722 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003723
Cong Wang4e58a022013-01-28 19:55:53 +00003724 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003725 if (err)
3726 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003727 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3728 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003729
Cong Wang4e58a022013-01-28 19:55:53 +00003730 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003731 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003732 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003733 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003734 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003735 err = -EINVAL;
3736 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003737 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003738#ifdef CONFIG_XFRM
3739 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3740 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d472014-01-03 11:18:31 +08003741
3742 /* xfrm tunnel mode needs additional dst to extract outter
3743 * ip header protocol/ttl/id field, here creat a phony one.
3744 * instead of looking for a valid rt, which definitely hurting
3745 * performance under such circumstance.
3746 */
3747 pkt_dev->dstops.family = AF_INET;
3748 pkt_dev->dst.dev = pkt_dev->odev;
3749 dst_init_metrics(&pkt_dev->dst, pktgen_dst_metrics, false);
3750 pkt_dev->dst.child = &pkt_dev->dst;
3751 pkt_dev->dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003752#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003753
3754 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003755out2:
3756 dev_put(pkt_dev->odev);
3757out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003758#ifdef CONFIG_XFRM
3759 free_SAs(pkt_dev);
3760#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003761 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003762 kfree(pkt_dev);
3763 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764}
3765
Cong Wang4e58a022013-01-28 19:55:53 +00003766static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003768 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003769 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003770 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003772 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3773 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003774 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003775 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003776 return -ENOMEM;
3777 }
3778
Eric Dumazet9a0b1e82016-10-15 17:50:49 +02003779 mutex_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003781
David S. Milleree74baa2007-01-01 20:51:53 -08003782 INIT_LIST_HEAD(&t->if_list);
3783
Cong Wang4e58a022013-01-28 19:55:53 +00003784 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003785 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003786
Eric Dumazet94dcf292011-03-22 16:30:45 -07003787 p = kthread_create_on_node(pktgen_thread_worker,
3788 t,
3789 cpu_to_node(cpu),
3790 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003791 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003792 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003793 list_del(&t->th_list);
3794 kfree(t);
3795 return PTR_ERR(p);
3796 }
3797 kthread_bind(p, cpu);
3798 t->tsk = p;
3799
Cong Wang4e58a022013-01-28 19:55:53 +00003800 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003801 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003802 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003803 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003804 PG_PROC_DIR, t->tsk->comm);
3805 kthread_stop(p);
3806 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003807 kfree(t);
3808 return -EINVAL;
3809 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003810
Cong Wang4e58a022013-01-28 19:55:53 +00003811 t->net = pn;
Oleg Nesterov1fbe4b462015-07-08 21:42:13 +02003812 get_task_struct(p);
David S. Milleree74baa2007-01-01 20:51:53 -08003813 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003814 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
3816 return 0;
3817}
3818
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003819/*
3820 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003822static void _rem_dev_from_if_list(struct pktgen_thread *t,
3823 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003825 struct list_head *q, *n;
3826 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003828 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003829 list_for_each_safe(q, n, &t->if_list) {
3830 p = list_entry(q, struct pktgen_dev, list);
3831 if (p == pkt_dev)
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003832 list_del_rcu(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003834 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835}
3836
Luiz Capitulino222f1802006-03-20 22:16:13 -08003837static int pktgen_remove_device(struct pktgen_thread *t,
3838 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003840 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Luiz Capitulino222f1802006-03-20 22:16:13 -08003842 if (pkt_dev->running) {
Joe Perches294a0b72014-09-09 21:17:30 -07003843 pr_warn("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003844 pktgen_stop_device(pkt_dev);
3845 }
3846
3847 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849 if (pkt_dev->odev) {
3850 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003851 pkt_dev->odev = NULL;
3852 }
3853
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003854 /* Remove proc before if_list entry, because add_device uses
3855 * list to determine if interface already exist, avoid race
3856 * with proc_create_data() */
Markus Elfringef87c5d2014-11-18 20:10:34 +01003857 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003859 /* And update the thread if_list */
3860 _rem_dev_from_if_list(t, pkt_dev);
3861
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003862#ifdef CONFIG_XFRM
3863 free_SAs(pkt_dev);
3864#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003865 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003866 if (pkt_dev->page)
3867 put_page(pkt_dev->page);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003868 kfree_rcu(pkt_dev, rcu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003869 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870}
3871
Cong Wang4e58a022013-01-28 19:55:53 +00003872static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873{
Cong Wang4e58a022013-01-28 19:55:53 +00003874 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003875 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003876 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003877
Cong Wang4e58a022013-01-28 19:55:53 +00003878 pn->net = net;
3879 INIT_LIST_HEAD(&pn->pktgen_threads);
3880 pn->pktgen_exiting = false;
3881 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3882 if (!pn->proc_dir) {
3883 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003884 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003885 }
Cong Wang4e58a022013-01-28 19:55:53 +00003886 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3887 if (pe == NULL) {
3888 pr_err("cannot create %s procfs entry\n", PGCTRL);
3889 ret = -EINVAL;
3890 goto remove;
3891 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003892
John Hawkes670c02c2005-10-13 09:30:31 -07003893 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003894 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Cong Wang4e58a022013-01-28 19:55:53 +00003896 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003897 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003898 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003899 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003900 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003901
Cong Wang4e58a022013-01-28 19:55:53 +00003902 if (list_empty(&pn->pktgen_threads)) {
3903 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003904 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003905 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003906 }
3907
Luiz Capitulino222f1802006-03-20 22:16:13 -08003908 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003909
Cong Wang4e58a022013-01-28 19:55:53 +00003910remove_entry:
3911 remove_proc_entry(PGCTRL, pn->proc_dir);
3912remove:
Gao fengece31ff2013-02-18 01:34:56 +00003913 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003914 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915}
3916
Cong Wang4e58a022013-01-28 19:55:53 +00003917static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918{
Cong Wang4e58a022013-01-28 19:55:53 +00003919 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003920 struct pktgen_thread *t;
3921 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003922 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Luiz Capitulino222f1802006-03-20 22:16:13 -08003924 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003925 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Eric Dumazetc57b5462012-05-09 13:29:51 +00003927 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003928 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003929 mutex_unlock(&pktgen_thread_lock);
3930
3931 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003932 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003933 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003934 kthread_stop(t->tsk);
Oleg Nesterov1fbe4b462015-07-08 21:42:13 +02003935 put_task_struct(t->tsk);
David S. Milleree74baa2007-01-01 20:51:53 -08003936 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Cong Wang4e58a022013-01-28 19:55:53 +00003939 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003940 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003941}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Cong Wang4e58a022013-01-28 19:55:53 +00003943static struct pernet_operations pg_net_ops = {
3944 .init = pg_net_init,
3945 .exit = pg_net_exit,
3946 .id = &pg_net_id,
3947 .size = sizeof(struct pktgen_net),
3948};
3949
3950static int __init pg_init(void)
3951{
3952 int ret = 0;
3953
3954 pr_info("%s", version);
3955 ret = register_pernet_subsys(&pg_net_ops);
3956 if (ret)
3957 return ret;
3958 ret = register_netdevice_notifier(&pktgen_notifier_block);
3959 if (ret)
3960 unregister_pernet_subsys(&pg_net_ops);
3961
3962 return ret;
3963}
3964
3965static void __exit pg_cleanup(void)
3966{
3967 unregister_netdevice_notifier(&pktgen_notifier_block);
3968 unregister_pernet_subsys(&pg_net_ops);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003969 /* Don't need rcu_barrier() due to use of kfree_rcu() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970}
3971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972module_init(pg_init);
3973module_exit(pg_cleanup);
3974
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003975MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976MODULE_DESCRIPTION("Packet Generator tool");
3977MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003978MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003980MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003982MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003984MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003986MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");