blob: 261357a663001ccf98a92ba5f6d0f6ad141c7ce3 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * way. The if_lock should be possible to remove when add/rem_device is merged
73 * into this too.
74 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090075 * By design there should only be *one* "controlling" process. In practice
76 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070078 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090080 * Note when adding devices to a specific CPU there good idea to also assign
81 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * --ro
83 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090084 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * memleak 030710- KJP
86 *
87 * First "ranges" functionality for ipv6 030726 --ro
88 *
89 * Included flow support. 030802 ANK.
90 *
91 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090092 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
94 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
95 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090096 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * <shemminger@osdl.org> 040923
98 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090099 * Randy Dunlap fixed u64 printk compiler waring
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *
101 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
102 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
103 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900104 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
106 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900107 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800109 *
110 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
111 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700112 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
113 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700114 * Fixed src_mac command to set source mac of packet to value specified in
115 * command by Adit Ranadive <adit.262@gmail.com>
116 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000118
119#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#include <linux/sys.h>
122#include <linux/types.h>
123#include <linux/module.h>
124#include <linux/moduleparam.h>
125#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800126#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#include <linux/sched.h>
128#include <linux/slab.h>
129#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#include <linux/unistd.h>
131#include <linux/string.h>
132#include <linux/ptrace.h>
133#include <linux/errno.h>
134#include <linux/ioport.h>
135#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800136#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700137#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700138#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#include <linux/delay.h>
140#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800141#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#include <linux/init.h>
143#include <linux/skbuff.h>
144#include <linux/netdevice.h>
145#include <linux/inet.h>
146#include <linux/inetdevice.h>
147#include <linux/rtnetlink.h>
148#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700149#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#include <linux/in.h>
151#include <linux/ip.h>
152#include <linux/ipv6.h>
153#include <linux/udp.h>
154#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700155#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800157#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800158#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700159#include <linux/prefetch.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200160#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#include <net/checksum.h>
162#include <net/ipv6.h>
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200163#include <net/udp.h>
Stephen Rothwell73d94e92013-07-29 16:21:26 +1000164#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700166#ifdef CONFIG_XFRM
167#include <net/xfrm.h>
168#endif
Cong Wang4e58a022013-01-28 19:55:53 +0000169#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#include <asm/byteorder.h>
171#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700172#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000173#include <linux/io.h>
174#include <linux/timex.h>
175#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800177#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Daniel Turull43d28b62010-06-09 22:49:57 +0000179#define VERSION "2.74"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800181#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800182#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Joe Perchesf9467ea2010-06-21 12:29:14 +0000184#define func_enter() pr_debug("entering %s\n", __func__);
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800187#define F_IPSRC_RND (1<<0) /* IP-Src Random */
188#define F_IPDST_RND (1<<1) /* IP-Dst Random */
189#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
190#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
191#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
192#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
193#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
194#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800195#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700196#define F_VID_RND (1<<9) /* Random VLAN ID */
197#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700198#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700199#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700200#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700201#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000202#define F_NODE (1<<15) /* Node memory alloc*/
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200203#define F_UDPCSUM (1<<16) /* Include UDP checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000206#define T_STOP (1<<0) /* Stop run */
207#define T_RUN (1<<1) /* Start run */
208#define T_REMDEVALL (1<<2) /* Remove all devs */
209#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/* If lock -- can be removed after some work */
212#define if_lock(t) spin_lock(&(t->if_lock));
213#define if_unlock(t) spin_unlock(&(t->if_lock));
214
215/* Used to help with determining the pkts on receive */
216#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700217#define PG_PROC_DIR "pktgen"
218#define PGCTRL "pgctrl"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220#define MAX_CFLOWS 65536
221
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700222#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
223#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
224
Luiz Capitulino222f1802006-03-20 22:16:13 -0800225struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800226 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800227 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700228#ifdef CONFIG_XFRM
229 struct xfrm_state *x;
230#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700231 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232};
233
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700234/* flow flag bits */
235#define F_INIT (1<<0) /* flow has been initialized */
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /*
239 * Try to keep frequent/infrequent used vars. separated.
240 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800241 struct proc_dir_entry *entry; /* proc file */
242 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000243 struct list_head list; /* chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000245 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800246
247 /* If min != max, then we will either do a linear iteration, or
248 * we will do a random selection from within the range.
249 */
250 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800251 int removal_mark; /* non-zero => the device is marked for
252 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Amerigo Wang68bf9f02012-10-09 17:48:17 +0000254 int min_pkt_size;
255 int max_pkt_size;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700256 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800257 int nfrags;
Eric Dumazet26ad7872011-01-25 13:26:05 -0800258 struct page *page;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000259 u64 delay; /* nano-seconds */
260
Luiz Capitulino222f1802006-03-20 22:16:13 -0800261 __u64 count; /* Default No packets to send */
262 __u64 sofar; /* How many pkts we've sent so far */
263 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800264 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Luiz Capitulino222f1802006-03-20 22:16:13 -0800266 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Luiz Capitulino222f1802006-03-20 22:16:13 -0800268 __u64 allocated_skbs;
269 __u32 clone_count;
270 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000271 * Or a failed transmit of some sort?
272 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800273 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000274 ktime_t next_tx;
275 ktime_t started_at;
276 ktime_t stopped_at;
277 u64 idle_acc; /* nano-seconds */
278
Luiz Capitulino222f1802006-03-20 22:16:13 -0800279 __u32 seq_num;
280
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000281 int clone_skb; /*
282 * Use multiple SKBs during packet gen.
283 * If this number is greater than 1, then
284 * that many copies of the same packet will be
285 * sent before a new packet is allocated.
286 * If you want to send 1024 identical packets
287 * before creating a new packet,
288 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800289 */
290
291 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
292 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
293 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
294 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
295
296 struct in6_addr in6_saddr;
297 struct in6_addr in6_daddr;
298 struct in6_addr cur_in6_daddr;
299 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800301 struct in6_addr min_in6_daddr;
302 struct in6_addr max_in6_daddr;
303 struct in6_addr min_in6_saddr;
304 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Luiz Capitulino222f1802006-03-20 22:16:13 -0800306 /* If we're doing ranges, random or incremental, then this
307 * defines the min/max for those ranges.
308 */
Al Viro252e3342006-11-14 20:48:11 -0800309 __be32 saddr_min; /* inclusive, source IP address */
310 __be32 saddr_max; /* exclusive, source IP address */
311 __be32 daddr_min; /* inclusive, dest IP address */
312 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Luiz Capitulino222f1802006-03-20 22:16:13 -0800314 __u16 udp_src_min; /* inclusive, source UDP port */
315 __u16 udp_src_max; /* exclusive, source UDP port */
316 __u16 udp_dst_min; /* inclusive, dest UDP port */
317 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700319 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000320 __u8 tos; /* six MSB of (former) IPv4 TOS
321 are for dscp codepoint */
322 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
323 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700324
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800325 /* MPLS */
Eric Dumazet95c96172012-04-15 05:58:06 +0000326 unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800327 __be32 labels[MAX_MPLS_LABELS];
328
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700329 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
330 __u8 vlan_p;
331 __u8 vlan_cfi;
332 __u16 vlan_id; /* 0xffff means no vlan tag */
333
334 __u8 svlan_p;
335 __u8 svlan_cfi;
336 __u16 svlan_id; /* 0xffff means no svlan tag */
337
Luiz Capitulino222f1802006-03-20 22:16:13 -0800338 __u32 src_mac_count; /* How many MACs to iterate through */
339 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Luiz Capitulino222f1802006-03-20 22:16:13 -0800341 unsigned char dst_mac[ETH_ALEN];
342 unsigned char src_mac[ETH_ALEN];
343
344 __u32 cur_dst_mac_offset;
345 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800346 __be32 cur_saddr;
347 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700348 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800349 __u16 cur_udp_dst;
350 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700351 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800352 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800353 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800354
355 __u8 hh[14];
356 /* = {
357 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
358
359 We fill in SRC address later
360 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
361 0x08, 0x00
362 };
363 */
364 __u16 pad; /* pad out the hh struct to an even 16 bytes */
365
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000366 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800367 * are transmitting the same one multiple times
368 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000369 struct net_device *odev; /* The out-going device.
370 * Note that the device should have it's
371 * pg_info pointer pointing back to this
372 * device.
373 * Set when the user specifies the out-going
374 * device name (not when the inject is
375 * started as it used to do.)
376 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000377 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 struct flow_state *flows;
Eric Dumazet95c96172012-04-15 05:58:06 +0000379 unsigned int cflows; /* Concurrent flows (config) */
380 unsigned int lflow; /* Flow length (config) */
381 unsigned int nflows; /* accumulated flows (stats) */
382 unsigned int curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700383
384 u16 queue_map_min;
385 u16 queue_map_max;
John Fastabend9e50e3a2010-11-16 19:12:28 +0000386 __u32 skb_priority; /* skb priority field */
Robert Olssone99b99b2010-03-18 22:44:30 +0000387 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700388
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700389#ifdef CONFIG_XFRM
390 __u8 ipsmode; /* IPSEC mode (config) */
391 __u8 ipsproto; /* IPSEC type (config) */
392#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800393 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
395
396struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800397 __be32 pgh_magic;
398 __be32 seq_num;
399 __be32 tv_sec;
400 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401};
402
Cong Wang4e58a022013-01-28 19:55:53 +0000403
404static int pg_net_id __read_mostly;
405
406struct pktgen_net {
407 struct net *net;
408 struct proc_dir_entry *proc_dir;
409 struct list_head pktgen_threads;
410 bool pktgen_exiting;
411};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000414 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800415 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800416 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800417 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800418 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000420 /* Field for thread to receive "posted" events terminate,
421 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800422
423 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 int cpu;
425
Luiz Capitulino222f1802006-03-20 22:16:13 -0800426 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700427 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000428 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
431#define REMOVE 1
432#define FIND 0
433
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000434static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000435 "Packet Generator for packet performance testing. "
436 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Luiz Capitulino222f1802006-03-20 22:16:13 -0800438static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
439static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
440static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800441 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000443static void pktgen_run_all_threads(struct pktgen_net *pn);
444static void pktgen_reset_all_threads(struct pktgen_net *pn);
445static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000446
Luiz Capitulino222f1802006-03-20 22:16:13 -0800447static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000451static int pg_count_d __read_mostly = 1000;
452static int pg_delay_d __read_mostly;
453static int pg_clone_skb_d __read_mostly;
454static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Luiz Capitulino222fa072006-03-20 22:24:27 -0800456static DEFINE_MUTEX(pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458static struct notifier_block pktgen_notifier_block = {
459 .notifier_call = pktgen_device_event,
460};
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900463 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 *
465 */
466
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700467static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800468{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000469 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700470 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000473static ssize_t pgctrl_write(struct file *file, const char __user *buf,
474 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700477 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000478 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Luiz Capitulino222f1802006-03-20 22:16:13 -0800480 if (!capable(CAP_NET_ADMIN)) {
481 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700485 if (count > sizeof(data))
486 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700489 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700490 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800491 }
492 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Luiz Capitulino222f1802006-03-20 22:16:13 -0800494 if (!strcmp(data, "stop"))
Cong Wang4e58a022013-01-28 19:55:53 +0000495 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Luiz Capitulino222f1802006-03-20 22:16:13 -0800497 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000498 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800500 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000501 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800502
Luiz Capitulino222f1802006-03-20 22:16:13 -0800503 else
Joe Perchesf9467ea2010-06-21 12:29:14 +0000504 pr_warning("Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 err = count;
507
Luiz Capitulino222f1802006-03-20 22:16:13 -0800508out:
509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700512static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Al Virod9dda782013-03-31 18:16:14 -0400514 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700515}
516
Arjan van de Ven9a321442007-02-12 00:55:35 -0800517static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800518 .owner = THIS_MODULE,
519 .open = pgctrl_open,
520 .read = seq_read,
521 .llseek = seq_lseek,
522 .write = pgctrl_write,
523 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700524};
525
526static int pktgen_if_show(struct seq_file *seq, void *v)
527{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000528 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000529 ktime_t stopped;
530 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Luiz Capitulino222f1802006-03-20 22:16:13 -0800532 seq_printf(seq,
533 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
534 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
535 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Luiz Capitulino222f1802006-03-20 22:16:13 -0800537 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000538 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
539 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000540 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Luiz Capitulino222f1802006-03-20 22:16:13 -0800542 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
543 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Robert Olsson45b270f2007-08-28 15:45:55 -0700545 seq_printf(seq,
546 " queue_map_min: %u queue_map_max: %u\n",
547 pkt_dev->queue_map_min,
548 pkt_dev->queue_map_max);
549
John Fastabend9e50e3a2010-11-16 19:12:28 +0000550 if (pkt_dev->skb_priority)
551 seq_printf(seq, " skb_priority: %u\n",
552 pkt_dev->skb_priority);
553
Luiz Capitulino222f1802006-03-20 22:16:13 -0800554 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800555 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000556 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
557 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
558 &pkt_dev->in6_saddr,
559 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
560 &pkt_dev->in6_daddr,
561 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000562 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000564 " dst_min: %s dst_max: %s\n",
565 pkt_dev->dst_min, pkt_dev->dst_max);
566 seq_printf(seq,
567 " src_min: %s src_max: %s\n",
568 pkt_dev->src_min, pkt_dev->src_max);
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700571 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Johannes Berge1749612008-10-27 15:59:26 -0700573 seq_printf(seq, "%pM ",
574 is_zero_ether_addr(pkt_dev->src_mac) ?
575 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Luiz Capitulino222f1802006-03-20 22:16:13 -0800577 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700578 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Luiz Capitulino222f1802006-03-20 22:16:13 -0800580 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000581 " udp_src_min: %d udp_src_max: %d"
582 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800583 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
584 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Luiz Capitulino222f1802006-03-20 22:16:13 -0800586 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800587 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700588 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800590 if (pkt_dev->nr_labels) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000591 unsigned int i;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800592 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700593 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800594 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
595 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
596 }
597
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000598 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700599 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000600 pkt_dev->vlan_id, pkt_dev->vlan_p,
601 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700602
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000603 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700604 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000605 pkt_dev->svlan_id, pkt_dev->svlan_p,
606 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700607
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000608 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700609 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700610
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000611 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700612 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700613
Robert Olssone99b99b2010-03-18 22:44:30 +0000614 if (pkt_dev->node >= 0)
615 seq_printf(seq, " node: %d\n", pkt_dev->node);
616
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800617 seq_printf(seq, " Flags: ");
618
Luiz Capitulino222f1802006-03-20 22:16:13 -0800619 if (pkt_dev->flags & F_IPV6)
620 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Luiz Capitulino222f1802006-03-20 22:16:13 -0800622 if (pkt_dev->flags & F_IPSRC_RND)
623 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Luiz Capitulino222f1802006-03-20 22:16:13 -0800625 if (pkt_dev->flags & F_IPDST_RND)
626 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Luiz Capitulino222f1802006-03-20 22:16:13 -0800628 if (pkt_dev->flags & F_TXSIZE_RND)
629 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Luiz Capitulino222f1802006-03-20 22:16:13 -0800631 if (pkt_dev->flags & F_UDPSRC_RND)
632 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Luiz Capitulino222f1802006-03-20 22:16:13 -0800634 if (pkt_dev->flags & F_UDPDST_RND)
635 seq_printf(seq, "UDPDST_RND ");
636
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200637 if (pkt_dev->flags & F_UDPCSUM)
638 seq_printf(seq, "UDPCSUM ");
639
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800640 if (pkt_dev->flags & F_MPLS_RND)
641 seq_printf(seq, "MPLS_RND ");
642
Robert Olsson45b270f2007-08-28 15:45:55 -0700643 if (pkt_dev->flags & F_QUEUE_MAP_RND)
644 seq_printf(seq, "QUEUE_MAP_RND ");
645
Robert Olssone6fce5b2008-08-07 02:23:01 -0700646 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
647 seq_printf(seq, "QUEUE_MAP_CPU ");
648
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700649 if (pkt_dev->cflows) {
650 if (pkt_dev->flags & F_FLOW_SEQ)
651 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
652 else
653 seq_printf(seq, "FLOW_RND ");
654 }
655
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700656#ifdef CONFIG_XFRM
657 if (pkt_dev->flags & F_IPSEC_ON)
658 seq_printf(seq, "IPSEC ");
659#endif
660
Luiz Capitulino222f1802006-03-20 22:16:13 -0800661 if (pkt_dev->flags & F_MACSRC_RND)
662 seq_printf(seq, "MACSRC_RND ");
663
664 if (pkt_dev->flags & F_MACDST_RND)
665 seq_printf(seq, "MACDST_RND ");
666
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700667 if (pkt_dev->flags & F_VID_RND)
668 seq_printf(seq, "VID_RND ");
669
670 if (pkt_dev->flags & F_SVID_RND)
671 seq_printf(seq, "SVID_RND ");
672
Robert Olssone99b99b2010-03-18 22:44:30 +0000673 if (pkt_dev->flags & F_NODE)
674 seq_printf(seq, "NODE_ALLOC ");
675
Luiz Capitulino222f1802006-03-20 22:16:13 -0800676 seq_puts(seq, "\n");
677
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000678 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000679 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000680 idle = pkt_dev->idle_acc;
681 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800682
683 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000684 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800685 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000686 (unsigned long long)pkt_dev->errors);
687
688 seq_printf(seq,
689 " started: %lluus stopped: %lluus idle: %lluus\n",
690 (unsigned long long) ktime_to_us(pkt_dev->started_at),
691 (unsigned long long) ktime_to_us(stopped),
692 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800693
694 seq_printf(seq,
695 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700696 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
697 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Luiz Capitulino222f1802006-03-20 22:16:13 -0800699 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000700 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
701 &pkt_dev->cur_in6_saddr,
702 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800703 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000704 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
705 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Luiz Capitulino222f1802006-03-20 22:16:13 -0800707 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700708 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Robert Olsson45b270f2007-08-28 15:45:55 -0700710 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
711
Luiz Capitulino222f1802006-03-20 22:16:13 -0800712 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800715 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800717 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800722
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000723static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
724 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800725{
726 int i = 0;
727 *num = 0;
728
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700729 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000730 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800731 char c;
732 *num <<= 4;
733 if (get_user(c, &user_buffer[i]))
734 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000735 value = hex_to_bin(c);
736 if (value >= 0)
737 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800738 else
739 break;
740 }
741 return i;
742}
743
Luiz Capitulino222f1802006-03-20 22:16:13 -0800744static int count_trail_chars(const char __user * user_buffer,
745 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 int i;
748
749 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800750 char c;
751 if (get_user(c, &user_buffer[i]))
752 return -EFAULT;
753 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 case '\"':
755 case '\n':
756 case '\r':
757 case '\t':
758 case ' ':
759 case '=':
760 break;
761 default:
762 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765done:
766 return i;
767}
768
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000769static long num_arg(const char __user *user_buffer, unsigned long maxlen,
770 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000772 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800774
Paul Gortmakerd6182222010-10-18 12:14:44 +0000775 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800776 char c;
777 if (get_user(c, &user_buffer[i]))
778 return -EFAULT;
779 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800781 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 } else
783 break;
784 }
785 return i;
786}
787
Luiz Capitulino222f1802006-03-20 22:16:13 -0800788static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000790 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Paul Gortmakerd6182222010-10-18 12:14:44 +0000792 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800793 char c;
794 if (get_user(c, &user_buffer[i]))
795 return -EFAULT;
796 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 case '\"':
798 case '\n':
799 case '\r':
800 case '\t':
801 case ' ':
802 goto done_str;
803 break;
804 default:
805 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return i;
810}
811
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800812static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
813{
Eric Dumazet95c96172012-04-15 05:58:06 +0000814 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800815 char c;
816 ssize_t i = 0;
817 int len;
818
819 pkt_dev->nr_labels = 0;
820 do {
821 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700822 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800823 if (len <= 0)
824 return len;
825 pkt_dev->labels[n] = htonl(tmp);
826 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
827 pkt_dev->flags |= F_MPLS_RND;
828 i += len;
829 if (get_user(c, &buffer[i]))
830 return -EFAULT;
831 i++;
832 n++;
833 if (n >= MAX_MPLS_LABELS)
834 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700835 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800836
837 pkt_dev->nr_labels = n;
838 return i;
839}
840
Luiz Capitulino222f1802006-03-20 22:16:13 -0800841static ssize_t pktgen_if_write(struct file *file,
842 const char __user * user_buffer, size_t count,
843 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Joe Perches8a994a72010-07-12 10:50:23 +0000845 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800846 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000847 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 char name[16], valstr[32];
849 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800850 char *pg_result = NULL;
851 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800853
854 pg_result = &(pkt_dev->result[0]);
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (count < 1) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000857 pr_warning("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return -EINVAL;
859 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800860
Paul Gortmakerd6182222010-10-18 12:14:44 +0000861 max = count;
862 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800863 if (tmp < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000864 pr_warning("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800865 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000867 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /* Read variable name */
870
871 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000872 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800873 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800876 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return -EFAULT;
878 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879
880 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800882 if (len < 0)
883 return len;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 i += len;
886
887 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000888 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700889 char tb[copy + 1];
890 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700892 tb[copy] = 0;
Joe Perchesf342cda2012-05-16 17:50:41 +0000893 pr_debug("%s,%lu buffer -:%s:-\n",
894 name, (unsigned long)count, tb);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (!strcmp(name, "min_pkt_size")) {
898 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000899 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800900 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800903 if (value < 14 + 20 + 8)
904 value = 14 + 20 + 8;
905 if (value != pkt_dev->min_pkt_size) {
906 pkt_dev->min_pkt_size = value;
907 pkt_dev->cur_pkt_size = value;
908 }
909 sprintf(pg_result, "OK: min_pkt_size=%u",
910 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return count;
912 }
913
Luiz Capitulino222f1802006-03-20 22:16:13 -0800914 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000916 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800917 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800920 if (value < 14 + 20 + 8)
921 value = 14 + 20 + 8;
922 if (value != pkt_dev->max_pkt_size) {
923 pkt_dev->max_pkt_size = value;
924 pkt_dev->cur_pkt_size = value;
925 }
926 sprintf(pg_result, "OK: max_pkt_size=%u",
927 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return count;
929 }
930
Luiz Capitulino222f1802006-03-20 22:16:13 -0800931 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 if (!strcmp(name, "pkt_size")) {
934 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000935 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800936 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800939 if (value < 14 + 20 + 8)
940 value = 14 + 20 + 8;
941 if (value != pkt_dev->min_pkt_size) {
942 pkt_dev->min_pkt_size = value;
943 pkt_dev->max_pkt_size = value;
944 pkt_dev->cur_pkt_size = value;
945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
947 return count;
948 }
949
Luiz Capitulino222f1802006-03-20 22:16:13 -0800950 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000952 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800953 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800956 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 sprintf(pg_result, "OK: debug=%u", debug);
958 return count;
959 }
960
Luiz Capitulino222f1802006-03-20 22:16:13 -0800961 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000963 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800964 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 i += len;
967 pkt_dev->nfrags = value;
968 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
969 return count;
970 }
971 if (!strcmp(name, "delay")) {
972 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;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000977 if (value == 0x7FFFFFFF)
978 pkt_dev->delay = ULLONG_MAX;
979 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000980 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000981
982 sprintf(pg_result, "OK: delay=%llu",
983 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return count;
985 }
Daniel Turull43d28b62010-06-09 22:49:57 +0000986 if (!strcmp(name, "rate")) {
987 len = num_arg(&user_buffer[i], 10, &value);
988 if (len < 0)
989 return len;
990
991 i += len;
992 if (!value)
993 return len;
994 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
995 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +0000996 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +0000997
998 sprintf(pg_result, "OK: rate=%lu", value);
999 return count;
1000 }
1001 if (!strcmp(name, "ratep")) {
1002 len = num_arg(&user_buffer[i], 10, &value);
1003 if (len < 0)
1004 return len;
1005
1006 i += len;
1007 if (!value)
1008 return len;
1009 pkt_dev->delay = NSEC_PER_SEC/value;
1010 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001011 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001012
1013 sprintf(pg_result, "OK: rate=%lu", value);
1014 return count;
1015 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001016 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001018 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001019 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001022 if (value != pkt_dev->udp_src_min) {
1023 pkt_dev->udp_src_min = value;
1024 pkt_dev->cur_udp_src = value;
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1027 return count;
1028 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001029 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001031 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001035 if (value != pkt_dev->udp_dst_min) {
1036 pkt_dev->udp_dst_min = value;
1037 pkt_dev->cur_udp_dst = value;
1038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1040 return count;
1041 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001042 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001044 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001045 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001048 if (value != pkt_dev->udp_src_max) {
1049 pkt_dev->udp_src_max = value;
1050 pkt_dev->cur_udp_src = value;
1051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1053 return count;
1054 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001055 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001057 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001058 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 if (value != pkt_dev->udp_dst_max) {
1062 pkt_dev->udp_dst_max = value;
1063 pkt_dev->cur_udp_dst = value;
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1066 return count;
1067 }
1068 if (!strcmp(name, "clone_skb")) {
1069 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001070 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001071 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001072 if ((value > 0) &&
1073 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
1074 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001076 pkt_dev->clone_skb = value;
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1079 return count;
1080 }
1081 if (!strcmp(name, "count")) {
1082 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001083 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001084 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 i += len;
1087 pkt_dev->count = value;
1088 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001089 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return count;
1091 }
1092 if (!strcmp(name, "src_mac_count")) {
1093 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001094 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001095 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 i += len;
1098 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001099 pkt_dev->src_mac_count = value;
1100 pkt_dev->cur_src_mac_offset = 0;
1101 }
1102 sprintf(pg_result, "OK: src_mac_count=%d",
1103 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return count;
1105 }
1106 if (!strcmp(name, "dst_mac_count")) {
1107 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001108 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001109 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 i += len;
1112 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001113 pkt_dev->dst_mac_count = value;
1114 pkt_dev->cur_dst_mac_offset = 0;
1115 }
1116 sprintf(pg_result, "OK: dst_mac_count=%d",
1117 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return count;
1119 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001120 if (!strcmp(name, "node")) {
1121 len = num_arg(&user_buffer[i], 10, &value);
1122 if (len < 0)
1123 return len;
1124
1125 i += len;
1126
1127 if (node_possible(value)) {
1128 pkt_dev->node = value;
1129 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001130 if (pkt_dev->page) {
1131 put_page(pkt_dev->page);
1132 pkt_dev->page = NULL;
1133 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001134 }
1135 else
1136 sprintf(pg_result, "ERROR: node not possible");
1137 return count;
1138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001140 char f[32];
1141 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001143 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001144 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (copy_from_user(f, &user_buffer[i], len))
1147 return -EFAULT;
1148 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001149 if (strcmp(f, "IPSRC_RND") == 0)
1150 pkt_dev->flags |= F_IPSRC_RND;
1151
1152 else if (strcmp(f, "!IPSRC_RND") == 0)
1153 pkt_dev->flags &= ~F_IPSRC_RND;
1154
1155 else if (strcmp(f, "TXSIZE_RND") == 0)
1156 pkt_dev->flags |= F_TXSIZE_RND;
1157
1158 else if (strcmp(f, "!TXSIZE_RND") == 0)
1159 pkt_dev->flags &= ~F_TXSIZE_RND;
1160
1161 else if (strcmp(f, "IPDST_RND") == 0)
1162 pkt_dev->flags |= F_IPDST_RND;
1163
1164 else if (strcmp(f, "!IPDST_RND") == 0)
1165 pkt_dev->flags &= ~F_IPDST_RND;
1166
1167 else if (strcmp(f, "UDPSRC_RND") == 0)
1168 pkt_dev->flags |= F_UDPSRC_RND;
1169
1170 else if (strcmp(f, "!UDPSRC_RND") == 0)
1171 pkt_dev->flags &= ~F_UDPSRC_RND;
1172
1173 else if (strcmp(f, "UDPDST_RND") == 0)
1174 pkt_dev->flags |= F_UDPDST_RND;
1175
1176 else if (strcmp(f, "!UDPDST_RND") == 0)
1177 pkt_dev->flags &= ~F_UDPDST_RND;
1178
1179 else if (strcmp(f, "MACSRC_RND") == 0)
1180 pkt_dev->flags |= F_MACSRC_RND;
1181
1182 else if (strcmp(f, "!MACSRC_RND") == 0)
1183 pkt_dev->flags &= ~F_MACSRC_RND;
1184
1185 else if (strcmp(f, "MACDST_RND") == 0)
1186 pkt_dev->flags |= F_MACDST_RND;
1187
1188 else if (strcmp(f, "!MACDST_RND") == 0)
1189 pkt_dev->flags &= ~F_MACDST_RND;
1190
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001191 else if (strcmp(f, "MPLS_RND") == 0)
1192 pkt_dev->flags |= F_MPLS_RND;
1193
1194 else if (strcmp(f, "!MPLS_RND") == 0)
1195 pkt_dev->flags &= ~F_MPLS_RND;
1196
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001197 else if (strcmp(f, "VID_RND") == 0)
1198 pkt_dev->flags |= F_VID_RND;
1199
1200 else if (strcmp(f, "!VID_RND") == 0)
1201 pkt_dev->flags &= ~F_VID_RND;
1202
1203 else if (strcmp(f, "SVID_RND") == 0)
1204 pkt_dev->flags |= F_SVID_RND;
1205
1206 else if (strcmp(f, "!SVID_RND") == 0)
1207 pkt_dev->flags &= ~F_SVID_RND;
1208
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001209 else if (strcmp(f, "FLOW_SEQ") == 0)
1210 pkt_dev->flags |= F_FLOW_SEQ;
1211
Robert Olsson45b270f2007-08-28 15:45:55 -07001212 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1213 pkt_dev->flags |= F_QUEUE_MAP_RND;
1214
1215 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1216 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001217
1218 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1219 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1220
1221 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1222 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001223#ifdef CONFIG_XFRM
1224 else if (strcmp(f, "IPSEC") == 0)
1225 pkt_dev->flags |= F_IPSEC_ON;
1226#endif
1227
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001228 else if (strcmp(f, "!IPV6") == 0)
1229 pkt_dev->flags &= ~F_IPV6;
1230
Robert Olssone99b99b2010-03-18 22:44:30 +00001231 else if (strcmp(f, "NODE_ALLOC") == 0)
1232 pkt_dev->flags |= F_NODE;
1233
1234 else if (strcmp(f, "!NODE_ALLOC") == 0)
1235 pkt_dev->flags &= ~F_NODE;
1236
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001237 else if (strcmp(f, "UDPCSUM") == 0)
1238 pkt_dev->flags |= F_UDPCSUM;
1239
1240 else if (strcmp(f, "!UDPCSUM") == 0)
1241 pkt_dev->flags &= ~F_UDPCSUM;
1242
Luiz Capitulino222f1802006-03-20 22:16:13 -08001243 else {
1244 sprintf(pg_result,
1245 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1246 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001247 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Robert Olssone99b99b2010-03-18 22:44:30 +00001248 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC, NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001249 return count;
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1252 return count;
1253 }
1254 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1255 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001256 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001257 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Luiz Capitulino222f1802006-03-20 22:16:13 -08001259 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001261 buf[len] = 0;
1262 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1263 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1264 strncpy(pkt_dev->dst_min, buf, len);
1265 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1266 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1267 }
1268 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001269 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001270 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1272 return count;
1273 }
1274 if (!strcmp(name, "dst_max")) {
1275 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001276 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001277 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return -EFAULT;
1282
Luiz Capitulino222f1802006-03-20 22:16:13 -08001283 buf[len] = 0;
1284 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1285 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1286 strncpy(pkt_dev->dst_max, buf, len);
1287 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1288 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1289 }
1290 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001291 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 i += len;
1293 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1294 return count;
1295 }
1296 if (!strcmp(name, "dst6")) {
1297 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001298 if (len < 0)
1299 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 pkt_dev->flags |= F_IPV6;
1302
Luiz Capitulino222f1802006-03-20 22:16:13 -08001303 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001305 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Amerigo Wangc468fb12012-10-09 17:48:20 +00001307 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001308 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001310 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Luiz Capitulino222f1802006-03-20 22:16:13 -08001312 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001313 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Luiz Capitulino222f1802006-03-20 22:16:13 -08001315 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 sprintf(pg_result, "OK: dst6=%s", buf);
1317 return count;
1318 }
1319 if (!strcmp(name, "dst6_min")) {
1320 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001321 if (len < 0)
1322 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 pkt_dev->flags |= F_IPV6;
1325
Luiz Capitulino222f1802006-03-20 22:16:13 -08001326 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001328 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Amerigo Wangc468fb12012-10-09 17:48:20 +00001330 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001331 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001333 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001334 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001335 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Luiz Capitulino222f1802006-03-20 22:16:13 -08001337 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 sprintf(pg_result, "OK: dst6_min=%s", buf);
1339 return count;
1340 }
1341 if (!strcmp(name, "dst6_max")) {
1342 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 if (len < 0)
1344 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 pkt_dev->flags |= F_IPV6;
1347
Luiz Capitulino222f1802006-03-20 22:16:13 -08001348 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001350 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Amerigo Wangc468fb12012-10-09 17:48:20 +00001352 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001353 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Luiz Capitulino222f1802006-03-20 22:16:13 -08001355 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001356 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Luiz Capitulino222f1802006-03-20 22:16:13 -08001358 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 sprintf(pg_result, "OK: dst6_max=%s", buf);
1360 return count;
1361 }
1362 if (!strcmp(name, "src6")) {
1363 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001364 if (len < 0)
1365 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 pkt_dev->flags |= F_IPV6;
1368
Luiz Capitulino222f1802006-03-20 22:16:13 -08001369 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001371 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Amerigo Wangc468fb12012-10-09 17:48:20 +00001373 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001374 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001376 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Luiz Capitulino222f1802006-03-20 22:16:13 -08001378 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001379 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001380
1381 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 sprintf(pg_result, "OK: src6=%s", buf);
1383 return count;
1384 }
1385 if (!strcmp(name, "src_min")) {
1386 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001387 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001388 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001389
Luiz Capitulino222f1802006-03-20 22:16:13 -08001390 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001392 buf[len] = 0;
1393 if (strcmp(buf, pkt_dev->src_min) != 0) {
1394 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1395 strncpy(pkt_dev->src_min, buf, len);
1396 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1397 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1398 }
1399 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001400 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 i += len;
1402 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1403 return count;
1404 }
1405 if (!strcmp(name, "src_max")) {
1406 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001407 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001408 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001409
Luiz Capitulino222f1802006-03-20 22:16:13 -08001410 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001412 buf[len] = 0;
1413 if (strcmp(buf, pkt_dev->src_max) != 0) {
1414 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1415 strncpy(pkt_dev->src_max, buf, len);
1416 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1417 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1418 }
1419 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001420 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 i += len;
1422 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1423 return count;
1424 }
1425 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001427 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001428 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001431 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001434 if (!mac_pton(valstr, pkt_dev->dst_mac))
1435 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 /* Set up Dest MAC */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001437 memcpy(&pkt_dev->hh[0], pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001438
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001439 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return count;
1441 }
1442 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001444 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001445 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001448 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001451 if (!mac_pton(valstr, pkt_dev->src_mac))
1452 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001453 /* Set up Src MAC */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001454 memcpy(&pkt_dev->hh[6], pkt_dev->src_mac, ETH_ALEN);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001455
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001456 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return count;
1458 }
1459
Luiz Capitulino222f1802006-03-20 22:16:13 -08001460 if (!strcmp(name, "clear_counters")) {
1461 pktgen_clear_counters(pkt_dev);
1462 sprintf(pg_result, "OK: Clearing counters.\n");
1463 return count;
1464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 if (!strcmp(name, "flows")) {
1467 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001468 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001469 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 i += len;
1472 if (value > MAX_CFLOWS)
1473 value = MAX_CFLOWS;
1474
1475 pkt_dev->cflows = value;
1476 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1477 return count;
1478 }
1479
1480 if (!strcmp(name, "flowlen")) {
1481 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001482 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001483 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 i += len;
1486 pkt_dev->lflow = value;
1487 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1488 return count;
1489 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001490
Robert Olsson45b270f2007-08-28 15:45:55 -07001491 if (!strcmp(name, "queue_map_min")) {
1492 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001493 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001494 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001495
Robert Olsson45b270f2007-08-28 15:45:55 -07001496 i += len;
1497 pkt_dev->queue_map_min = value;
1498 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1499 return count;
1500 }
1501
1502 if (!strcmp(name, "queue_map_max")) {
1503 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001504 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001505 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001506
Robert Olsson45b270f2007-08-28 15:45:55 -07001507 i += len;
1508 pkt_dev->queue_map_max = value;
1509 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1510 return count;
1511 }
1512
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001513 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001514 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001515
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001516 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001517 if (len < 0)
1518 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001519 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001520 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001521 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001522 cnt += sprintf(pg_result + cnt,
1523 "%08x%s", ntohl(pkt_dev->labels[n]),
1524 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001525
1526 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1527 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1528 pkt_dev->svlan_id = 0xffff;
1529
1530 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001531 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001532 }
1533 return count;
1534 }
1535
1536 if (!strcmp(name, "vlan_id")) {
1537 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001538 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001539 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001540
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001541 i += len;
1542 if (value <= 4095) {
1543 pkt_dev->vlan_id = value; /* turn on VLAN */
1544
1545 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001546 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001547
1548 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001549 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001550
1551 pkt_dev->nr_labels = 0; /* turn off MPLS */
1552 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1553 } else {
1554 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1555 pkt_dev->svlan_id = 0xffff;
1556
1557 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001558 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001559 }
1560 return count;
1561 }
1562
1563 if (!strcmp(name, "vlan_p")) {
1564 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001565 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001566 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001567
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001568 i += len;
1569 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1570 pkt_dev->vlan_p = value;
1571 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1572 } else {
1573 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1574 }
1575 return count;
1576 }
1577
1578 if (!strcmp(name, "vlan_cfi")) {
1579 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001580 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001581 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001582
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001583 i += len;
1584 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1585 pkt_dev->vlan_cfi = value;
1586 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1587 } else {
1588 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1589 }
1590 return count;
1591 }
1592
1593 if (!strcmp(name, "svlan_id")) {
1594 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001595 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001596 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001597
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001598 i += len;
1599 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1600 pkt_dev->svlan_id = value; /* turn on SVLAN */
1601
1602 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001603 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001604
1605 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001606 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001607
1608 pkt_dev->nr_labels = 0; /* turn off MPLS */
1609 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1610 } else {
1611 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1612 pkt_dev->svlan_id = 0xffff;
1613
1614 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001615 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001616 }
1617 return count;
1618 }
1619
1620 if (!strcmp(name, "svlan_p")) {
1621 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001622 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001623 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001624
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001625 i += len;
1626 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1627 pkt_dev->svlan_p = value;
1628 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1629 } else {
1630 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1631 }
1632 return count;
1633 }
1634
1635 if (!strcmp(name, "svlan_cfi")) {
1636 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001637 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001638 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001639
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001640 i += len;
1641 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1642 pkt_dev->svlan_cfi = value;
1643 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1644 } else {
1645 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1646 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001647 return count;
1648 }
1649
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001650 if (!strcmp(name, "tos")) {
1651 __u32 tmp_value = 0;
1652 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001653 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001654 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001655
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001656 i += len;
1657 if (len == 2) {
1658 pkt_dev->tos = tmp_value;
1659 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1660 } else {
1661 sprintf(pg_result, "ERROR: tos must be 00-ff");
1662 }
1663 return count;
1664 }
1665
1666 if (!strcmp(name, "traffic_class")) {
1667 __u32 tmp_value = 0;
1668 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001669 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001670 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001671
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001672 i += len;
1673 if (len == 2) {
1674 pkt_dev->traffic_class = tmp_value;
1675 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1676 } else {
1677 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1678 }
1679 return count;
1680 }
1681
John Fastabend9e50e3a2010-11-16 19:12:28 +00001682 if (!strcmp(name, "skb_priority")) {
1683 len = num_arg(&user_buffer[i], 9, &value);
1684 if (len < 0)
1685 return len;
1686
1687 i += len;
1688 pkt_dev->skb_priority = value;
1689 sprintf(pg_result, "OK: skb_priority=%i",
1690 pkt_dev->skb_priority);
1691 return count;
1692 }
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1695 return -EINVAL;
1696}
1697
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001698static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
Al Virod9dda782013-03-31 18:16:14 -04001700 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001701}
1702
Arjan van de Ven9a321442007-02-12 00:55:35 -08001703static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001704 .owner = THIS_MODULE,
1705 .open = pktgen_if_open,
1706 .read = seq_read,
1707 .llseek = seq_lseek,
1708 .write = pktgen_if_write,
1709 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001710};
1711
1712static int pktgen_thread_show(struct seq_file *seq, void *v)
1713{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001714 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001715 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001717 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Luiz Capitulino222f1802006-03-20 22:16:13 -08001719 seq_printf(seq, "Running: ");
1720
1721 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001722 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001723 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001724 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Luiz Capitulino222f1802006-03-20 22:16:13 -08001726 seq_printf(seq, "\nStopped: ");
1727
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001728 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001729 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001730 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001733 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001735 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Luiz Capitulino222f1802006-03-20 22:16:13 -08001737 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001742static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743 const char __user * user_buffer,
1744 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Joe Perches8a994a72010-07-12 10:50:23 +00001746 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001747 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001748 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001750 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001753 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return -EINVAL;
1755 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001756
Paul Gortmakerd6182222010-10-18 12:14:44 +00001757 max = count;
1758 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001759 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001760 return len;
1761
Paul Gortmakerd6182222010-10-18 12:14:44 +00001762 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /* Read variable name */
1765
1766 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001767 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001768 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 memset(name, 0, sizeof(name));
1771 if (copy_from_user(name, &user_buffer[i], len))
1772 return -EFAULT;
1773 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001774
Luiz Capitulino222f1802006-03-20 22:16:13 -08001775 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001777 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001778 return len;
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 i += len;
1781
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001782 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001783 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Luiz Capitulino222f1802006-03-20 22:16:13 -08001785 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001786 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 ret = -EINVAL;
1788 goto out;
1789 }
1790
1791 pg_result = &(t->result[0]);
1792
Luiz Capitulino222f1802006-03-20 22:16:13 -08001793 if (!strcmp(name, "add_device")) {
1794 char f[32];
1795 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001797 if (len < 0) {
1798 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 goto out;
1800 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001801 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return -EFAULT;
1803 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001804 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001805 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001806 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001807 if (!ret) {
1808 ret = count;
1809 sprintf(pg_result, "OK: add_device=%s", f);
1810 } else
1811 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 goto out;
1813 }
1814
Luiz Capitulino222f1802006-03-20 22:16:13 -08001815 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001816 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001817 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001818 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001819 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001821 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 goto out;
1823 }
1824
Luiz Capitulino222f1802006-03-20 22:16:13 -08001825 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001826 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001827 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 goto out;
1829 }
1830
1831 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001832out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return ret;
1834}
1835
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001836static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Al Virod9dda782013-03-31 18:16:14 -04001838 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
Arjan van de Ven9a321442007-02-12 00:55:35 -08001841static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001842 .owner = THIS_MODULE,
1843 .open = pktgen_thread_open,
1844 .read = seq_read,
1845 .llseek = seq_lseek,
1846 .write = pktgen_thread_write,
1847 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001848};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001851static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1852 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
1854 struct pktgen_thread *t;
1855 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001856 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Cong Wang4e58a022013-01-28 19:55:53 +00001858 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001859 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001861 if (remove) {
1862 if_lock(t);
1863 pkt_dev->removal_mark = 1;
1864 t->control |= T_REMDEV;
1865 if_unlock(t);
1866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 break;
1868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001870 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001873/*
1874 * mark a device for removal
1875 */
Cong Wang4e58a022013-01-28 19:55:53 +00001876static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
1878 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001879 const int max_tries = 10, msec_per_try = 125;
1880 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001881
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001882 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001883 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001884
Luiz Capitulino222f1802006-03-20 22:16:13 -08001885 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001886
Cong Wang4e58a022013-01-28 19:55:53 +00001887 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001888 if (pkt_dev == NULL)
1889 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001890
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001891 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001892 pr_debug("%s: waiting for %s to disappear....\n",
1893 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001894 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001895 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001896
1897 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001898 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1899 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001900 break;
1901 }
1902
1903 }
1904
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001905 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001906}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001907
Cong Wang4e58a022013-01-28 19:55:53 +00001908static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001909{
1910 struct pktgen_thread *t;
1911
Cong Wang4e58a022013-01-28 19:55:53 +00001912 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001913 struct pktgen_dev *pkt_dev;
1914
1915 list_for_each_entry(pkt_dev, &t->if_list, list) {
1916 if (pkt_dev->odev != dev)
1917 continue;
1918
David Howellsa8ca16e2013-04-12 17:27:28 +01001919 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001920
Alexey Dobriyan29753152009-08-28 23:34:43 -07001921 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001922 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001923 &pktgen_if_fops,
1924 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001925 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001926 pr_err("can't move proc entry for '%s'\n",
1927 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001928 break;
1929 }
1930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Luiz Capitulino222f1802006-03-20 22:16:13 -08001933static int pktgen_device_event(struct notifier_block *unused,
1934 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Jiri Pirko351638e2013-05-28 01:30:21 +00001936 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001937 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Cong Wang4e58a022013-01-28 19:55:53 +00001939 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001940 return NOTIFY_DONE;
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 /* It is OK that we do not hold the group lock right now,
1943 * as we run under the RTNL lock.
1944 */
1945
1946 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001947 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001948 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001952 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 return NOTIFY_DONE;
1957}
1958
Cong Wang4e58a022013-01-28 19:55:53 +00001959static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
1960 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001961 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001962{
1963 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00001964 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001965
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001966 for (i = 0; ifname[i] != '@'; i++) {
1967 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001968 break;
1969
1970 b[i] = ifname[i];
1971 }
1972 b[i] = 0;
1973
Cong Wang4e58a022013-01-28 19:55:53 +00001974 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07001975}
1976
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/* Associate pktgen_dev with a device. */
1979
Cong Wang4e58a022013-01-28 19:55:53 +00001980static int pktgen_setup_dev(const struct pktgen_net *pn,
1981 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001982{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001984 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 if (pkt_dev->odev) {
1988 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001989 pkt_dev->odev = NULL;
1990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Cong Wang4e58a022013-01-28 19:55:53 +00001992 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001994 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001995 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001999 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002000 err = -EINVAL;
2001 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002002 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002003 err = -ENETDOWN;
2004 } else {
2005 pkt_dev->odev = odev;
2006 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002010 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
2013/* Read pkt_dev from the interface and set up internal pktgen_dev
2014 * structure to have the right information to create/send packets
2015 */
2016static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2017{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002018 int ntxq;
2019
Luiz Capitulino222f1802006-03-20 22:16:13 -08002020 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002021 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002022 sprintf(pkt_dev->result,
2023 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2024 return;
2025 }
2026
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002027 /* make sure that we don't pick a non-existing transmit queue */
2028 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002029
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002030 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002031 pr_warning("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2032 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2033 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002034 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002035 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002036 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002037 pr_warning("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2038 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2039 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002040 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002041 }
2042
Luiz Capitulino222f1802006-03-20 22:16:13 -08002043 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002045 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002046 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Luiz Capitulino222f1802006-03-20 22:16:13 -08002048 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002049 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Luiz Capitulino222f1802006-03-20 22:16:13 -08002051 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002052 int i, set = 0, err = 1;
2053 struct inet6_dev *idev;
2054
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002055 if (pkt_dev->min_pkt_size == 0) {
2056 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2057 + sizeof(struct udphdr)
2058 + sizeof(struct pktgen_hdr)
2059 + pkt_dev->pkt_overhead;
2060 }
2061
Luiz Capitulino222f1802006-03-20 22:16:13 -08002062 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2063 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 set = 1;
2065 break;
2066 }
2067
Luiz Capitulino222f1802006-03-20 22:16:13 -08002068 if (!set) {
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /*
2071 * Use linklevel address if unconfigured.
2072 *
2073 * use ipv6_get_lladdr if/when it's get exported
2074 */
2075
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002076 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002077 idev = __in6_dev_get(pkt_dev->odev);
2078 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 struct inet6_ifaddr *ifp;
2080
2081 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002082 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2083 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002084 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002085 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 err = 0;
2087 break;
2088 }
2089 }
2090 read_unlock_bh(&idev->lock);
2091 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002092 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002093 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002094 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002096 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002097 if (pkt_dev->min_pkt_size == 0) {
2098 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2099 + sizeof(struct udphdr)
2100 + sizeof(struct pktgen_hdr)
2101 + pkt_dev->pkt_overhead;
2102 }
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 pkt_dev->saddr_min = 0;
2105 pkt_dev->saddr_max = 0;
2106 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002107
2108 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002111 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (in_dev) {
2113 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002114 pkt_dev->saddr_min =
2115 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 pkt_dev->saddr_max = pkt_dev->saddr_min;
2117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002120 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2122 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2123 }
2124
2125 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2126 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2127 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002128 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002129 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2130 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2131 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2132
Luiz Capitulino222f1802006-03-20 22:16:13 -08002133 pkt_dev->cur_dst_mac_offset = 0;
2134 pkt_dev->cur_src_mac_offset = 0;
2135 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2136 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2137 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2138 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 pkt_dev->nflows = 0;
2140}
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002143static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2144{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002145 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002146 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002147 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002148
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002149 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2150 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002151
Daniel Turull43d28b62010-06-09 22:49:57 +00002152 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002153 if (remaining <= 0) {
2154 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002155 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002156 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002157
Daniel Borkmann398f3822012-10-28 08:27:19 +00002158 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002159 if (remaining < 100000) {
2160 /* for small delays (<100us), just loop until limit is reached */
2161 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002162 end_time = ktime_get();
2163 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002164 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002165 /* see do_nanosleep */
2166 hrtimer_init_sleeper(&t, current);
2167 do {
2168 set_current_state(TASK_INTERRUPTIBLE);
2169 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2170 if (!hrtimer_active(&t.timer))
2171 t.task = NULL;
2172
2173 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002176 hrtimer_cancel(&t.timer);
2177 } while (t.task && pkt_dev->running && !signal_pending(current));
2178 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002179 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002181
2182 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002183 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002186static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2187{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002188 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002189 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2190 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2191 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2192}
2193
Stephen Hemminger648fda72009-08-27 13:55:07 +00002194static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002195{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002196 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002197}
2198
2199static inline int f_pick(struct pktgen_dev *pkt_dev)
2200{
2201 int flow = pkt_dev->curfl;
2202
2203 if (pkt_dev->flags & F_FLOW_SEQ) {
2204 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2205 /* reset time */
2206 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002207 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002208 pkt_dev->curfl += 1;
2209 if (pkt_dev->curfl >= pkt_dev->cflows)
2210 pkt_dev->curfl = 0; /*reset */
2211 }
2212 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002213 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002214 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002215
Robert Olsson1211a642008-08-05 18:44:26 -07002216 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002217 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002218 pkt_dev->flows[flow].flags = 0;
2219 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002220 }
2221
2222 return pkt_dev->curfl;
2223}
2224
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002225
2226#ifdef CONFIG_XFRM
2227/* If there was already an IPSEC SA, we keep it as is, else
2228 * we go look for it ...
2229*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002230#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002231static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002232{
2233 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002234 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002235 if (!x) {
2236 /*slow path: we dont already have xfrm_state*/
Cong Wang4e58a022013-01-28 19:55:53 +00002237 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
Alexey Dobriyan5447c5e2008-11-25 17:31:51 -08002238 (xfrm_address_t *)&pkt_dev->cur_daddr,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002239 (xfrm_address_t *)&pkt_dev->cur_saddr,
2240 AF_INET,
2241 pkt_dev->ipsmode,
2242 pkt_dev->ipsproto, 0);
2243 if (x) {
2244 pkt_dev->flows[flow].x = x;
2245 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002246 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002247 }
2248
2249 }
2250}
2251#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002252static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2253{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002254
2255 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2256 pkt_dev->cur_queue_map = smp_processor_id();
2257
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002258 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002259 __u16 t;
2260 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002261 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002262 (pkt_dev->queue_map_max -
2263 pkt_dev->queue_map_min + 1)
2264 + pkt_dev->queue_map_min;
2265 } else {
2266 t = pkt_dev->cur_queue_map + 1;
2267 if (t > pkt_dev->queue_map_max)
2268 t = pkt_dev->queue_map_min;
2269 }
2270 pkt_dev->cur_queue_map = t;
2271 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002272 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 -07002273}
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275/* Increment/randomize headers according to flags and current values
2276 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2277 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002278static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2279{
2280 __u32 imn;
2281 __u32 imx;
2282 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002284 if (pkt_dev->cflows)
2285 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002288 if (pkt_dev->src_mac_count > 1) {
2289 __u32 mc;
2290 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Luiz Capitulino222f1802006-03-20 22:16:13 -08002292 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002293 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002294 else {
2295 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002296 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002297 pkt_dev->src_mac_count)
2298 pkt_dev->cur_src_mac_offset = 0;
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Luiz Capitulino222f1802006-03-20 22:16:13 -08002301 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2302 pkt_dev->hh[11] = tmp;
2303 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2304 pkt_dev->hh[10] = tmp;
2305 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2306 pkt_dev->hh[9] = tmp;
2307 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2308 pkt_dev->hh[8] = tmp;
2309 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2310 pkt_dev->hh[7] = tmp;
2311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Luiz Capitulino222f1802006-03-20 22:16:13 -08002313 /* Deal with Destination MAC */
2314 if (pkt_dev->dst_mac_count > 1) {
2315 __u32 mc;
2316 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Luiz Capitulino222f1802006-03-20 22:16:13 -08002318 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002319 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Luiz Capitulino222f1802006-03-20 22:16:13 -08002321 else {
2322 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002323 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002324 pkt_dev->dst_mac_count) {
2325 pkt_dev->cur_dst_mac_offset = 0;
2326 }
2327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Luiz Capitulino222f1802006-03-20 22:16:13 -08002329 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2330 pkt_dev->hh[5] = tmp;
2331 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2332 pkt_dev->hh[4] = tmp;
2333 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2334 pkt_dev->hh[3] = tmp;
2335 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2336 pkt_dev->hh[2] = tmp;
2337 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2338 pkt_dev->hh[1] = tmp;
2339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002341 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002342 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002343 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002344 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2345 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002346 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002347 htonl(0x000fffff));
2348 }
2349
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002350 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002351 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002352 }
2353
2354 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002355 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002356 }
2357
Luiz Capitulino222f1802006-03-20 22:16:13 -08002358 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2359 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002360 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002361 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2362 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Luiz Capitulino222f1802006-03-20 22:16:13 -08002364 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 pkt_dev->cur_udp_src++;
2366 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2367 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002368 }
2369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Luiz Capitulino222f1802006-03-20 22:16:13 -08002371 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2372 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002373 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002374 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2375 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002376 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002378 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002380 }
2381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 if (!(pkt_dev->flags & F_IPV6)) {
2384
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002385 imn = ntohl(pkt_dev->saddr_min);
2386 imx = ntohl(pkt_dev->saddr_max);
2387 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002389 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002390 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 else {
2392 t = ntohl(pkt_dev->cur_saddr);
2393 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002394 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 }
2398 pkt_dev->cur_saddr = htonl(t);
2399 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002400
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002401 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2403 } else {
Al Viro252e3342006-11-14 20:48:11 -08002404 imn = ntohl(pkt_dev->daddr_min);
2405 imx = ntohl(pkt_dev->daddr_max);
2406 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002408 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if (pkt_dev->flags & F_IPDST_RND) {
2410
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002411 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002412 t = prandom_u32() %
2413 (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002414 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002415 } while (ipv4_is_loopback(s) ||
2416 ipv4_is_multicast(s) ||
2417 ipv4_is_lbcast(s) ||
2418 ipv4_is_zeronet(s) ||
2419 ipv4_is_local_multicast(s));
Al Viro252e3342006-11-14 20:48:11 -08002420 pkt_dev->cur_daddr = s;
2421 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 t = ntohl(pkt_dev->cur_daddr);
2423 t++;
2424 if (t > imx) {
2425 t = imn;
2426 }
2427 pkt_dev->cur_daddr = htonl(t);
2428 }
2429 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002430 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002431 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002432 pkt_dev->flows[flow].cur_daddr =
2433 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002434#ifdef CONFIG_XFRM
2435 if (pkt_dev->flags & F_IPSEC_ON)
2436 get_ipsec_sa(pkt_dev, flow);
2437#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 pkt_dev->nflows++;
2439 }
2440 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002441 } else { /* IPV6 * */
2442
Joe Perches06e30412012-10-18 17:55:31 +00002443 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 int i;
2445
2446 /* Only random destinations yet */
2447
Luiz Capitulino222f1802006-03-20 22:16:13 -08002448 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002450 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002451 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2452 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
2456
Luiz Capitulino222f1802006-03-20 22:16:13 -08002457 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2458 __u32 t;
2459 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002460 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002461 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2462 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002463 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002465 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002467 }
2468 pkt_dev->cur_pkt_size = t;
2469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002471 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 pkt_dev->flows[flow].count++;
2474}
2475
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002476
2477#ifdef CONFIG_XFRM
2478static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2479{
2480 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2481 int err = 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002482
2483 if (!x)
2484 return 0;
2485 /* XXX: we dont support tunnel mode for now until
2486 * we resolve the dst issue */
2487 if (x->props.mode != XFRM_MODE_TRANSPORT)
2488 return 0;
2489
2490 spin_lock(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002491
Herbert Xu13996372007-10-17 21:35:51 -07002492 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002493 if (err)
2494 goto error;
2495 err = x->type->output(x, skb);
2496 if (err)
2497 goto error;
2498
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002499 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002500 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002501error:
2502 spin_unlock(&x->lock);
2503 return err;
2504}
2505
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002506static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002507{
2508 if (pkt_dev->cflows) {
2509 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002510 int i;
2511 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002512 struct xfrm_state *x = pkt_dev->flows[i].x;
2513 if (x) {
2514 xfrm_state_put(x);
2515 pkt_dev->flows[i].x = NULL;
2516 }
2517 }
2518 }
2519}
2520
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002521static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002522 struct sk_buff *skb, __be16 protocol)
2523{
2524 if (pkt_dev->flags & F_IPSEC_ON) {
2525 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2526 int nhead = 0;
2527 if (x) {
2528 int ret;
2529 __u8 *eth;
2530 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002531 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002532 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2533 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002534 pr_err("Error expanding ipsec packet %d\n",
2535 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002536 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002537 }
2538 }
2539
2540 /* ipsec is not expecting ll header */
2541 skb_pull(skb, ETH_HLEN);
2542 ret = pktgen_output_ipsec(skb, pkt_dev);
2543 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002544 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002545 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002546 }
2547 /* restore ll */
2548 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2549 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002550 *(u16 *) &eth[12] = protocol;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002551 }
2552 }
2553 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002554err:
2555 kfree_skb(skb);
2556 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002557}
2558#endif
2559
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002560static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2561{
Eric Dumazet95c96172012-04-15 05:58:06 +00002562 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002563 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002564 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002565
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002566 mpls--;
2567 *mpls |= MPLS_STACK_BOTTOM;
2568}
2569
Al Viro0f37c602006-11-03 03:49:56 -08002570static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2571 unsigned int prio)
2572{
2573 return htons(id | (cfi << 12) | (prio << 13));
2574}
2575
Eric Dumazet26ad7872011-01-25 13:26:05 -08002576static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2577 int datalen)
2578{
2579 struct timeval timestamp;
2580 struct pktgen_hdr *pgh;
2581
2582 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2583 datalen -= sizeof(*pgh);
2584
2585 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002586 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002587 } else {
2588 int frags = pkt_dev->nfrags;
2589 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002590 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002591
2592
2593 if (frags > MAX_SKB_FRAGS)
2594 frags = MAX_SKB_FRAGS;
2595 len = datalen - frags * PAGE_SIZE;
2596 if (len > 0) {
2597 memset(skb_put(skb, len), 0, len);
2598 datalen = frags * PAGE_SIZE;
2599 }
2600
2601 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002602 frag_len = (datalen/frags) < PAGE_SIZE ?
2603 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002604 while (datalen > 0) {
2605 if (unlikely(!pkt_dev->page)) {
2606 int node = numa_node_id();
2607
2608 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2609 node = pkt_dev->node;
2610 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2611 if (!pkt_dev->page)
2612 break;
2613 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002614 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002615 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002616 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002617 /*last fragment, fill rest of data*/
2618 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002619 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2620 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002621 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002622 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2623 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2624 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2625 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002626 i++;
2627 skb_shinfo(skb)->nr_frags = i;
2628 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002629 }
2630
2631 /* Stamp the time, and sequence number,
2632 * convert them to network byte order
2633 */
2634 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2635 pgh->seq_num = htonl(pkt_dev->seq_num);
2636
2637 do_gettimeofday(&timestamp);
2638 pgh->tv_sec = htonl(timestamp.tv_sec);
2639 pgh->tv_usec = htonl(timestamp.tv_usec);
2640}
2641
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002642static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
2643 struct pktgen_dev *pkt_dev,
2644 unsigned int extralen)
2645{
2646 struct sk_buff *skb = NULL;
2647 unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen +
2648 pkt_dev->pkt_overhead;
2649
2650 if (pkt_dev->flags & F_NODE) {
2651 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2652
2653 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2654 if (likely(skb)) {
2655 skb_reserve(skb, NET_SKB_PAD);
2656 skb->dev = dev;
2657 }
2658 } else {
2659 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2660 }
2661
2662 return skb;
2663}
2664
Luiz Capitulino222f1802006-03-20 22:16:13 -08002665static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2666 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
2668 struct sk_buff *skb = NULL;
2669 __u8 *eth;
2670 struct udphdr *udph;
2671 int datalen, iplen;
2672 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002673 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002674 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002675 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2676 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2677 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2678 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002679 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002680
2681 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002682 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002683
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002684 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002685 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002686
Robert Olsson64053be2005-06-26 15:27:10 -07002687 /* Update any of the values, used when we're incrementing various
2688 * fields.
2689 */
2690 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002691 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002692
David S. Miller7ac54592006-01-18 14:19:10 -08002693 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002694
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002695 skb = pktgen_alloc_skb(odev, pkt_dev, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 if (!skb) {
2697 sprintf(pkt_dev->result, "No memory");
2698 return NULL;
2699 }
2700
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002701 prefetchw(skb->data);
David S. Miller7ac54592006-01-18 14:19:10 -08002702 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 /* Reserve for ethernet and IP header */
2705 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002706 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2707 if (pkt_dev->nr_labels)
2708 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002709
2710 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002711 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002712 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002713 *svlan_tci = build_tci(pkt_dev->svlan_id,
2714 pkt_dev->svlan_cfi,
2715 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002716 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002717 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002718 }
2719 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002720 *vlan_tci = build_tci(pkt_dev->vlan_id,
2721 pkt_dev->vlan_cfi,
2722 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002723 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002724 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002725 }
2726
Thomas Graf525cebe2013-06-03 11:49:23 +00002727 skb_set_mac_header(skb, 0);
2728 skb_set_network_header(skb, skb->len);
2729 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2730
2731 skb_set_transport_header(skb, skb->len);
2732 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002733 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002734 skb->priority = pkt_dev->skb_priority;
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002737 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002739 /* Eth + IPh + UDPh + mpls */
2740 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002741 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002742 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 udph->source = htons(pkt_dev->cur_udp_src);
2746 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002747 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002748 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 iph->ihl = 5;
2751 iph->version = 4;
2752 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002753 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002754 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 iph->saddr = pkt_dev->cur_saddr;
2756 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002757 iph->id = htons(pkt_dev->ip_id);
2758 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 iph->frag_off = 0;
2760 iplen = 20 + 8 + datalen;
2761 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002762 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002763 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 skb->dev = odev;
2765 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002766
2767 if (!(pkt_dev->flags & F_UDPCSUM)) {
2768 skb->ip_summed = CHECKSUM_NONE;
2769 } else if (odev->features & NETIF_F_V4_CSUM) {
2770 skb->ip_summed = CHECKSUM_PARTIAL;
2771 skb->csum = 0;
2772 udp4_hwcsum(skb, udph->source, udph->dest);
2773 } else {
2774 __wsum csum = udp_csum(skb);
2775
2776 /* add protocol-dependent pseudo-header */
2777 udph->check = csum_tcpudp_magic(udph->source, udph->dest,
2778 datalen + 8, IPPROTO_UDP, csum);
2779
2780 if (udph->check == 0)
2781 udph->check = CSUM_MANGLED_0;
2782 }
2783
Eric Dumazet26ad7872011-01-25 13:26:05 -08002784 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002785
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002786#ifdef CONFIG_XFRM
2787 if (!process_ipsec(pkt_dev, skb, protocol))
2788 return NULL;
2789#endif
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return skb;
2792}
2793
Luiz Capitulino222f1802006-03-20 22:16:13 -08002794static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2795 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
2797 struct sk_buff *skb = NULL;
2798 __u8 *eth;
2799 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002800 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002802 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002803 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002804 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2805 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2806 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2807 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002808 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002809
2810 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002811 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002812
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002813 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002814 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002815
Robert Olsson64053be2005-06-26 15:27:10 -07002816 /* Update any of the values, used when we're incrementing various
2817 * fields.
2818 */
2819 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002820 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002821
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002822 skb = pktgen_alloc_skb(odev, pkt_dev, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (!skb) {
2824 sprintf(pkt_dev->result, "No memory");
2825 return NULL;
2826 }
2827
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002828 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 skb_reserve(skb, 16);
2830
2831 /* Reserve for ethernet and IP header */
2832 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002833 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2834 if (pkt_dev->nr_labels)
2835 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002836
2837 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002838 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002839 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002840 *svlan_tci = build_tci(pkt_dev->svlan_id,
2841 pkt_dev->svlan_cfi,
2842 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002843 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002844 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002845 }
2846 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002847 *vlan_tci = build_tci(pkt_dev->vlan_id,
2848 pkt_dev->vlan_cfi,
2849 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002850 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002851 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002852 }
2853
Thomas Graf525cebe2013-06-03 11:49:23 +00002854 skb_set_mac_header(skb, 0);
2855 skb_set_network_header(skb, skb->len);
2856 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2857
2858 skb_set_transport_header(skb, skb->len);
2859 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002860 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002861 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002864 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002865
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002866 /* Eth + IPh + UDPh + mpls */
2867 datalen = pkt_dev->cur_pkt_size - 14 -
2868 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002869 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002871 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002873 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 }
2875
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002876 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 udph->source = htons(pkt_dev->cur_udp_src);
2878 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002879 udph->len = htons(udplen);
2880 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002882 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002884 if (pkt_dev->traffic_class) {
2885 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002886 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002887 }
2888
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 iph->hop_limit = 32;
2890
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002891 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 iph->nexthdr = IPPROTO_UDP;
2893
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002894 iph->daddr = pkt_dev->cur_in6_daddr;
2895 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002897 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 skb->dev = odev;
2899 skb->pkt_type = PACKET_HOST;
2900
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002901 if (!(pkt_dev->flags & F_UDPCSUM)) {
2902 skb->ip_summed = CHECKSUM_NONE;
2903 } else if (odev->features & NETIF_F_V6_CSUM) {
2904 skb->ip_summed = CHECKSUM_PARTIAL;
2905 skb->csum_start = skb_transport_header(skb) - skb->head;
2906 skb->csum_offset = offsetof(struct udphdr, check);
2907 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2908 } else {
2909 __wsum csum = udp_csum(skb);
2910
2911 /* add protocol-dependent pseudo-header */
2912 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2913
2914 if (udph->check == 0)
2915 udph->check = CSUM_MANGLED_0;
2916 }
2917
Eric Dumazet26ad7872011-01-25 13:26:05 -08002918 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 return skb;
2921}
2922
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002923static struct sk_buff *fill_packet(struct net_device *odev,
2924 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002926 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 return fill_packet_ipv6(odev, pkt_dev);
2928 else
2929 return fill_packet_ipv4(odev, pkt_dev);
2930}
2931
Luiz Capitulino222f1802006-03-20 22:16:13 -08002932static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002934 pkt_dev->seq_num = 1;
2935 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002937 pkt_dev->tx_bytes = 0;
2938 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939}
2940
2941/* Set up structure for sending pkts, clear counters */
2942
2943static void pktgen_run(struct pktgen_thread *t)
2944{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002945 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 int started = 0;
2947
Joe Perchesf9467ea2010-06-21 12:29:14 +00002948 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
2950 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002951 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 /*
2954 * setup odev and create initial packet.
2955 */
2956 pktgen_setup_inject(pkt_dev);
2957
Luiz Capitulino222f1802006-03-20 22:16:13 -08002958 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002960 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00002962 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002963
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002964 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 strcpy(pkt_dev->result, "Starting");
2967 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002968 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 strcpy(pkt_dev->result, "Error starting");
2970 }
2971 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002972 if (started)
2973 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974}
2975
Cong Wang4e58a022013-01-28 19:55:53 +00002976static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002978 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Joe Perchesf9467ea2010-06-21 12:29:14 +00002980 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002982 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002983
Cong Wang4e58a022013-01-28 19:55:53 +00002984 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002985 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002986
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002987 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988}
2989
Stephen Hemminger648fda72009-08-27 13:55:07 +00002990static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002992 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002994 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00002995 if (pkt_dev->running)
2996 return 1;
2997 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
2999
Luiz Capitulino222f1802006-03-20 22:16:13 -08003000static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003002 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Luiz Capitulino222f1802006-03-20 22:16:13 -08003004 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Luiz Capitulino222f1802006-03-20 22:16:13 -08003006 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Luiz Capitulino222f1802006-03-20 22:16:13 -08003008 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Luiz Capitulino222f1802006-03-20 22:16:13 -08003010 if (signal_pending(current))
3011 goto signal;
3012 if_lock(t);
3013 }
3014 if_unlock(t);
3015 return 1;
3016signal:
3017 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018}
3019
Cong Wang4e58a022013-01-28 19:55:53 +00003020static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003022 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003024
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003025 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003026
Cong Wang4e58a022013-01-28 19:55:53 +00003027 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003029 if (sig == 0)
3030 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003032
3033 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003034 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003036
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003037 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 return sig;
3039}
3040
Cong Wang4e58a022013-01-28 19:55:53 +00003041static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003043 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Joe Perchesf9467ea2010-06-21 12:29:14 +00003045 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003047 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Cong Wang4e58a022013-01-28 19:55:53 +00003049 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003051
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003052 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003054 /* Propagate thread->control */
3055 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003056
Cong Wang4e58a022013-01-28 19:55:53 +00003057 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
Cong Wang4e58a022013-01-28 19:55:53 +00003060static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003061{
3062 struct pktgen_thread *t;
3063
Joe Perchesf9467ea2010-06-21 12:29:14 +00003064 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003065
3066 mutex_lock(&pktgen_thread_lock);
3067
Cong Wang4e58a022013-01-28 19:55:53 +00003068 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003069 t->control |= (T_REMDEVALL);
3070
3071 mutex_unlock(&pktgen_thread_lock);
3072
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003073 /* Propagate thread->control */
3074 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003075
Cong Wang4e58a022013-01-28 19:55:53 +00003076 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003077}
3078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3080{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003081 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003082 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003083 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3084 pkt_dev->started_at);
3085 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Daniel Turull03a14ab2011-03-09 14:11:00 -08003087 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003088 (unsigned long long)ktime_to_us(elapsed),
3089 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3090 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003091 (unsigned long long)pkt_dev->sofar,
3092 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003094 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3095 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Luiz Capitulino222f1802006-03-20 22:16:13 -08003097 bps = pps * 8 * pkt_dev->cur_pkt_size;
3098
3099 mbps = bps;
3100 do_div(mbps, 1000000);
3101 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3102 (unsigned long long)pps,
3103 (unsigned long long)mbps,
3104 (unsigned long long)bps,
3105 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003109static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003111 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003112
Luiz Capitulino222f1802006-03-20 22:16:13 -08003113 if (!pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003114 pr_warning("interface: %s is already stopped\n",
3115 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003116 return -EINVAL;
3117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003119 kfree_skb(pkt_dev->skb);
3120 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003121 pkt_dev->stopped_at = ktime_get();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003122 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003124 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Luiz Capitulino222f1802006-03-20 22:16:13 -08003126 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127}
3128
Luiz Capitulino222f1802006-03-20 22:16:13 -08003129static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003131 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 if_lock(t);
3134
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003135 list_for_each_entry(pkt_dev, &t->if_list, list) {
3136 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003137 continue;
3138 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003139 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003140 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003141 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 }
3143 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003144 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145}
3146
Luiz Capitulino222f1802006-03-20 22:16:13 -08003147static void pktgen_stop(struct pktgen_thread *t)
3148{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003149 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Joe Perchesf9467ea2010-06-21 12:29:14 +00003151 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
Luiz Capitulino222f1802006-03-20 22:16:13 -08003153 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003155 list_for_each_entry(pkt_dev, &t->if_list, list) {
3156 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Luiz Capitulino222f1802006-03-20 22:16:13 -08003159 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
3161
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003162/*
3163 * one of our devices needs to be removed - find it
3164 * and remove it
3165 */
3166static void pktgen_rem_one_if(struct pktgen_thread *t)
3167{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003168 struct list_head *q, *n;
3169 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003170
Joe Perchesf9467ea2010-06-21 12:29:14 +00003171 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003172
3173 if_lock(t);
3174
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003175 list_for_each_safe(q, n, &t->if_list) {
3176 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003177
Luiz Capitulino222f1802006-03-20 22:16:13 -08003178 if (!cur->removal_mark)
3179 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003180
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003181 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003182 cur->skb = NULL;
3183
3184 pktgen_remove_device(t, cur);
3185
3186 break;
3187 }
3188
3189 if_unlock(t);
3190}
3191
Luiz Capitulino222f1802006-03-20 22:16:13 -08003192static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003194 struct list_head *q, *n;
3195 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003196
Joe Perchesf9467ea2010-06-21 12:29:14 +00003197 func_enter();
3198
Luiz Capitulino222f1802006-03-20 22:16:13 -08003199 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003200
Luiz Capitulino222f1802006-03-20 22:16:13 -08003201 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003203 list_for_each_safe(q, n, &t->if_list) {
3204 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003205
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003206 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003207 cur->skb = NULL;
3208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 pktgen_remove_device(t, cur);
3210 }
3211
Luiz Capitulino222f1802006-03-20 22:16:13 -08003212 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213}
3214
Luiz Capitulino222f1802006-03-20 22:16:13 -08003215static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003217 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003218 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219}
3220
Stephen Hemmingeref879792009-09-22 19:41:43 +00003221static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003222{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003223 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003224 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003225 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003226}
3227
Stephen Hemmingeref879792009-09-22 19:41:43 +00003228static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3229{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003230 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003231
3232 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3233 if (signal_pending(current))
3234 break;
3235
3236 if (need_resched())
3237 pktgen_resched(pkt_dev);
3238 else
3239 cpu_relax();
3240 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003241 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003242}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003243
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003244static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245{
Stephen Hemminger00829822008-11-20 20:14:53 -08003246 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003247 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003248 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003249 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003250 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 int ret;
3252
Stephen Hemmingeref879792009-09-22 19:41:43 +00003253 /* If device is offline, then don't send */
3254 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3255 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003256 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003258
Stephen Hemmingeref879792009-09-22 19:41:43 +00003259 /* This is max DELAY, this has special meaning of
3260 * "never transmit"
3261 */
3262 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003263 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003264 return;
3265 }
3266
3267 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003268 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3269 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3270 /* build a new pkt */
3271 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003272
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003273 pkt_dev->skb = fill_packet(odev, pkt_dev);
3274 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003275 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003276 schedule();
3277 pkt_dev->clone_count--; /* back out increment, OOM */
3278 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003280 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003281 pkt_dev->allocated_skbs++;
3282 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003284
Stephen Hemmingeref879792009-09-22 19:41:43 +00003285 if (pkt_dev->delay && pkt_dev->last_ok)
3286 spin(pkt_dev, pkt_dev->next_tx);
3287
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003288 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3289 txq = netdev_get_tx_queue(odev, queue_map);
3290
3291 __netif_tx_lock_bh(txq);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003292
Tom Herbert734664982011-11-28 16:32:44 +00003293 if (unlikely(netif_xmit_frozen_or_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003294 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003295 pkt_dev->last_ok = 0;
3296 goto unlock;
3297 }
3298 atomic_inc(&(pkt_dev->skb->users));
3299 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Stephen Hemmingeref879792009-09-22 19:41:43 +00003301 switch (ret) {
3302 case NETDEV_TX_OK:
3303 txq_trans_update(txq);
3304 pkt_dev->last_ok = 1;
3305 pkt_dev->sofar++;
3306 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003307 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003308 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003309 case NET_XMIT_DROP:
3310 case NET_XMIT_CN:
3311 case NET_XMIT_POLICED:
3312 /* skb has been consumed */
3313 pkt_dev->errors++;
3314 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003315 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003316 net_info_ratelimited("%s xmit error: %d\n",
3317 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003318 pkt_dev->errors++;
3319 /* fallthru */
3320 case NETDEV_TX_LOCKED:
3321 case NETDEV_TX_BUSY:
3322 /* Retry it next time */
3323 atomic_dec(&(pkt_dev->skb->users));
3324 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003325 }
Eric Dumazet0835acf2009-09-30 13:03:33 +00003326unlock:
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003327 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 /* If pkt_dev->count is zero, then run forever */
3330 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003331 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 /* Done with this */
3334 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003335 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003336}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003338/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 * Main loop of the thread goes here
3340 */
3341
David S. Milleree74baa2007-01-01 20:51:53 -08003342static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343{
3344 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003345 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003346 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
David S. Milleree74baa2007-01-01 20:51:53 -08003349 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
3351 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003352 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Joe Perchesf9467ea2010-06-21 12:29:14 +00003354 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
David S. Milleree74baa2007-01-01 20:51:53 -08003356 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003357
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003358 set_freezable();
3359
David S. Milleree74baa2007-01-01 20:51:53 -08003360 while (!kthread_should_stop()) {
3361 pkt_dev = next_to_run(t);
3362
Stephen Hemmingeref879792009-09-22 19:41:43 +00003363 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003364 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003365 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003366 wait_event_interruptible_timeout(t->queue,
3367 t->control != 0,
3368 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003369 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003370 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003371 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 __set_current_state(TASK_RUNNING);
3374
Stephen Hemmingeref879792009-09-22 19:41:43 +00003375 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 pktgen_xmit(pkt_dev);
3377
Stephen Hemmingeref879792009-09-22 19:41:43 +00003378 if (need_resched())
3379 pktgen_resched(pkt_dev);
3380 else
3381 cpu_relax();
3382 }
3383
Luiz Capitulino222f1802006-03-20 22:16:13 -08003384 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 pktgen_stop(t);
3386 t->control &= ~(T_STOP);
3387 }
3388
Luiz Capitulino222f1802006-03-20 22:16:13 -08003389 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 pktgen_run(t);
3391 t->control &= ~(T_RUN);
3392 }
3393
Luiz Capitulino222f1802006-03-20 22:16:13 -08003394 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003396 t->control &= ~(T_REMDEVALL);
3397 }
3398
Luiz Capitulino222f1802006-03-20 22:16:13 -08003399 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003400 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 t->control &= ~(T_REMDEV);
3402 }
3403
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003404 try_to_freeze();
3405
David S. Milleree74baa2007-01-01 20:51:53 -08003406 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Joe Perchesf9467ea2010-06-21 12:29:14 +00003409 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003410 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Joe Perchesf9467ea2010-06-21 12:29:14 +00003412 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003413 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Joe Perchesf9467ea2010-06-21 12:29:14 +00003415 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003416 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003417
Eric Dumazet551eaff2010-11-21 10:26:44 -08003418 /* Wait for kthread_stop */
3419 while (!kthread_should_stop()) {
3420 set_current_state(TASK_INTERRUPTIBLE);
3421 schedule();
3422 }
3423 __set_current_state(TASK_RUNNING);
3424
David S. Milleree74baa2007-01-01 20:51:53 -08003425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426}
3427
Luiz Capitulino222f1802006-03-20 22:16:13 -08003428static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003429 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003431 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003432 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Eric Dumazet3e984842009-11-24 14:50:53 -08003434 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003435 list_for_each_entry(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003436 if (strncmp(p->odevname, ifname, len) == 0) {
3437 if (p->odevname[len]) {
3438 if (exact || p->odevname[len] != '@')
3439 continue;
3440 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003441 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003442 break;
3443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Luiz Capitulino222f1802006-03-20 22:16:13 -08003445 if_unlock(t);
Joe Perchesf9467ea2010-06-21 12:29:14 +00003446 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003447 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448}
3449
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003450/*
3451 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 */
3453
Luiz Capitulino222f1802006-03-20 22:16:13 -08003454static int add_dev_to_thread(struct pktgen_thread *t,
3455 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456{
3457 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Luiz Capitulino222f1802006-03-20 22:16:13 -08003459 if_lock(t);
3460
3461 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003462 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003463 rv = -EBUSY;
3464 goto out;
3465 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003466
3467 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003468 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 pkt_dev->running = 0;
3470
Luiz Capitulino222f1802006-03-20 22:16:13 -08003471out:
3472 if_unlock(t);
3473 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474}
3475
3476/* Called under thread lock */
3477
Luiz Capitulino222f1802006-03-20 22:16:13 -08003478static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003480 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003481 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003482 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 /* We don't allow a device to be on several threads */
3485
Cong Wang4e58a022013-01-28 19:55:53 +00003486 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003487 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003488 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003489 return -EBUSY;
3490 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003491
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003492 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003493 if (!pkt_dev)
3494 return -ENOMEM;
3495
Eric Dumazet593f63b2009-11-23 01:44:37 +00003496 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003497 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003498 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003499 if (pkt_dev->flows == NULL) {
3500 kfree(pkt_dev);
3501 return -ENOMEM;
3502 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003503
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003504 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003505 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003506 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003507 pkt_dev->count = pg_count_d;
3508 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003509 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003510 pkt_dev->udp_src_max = 9;
3511 pkt_dev->udp_dst_min = 9;
3512 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003513 pkt_dev->vlan_p = 0;
3514 pkt_dev->vlan_cfi = 0;
3515 pkt_dev->vlan_id = 0xffff;
3516 pkt_dev->svlan_p = 0;
3517 pkt_dev->svlan_cfi = 0;
3518 pkt_dev->svlan_id = 0xffff;
Robert Olssone99b99b2010-03-18 22:44:30 +00003519 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003520
Cong Wang4e58a022013-01-28 19:55:53 +00003521 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003522 if (err)
3523 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003524 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3525 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003526
Cong Wang4e58a022013-01-28 19:55:53 +00003527 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003528 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003529 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003530 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003531 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003532 err = -EINVAL;
3533 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003534 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003535#ifdef CONFIG_XFRM
3536 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3537 pkt_dev->ipsproto = IPPROTO_ESP;
3538#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003539
3540 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003541out2:
3542 dev_put(pkt_dev->odev);
3543out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003544#ifdef CONFIG_XFRM
3545 free_SAs(pkt_dev);
3546#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003547 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003548 kfree(pkt_dev);
3549 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550}
3551
Cong Wang4e58a022013-01-28 19:55:53 +00003552static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003554 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003555 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003556 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003558 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3559 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003560 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003561 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003562 return -ENOMEM;
3563 }
3564
Luiz Capitulino222f1802006-03-20 22:16:13 -08003565 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003567
David S. Milleree74baa2007-01-01 20:51:53 -08003568 INIT_LIST_HEAD(&t->if_list);
3569
Cong Wang4e58a022013-01-28 19:55:53 +00003570 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003571 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003572
Eric Dumazet94dcf292011-03-22 16:30:45 -07003573 p = kthread_create_on_node(pktgen_thread_worker,
3574 t,
3575 cpu_to_node(cpu),
3576 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003577 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003578 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003579 list_del(&t->th_list);
3580 kfree(t);
3581 return PTR_ERR(p);
3582 }
3583 kthread_bind(p, cpu);
3584 t->tsk = p;
3585
Cong Wang4e58a022013-01-28 19:55:53 +00003586 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003587 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003588 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003589 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003590 PG_PROC_DIR, t->tsk->comm);
3591 kthread_stop(p);
3592 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003593 kfree(t);
3594 return -EINVAL;
3595 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003596
Cong Wang4e58a022013-01-28 19:55:53 +00003597 t->net = pn;
David S. Milleree74baa2007-01-01 20:51:53 -08003598 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003599 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
3601 return 0;
3602}
3603
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003604/*
3605 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003607static void _rem_dev_from_if_list(struct pktgen_thread *t,
3608 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003610 struct list_head *q, *n;
3611 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003613 list_for_each_safe(q, n, &t->if_list) {
3614 p = list_entry(q, struct pktgen_dev, list);
3615 if (p == pkt_dev)
3616 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 }
3618}
3619
Luiz Capitulino222f1802006-03-20 22:16:13 -08003620static int pktgen_remove_device(struct pktgen_thread *t,
3621 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003623 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
Luiz Capitulino222f1802006-03-20 22:16:13 -08003625 if (pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003626 pr_warning("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003627 pktgen_stop_device(pkt_dev);
3628 }
3629
3630 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
3632 if (pkt_dev->odev) {
3633 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003634 pkt_dev->odev = NULL;
3635 }
3636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 /* And update the thread if_list */
3638
3639 _rem_dev_from_if_list(t, pkt_dev);
3640
Stephen Hemminger39df2322007-03-04 16:11:51 -08003641 if (pkt_dev->entry)
David Howellsa8ca16e2013-04-12 17:27:28 +01003642 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003644#ifdef CONFIG_XFRM
3645 free_SAs(pkt_dev);
3646#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003647 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003648 if (pkt_dev->page)
3649 put_page(pkt_dev->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003651 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652}
3653
Cong Wang4e58a022013-01-28 19:55:53 +00003654static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655{
Cong Wang4e58a022013-01-28 19:55:53 +00003656 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003657 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003658 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003659
Cong Wang4e58a022013-01-28 19:55:53 +00003660 pn->net = net;
3661 INIT_LIST_HEAD(&pn->pktgen_threads);
3662 pn->pktgen_exiting = false;
3663 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3664 if (!pn->proc_dir) {
3665 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003666 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003667 }
Cong Wang4e58a022013-01-28 19:55:53 +00003668 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3669 if (pe == NULL) {
3670 pr_err("cannot create %s procfs entry\n", PGCTRL);
3671 ret = -EINVAL;
3672 goto remove;
3673 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003674
John Hawkes670c02c2005-10-13 09:30:31 -07003675 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003676 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Cong Wang4e58a022013-01-28 19:55:53 +00003678 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003679 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003680 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003681 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003682 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003683
Cong Wang4e58a022013-01-28 19:55:53 +00003684 if (list_empty(&pn->pktgen_threads)) {
3685 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003686 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003687 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003688 }
3689
Luiz Capitulino222f1802006-03-20 22:16:13 -08003690 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003691
Cong Wang4e58a022013-01-28 19:55:53 +00003692remove_entry:
3693 remove_proc_entry(PGCTRL, pn->proc_dir);
3694remove:
Gao fengece31ff2013-02-18 01:34:56 +00003695 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003696 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697}
3698
Cong Wang4e58a022013-01-28 19:55:53 +00003699static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{
Cong Wang4e58a022013-01-28 19:55:53 +00003701 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003702 struct pktgen_thread *t;
3703 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003704 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Luiz Capitulino222f1802006-03-20 22:16:13 -08003706 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003707 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
Eric Dumazetc57b5462012-05-09 13:29:51 +00003709 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003710 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003711 mutex_unlock(&pktgen_thread_lock);
3712
3713 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003714 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003715 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003716 kthread_stop(t->tsk);
3717 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Cong Wang4e58a022013-01-28 19:55:53 +00003720 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003721 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003722}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Cong Wang4e58a022013-01-28 19:55:53 +00003724static struct pernet_operations pg_net_ops = {
3725 .init = pg_net_init,
3726 .exit = pg_net_exit,
3727 .id = &pg_net_id,
3728 .size = sizeof(struct pktgen_net),
3729};
3730
3731static int __init pg_init(void)
3732{
3733 int ret = 0;
3734
3735 pr_info("%s", version);
3736 ret = register_pernet_subsys(&pg_net_ops);
3737 if (ret)
3738 return ret;
3739 ret = register_netdevice_notifier(&pktgen_notifier_block);
3740 if (ret)
3741 unregister_pernet_subsys(&pg_net_ops);
3742
3743 return ret;
3744}
3745
3746static void __exit pg_cleanup(void)
3747{
3748 unregister_netdevice_notifier(&pktgen_notifier_block);
3749 unregister_pernet_subsys(&pg_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750}
3751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752module_init(pg_init);
3753module_exit(pg_cleanup);
3754
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003755MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756MODULE_DESCRIPTION("Packet Generator tool");
3757MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003758MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003760MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003762MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003764MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003766MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");