blob: 10a1ea72010d329295ce3936228aa5bffe7dc745 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Authors:
3 * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se>
4 * Uppsala University and
5 * Swedish University of Agricultural Sciences
6 *
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Ben Greear <greearb@candelatech.com>
Jan Engelhardt96de0e22007-10-19 23:21:04 +02009 * Jens Låås <jens.laas@data.slu.se>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 *
17 * A tool for loading the network with preconfigurated packets.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090018 * The tool is implemented as a linux module. Parameters are output
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * device, delay (to hard_xmit), number of packets, and whether
20 * to use multiple SKBs or just the same one.
21 * pktgen uses the installed interface's output routine.
22 *
23 * Additional hacking by:
24 *
25 * Jens.Laas@data.slu.se
26 * Improved by ANK. 010120.
27 * Improved by ANK even more. 010212.
28 * MAC address typo fixed. 010417 --ro
29 * Integrated. 020301 --DaveM
30 * Added multiskb option 020301 --DaveM
31 * Scaling of results. 020417--sigurdur@linpro.no
32 * Significant re-work of the module:
33 * * Convert to threaded model to more efficiently be able to transmit
34 * and receive on multiple interfaces at once.
35 * * Converted many counters to __u64 to allow longer runs.
36 * * Allow configuration of ranges, like min/max IP address, MACs,
37 * and UDP-ports, for both source and destination, and can
38 * set to use a random distribution or sequentially walk the range.
39 * * Can now change most values after starting.
40 * * Place 12-byte packet in UDP payload with magic number,
41 * sequence number, and timestamp.
42 * * Add receiver code that detects dropped pkts, re-ordered pkts, and
43 * latencies (with micro-second) precision.
44 * * Add IOCTL interface to easily get counters & configuration.
45 * --Ben Greear <greearb@candelatech.com>
46 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090047 * Renamed multiskb to clone_skb and cleaned up sending core for two distinct
48 * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * as a "fastpath" with a configurable number of clones after alloc's.
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090050 * clone_skb=0 means all packets are allocated this also means ranges time
51 * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * clones.
53 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090054 * Also moved to /proc/net/pktgen/
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * --ro
56 *
57 * Sept 10: Fixed threading/locking. Lots of bone-headed and more clever
58 * mistakes. Also merged in DaveM's patch in the -pre6 patch.
59 * --Ben Greear <greearb@candelatech.com>
60 *
61 * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br)
62 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090063 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * 021124 Finished major redesign and rewrite for new functionality.
65 * See Documentation/networking/pktgen.txt for how to use this.
66 *
67 * The new operation:
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090068 * For each CPU one thread/process is created at start. This process checks
69 * for running devices in the if_list and sends packets until count is 0 it
70 * also the thread checks the thread->control which is used for inter-process
71 * communication. controlling process "posts" operations to the threads this
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * way. The if_lock should be possible to remove when add/rem_device is merged
73 * into this too.
74 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090075 * By design there should only be *one* "controlling" process. In practice
76 * multiple write accesses gives unpredictable result. Understood by "write"
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * to /proc gives result code thats should be read be the "writer".
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -070078 * For practical use this should be no problem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090080 * Note when adding devices to a specific CPU there good idea to also assign
81 * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * --ro
83 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090084 * Fix refcount off by one if first packet fails, potential null deref,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * memleak 030710- KJP
86 *
87 * First "ranges" functionality for ipv6 030726 --ro
88 *
89 * Included flow support. 030802 ANK.
90 *
91 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090092 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
94 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
95 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090096 * New xmit() return, do_div and misc clean up by Stephen Hemminger
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * <shemminger@osdl.org> 040923
98 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090099 * Randy Dunlap fixed u64 printk compiler waring
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 *
101 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
102 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
103 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900104 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
106 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900107 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * 050103
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800109 *
110 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
111 *
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700112 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
113 *
Adit Ranadivece5d0b42007-09-16 14:52:15 -0700114 * Fixed src_mac command to set source mac of packet to value specified in
115 * command by Adit Ranadive <adit.262@gmail.com>
116 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
Joe Perchesf9467ea2010-06-21 12:29:14 +0000118
119#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#include <linux/sys.h>
122#include <linux/types.h>
123#include <linux/module.h>
124#include <linux/moduleparam.h>
125#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800126#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#include <linux/sched.h>
128#include <linux/slab.h>
129#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#include <linux/unistd.h>
131#include <linux/string.h>
132#include <linux/ptrace.h>
133#include <linux/errno.h>
134#include <linux/ioport.h>
135#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800136#include <linux/capability.h>
Stephen Hemminger2bc481c2009-08-28 23:41:29 -0700137#include <linux/hrtimer.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700138#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#include <linux/delay.h>
140#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800141#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#include <linux/init.h>
143#include <linux/skbuff.h>
144#include <linux/netdevice.h>
145#include <linux/inet.h>
146#include <linux/inetdevice.h>
147#include <linux/rtnetlink.h>
148#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700149#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#include <linux/in.h>
151#include <linux/ip.h>
152#include <linux/ipv6.h>
153#include <linux/udp.h>
154#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700155#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800157#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800158#include <linux/kthread.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200159#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#include <net/checksum.h>
161#include <net/ipv6.h>
162#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700163#ifdef CONFIG_XFRM
164#include <net/xfrm.h>
165#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#include <asm/byteorder.h>
167#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700168#include <linux/bitops.h>
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000169#include <linux/io.h>
170#include <linux/timex.h>
171#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#include <asm/dma.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800173#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Daniel Turull43d28b62010-06-09 22:49:57 +0000175#define VERSION "2.74"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800177#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800178#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Joe Perchesf9467ea2010-06-21 12:29:14 +0000180#define func_enter() pr_debug("entering %s\n", __func__);
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800183#define F_IPSRC_RND (1<<0) /* IP-Src Random */
184#define F_IPDST_RND (1<<1) /* IP-Dst Random */
185#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
186#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
187#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
188#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
189#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
190#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800191#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700192#define F_VID_RND (1<<9) /* Random VLAN ID */
193#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700194#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700195#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700196#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700197#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Robert Olssone99b99b2010-03-18 22:44:30 +0000198#define F_NODE (1<<15) /* Node memory alloc*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200/* Thread control flag bits */
Stephen Hemminger6b80d6a2009-09-22 19:41:42 +0000201#define T_STOP (1<<0) /* Stop run */
202#define T_RUN (1<<1) /* Start run */
203#define T_REMDEVALL (1<<2) /* Remove all devs */
204#define T_REMDEV (1<<3) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* If lock -- can be removed after some work */
207#define if_lock(t) spin_lock(&(t->if_lock));
208#define if_unlock(t) spin_unlock(&(t->if_lock));
209
210/* Used to help with determining the pkts on receive */
211#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700212#define PG_PROC_DIR "pktgen"
213#define PGCTRL "pgctrl"
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000214static struct proc_dir_entry *pg_proc_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216#define MAX_CFLOWS 65536
217
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700218#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
219#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
220
Luiz Capitulino222f1802006-03-20 22:16:13 -0800221struct flow_state {
Al Viro252e33462006-11-14 20:48:11 -0800222 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800223 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700224#ifdef CONFIG_XFRM
225 struct xfrm_state *x;
226#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700227 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700230/* flow flag bits */
231#define F_INIT (1<<0) /* flow has been initialized */
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /*
235 * Try to keep frequent/infrequent used vars. separated.
236 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800237 struct proc_dir_entry *entry; /* proc file */
238 struct pktgen_thread *pg_thread;/* the owner */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000239 struct list_head list; /* chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000241 int running; /* if false, the test will stop */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800242
243 /* If min != max, then we will either do a linear iteration, or
244 * we will do a random selection from within the range.
245 */
246 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800247 int removal_mark; /* non-zero => the device is marked for
248 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Luiz Capitulino222f1802006-03-20 22:16:13 -0800250 int min_pkt_size; /* = ETH_ZLEN; */
251 int max_pkt_size; /* = ETH_ZLEN; */
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700252 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800253 int nfrags;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000254 u64 delay; /* nano-seconds */
255
Luiz Capitulino222f1802006-03-20 22:16:13 -0800256 __u64 count; /* Default No packets to send */
257 __u64 sofar; /* How many pkts we've sent so far */
258 __u64 tx_bytes; /* How many bytes we've transmitted */
John Fastabendf466dba2009-12-23 22:02:57 -0800259 __u64 errors; /* Errors when trying to transmit, */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Luiz Capitulino222f1802006-03-20 22:16:13 -0800261 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Luiz Capitulino222f1802006-03-20 22:16:13 -0800263 __u64 allocated_skbs;
264 __u32 clone_count;
265 int last_ok; /* Was last skb sent?
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000266 * Or a failed transmit of some sort?
267 * This will keep sequence numbers in order
Luiz Capitulino222f1802006-03-20 22:16:13 -0800268 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000269 ktime_t next_tx;
270 ktime_t started_at;
271 ktime_t stopped_at;
272 u64 idle_acc; /* nano-seconds */
273
Luiz Capitulino222f1802006-03-20 22:16:13 -0800274 __u32 seq_num;
275
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000276 int clone_skb; /*
277 * Use multiple SKBs during packet gen.
278 * If this number is greater than 1, then
279 * that many copies of the same packet will be
280 * sent before a new packet is allocated.
281 * If you want to send 1024 identical packets
282 * before creating a new packet,
283 * set clone_skb to 1024.
Luiz Capitulino222f1802006-03-20 22:16:13 -0800284 */
285
286 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
287 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
288 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
289 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
290
291 struct in6_addr in6_saddr;
292 struct in6_addr in6_daddr;
293 struct in6_addr cur_in6_daddr;
294 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800296 struct in6_addr min_in6_daddr;
297 struct in6_addr max_in6_daddr;
298 struct in6_addr min_in6_saddr;
299 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Luiz Capitulino222f1802006-03-20 22:16:13 -0800301 /* If we're doing ranges, random or incremental, then this
302 * defines the min/max for those ranges.
303 */
Al Viro252e33462006-11-14 20:48:11 -0800304 __be32 saddr_min; /* inclusive, source IP address */
305 __be32 saddr_max; /* exclusive, source IP address */
306 __be32 daddr_min; /* inclusive, dest IP address */
307 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Luiz Capitulino222f1802006-03-20 22:16:13 -0800309 __u16 udp_src_min; /* inclusive, source UDP port */
310 __u16 udp_src_max; /* exclusive, source UDP port */
311 __u16 udp_dst_min; /* inclusive, dest UDP port */
312 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700314 /* DSCP + ECN */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000315 __u8 tos; /* six MSB of (former) IPv4 TOS
316 are for dscp codepoint */
317 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6
318 (see RFC 3260, sec. 4) */
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700319
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800320 /* MPLS */
321 unsigned nr_labels; /* Depth of stack, 0 = no MPLS */
322 __be32 labels[MAX_MPLS_LABELS];
323
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700324 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
325 __u8 vlan_p;
326 __u8 vlan_cfi;
327 __u16 vlan_id; /* 0xffff means no vlan tag */
328
329 __u8 svlan_p;
330 __u8 svlan_cfi;
331 __u16 svlan_id; /* 0xffff means no svlan tag */
332
Luiz Capitulino222f1802006-03-20 22:16:13 -0800333 __u32 src_mac_count; /* How many MACs to iterate through */
334 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Luiz Capitulino222f1802006-03-20 22:16:13 -0800336 unsigned char dst_mac[ETH_ALEN];
337 unsigned char src_mac[ETH_ALEN];
338
339 __u32 cur_dst_mac_offset;
340 __u32 cur_src_mac_offset;
Al Viro252e33462006-11-14 20:48:11 -0800341 __be32 cur_saddr;
342 __be32 cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -0700343 __u16 ip_id;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800344 __u16 cur_udp_dst;
345 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700346 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800347 __u32 cur_pkt_size;
Eric Dumazetbaac8562009-11-05 21:04:32 -0800348 __u32 last_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800349
350 __u8 hh[14];
351 /* = {
352 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
353
354 We fill in SRC address later
355 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
356 0x08, 0x00
357 };
358 */
359 __u16 pad; /* pad out the hh struct to an even 16 bytes */
360
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000361 struct sk_buff *skb; /* skb we are to transmit next, used for when we
Luiz Capitulino222f1802006-03-20 22:16:13 -0800362 * are transmitting the same one multiple times
363 */
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000364 struct net_device *odev; /* The out-going device.
365 * Note that the device should have it's
366 * pg_info pointer pointing back to this
367 * device.
368 * Set when the user specifies the out-going
369 * device name (not when the inject is
370 * started as it used to do.)
371 */
Eric Dumazet593f63b2009-11-23 01:44:37 +0000372 char odevname[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800374 unsigned cflows; /* Concurrent flows (config) */
375 unsigned lflow; /* Flow length (config) */
376 unsigned nflows; /* accumulated flows (stats) */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700377 unsigned curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700378
379 u16 queue_map_min;
380 u16 queue_map_max;
Robert Olssone99b99b2010-03-18 22:44:30 +0000381 int node; /* Memory node */
Robert Olsson45b270f2007-08-28 15:45:55 -0700382
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700383#ifdef CONFIG_XFRM
384 __u8 ipsmode; /* IPSEC mode (config) */
385 __u8 ipsproto; /* IPSEC type (config) */
386#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800387 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388};
389
390struct pktgen_hdr {
Al Viro252e33462006-11-14 20:48:11 -0800391 __be32 pgh_magic;
392 __be32 seq_num;
393 __be32 tv_sec;
394 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
397struct pktgen_thread {
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000398 spinlock_t if_lock; /* for list of devices */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800399 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800400 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800401 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800402 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000404 /* Field for thread to receive "posted" events terminate,
405 stop ifs etc. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800406
407 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 int cpu;
409
Luiz Capitulino222f1802006-03-20 22:16:13 -0800410 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700411 struct completion start_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412};
413
414#define REMOVE 1
415#define FIND 0
416
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000417static inline ktime_t ktime_now(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000419 struct timespec ts;
420 ktime_get_ts(&ts);
421
422 return timespec_to_ktime(ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000425/* This works even if 32 bit because of careful byte order choice */
426static inline int ktime_lt(const ktime_t cmp1, const ktime_t cmp2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000428 return cmp1.tv64 < cmp2.tv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000431static const char version[] =
Joe Perchesf9467ea2010-06-21 12:29:14 +0000432 "Packet Generator for packet performance testing. "
433 "Version: " VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Luiz Capitulino222f1802006-03-20 22:16:13 -0800435static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
436static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
437static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -0800438 const char *ifname, bool exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
440static void pktgen_run_all_threads(void);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800441static void pktgen_reset_all_threads(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442static void pktgen_stop_all_threads_ifs(void);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000443
Luiz Capitulino222f1802006-03-20 22:16:13 -0800444static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800446
Luiz Capitulino222f1802006-03-20 22:16:13 -0800447static unsigned int scan_ip6(const char *s, char ip[16]);
448static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000451static int pg_count_d __read_mostly = 1000;
452static int pg_delay_d __read_mostly;
453static int pg_clone_skb_d __read_mostly;
454static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Luiz Capitulino222fa072006-03-20 22:24:27 -0800456static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800457static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459static struct notifier_block pktgen_notifier_block = {
460 .notifier_call = pktgen_device_event,
461};
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900464 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
466 */
467
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700468static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800469{
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +0000470 seq_puts(seq, version);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000474static ssize_t pgctrl_write(struct file *file, const char __user *buf,
475 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700478 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Luiz Capitulino222f1802006-03-20 22:16:13 -0800480 if (!capable(CAP_NET_ADMIN)) {
481 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700485 if (count > sizeof(data))
486 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700489 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700490 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800491 }
492 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Luiz Capitulino222f1802006-03-20 22:16:13 -0800494 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 pktgen_stop_all_threads_ifs();
496
Luiz Capitulino222f1802006-03-20 22:16:13 -0800497 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 pktgen_run_all_threads();
499
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800500 else if (!strcmp(data, "reset"))
501 pktgen_reset_all_threads();
502
Luiz Capitulino222f1802006-03-20 22:16:13 -0800503 else
Joe Perchesf9467ea2010-06-21 12:29:14 +0000504 pr_warning("Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 err = count;
507
Luiz Capitulino222f1802006-03-20 22:16:13 -0800508out:
509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700512static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700514 return single_open(file, pgctrl_show, PDE(inode)->data);
515}
516
Arjan van de Ven9a321442007-02-12 00:55:35 -0800517static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800518 .owner = THIS_MODULE,
519 .open = pgctrl_open,
520 .read = seq_read,
521 .llseek = seq_lseek,
522 .write = pgctrl_write,
523 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700524};
525
526static int pktgen_if_show(struct seq_file *seq, void *v)
527{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000528 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000529 ktime_t stopped;
530 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Luiz Capitulino222f1802006-03-20 22:16:13 -0800532 seq_printf(seq,
533 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
534 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
535 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Luiz Capitulino222f1802006-03-20 22:16:13 -0800537 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000538 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
539 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Eric Dumazet593f63b2009-11-23 01:44:37 +0000540 pkt_dev->clone_skb, pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Luiz Capitulino222f1802006-03-20 22:16:13 -0800542 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
543 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Robert Olsson45b270f2007-08-28 15:45:55 -0700545 seq_printf(seq,
546 " queue_map_min: %u queue_map_max: %u\n",
547 pkt_dev->queue_map_min,
548 pkt_dev->queue_map_max);
549
Luiz Capitulino222f1802006-03-20 22:16:13 -0800550 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800552 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
553 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
554 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
555 seq_printf(seq,
556 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
557 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Luiz Capitulino222f1802006-03-20 22:16:13 -0800559 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
560 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
561 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
562 seq_printf(seq,
563 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
564 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000566 } else {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800567 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000568 " dst_min: %s dst_max: %s\n",
569 pkt_dev->dst_min, pkt_dev->dst_max);
570 seq_printf(seq,
571 " src_min: %s src_max: %s\n",
572 pkt_dev->src_min, pkt_dev->src_max);
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700575 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Johannes Berge1749612008-10-27 15:59:26 -0700577 seq_printf(seq, "%pM ",
578 is_zero_ether_addr(pkt_dev->src_mac) ?
579 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Luiz Capitulino222f1802006-03-20 22:16:13 -0800581 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700582 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Luiz Capitulino222f1802006-03-20 22:16:13 -0800584 seq_printf(seq,
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000585 " udp_src_min: %d udp_src_max: %d"
586 " udp_dst_min: %d udp_dst_max: %d\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800587 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
588 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Luiz Capitulino222f1802006-03-20 22:16:13 -0800590 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800591 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700592 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800594 if (pkt_dev->nr_labels) {
595 unsigned i;
596 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700597 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800598 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
599 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
600 }
601
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000602 if (pkt_dev->vlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700603 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000604 pkt_dev->vlan_id, pkt_dev->vlan_p,
605 pkt_dev->vlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700606
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000607 if (pkt_dev->svlan_id != 0xffff)
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700608 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000609 pkt_dev->svlan_id, pkt_dev->svlan_p,
610 pkt_dev->svlan_cfi);
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700611
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000612 if (pkt_dev->tos)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700613 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700614
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000615 if (pkt_dev->traffic_class)
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700616 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700617
Robert Olssone99b99b2010-03-18 22:44:30 +0000618 if (pkt_dev->node >= 0)
619 seq_printf(seq, " node: %d\n", pkt_dev->node);
620
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800621 seq_printf(seq, " Flags: ");
622
Luiz Capitulino222f1802006-03-20 22:16:13 -0800623 if (pkt_dev->flags & F_IPV6)
624 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Luiz Capitulino222f1802006-03-20 22:16:13 -0800626 if (pkt_dev->flags & F_IPSRC_RND)
627 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Luiz Capitulino222f1802006-03-20 22:16:13 -0800629 if (pkt_dev->flags & F_IPDST_RND)
630 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Luiz Capitulino222f1802006-03-20 22:16:13 -0800632 if (pkt_dev->flags & F_TXSIZE_RND)
633 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Luiz Capitulino222f1802006-03-20 22:16:13 -0800635 if (pkt_dev->flags & F_UDPSRC_RND)
636 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Luiz Capitulino222f1802006-03-20 22:16:13 -0800638 if (pkt_dev->flags & F_UDPDST_RND)
639 seq_printf(seq, "UDPDST_RND ");
640
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800641 if (pkt_dev->flags & F_MPLS_RND)
642 seq_printf(seq, "MPLS_RND ");
643
Robert Olsson45b270f2007-08-28 15:45:55 -0700644 if (pkt_dev->flags & F_QUEUE_MAP_RND)
645 seq_printf(seq, "QUEUE_MAP_RND ");
646
Robert Olssone6fce5b2008-08-07 02:23:01 -0700647 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
648 seq_printf(seq, "QUEUE_MAP_CPU ");
649
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700650 if (pkt_dev->cflows) {
651 if (pkt_dev->flags & F_FLOW_SEQ)
652 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
653 else
654 seq_printf(seq, "FLOW_RND ");
655 }
656
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700657#ifdef CONFIG_XFRM
658 if (pkt_dev->flags & F_IPSEC_ON)
659 seq_printf(seq, "IPSEC ");
660#endif
661
Luiz Capitulino222f1802006-03-20 22:16:13 -0800662 if (pkt_dev->flags & F_MACSRC_RND)
663 seq_printf(seq, "MACSRC_RND ");
664
665 if (pkt_dev->flags & F_MACDST_RND)
666 seq_printf(seq, "MACDST_RND ");
667
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700668 if (pkt_dev->flags & F_VID_RND)
669 seq_printf(seq, "VID_RND ");
670
671 if (pkt_dev->flags & F_SVID_RND)
672 seq_printf(seq, "SVID_RND ");
673
Robert Olssone99b99b2010-03-18 22:44:30 +0000674 if (pkt_dev->flags & F_NODE)
675 seq_printf(seq, "NODE_ALLOC ");
676
Luiz Capitulino222f1802006-03-20 22:16:13 -0800677 seq_puts(seq, "\n");
678
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000679 /* not really stopped, more like last-running-at */
680 stopped = pkt_dev->running ? ktime_now() : pkt_dev->stopped_at;
681 idle = pkt_dev->idle_acc;
682 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800683
684 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000685 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000687 (unsigned long long)pkt_dev->errors);
688
689 seq_printf(seq,
690 " started: %lluus stopped: %lluus idle: %lluus\n",
691 (unsigned long long) ktime_to_us(pkt_dev->started_at),
692 (unsigned long long) ktime_to_us(stopped),
693 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800694
695 seq_printf(seq,
696 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700697 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
698 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Luiz Capitulino222f1802006-03-20 22:16:13 -0800700 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800702 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
703 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
704 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
705 } else
706 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700707 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Luiz Capitulino222f1802006-03-20 22:16:13 -0800709 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700710 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Robert Olsson45b270f2007-08-28 15:45:55 -0700712 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
713
Luiz Capitulino222f1802006-03-20 22:16:13 -0800714 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800717 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800719 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800724
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000725static int hex32_arg(const char __user *user_buffer, unsigned long maxlen,
726 __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800727{
728 int i = 0;
729 *num = 0;
730
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700731 for (; i < maxlen; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800732 char c;
733 *num <<= 4;
734 if (get_user(c, &user_buffer[i]))
735 return -EFAULT;
736 if ((c >= '0') && (c <= '9'))
737 *num |= c - '0';
738 else if ((c >= 'a') && (c <= 'f'))
739 *num |= c - 'a' + 10;
740 else if ((c >= 'A') && (c <= 'F'))
741 *num |= c - 'A' + 10;
742 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
Luiz Capitulino222f1802006-03-20 22:16:13 -0800773static unsigned long num_arg(const char __user * user_buffer,
774 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 int i = 0;
777 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800778
779 for (; i < maxlen; i++) {
780 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{
794 int i = 0;
795
Luiz Capitulino222f1802006-03-20 22:16:13 -0800796 for (; i < maxlen; i++) {
797 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;
807 break;
808 default:
809 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return i;
814}
815
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800816static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
817{
818 unsigned n = 0;
819 char c;
820 ssize_t i = 0;
821 int len;
822
823 pkt_dev->nr_labels = 0;
824 do {
825 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700826 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800827 if (len <= 0)
828 return len;
829 pkt_dev->labels[n] = htonl(tmp);
830 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
831 pkt_dev->flags |= F_MPLS_RND;
832 i += len;
833 if (get_user(c, &buffer[i]))
834 return -EFAULT;
835 i++;
836 n++;
837 if (n >= MAX_MPLS_LABELS)
838 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700839 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800840
841 pkt_dev->nr_labels = n;
842 return i;
843}
844
Luiz Capitulino222f1802006-03-20 22:16:13 -0800845static ssize_t pktgen_if_write(struct file *file,
846 const char __user * user_buffer, size_t count,
847 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Joe Perches8a994a72010-07-12 10:50:23 +0000849 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800850 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 int i = 0, max, len;
852 char name[16], valstr[32];
853 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800854 char *pg_result = NULL;
855 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800857
858 pg_result = &(pkt_dev->result[0]);
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (count < 1) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000861 pr_warning("wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return -EINVAL;
863 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 max = count - i;
866 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800867 if (tmp < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +0000868 pr_warning("illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800869 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800871 i += tmp;
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* Read variable name */
874
875 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000876 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800877 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +0000878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800880 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return -EFAULT;
882 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800883
884 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800886 if (len < 0)
887 return len;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 i += len;
890
891 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800892 char tb[count + 1];
893 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800895 tb[count] = 0;
David S. Miller25a8b252007-07-30 16:11:48 -0700896 printk(KERN_DEBUG "pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800897 (unsigned long)count, tb);
898 }
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;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001077 pkt_dev->clone_skb = value;
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1080 return count;
1081 }
1082 if (!strcmp(name, "count")) {
1083 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001084 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001085 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 i += len;
1088 pkt_dev->count = value;
1089 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001090 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return count;
1092 }
1093 if (!strcmp(name, "src_mac_count")) {
1094 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001095 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001096 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 i += len;
1099 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001100 pkt_dev->src_mac_count = value;
1101 pkt_dev->cur_src_mac_offset = 0;
1102 }
1103 sprintf(pg_result, "OK: src_mac_count=%d",
1104 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return count;
1106 }
1107 if (!strcmp(name, "dst_mac_count")) {
1108 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001109 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001110 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 i += len;
1113 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001114 pkt_dev->dst_mac_count = value;
1115 pkt_dev->cur_dst_mac_offset = 0;
1116 }
1117 sprintf(pg_result, "OK: dst_mac_count=%d",
1118 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return count;
1120 }
Robert Olssone99b99b2010-03-18 22:44:30 +00001121 if (!strcmp(name, "node")) {
1122 len = num_arg(&user_buffer[i], 10, &value);
1123 if (len < 0)
1124 return len;
1125
1126 i += len;
1127
1128 if (node_possible(value)) {
1129 pkt_dev->node = value;
1130 sprintf(pg_result, "OK: node=%d", pkt_dev->node);
1131 }
1132 else
1133 sprintf(pg_result, "ERROR: node not possible");
1134 return count;
1135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001137 char f[32];
1138 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001140 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001141 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (copy_from_user(f, &user_buffer[i], len))
1144 return -EFAULT;
1145 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001146 if (strcmp(f, "IPSRC_RND") == 0)
1147 pkt_dev->flags |= F_IPSRC_RND;
1148
1149 else if (strcmp(f, "!IPSRC_RND") == 0)
1150 pkt_dev->flags &= ~F_IPSRC_RND;
1151
1152 else if (strcmp(f, "TXSIZE_RND") == 0)
1153 pkt_dev->flags |= F_TXSIZE_RND;
1154
1155 else if (strcmp(f, "!TXSIZE_RND") == 0)
1156 pkt_dev->flags &= ~F_TXSIZE_RND;
1157
1158 else if (strcmp(f, "IPDST_RND") == 0)
1159 pkt_dev->flags |= F_IPDST_RND;
1160
1161 else if (strcmp(f, "!IPDST_RND") == 0)
1162 pkt_dev->flags &= ~F_IPDST_RND;
1163
1164 else if (strcmp(f, "UDPSRC_RND") == 0)
1165 pkt_dev->flags |= F_UDPSRC_RND;
1166
1167 else if (strcmp(f, "!UDPSRC_RND") == 0)
1168 pkt_dev->flags &= ~F_UDPSRC_RND;
1169
1170 else if (strcmp(f, "UDPDST_RND") == 0)
1171 pkt_dev->flags |= F_UDPDST_RND;
1172
1173 else if (strcmp(f, "!UDPDST_RND") == 0)
1174 pkt_dev->flags &= ~F_UDPDST_RND;
1175
1176 else if (strcmp(f, "MACSRC_RND") == 0)
1177 pkt_dev->flags |= F_MACSRC_RND;
1178
1179 else if (strcmp(f, "!MACSRC_RND") == 0)
1180 pkt_dev->flags &= ~F_MACSRC_RND;
1181
1182 else if (strcmp(f, "MACDST_RND") == 0)
1183 pkt_dev->flags |= F_MACDST_RND;
1184
1185 else if (strcmp(f, "!MACDST_RND") == 0)
1186 pkt_dev->flags &= ~F_MACDST_RND;
1187
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001188 else if (strcmp(f, "MPLS_RND") == 0)
1189 pkt_dev->flags |= F_MPLS_RND;
1190
1191 else if (strcmp(f, "!MPLS_RND") == 0)
1192 pkt_dev->flags &= ~F_MPLS_RND;
1193
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001194 else if (strcmp(f, "VID_RND") == 0)
1195 pkt_dev->flags |= F_VID_RND;
1196
1197 else if (strcmp(f, "!VID_RND") == 0)
1198 pkt_dev->flags &= ~F_VID_RND;
1199
1200 else if (strcmp(f, "SVID_RND") == 0)
1201 pkt_dev->flags |= F_SVID_RND;
1202
1203 else if (strcmp(f, "!SVID_RND") == 0)
1204 pkt_dev->flags &= ~F_SVID_RND;
1205
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001206 else if (strcmp(f, "FLOW_SEQ") == 0)
1207 pkt_dev->flags |= F_FLOW_SEQ;
1208
Robert Olsson45b270f2007-08-28 15:45:55 -07001209 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1210 pkt_dev->flags |= F_QUEUE_MAP_RND;
1211
1212 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1213 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001214
1215 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1216 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1217
1218 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1219 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001220#ifdef CONFIG_XFRM
1221 else if (strcmp(f, "IPSEC") == 0)
1222 pkt_dev->flags |= F_IPSEC_ON;
1223#endif
1224
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001225 else if (strcmp(f, "!IPV6") == 0)
1226 pkt_dev->flags &= ~F_IPV6;
1227
Robert Olssone99b99b2010-03-18 22:44:30 +00001228 else if (strcmp(f, "NODE_ALLOC") == 0)
1229 pkt_dev->flags |= F_NODE;
1230
1231 else if (strcmp(f, "!NODE_ALLOC") == 0)
1232 pkt_dev->flags &= ~F_NODE;
1233
Luiz Capitulino222f1802006-03-20 22:16:13 -08001234 else {
1235 sprintf(pg_result,
1236 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1237 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001238 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Robert Olssone99b99b2010-03-18 22:44:30 +00001239 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC, NODE_ALLOC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001240 return count;
1241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1243 return count;
1244 }
1245 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1246 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001247 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001248 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Luiz Capitulino222f1802006-03-20 22:16:13 -08001250 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001252 buf[len] = 0;
1253 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1254 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1255 strncpy(pkt_dev->dst_min, buf, len);
1256 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1257 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1258 }
1259 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001260 printk(KERN_DEBUG "pktgen: dst_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001261 pkt_dev->dst_min);
1262 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1264 return count;
1265 }
1266 if (!strcmp(name, "dst_max")) {
1267 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001268 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001269 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Luiz Capitulino222f1802006-03-20 22:16:13 -08001272 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 return -EFAULT;
1274
Luiz Capitulino222f1802006-03-20 22:16:13 -08001275 buf[len] = 0;
1276 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1277 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1278 strncpy(pkt_dev->dst_max, buf, len);
1279 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1280 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1281 }
1282 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001283 printk(KERN_DEBUG "pktgen: dst_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001284 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 i += len;
1286 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1287 return count;
1288 }
1289 if (!strcmp(name, "dst6")) {
1290 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001291 if (len < 0)
1292 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 pkt_dev->flags |= F_IPV6;
1295
Luiz Capitulino222f1802006-03-20 22:16:13 -08001296 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001298 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001301 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1304
Luiz Capitulino222f1802006-03-20 22:16:13 -08001305 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001306 printk(KERN_DEBUG "pktgen: dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Luiz Capitulino222f1802006-03-20 22:16:13 -08001308 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 sprintf(pg_result, "OK: dst6=%s", buf);
1310 return count;
1311 }
1312 if (!strcmp(name, "dst6_min")) {
1313 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001314 if (len < 0)
1315 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 pkt_dev->flags |= F_IPV6;
1318
Luiz Capitulino222f1802006-03-20 22:16:13 -08001319 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001321 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001324 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Luiz Capitulino222f1802006-03-20 22:16:13 -08001326 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1327 &pkt_dev->min_in6_daddr);
1328 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001329 printk(KERN_DEBUG "pktgen: dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Luiz Capitulino222f1802006-03-20 22:16:13 -08001331 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 sprintf(pg_result, "OK: dst6_min=%s", buf);
1333 return count;
1334 }
1335 if (!strcmp(name, "dst6_max")) {
1336 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001337 if (len < 0)
1338 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 pkt_dev->flags |= F_IPV6;
1341
Luiz Capitulino222f1802006-03-20 22:16:13 -08001342 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001344 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001347 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Luiz Capitulino222f1802006-03-20 22:16:13 -08001349 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001350 printk(KERN_DEBUG "pktgen: dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Luiz Capitulino222f1802006-03-20 22:16:13 -08001352 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 sprintf(pg_result, "OK: dst6_max=%s", buf);
1354 return count;
1355 }
1356 if (!strcmp(name, "src6")) {
1357 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001358 if (len < 0)
1359 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 pkt_dev->flags |= F_IPV6;
1362
Luiz Capitulino222f1802006-03-20 22:16:13 -08001363 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001365 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001368 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1371
Luiz Capitulino222f1802006-03-20 22:16:13 -08001372 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001373 printk(KERN_DEBUG "pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001374
1375 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 sprintf(pg_result, "OK: src6=%s", buf);
1377 return count;
1378 }
1379 if (!strcmp(name, "src_min")) {
1380 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001381 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001382 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001383
Luiz Capitulino222f1802006-03-20 22:16:13 -08001384 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001386 buf[len] = 0;
1387 if (strcmp(buf, pkt_dev->src_min) != 0) {
1388 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1389 strncpy(pkt_dev->src_min, buf, len);
1390 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1391 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1392 }
1393 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001394 printk(KERN_DEBUG "pktgen: src_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001395 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 i += len;
1397 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1398 return count;
1399 }
1400 if (!strcmp(name, "src_max")) {
1401 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001402 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001403 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001404
Luiz Capitulino222f1802006-03-20 22:16:13 -08001405 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001407 buf[len] = 0;
1408 if (strcmp(buf, pkt_dev->src_max) != 0) {
1409 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1410 strncpy(pkt_dev->src_max, buf, len);
1411 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1412 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1413 }
1414 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001415 printk(KERN_DEBUG "pktgen: src_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001416 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 i += len;
1418 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1419 return count;
1420 }
1421 if (!strcmp(name, "dst_mac")) {
1422 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001423 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001425 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001428 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001429 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001432 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return -EFAULT;
1434 i += len;
1435
Luiz Capitulino222f1802006-03-20 22:16:13 -08001436 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Andy Shevchenko451e07a2010-07-23 03:18:10 +00001437 int value;
1438
1439 value = hex_to_bin(*v);
1440 if (value >= 0)
1441 *m = *m * 16 + value;
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (*v == ':') {
1444 m++;
1445 *m = 0;
1446 }
1447 }
1448
1449 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001450 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1451 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 sprintf(pg_result, "OK: dstmac");
1454 return count;
1455 }
1456 if (!strcmp(name, "src_mac")) {
1457 char *v = valstr;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001458 unsigned char old_smac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 unsigned char *m = pkt_dev->src_mac;
1460
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001461 memcpy(old_smac, pkt_dev->src_mac, ETH_ALEN);
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001464 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001465 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001468 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -EFAULT;
1470 i += len;
1471
Luiz Capitulino222f1802006-03-20 22:16:13 -08001472 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Andy Shevchenko451e07a2010-07-23 03:18:10 +00001473 int value;
1474
1475 value = hex_to_bin(*v);
1476 if (value >= 0)
1477 *m = *m * 16 + value;
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 if (*v == ':') {
1480 m++;
1481 *m = 0;
1482 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001485 /* Set up Src MAC */
1486 if (compare_ether_addr(old_smac, pkt_dev->src_mac))
1487 memcpy(&(pkt_dev->hh[6]), pkt_dev->src_mac, ETH_ALEN);
1488
Luiz Capitulino222f1802006-03-20 22:16:13 -08001489 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return count;
1491 }
1492
Luiz Capitulino222f1802006-03-20 22:16:13 -08001493 if (!strcmp(name, "clear_counters")) {
1494 pktgen_clear_counters(pkt_dev);
1495 sprintf(pg_result, "OK: Clearing counters.\n");
1496 return count;
1497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 if (!strcmp(name, "flows")) {
1500 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001501 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001502 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 i += len;
1505 if (value > MAX_CFLOWS)
1506 value = MAX_CFLOWS;
1507
1508 pkt_dev->cflows = value;
1509 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1510 return count;
1511 }
1512
1513 if (!strcmp(name, "flowlen")) {
1514 len = num_arg(&user_buffer[i], 10, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001515 if (len < 0)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001516 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 i += len;
1519 pkt_dev->lflow = value;
1520 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1521 return count;
1522 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001523
Robert Olsson45b270f2007-08-28 15:45:55 -07001524 if (!strcmp(name, "queue_map_min")) {
1525 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001526 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001527 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001528
Robert Olsson45b270f2007-08-28 15:45:55 -07001529 i += len;
1530 pkt_dev->queue_map_min = value;
1531 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1532 return count;
1533 }
1534
1535 if (!strcmp(name, "queue_map_max")) {
1536 len = num_arg(&user_buffer[i], 5, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001537 if (len < 0)
Robert Olsson45b270f2007-08-28 15:45:55 -07001538 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001539
Robert Olsson45b270f2007-08-28 15:45:55 -07001540 i += len;
1541 pkt_dev->queue_map_max = value;
1542 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1543 return count;
1544 }
1545
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001546 if (!strcmp(name, "mpls")) {
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001547 unsigned n, cnt;
1548
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001549 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001550 if (len < 0)
1551 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001552 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001553 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001554 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001555 cnt += sprintf(pg_result + cnt,
1556 "%08x%s", ntohl(pkt_dev->labels[n]),
1557 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001558
1559 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1560 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1561 pkt_dev->svlan_id = 0xffff;
1562
1563 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001564 printk(KERN_DEBUG "pktgen: VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001565 }
1566 return count;
1567 }
1568
1569 if (!strcmp(name, "vlan_id")) {
1570 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001571 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001572 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001573
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001574 i += len;
1575 if (value <= 4095) {
1576 pkt_dev->vlan_id = value; /* turn on VLAN */
1577
1578 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001579 printk(KERN_DEBUG "pktgen: VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001580
1581 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001582 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001583
1584 pkt_dev->nr_labels = 0; /* turn off MPLS */
1585 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1586 } else {
1587 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1588 pkt_dev->svlan_id = 0xffff;
1589
1590 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001591 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001592 }
1593 return count;
1594 }
1595
1596 if (!strcmp(name, "vlan_p")) {
1597 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001598 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001599 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001600
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001601 i += len;
1602 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1603 pkt_dev->vlan_p = value;
1604 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1605 } else {
1606 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1607 }
1608 return count;
1609 }
1610
1611 if (!strcmp(name, "vlan_cfi")) {
1612 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001613 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001614 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001615
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001616 i += len;
1617 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1618 pkt_dev->vlan_cfi = value;
1619 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1620 } else {
1621 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1622 }
1623 return count;
1624 }
1625
1626 if (!strcmp(name, "svlan_id")) {
1627 len = num_arg(&user_buffer[i], 4, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001628 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001629 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001630
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001631 i += len;
1632 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1633 pkt_dev->svlan_id = value; /* turn on SVLAN */
1634
1635 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001636 printk(KERN_DEBUG "pktgen: SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001637
1638 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001639 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001640
1641 pkt_dev->nr_labels = 0; /* turn off MPLS */
1642 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1643 } else {
1644 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1645 pkt_dev->svlan_id = 0xffff;
1646
1647 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001648 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001649 }
1650 return count;
1651 }
1652
1653 if (!strcmp(name, "svlan_p")) {
1654 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001655 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001656 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001657
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001658 i += len;
1659 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1660 pkt_dev->svlan_p = value;
1661 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1662 } else {
1663 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1664 }
1665 return count;
1666 }
1667
1668 if (!strcmp(name, "svlan_cfi")) {
1669 len = num_arg(&user_buffer[i], 1, &value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001670 if (len < 0)
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001671 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001672
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001673 i += len;
1674 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1675 pkt_dev->svlan_cfi = value;
1676 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1677 } else {
1678 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1679 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001680 return count;
1681 }
1682
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001683 if (!strcmp(name, "tos")) {
1684 __u32 tmp_value = 0;
1685 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001686 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001687 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001688
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001689 i += len;
1690 if (len == 2) {
1691 pkt_dev->tos = tmp_value;
1692 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1693 } else {
1694 sprintf(pg_result, "ERROR: tos must be 00-ff");
1695 }
1696 return count;
1697 }
1698
1699 if (!strcmp(name, "traffic_class")) {
1700 __u32 tmp_value = 0;
1701 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001702 if (len < 0)
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001703 return len;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001704
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001705 i += len;
1706 if (len == 2) {
1707 pkt_dev->traffic_class = tmp_value;
1708 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1709 } else {
1710 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1711 }
1712 return count;
1713 }
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1716 return -EINVAL;
1717}
1718
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001719static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001721 return single_open(file, pktgen_if_show, PDE(inode)->data);
1722}
1723
Arjan van de Ven9a321442007-02-12 00:55:35 -08001724static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001725 .owner = THIS_MODULE,
1726 .open = pktgen_if_open,
1727 .read = seq_read,
1728 .llseek = seq_lseek,
1729 .write = pktgen_if_write,
1730 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001731};
1732
1733static int pktgen_thread_show(struct seq_file *seq, void *v)
1734{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001735 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001736 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001738 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Luiz Capitulino222f1802006-03-20 22:16:13 -08001740 seq_printf(seq, "Running: ");
1741
1742 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001743 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001744 if (pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001745 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Luiz Capitulino222f1802006-03-20 22:16:13 -08001747 seq_printf(seq, "\nStopped: ");
1748
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001749 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001750 if (!pkt_dev->running)
Eric Dumazet593f63b2009-11-23 01:44:37 +00001751 seq_printf(seq, "%s ", pkt_dev->odevname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001754 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001756 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Luiz Capitulino222f1802006-03-20 22:16:13 -08001758 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001763static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001764 const char __user * user_buffer,
1765 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Joe Perches8a994a72010-07-12 10:50:23 +00001767 struct seq_file *seq = file->private_data;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001768 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 int i = 0, max, len, ret;
1770 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001771 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001774 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return -EINVAL;
1776 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001779 len = count_trail_chars(&user_buffer[i], max);
1780 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001781 return len;
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 /* Read variable name */
1786
1787 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001788 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001789 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 memset(name, 0, sizeof(name));
1792 if (copy_from_user(name, &user_buffer[i], len))
1793 return -EFAULT;
1794 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001795
Luiz Capitulino222f1802006-03-20 22:16:13 -08001796 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001798 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001799 return len;
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 i += len;
1802
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001803 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001804 printk(KERN_DEBUG "pktgen: t=%s, count=%lu\n",
1805 name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Luiz Capitulino222f1802006-03-20 22:16:13 -08001807 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00001808 pr_err("ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 ret = -EINVAL;
1810 goto out;
1811 }
1812
1813 pg_result = &(t->result[0]);
1814
Luiz Capitulino222f1802006-03-20 22:16:13 -08001815 if (!strcmp(name, "add_device")) {
1816 char f[32];
1817 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001819 if (len < 0) {
1820 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 goto out;
1822 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001823 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return -EFAULT;
1825 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001826 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001827 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001828 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001829 ret = count;
1830 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 goto out;
1832 }
1833
Luiz Capitulino222f1802006-03-20 22:16:13 -08001834 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001835 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001836 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001837 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001838 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001840 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 goto out;
1842 }
1843
Luiz Capitulino222f1802006-03-20 22:16:13 -08001844 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001845 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001846 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 goto out;
1848 }
1849
1850 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001851out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 return ret;
1853}
1854
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001855static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001857 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Arjan van de Ven9a321442007-02-12 00:55:35 -08001860static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001861 .owner = THIS_MODULE,
1862 .open = pktgen_thread_open,
1863 .read = seq_read,
1864 .llseek = seq_lseek,
1865 .write = pktgen_thread_write,
1866 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001867};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001870static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
1872 struct pktgen_thread *t;
1873 struct pktgen_dev *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08001874 bool exact = (remove == FIND);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001876 list_for_each_entry(t, &pktgen_threads, th_list) {
Eric Dumazet3e984842009-11-24 14:50:53 -08001877 pkt_dev = pktgen_find_dev(t, ifname, exact);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001879 if (remove) {
1880 if_lock(t);
1881 pkt_dev->removal_mark = 1;
1882 t->control |= T_REMDEV;
1883 if_unlock(t);
1884 }
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 */
Stephen Hemminger39df2322007-03-04 16:11:51 -08001894static void pktgen_mark_device(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
1905 pkt_dev = __pktgen_NN_threads(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
Stephen Hemminger39df2322007-03-04 16:11:51 -08001926static void pktgen_change_name(struct net_device *dev)
1927{
1928 struct pktgen_thread *t;
1929
1930 list_for_each_entry(t, &pktgen_threads, th_list) {
1931 struct pktgen_dev *pkt_dev;
1932
1933 list_for_each_entry(pkt_dev, &t->if_list, list) {
1934 if (pkt_dev->odev != dev)
1935 continue;
1936
1937 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
1938
Alexey Dobriyan29753152009-08-28 23:34:43 -07001939 pkt_dev->entry = proc_create_data(dev->name, 0600,
1940 pg_proc_dir,
1941 &pktgen_if_fops,
1942 pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001943 if (!pkt_dev->entry)
Joe Perchesf9467ea2010-06-21 12:29:14 +00001944 pr_err("can't move proc entry for '%s'\n",
1945 dev->name);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001946 break;
1947 }
1948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949}
1950
Luiz Capitulino222f1802006-03-20 22:16:13 -08001951static int pktgen_device_event(struct notifier_block *unused,
1952 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Stephen Hemminger39df2322007-03-04 16:11:51 -08001954 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001956 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001957 return NOTIFY_DONE;
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 /* It is OK that we do not hold the group lock right now,
1960 * as we run under the RTNL lock.
1961 */
1962
1963 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001964 case NETDEV_CHANGENAME:
1965 pktgen_change_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001969 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 return NOTIFY_DONE;
1974}
1975
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001976static struct net_device *pktgen_dev_get_by_name(struct pktgen_dev *pkt_dev,
1977 const char *ifname)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001978{
1979 char b[IFNAMSIZ+5];
1980 int i = 0;
1981
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00001982 for (i = 0; ifname[i] != '@'; i++) {
1983 if (i == IFNAMSIZ)
Robert Olssone6fce5b2008-08-07 02:23:01 -07001984 break;
1985
1986 b[i] = ifname[i];
1987 }
1988 b[i] = 0;
1989
1990 return dev_get_by_name(&init_net, b);
1991}
1992
1993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994/* Associate pktgen_dev with a device. */
1995
Stephen Hemminger39df2322007-03-04 16:11:51 -08001996static int pktgen_setup_dev(struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001997{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001999 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (pkt_dev->odev) {
2003 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002004 pkt_dev->odev = NULL;
2005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Robert Olssone6fce5b2008-08-07 02:23:01 -07002007 odev = pktgen_dev_get_by_name(pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (!odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002009 pr_err("no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002010 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (odev->type != ARPHRD_ETHER) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002014 pr_err("not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002015 err = -EINVAL;
2016 } else if (!netif_running(odev)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002017 pr_err("device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002018 err = -ENETDOWN;
2019 } else {
2020 pkt_dev->odev = odev;
2021 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08002025 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
2028/* Read pkt_dev from the interface and set up internal pktgen_dev
2029 * structure to have the right information to create/send packets
2030 */
2031static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
2032{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002033 int ntxq;
2034
Luiz Capitulino222f1802006-03-20 22:16:13 -08002035 if (!pkt_dev->odev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002036 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08002037 sprintf(pkt_dev->result,
2038 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2039 return;
2040 }
2041
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002042 /* make sure that we don't pick a non-existing transmit queue */
2043 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002044
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002045 if (ntxq <= pkt_dev->queue_map_min) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002046 pr_warning("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2047 pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq,
2048 pkt_dev->odevname);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002049 pkt_dev->queue_map_min = ntxq - 1;
2050 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07002051 if (pkt_dev->queue_map_max >= ntxq) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002052 pr_warning("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2053 pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq,
2054 pkt_dev->odevname);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07002055 pkt_dev->queue_map_max = ntxq - 1;
2056 }
2057
Luiz Capitulino222f1802006-03-20 22:16:13 -08002058 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002060 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08002061 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Luiz Capitulino222f1802006-03-20 22:16:13 -08002063 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002064 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Luiz Capitulino222f1802006-03-20 22:16:13 -08002066 /* Set up pkt size */
2067 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2068
2069 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002071 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 * gets exported
2073 */
2074
2075#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08002076 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 struct inet6_dev *idev;
2078
Luiz Capitulino222f1802006-03-20 22:16:13 -08002079 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2080 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 set = 1;
2082 break;
2083 }
2084
Luiz Capitulino222f1802006-03-20 22:16:13 -08002085 if (!set) {
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 /*
2088 * Use linklevel address if unconfigured.
2089 *
2090 * use ipv6_get_lladdr if/when it's get exported
2091 */
2092
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002093 rcu_read_lock();
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002094 idev = __in6_dev_get(pkt_dev->odev);
2095 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 struct inet6_ifaddr *ifp;
2097
2098 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002099 for (ifp = idev->addr_list; ifp;
2100 ifp = ifp->if_next) {
Joe Perchesf64f9e72009-11-29 16:55:45 -08002101 if (ifp->scope == IFA_LINK &&
2102 !(ifp->flags & IFA_F_TENTATIVE)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002103 ipv6_addr_copy(&pkt_dev->
2104 cur_in6_saddr,
2105 &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 }
2116#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002117 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 pkt_dev->saddr_min = 0;
2119 pkt_dev->saddr_max = 0;
2120 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002121
2122 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002125 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 if (in_dev) {
2127 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002128 pkt_dev->saddr_min =
2129 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 pkt_dev->saddr_max = pkt_dev->saddr_min;
2131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002134 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2136 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2137 }
2138
2139 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2140 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2141 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002142 /* Initialize current values. */
2143 pkt_dev->cur_dst_mac_offset = 0;
2144 pkt_dev->cur_src_mac_offset = 0;
2145 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2146 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2147 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2148 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 pkt_dev->nflows = 0;
2150}
2151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002153static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2154{
Stephen Hemmingeref879792009-09-22 19:41:43 +00002155 ktime_t start_time, end_time;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002156 s64 remaining;
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002157 struct hrtimer_sleeper t;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002158
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002159 hrtimer_init_on_stack(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2160 hrtimer_set_expires(&t.timer, spin_until);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002161
Daniel Turull43d28b62010-06-09 22:49:57 +00002162 remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer));
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002163 if (remaining <= 0) {
2164 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002165 return;
Eric Dumazet417bc4b2009-10-01 09:29:45 -07002166 }
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002167
Stephen Hemmingeref879792009-09-22 19:41:43 +00002168 start_time = ktime_now();
Daniel Turull43d28b62010-06-09 22:49:57 +00002169 if (remaining < 100000)
2170 ndelay(remaining); /* really small just spin */
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002171 else {
2172 /* see do_nanosleep */
2173 hrtimer_init_sleeper(&t, current);
2174 do {
2175 set_current_state(TASK_INTERRUPTIBLE);
2176 hrtimer_start_expires(&t.timer, HRTIMER_MODE_ABS);
2177 if (!hrtimer_active(&t.timer))
2178 t.task = NULL;
2179
2180 if (likely(t.task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Stephen Hemminger2bc481c2009-08-28 23:41:29 -07002183 hrtimer_cancel(&t.timer);
2184 } while (t.task && pkt_dev->running && !signal_pending(current));
2185 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
Stephen Hemmingeref879792009-09-22 19:41:43 +00002187 end_time = ktime_now();
2188
2189 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time));
Daniel Turull07a0f0f2010-06-10 23:08:11 -07002190 pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002193static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2194{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002195 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002196 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2197 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2198 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2199}
2200
Stephen Hemminger648fda72009-08-27 13:55:07 +00002201static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002202{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002203 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002204}
2205
2206static inline int f_pick(struct pktgen_dev *pkt_dev)
2207{
2208 int flow = pkt_dev->curfl;
2209
2210 if (pkt_dev->flags & F_FLOW_SEQ) {
2211 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2212 /* reset time */
2213 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002214 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002215 pkt_dev->curfl += 1;
2216 if (pkt_dev->curfl >= pkt_dev->cflows)
2217 pkt_dev->curfl = 0; /*reset */
2218 }
2219 } else {
2220 flow = random32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002221 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002222
Robert Olsson1211a642008-08-05 18:44:26 -07002223 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002224 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002225 pkt_dev->flows[flow].flags = 0;
2226 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002227 }
2228
2229 return pkt_dev->curfl;
2230}
2231
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002232
2233#ifdef CONFIG_XFRM
2234/* If there was already an IPSEC SA, we keep it as is, else
2235 * we go look for it ...
2236*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002237#define DUMMY_MARK 0
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002238static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002239{
2240 struct xfrm_state *x = pkt_dev->flows[flow].x;
2241 if (!x) {
2242 /*slow path: we dont already have xfrm_state*/
Jamal Hadi Salimbd557752010-02-22 16:20:22 -08002243 x = xfrm_stateonly_find(&init_net, DUMMY_MARK,
Alexey Dobriyan5447c5e2008-11-25 17:31:51 -08002244 (xfrm_address_t *)&pkt_dev->cur_daddr,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002245 (xfrm_address_t *)&pkt_dev->cur_saddr,
2246 AF_INET,
2247 pkt_dev->ipsmode,
2248 pkt_dev->ipsproto, 0);
2249 if (x) {
2250 pkt_dev->flows[flow].x = x;
2251 set_pkt_overhead(pkt_dev);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002252 pkt_dev->pkt_overhead += x->props.header_len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002253 }
2254
2255 }
2256}
2257#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002258static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2259{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002260
2261 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2262 pkt_dev->cur_queue_map = smp_processor_id();
2263
Eric Dumazet896a7cf2009-10-02 20:24:59 +00002264 else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002265 __u16 t;
2266 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
2267 t = random32() %
2268 (pkt_dev->queue_map_max -
2269 pkt_dev->queue_map_min + 1)
2270 + pkt_dev->queue_map_min;
2271 } else {
2272 t = pkt_dev->cur_queue_map + 1;
2273 if (t > pkt_dev->queue_map_max)
2274 t = pkt_dev->queue_map_min;
2275 }
2276 pkt_dev->cur_queue_map = t;
2277 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002278 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 -07002279}
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281/* Increment/randomize headers according to flags and current values
2282 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2283 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002284static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2285{
2286 __u32 imn;
2287 __u32 imx;
2288 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002290 if (pkt_dev->cflows)
2291 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002294 if (pkt_dev->src_mac_count > 1) {
2295 __u32 mc;
2296 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Luiz Capitulino222f1802006-03-20 22:16:13 -08002298 if (pkt_dev->flags & F_MACSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002299 mc = random32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002300 else {
2301 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002302 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002303 pkt_dev->src_mac_count)
2304 pkt_dev->cur_src_mac_offset = 0;
2305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Luiz Capitulino222f1802006-03-20 22:16:13 -08002307 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2308 pkt_dev->hh[11] = tmp;
2309 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2310 pkt_dev->hh[10] = tmp;
2311 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2312 pkt_dev->hh[9] = tmp;
2313 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2314 pkt_dev->hh[8] = tmp;
2315 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2316 pkt_dev->hh[7] = tmp;
2317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Luiz Capitulino222f1802006-03-20 22:16:13 -08002319 /* Deal with Destination MAC */
2320 if (pkt_dev->dst_mac_count > 1) {
2321 __u32 mc;
2322 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Luiz Capitulino222f1802006-03-20 22:16:13 -08002324 if (pkt_dev->flags & F_MACDST_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002325 mc = random32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Luiz Capitulino222f1802006-03-20 22:16:13 -08002327 else {
2328 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002329 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002330 pkt_dev->dst_mac_count) {
2331 pkt_dev->cur_dst_mac_offset = 0;
2332 }
2333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Luiz Capitulino222f1802006-03-20 22:16:13 -08002335 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2336 pkt_dev->hh[5] = tmp;
2337 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2338 pkt_dev->hh[4] = tmp;
2339 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2340 pkt_dev->hh[3] = tmp;
2341 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2342 pkt_dev->hh[2] = tmp;
2343 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2344 pkt_dev->hh[1] = tmp;
2345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002347 if (pkt_dev->flags & F_MPLS_RND) {
2348 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002349 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002350 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2351 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002352 ((__force __be32)random32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002353 htonl(0x000fffff));
2354 }
2355
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002356 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002357 pkt_dev->vlan_id = random32() & (4096-1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002358 }
2359
2360 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002361 pkt_dev->svlan_id = random32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002362 }
2363
Luiz Capitulino222f1802006-03-20 22:16:13 -08002364 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2365 if (pkt_dev->flags & F_UDPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002366 pkt_dev->cur_udp_src = random32() %
2367 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2368 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Luiz Capitulino222f1802006-03-20 22:16:13 -08002370 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 pkt_dev->cur_udp_src++;
2372 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2373 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002374 }
2375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Luiz Capitulino222f1802006-03-20 22:16:13 -08002377 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2378 if (pkt_dev->flags & F_UDPDST_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002379 pkt_dev->cur_udp_dst = random32() %
2380 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2381 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002382 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002384 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002386 }
2387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 if (!(pkt_dev->flags & F_IPV6)) {
2390
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002391 imn = ntohl(pkt_dev->saddr_min);
2392 imx = ntohl(pkt_dev->saddr_max);
2393 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002395 if (pkt_dev->flags & F_IPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002396 t = random32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 else {
2398 t = ntohl(pkt_dev->cur_saddr);
2399 t++;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002400 if (t > imx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 t = imn;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 }
2404 pkt_dev->cur_saddr = htonl(t);
2405 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002406
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002407 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2409 } else {
Al Viro252e33462006-11-14 20:48:11 -08002410 imn = ntohl(pkt_dev->daddr_min);
2411 imx = ntohl(pkt_dev->daddr_max);
2412 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 __u32 t;
Al Viro252e33462006-11-14 20:48:11 -08002414 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 if (pkt_dev->flags & F_IPDST_RND) {
2416
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002417 t = random32() % (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002418 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Joe Perches21cf2252007-12-16 13:44:00 -08002420 while (ipv4_is_loopback(s) ||
2421 ipv4_is_multicast(s) ||
Jan Engelhardt1e637c72008-01-21 03:18:08 -08002422 ipv4_is_lbcast(s) ||
Joe Perches21cf2252007-12-16 13:44:00 -08002423 ipv4_is_zeronet(s) ||
2424 ipv4_is_local_multicast(s)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002425 t = random32() % (imx - imn) + imn;
Al Viro252e33462006-11-14 20:48:11 -08002426 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 }
Al Viro252e33462006-11-14 20:48:11 -08002428 pkt_dev->cur_daddr = s;
2429 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 t = ntohl(pkt_dev->cur_daddr);
2431 t++;
2432 if (t > imx) {
2433 t = imn;
2434 }
2435 pkt_dev->cur_daddr = htonl(t);
2436 }
2437 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002438 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002439 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002440 pkt_dev->flows[flow].cur_daddr =
2441 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002442#ifdef CONFIG_XFRM
2443 if (pkt_dev->flags & F_IPSEC_ON)
2444 get_ipsec_sa(pkt_dev, flow);
2445#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 pkt_dev->nflows++;
2447 }
2448 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002449 } else { /* IPV6 * */
2450
2451 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2452 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2453 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2454 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 else {
2456 int i;
2457
2458 /* Only random destinations yet */
2459
Luiz Capitulino222f1802006-03-20 22:16:13 -08002460 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002462 (((__force __be32)random32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002463 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2464 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 }
2468
Luiz Capitulino222f1802006-03-20 22:16:13 -08002469 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2470 __u32 t;
2471 if (pkt_dev->flags & F_TXSIZE_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002472 t = random32() %
2473 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2474 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002475 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002477 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002479 }
2480 pkt_dev->cur_pkt_size = t;
2481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002483 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 pkt_dev->flows[flow].count++;
2486}
2487
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002488
2489#ifdef CONFIG_XFRM
2490static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2491{
2492 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2493 int err = 0;
2494 struct iphdr *iph;
2495
2496 if (!x)
2497 return 0;
2498 /* XXX: we dont support tunnel mode for now until
2499 * we resolve the dst issue */
2500 if (x->props.mode != XFRM_MODE_TRANSPORT)
2501 return 0;
2502
2503 spin_lock(&x->lock);
2504 iph = ip_hdr(skb);
2505
Herbert Xu13996372007-10-17 21:35:51 -07002506 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002507 if (err)
2508 goto error;
2509 err = x->type->output(x, skb);
2510 if (err)
2511 goto error;
2512
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002513 x->curlft.bytes += skb->len;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002514 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002515error:
2516 spin_unlock(&x->lock);
2517 return err;
2518}
2519
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002520static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002521{
2522 if (pkt_dev->cflows) {
2523 /* let go of the SAs if we have them */
2524 int i = 0;
Florian Westphal5b5f7922009-05-21 15:07:12 -07002525 for (; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002526 struct xfrm_state *x = pkt_dev->flows[i].x;
2527 if (x) {
2528 xfrm_state_put(x);
2529 pkt_dev->flows[i].x = NULL;
2530 }
2531 }
2532 }
2533}
2534
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002535static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002536 struct sk_buff *skb, __be16 protocol)
2537{
2538 if (pkt_dev->flags & F_IPSEC_ON) {
2539 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2540 int nhead = 0;
2541 if (x) {
2542 int ret;
2543 __u8 *eth;
2544 nhead = x->props.header_len - skb_headroom(skb);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002545 if (nhead > 0) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002546 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2547 if (ret < 0) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002548 pr_err("Error expanding ipsec packet %d\n",
2549 ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002550 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002551 }
2552 }
2553
2554 /* ipsec is not expecting ll header */
2555 skb_pull(skb, ETH_HLEN);
2556 ret = pktgen_output_ipsec(skb, pkt_dev);
2557 if (ret) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00002558 pr_err("Error creating ipsec packet %d\n", ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002559 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002560 }
2561 /* restore ll */
2562 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2563 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002564 *(u16 *) &eth[12] = protocol;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002565 }
2566 }
2567 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002568err:
2569 kfree_skb(skb);
2570 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002571}
2572#endif
2573
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002574static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2575{
2576 unsigned i;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002577 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002578 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002579
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002580 mpls--;
2581 *mpls |= MPLS_STACK_BOTTOM;
2582}
2583
Al Viro0f37c602006-11-03 03:49:56 -08002584static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2585 unsigned int prio)
2586{
2587 return htons(id | (cfi << 12) | (prio << 13));
2588}
2589
Luiz Capitulino222f1802006-03-20 22:16:13 -08002590static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2591 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592{
2593 struct sk_buff *skb = NULL;
2594 __u8 *eth;
2595 struct udphdr *udph;
2596 int datalen, iplen;
2597 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002598 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002599 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002600 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002601 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2602 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2603 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2604 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002605 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002606
2607 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002608 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002609
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002610 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002611 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002612
Robert Olsson64053be2005-06-26 15:27:10 -07002613 /* Update any of the values, used when we're incrementing various
2614 * fields.
2615 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002616 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002617 mod_cur_headers(pkt_dev);
2618
David S. Miller7ac54592006-01-18 14:19:10 -08002619 datalen = (odev->hard_header_len + 16) & ~0xf;
Robert Olssone99b99b2010-03-18 22:44:30 +00002620
2621 if (pkt_dev->flags & F_NODE) {
2622 int node;
2623
2624 if (pkt_dev->node >= 0)
2625 node = pkt_dev->node;
2626 else
2627 node = numa_node_id();
2628
2629 skb = __alloc_skb(NET_SKB_PAD + pkt_dev->cur_pkt_size + 64
2630 + datalen + pkt_dev->pkt_overhead, GFP_NOWAIT, 0, node);
2631 if (likely(skb)) {
2632 skb_reserve(skb, NET_SKB_PAD);
2633 skb->dev = odev;
2634 }
2635 }
2636 else
2637 skb = __netdev_alloc_skb(odev,
2638 pkt_dev->cur_pkt_size + 64
2639 + datalen + pkt_dev->pkt_overhead, GFP_NOWAIT);
2640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 if (!skb) {
2642 sprintf(pkt_dev->result, "No memory");
2643 return NULL;
2644 }
2645
David S. Miller7ac54592006-01-18 14:19:10 -08002646 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
2648 /* Reserve for ethernet and IP header */
2649 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002650 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2651 if (pkt_dev->nr_labels)
2652 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002653
2654 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002655 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002656 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002657 *svlan_tci = build_tci(pkt_dev->svlan_id,
2658 pkt_dev->svlan_cfi,
2659 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002660 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002661 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002662 }
2663 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002664 *vlan_tci = build_tci(pkt_dev->vlan_id,
2665 pkt_dev->vlan_cfi,
2666 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002667 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002668 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002669 }
2670
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002671 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002672 skb->transport_header = skb->network_header + sizeof(struct iphdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002673 skb_put(skb, sizeof(struct iphdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002674 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002675 iph = ip_hdr(skb);
2676 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002679 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002681 /* Eth + IPh + UDPh + mpls */
2682 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002683 pkt_dev->pkt_overhead;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002684 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 udph->source = htons(pkt_dev->cur_udp_src);
2688 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002689 udph->len = htons(datalen + 8); /* DATA + udphdr */
2690 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
2692 iph->ihl = 5;
2693 iph->version = 4;
2694 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002695 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002696 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 iph->saddr = pkt_dev->cur_saddr;
2698 iph->daddr = pkt_dev->cur_daddr;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002699 iph->id = htons(pkt_dev->ip_id);
2700 pkt_dev->ip_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 iph->frag_off = 0;
2702 iplen = 20 + 8 + datalen;
2703 iph->tot_len = htons(iplen);
2704 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002705 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002706 skb->protocol = protocol;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002707 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002708 pkt_dev->pkt_overhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 skb->dev = odev;
2710 skb->pkt_type = PACKET_HOST;
2711
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002712 if (pkt_dev->nfrags <= 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002713 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002714 memset(pgh + 1, 0, datalen - sizeof(struct pktgen_hdr));
2715 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 int frags = pkt_dev->nfrags;
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002717 int i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
Luiz Capitulino222f1802006-03-20 22:16:13 -08002719 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 if (frags > MAX_SKB_FRAGS)
2722 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002723 if (datalen > frags * PAGE_SIZE) {
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002724 len = datalen - frags * PAGE_SIZE;
2725 memset(skb_put(skb, len), 0, len);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002726 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728
2729 i = 0;
2730 while (datalen > 0) {
Eric Dumazet66ed1e52009-10-24 06:55:20 -07002731 struct page *page = alloc_pages(GFP_KERNEL | __GFP_ZERO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 skb_shinfo(skb)->frags[i].page = page;
2733 skb_shinfo(skb)->frags[i].page_offset = 0;
2734 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002735 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 datalen -= skb_shinfo(skb)->frags[i].size;
2737 skb->len += skb_shinfo(skb)->frags[i].size;
2738 skb->data_len += skb_shinfo(skb)->frags[i].size;
2739 i++;
2740 skb_shinfo(skb)->nr_frags = i;
2741 }
2742
2743 while (i < frags) {
2744 int rem;
2745
2746 if (i == 0)
2747 break;
2748
2749 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2750 if (rem == 0)
2751 break;
2752
2753 skb_shinfo(skb)->frags[i - 1].size -= rem;
2754
Luiz Capitulino222f1802006-03-20 22:16:13 -08002755 skb_shinfo(skb)->frags[i] =
2756 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002758 skb_shinfo(skb)->frags[i].page =
2759 skb_shinfo(skb)->frags[i - 1].page;
2760 skb_shinfo(skb)->frags[i].page_offset +=
2761 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 skb_shinfo(skb)->frags[i].size = rem;
2763 i++;
2764 skb_shinfo(skb)->nr_frags = i;
2765 }
2766 }
2767
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00002768 /* Stamp the time, and sequence number,
2769 * convert them to network byte order
2770 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002771 if (pgh) {
2772 struct timeval timestamp;
2773
2774 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2775 pgh->seq_num = htonl(pkt_dev->seq_num);
2776
2777 do_gettimeofday(&timestamp);
2778 pgh->tv_sec = htonl(timestamp.tv_sec);
2779 pgh->tv_usec = htonl(timestamp.tv_usec);
2780 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002781
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002782#ifdef CONFIG_XFRM
2783 if (!process_ipsec(pkt_dev, skb, protocol))
2784 return NULL;
2785#endif
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 return skb;
2788}
2789
2790/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002791 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2793 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002794 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 * Should be candidate for net/ipv4/utils.c
2796 * --ro
2797 */
2798
Luiz Capitulino222f1802006-03-20 22:16:13 -08002799static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
2801 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002802 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 unsigned long u;
2804 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002805 unsigned int prefixlen = 0;
2806 unsigned int suffixlen = 0;
Al Viro252e33462006-11-14 20:48:11 -08002807 __be32 tmp;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002808 char *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Luiz Capitulino222f1802006-03-20 22:16:13 -08002810 for (i = 0; i < 16; i++)
2811 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813 for (;;) {
2814 if (*s == ':') {
2815 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002816 if (s[1] == ':') { /* Found "::", skip to part 2 */
2817 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 len++;
2819 break;
2820 }
2821 s++;
2822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002824 u = simple_strtoul(s, &pos, 16);
2825 i = pos - s;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002826 if (!i)
2827 return 0;
2828 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
2830 /* the last 4 bytes may be written as IPv4 address */
2831
2832 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002833 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2834 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 }
2836 ip[prefixlen++] = (u >> 8);
2837 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002838 s += i;
2839 len += i;
2840 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return len;
2842 }
2843
2844/* part 2, after "::" */
2845 for (;;) {
2846 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002847 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 break;
2849 s++;
2850 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002851 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 break;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002853
2854 u = simple_strtol(s, &pos, 16);
2855 i = pos - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002857 if (*s)
2858 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 break;
2860 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002861 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002863 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2864 sizeof(tmp));
2865 suffixlen += 4;
2866 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 break;
2868 }
2869 suffix[suffixlen++] = (u >> 8);
2870 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002871 s += i;
2872 len += i;
2873 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 break;
2875 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002876 for (i = 0; i < suffixlen; i++)
2877 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 return len;
2879}
2880
Luiz Capitulino222f1802006-03-20 22:16:13 -08002881static char tohex(char hexdigit)
2882{
2883 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884}
2885
Luiz Capitulino222f1802006-03-20 22:16:13 -08002886static int fmt_xlong(char *s, unsigned int i)
2887{
2888 char *bak = s;
2889 *s = tohex((i >> 12) & 0xf);
2890 if (s != bak || *s != '0')
2891 ++s;
2892 *s = tohex((i >> 8) & 0xf);
2893 if (s != bak || *s != '0')
2894 ++s;
2895 *s = tohex((i >> 4) & 0xf);
2896 if (s != bak || *s != '0')
2897 ++s;
2898 *s = tohex(i & 0xf);
2899 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900}
2901
Luiz Capitulino222f1802006-03-20 22:16:13 -08002902static unsigned int fmt_ip6(char *s, const char ip[16])
2903{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 unsigned int len;
2905 unsigned int i;
2906 unsigned int temp;
2907 unsigned int compressing;
2908 int j;
2909
Luiz Capitulino222f1802006-03-20 22:16:13 -08002910 len = 0;
2911 compressing = 0;
2912 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002915 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2916 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2917 temp = strlen(s);
2918 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 }
2920#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002921 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2922 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 if (temp == 0) {
2924 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002925 compressing = 1;
2926 if (j == 0) {
2927 *s++ = ':';
2928 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 }
2930 }
2931 } else {
2932 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002933 compressing = 0;
2934 *s++ = ':';
2935 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002937 i = fmt_xlong(s, temp);
2938 len += i;
2939 s += i;
2940 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 *s++ = ':';
2942 ++len;
2943 }
2944 }
2945 }
2946 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002947 *s++ = ':';
2948 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002950 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 return len;
2952}
2953
Luiz Capitulino222f1802006-03-20 22:16:13 -08002954static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2955 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956{
2957 struct sk_buff *skb = NULL;
2958 __u8 *eth;
2959 struct udphdr *udph;
2960 int datalen;
2961 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002962 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002963 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002964 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002965 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2966 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2967 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2968 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002969 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002970
2971 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002972 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002973
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002974 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002975 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002976
Robert Olsson64053be2005-06-26 15:27:10 -07002977 /* Update any of the values, used when we're incrementing various
2978 * fields.
2979 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002980 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002981 mod_cur_headers(pkt_dev);
2982
Stephen Hemmingere4707572009-08-27 13:55:13 +00002983 skb = __netdev_alloc_skb(odev,
2984 pkt_dev->cur_pkt_size + 64
2985 + 16 + pkt_dev->pkt_overhead, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 if (!skb) {
2987 sprintf(pkt_dev->result, "No memory");
2988 return NULL;
2989 }
2990
2991 skb_reserve(skb, 16);
2992
2993 /* Reserve for ethernet and IP header */
2994 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002995 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2996 if (pkt_dev->nr_labels)
2997 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002998
2999 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07003000 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003001 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08003002 *svlan_tci = build_tci(pkt_dev->svlan_id,
3003 pkt_dev->svlan_cfi,
3004 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003005 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003006 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003007 }
3008 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08003009 *vlan_tci = build_tci(pkt_dev->vlan_id,
3010 pkt_dev->vlan_cfi,
3011 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003012 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003013 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003014 }
3015
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003016 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07003017 skb->transport_header = skb->network_header + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03003018 skb_put(skb, sizeof(struct ipv6hdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003019 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03003020 iph = ipv6_hdr(skb);
3021 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 memcpy(eth, pkt_dev->hh, 12);
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003024 *(__be16 *) &eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07003025
Steven Whitehouseca6549a2006-03-23 01:10:26 -08003026 /* Eth + IPh + UDPh + mpls */
3027 datalen = pkt_dev->cur_pkt_size - 14 -
3028 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003029 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Luiz Capitulino222f1802006-03-20 22:16:13 -08003031 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 datalen = sizeof(struct pktgen_hdr);
3033 if (net_ratelimit())
Joe Perchesf9467ea2010-06-21 12:29:14 +00003034 pr_info("increased datalen to %d\n", datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 }
3036
3037 udph->source = htons(pkt_dev->cur_udp_src);
3038 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003039 udph->len = htons(datalen + sizeof(struct udphdr));
3040 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08003042 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003044 if (pkt_dev->traffic_class) {
3045 /* Version + traffic class + flow (0) */
Al Viro252e33462006-11-14 20:48:11 -08003046 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07003047 }
3048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 iph->hop_limit = 32;
3050
3051 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
3052 iph->nexthdr = IPPROTO_UDP;
3053
3054 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
3055 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
3056
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07003057 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003058 pkt_dev->pkt_overhead);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08003059 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 skb->dev = odev;
3061 skb->pkt_type = PACKET_HOST;
3062
Luiz Capitulino222f1802006-03-20 22:16:13 -08003063 if (pkt_dev->nfrags <= 0)
3064 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 else {
3066 int frags = pkt_dev->nfrags;
3067 int i;
3068
Luiz Capitulino222f1802006-03-20 22:16:13 -08003069 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
3070
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 if (frags > MAX_SKB_FRAGS)
3072 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003073 if (datalen > frags * PAGE_SIZE) {
3074 skb_put(skb, datalen - frags * PAGE_SIZE);
3075 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 }
3077
3078 i = 0;
3079 while (datalen > 0) {
3080 struct page *page = alloc_pages(GFP_KERNEL, 0);
3081 skb_shinfo(skb)->frags[i].page = page;
3082 skb_shinfo(skb)->frags[i].page_offset = 0;
3083 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08003084 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 datalen -= skb_shinfo(skb)->frags[i].size;
3086 skb->len += skb_shinfo(skb)->frags[i].size;
3087 skb->data_len += skb_shinfo(skb)->frags[i].size;
3088 i++;
3089 skb_shinfo(skb)->nr_frags = i;
3090 }
3091
3092 while (i < frags) {
3093 int rem;
3094
3095 if (i == 0)
3096 break;
3097
3098 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
3099 if (rem == 0)
3100 break;
3101
3102 skb_shinfo(skb)->frags[i - 1].size -= rem;
3103
Luiz Capitulino222f1802006-03-20 22:16:13 -08003104 skb_shinfo(skb)->frags[i] =
3105 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003107 skb_shinfo(skb)->frags[i].page =
3108 skb_shinfo(skb)->frags[i - 1].page;
3109 skb_shinfo(skb)->frags[i].page_offset +=
3110 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 skb_shinfo(skb)->frags[i].size = rem;
3112 i++;
3113 skb_shinfo(skb)->nr_frags = i;
3114 }
3115 }
3116
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003117 /* Stamp the time, and sequence number,
3118 * convert them to network byte order
3119 * should we update cloned packets too ?
3120 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003121 if (pgh) {
3122 struct timeval timestamp;
3123
3124 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
3125 pgh->seq_num = htonl(pkt_dev->seq_num);
3126
3127 do_gettimeofday(&timestamp);
3128 pgh->tv_sec = htonl(timestamp.tv_sec);
3129 pgh->tv_usec = htonl(timestamp.tv_usec);
3130 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003131 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 return skb;
3134}
3135
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003136static struct sk_buff *fill_packet(struct net_device *odev,
3137 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003139 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 return fill_packet_ipv6(odev, pkt_dev);
3141 else
3142 return fill_packet_ipv4(odev, pkt_dev);
3143}
3144
Luiz Capitulino222f1802006-03-20 22:16:13 -08003145static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003147 pkt_dev->seq_num = 1;
3148 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003150 pkt_dev->tx_bytes = 0;
3151 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152}
3153
3154/* Set up structure for sending pkts, clear counters */
3155
3156static void pktgen_run(struct pktgen_thread *t)
3157{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003158 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 int started = 0;
3160
Joe Perchesf9467ea2010-06-21 12:29:14 +00003161 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
3163 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003164 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 /*
3167 * setup odev and create initial packet.
3168 */
3169 pktgen_setup_inject(pkt_dev);
3170
Luiz Capitulino222f1802006-03-20 22:16:13 -08003171 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003173 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003175 pkt_dev->started_at =
3176 pkt_dev->next_tx = ktime_now();
3177
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003178 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003179
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 strcpy(pkt_dev->result, "Starting");
3181 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003182 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 strcpy(pkt_dev->result, "Error starting");
3184 }
3185 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003186 if (started)
3187 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
3189
3190static void pktgen_stop_all_threads_ifs(void)
3191{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003192 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Joe Perchesf9467ea2010-06-21 12:29:14 +00003194 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003196 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003197
3198 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003199 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003200
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003201 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202}
3203
Stephen Hemminger648fda72009-08-27 13:55:07 +00003204static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003206 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003208 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00003209 if (pkt_dev->running)
3210 return 1;
3211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212}
3213
Luiz Capitulino222f1802006-03-20 22:16:13 -08003214static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003216 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Luiz Capitulino222f1802006-03-20 22:16:13 -08003218 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Luiz Capitulino222f1802006-03-20 22:16:13 -08003220 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Luiz Capitulino222f1802006-03-20 22:16:13 -08003222 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Luiz Capitulino222f1802006-03-20 22:16:13 -08003224 if (signal_pending(current))
3225 goto signal;
3226 if_lock(t);
3227 }
3228 if_unlock(t);
3229 return 1;
3230signal:
3231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232}
3233
3234static int pktgen_wait_all_threads_run(void)
3235{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003236 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003238
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003239 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003240
3241 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003243 if (sig == 0)
3244 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003246
3247 if (sig == 0)
3248 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003250
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003251 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 return sig;
3253}
3254
3255static void pktgen_run_all_threads(void)
3256{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003257 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Joe Perchesf9467ea2010-06-21 12:29:14 +00003259 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003261 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003263 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003265
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003266 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003268 /* Propagate thread->control */
3269 schedule_timeout_interruptible(msecs_to_jiffies(125));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 pktgen_wait_all_threads_run();
3272}
3273
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003274static void pktgen_reset_all_threads(void)
3275{
3276 struct pktgen_thread *t;
3277
Joe Perchesf9467ea2010-06-21 12:29:14 +00003278 func_enter();
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003279
3280 mutex_lock(&pktgen_thread_lock);
3281
3282 list_for_each_entry(t, &pktgen_threads, th_list)
3283 t->control |= (T_REMDEVALL);
3284
3285 mutex_unlock(&pktgen_thread_lock);
3286
Stephen Hemminger63adc6f2009-08-27 13:55:19 +00003287 /* Propagate thread->control */
3288 schedule_timeout_interruptible(msecs_to_jiffies(125));
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003289
3290 pktgen_wait_all_threads_run();
3291}
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3294{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003295 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003296 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003297 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3298 pkt_dev->started_at);
3299 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003301 p += sprintf(p, "OK: %llu(c%llu+d%llu) nsec, %llu (%dbyte,%dfrags)\n",
3302 (unsigned long long)ktime_to_us(elapsed),
3303 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3304 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003305 (unsigned long long)pkt_dev->sofar,
3306 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003308 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3309 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
Luiz Capitulino222f1802006-03-20 22:16:13 -08003311 bps = pps * 8 * pkt_dev->cur_pkt_size;
3312
3313 mbps = bps;
3314 do_div(mbps, 1000000);
3315 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3316 (unsigned long long)pps,
3317 (unsigned long long)mbps,
3318 (unsigned long long)bps,
3319 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
3322/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003323static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003325 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003326
Luiz Capitulino222f1802006-03-20 22:16:13 -08003327 if (!pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003328 pr_warning("interface: %s is already stopped\n",
3329 pkt_dev->odevname);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003330 return -EINVAL;
3331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003333 kfree_skb(pkt_dev->skb);
3334 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003335 pkt_dev->stopped_at = ktime_now();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003336 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003338 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Luiz Capitulino222f1802006-03-20 22:16:13 -08003340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341}
3342
Luiz Capitulino222f1802006-03-20 22:16:13 -08003343static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003345 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 if_lock(t);
3348
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003349 list_for_each_entry(pkt_dev, &t->if_list, list) {
3350 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003351 continue;
3352 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003353 best = pkt_dev;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003354 else if (ktime_lt(pkt_dev->next_tx, best->next_tx))
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003355 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 }
3357 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003358 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359}
3360
Luiz Capitulino222f1802006-03-20 22:16:13 -08003361static void pktgen_stop(struct pktgen_thread *t)
3362{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003363 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Joe Perchesf9467ea2010-06-21 12:29:14 +00003365 func_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Luiz Capitulino222f1802006-03-20 22:16:13 -08003367 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003369 list_for_each_entry(pkt_dev, &t->if_list, list) {
3370 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Luiz Capitulino222f1802006-03-20 22:16:13 -08003373 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374}
3375
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003376/*
3377 * one of our devices needs to be removed - find it
3378 * and remove it
3379 */
3380static void pktgen_rem_one_if(struct pktgen_thread *t)
3381{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003382 struct list_head *q, *n;
3383 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003384
Joe Perchesf9467ea2010-06-21 12:29:14 +00003385 func_enter();
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003386
3387 if_lock(t);
3388
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003389 list_for_each_safe(q, n, &t->if_list) {
3390 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003391
Luiz Capitulino222f1802006-03-20 22:16:13 -08003392 if (!cur->removal_mark)
3393 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003394
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003395 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003396 cur->skb = NULL;
3397
3398 pktgen_remove_device(t, cur);
3399
3400 break;
3401 }
3402
3403 if_unlock(t);
3404}
3405
Luiz Capitulino222f1802006-03-20 22:16:13 -08003406static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003408 struct list_head *q, *n;
3409 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003410
Joe Perchesf9467ea2010-06-21 12:29:14 +00003411 func_enter();
3412
Luiz Capitulino222f1802006-03-20 22:16:13 -08003413 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003414
Luiz Capitulino222f1802006-03-20 22:16:13 -08003415 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003417 list_for_each_safe(q, n, &t->if_list) {
3418 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003419
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003420 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003421 cur->skb = NULL;
3422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 pktgen_remove_device(t, cur);
3424 }
3425
Luiz Capitulino222f1802006-03-20 22:16:13 -08003426 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427}
3428
Luiz Capitulino222f1802006-03-20 22:16:13 -08003429static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003431 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
David S. Milleree74baa2007-01-01 20:51:53 -08003433 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003435 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003437 list_del(&t->th_list);
3438
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003439 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440}
3441
Stephen Hemmingeref879792009-09-22 19:41:43 +00003442static void pktgen_resched(struct pktgen_dev *pkt_dev)
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003443{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003444 ktime_t idle_start = ktime_now();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003445 schedule();
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003446 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003447}
3448
Stephen Hemmingeref879792009-09-22 19:41:43 +00003449static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev)
3450{
3451 ktime_t idle_start = ktime_now();
3452
3453 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3454 if (signal_pending(current))
3455 break;
3456
3457 if (need_resched())
3458 pktgen_resched(pkt_dev);
3459 else
3460 cpu_relax();
3461 }
3462 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
3463}
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003464
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003465static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466{
Stephen Hemminger00829822008-11-20 20:14:53 -08003467 struct net_device *odev = pkt_dev->odev;
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00003468 netdev_tx_t (*xmit)(struct sk_buff *, struct net_device *)
Stephen Hemminger00829822008-11-20 20:14:53 -08003469 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003470 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003471 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 int ret;
3473
Stephen Hemmingeref879792009-09-22 19:41:43 +00003474 /* If device is offline, then don't send */
3475 if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) {
3476 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003477 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003479
Stephen Hemmingeref879792009-09-22 19:41:43 +00003480 /* This is max DELAY, this has special meaning of
3481 * "never transmit"
3482 */
3483 if (unlikely(pkt_dev->delay == ULLONG_MAX)) {
3484 pkt_dev->next_tx = ktime_add_ns(ktime_now(), ULONG_MAX);
3485 return;
3486 }
3487
3488 /* If no skb or clone count exhausted then get new one */
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003489 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3490 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3491 /* build a new pkt */
3492 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003493
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003494 pkt_dev->skb = fill_packet(odev, pkt_dev);
3495 if (pkt_dev->skb == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003496 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003497 schedule();
3498 pkt_dev->clone_count--; /* back out increment, OOM */
3499 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 }
Eric Dumazetbaac8562009-11-05 21:04:32 -08003501 pkt_dev->last_pkt_size = pkt_dev->skb->len;
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003502 pkt_dev->allocated_skbs++;
3503 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003505
Stephen Hemmingeref879792009-09-22 19:41:43 +00003506 if (pkt_dev->delay && pkt_dev->last_ok)
3507 spin(pkt_dev, pkt_dev->next_tx);
3508
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003509 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3510 txq = netdev_get_tx_queue(odev, queue_map);
3511
3512 __netif_tx_lock_bh(txq);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003513
Eric Dumazet0835acf2009-09-30 13:03:33 +00003514 if (unlikely(netif_tx_queue_stopped(txq) || netif_tx_queue_frozen(txq))) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003515 ret = NETDEV_TX_BUSY;
Eric Dumazet0835acf2009-09-30 13:03:33 +00003516 pkt_dev->last_ok = 0;
3517 goto unlock;
3518 }
3519 atomic_inc(&(pkt_dev->skb->users));
3520 ret = (*xmit)(pkt_dev->skb, odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Stephen Hemmingeref879792009-09-22 19:41:43 +00003522 switch (ret) {
3523 case NETDEV_TX_OK:
3524 txq_trans_update(txq);
3525 pkt_dev->last_ok = 1;
3526 pkt_dev->sofar++;
3527 pkt_dev->seq_num++;
Eric Dumazetbaac8562009-11-05 21:04:32 -08003528 pkt_dev->tx_bytes += pkt_dev->last_pkt_size;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003529 break;
John Fastabendf466dba2009-12-23 22:02:57 -08003530 case NET_XMIT_DROP:
3531 case NET_XMIT_CN:
3532 case NET_XMIT_POLICED:
3533 /* skb has been consumed */
3534 pkt_dev->errors++;
3535 break;
Stephen Hemmingeref879792009-09-22 19:41:43 +00003536 default: /* Drivers are not supposed to return other values! */
3537 if (net_ratelimit())
3538 pr_info("pktgen: %s xmit error: %d\n",
Eric Dumazet593f63b2009-11-23 01:44:37 +00003539 pkt_dev->odevname, ret);
Stephen Hemmingeref879792009-09-22 19:41:43 +00003540 pkt_dev->errors++;
3541 /* fallthru */
3542 case NETDEV_TX_LOCKED:
3543 case NETDEV_TX_BUSY:
3544 /* Retry it next time */
3545 atomic_dec(&(pkt_dev->skb->users));
3546 pkt_dev->last_ok = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003547 }
Eric Dumazet0835acf2009-09-30 13:03:33 +00003548unlock:
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003549 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003550
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 /* If pkt_dev->count is zero, then run forever */
3552 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
Stephen Hemmingeref879792009-09-22 19:41:43 +00003553 pktgen_wait_for_skb(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003554
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 /* Done with this */
3556 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003557 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003558}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003560/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 * Main loop of the thread goes here
3562 */
3563
David S. Milleree74baa2007-01-01 20:51:53 -08003564static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565{
3566 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003567 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003568 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
David S. Milleree74baa2007-01-01 20:51:53 -08003571 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003574 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575
Joe Perchesf9467ea2010-06-21 12:29:14 +00003576 pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
David S. Milleree74baa2007-01-01 20:51:53 -08003578 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003579
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003580 set_freezable();
3581
David S. Milleree74baa2007-01-01 20:51:53 -08003582 while (!kthread_should_stop()) {
3583 pkt_dev = next_to_run(t);
3584
Stephen Hemmingeref879792009-09-22 19:41:43 +00003585 if (unlikely(!pkt_dev && t->control == 0)) {
3586 wait_event_interruptible_timeout(t->queue,
3587 t->control != 0,
3588 HZ/10);
Rafael J. Wysocki1b3f7202010-02-04 14:00:41 -08003589 try_to_freeze();
Stephen Hemmingeref879792009-09-22 19:41:43 +00003590 continue;
David S. Milleree74baa2007-01-01 20:51:53 -08003591 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 __set_current_state(TASK_RUNNING);
3594
Stephen Hemmingeref879792009-09-22 19:41:43 +00003595 if (likely(pkt_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 pktgen_xmit(pkt_dev);
3597
Stephen Hemmingeref879792009-09-22 19:41:43 +00003598 if (need_resched())
3599 pktgen_resched(pkt_dev);
3600 else
3601 cpu_relax();
3602 }
3603
Luiz Capitulino222f1802006-03-20 22:16:13 -08003604 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 pktgen_stop(t);
3606 t->control &= ~(T_STOP);
3607 }
3608
Luiz Capitulino222f1802006-03-20 22:16:13 -08003609 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 pktgen_run(t);
3611 t->control &= ~(T_RUN);
3612 }
3613
Luiz Capitulino222f1802006-03-20 22:16:13 -08003614 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003616 t->control &= ~(T_REMDEVALL);
3617 }
3618
Luiz Capitulino222f1802006-03-20 22:16:13 -08003619 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003620 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 t->control &= ~(T_REMDEV);
3622 }
3623
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003624 try_to_freeze();
3625
David S. Milleree74baa2007-01-01 20:51:53 -08003626 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Joe Perchesf9467ea2010-06-21 12:29:14 +00003629 pr_debug("%s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003630 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Joe Perchesf9467ea2010-06-21 12:29:14 +00003632 pr_debug("%s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003633 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634
Joe Perchesf9467ea2010-06-21 12:29:14 +00003635 pr_debug("%s removing thread\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003636 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003637
David S. Milleree74baa2007-01-01 20:51:53 -08003638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639}
3640
Luiz Capitulino222f1802006-03-20 22:16:13 -08003641static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
Eric Dumazet3e984842009-11-24 14:50:53 -08003642 const char *ifname, bool exact)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003644 struct pktgen_dev *p, *pkt_dev = NULL;
Eric Dumazet3e984842009-11-24 14:50:53 -08003645 size_t len = strlen(ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
Eric Dumazet3e984842009-11-24 14:50:53 -08003647 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003648 list_for_each_entry(p, &t->if_list, list)
Eric Dumazet3e984842009-11-24 14:50:53 -08003649 if (strncmp(p->odevname, ifname, len) == 0) {
3650 if (p->odevname[len]) {
3651 if (exact || p->odevname[len] != '@')
3652 continue;
3653 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003654 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003655 break;
3656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
Luiz Capitulino222f1802006-03-20 22:16:13 -08003658 if_unlock(t);
Joe Perchesf9467ea2010-06-21 12:29:14 +00003659 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003660 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661}
3662
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003663/*
3664 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 */
3666
Luiz Capitulino222f1802006-03-20 22:16:13 -08003667static int add_dev_to_thread(struct pktgen_thread *t,
3668 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669{
3670 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Luiz Capitulino222f1802006-03-20 22:16:13 -08003672 if_lock(t);
3673
3674 if (pkt_dev->pg_thread) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003675 pr_err("ERROR: already assigned to a thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003676 rv = -EBUSY;
3677 goto out;
3678 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003679
3680 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003681 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 pkt_dev->running = 0;
3683
Luiz Capitulino222f1802006-03-20 22:16:13 -08003684out:
3685 if_unlock(t);
3686 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687}
3688
3689/* Called under thread lock */
3690
Luiz Capitulino222f1802006-03-20 22:16:13 -08003691static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003693 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003694 int err;
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003695 int node = cpu_to_node(t->cpu);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 /* We don't allow a device to be on several threads */
3698
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003699 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3700 if (pkt_dev) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003701 pr_err("ERROR: interface already used\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003702 return -EBUSY;
3703 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003704
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003705 pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003706 if (!pkt_dev)
3707 return -ENOMEM;
3708
Eric Dumazet593f63b2009-11-23 01:44:37 +00003709 strcpy(pkt_dev->odevname, ifname);
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003710 pkt_dev->flows = vmalloc_node(MAX_CFLOWS * sizeof(struct flow_state),
3711 node);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003712 if (pkt_dev->flows == NULL) {
3713 kfree(pkt_dev);
3714 return -ENOMEM;
3715 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003716 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003717
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003718 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003719 pkt_dev->min_pkt_size = ETH_ZLEN;
3720 pkt_dev->max_pkt_size = ETH_ZLEN;
3721 pkt_dev->nfrags = 0;
3722 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003723 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003724 pkt_dev->count = pg_count_d;
3725 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003726 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003727 pkt_dev->udp_src_max = 9;
3728 pkt_dev->udp_dst_min = 9;
3729 pkt_dev->udp_dst_max = 9;
3730
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003731 pkt_dev->vlan_p = 0;
3732 pkt_dev->vlan_cfi = 0;
3733 pkt_dev->vlan_id = 0xffff;
3734 pkt_dev->svlan_p = 0;
3735 pkt_dev->svlan_cfi = 0;
3736 pkt_dev->svlan_id = 0xffff;
Robert Olssone99b99b2010-03-18 22:44:30 +00003737 pkt_dev->node = -1;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003738
Stephen Hemminger39df2322007-03-04 16:11:51 -08003739 err = pktgen_setup_dev(pkt_dev, ifname);
3740 if (err)
3741 goto out1;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003742
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003743 pkt_dev->entry = proc_create_data(ifname, 0600, pg_proc_dir,
3744 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003745 if (!pkt_dev->entry) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003746 pr_err("cannot create %s/%s procfs entry\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003747 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003748 err = -EINVAL;
3749 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003750 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003751#ifdef CONFIG_XFRM
3752 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3753 pkt_dev->ipsproto = IPPROTO_ESP;
3754#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003755
3756 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003757out2:
3758 dev_put(pkt_dev->odev);
3759out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003760#ifdef CONFIG_XFRM
3761 free_SAs(pkt_dev);
3762#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003763 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003764 kfree(pkt_dev);
3765 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766}
3767
David S. Milleree74baa2007-01-01 20:51:53 -08003768static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003770 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003771 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003772 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Eric Dumazet3291b9d2009-11-29 00:44:33 -08003774 t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL,
3775 cpu_to_node(cpu));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003776 if (!t) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003777 pr_err("ERROR: out of memory, can't create new thread\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003778 return -ENOMEM;
3779 }
3780
Luiz Capitulino222f1802006-03-20 22:16:13 -08003781 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003783
David S. Milleree74baa2007-01-01 20:51:53 -08003784 INIT_LIST_HEAD(&t->if_list);
3785
3786 list_add_tail(&t->th_list, &pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003787 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003788
3789 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3790 if (IS_ERR(p)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003791 pr_err("kernel_thread() failed for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003792 list_del(&t->th_list);
3793 kfree(t);
3794 return PTR_ERR(p);
3795 }
3796 kthread_bind(p, cpu);
3797 t->tsk = p;
3798
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003799 pe = proc_create_data(t->tsk->comm, 0600, pg_proc_dir,
3800 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003801 if (!pe) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003802 pr_err("cannot create %s/%s procfs entry\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003803 PG_PROC_DIR, t->tsk->comm);
3804 kthread_stop(p);
3805 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003806 kfree(t);
3807 return -EINVAL;
3808 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003809
David S. Milleree74baa2007-01-01 20:51:53 -08003810 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003811 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
3813 return 0;
3814}
3815
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003816/*
3817 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003819static void _rem_dev_from_if_list(struct pktgen_thread *t,
3820 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003822 struct list_head *q, *n;
3823 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003825 list_for_each_safe(q, n, &t->if_list) {
3826 p = list_entry(q, struct pktgen_dev, list);
3827 if (p == pkt_dev)
3828 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 }
3830}
3831
Luiz Capitulino222f1802006-03-20 22:16:13 -08003832static int pktgen_remove_device(struct pktgen_thread *t,
3833 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834{
3835
Joe Perchesf9467ea2010-06-21 12:29:14 +00003836 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
Luiz Capitulino222f1802006-03-20 22:16:13 -08003838 if (pkt_dev->running) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003839 pr_warning("WARNING: trying to remove a running interface, stopping it now\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003840 pktgen_stop_device(pkt_dev);
3841 }
3842
3843 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 if (pkt_dev->odev) {
3846 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003847 pkt_dev->odev = NULL;
3848 }
3849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 /* And update the thread if_list */
3851
3852 _rem_dev_from_if_list(t, pkt_dev);
3853
Stephen Hemminger39df2322007-03-04 16:11:51 -08003854 if (pkt_dev->entry)
3855 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003857#ifdef CONFIG_XFRM
3858 free_SAs(pkt_dev);
3859#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003860 vfree(pkt_dev->flows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003862 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863}
3864
Luiz Capitulino222f1802006-03-20 22:16:13 -08003865static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866{
3867 int cpu;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003868 struct proc_dir_entry *pe;
3869
Joe Perchesf9467ea2010-06-21 12:29:14 +00003870 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003872 pg_proc_dir = proc_mkdir(PG_PROC_DIR, init_net.proc_net);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003873 if (!pg_proc_dir)
3874 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
Wang Chen25296d52008-02-28 14:11:49 -08003876 pe = proc_create(PGCTRL, 0600, pg_proc_dir, &pktgen_fops);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003877 if (pe == NULL) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003878 pr_err("ERROR: cannot create %s procfs entry\n", PGCTRL);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003879 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003880 return -EINVAL;
3881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 /* Register us to receive netdevice events */
3884 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003885
John Hawkes670c02c2005-10-13 09:30:31 -07003886 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003887 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
David S. Milleree74baa2007-01-01 20:51:53 -08003889 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003890 if (err)
Joe Perchesf9467ea2010-06-21 12:29:14 +00003891 pr_warning("WARNING: Cannot create thread for cpu %d (%d)\n",
3892 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003893 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003894
3895 if (list_empty(&pktgen_threads)) {
Joe Perchesf9467ea2010-06-21 12:29:14 +00003896 pr_err("ERROR: Initialization failed for all threads\n");
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003897 unregister_netdevice_notifier(&pktgen_notifier_block);
3898 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003899 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003900 return -ENODEV;
3901 }
3902
Luiz Capitulino222f1802006-03-20 22:16:13 -08003903 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904}
3905
3906static void __exit pg_cleanup(void)
3907{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003908 struct pktgen_thread *t;
3909 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 wait_queue_head_t queue;
3911 init_waitqueue_head(&queue);
3912
Luiz Capitulino222f1802006-03-20 22:16:13 -08003913 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003915 list_for_each_safe(q, n, &pktgen_threads) {
3916 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003917 kthread_stop(t->tsk);
3918 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Luiz Capitulino222f1802006-03-20 22:16:13 -08003921 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 unregister_netdevice_notifier(&pktgen_notifier_block);
3923
Luiz Capitulino222f1802006-03-20 22:16:13 -08003924 /* Clean up proc file system */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003925 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003926 proc_net_remove(&init_net, PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927}
3928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929module_init(pg_init);
3930module_exit(pg_cleanup);
3931
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003932MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933MODULE_DESCRIPTION("Packet Generator tool");
3934MODULE_LICENSE("GPL");
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003935MODULE_VERSION(VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936module_param(pg_count_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003937MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938module_param(pg_delay_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003939MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940module_param(pg_clone_skb_d, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003941MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942module_param(debug, int, 0);
Stephen Hemmingerc3d2f522009-08-27 13:55:20 +00003943MODULE_PARM_DESC(debug, "Enable debugging of pktgen module");