blob: 8b849ddfef2e743676fe35642cd49d36188dd74d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Authors:
3 * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se>
4 * Uppsala University and
5 * Swedish University of Agricultural Sciences
6 *
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Ben Greear <greearb@candelatech.com>
Jan Engelhardt96de0e22007-10-19 23:21:04 +02009 * Jens Låås <jens.laas@data.slu.se>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 *
17 * A tool for loading the network with preconfigurated packets.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090018 * The tool is implemented as a linux module. Parameters are output
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * device, delay (to hard_xmit), number of packets, and whether
20 * to use multiple SKBs or just the same one.
21 * pktgen uses the installed interface's output routine.
22 *
23 * Additional hacking by:
24 *
25 * Jens.Laas@data.slu.se
26 * Improved by ANK. 010120.
27 * Improved by ANK even more. 010212.
28 * MAC address typo fixed. 010417 --ro
29 * Integrated. 020301 --DaveM
30 * Added multiskb option 020301 --DaveM
31 * Scaling of results. 020417--sigurdur@linpro.no
32 * Significant re-work of the module:
33 * * Convert to threaded model to more efficiently be able to transmit
34 * and receive on multiple interfaces at once.
35 * * Converted many counters to __u64 to allow longer runs.
36 * * Allow configuration of ranges, like min/max IP address, MACs,
37 * and UDP-ports, for both source and destination, and can
38 * set to use a random distribution or sequentially walk the range.
39 * * Can now change most values after starting.
40 * * Place 12-byte packet in UDP payload with magic number,
41 * sequence number, and timestamp.
42 * * Add receiver code that detects dropped pkts, re-ordered pkts, and
43 * latencies (with micro-second) precision.
44 * * Add IOCTL interface to easily get counters & configuration.
45 * --Ben Greear <greearb@candelatech.com>
46 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090047 * Renamed multiskb to clone_skb and cleaned up sending core for two distinct
48 * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * as a "fastpath" with a configurable number of clones after alloc's.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090050 * clone_skb=0 means all packets are allocated this also means ranges time
51 * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * clones.
53 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090054 * Also moved to /proc/net/pktgen/
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * --ro
56 *
57 * Sept 10: Fixed threading/locking. Lots of bone-headed and more clever
58 * mistakes. Also merged in DaveM's patch in the -pre6 patch.
59 * --Ben Greear <greearb@candelatech.com>
60 *
61 * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br)
62 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * 021124 Finished major redesign and rewrite for new functionality.
65 * See Documentation/networking/pktgen.txt for how to use this.
66 *
67 * The new operation:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090068 * For each CPU one thread/process is created at start. This process checks
69 * for running devices in the if_list and sends packets until count is 0 it
70 * also the thread checks the thread->control which is used for inter-process
71 * communication. controlling process "posts" operations to the threads this
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +020072 * way.
73 * The if_list is RCU protected, and the if_lock remains to protect updating
74 * of if_list, from "add_device" as it invoked from userspace (via proc write).
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090076 * By design there should only be *one* "controlling" process. In practice
77 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070079 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090081 * Note when adding devices to a specific CPU there good idea to also assign
82 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * --ro
84 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090085 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * memleak 030710- KJP
87 *
88 * First "ranges" functionality for ipv6 030726 --ro
89 *
90 * Included flow support. 030802 ANK.
91 *
92 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090093 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
95 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
96 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090097 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * <shemminger@osdl.org> 040923
99 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900100 * Randy Dunlap fixed u64 printk compiler waring
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
102 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
103 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
104 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900105 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
107 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900108 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800110 *
111 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
112 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700113 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
114 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700115 * Fixed src_mac command to set source mac of packet to value specified in
116 * command by Adit Ranadive <adit.262@gmail.com>
117 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000119
120#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <linux/sys.h>
123#include <linux/types.h>
124#include <linux/module.h>
125#include <linux/moduleparam.h>
126#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800127#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#include <linux/sched.h>
129#include <linux/slab.h>
130#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#include <linux/unistd.h>
132#include <linux/string.h>
133#include <linux/ptrace.h>
134#include <linux/errno.h>
135#include <linux/ioport.h>
136#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800137#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700138#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700139#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#include <linux/delay.h>
141#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800142#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#include <linux/init.h>
144#include <linux/skbuff.h>
145#include <linux/netdevice.h>
146#include <linux/inet.h>
147#include <linux/inetdevice.h>
148#include <linux/rtnetlink.h>
149#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700150#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#include <linux/in.h>
152#include <linux/ip.h>
153#include <linux/ipv6.h>
154#include <linux/udp.h>
155#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700156#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800158#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800159#include <linux/kthread.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700160#include <linux/prefetch.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200161#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#include <net/checksum.h>
163#include <net/ipv6.h>
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200164#include <net/udp.h>
Stephen Rothwell73d94e92013-07-29 16:21:26 +1000165#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700167#ifdef CONFIG_XFRM
168#include <net/xfrm.h>
169#endif
Cong Wang4e58a022013-01-28 19:55:53 +0000170#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#include <asm/byteorder.h>
172#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700173#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000174#include <linux/io.h>
175#include <linux/timex.h>
176#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800178#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Daniel Turull43d28b62010-06-09 22:49:57 +0000180#define VERSION "2.74"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800182#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800183#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Joe Perchesf9467ea2010-06-21 12:29:14 +0000185#define func_enter() pr_debug("entering %s\n", __func__);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800188#define F_IPSRC_RND (1<<0) /* IP-Src Random */
189#define F_IPDST_RND (1<<1) /* IP-Dst Random */
190#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
191#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
192#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
193#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
194#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
195#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800196#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700197#define F_VID_RND (1<<9) /* Random VLAN ID */
198#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700199#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700200#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700201#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700202#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000203#define F_NODE (1<<15) /* Node memory alloc*/
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200204#define F_UDPCSUM (1<<16) /* Include UDP checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000207#define T_STOP (1<<0) /* Stop run */
208#define T_RUN (1<<1) /* Start run */
209#define T_REMDEVALL (1<<2) /* Remove all devs */
210#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200212/* If lock -- protects updating of if_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#define if_lock(t) spin_lock(&(t->if_lock));
214#define if_unlock(t) spin_unlock(&(t->if_lock));
215
216/* Used to help with determining the pkts on receive */
217#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700218#define PG_PROC_DIR "pktgen"
219#define PGCTRL "pgctrl"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221#define MAX_CFLOWS 65536
222
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700223#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
224#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
225
Luiz Capitulino222f1802006-03-20 22:16:13 -0800226struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800227 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800228 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700229#ifdef CONFIG_XFRM
230 struct xfrm_state *x;
231#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700232 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700235/* flow flag bits */
236#define F_INIT (1<<0) /* flow has been initialized */
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /*
240 * Try to keep frequent/infrequent used vars. separated.
241 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800242 struct proc_dir_entry *entry; /* proc file */
243 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000244 struct list_head list; /* chaining in the thread's run-queue */
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +0200245 struct rcu_head rcu; /* freed by RCU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000247 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800248
249 /* If min != max, then we will either do a linear iteration, or
250 * we will do a random selection from within the range.
251 */
252 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800253 int removal_mark; /* non-zero => the device is marked for
254 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Amerigo Wang68bf9f02012-10-09 17:48:17 +0000256 int min_pkt_size;
257 int max_pkt_size;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700258 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800259 int nfrags;
Eric Dumazet26ad7872011-01-25 13:26:05 -0800260 struct page *page;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000261 u64 delay; /* nano-seconds */
262
Luiz Capitulino222f1802006-03-20 22:16:13 -0800263 __u64 count; /* Default No packets to send */
264 __u64 sofar; /* How many pkts we've sent so far */
265 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800266 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Luiz Capitulino222f1802006-03-20 22:16:13 -0800268 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Luiz Capitulino222f1802006-03-20 22:16:13 -0800270 __u64 allocated_skbs;
271 __u32 clone_count;
272 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000273 * Or a failed transmit of some sort?
274 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800275 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000276 ktime_t next_tx;
277 ktime_t started_at;
278 ktime_t stopped_at;
279 u64 idle_acc; /* nano-seconds */
280
Luiz Capitulino222f1802006-03-20 22:16:13 -0800281 __u32 seq_num;
282
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000283 int clone_skb; /*
284 * Use multiple SKBs during packet gen.
285 * If this number is greater than 1, then
286 * that many copies of the same packet will be
287 * sent before a new packet is allocated.
288 * If you want to send 1024 identical packets
289 * before creating a new packet,
290 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800291 */
292
293 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
294 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
295 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
296 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
297
298 struct in6_addr in6_saddr;
299 struct in6_addr in6_daddr;
300 struct in6_addr cur_in6_daddr;
301 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800303 struct in6_addr min_in6_daddr;
304 struct in6_addr max_in6_daddr;
305 struct in6_addr min_in6_saddr;
306 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Luiz Capitulino222f1802006-03-20 22:16:13 -0800308 /* If we're doing ranges, random or incremental, then this
309 * defines the min/max for those ranges.
310 */
Al Viro252e3342006-11-14 20:48:11 -0800311 __be32 saddr_min; /* inclusive, source IP address */
312 __be32 saddr_max; /* exclusive, source IP address */
313 __be32 daddr_min; /* inclusive, dest IP address */
314 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Luiz Capitulino222f1802006-03-20 22:16:13 -0800316 __u16 udp_src_min; /* inclusive, source UDP port */
317 __u16 udp_src_max; /* exclusive, source UDP port */
318 __u16 udp_dst_min; /* inclusive, dest UDP port */
319 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700321 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000322 __u8 tos; /* six MSB of (former) IPv4 TOS
323 are for dscp codepoint */
324 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
325 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700326
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800327 /* MPLS */
Eric Dumazet95c96172012-04-15 05:58:06 +0000328 unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800329 __be32 labels[MAX_MPLS_LABELS];
330
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700331 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
332 __u8 vlan_p;
333 __u8 vlan_cfi;
334 __u16 vlan_id; /* 0xffff means no vlan tag */
335
336 __u8 svlan_p;
337 __u8 svlan_cfi;
338 __u16 svlan_id; /* 0xffff means no svlan tag */
339
Luiz Capitulino222f1802006-03-20 22:16:13 -0800340 __u32 src_mac_count; /* How many MACs to iterate through */
341 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Luiz Capitulino222f1802006-03-20 22:16:13 -0800343 unsigned char dst_mac[ETH_ALEN];
344 unsigned char src_mac[ETH_ALEN];
345
346 __u32 cur_dst_mac_offset;
347 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800348 __be32 cur_saddr;
349 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700350 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800351 __u16 cur_udp_dst;
352 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700353 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800354 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800355 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800356
357 __u8 hh[14];
358 /* = {
359 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
360
361 We fill in SRC address later
362 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
363 0x08, 0x00
364 };
365 */
366 __u16 pad; /* pad out the hh struct to an even 16 bytes */
367
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000368 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800369 * are transmitting the same one multiple times
370 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000371 struct net_device *odev; /* The out-going device.
372 * Note that the device should have it's
373 * pg_info pointer pointing back to this
374 * device.
375 * Set when the user specifies the out-going
376 * device name (not when the inject is
377 * started as it used to do.)
378 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000379 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct flow_state *flows;
Eric Dumazet95c96172012-04-15 05:58:06 +0000381 unsigned int cflows; /* Concurrent flows (config) */
382 unsigned int lflow; /* Flow length (config) */
383 unsigned int nflows; /* accumulated flows (stats) */
384 unsigned int curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700385
386 u16 queue_map_min;
387 u16 queue_map_max;
John Fastabend9e50e3a2010-11-16 19:12:28 +0000388 __u32 skb_priority; /* skb priority field */
Robert Olssone99b99b2010-03-18 22:44:30 +0000389 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700390
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700391#ifdef CONFIG_XFRM
392 __u8 ipsmode; /* IPSEC mode (config) */
393 __u8 ipsproto; /* IPSEC type (config) */
Fan Dude4aee72014-01-03 11:18:30 +0800394 __u32 spi;
Fan Ducf93d472014-01-03 11:18:31 +0800395 struct dst_entry dst;
396 struct dst_ops dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700397#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800398 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
401struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800402 __be32 pgh_magic;
403 __be32 seq_num;
404 __be32 tv_sec;
405 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
Cong Wang4e58a022013-01-28 19:55:53 +0000408
409static int pg_net_id __read_mostly;
410
411struct pktgen_net {
412 struct net *net;
413 struct proc_dir_entry *proc_dir;
414 struct list_head pktgen_threads;
415 bool pktgen_exiting;
416};
Eric Dumazet551eaff2010-11-21 10:26:44 -0800417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000419 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800420 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800421 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800422 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800423 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000425 /* Field for thread to receive "posted" events terminate,
426 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800427
428 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 int cpu;
430
Luiz Capitulino222f1802006-03-20 22:16:13 -0800431 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700432 struct completion start_done;
Cong Wang4e58a022013-01-28 19:55:53 +0000433 struct pktgen_net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434};
435
436#define REMOVE 1
437#define FIND 0
438
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000439static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000440 "Packet Generator for packet performance testing. "
441 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Luiz Capitulino222f1802006-03-20 22:16:13 -0800443static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
444static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
445static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800446 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
Cong Wang4e58a022013-01-28 19:55:53 +0000448static void pktgen_run_all_threads(struct pktgen_net *pn);
449static void pktgen_reset_all_threads(struct pktgen_net *pn);
450static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000451
Luiz Capitulino222f1802006-03-20 22:16:13 -0800452static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000456static int pg_count_d __read_mostly = 1000;
457static int pg_delay_d __read_mostly;
458static int pg_clone_skb_d __read_mostly;
459static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Luiz Capitulino222fa072006-03-20 22:24:27 -0800461static DEFINE_MUTEX(pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static struct notifier_block pktgen_notifier_block = {
464 .notifier_call = pktgen_device_event,
465};
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900468 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 *
470 */
471
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700472static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800473{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000474 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000478static ssize_t pgctrl_write(struct file *file, const char __user *buf,
479 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700481 char data[128];
Cong Wang4e58a022013-01-28 19:55:53 +0000482 struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Mathias Krause09455742014-02-21 21:38:35 +0100484 if (!capable(CAP_NET_ADMIN))
485 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Mathias Krause20b0c712014-02-21 21:38:34 +0100487 if (count == 0)
488 return -EINVAL;
489
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700490 if (count > sizeof(data))
491 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Mathias Krause09455742014-02-21 21:38:35 +0100493 if (copy_from_user(data, buf, count))
494 return -EFAULT;
495
Mathias Krause20b0c712014-02-21 21:38:34 +0100496 data[count - 1] = 0; /* Strip trailing '\n' and terminate string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Luiz Capitulino222f1802006-03-20 22:16:13 -0800498 if (!strcmp(data, "stop"))
Cong Wang4e58a022013-01-28 19:55:53 +0000499 pktgen_stop_all_threads_ifs(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Luiz Capitulino222f1802006-03-20 22:16:13 -0800501 else if (!strcmp(data, "start"))
Cong Wang4e58a022013-01-28 19:55:53 +0000502 pktgen_run_all_threads(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800504 else if (!strcmp(data, "reset"))
Cong Wang4e58a022013-01-28 19:55:53 +0000505 pktgen_reset_all_threads(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800506
Luiz Capitulino222f1802006-03-20 22:16:13 -0800507 else
Joe Perchesf9467ea2010-06-21 12:29:14 +0000508 pr_warning("Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Mathias Krause09455742014-02-21 21:38:35 +0100510 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700513static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Al Virod9dda782013-03-31 18:16:14 -0400515 return single_open(file, pgctrl_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700516}
517
Arjan van de Ven9a321442007-02-12 00:55:35 -0800518static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800519 .owner = THIS_MODULE,
520 .open = pgctrl_open,
521 .read = seq_read,
522 .llseek = seq_lseek,
523 .write = pgctrl_write,
524 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700525};
526
527static int pktgen_if_show(struct seq_file *seq, void *v)
528{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000529 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000530 ktime_t stopped;
531 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Luiz Capitulino222f1802006-03-20 22:16:13 -0800533 seq_printf(seq,
534 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
535 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
536 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Luiz Capitulino222f1802006-03-20 22:16:13 -0800538 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000539 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
540 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000541 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Luiz Capitulino222f1802006-03-20 22:16:13 -0800543 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
544 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Robert Olsson45b270f2007-08-28 15:45:55 -0700546 seq_printf(seq,
547 " queue_map_min: %u queue_map_max: %u\n",
548 pkt_dev->queue_map_min,
549 pkt_dev->queue_map_max);
550
John Fastabend9e50e3a2010-11-16 19:12:28 +0000551 if (pkt_dev->skb_priority)
552 seq_printf(seq, " skb_priority: %u\n",
553 pkt_dev->skb_priority);
554
Luiz Capitulino222f1802006-03-20 22:16:13 -0800555 if (pkt_dev->flags & F_IPV6) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800556 seq_printf(seq,
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000557 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
558 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
559 &pkt_dev->in6_saddr,
560 &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr,
561 &pkt_dev->in6_daddr,
562 &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000563 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800564 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000565 " dst_min: %s dst_max: %s\n",
566 pkt_dev->dst_min, pkt_dev->dst_max);
567 seq_printf(seq,
568 " src_min: %s src_max: %s\n",
569 pkt_dev->src_min, pkt_dev->src_max);
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700572 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Johannes Berge1749612008-10-27 15:59:26 -0700574 seq_printf(seq, "%pM ",
575 is_zero_ether_addr(pkt_dev->src_mac) ?
576 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Thomas Graf97dc48e2014-05-16 23:28:54 +0200578 seq_puts(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700579 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Luiz Capitulino222f1802006-03-20 22:16:13 -0800581 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000582 " udp_src_min: %d udp_src_max: %d"
583 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800584 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
585 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Luiz Capitulino222f1802006-03-20 22:16:13 -0800587 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800588 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700589 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800591 if (pkt_dev->nr_labels) {
Eric Dumazet95c96172012-04-15 05:58:06 +0000592 unsigned int i;
Thomas Graf97dc48e2014-05-16 23:28:54 +0200593 seq_puts(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700594 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800595 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
596 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
597 }
598
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000599 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700600 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000601 pkt_dev->vlan_id, pkt_dev->vlan_p,
602 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700603
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000604 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700605 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000606 pkt_dev->svlan_id, pkt_dev->svlan_p,
607 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700608
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000609 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700610 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700611
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000612 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700613 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700614
Robert Olssone99b99b2010-03-18 22:44:30 +0000615 if (pkt_dev->node >= 0)
616 seq_printf(seq, " node: %d\n", pkt_dev->node);
617
Thomas Graf97dc48e2014-05-16 23:28:54 +0200618 seq_puts(seq, " Flags: ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800619
Luiz Capitulino222f1802006-03-20 22:16:13 -0800620 if (pkt_dev->flags & F_IPV6)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200621 seq_puts(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Luiz Capitulino222f1802006-03-20 22:16:13 -0800623 if (pkt_dev->flags & F_IPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200624 seq_puts(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Luiz Capitulino222f1802006-03-20 22:16:13 -0800626 if (pkt_dev->flags & F_IPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200627 seq_puts(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Luiz Capitulino222f1802006-03-20 22:16:13 -0800629 if (pkt_dev->flags & F_TXSIZE_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200630 seq_puts(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Luiz Capitulino222f1802006-03-20 22:16:13 -0800632 if (pkt_dev->flags & F_UDPSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200633 seq_puts(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Luiz Capitulino222f1802006-03-20 22:16:13 -0800635 if (pkt_dev->flags & F_UDPDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200636 seq_puts(seq, "UDPDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800637
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200638 if (pkt_dev->flags & F_UDPCSUM)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200639 seq_puts(seq, "UDPCSUM ");
Thomas Grafc26bf4a2013-07-25 18:12:18 +0200640
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800641 if (pkt_dev->flags & F_MPLS_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200642 seq_puts(seq, "MPLS_RND ");
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800643
Robert Olsson45b270f2007-08-28 15:45:55 -0700644 if (pkt_dev->flags & F_QUEUE_MAP_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200645 seq_puts(seq, "QUEUE_MAP_RND ");
Robert Olsson45b270f2007-08-28 15:45:55 -0700646
Robert Olssone6fce5b2008-08-07 02:23:01 -0700647 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200648 seq_puts(seq, "QUEUE_MAP_CPU ");
Robert Olssone6fce5b2008-08-07 02:23:01 -0700649
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700650 if (pkt_dev->cflows) {
651 if (pkt_dev->flags & F_FLOW_SEQ)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200652 seq_puts(seq, "FLOW_SEQ "); /*in sequence flows*/
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700653 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200654 seq_puts(seq, "FLOW_RND ");
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700655 }
656
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700657#ifdef CONFIG_XFRM
Fan Du81013282014-01-03 11:18:33 +0800658 if (pkt_dev->flags & F_IPSEC_ON) {
Thomas Graf97dc48e2014-05-16 23:28:54 +0200659 seq_puts(seq, "IPSEC ");
Fan Du81013282014-01-03 11:18:33 +0800660 if (pkt_dev->spi)
661 seq_printf(seq, "spi:%u", pkt_dev->spi);
662 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700663#endif
664
Luiz Capitulino222f1802006-03-20 22:16:13 -0800665 if (pkt_dev->flags & F_MACSRC_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200666 seq_puts(seq, "MACSRC_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800667
668 if (pkt_dev->flags & F_MACDST_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200669 seq_puts(seq, "MACDST_RND ");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800670
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700671 if (pkt_dev->flags & F_VID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200672 seq_puts(seq, "VID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700673
674 if (pkt_dev->flags & F_SVID_RND)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200675 seq_puts(seq, "SVID_RND ");
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700676
Robert Olssone99b99b2010-03-18 22:44:30 +0000677 if (pkt_dev->flags & F_NODE)
Thomas Graf97dc48e2014-05-16 23:28:54 +0200678 seq_puts(seq, "NODE_ALLOC ");
Robert Olssone99b99b2010-03-18 22:44:30 +0000679
Luiz Capitulino222f1802006-03-20 22:16:13 -0800680 seq_puts(seq, "\n");
681
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000682 /* not really stopped, more like last-running-at */
Daniel Borkmann398f3822012-10-28 08:27:19 +0000683 stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000684 idle = pkt_dev->idle_acc;
685 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686
687 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000688 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800689 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000690 (unsigned long long)pkt_dev->errors);
691
692 seq_printf(seq,
693 " started: %lluus stopped: %lluus idle: %lluus\n",
694 (unsigned long long) ktime_to_us(pkt_dev->started_at),
695 (unsigned long long) ktime_to_us(stopped),
696 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800697
698 seq_printf(seq,
699 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700700 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
701 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Luiz Capitulino222f1802006-03-20 22:16:13 -0800703 if (pkt_dev->flags & F_IPV6) {
Alexey Dobriyan47a02002011-05-03 11:23:40 +0000704 seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
705 &pkt_dev->cur_in6_saddr,
706 &pkt_dev->cur_in6_daddr);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800707 } else
Amerigo Wang0373a942012-10-09 17:48:18 +0000708 seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n",
709 &pkt_dev->cur_saddr, &pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Luiz Capitulino222f1802006-03-20 22:16:13 -0800711 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700712 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Robert Olsson45b270f2007-08-28 15:45:55 -0700714 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
715
Luiz Capitulino222f1802006-03-20 22:16:13 -0800716 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800719 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 else
Thomas Graf97dc48e2014-05-16 23:28:54 +0200721 seq_puts(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800726
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000727static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
728 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800729{
730 int i = 0;
731 *num = 0;
732
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700733 for (; i < maxlen; i++) {
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000734 int value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800735 char c;
736 *num <<= 4;
737 if (get_user(c, &user_buffer[i]))
738 return -EFAULT;
Andy Shevchenko82fd5b52010-09-20 20:40:26 +0000739 value = hex_to_bin(c);
740 if (value >= 0)
741 *num |= value;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800742 else
743 break;
744 }
745 return i;
746}
747
Luiz Capitulino222f1802006-03-20 22:16:13 -0800748static int count_trail_chars(const char __user * user_buffer,
749 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 int i;
752
753 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800754 char c;
755 if (get_user(c, &user_buffer[i]))
756 return -EFAULT;
757 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 case '\"':
759 case '\n':
760 case '\r':
761 case '\t':
762 case ' ':
763 case '=':
764 break;
765 default:
766 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769done:
770 return i;
771}
772
Paul Gortmakerbf0813b2012-01-19 15:40:06 +0000773static long num_arg(const char __user *user_buffer, unsigned long maxlen,
774 unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000776 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800778
Paul Gortmakerd6182222010-10-18 12:14:44 +0000779 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800780 char c;
781 if (get_user(c, &user_buffer[i]))
782 return -EFAULT;
783 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800785 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 } else
787 break;
788 }
789 return i;
790}
791
Luiz Capitulino222f1802006-03-20 22:16:13 -0800792static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Paul Gortmakerd6182222010-10-18 12:14:44 +0000794 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Paul Gortmakerd6182222010-10-18 12:14:44 +0000796 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800797 char c;
798 if (get_user(c, &user_buffer[i]))
799 return -EFAULT;
800 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 case '\"':
802 case '\n':
803 case '\r':
804 case '\t':
805 case ' ':
806 goto done_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 default:
808 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return i;
813}
814
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800815static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
816{
Eric Dumazet95c96172012-04-15 05:58:06 +0000817 unsigned int n = 0;
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800818 char c;
819 ssize_t i = 0;
820 int len;
821
822 pkt_dev->nr_labels = 0;
823 do {
824 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700825 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800826 if (len <= 0)
827 return len;
828 pkt_dev->labels[n] = htonl(tmp);
829 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
830 pkt_dev->flags |= F_MPLS_RND;
831 i += len;
832 if (get_user(c, &buffer[i]))
833 return -EFAULT;
834 i++;
835 n++;
836 if (n >= MAX_MPLS_LABELS)
837 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700838 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800839
840 pkt_dev->nr_labels = n;
841 return i;
842}
843
Luiz Capitulino222f1802006-03-20 22:16:13 -0800844static ssize_t pktgen_if_write(struct file *file,
845 const char __user * user_buffer, size_t count,
846 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Joe Perches8a994a72010-07-12 10:50:23 +0000848 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800849 struct pktgen_dev *pkt_dev = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +0000850 int i, max, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 char name[16], valstr[32];
852 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800853 char *pg_result = NULL;
854 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800856
857 pg_result = &(pkt_dev->result[0]);
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (count < 1) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000860 pr_warning("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return -EINVAL;
862 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800863
Paul Gortmakerd6182222010-10-18 12:14:44 +0000864 max = count;
865 tmp = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800866 if (tmp < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000867 pr_warning("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800868 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
Paul Gortmakerd6182222010-10-18 12:14:44 +0000870 i = tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /* Read variable name */
873
874 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000875 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800876 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800879 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return -EFAULT;
881 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800882
883 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800885 if (len < 0)
886 return len;
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 i += len;
889
890 if (debug) {
Dmitry Torokhov86c2c0a2010-11-06 20:11:38 +0000891 size_t copy = min_t(size_t, count, 1023);
Nelson Elhage448d7b52010-10-28 11:31:07 -0700892 char tb[copy + 1];
893 if (copy_from_user(tb, user_buffer, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return -EFAULT;
Nelson Elhage448d7b52010-10-28 11:31:07 -0700895 tb[copy] = 0;
Joe Perchesf342cda2012-05-16 17:50:41 +0000896 pr_debug("%s,%lu buffer -:%s:-\n",
897 name, (unsigned long)count, tb);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (!strcmp(name, "min_pkt_size")) {
901 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000902 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800903 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800906 if (value < 14 + 20 + 8)
907 value = 14 + 20 + 8;
908 if (value != pkt_dev->min_pkt_size) {
909 pkt_dev->min_pkt_size = value;
910 pkt_dev->cur_pkt_size = value;
911 }
912 sprintf(pg_result, "OK: min_pkt_size=%u",
913 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return count;
915 }
916
Luiz Capitulino222f1802006-03-20 22:16:13 -0800917 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000919 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800920 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800923 if (value < 14 + 20 + 8)
924 value = 14 + 20 + 8;
925 if (value != pkt_dev->max_pkt_size) {
926 pkt_dev->max_pkt_size = value;
927 pkt_dev->cur_pkt_size = value;
928 }
929 sprintf(pg_result, "OK: max_pkt_size=%u",
930 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return count;
932 }
933
Luiz Capitulino222f1802006-03-20 22:16:13 -0800934 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 if (!strcmp(name, "pkt_size")) {
937 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000938 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800939 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800942 if (value < 14 + 20 + 8)
943 value = 14 + 20 + 8;
944 if (value != pkt_dev->min_pkt_size) {
945 pkt_dev->min_pkt_size = value;
946 pkt_dev->max_pkt_size = value;
947 pkt_dev->cur_pkt_size = value;
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
950 return count;
951 }
952
Luiz Capitulino222f1802006-03-20 22:16:13 -0800953 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000955 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800956 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800959 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 sprintf(pg_result, "OK: debug=%u", debug);
961 return count;
962 }
963
Luiz Capitulino222f1802006-03-20 22:16:13 -0800964 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000966 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800967 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 i += len;
970 pkt_dev->nfrags = value;
971 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
972 return count;
973 }
974 if (!strcmp(name, "delay")) {
975 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000976 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800977 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000980 if (value == 0x7FFFFFFF)
981 pkt_dev->delay = ULLONG_MAX;
982 else
Eric Dumazet9240d712009-10-03 01:39:18 +0000983 pkt_dev->delay = (u64)value;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000984
985 sprintf(pg_result, "OK: delay=%llu",
986 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return count;
988 }
Daniel Turull43d28b62010-06-09 22:49:57 +0000989 if (!strcmp(name, "rate")) {
990 len = num_arg(&user_buffer[i], 10, &value);
991 if (len < 0)
992 return len;
993
994 i += len;
995 if (!value)
996 return len;
997 pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value;
998 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +0000999 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001000
1001 sprintf(pg_result, "OK: rate=%lu", value);
1002 return count;
1003 }
1004 if (!strcmp(name, "ratep")) {
1005 len = num_arg(&user_buffer[i], 10, &value);
1006 if (len < 0)
1007 return len;
1008
1009 i += len;
1010 if (!value)
1011 return len;
1012 pkt_dev->delay = NSEC_PER_SEC/value;
1013 if (debug)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001014 pr_info("Delay set at: %llu ns\n", pkt_dev->delay);
Daniel Turull43d28b62010-06-09 22:49:57 +00001015
1016 sprintf(pg_result, "OK: rate=%lu", value);
1017 return count;
1018 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001019 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001021 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001022 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001025 if (value != pkt_dev->udp_src_min) {
1026 pkt_dev->udp_src_min = value;
1027 pkt_dev->cur_udp_src = value;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1030 return count;
1031 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001034 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001035 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001038 if (value != pkt_dev->udp_dst_min) {
1039 pkt_dev->udp_dst_min = value;
1040 pkt_dev->cur_udp_dst = value;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1043 return count;
1044 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001045 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001047 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001048 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001051 if (value != pkt_dev->udp_src_max) {
1052 pkt_dev->udp_src_max = value;
1053 pkt_dev->cur_udp_src = value;
1054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1056 return count;
1057 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001058 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001060 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001061 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001064 if (value != pkt_dev->udp_dst_max) {
1065 pkt_dev->udp_dst_max = value;
1066 pkt_dev->cur_udp_dst = value;
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1069 return count;
1070 }
1071 if (!strcmp(name, "clone_skb")) {
1072 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001073 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001074 return len;
Neil Hormand8873312011-07-26 06:05:37 +00001075 if ((value > 0) &&
1076 (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)))
1077 return -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001079 pkt_dev->clone_skb = value;
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1082 return count;
1083 }
1084 if (!strcmp(name, "count")) {
1085 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001086 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001087 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 i += len;
1090 pkt_dev->count = value;
1091 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001092 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return count;
1094 }
1095 if (!strcmp(name, "src_mac_count")) {
1096 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001097 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001098 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 i += len;
1101 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001102 pkt_dev->src_mac_count = value;
1103 pkt_dev->cur_src_mac_offset = 0;
1104 }
1105 sprintf(pg_result, "OK: src_mac_count=%d",
1106 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return count;
1108 }
1109 if (!strcmp(name, "dst_mac_count")) {
1110 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001111 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001112 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 i += len;
1115 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001116 pkt_dev->dst_mac_count = value;
1117 pkt_dev->cur_dst_mac_offset = 0;
1118 }
1119 sprintf(pg_result, "OK: dst_mac_count=%d",
1120 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return count;
1122 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001123 if (!strcmp(name, "node")) {
1124 len = num_arg(&user_buffer[i], 10, &value);
1125 if (len < 0)
1126 return len;
1127
1128 i += len;
1129
1130 if (node_possible(value)) {
1131 pkt_dev->node = value;
1132 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
Eric Dumazet26ad7872011-01-25 13:26:05 -08001133 if (pkt_dev->page) {
1134 put_page(pkt_dev->page);
1135 pkt_dev->page = NULL;
1136 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001137 }
1138 else
1139 sprintf(pg_result, "ERROR: node not possible");
1140 return count;
1141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001143 char f[32];
1144 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001146 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001147 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (copy_from_user(f, &user_buffer[i], len))
1150 return -EFAULT;
1151 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001152 if (strcmp(f, "IPSRC_RND") == 0)
1153 pkt_dev->flags |= F_IPSRC_RND;
1154
1155 else if (strcmp(f, "!IPSRC_RND") == 0)
1156 pkt_dev->flags &= ~F_IPSRC_RND;
1157
1158 else if (strcmp(f, "TXSIZE_RND") == 0)
1159 pkt_dev->flags |= F_TXSIZE_RND;
1160
1161 else if (strcmp(f, "!TXSIZE_RND") == 0)
1162 pkt_dev->flags &= ~F_TXSIZE_RND;
1163
1164 else if (strcmp(f, "IPDST_RND") == 0)
1165 pkt_dev->flags |= F_IPDST_RND;
1166
1167 else if (strcmp(f, "!IPDST_RND") == 0)
1168 pkt_dev->flags &= ~F_IPDST_RND;
1169
1170 else if (strcmp(f, "UDPSRC_RND") == 0)
1171 pkt_dev->flags |= F_UDPSRC_RND;
1172
1173 else if (strcmp(f, "!UDPSRC_RND") == 0)
1174 pkt_dev->flags &= ~F_UDPSRC_RND;
1175
1176 else if (strcmp(f, "UDPDST_RND") == 0)
1177 pkt_dev->flags |= F_UDPDST_RND;
1178
1179 else if (strcmp(f, "!UDPDST_RND") == 0)
1180 pkt_dev->flags &= ~F_UDPDST_RND;
1181
1182 else if (strcmp(f, "MACSRC_RND") == 0)
1183 pkt_dev->flags |= F_MACSRC_RND;
1184
1185 else if (strcmp(f, "!MACSRC_RND") == 0)
1186 pkt_dev->flags &= ~F_MACSRC_RND;
1187
1188 else if (strcmp(f, "MACDST_RND") == 0)
1189 pkt_dev->flags |= F_MACDST_RND;
1190
1191 else if (strcmp(f, "!MACDST_RND") == 0)
1192 pkt_dev->flags &= ~F_MACDST_RND;
1193
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001194 else if (strcmp(f, "MPLS_RND") == 0)
1195 pkt_dev->flags |= F_MPLS_RND;
1196
1197 else if (strcmp(f, "!MPLS_RND") == 0)
1198 pkt_dev->flags &= ~F_MPLS_RND;
1199
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001200 else if (strcmp(f, "VID_RND") == 0)
1201 pkt_dev->flags |= F_VID_RND;
1202
1203 else if (strcmp(f, "!VID_RND") == 0)
1204 pkt_dev->flags &= ~F_VID_RND;
1205
1206 else if (strcmp(f, "SVID_RND") == 0)
1207 pkt_dev->flags |= F_SVID_RND;
1208
1209 else if (strcmp(f, "!SVID_RND") == 0)
1210 pkt_dev->flags &= ~F_SVID_RND;
1211
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001212 else if (strcmp(f, "FLOW_SEQ") == 0)
1213 pkt_dev->flags |= F_FLOW_SEQ;
1214
Robert Olsson45b270f2007-08-28 15:45:55 -07001215 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1216 pkt_dev->flags |= F_QUEUE_MAP_RND;
1217
1218 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1219 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001220
1221 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1222 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1223
1224 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1225 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001226#ifdef CONFIG_XFRM
1227 else if (strcmp(f, "IPSEC") == 0)
1228 pkt_dev->flags |= F_IPSEC_ON;
1229#endif
1230
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001231 else if (strcmp(f, "!IPV6") == 0)
1232 pkt_dev->flags &= ~F_IPV6;
1233
Robert Olssone99b99b2010-03-18 22:44:30 +00001234 else if (strcmp(f, "NODE_ALLOC") == 0)
1235 pkt_dev->flags |= F_NODE;
1236
1237 else if (strcmp(f, "!NODE_ALLOC") == 0)
1238 pkt_dev->flags &= ~F_NODE;
1239
Thomas Grafc26bf4a2013-07-25 18:12:18 +02001240 else if (strcmp(f, "UDPCSUM") == 0)
1241 pkt_dev->flags |= F_UDPCSUM;
1242
1243 else if (strcmp(f, "!UDPCSUM") == 0)
1244 pkt_dev->flags &= ~F_UDPCSUM;
1245
Luiz Capitulino222f1802006-03-20 22:16:13 -08001246 else {
1247 sprintf(pg_result,
1248 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1249 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001250 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Mathias Krause72f8e062014-02-21 21:38:36 +01001251 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, "
1252 "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, "
1253 "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, "
1254#ifdef CONFIG_XFRM
1255 "IPSEC, "
1256#endif
1257 "NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001258 return count;
1259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1261 return count;
1262 }
1263 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1264 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001265 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001266 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Luiz Capitulino222f1802006-03-20 22:16:13 -08001268 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001270 buf[len] = 0;
1271 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1272 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1273 strncpy(pkt_dev->dst_min, buf, len);
1274 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1275 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1276 }
1277 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001278 pr_debug("dst_min set to: %s\n", pkt_dev->dst_min);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001279 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1281 return count;
1282 }
1283 if (!strcmp(name, "dst_max")) {
1284 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001285 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001286 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Luiz Capitulino222f1802006-03-20 22:16:13 -08001289 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 return -EFAULT;
1291
Luiz Capitulino222f1802006-03-20 22:16:13 -08001292 buf[len] = 0;
1293 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1294 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1295 strncpy(pkt_dev->dst_max, buf, len);
1296 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1297 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1298 }
1299 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001300 pr_debug("dst_max set to: %s\n", pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 i += len;
1302 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1303 return count;
1304 }
1305 if (!strcmp(name, "dst6")) {
1306 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001307 if (len < 0)
1308 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 pkt_dev->flags |= F_IPV6;
1311
Luiz Capitulino222f1802006-03-20 22:16:13 -08001312 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001314 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Amerigo Wangc468fb12012-10-09 17:48:20 +00001316 in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001317 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001319 pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Luiz Capitulino222f1802006-03-20 22:16:13 -08001321 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001322 pr_debug("dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Luiz Capitulino222f1802006-03-20 22:16:13 -08001324 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 sprintf(pg_result, "OK: dst6=%s", buf);
1326 return count;
1327 }
1328 if (!strcmp(name, "dst6_min")) {
1329 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001330 if (len < 0)
1331 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 pkt_dev->flags |= F_IPV6;
1334
Luiz Capitulino222f1802006-03-20 22:16:13 -08001335 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001337 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Amerigo Wangc468fb12012-10-09 17:48:20 +00001339 in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001340 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001342 pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001343 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001344 pr_debug("dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Luiz Capitulino222f1802006-03-20 22:16:13 -08001346 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 sprintf(pg_result, "OK: dst6_min=%s", buf);
1348 return count;
1349 }
1350 if (!strcmp(name, "dst6_max")) {
1351 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001352 if (len < 0)
1353 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 pkt_dev->flags |= F_IPV6;
1356
Luiz Capitulino222f1802006-03-20 22:16:13 -08001357 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001359 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Amerigo Wangc468fb12012-10-09 17:48:20 +00001361 in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001362 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Luiz Capitulino222f1802006-03-20 22:16:13 -08001364 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001365 pr_debug("dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Luiz Capitulino222f1802006-03-20 22:16:13 -08001367 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 sprintf(pg_result, "OK: dst6_max=%s", buf);
1369 return count;
1370 }
1371 if (!strcmp(name, "src6")) {
1372 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001373 if (len < 0)
1374 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 pkt_dev->flags |= F_IPV6;
1377
Luiz Capitulino222f1802006-03-20 22:16:13 -08001378 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001380 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Amerigo Wangc468fb12012-10-09 17:48:20 +00001382 in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL);
Alexey Dobriyan47a02002011-05-03 11:23:40 +00001383 snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001385 pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Luiz Capitulino222f1802006-03-20 22:16:13 -08001387 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001388 pr_debug("src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001389
1390 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 sprintf(pg_result, "OK: src6=%s", buf);
1392 return count;
1393 }
1394 if (!strcmp(name, "src_min")) {
1395 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001396 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001397 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001398
Luiz Capitulino222f1802006-03-20 22:16:13 -08001399 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001401 buf[len] = 0;
1402 if (strcmp(buf, pkt_dev->src_min) != 0) {
1403 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1404 strncpy(pkt_dev->src_min, buf, len);
1405 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1406 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1407 }
1408 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001409 pr_debug("src_min set to: %s\n", pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 i += len;
1411 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1412 return count;
1413 }
1414 if (!strcmp(name, "src_max")) {
1415 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001416 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001417 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001418
Luiz Capitulino222f1802006-03-20 22:16:13 -08001419 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001421 buf[len] = 0;
1422 if (strcmp(buf, pkt_dev->src_max) != 0) {
1423 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1424 strncpy(pkt_dev->src_max, buf, len);
1425 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1426 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1427 }
1428 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001429 pr_debug("src_max set to: %s\n", pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 i += len;
1431 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1432 return count;
1433 }
1434 if (!strcmp(name, "dst_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001436 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001437 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001440 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001443 if (!mac_pton(valstr, pkt_dev->dst_mac))
1444 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001446 ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001447
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001448 sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return count;
1450 }
1451 if (!strcmp(name, "src_mac")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001453 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001454 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001457 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001460 if (!mac_pton(valstr, pkt_dev->src_mac))
1461 return -EINVAL;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001462 /* Set up Src MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08001463 ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac);
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001464
Alexey Dobriyan4940fc82011-05-07 23:00:07 +00001465 sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return count;
1467 }
1468
Luiz Capitulino222f1802006-03-20 22:16:13 -08001469 if (!strcmp(name, "clear_counters")) {
1470 pktgen_clear_counters(pkt_dev);
1471 sprintf(pg_result, "OK: Clearing counters.\n");
1472 return count;
1473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 if (!strcmp(name, "flows")) {
1476 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001477 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001478 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 i += len;
1481 if (value > MAX_CFLOWS)
1482 value = MAX_CFLOWS;
1483
1484 pkt_dev->cflows = value;
1485 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1486 return count;
1487 }
Fan Du6bae9192014-01-10 14:39:13 +08001488#ifdef CONFIG_XFRM
Fan Dude4aee72014-01-03 11:18:30 +08001489 if (!strcmp(name, "spi")) {
1490 len = num_arg(&user_buffer[i], 10, &value);
1491 if (len < 0)
1492 return len;
1493
1494 i += len;
1495 pkt_dev->spi = value;
1496 sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
1497 return count;
1498 }
Fan Du6bae9192014-01-10 14:39:13 +08001499#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (!strcmp(name, "flowlen")) {
1501 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001502 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001503 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 i += len;
1506 pkt_dev->lflow = value;
1507 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1508 return count;
1509 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001510
Robert Olsson45b270f2007-08-28 15:45:55 -07001511 if (!strcmp(name, "queue_map_min")) {
1512 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001513 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001514 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001515
Robert Olsson45b270f2007-08-28 15:45:55 -07001516 i += len;
1517 pkt_dev->queue_map_min = value;
1518 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1519 return count;
1520 }
1521
1522 if (!strcmp(name, "queue_map_max")) {
1523 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001524 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001525 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001526
Robert Olsson45b270f2007-08-28 15:45:55 -07001527 i += len;
1528 pkt_dev->queue_map_max = value;
1529 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1530 return count;
1531 }
1532
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001533 if (!strcmp(name, "mpls")) {
Eric Dumazet95c96172012-04-15 05:58:06 +00001534 unsigned int n, cnt;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001535
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001536 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001537 if (len < 0)
1538 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001539 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001540 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001541 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001542 cnt += sprintf(pg_result + cnt,
1543 "%08x%s", ntohl(pkt_dev->labels[n]),
1544 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001545
1546 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1547 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1548 pkt_dev->svlan_id = 0xffff;
1549
1550 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001551 pr_debug("VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001552 }
1553 return count;
1554 }
1555
1556 if (!strcmp(name, "vlan_id")) {
1557 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001558 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001559 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001560
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001561 i += len;
1562 if (value <= 4095) {
1563 pkt_dev->vlan_id = value; /* turn on VLAN */
1564
1565 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001566 pr_debug("VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001567
1568 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001569 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001570
1571 pkt_dev->nr_labels = 0; /* turn off MPLS */
1572 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1573 } else {
1574 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1575 pkt_dev->svlan_id = 0xffff;
1576
1577 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001578 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001579 }
1580 return count;
1581 }
1582
1583 if (!strcmp(name, "vlan_p")) {
1584 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001585 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001586 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001587
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001588 i += len;
1589 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1590 pkt_dev->vlan_p = value;
1591 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1592 } else {
1593 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1594 }
1595 return count;
1596 }
1597
1598 if (!strcmp(name, "vlan_cfi")) {
1599 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001600 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001601 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001602
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001603 i += len;
1604 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1605 pkt_dev->vlan_cfi = value;
1606 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1607 } else {
1608 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1609 }
1610 return count;
1611 }
1612
1613 if (!strcmp(name, "svlan_id")) {
1614 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001615 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001616 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001617
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001618 i += len;
1619 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1620 pkt_dev->svlan_id = value; /* turn on SVLAN */
1621
1622 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001623 pr_debug("SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001624
1625 if (debug && pkt_dev->nr_labels)
Joe Perchesf342cda2012-05-16 17:50:41 +00001626 pr_debug("MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001627
1628 pkt_dev->nr_labels = 0; /* turn off MPLS */
1629 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1630 } else {
1631 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1632 pkt_dev->svlan_id = 0xffff;
1633
1634 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001635 pr_debug("VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001636 }
1637 return count;
1638 }
1639
1640 if (!strcmp(name, "svlan_p")) {
1641 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001642 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001643 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001644
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001645 i += len;
1646 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1647 pkt_dev->svlan_p = value;
1648 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1649 } else {
1650 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1651 }
1652 return count;
1653 }
1654
1655 if (!strcmp(name, "svlan_cfi")) {
1656 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001657 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001658 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001659
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001660 i += len;
1661 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1662 pkt_dev->svlan_cfi = value;
1663 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1664 } else {
1665 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1666 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001667 return count;
1668 }
1669
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001670 if (!strcmp(name, "tos")) {
1671 __u32 tmp_value = 0;
1672 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001673 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001674 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001675
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001676 i += len;
1677 if (len == 2) {
1678 pkt_dev->tos = tmp_value;
1679 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1680 } else {
1681 sprintf(pg_result, "ERROR: tos must be 00-ff");
1682 }
1683 return count;
1684 }
1685
1686 if (!strcmp(name, "traffic_class")) {
1687 __u32 tmp_value = 0;
1688 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001689 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001690 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001691
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001692 i += len;
1693 if (len == 2) {
1694 pkt_dev->traffic_class = tmp_value;
1695 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1696 } else {
1697 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1698 }
1699 return count;
1700 }
1701
John Fastabend9e50e3a2010-11-16 19:12:28 +00001702 if (!strcmp(name, "skb_priority")) {
1703 len = num_arg(&user_buffer[i], 9, &value);
1704 if (len < 0)
1705 return len;
1706
1707 i += len;
1708 pkt_dev->skb_priority = value;
1709 sprintf(pg_result, "OK: skb_priority=%i",
1710 pkt_dev->skb_priority);
1711 return count;
1712 }
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1715 return -EINVAL;
1716}
1717
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001718static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Al Virod9dda782013-03-31 18:16:14 -04001720 return single_open(file, pktgen_if_show, PDE_DATA(inode));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001721}
1722
Arjan van de Ven9a321442007-02-12 00:55:35 -08001723static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001724 .owner = THIS_MODULE,
1725 .open = pktgen_if_open,
1726 .read = seq_read,
1727 .llseek = seq_lseek,
1728 .write = pktgen_if_write,
1729 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001730};
1731
1732static int pktgen_thread_show(struct seq_file *seq, void *v)
1733{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001734 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001735 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001737 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Thomas Graf97dc48e2014-05-16 23:28:54 +02001739 seq_puts(seq, "Running: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001740
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001741 rcu_read_lock();
1742 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001744 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Thomas Graf97dc48e2014-05-16 23:28:54 +02001746 seq_puts(seq, "\nStopped: ");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001747
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001748 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001749 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001750 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001753 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 else
Thomas Graf97dc48e2014-05-16 23:28:54 +02001755 seq_puts(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001757 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001759 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001762static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001763 const char __user * user_buffer,
1764 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Joe Perches8a994a72010-07-12 10:50:23 +00001766 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001767 struct pktgen_thread *t = seq->private;
Paul Gortmakerd6182222010-10-18 12:14:44 +00001768 int i, max, len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001770 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001773 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return -EINVAL;
1775 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001776
Paul Gortmakerd6182222010-10-18 12:14:44 +00001777 max = count;
1778 len = count_trail_chars(user_buffer, max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001779 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001780 return len;
1781
Paul Gortmakerd6182222010-10-18 12:14:44 +00001782 i = len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 /* Read variable name */
1785
1786 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001787 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001788 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 memset(name, 0, sizeof(name));
1791 if (copy_from_user(name, &user_buffer[i], len))
1792 return -EFAULT;
1793 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001794
Luiz Capitulino222f1802006-03-20 22:16:13 -08001795 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001797 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001798 return len;
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 i += len;
1801
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001802 if (debug)
Joe Perchesf342cda2012-05-16 17:50:41 +00001803 pr_debug("t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Luiz Capitulino222f1802006-03-20 22:16:13 -08001805 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001806 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 ret = -EINVAL;
1808 goto out;
1809 }
1810
1811 pg_result = &(t->result[0]);
1812
Luiz Capitulino222f1802006-03-20 22:16:13 -08001813 if (!strcmp(name, "add_device")) {
1814 char f[32];
1815 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001817 if (len < 0) {
1818 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 goto out;
1820 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001821 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 return -EFAULT;
1823 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001824 mutex_lock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001825 ret = pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001826 mutex_unlock(&pktgen_thread_lock);
Cong Wang604dfd62013-01-27 21:14:08 +00001827 if (!ret) {
1828 ret = count;
1829 sprintf(pg_result, "OK: add_device=%s", f);
1830 } else
1831 sprintf(pg_result, "ERROR: can not add device %s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 goto out;
1833 }
1834
Luiz Capitulino222f1802006-03-20 22:16:13 -08001835 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001836 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001837 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001838 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001839 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001841 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 goto out;
1843 }
1844
Luiz Capitulino222f1802006-03-20 22:16:13 -08001845 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001846 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001847 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 goto out;
1849 }
1850
1851 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001852out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return ret;
1854}
1855
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001856static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Al Virod9dda782013-03-31 18:16:14 -04001858 return single_open(file, pktgen_thread_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859}
1860
Arjan van de Ven9a321442007-02-12 00:55:35 -08001861static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001862 .owner = THIS_MODULE,
1863 .open = pktgen_thread_open,
1864 .read = seq_read,
1865 .llseek = seq_lseek,
1866 .write = pktgen_thread_write,
1867 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001868};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870/* Think find or remove for NN */
Cong Wang4e58a022013-01-28 19:55:53 +00001871static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn,
1872 const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
1874 struct pktgen_thread *t;
1875 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001876 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Cong Wang4e58a022013-01-28 19:55:53 +00001878 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001879 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001881 if (remove) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001882 pkt_dev->removal_mark = 1;
1883 t->control |= T_REMDEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 break;
1886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001888 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889}
1890
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001891/*
1892 * mark a device for removal
1893 */
Cong Wang4e58a022013-01-28 19:55:53 +00001894static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001897 const int max_tries = 10, msec_per_try = 125;
1898 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001899
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001900 mutex_lock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001901 pr_debug("%s: marking %s for removal\n", __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001902
Luiz Capitulino222f1802006-03-20 22:16:13 -08001903 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001904
Cong Wang4e58a022013-01-28 19:55:53 +00001905 pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001906 if (pkt_dev == NULL)
1907 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001908
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001909 mutex_unlock(&pktgen_thread_lock);
Joe Perchesf9467ea2010-06-21 12:29:14 +00001910 pr_debug("%s: waiting for %s to disappear....\n",
1911 __func__, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001912 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001913 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001914
1915 if (++i >= max_tries) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001916 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1917 __func__, msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001918 break;
1919 }
1920
1921 }
1922
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001923 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001924}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001925
Cong Wang4e58a022013-01-28 19:55:53 +00001926static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001927{
1928 struct pktgen_thread *t;
1929
Cong Wang4e58a022013-01-28 19:55:53 +00001930 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001931 struct pktgen_dev *pkt_dev;
1932
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001933 rcu_read_lock();
1934 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001935 if (pkt_dev->odev != dev)
1936 continue;
1937
David Howellsa8ca16e2013-04-12 17:27:28 +01001938 proc_remove(pkt_dev->entry);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001939
Alexey Dobriyan29753152009-08-28 23:34:43 -07001940 pkt_dev->entry = proc_create_data(dev->name, 0600,
Cong Wang4e58a022013-01-28 19:55:53 +00001941 pn->proc_dir,
Alexey Dobriyan29753152009-08-28 23:34:43 -07001942 &pktgen_if_fops,
1943 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001944 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001945 pr_err("can't move proc entry for '%s'\n",
1946 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001947 break;
1948 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02001949 rcu_read_unlock();
Stephen Hemminger39df2322007-03-04 16:11:51 -08001950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952
Luiz Capitulino222f1802006-03-20 22:16:13 -08001953static int pktgen_device_event(struct notifier_block *unused,
1954 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Jiri Pirko351638e2013-05-28 01:30:21 +00001956 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Cong Wang4e58a022013-01-28 19:55:53 +00001957 struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Cong Wang4e58a022013-01-28 19:55:53 +00001959 if (pn->pktgen_exiting)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001960 return NOTIFY_DONE;
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 /* It is OK that we do not hold the group lock right now,
1963 * as we run under the RTNL lock.
1964 */
1965
1966 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001967 case NETDEV_CHANGENAME:
Cong Wang4e58a022013-01-28 19:55:53 +00001968 pktgen_change_name(pn, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 case NETDEV_UNREGISTER:
Cong Wang4e58a022013-01-28 19:55:53 +00001972 pktgen_mark_device(pn, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 return NOTIFY_DONE;
1977}
1978
Cong Wang4e58a022013-01-28 19:55:53 +00001979static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn,
1980 struct pktgen_dev *pkt_dev,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001981 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001982{
1983 char b[IFNAMSIZ+5];
Paul Gortmakerd6182222010-10-18 12:14:44 +00001984 int i;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001985
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001986 for (i = 0; ifname[i] != '@'; i++) {
1987 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001988 break;
1989
1990 b[i] = ifname[i];
1991 }
1992 b[i] = 0;
1993
Cong Wang4e58a022013-01-28 19:55:53 +00001994 return dev_get_by_name(pn->net, b);
Robert Olssone6fce5b2008-08-07 02:23:01 -07001995}
1996
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998/* Associate pktgen_dev with a device. */
1999
Cong Wang4e58a022013-01-28 19:55:53 +00002000static int pktgen_setup_dev(const struct pktgen_net *pn,
2001 struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08002002{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08002004 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (pkt_dev->odev) {
2008 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002009 pkt_dev->odev = NULL;
2010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Cong Wang4e58a022013-01-28 19:55:53 +00002012 odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002014 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002015 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002019 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002020 err = -EINVAL;
2021 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002022 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002023 err = -ENETDOWN;
2024 } else {
2025 pkt_dev->odev = odev;
2026 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002030 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031}
2032
2033/* Read pkt_dev from the interface and set up internal pktgen_dev
2034 * structure to have the right information to create/send packets
2035 */
2036static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2037{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002038 int ntxq;
2039
Luiz Capitulino222f1802006-03-20 22:16:13 -08002040 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002041 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002042 sprintf(pkt_dev->result,
2043 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2044 return;
2045 }
2046
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002047 /* make sure that we don't pick a non-existing transmit queue */
2048 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002049
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002050 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002051 pr_warning("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2052 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2053 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002054 pkt_dev->queue_map_min = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002055 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002056 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002057 pr_warning("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2058 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2059 pkt_dev->odevname);
Dan Carpenter26e29ee2012-01-06 03:13:47 +00002060 pkt_dev->queue_map_max = (ntxq ?: 1) - 1;
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002061 }
2062
Luiz Capitulino222f1802006-03-20 22:16:13 -08002063 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002065 if (is_zero_ether_addr(pkt_dev->src_mac))
Joe Perches9ea08b12014-01-20 09:52:19 -08002066 ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Luiz Capitulino222f1802006-03-20 22:16:13 -08002068 /* Set up Dest MAC */
Joe Perches9ea08b12014-01-20 09:52:19 -08002069 ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Luiz Capitulino222f1802006-03-20 22:16:13 -08002071 if (pkt_dev->flags & F_IPV6) {
Amerigo Wang4c139b82012-10-09 17:48:19 +00002072 int i, set = 0, err = 1;
2073 struct inet6_dev *idev;
2074
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002075 if (pkt_dev->min_pkt_size == 0) {
2076 pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr)
2077 + sizeof(struct udphdr)
2078 + sizeof(struct pktgen_hdr)
2079 + pkt_dev->pkt_overhead;
2080 }
2081
Luiz Capitulino222f1802006-03-20 22:16:13 -08002082 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2083 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 set = 1;
2085 break;
2086 }
2087
Luiz Capitulino222f1802006-03-20 22:16:13 -08002088 if (!set) {
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 /*
2091 * Use linklevel address if unconfigured.
2092 *
2093 * use ipv6_get_lladdr if/when it's get exported
2094 */
2095
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002096 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002097 idev = __in6_dev_get(pkt_dev->odev);
2098 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 struct inet6_ifaddr *ifp;
2100
2101 read_lock_bh(&idev->lock);
Amerigo Wang4c139b82012-10-09 17:48:19 +00002102 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2103 if ((ifp->scope & IFA_LINK) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -08002104 !(ifp->flags & IFA_F_TENTATIVE)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002105 pkt_dev->cur_in6_saddr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 err = 0;
2107 break;
2108 }
2109 }
2110 read_unlock_bh(&idev->lock);
2111 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002112 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002113 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00002114 pr_err("ERROR: IPv6 link address not available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002116 } else {
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002117 if (pkt_dev->min_pkt_size == 0) {
2118 pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr)
2119 + sizeof(struct udphdr)
2120 + sizeof(struct pktgen_hdr)
2121 + pkt_dev->pkt_overhead;
2122 }
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 pkt_dev->saddr_min = 0;
2125 pkt_dev->saddr_max = 0;
2126 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002127
2128 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002131 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (in_dev) {
2133 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002134 pkt_dev->saddr_min =
2135 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 pkt_dev->saddr_max = pkt_dev->saddr_min;
2137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
2139 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002140 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2142 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2143 }
2144
2145 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2146 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2147 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002148 /* Initialize current values. */
Amerigo Wang68bf9f02012-10-09 17:48:17 +00002149 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2150 if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size)
2151 pkt_dev->max_pkt_size = pkt_dev->min_pkt_size;
2152
Luiz Capitulino222f1802006-03-20 22:16:13 -08002153 pkt_dev->cur_dst_mac_offset = 0;
2154 pkt_dev->cur_src_mac_offset = 0;
2155 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2156 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2157 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2158 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 pkt_dev->nflows = 0;
2160}
2161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002163static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2164{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002165 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002166 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002167 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002168
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002169 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2170 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002171
Daniel Turull43d28b62010-06-09 22:49:57 +00002172 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002173 if (remaining <= 0) {
2174 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002175 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002176 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002177
Daniel Borkmann398f3822012-10-28 08:27:19 +00002178 start_time = ktime_get();
Eric Dumazet33136d12011-10-20 17:00:21 -04002179 if (remaining < 100000) {
2180 /* for small delays (<100us), just loop until limit is reached */
2181 do {
Daniel Borkmann398f3822012-10-28 08:27:19 +00002182 end_time = ktime_get();
2183 } while (ktime_compare(end_time, spin_until) < 0);
Eric Dumazet33136d12011-10-20 17:00:21 -04002184 } else {
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002185 /* see do_nanosleep */
2186 hrtimer_init_sleeper(&t, current);
2187 do {
2188 set_current_state(TASK_INTERRUPTIBLE);
2189 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2190 if (!hrtimer_active(&t.timer))
2191 t.task = NULL;
2192
2193 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002196 hrtimer_cancel(&t.timer);
2197 } while (t.task && pkt_dev->running && !signal_pending(current));
2198 __set_current_state(TASK_RUNNING);
Daniel Borkmann398f3822012-10-28 08:27:19 +00002199 end_time = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002201
2202 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002203 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002206static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2207{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002208 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002209 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2210 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2211 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2212}
2213
Stephen Hemminger648fda72009-08-27 13:55:07 +00002214static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002215{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002216 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002217}
2218
2219static inline int f_pick(struct pktgen_dev *pkt_dev)
2220{
2221 int flow = pkt_dev->curfl;
2222
2223 if (pkt_dev->flags & F_FLOW_SEQ) {
2224 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2225 /* reset time */
2226 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002227 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002228 pkt_dev->curfl += 1;
2229 if (pkt_dev->curfl >= pkt_dev->cflows)
2230 pkt_dev->curfl = 0; /*reset */
2231 }
2232 } else {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002233 flow = prandom_u32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002234 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002235
Robert Olsson1211a642008-08-05 18:44:26 -07002236 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002237 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002238 pkt_dev->flows[flow].flags = 0;
2239 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002240 }
2241
2242 return pkt_dev->curfl;
2243}
2244
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002245
2246#ifdef CONFIG_XFRM
2247/* If there was already an IPSEC SA, we keep it as is, else
2248 * we go look for it ...
2249*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002250#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002251static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002252{
2253 struct xfrm_state *x = pkt_dev->flows[flow].x;
Cong Wang4e58a022013-01-28 19:55:53 +00002254 struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002255 if (!x) {
Fan Duc4549972014-01-03 11:18:32 +08002256
2257 if (pkt_dev->spi) {
2258 /* We need as quick as possible to find the right SA
2259 * Searching with minimum criteria to archieve this.
2260 */
2261 x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET);
2262 } else {
2263 /* slow path: we dont already have xfrm_state */
2264 x = xfrm_stateonly_find(pn->net, DUMMY_MARK,
2265 (xfrm_address_t *)&pkt_dev->cur_daddr,
2266 (xfrm_address_t *)&pkt_dev->cur_saddr,
2267 AF_INET,
2268 pkt_dev->ipsmode,
2269 pkt_dev->ipsproto, 0);
2270 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002271 if (x) {
2272 pkt_dev->flows[flow].x = x;
2273 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002274 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002275 }
2276
2277 }
2278}
2279#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002280static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2281{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002282
2283 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2284 pkt_dev->cur_queue_map = smp_processor_id();
2285
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002286 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002287 __u16 t;
2288 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002289 t = prandom_u32() %
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002290 (pkt_dev->queue_map_max -
2291 pkt_dev->queue_map_min + 1)
2292 + pkt_dev->queue_map_min;
2293 } else {
2294 t = pkt_dev->cur_queue_map + 1;
2295 if (t > pkt_dev->queue_map_max)
2296 t = pkt_dev->queue_map_min;
2297 }
2298 pkt_dev->cur_queue_map = t;
2299 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002300 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 -07002301}
2302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303/* Increment/randomize headers according to flags and current values
2304 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2305 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002306static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2307{
2308 __u32 imn;
2309 __u32 imx;
2310 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002312 if (pkt_dev->cflows)
2313 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
2315 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002316 if (pkt_dev->src_mac_count > 1) {
2317 __u32 mc;
2318 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Luiz Capitulino222f1802006-03-20 22:16:13 -08002320 if (pkt_dev->flags & F_MACSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002321 mc = prandom_u32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002322 else {
2323 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002324 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002325 pkt_dev->src_mac_count)
2326 pkt_dev->cur_src_mac_offset = 0;
2327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Luiz Capitulino222f1802006-03-20 22:16:13 -08002329 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2330 pkt_dev->hh[11] = tmp;
2331 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2332 pkt_dev->hh[10] = tmp;
2333 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2334 pkt_dev->hh[9] = tmp;
2335 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2336 pkt_dev->hh[8] = tmp;
2337 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2338 pkt_dev->hh[7] = tmp;
2339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Luiz Capitulino222f1802006-03-20 22:16:13 -08002341 /* Deal with Destination MAC */
2342 if (pkt_dev->dst_mac_count > 1) {
2343 __u32 mc;
2344 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Luiz Capitulino222f1802006-03-20 22:16:13 -08002346 if (pkt_dev->flags & F_MACDST_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002347 mc = prandom_u32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Luiz Capitulino222f1802006-03-20 22:16:13 -08002349 else {
2350 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002351 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002352 pkt_dev->dst_mac_count) {
2353 pkt_dev->cur_dst_mac_offset = 0;
2354 }
2355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Luiz Capitulino222f1802006-03-20 22:16:13 -08002357 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2358 pkt_dev->hh[5] = tmp;
2359 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2360 pkt_dev->hh[4] = tmp;
2361 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2362 pkt_dev->hh[3] = tmp;
2363 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2364 pkt_dev->hh[2] = tmp;
2365 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2366 pkt_dev->hh[1] = tmp;
2367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002369 if (pkt_dev->flags & F_MPLS_RND) {
Eric Dumazet95c96172012-04-15 05:58:06 +00002370 unsigned int i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002371 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002372 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2373 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002374 ((__force __be32)prandom_u32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002375 htonl(0x000fffff));
2376 }
2377
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002378 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002379 pkt_dev->vlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002380 }
2381
2382 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002383 pkt_dev->svlan_id = prandom_u32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002384 }
2385
Luiz Capitulino222f1802006-03-20 22:16:13 -08002386 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2387 if (pkt_dev->flags & F_UDPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002388 pkt_dev->cur_udp_src = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002389 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2390 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Luiz Capitulino222f1802006-03-20 22:16:13 -08002392 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 pkt_dev->cur_udp_src++;
2394 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2395 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002396 }
2397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Luiz Capitulino222f1802006-03-20 22:16:13 -08002399 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2400 if (pkt_dev->flags & F_UDPDST_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002401 pkt_dev->cur_udp_dst = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002402 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2403 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002404 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002406 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002408 }
2409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 if (!(pkt_dev->flags & F_IPV6)) {
2412
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002413 imn = ntohl(pkt_dev->saddr_min);
2414 imx = ntohl(pkt_dev->saddr_max);
2415 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002417 if (pkt_dev->flags & F_IPSRC_RND)
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002418 t = prandom_u32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 else {
2420 t = ntohl(pkt_dev->cur_saddr);
2421 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002422 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
2426 pkt_dev->cur_saddr = htonl(t);
2427 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002428
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002429 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2431 } else {
Al Viro252e3342006-11-14 20:48:11 -08002432 imn = ntohl(pkt_dev->daddr_min);
2433 imx = ntohl(pkt_dev->daddr_max);
2434 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002436 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 if (pkt_dev->flags & F_IPDST_RND) {
2438
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002439 do {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002440 t = prandom_u32() %
2441 (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002442 s = htonl(t);
Akinobu Mita70e3ba72013-04-29 16:21:41 -07002443 } while (ipv4_is_loopback(s) ||
2444 ipv4_is_multicast(s) ||
2445 ipv4_is_lbcast(s) ||
2446 ipv4_is_zeronet(s) ||
2447 ipv4_is_local_multicast(s));
Al Viro252e3342006-11-14 20:48:11 -08002448 pkt_dev->cur_daddr = s;
2449 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 t = ntohl(pkt_dev->cur_daddr);
2451 t++;
2452 if (t > imx) {
2453 t = imn;
2454 }
2455 pkt_dev->cur_daddr = htonl(t);
2456 }
2457 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002458 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002459 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002460 pkt_dev->flows[flow].cur_daddr =
2461 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002462#ifdef CONFIG_XFRM
2463 if (pkt_dev->flags & F_IPSEC_ON)
2464 get_ipsec_sa(pkt_dev, flow);
2465#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 pkt_dev->nflows++;
2467 }
2468 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002469 } else { /* IPV6 * */
2470
Joe Perches06e30412012-10-18 17:55:31 +00002471 if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 int i;
2473
2474 /* Only random destinations yet */
2475
Luiz Capitulino222f1802006-03-20 22:16:13 -08002476 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002478 (((__force __be32)prandom_u32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002479 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2480 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 }
2484
Luiz Capitulino222f1802006-03-20 22:16:13 -08002485 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2486 __u32 t;
2487 if (pkt_dev->flags & F_TXSIZE_RND) {
Akinobu Mita33d7c5e2013-04-29 16:21:40 -07002488 t = prandom_u32() %
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002489 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2490 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002491 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002493 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002495 }
2496 pkt_dev->cur_pkt_size = t;
2497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002499 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 pkt_dev->flows[flow].count++;
2502}
2503
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002504
2505#ifdef CONFIG_XFRM
Fengguang Wu5537a052014-01-06 11:00:07 +01002506static u32 pktgen_dst_metrics[RTAX_MAX + 1] = {
Fan Ducf93d472014-01-03 11:18:31 +08002507
2508 [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */
2509};
2510
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002511static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2512{
2513 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2514 int err = 0;
Fan Du6de9ace2014-01-03 11:18:28 +08002515 struct net *net = dev_net(pkt_dev->odev);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002516
2517 if (!x)
2518 return 0;
2519 /* XXX: we dont support tunnel mode for now until
2520 * we resolve the dst issue */
Fan Ducf93d472014-01-03 11:18:31 +08002521 if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0))
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002522 return 0;
2523
Fan Ducf93d472014-01-03 11:18:31 +08002524 /* But when user specify an valid SPI, transformation
2525 * supports both transport/tunnel mode + ESP/AH type.
2526 */
2527 if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0))
2528 skb->_skb_refdst = (unsigned long)&pkt_dev->dst | SKB_DST_NOREF;
2529
2530 rcu_read_lock_bh();
Herbert Xu13996372007-10-17 21:35:51 -07002531 err = x->outer_mode->output(x, skb);
Fan Ducf93d472014-01-03 11:18:31 +08002532 rcu_read_unlock_bh();
Fan Du6de9ace2014-01-03 11:18:28 +08002533 if (err) {
2534 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002535 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002536 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002537 err = x->type->output(x, skb);
Fan Du6de9ace2014-01-03 11:18:28 +08002538 if (err) {
2539 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002540 goto error;
Fan Du6de9ace2014-01-03 11:18:28 +08002541 }
Fan Du0af0a412014-01-03 11:18:27 +08002542 spin_lock_bh(&x->lock);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002543 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002544 x->curlft.packets++;
Fan Du0af0a412014-01-03 11:18:27 +08002545 spin_unlock_bh(&x->lock);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002546error:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002547 return err;
2548}
2549
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002550static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002551{
2552 if (pkt_dev->cflows) {
2553 /* let go of the SAs if we have them */
Paul Gortmakerd6182222010-10-18 12:14:44 +00002554 int i;
2555 for (i = 0; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002556 struct xfrm_state *x = pkt_dev->flows[i].x;
2557 if (x) {
2558 xfrm_state_put(x);
2559 pkt_dev->flows[i].x = NULL;
2560 }
2561 }
2562 }
2563}
2564
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002565static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002566 struct sk_buff *skb, __be16 protocol)
2567{
2568 if (pkt_dev->flags & F_IPSEC_ON) {
2569 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2570 int nhead = 0;
2571 if (x) {
2572 int ret;
2573 __u8 *eth;
fan.du38682042013-12-01 16:28:48 +08002574 struct iphdr *iph;
2575
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002576 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002577 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002578 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2579 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002580 pr_err("Error expanding ipsec packet %d\n",
2581 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002582 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002583 }
2584 }
2585
2586 /* ipsec is not expecting ll header */
2587 skb_pull(skb, ETH_HLEN);
2588 ret = pktgen_output_ipsec(skb, pkt_dev);
2589 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002590 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002591 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002592 }
2593 /* restore ll */
2594 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2595 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002596 *(u16 *) &eth[12] = protocol;
fan.du38682042013-12-01 16:28:48 +08002597
2598 /* Update IPv4 header len as well as checksum value */
2599 iph = ip_hdr(skb);
2600 iph->tot_len = htons(skb->len - ETH_HLEN);
2601 ip_send_check(iph);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002602 }
2603 }
2604 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002605err:
2606 kfree_skb(skb);
2607 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002608}
2609#endif
2610
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002611static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2612{
Eric Dumazet95c96172012-04-15 05:58:06 +00002613 unsigned int i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002614 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002615 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002616
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002617 mpls--;
2618 *mpls |= MPLS_STACK_BOTTOM;
2619}
2620
Al Viro0f37c602006-11-03 03:49:56 -08002621static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2622 unsigned int prio)
2623{
2624 return htons(id | (cfi << 12) | (prio << 13));
2625}
2626
Eric Dumazet26ad7872011-01-25 13:26:05 -08002627static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb,
2628 int datalen)
2629{
2630 struct timeval timestamp;
2631 struct pktgen_hdr *pgh;
2632
2633 pgh = (struct pktgen_hdr *)skb_put(skb, sizeof(*pgh));
2634 datalen -= sizeof(*pgh);
2635
2636 if (pkt_dev->nfrags <= 0) {
Daniel Turull05aebe22011-03-14 13:47:40 -07002637 memset(skb_put(skb, datalen), 0, datalen);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002638 } else {
2639 int frags = pkt_dev->nfrags;
2640 int i, len;
amit salecha7d36a992011-04-22 16:22:20 +00002641 int frag_len;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002642
2643
2644 if (frags > MAX_SKB_FRAGS)
2645 frags = MAX_SKB_FRAGS;
2646 len = datalen - frags * PAGE_SIZE;
2647 if (len > 0) {
2648 memset(skb_put(skb, len), 0, len);
2649 datalen = frags * PAGE_SIZE;
2650 }
2651
2652 i = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002653 frag_len = (datalen/frags) < PAGE_SIZE ?
2654 (datalen/frags) : PAGE_SIZE;
Eric Dumazet26ad7872011-01-25 13:26:05 -08002655 while (datalen > 0) {
2656 if (unlikely(!pkt_dev->page)) {
2657 int node = numa_node_id();
2658
2659 if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE))
2660 node = pkt_dev->node;
2661 pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2662 if (!pkt_dev->page)
2663 break;
2664 }
Ian Campbella0bec1c2011-10-18 22:55:11 +00002665 get_page(pkt_dev->page);
Ian Campbellea2ab692011-08-22 23:44:58 +00002666 skb_frag_set_page(skb, i, pkt_dev->page);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002667 skb_shinfo(skb)->frags[i].page_offset = 0;
amit salecha7d36a992011-04-22 16:22:20 +00002668 /*last fragment, fill rest of data*/
2669 if (i == (frags - 1))
Eric Dumazet9e903e02011-10-18 21:00:24 +00002670 skb_frag_size_set(&skb_shinfo(skb)->frags[i],
2671 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE));
amit salecha7d36a992011-04-22 16:22:20 +00002672 else
Eric Dumazet9e903e02011-10-18 21:00:24 +00002673 skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len);
2674 datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]);
2675 skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2676 skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
Eric Dumazet26ad7872011-01-25 13:26:05 -08002677 i++;
2678 skb_shinfo(skb)->nr_frags = i;
2679 }
Eric Dumazet26ad7872011-01-25 13:26:05 -08002680 }
2681
2682 /* Stamp the time, and sequence number,
2683 * convert them to network byte order
2684 */
2685 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2686 pgh->seq_num = htonl(pkt_dev->seq_num);
2687
2688 do_gettimeofday(&timestamp);
2689 pgh->tv_sec = htonl(timestamp.tv_sec);
2690 pgh->tv_usec = htonl(timestamp.tv_usec);
2691}
2692
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002693static struct sk_buff *pktgen_alloc_skb(struct net_device *dev,
2694 struct pktgen_dev *pkt_dev,
2695 unsigned int extralen)
2696{
2697 struct sk_buff *skb = NULL;
2698 unsigned int size = pkt_dev->cur_pkt_size + 64 + extralen +
2699 pkt_dev->pkt_overhead;
2700
2701 if (pkt_dev->flags & F_NODE) {
2702 int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id();
2703
2704 skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node);
2705 if (likely(skb)) {
2706 skb_reserve(skb, NET_SKB_PAD);
2707 skb->dev = dev;
2708 }
2709 } else {
2710 skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT);
2711 }
2712
2713 return skb;
2714}
2715
Luiz Capitulino222f1802006-03-20 22:16:13 -08002716static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2717 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
2719 struct sk_buff *skb = NULL;
2720 __u8 *eth;
2721 struct udphdr *udph;
2722 int datalen, iplen;
2723 struct iphdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002724 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002725 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002726 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2727 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2728 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2729 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002730 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002731
2732 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002733 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002734
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002735 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002736 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002737
Robert Olsson64053be2005-06-26 15:27:10 -07002738 /* Update any of the values, used when we're incrementing various
2739 * fields.
2740 */
2741 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002742 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002743
David S. Miller7ac54592006-01-18 14:19:10 -08002744 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002745
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002746 skb = pktgen_alloc_skb(odev, pkt_dev, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (!skb) {
2748 sprintf(pkt_dev->result, "No memory");
2749 return NULL;
2750 }
2751
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002752 prefetchw(skb->data);
David S. Miller7ac54592006-01-18 14:19:10 -08002753 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
2755 /* Reserve for ethernet and IP header */
2756 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002757 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2758 if (pkt_dev->nr_labels)
2759 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002760
2761 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002762 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002763 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002764 *svlan_tci = build_tci(pkt_dev->svlan_id,
2765 pkt_dev->svlan_cfi,
2766 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002767 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002768 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002769 }
2770 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002771 *vlan_tci = build_tci(pkt_dev->vlan_id,
2772 pkt_dev->vlan_cfi,
2773 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002774 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002775 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002776 }
2777
Thomas Graf525cebe2013-06-03 11:49:23 +00002778 skb_set_mac_header(skb, 0);
2779 skb_set_network_header(skb, skb->len);
2780 iph = (struct iphdr *) skb_put(skb, sizeof(struct iphdr));
2781
2782 skb_set_transport_header(skb, skb->len);
2783 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002784 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002785 skb->priority = pkt_dev->skb_priority;
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002788 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002790 /* Eth + IPh + UDPh + mpls */
2791 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002792 pkt_dev->pkt_overhead;
Nishank Trivedi6af773e2012-09-12 13:32:49 +00002793 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 udph->source = htons(pkt_dev->cur_udp_src);
2797 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002798 udph->len = htons(datalen + 8); /* DATA + udphdr */
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002799 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 iph->ihl = 5;
2802 iph->version = 4;
2803 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002804 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002805 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 iph->saddr = pkt_dev->cur_saddr;
2807 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002808 iph->id = htons(pkt_dev->ip_id);
2809 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 iph->frag_off = 0;
2811 iplen = 20 + 8 + datalen;
2812 iph->tot_len = htons(iplen);
Thomas Graf03c633e2013-07-25 14:08:04 +02002813 ip_send_check(iph);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002814 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 skb->dev = odev;
2816 skb->pkt_type = PACKET_HOST;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002817
2818 if (!(pkt_dev->flags & F_UDPCSUM)) {
2819 skb->ip_summed = CHECKSUM_NONE;
2820 } else if (odev->features & NETIF_F_V4_CSUM) {
2821 skb->ip_summed = CHECKSUM_PARTIAL;
2822 skb->csum = 0;
2823 udp4_hwcsum(skb, udph->source, udph->dest);
2824 } else {
2825 __wsum csum = udp_csum(skb);
2826
2827 /* add protocol-dependent pseudo-header */
2828 udph->check = csum_tcpudp_magic(udph->source, udph->dest,
2829 datalen + 8, IPPROTO_UDP, csum);
2830
2831 if (udph->check == 0)
2832 udph->check = CSUM_MANGLED_0;
2833 }
2834
Eric Dumazet26ad7872011-01-25 13:26:05 -08002835 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002836
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002837#ifdef CONFIG_XFRM
2838 if (!process_ipsec(pkt_dev, skb, protocol))
2839 return NULL;
2840#endif
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return skb;
2843}
2844
Luiz Capitulino222f1802006-03-20 22:16:13 -08002845static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2846 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847{
2848 struct sk_buff *skb = NULL;
2849 __u8 *eth;
2850 struct udphdr *udph;
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002851 int datalen, udplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 struct ipv6hdr *iph;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002853 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002854 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002855 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2856 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2857 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2858 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002859 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002860
2861 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002862 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002863
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002864 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002865 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002866
Robert Olsson64053be2005-06-26 15:27:10 -07002867 /* Update any of the values, used when we're incrementing various
2868 * fields.
2869 */
2870 mod_cur_headers(pkt_dev);
Junchang Wangeb589062010-11-07 23:19:43 +00002871 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002872
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002873 skb = pktgen_alloc_skb(odev, pkt_dev, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 if (!skb) {
2875 sprintf(pkt_dev->result, "No memory");
2876 return NULL;
2877 }
2878
Daniel Borkmann7a6e2882013-06-08 14:18:16 +02002879 prefetchw(skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 skb_reserve(skb, 16);
2881
2882 /* Reserve for ethernet and IP header */
2883 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002884 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2885 if (pkt_dev->nr_labels)
2886 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002887
2888 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002889 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002890 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002891 *svlan_tci = build_tci(pkt_dev->svlan_id,
2892 pkt_dev->svlan_cfi,
2893 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002894 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002895 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002896 }
2897 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002898 *vlan_tci = build_tci(pkt_dev->vlan_id,
2899 pkt_dev->vlan_cfi,
2900 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002901 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002902 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002903 }
2904
Thomas Graf525cebe2013-06-03 11:49:23 +00002905 skb_set_mac_header(skb, 0);
2906 skb_set_network_header(skb, skb->len);
2907 iph = (struct ipv6hdr *) skb_put(skb, sizeof(struct ipv6hdr));
2908
2909 skb_set_transport_header(skb, skb->len);
2910 udph = (struct udphdr *) skb_put(skb, sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002911 skb_set_queue_mapping(skb, queue_map);
John Fastabend9e50e3a2010-11-16 19:12:28 +00002912 skb->priority = pkt_dev->skb_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002915 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002916
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002917 /* Eth + IPh + UDPh + mpls */
2918 datalen = pkt_dev->cur_pkt_size - 14 -
2919 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002920 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Amerigo Wang5aa8b572012-10-09 17:48:16 +00002922 if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 datalen = sizeof(struct pktgen_hdr);
Joe Perchese87cc472012-05-13 21:56:26 +00002924 net_info_ratelimited("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 }
2926
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002927 udplen = datalen + sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 udph->source = htons(pkt_dev->cur_udp_src);
2929 udph->dest = htons(pkt_dev->cur_udp_dst);
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002930 udph->len = htons(udplen);
2931 udph->check = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002933 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002935 if (pkt_dev->traffic_class) {
2936 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002937 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002938 }
2939
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 iph->hop_limit = 32;
2941
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002942 iph->payload_len = htons(udplen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 iph->nexthdr = IPPROTO_UDP;
2944
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00002945 iph->daddr = pkt_dev->cur_in6_daddr;
2946 iph->saddr = pkt_dev->cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002948 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 skb->dev = odev;
2950 skb->pkt_type = PACKET_HOST;
2951
Thomas Grafc26bf4a2013-07-25 18:12:18 +02002952 if (!(pkt_dev->flags & F_UDPCSUM)) {
2953 skb->ip_summed = CHECKSUM_NONE;
2954 } else if (odev->features & NETIF_F_V6_CSUM) {
2955 skb->ip_summed = CHECKSUM_PARTIAL;
2956 skb->csum_start = skb_transport_header(skb) - skb->head;
2957 skb->csum_offset = offsetof(struct udphdr, check);
2958 udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0);
2959 } else {
2960 __wsum csum = udp_csum(skb);
2961
2962 /* add protocol-dependent pseudo-header */
2963 udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum);
2964
2965 if (udph->check == 0)
2966 udph->check = CSUM_MANGLED_0;
2967 }
2968
Eric Dumazet26ad7872011-01-25 13:26:05 -08002969 pktgen_finalize_skb(pkt_dev, skb, datalen);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002970
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 return skb;
2972}
2973
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002974static struct sk_buff *fill_packet(struct net_device *odev,
2975 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002977 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 return fill_packet_ipv6(odev, pkt_dev);
2979 else
2980 return fill_packet_ipv4(odev, pkt_dev);
2981}
2982
Luiz Capitulino222f1802006-03-20 22:16:13 -08002983static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002985 pkt_dev->seq_num = 1;
2986 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002988 pkt_dev->tx_bytes = 0;
2989 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991
2992/* Set up structure for sending pkts, clear counters */
2993
2994static void pktgen_run(struct pktgen_thread *t)
2995{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002996 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 int started = 0;
2998
Joe Perchesf9467ea2010-06-21 12:29:14 +00002999 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003001 rcu_read_lock();
3002 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
3004 /*
3005 * setup odev and create initial packet.
3006 */
3007 pktgen_setup_inject(pkt_dev);
3008
Luiz Capitulino222f1802006-03-20 22:16:13 -08003009 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 pktgen_clear_counters(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003012 pkt_dev->started_at = pkt_dev->next_tx = ktime_get();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003013
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003014 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 strcpy(pkt_dev->result, "Starting");
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003017 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003019 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 strcpy(pkt_dev->result, "Error starting");
3021 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003022 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003023 if (started)
3024 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
Cong Wang4e58a022013-01-28 19:55:53 +00003027static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003029 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Joe Perchesf9467ea2010-06-21 12:29:14 +00003031 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003033 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003034
Cong Wang4e58a022013-01-28 19:55:53 +00003035 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003036 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003037
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003038 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039}
3040
Stephen Hemminger648fda72009-08-27 13:55:07 +00003041static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003043 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003045 rcu_read_lock();
3046 list_for_each_entry_rcu(pkt_dev, &t->if_list, list)
3047 if (pkt_dev->running) {
3048 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003049 return 1;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003050 }
3051 rcu_read_unlock();
Stephen Hemminger648fda72009-08-27 13:55:07 +00003052 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053}
3054
Luiz Capitulino222f1802006-03-20 22:16:13 -08003055static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003057 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Luiz Capitulino222f1802006-03-20 22:16:13 -08003059 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Luiz Capitulino222f1802006-03-20 22:16:13 -08003061 if (signal_pending(current))
3062 goto signal;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003063 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003064 return 1;
3065signal:
3066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
3068
Cong Wang4e58a022013-01-28 19:55:53 +00003069static int pktgen_wait_all_threads_run(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003071 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003073
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003074 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003075
Cong Wang4e58a022013-01-28 19:55:53 +00003076 list_for_each_entry(t, &pn->pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003078 if (sig == 0)
3079 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003081
3082 if (sig == 0)
Cong Wang4e58a022013-01-28 19:55:53 +00003083 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003085
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003086 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 return sig;
3088}
3089
Cong Wang4e58a022013-01-28 19:55:53 +00003090static void pktgen_run_all_threads(struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003092 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Joe Perchesf9467ea2010-06-21 12:29:14 +00003094 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003096 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Cong Wang4e58a022013-01-28 19:55:53 +00003098 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003100
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003101 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003103 /* Propagate thread->control */
3104 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003105
Cong Wang4e58a022013-01-28 19:55:53 +00003106 pktgen_wait_all_threads_run(pn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107}
3108
Cong Wang4e58a022013-01-28 19:55:53 +00003109static void pktgen_reset_all_threads(struct pktgen_net *pn)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003110{
3111 struct pktgen_thread *t;
3112
Joe Perchesf9467ea2010-06-21 12:29:14 +00003113 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003114
3115 mutex_lock(&pktgen_thread_lock);
3116
Cong Wang4e58a022013-01-28 19:55:53 +00003117 list_for_each_entry(t, &pn->pktgen_threads, th_list)
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003118 t->control |= (T_REMDEVALL);
3119
3120 mutex_unlock(&pktgen_thread_lock);
3121
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003122 /* Propagate thread->control */
3123 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003124
Cong Wang4e58a022013-01-28 19:55:53 +00003125 pktgen_wait_all_threads_run(pn);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003126}
3127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3129{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003130 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003131 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003132 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3133 pkt_dev->started_at);
3134 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Daniel Turull03a14ab2011-03-09 14:11:00 -08003136 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003137 (unsigned long long)ktime_to_us(elapsed),
3138 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3139 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003140 (unsigned long long)pkt_dev->sofar,
3141 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003143 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3144 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Luiz Capitulino222f1802006-03-20 22:16:13 -08003146 bps = pps * 8 * pkt_dev->cur_pkt_size;
3147
3148 mbps = bps;
3149 do_div(mbps, 1000000);
3150 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3151 (unsigned long long)pps,
3152 (unsigned long long)mbps,
3153 (unsigned long long)bps,
3154 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003158static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003160 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003161
Luiz Capitulino222f1802006-03-20 22:16:13 -08003162 if (!pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003163 pr_warning("interface: %s is already stopped\n",
3164 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003165 return -EINVAL;
3166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003168 pkt_dev->running = 0;
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003169 kfree_skb(pkt_dev->skb);
3170 pkt_dev->skb = NULL;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003171 pkt_dev->stopped_at = ktime_get();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003173 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Luiz Capitulino222f1802006-03-20 22:16:13 -08003175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176}
3177
Luiz Capitulino222f1802006-03-20 22:16:13 -08003178static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003180 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003181
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003182 rcu_read_lock();
3183 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003184 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003185 continue;
3186 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003187 best = pkt_dev;
Daniel Borkmann398f3822012-10-28 08:27:19 +00003188 else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003189 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003191 rcu_read_unlock();
3192
Luiz Capitulino222f1802006-03-20 22:16:13 -08003193 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194}
3195
Luiz Capitulino222f1802006-03-20 22:16:13 -08003196static void pktgen_stop(struct pktgen_thread *t)
3197{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003198 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Joe Perchesf9467ea2010-06-21 12:29:14 +00003200 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003202 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003204 list_for_each_entry_rcu(pkt_dev, &t->if_list, list) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003205 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003208 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209}
3210
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003211/*
3212 * one of our devices needs to be removed - find it
3213 * and remove it
3214 */
3215static void pktgen_rem_one_if(struct pktgen_thread *t)
3216{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003217 struct list_head *q, *n;
3218 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003219
Joe Perchesf9467ea2010-06-21 12:29:14 +00003220 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003221
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003222 list_for_each_safe(q, n, &t->if_list) {
3223 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003224
Luiz Capitulino222f1802006-03-20 22:16:13 -08003225 if (!cur->removal_mark)
3226 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003227
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003228 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003229 cur->skb = NULL;
3230
3231 pktgen_remove_device(t, cur);
3232
3233 break;
3234 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003235}
3236
Luiz Capitulino222f1802006-03-20 22:16:13 -08003237static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003239 struct list_head *q, *n;
3240 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003241
Joe Perchesf9467ea2010-06-21 12:29:14 +00003242 func_enter();
3243
Luiz Capitulino222f1802006-03-20 22:16:13 -08003244 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003245
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003246 list_for_each_safe(q, n, &t->if_list) {
3247 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003248
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003249 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003250 cur->skb = NULL;
3251
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 pktgen_remove_device(t, cur);
3253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254}
3255
Luiz Capitulino222f1802006-03-20 22:16:13 -08003256static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003258 /* Remove from the thread list */
Cong Wang4e58a022013-01-28 19:55:53 +00003259 remove_proc_entry(t->tsk->comm, t->net->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260}
3261
Stephen Hemmingeref879792009-09-22 19:41:43 +00003262static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003263{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003264 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003265 schedule();
Daniel Borkmann398f3822012-10-28 08:27:19 +00003266 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003267}
3268
Stephen Hemmingeref879792009-09-22 19:41:43 +00003269static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3270{
Daniel Borkmann398f3822012-10-28 08:27:19 +00003271 ktime_t idle_start = ktime_get();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003272
3273 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3274 if (signal_pending(current))
3275 break;
3276
3277 if (need_resched())
3278 pktgen_resched(pkt_dev);
3279 else
3280 cpu_relax();
3281 }
Daniel Borkmann398f3822012-10-28 08:27:19 +00003282 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start));
Stephen Hemmingeref879792009-09-22 19:41:43 +00003283}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003284
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003285static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286{
Stephen Hemminger00829822008-11-20 20:14:53 -08003287 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003288 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003289 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003290 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003291 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 int ret;
3293
Stephen Hemmingeref879792009-09-22 19:41:43 +00003294 /* If device is offline, then don't send */
3295 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3296 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003297 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003299
Stephen Hemmingeref879792009-09-22 19:41:43 +00003300 /* This is max DELAY, this has special meaning of
3301 * "never transmit"
3302 */
3303 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
Daniel Borkmann398f3822012-10-28 08:27:19 +00003304 pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003305 return;
3306 }
3307
3308 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003309 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3310 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3311 /* build a new pkt */
3312 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003313
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003314 pkt_dev->skb = fill_packet(odev, pkt_dev);
3315 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003316 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003317 schedule();
3318 pkt_dev->clone_count--; /* back out increment, OOM */
3319 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003321 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003322 pkt_dev->allocated_skbs++;
3323 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003325
Stephen Hemmingeref879792009-09-22 19:41:43 +00003326 if (pkt_dev->delay && pkt_dev->last_ok)
3327 spin(pkt_dev, pkt_dev->next_tx);
3328
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003329 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3330 txq = netdev_get_tx_queue(odev, queue_map);
3331
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003332 local_bh_disable();
3333
3334 HARD_TX_LOCK(odev, txq, smp_processor_id());
Stephen Hemmingeref879792009-09-22 19:41:43 +00003335
Daniel Borkmann6f25cd42014-04-07 17:18:30 +02003336 if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003337 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003338 pkt_dev->last_ok = 0;
3339 goto unlock;
3340 }
3341 atomic_inc(&(pkt_dev->skb->users));
3342 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Stephen Hemmingeref879792009-09-22 19:41:43 +00003344 switch (ret) {
3345 case NETDEV_TX_OK:
3346 txq_trans_update(txq);
3347 pkt_dev->last_ok = 1;
3348 pkt_dev->sofar++;
3349 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003350 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003351 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003352 case NET_XMIT_DROP:
3353 case NET_XMIT_CN:
3354 case NET_XMIT_POLICED:
3355 /* skb has been consumed */
3356 pkt_dev->errors++;
3357 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003358 default: /* Drivers are not supposed to return other values! */
Joe Perchese87cc472012-05-13 21:56:26 +00003359 net_info_ratelimited("%s xmit error: %d\n",
3360 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003361 pkt_dev->errors++;
3362 /* fallthru */
3363 case NETDEV_TX_LOCKED:
3364 case NETDEV_TX_BUSY:
3365 /* Retry it next time */
3366 atomic_dec(&(pkt_dev->skb->users));
3367 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003368 }
Eric Dumazet0835acf2009-09-30 13:03:33 +00003369unlock:
Daniel Borkmann0f2eea42014-04-11 13:22:00 +02003370 HARD_TX_UNLOCK(odev, txq);
3371
3372 local_bh_enable();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003373
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 /* If pkt_dev->count is zero, then run forever */
3375 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003376 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 /* Done with this */
3379 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003380 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003381}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003383/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 * Main loop of the thread goes here
3385 */
3386
David S. Milleree74baa2007-01-01 20:51:53 -08003387static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
3389 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003390 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003391 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
David S. Milleree74baa2007-01-01 20:51:53 -08003394 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395
3396 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003397 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Joe Perchesf9467ea2010-06-21 12:29:14 +00003399 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003401 set_freezable();
3402
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003403 __set_current_state(TASK_RUNNING);
3404
David S. Milleree74baa2007-01-01 20:51:53 -08003405 while (!kthread_should_stop()) {
3406 pkt_dev = next_to_run(t);
3407
Stephen Hemmingeref879792009-09-22 19:41:43 +00003408 if (unlikely(!pkt_dev && t->control == 0)) {
Cong Wang4e58a022013-01-28 19:55:53 +00003409 if (t->net->pktgen_exiting)
Eric Dumazet551eaff2010-11-21 10:26:44 -08003410 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003411 wait_event_interruptible_timeout(t->queue,
3412 t->control != 0,
3413 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003414 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003415 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003416 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003417
Stephen Hemmingeref879792009-09-22 19:41:43 +00003418 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 pktgen_xmit(pkt_dev);
3420
Stephen Hemmingeref879792009-09-22 19:41:43 +00003421 if (need_resched())
3422 pktgen_resched(pkt_dev);
3423 else
3424 cpu_relax();
3425 }
3426
Luiz Capitulino222f1802006-03-20 22:16:13 -08003427 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 pktgen_stop(t);
3429 t->control &= ~(T_STOP);
3430 }
3431
Luiz Capitulino222f1802006-03-20 22:16:13 -08003432 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 pktgen_run(t);
3434 t->control &= ~(T_RUN);
3435 }
3436
Luiz Capitulino222f1802006-03-20 22:16:13 -08003437 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003439 t->control &= ~(T_REMDEVALL);
3440 }
3441
Luiz Capitulino222f1802006-03-20 22:16:13 -08003442 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003443 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 t->control &= ~(T_REMDEV);
3445 }
3446
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003447 try_to_freeze();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003448 }
Jesper Dangaard Brouerbaac1672014-06-26 13:16:49 +02003449 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Joe Perchesf9467ea2010-06-21 12:29:14 +00003451 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003452 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
Joe Perchesf9467ea2010-06-21 12:29:14 +00003454 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003455 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Joe Perchesf9467ea2010-06-21 12:29:14 +00003457 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003458 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003459
Eric Dumazet551eaff2010-11-21 10:26:44 -08003460 /* Wait for kthread_stop */
3461 while (!kthread_should_stop()) {
3462 set_current_state(TASK_INTERRUPTIBLE);
3463 schedule();
3464 }
3465 __set_current_state(TASK_RUNNING);
3466
David S. Milleree74baa2007-01-01 20:51:53 -08003467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468}
3469
Luiz Capitulino222f1802006-03-20 22:16:13 -08003470static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003471 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003473 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003474 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003476 rcu_read_lock();
3477 list_for_each_entry_rcu(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003478 if (strncmp(p->odevname, ifname, len) == 0) {
3479 if (p->odevname[len]) {
3480 if (exact || p->odevname[len] != '@')
3481 continue;
3482 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003483 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003484 break;
3485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003487 rcu_read_unlock();
Joe Perchesf9467ea2010-06-21 12:29:14 +00003488 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003489 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490}
3491
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003492/*
3493 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 */
3495
Luiz Capitulino222f1802006-03-20 22:16:13 -08003496static int add_dev_to_thread(struct pktgen_thread *t,
3497 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498{
3499 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003501 /* This function cannot be called concurrently, as its called
3502 * under pktgen_thread_lock mutex, but it can run from
3503 * userspace on another CPU than the kthread. The if_lock()
3504 * is used here to sync with concurrent instances of
3505 * _rem_dev_from_if_list() invoked via kthread, which is also
3506 * updating the if_list */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003507 if_lock(t);
3508
3509 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003510 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003511 rv = -EBUSY;
3512 goto out;
3513 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 pkt_dev->running = 0;
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003516 pkt_dev->pg_thread = t;
3517 list_add_rcu(&pkt_dev->list, &t->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Luiz Capitulino222f1802006-03-20 22:16:13 -08003519out:
3520 if_unlock(t);
3521 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522}
3523
3524/* Called under thread lock */
3525
Luiz Capitulino222f1802006-03-20 22:16:13 -08003526static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003528 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003529 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003530 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003531
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 /* We don't allow a device to be on several threads */
3533
Cong Wang4e58a022013-01-28 19:55:53 +00003534 pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003535 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003536 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003537 return -EBUSY;
3538 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003539
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003540 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003541 if (!pkt_dev)
3542 return -ENOMEM;
3543
Eric Dumazet593f63b2009-11-23 01:44:37 +00003544 strcpy(pkt_dev->odevname, ifname);
WANG Cong68d5ac22011-05-22 00:17:11 +00003545 pkt_dev->flows = vzalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003546 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003547 if (pkt_dev->flows == NULL) {
3548 kfree(pkt_dev);
3549 return -ENOMEM;
3550 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003551
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003552 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003553 pkt_dev->nfrags = 0;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003554 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003555 pkt_dev->count = pg_count_d;
3556 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003557 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003558 pkt_dev->udp_src_max = 9;
3559 pkt_dev->udp_dst_min = 9;
3560 pkt_dev->udp_dst_max = 9;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003561 pkt_dev->vlan_p = 0;
3562 pkt_dev->vlan_cfi = 0;
3563 pkt_dev->vlan_id = 0xffff;
3564 pkt_dev->svlan_p = 0;
3565 pkt_dev->svlan_cfi = 0;
3566 pkt_dev->svlan_id = 0xffff;
Robert Olssone99b99b2010-03-18 22:44:30 +00003567 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003568
Cong Wang4e58a022013-01-28 19:55:53 +00003569 err = pktgen_setup_dev(t->net, pkt_dev, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003570 if (err)
3571 goto out1;
Neil Hormand8873312011-07-26 06:05:37 +00003572 if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING)
3573 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003574
Cong Wang4e58a022013-01-28 19:55:53 +00003575 pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003576 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003577 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003578 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003579 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003580 err = -EINVAL;
3581 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003582 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003583#ifdef CONFIG_XFRM
3584 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3585 pkt_dev->ipsproto = IPPROTO_ESP;
Fan Ducf93d472014-01-03 11:18:31 +08003586
3587 /* xfrm tunnel mode needs additional dst to extract outter
3588 * ip header protocol/ttl/id field, here creat a phony one.
3589 * instead of looking for a valid rt, which definitely hurting
3590 * performance under such circumstance.
3591 */
3592 pkt_dev->dstops.family = AF_INET;
3593 pkt_dev->dst.dev = pkt_dev->odev;
3594 dst_init_metrics(&pkt_dev->dst, pktgen_dst_metrics, false);
3595 pkt_dev->dst.child = &pkt_dev->dst;
3596 pkt_dev->dst.ops = &pkt_dev->dstops;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003597#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003598
3599 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003600out2:
3601 dev_put(pkt_dev->odev);
3602out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003603#ifdef CONFIG_XFRM
3604 free_SAs(pkt_dev);
3605#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003606 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003607 kfree(pkt_dev);
3608 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609}
3610
Cong Wang4e58a022013-01-28 19:55:53 +00003611static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003613 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003614 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003615 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003617 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3618 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003619 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003620 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003621 return -ENOMEM;
3622 }
3623
Luiz Capitulino222f1802006-03-20 22:16:13 -08003624 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003626
David S. Milleree74baa2007-01-01 20:51:53 -08003627 INIT_LIST_HEAD(&t->if_list);
3628
Cong Wang4e58a022013-01-28 19:55:53 +00003629 list_add_tail(&t->th_list, &pn->pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003630 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003631
Eric Dumazet94dcf292011-03-22 16:30:45 -07003632 p = kthread_create_on_node(pktgen_thread_worker,
3633 t,
3634 cpu_to_node(cpu),
3635 "kpktgend_%d", cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003636 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003637 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003638 list_del(&t->th_list);
3639 kfree(t);
3640 return PTR_ERR(p);
3641 }
3642 kthread_bind(p, cpu);
3643 t->tsk = p;
3644
Cong Wang4e58a022013-01-28 19:55:53 +00003645 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir,
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003646 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003647 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003648 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003649 PG_PROC_DIR, t->tsk->comm);
3650 kthread_stop(p);
3651 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003652 kfree(t);
3653 return -EINVAL;
3654 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003655
Cong Wang4e58a022013-01-28 19:55:53 +00003656 t->net = pn;
David S. Milleree74baa2007-01-01 20:51:53 -08003657 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003658 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659
3660 return 0;
3661}
3662
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003663/*
3664 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003666static void _rem_dev_from_if_list(struct pktgen_thread *t,
3667 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003669 struct list_head *q, *n;
3670 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003672 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003673 list_for_each_safe(q, n, &t->if_list) {
3674 p = list_entry(q, struct pktgen_dev, list);
3675 if (p == pkt_dev)
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003676 list_del_rcu(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 }
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003678 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679}
3680
Luiz Capitulino222f1802006-03-20 22:16:13 -08003681static int pktgen_remove_device(struct pktgen_thread *t,
3682 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683{
Joe Perchesf9467ea2010-06-21 12:29:14 +00003684 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
Luiz Capitulino222f1802006-03-20 22:16:13 -08003686 if (pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003687 pr_warning("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003688 pktgen_stop_device(pkt_dev);
3689 }
3690
3691 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
3693 if (pkt_dev->odev) {
3694 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003695 pkt_dev->odev = NULL;
3696 }
3697
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003698 /* Remove proc before if_list entry, because add_device uses
3699 * list to determine if interface already exist, avoid race
3700 * with proc_create_data() */
Stephen Hemminger39df2322007-03-04 16:11:51 -08003701 if (pkt_dev->entry)
David Howellsa8ca16e2013-04-12 17:27:28 +01003702 proc_remove(pkt_dev->entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003704 /* And update the thread if_list */
3705 _rem_dev_from_if_list(t, pkt_dev);
3706
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003707#ifdef CONFIG_XFRM
3708 free_SAs(pkt_dev);
3709#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003710 vfree(pkt_dev->flows);
Eric Dumazet26ad7872011-01-25 13:26:05 -08003711 if (pkt_dev->page)
3712 put_page(pkt_dev->page);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003713 kfree_rcu(pkt_dev, rcu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003714 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715}
3716
Cong Wang4e58a022013-01-28 19:55:53 +00003717static int __net_init pg_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718{
Cong Wang4e58a022013-01-28 19:55:53 +00003719 struct pktgen_net *pn = net_generic(net, pg_net_id);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003720 struct proc_dir_entry *pe;
Cong Wang4e58a022013-01-28 19:55:53 +00003721 int cpu, ret = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003722
Cong Wang4e58a022013-01-28 19:55:53 +00003723 pn->net = net;
3724 INIT_LIST_HEAD(&pn->pktgen_threads);
3725 pn->pktgen_exiting = false;
3726 pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net);
3727 if (!pn->proc_dir) {
3728 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003729 return -ENODEV;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003730 }
Cong Wang4e58a022013-01-28 19:55:53 +00003731 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops);
3732 if (pe == NULL) {
3733 pr_err("cannot create %s procfs entry\n", PGCTRL);
3734 ret = -EINVAL;
3735 goto remove;
3736 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003737
John Hawkes670c02c2005-10-13 09:30:31 -07003738 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003739 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
Cong Wang4e58a022013-01-28 19:55:53 +00003741 err = pktgen_create_thread(cpu, pn);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003742 if (err)
Cong Wang4e58a022013-01-28 19:55:53 +00003743 pr_warn("Cannot create thread for cpu %d (%d)\n",
Joe Perchesf9467ea2010-06-21 12:29:14 +00003744 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003745 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003746
Cong Wang4e58a022013-01-28 19:55:53 +00003747 if (list_empty(&pn->pktgen_threads)) {
3748 pr_err("Initialization failed for all threads\n");
WANG Congce14f892011-05-22 00:52:08 +00003749 ret = -ENODEV;
Cong Wang4e58a022013-01-28 19:55:53 +00003750 goto remove_entry;
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003751 }
3752
Luiz Capitulino222f1802006-03-20 22:16:13 -08003753 return 0;
WANG Congce14f892011-05-22 00:52:08 +00003754
Cong Wang4e58a022013-01-28 19:55:53 +00003755remove_entry:
3756 remove_proc_entry(PGCTRL, pn->proc_dir);
3757remove:
Gao fengece31ff2013-02-18 01:34:56 +00003758 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
WANG Congce14f892011-05-22 00:52:08 +00003759 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760}
3761
Cong Wang4e58a022013-01-28 19:55:53 +00003762static void __net_exit pg_net_exit(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
Cong Wang4e58a022013-01-28 19:55:53 +00003764 struct pktgen_net *pn = net_generic(net, pg_net_id);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003765 struct pktgen_thread *t;
3766 struct list_head *q, *n;
Eric Dumazetd4b11332012-05-17 23:52:26 +00003767 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
Luiz Capitulino222f1802006-03-20 22:16:13 -08003769 /* Stop all interfaces & threads */
Cong Wang4e58a022013-01-28 19:55:53 +00003770 pn->pktgen_exiting = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Eric Dumazetc57b5462012-05-09 13:29:51 +00003772 mutex_lock(&pktgen_thread_lock);
Cong Wang4e58a022013-01-28 19:55:53 +00003773 list_splice_init(&pn->pktgen_threads, &list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003774 mutex_unlock(&pktgen_thread_lock);
3775
3776 list_for_each_safe(q, n, &list) {
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003777 t = list_entry(q, struct pktgen_thread, th_list);
Eric Dumazetc57b5462012-05-09 13:29:51 +00003778 list_del(&t->th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003779 kthread_stop(t->tsk);
3780 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Cong Wang4e58a022013-01-28 19:55:53 +00003783 remove_proc_entry(PGCTRL, pn->proc_dir);
Gao fengece31ff2013-02-18 01:34:56 +00003784 remove_proc_entry(PG_PROC_DIR, pn->net->proc_net);
Cong Wang4e58a022013-01-28 19:55:53 +00003785}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Cong Wang4e58a022013-01-28 19:55:53 +00003787static struct pernet_operations pg_net_ops = {
3788 .init = pg_net_init,
3789 .exit = pg_net_exit,
3790 .id = &pg_net_id,
3791 .size = sizeof(struct pktgen_net),
3792};
3793
3794static int __init pg_init(void)
3795{
3796 int ret = 0;
3797
3798 pr_info("%s", version);
3799 ret = register_pernet_subsys(&pg_net_ops);
3800 if (ret)
3801 return ret;
3802 ret = register_netdevice_notifier(&pktgen_notifier_block);
3803 if (ret)
3804 unregister_pernet_subsys(&pg_net_ops);
3805
3806 return ret;
3807}
3808
3809static void __exit pg_cleanup(void)
3810{
3811 unregister_netdevice_notifier(&pktgen_notifier_block);
3812 unregister_pernet_subsys(&pg_net_ops);
Jesper Dangaard Brouer87883702014-06-26 13:16:59 +02003813 /* Don't need rcu_barrier() due to use of kfree_rcu() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814}
3815
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816module_init(pg_init);
3817module_exit(pg_cleanup);
3818
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003819MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820MODULE_DESCRIPTION("Packet Generator tool");
3821MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003822MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003824MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003826MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003828MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003830MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");