blob: bede00b540382e78425cee3b6d77171a44c460d8 [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 */
118#include <linux/sys.h>
119#include <linux/types.h>
120#include <linux/module.h>
121#include <linux/moduleparam.h>
122#include <linux/kernel.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800123#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#include <linux/sched.h>
125#include <linux/slab.h>
126#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#include <linux/unistd.h>
128#include <linux/string.h>
129#include <linux/ptrace.h>
130#include <linux/errno.h>
131#include <linux/ioport.h>
132#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800133#include <linux/capability.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700134#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#include <linux/delay.h>
136#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800137#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#include <linux/init.h>
139#include <linux/skbuff.h>
140#include <linux/netdevice.h>
141#include <linux/inet.h>
142#include <linux/inetdevice.h>
143#include <linux/rtnetlink.h>
144#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700145#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#include <linux/in.h>
147#include <linux/ip.h>
148#include <linux/ipv6.h>
149#include <linux/udp.h>
150#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700151#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800153#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800154#include <linux/kthread.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200155#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#include <net/checksum.h>
157#include <net/ipv6.h>
158#include <net/addrconf.h>
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700159#ifdef CONFIG_XFRM
160#include <net/xfrm.h>
161#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#include <asm/byteorder.h>
163#include <linux/rcupdate.h>
Jiri Slaby1977f032007-10-18 23:40:25 -0700164#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#include <asm/io.h>
166#include <asm/dma.h>
167#include <asm/uaccess.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800168#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#include <asm/timex.h>
170
Robert Olssone6fce5b2008-08-07 02:23:01 -0700171#define VERSION "pktgen v2.70: Packet Generator for packet performance testing.\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800174#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -0800175#define MPLS_STACK_BOTTOM htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800178#define F_IPSRC_RND (1<<0) /* IP-Src Random */
179#define F_IPDST_RND (1<<1) /* IP-Dst Random */
180#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
181#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
182#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
183#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
184#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
185#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800186#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700187#define F_VID_RND (1<<9) /* Random VLAN ID */
188#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700189#define F_FLOW_SEQ (1<<11) /* Sequential flows */
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700190#define F_IPSEC_ON (1<<12) /* ipsec on for flows */
Robert Olsson45b270f2007-08-28 15:45:55 -0700191#define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
Robert Olssone6fce5b2008-08-07 02:23:01 -0700192#define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194/* Thread control flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800195#define T_TERMINATE (1<<0)
196#define T_STOP (1<<1) /* Stop run */
197#define T_RUN (1<<2) /* Start run */
198#define T_REMDEVALL (1<<3) /* Remove all devs */
199#define T_REMDEV (1<<4) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/* If lock -- can be removed after some work */
202#define if_lock(t) spin_lock(&(t->if_lock));
203#define if_unlock(t) spin_unlock(&(t->if_lock));
204
205/* Used to help with determining the pkts on receive */
206#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700207#define PG_PROC_DIR "pktgen"
208#define PGCTRL "pgctrl"
209static struct proc_dir_entry *pg_proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211#define MAX_CFLOWS 65536
212
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700213#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
214#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
215
Luiz Capitulino222f1802006-03-20 22:16:13 -0800216struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800217 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800218 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700219#ifdef CONFIG_XFRM
220 struct xfrm_state *x;
221#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700222 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223};
224
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700225/* flow flag bits */
226#define F_INIT (1<<0) /* flow has been initialized */
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /*
230 * Try to keep frequent/infrequent used vars. separated.
231 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800232 struct proc_dir_entry *entry; /* proc file */
233 struct pktgen_thread *pg_thread;/* the owner */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800234 struct list_head list; /* Used for chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Luiz Capitulino222f1802006-03-20 22:16:13 -0800236 int running; /* if this changes to false, the test will stop */
237
238 /* If min != max, then we will either do a linear iteration, or
239 * we will do a random selection from within the range.
240 */
241 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800242 int removal_mark; /* non-zero => the device is marked for
243 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Luiz Capitulino222f1802006-03-20 22:16:13 -0800245 int min_pkt_size; /* = ETH_ZLEN; */
246 int max_pkt_size; /* = ETH_ZLEN; */
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700247 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800248 int nfrags;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000249 u64 delay; /* nano-seconds */
250
Luiz Capitulino222f1802006-03-20 22:16:13 -0800251 __u64 count; /* Default No packets to send */
252 __u64 sofar; /* How many pkts we've sent so far */
253 __u64 tx_bytes; /* How many bytes we've transmitted */
254 __u64 errors; /* Errors when trying to transmit, pkts will be re-sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Luiz Capitulino222f1802006-03-20 22:16:13 -0800256 /* runtime counters relating to clone_skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Luiz Capitulino222f1802006-03-20 22:16:13 -0800258 __u64 allocated_skbs;
259 __u32 clone_count;
260 int last_ok; /* Was last skb sent?
261 * Or a failed transmit of some sort? This will keep
262 * sequence numbers in order, for example.
263 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000264 ktime_t next_tx;
265 ktime_t started_at;
266 ktime_t stopped_at;
267 u64 idle_acc; /* nano-seconds */
268
Luiz Capitulino222f1802006-03-20 22:16:13 -0800269 __u32 seq_num;
270
271 int clone_skb; /* Use multiple SKBs during packet gen. If this number
272 * is greater than 1, then that many copies of the same
273 * packet will be sent before a new packet is allocated.
274 * For instance, if you want to send 1024 identical packets
275 * before creating a new packet, set clone_skb to 1024.
276 */
277
278 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
279 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
280 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
281 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
282
283 struct in6_addr in6_saddr;
284 struct in6_addr in6_daddr;
285 struct in6_addr cur_in6_daddr;
286 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800288 struct in6_addr min_in6_daddr;
289 struct in6_addr max_in6_daddr;
290 struct in6_addr min_in6_saddr;
291 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Luiz Capitulino222f1802006-03-20 22:16:13 -0800293 /* If we're doing ranges, random or incremental, then this
294 * defines the min/max for those ranges.
295 */
Al Viro252e3342006-11-14 20:48:11 -0800296 __be32 saddr_min; /* inclusive, source IP address */
297 __be32 saddr_max; /* exclusive, source IP address */
298 __be32 daddr_min; /* inclusive, dest IP address */
299 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Luiz Capitulino222f1802006-03-20 22:16:13 -0800301 __u16 udp_src_min; /* inclusive, source UDP port */
302 __u16 udp_src_max; /* exclusive, source UDP port */
303 __u16 udp_dst_min; /* inclusive, dest UDP port */
304 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700306 /* DSCP + ECN */
307 __u8 tos; /* six most significant bits of (former) IPv4 TOS are for dscp codepoint */
308 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6 (see RFC 3260, sec. 4) */
309
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800310 /* MPLS */
311 unsigned nr_labels; /* Depth of stack, 0 = no MPLS */
312 __be32 labels[MAX_MPLS_LABELS];
313
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700314 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
315 __u8 vlan_p;
316 __u8 vlan_cfi;
317 __u16 vlan_id; /* 0xffff means no vlan tag */
318
319 __u8 svlan_p;
320 __u8 svlan_cfi;
321 __u16 svlan_id; /* 0xffff means no svlan tag */
322
Luiz Capitulino222f1802006-03-20 22:16:13 -0800323 __u32 src_mac_count; /* How many MACs to iterate through */
324 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Luiz Capitulino222f1802006-03-20 22:16:13 -0800326 unsigned char dst_mac[ETH_ALEN];
327 unsigned char src_mac[ETH_ALEN];
328
329 __u32 cur_dst_mac_offset;
330 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800331 __be32 cur_saddr;
332 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800333 __u16 cur_udp_dst;
334 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700335 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800336 __u32 cur_pkt_size;
337
338 __u8 hh[14];
339 /* = {
340 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
341
342 We fill in SRC address later
343 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
344 0x08, 0x00
345 };
346 */
347 __u16 pad; /* pad out the hh struct to an even 16 bytes */
348
349 struct sk_buff *skb; /* skb we are to transmit next, mainly used for when we
350 * are transmitting the same one multiple times
351 */
352 struct net_device *odev; /* The out-going device. Note that the device should
353 * have it's pg_info pointer pointing back to this
354 * device. This will be set when the user specifies
355 * the out-going device name (not when the inject is
356 * started as it used to do.)
357 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800359 unsigned cflows; /* Concurrent flows (config) */
360 unsigned lflow; /* Flow length (config) */
361 unsigned nflows; /* accumulated flows (stats) */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700362 unsigned curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700363
364 u16 queue_map_min;
365 u16 queue_map_max;
366
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700367#ifdef CONFIG_XFRM
368 __u8 ipsmode; /* IPSEC mode (config) */
369 __u8 ipsproto; /* IPSEC type (config) */
370#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800371 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372};
373
374struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800375 __be32 pgh_magic;
376 __be32 seq_num;
377 __be32 tv_sec;
378 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379};
380
381struct pktgen_thread {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800382 spinlock_t if_lock;
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800383 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800384 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800385 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800386 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Luiz Capitulino222f1802006-03-20 22:16:13 -0800388 /* Field for thread to receive "posted" events terminate, stop ifs etc. */
389
390 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 int cpu;
392
Luiz Capitulino222f1802006-03-20 22:16:13 -0800393 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700394 struct completion start_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
397#define REMOVE 1
398#define FIND 0
399
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000400static inline ktime_t ktime_now(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000402 struct timespec ts;
403 ktime_get_ts(&ts);
404
405 return timespec_to_ktime(ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000408/* This works even if 32 bit because of careful byte order choice */
409static inline int ktime_lt(const ktime_t cmp1, const ktime_t cmp2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000411 return cmp1.tv64 < cmp2.tv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000414static const char version[] __initconst = VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Luiz Capitulino222f1802006-03-20 22:16:13 -0800416static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
417static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
418static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
419 const char *ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
421static void pktgen_run_all_threads(void);
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800422static void pktgen_reset_all_threads(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423static void pktgen_stop_all_threads_ifs(void);
Stephen Hemminger3bda06a2009-08-27 13:55:10 +0000424
Luiz Capitulino222f1802006-03-20 22:16:13 -0800425static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800427
Luiz Capitulino222f1802006-03-20 22:16:13 -0800428static unsigned int scan_ip6(const char *s, char ip[16]);
429static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431/* Module parameters, defaults. */
Stephen Hemminger65c5b782009-08-27 13:55:09 +0000432static int pg_count_d __read_mostly = 1000;
433static int pg_delay_d __read_mostly;
434static int pg_clone_skb_d __read_mostly;
435static int debug __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Luiz Capitulino222fa072006-03-20 22:24:27 -0800437static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800438static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static struct notifier_block pktgen_notifier_block = {
441 .notifier_call = pktgen_device_event,
442};
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900445 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 *
447 */
448
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700449static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800450{
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700451 seq_puts(seq, VERSION);
452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Luiz Capitulino222f1802006-03-20 22:16:13 -0800455static ssize_t pgctrl_write(struct file *file, const char __user * buf,
456 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 int err = 0;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700459 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Luiz Capitulino222f1802006-03-20 22:16:13 -0800461 if (!capable(CAP_NET_ADMIN)) {
462 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700466 if (count > sizeof(data))
467 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700470 err = -EFAULT;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700471 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800472 }
473 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Luiz Capitulino222f1802006-03-20 22:16:13 -0800475 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 pktgen_stop_all_threads_ifs();
477
Luiz Capitulino222f1802006-03-20 22:16:13 -0800478 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 pktgen_run_all_threads();
480
Jesse Brandeburgeb37b412008-11-10 16:48:03 -0800481 else if (!strcmp(data, "reset"))
482 pktgen_reset_all_threads();
483
Luiz Capitulino222f1802006-03-20 22:16:13 -0800484 else
David S. Miller25a8b252007-07-30 16:11:48 -0700485 printk(KERN_WARNING "pktgen: Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 err = count;
488
Luiz Capitulino222f1802006-03-20 22:16:13 -0800489out:
490 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700493static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700495 return single_open(file, pgctrl_show, PDE(inode)->data);
496}
497
Arjan van de Ven9a321442007-02-12 00:55:35 -0800498static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800499 .owner = THIS_MODULE,
500 .open = pgctrl_open,
501 .read = seq_read,
502 .llseek = seq_lseek,
503 .write = pgctrl_write,
504 .release = single_release,
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700505};
506
507static int pktgen_if_show(struct seq_file *seq, void *v)
508{
Stephen Hemminger648fda72009-08-27 13:55:07 +0000509 const struct pktgen_dev *pkt_dev = seq->private;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000510 ktime_t stopped;
511 u64 idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Luiz Capitulino222f1802006-03-20 22:16:13 -0800513 seq_printf(seq,
514 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
515 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
516 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Luiz Capitulino222f1802006-03-20 22:16:13 -0800518 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000519 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
520 pkt_dev->nfrags, (unsigned long long) pkt_dev->delay,
Stephen Hemminger39df2322007-03-04 16:11:51 -0800521 pkt_dev->clone_skb, pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Luiz Capitulino222f1802006-03-20 22:16:13 -0800523 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
524 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Robert Olsson45b270f2007-08-28 15:45:55 -0700526 seq_printf(seq,
527 " queue_map_min: %u queue_map_max: %u\n",
528 pkt_dev->queue_map_min,
529 pkt_dev->queue_map_max);
530
Luiz Capitulino222f1802006-03-20 22:16:13 -0800531 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800533 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
534 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
535 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
536 seq_printf(seq,
537 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
538 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Luiz Capitulino222f1802006-03-20 22:16:13 -0800540 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
541 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
542 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
543 seq_printf(seq,
544 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
545 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Luiz Capitulino222f1802006-03-20 22:16:13 -0800547 } else
548 seq_printf(seq,
549 " dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n",
550 pkt_dev->dst_min, pkt_dev->dst_max, pkt_dev->src_min,
551 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700553 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Johannes Berge1749612008-10-27 15:59:26 -0700555 seq_printf(seq, "%pM ",
556 is_zero_ether_addr(pkt_dev->src_mac) ?
557 pkt_dev->odev->dev_addr : pkt_dev->src_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Luiz Capitulino222f1802006-03-20 22:16:13 -0800559 seq_printf(seq, "dst_mac: ");
Johannes Berge1749612008-10-27 15:59:26 -0700560 seq_printf(seq, "%pM\n", pkt_dev->dst_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Luiz Capitulino222f1802006-03-20 22:16:13 -0800562 seq_printf(seq,
563 " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n",
564 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
565 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Luiz Capitulino222f1802006-03-20 22:16:13 -0800567 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800568 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700569 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800571 if (pkt_dev->nr_labels) {
572 unsigned i;
573 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700574 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800575 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
576 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
577 }
578
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700579 if (pkt_dev->vlan_id != 0xffff) {
580 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
581 pkt_dev->vlan_id, pkt_dev->vlan_p, pkt_dev->vlan_cfi);
582 }
583
584 if (pkt_dev->svlan_id != 0xffff) {
585 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
586 pkt_dev->svlan_id, pkt_dev->svlan_p, pkt_dev->svlan_cfi);
587 }
588
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700589 if (pkt_dev->tos) {
590 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
591 }
592
593 if (pkt_dev->traffic_class) {
594 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
595 }
596
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800597 seq_printf(seq, " Flags: ");
598
Luiz Capitulino222f1802006-03-20 22:16:13 -0800599 if (pkt_dev->flags & F_IPV6)
600 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Luiz Capitulino222f1802006-03-20 22:16:13 -0800602 if (pkt_dev->flags & F_IPSRC_RND)
603 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Luiz Capitulino222f1802006-03-20 22:16:13 -0800605 if (pkt_dev->flags & F_IPDST_RND)
606 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Luiz Capitulino222f1802006-03-20 22:16:13 -0800608 if (pkt_dev->flags & F_TXSIZE_RND)
609 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Luiz Capitulino222f1802006-03-20 22:16:13 -0800611 if (pkt_dev->flags & F_UDPSRC_RND)
612 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Luiz Capitulino222f1802006-03-20 22:16:13 -0800614 if (pkt_dev->flags & F_UDPDST_RND)
615 seq_printf(seq, "UDPDST_RND ");
616
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800617 if (pkt_dev->flags & F_MPLS_RND)
618 seq_printf(seq, "MPLS_RND ");
619
Robert Olsson45b270f2007-08-28 15:45:55 -0700620 if (pkt_dev->flags & F_QUEUE_MAP_RND)
621 seq_printf(seq, "QUEUE_MAP_RND ");
622
Robert Olssone6fce5b2008-08-07 02:23:01 -0700623 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
624 seq_printf(seq, "QUEUE_MAP_CPU ");
625
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700626 if (pkt_dev->cflows) {
627 if (pkt_dev->flags & F_FLOW_SEQ)
628 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
629 else
630 seq_printf(seq, "FLOW_RND ");
631 }
632
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700633#ifdef CONFIG_XFRM
634 if (pkt_dev->flags & F_IPSEC_ON)
635 seq_printf(seq, "IPSEC ");
636#endif
637
Luiz Capitulino222f1802006-03-20 22:16:13 -0800638 if (pkt_dev->flags & F_MACSRC_RND)
639 seq_printf(seq, "MACSRC_RND ");
640
641 if (pkt_dev->flags & F_MACDST_RND)
642 seq_printf(seq, "MACDST_RND ");
643
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700644 if (pkt_dev->flags & F_VID_RND)
645 seq_printf(seq, "VID_RND ");
646
647 if (pkt_dev->flags & F_SVID_RND)
648 seq_printf(seq, "SVID_RND ");
649
Luiz Capitulino222f1802006-03-20 22:16:13 -0800650 seq_puts(seq, "\n");
651
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000652 /* not really stopped, more like last-running-at */
653 stopped = pkt_dev->running ? ktime_now() : pkt_dev->stopped_at;
654 idle = pkt_dev->idle_acc;
655 do_div(idle, NSEC_PER_USEC);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800656
657 seq_printf(seq,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000658 "Current:\n pkts-sofar: %llu errors: %llu\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -0800659 (unsigned long long)pkt_dev->sofar,
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000660 (unsigned long long)pkt_dev->errors);
661
662 seq_printf(seq,
663 " started: %lluus stopped: %lluus idle: %lluus\n",
664 (unsigned long long) ktime_to_us(pkt_dev->started_at),
665 (unsigned long long) ktime_to_us(stopped),
666 (unsigned long long) idle);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800667
668 seq_printf(seq,
669 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700670 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
671 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Luiz Capitulino222f1802006-03-20 22:16:13 -0800673 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800675 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
676 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
677 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
678 } else
679 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700680 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Luiz Capitulino222f1802006-03-20 22:16:13 -0800682 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700683 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Robert Olsson45b270f2007-08-28 15:45:55 -0700685 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
686
Luiz Capitulino222f1802006-03-20 22:16:13 -0800687 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800690 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800692 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -0700694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800697
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700698static int hex32_arg(const char __user *user_buffer, unsigned long maxlen, __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800699{
700 int i = 0;
701 *num = 0;
702
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700703 for (; i < maxlen; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800704 char c;
705 *num <<= 4;
706 if (get_user(c, &user_buffer[i]))
707 return -EFAULT;
708 if ((c >= '0') && (c <= '9'))
709 *num |= c - '0';
710 else if ((c >= 'a') && (c <= 'f'))
711 *num |= c - 'a' + 10;
712 else if ((c >= 'A') && (c <= 'F'))
713 *num |= c - 'A' + 10;
714 else
715 break;
716 }
717 return i;
718}
719
Luiz Capitulino222f1802006-03-20 22:16:13 -0800720static int count_trail_chars(const char __user * user_buffer,
721 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 int i;
724
725 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800726 char c;
727 if (get_user(c, &user_buffer[i]))
728 return -EFAULT;
729 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 case '\"':
731 case '\n':
732 case '\r':
733 case '\t':
734 case ' ':
735 case '=':
736 break;
737 default:
738 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741done:
742 return i;
743}
744
Luiz Capitulino222f1802006-03-20 22:16:13 -0800745static unsigned long num_arg(const char __user * user_buffer,
746 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 int i = 0;
749 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800750
751 for (; i < maxlen; i++) {
752 char c;
753 if (get_user(c, &user_buffer[i]))
754 return -EFAULT;
755 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800757 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 } else
759 break;
760 }
761 return i;
762}
763
Luiz Capitulino222f1802006-03-20 22:16:13 -0800764static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 int i = 0;
767
Luiz Capitulino222f1802006-03-20 22:16:13 -0800768 for (; i < maxlen; i++) {
769 char c;
770 if (get_user(c, &user_buffer[i]))
771 return -EFAULT;
772 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 case '\"':
774 case '\n':
775 case '\r':
776 case '\t':
777 case ' ':
778 goto done_str;
779 break;
780 default:
781 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return i;
786}
787
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800788static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
789{
790 unsigned n = 0;
791 char c;
792 ssize_t i = 0;
793 int len;
794
795 pkt_dev->nr_labels = 0;
796 do {
797 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700798 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800799 if (len <= 0)
800 return len;
801 pkt_dev->labels[n] = htonl(tmp);
802 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
803 pkt_dev->flags |= F_MPLS_RND;
804 i += len;
805 if (get_user(c, &buffer[i]))
806 return -EFAULT;
807 i++;
808 n++;
809 if (n >= MAX_MPLS_LABELS)
810 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700811 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800812
813 pkt_dev->nr_labels = n;
814 return i;
815}
816
Luiz Capitulino222f1802006-03-20 22:16:13 -0800817static ssize_t pktgen_if_write(struct file *file,
818 const char __user * user_buffer, size_t count,
819 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800821 struct seq_file *seq = (struct seq_file *)file->private_data;
822 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 int i = 0, max, len;
824 char name[16], valstr[32];
825 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800826 char *pg_result = NULL;
827 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800829
830 pg_result = &(pkt_dev->result[0]);
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (count < 1) {
David S. Miller25a8b252007-07-30 16:11:48 -0700833 printk(KERN_WARNING "pktgen: wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return -EINVAL;
835 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 max = count - i;
838 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800839 if (tmp < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -0700840 printk(KERN_WARNING "pktgen: illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800841 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800843 i += tmp;
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /* Read variable name */
846
847 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800848 if (len < 0) {
849 return len;
850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800852 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return -EFAULT;
854 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800855
856 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800858 if (len < 0)
859 return len;
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 i += len;
862
863 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800864 char tb[count + 1];
865 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800867 tb[count] = 0;
David S. Miller25a8b252007-07-30 16:11:48 -0700868 printk(KERN_DEBUG "pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800869 (unsigned long)count, tb);
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if (!strcmp(name, "min_pkt_size")) {
873 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800874 if (len < 0) {
875 return len;
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800878 if (value < 14 + 20 + 8)
879 value = 14 + 20 + 8;
880 if (value != pkt_dev->min_pkt_size) {
881 pkt_dev->min_pkt_size = value;
882 pkt_dev->cur_pkt_size = value;
883 }
884 sprintf(pg_result, "OK: min_pkt_size=%u",
885 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return count;
887 }
888
Luiz Capitulino222f1802006-03-20 22:16:13 -0800889 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800891 if (len < 0) {
892 return len;
893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800895 if (value < 14 + 20 + 8)
896 value = 14 + 20 + 8;
897 if (value != pkt_dev->max_pkt_size) {
898 pkt_dev->max_pkt_size = value;
899 pkt_dev->cur_pkt_size = value;
900 }
901 sprintf(pg_result, "OK: max_pkt_size=%u",
902 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return count;
904 }
905
Luiz Capitulino222f1802006-03-20 22:16:13 -0800906 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 if (!strcmp(name, "pkt_size")) {
909 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800910 if (len < 0) {
911 return len;
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800914 if (value < 14 + 20 + 8)
915 value = 14 + 20 + 8;
916 if (value != pkt_dev->min_pkt_size) {
917 pkt_dev->min_pkt_size = value;
918 pkt_dev->max_pkt_size = value;
919 pkt_dev->cur_pkt_size = value;
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
922 return count;
923 }
924
Luiz Capitulino222f1802006-03-20 22:16:13 -0800925 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800927 if (len < 0) {
928 return len;
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800931 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 sprintf(pg_result, "OK: debug=%u", debug);
933 return count;
934 }
935
Luiz Capitulino222f1802006-03-20 22:16:13 -0800936 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800938 if (len < 0) {
939 return len;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 i += len;
942 pkt_dev->nfrags = value;
943 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
944 return count;
945 }
946 if (!strcmp(name, "delay")) {
947 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800948 if (len < 0) {
949 return len;
950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 i += len;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +0000952 if (value == 0x7FFFFFFF)
953 pkt_dev->delay = ULLONG_MAX;
954 else
955 pkt_dev->delay = (u64)value * NSEC_PER_USEC;
956
957 sprintf(pg_result, "OK: delay=%llu",
958 (unsigned long long) pkt_dev->delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return count;
960 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800961 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800963 if (len < 0) {
964 return len;
965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800967 if (value != pkt_dev->udp_src_min) {
968 pkt_dev->udp_src_min = value;
969 pkt_dev->cur_udp_src = value;
970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
972 return count;
973 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800974 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800976 if (len < 0) {
977 return len;
978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800980 if (value != pkt_dev->udp_dst_min) {
981 pkt_dev->udp_dst_min = value;
982 pkt_dev->cur_udp_dst = value;
983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
985 return count;
986 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800987 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800989 if (len < 0) {
990 return len;
991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800993 if (value != pkt_dev->udp_src_max) {
994 pkt_dev->udp_src_max = value;
995 pkt_dev->cur_udp_src = value;
996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
998 return count;
999 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001000 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001002 if (len < 0) {
1003 return len;
1004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001006 if (value != pkt_dev->udp_dst_max) {
1007 pkt_dev->udp_dst_max = value;
1008 pkt_dev->cur_udp_dst = value;
1009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1011 return count;
1012 }
1013 if (!strcmp(name, "clone_skb")) {
1014 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001015 if (len < 0) {
1016 return len;
1017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001019 pkt_dev->clone_skb = value;
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1022 return count;
1023 }
1024 if (!strcmp(name, "count")) {
1025 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001026 if (len < 0) {
1027 return len;
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 i += len;
1030 pkt_dev->count = value;
1031 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return count;
1034 }
1035 if (!strcmp(name, "src_mac_count")) {
1036 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001037 if (len < 0) {
1038 return len;
1039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 i += len;
1041 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001042 pkt_dev->src_mac_count = value;
1043 pkt_dev->cur_src_mac_offset = 0;
1044 }
1045 sprintf(pg_result, "OK: src_mac_count=%d",
1046 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return count;
1048 }
1049 if (!strcmp(name, "dst_mac_count")) {
1050 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001051 if (len < 0) {
1052 return len;
1053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 i += len;
1055 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001056 pkt_dev->dst_mac_count = value;
1057 pkt_dev->cur_dst_mac_offset = 0;
1058 }
1059 sprintf(pg_result, "OK: dst_mac_count=%d",
1060 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return count;
1062 }
1063 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001064 char f[32];
1065 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001067 if (len < 0) {
1068 return len;
1069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (copy_from_user(f, &user_buffer[i], len))
1071 return -EFAULT;
1072 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001073 if (strcmp(f, "IPSRC_RND") == 0)
1074 pkt_dev->flags |= F_IPSRC_RND;
1075
1076 else if (strcmp(f, "!IPSRC_RND") == 0)
1077 pkt_dev->flags &= ~F_IPSRC_RND;
1078
1079 else if (strcmp(f, "TXSIZE_RND") == 0)
1080 pkt_dev->flags |= F_TXSIZE_RND;
1081
1082 else if (strcmp(f, "!TXSIZE_RND") == 0)
1083 pkt_dev->flags &= ~F_TXSIZE_RND;
1084
1085 else if (strcmp(f, "IPDST_RND") == 0)
1086 pkt_dev->flags |= F_IPDST_RND;
1087
1088 else if (strcmp(f, "!IPDST_RND") == 0)
1089 pkt_dev->flags &= ~F_IPDST_RND;
1090
1091 else if (strcmp(f, "UDPSRC_RND") == 0)
1092 pkt_dev->flags |= F_UDPSRC_RND;
1093
1094 else if (strcmp(f, "!UDPSRC_RND") == 0)
1095 pkt_dev->flags &= ~F_UDPSRC_RND;
1096
1097 else if (strcmp(f, "UDPDST_RND") == 0)
1098 pkt_dev->flags |= F_UDPDST_RND;
1099
1100 else if (strcmp(f, "!UDPDST_RND") == 0)
1101 pkt_dev->flags &= ~F_UDPDST_RND;
1102
1103 else if (strcmp(f, "MACSRC_RND") == 0)
1104 pkt_dev->flags |= F_MACSRC_RND;
1105
1106 else if (strcmp(f, "!MACSRC_RND") == 0)
1107 pkt_dev->flags &= ~F_MACSRC_RND;
1108
1109 else if (strcmp(f, "MACDST_RND") == 0)
1110 pkt_dev->flags |= F_MACDST_RND;
1111
1112 else if (strcmp(f, "!MACDST_RND") == 0)
1113 pkt_dev->flags &= ~F_MACDST_RND;
1114
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001115 else if (strcmp(f, "MPLS_RND") == 0)
1116 pkt_dev->flags |= F_MPLS_RND;
1117
1118 else if (strcmp(f, "!MPLS_RND") == 0)
1119 pkt_dev->flags &= ~F_MPLS_RND;
1120
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001121 else if (strcmp(f, "VID_RND") == 0)
1122 pkt_dev->flags |= F_VID_RND;
1123
1124 else if (strcmp(f, "!VID_RND") == 0)
1125 pkt_dev->flags &= ~F_VID_RND;
1126
1127 else if (strcmp(f, "SVID_RND") == 0)
1128 pkt_dev->flags |= F_SVID_RND;
1129
1130 else if (strcmp(f, "!SVID_RND") == 0)
1131 pkt_dev->flags &= ~F_SVID_RND;
1132
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001133 else if (strcmp(f, "FLOW_SEQ") == 0)
1134 pkt_dev->flags |= F_FLOW_SEQ;
1135
Robert Olsson45b270f2007-08-28 15:45:55 -07001136 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1137 pkt_dev->flags |= F_QUEUE_MAP_RND;
1138
1139 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1140 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Robert Olssone6fce5b2008-08-07 02:23:01 -07001141
1142 else if (strcmp(f, "QUEUE_MAP_CPU") == 0)
1143 pkt_dev->flags |= F_QUEUE_MAP_CPU;
1144
1145 else if (strcmp(f, "!QUEUE_MAP_CPU") == 0)
1146 pkt_dev->flags &= ~F_QUEUE_MAP_CPU;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001147#ifdef CONFIG_XFRM
1148 else if (strcmp(f, "IPSEC") == 0)
1149 pkt_dev->flags |= F_IPSEC_ON;
1150#endif
1151
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001152 else if (strcmp(f, "!IPV6") == 0)
1153 pkt_dev->flags &= ~F_IPV6;
1154
Luiz Capitulino222f1802006-03-20 22:16:13 -08001155 else {
1156 sprintf(pg_result,
1157 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1158 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001159 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001160 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001161 return count;
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1164 return count;
1165 }
1166 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1167 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001168 if (len < 0) {
1169 return len;
1170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Luiz Capitulino222f1802006-03-20 22:16:13 -08001172 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001174 buf[len] = 0;
1175 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1176 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1177 strncpy(pkt_dev->dst_min, buf, len);
1178 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1179 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1180 }
1181 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001182 printk(KERN_DEBUG "pktgen: dst_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001183 pkt_dev->dst_min);
1184 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1186 return count;
1187 }
1188 if (!strcmp(name, "dst_max")) {
1189 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001190 if (len < 0) {
1191 return len;
1192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Luiz Capitulino222f1802006-03-20 22:16:13 -08001194 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return -EFAULT;
1196
Luiz Capitulino222f1802006-03-20 22:16:13 -08001197 buf[len] = 0;
1198 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1199 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1200 strncpy(pkt_dev->dst_max, buf, len);
1201 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1202 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1203 }
1204 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001205 printk(KERN_DEBUG "pktgen: dst_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001206 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 i += len;
1208 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1209 return count;
1210 }
1211 if (!strcmp(name, "dst6")) {
1212 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001213 if (len < 0)
1214 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 pkt_dev->flags |= F_IPV6;
1217
Luiz Capitulino222f1802006-03-20 22:16:13 -08001218 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001220 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001223 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1226
Luiz Capitulino222f1802006-03-20 22:16:13 -08001227 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001228 printk(KERN_DEBUG "pktgen: dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Luiz Capitulino222f1802006-03-20 22:16:13 -08001230 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 sprintf(pg_result, "OK: dst6=%s", buf);
1232 return count;
1233 }
1234 if (!strcmp(name, "dst6_min")) {
1235 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001236 if (len < 0)
1237 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 pkt_dev->flags |= F_IPV6;
1240
Luiz Capitulino222f1802006-03-20 22:16:13 -08001241 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001243 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001246 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Luiz Capitulino222f1802006-03-20 22:16:13 -08001248 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1249 &pkt_dev->min_in6_daddr);
1250 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001251 printk(KERN_DEBUG "pktgen: dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Luiz Capitulino222f1802006-03-20 22:16:13 -08001253 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 sprintf(pg_result, "OK: dst6_min=%s", buf);
1255 return count;
1256 }
1257 if (!strcmp(name, "dst6_max")) {
1258 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001259 if (len < 0)
1260 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 pkt_dev->flags |= F_IPV6;
1263
Luiz Capitulino222f1802006-03-20 22:16:13 -08001264 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001266 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001269 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Luiz Capitulino222f1802006-03-20 22:16:13 -08001271 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001272 printk(KERN_DEBUG "pktgen: dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Luiz Capitulino222f1802006-03-20 22:16:13 -08001274 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 sprintf(pg_result, "OK: dst6_max=%s", buf);
1276 return count;
1277 }
1278 if (!strcmp(name, "src6")) {
1279 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 if (len < 0)
1281 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 pkt_dev->flags |= F_IPV6;
1284
Luiz Capitulino222f1802006-03-20 22:16:13 -08001285 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001287 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001290 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1293
Luiz Capitulino222f1802006-03-20 22:16:13 -08001294 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001295 printk(KERN_DEBUG "pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001296
1297 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 sprintf(pg_result, "OK: src6=%s", buf);
1299 return count;
1300 }
1301 if (!strcmp(name, "src_min")) {
1302 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001303 if (len < 0) {
1304 return len;
1305 }
1306 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001308 buf[len] = 0;
1309 if (strcmp(buf, pkt_dev->src_min) != 0) {
1310 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1311 strncpy(pkt_dev->src_min, buf, len);
1312 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1313 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1314 }
1315 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001316 printk(KERN_DEBUG "pktgen: src_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001317 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 i += len;
1319 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1320 return count;
1321 }
1322 if (!strcmp(name, "src_max")) {
1323 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001324 if (len < 0) {
1325 return len;
1326 }
1327 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001329 buf[len] = 0;
1330 if (strcmp(buf, pkt_dev->src_max) != 0) {
1331 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1332 strncpy(pkt_dev->src_max, buf, len);
1333 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1334 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1335 }
1336 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001337 printk(KERN_DEBUG "pktgen: src_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001338 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 i += len;
1340 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1341 return count;
1342 }
1343 if (!strcmp(name, "dst_mac")) {
1344 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001345 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001347 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001350 if (len < 0) {
1351 return len;
1352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001354 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -EFAULT;
1356 i += len;
1357
Luiz Capitulino222f1802006-03-20 22:16:13 -08001358 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 if (*v >= '0' && *v <= '9') {
1360 *m *= 16;
1361 *m += *v - '0';
1362 }
1363 if (*v >= 'A' && *v <= 'F') {
1364 *m *= 16;
1365 *m += *v - 'A' + 10;
1366 }
1367 if (*v >= 'a' && *v <= 'f') {
1368 *m *= 16;
1369 *m += *v - 'a' + 10;
1370 }
1371 if (*v == ':') {
1372 m++;
1373 *m = 0;
1374 }
1375 }
1376
1377 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001378 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1379 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 sprintf(pg_result, "OK: dstmac");
1382 return count;
1383 }
1384 if (!strcmp(name, "src_mac")) {
1385 char *v = valstr;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001386 unsigned char old_smac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 unsigned char *m = pkt_dev->src_mac;
1388
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001389 memcpy(old_smac, pkt_dev->src_mac, ETH_ALEN);
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001392 if (len < 0) {
1393 return len;
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001396 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return -EFAULT;
1398 i += len;
1399
Luiz Capitulino222f1802006-03-20 22:16:13 -08001400 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (*v >= '0' && *v <= '9') {
1402 *m *= 16;
1403 *m += *v - '0';
1404 }
1405 if (*v >= 'A' && *v <= 'F') {
1406 *m *= 16;
1407 *m += *v - 'A' + 10;
1408 }
1409 if (*v >= 'a' && *v <= 'f') {
1410 *m *= 16;
1411 *m += *v - 'a' + 10;
1412 }
1413 if (*v == ':') {
1414 m++;
1415 *m = 0;
1416 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001419 /* Set up Src MAC */
1420 if (compare_ether_addr(old_smac, pkt_dev->src_mac))
1421 memcpy(&(pkt_dev->hh[6]), pkt_dev->src_mac, ETH_ALEN);
1422
Luiz Capitulino222f1802006-03-20 22:16:13 -08001423 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return count;
1425 }
1426
Luiz Capitulino222f1802006-03-20 22:16:13 -08001427 if (!strcmp(name, "clear_counters")) {
1428 pktgen_clear_counters(pkt_dev);
1429 sprintf(pg_result, "OK: Clearing counters.\n");
1430 return count;
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 if (!strcmp(name, "flows")) {
1434 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001435 if (len < 0) {
1436 return len;
1437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 i += len;
1439 if (value > MAX_CFLOWS)
1440 value = MAX_CFLOWS;
1441
1442 pkt_dev->cflows = value;
1443 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1444 return count;
1445 }
1446
1447 if (!strcmp(name, "flowlen")) {
1448 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001449 if (len < 0) {
1450 return len;
1451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 i += len;
1453 pkt_dev->lflow = value;
1454 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1455 return count;
1456 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001457
Robert Olsson45b270f2007-08-28 15:45:55 -07001458 if (!strcmp(name, "queue_map_min")) {
1459 len = num_arg(&user_buffer[i], 5, &value);
1460 if (len < 0) {
1461 return len;
1462 }
1463 i += len;
1464 pkt_dev->queue_map_min = value;
1465 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1466 return count;
1467 }
1468
1469 if (!strcmp(name, "queue_map_max")) {
1470 len = num_arg(&user_buffer[i], 5, &value);
1471 if (len < 0) {
1472 return len;
1473 }
1474 i += len;
1475 pkt_dev->queue_map_max = value;
1476 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1477 return count;
1478 }
1479
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001480 if (!strcmp(name, "mpls")) {
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001481 unsigned n, cnt;
1482
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001483 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001484 if (len < 0)
1485 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001486 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001487 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001488 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001489 cnt += sprintf(pg_result + cnt,
1490 "%08x%s", ntohl(pkt_dev->labels[n]),
1491 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001492
1493 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1494 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1495 pkt_dev->svlan_id = 0xffff;
1496
1497 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001498 printk(KERN_DEBUG "pktgen: VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001499 }
1500 return count;
1501 }
1502
1503 if (!strcmp(name, "vlan_id")) {
1504 len = num_arg(&user_buffer[i], 4, &value);
1505 if (len < 0) {
1506 return len;
1507 }
1508 i += len;
1509 if (value <= 4095) {
1510 pkt_dev->vlan_id = value; /* turn on VLAN */
1511
1512 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001513 printk(KERN_DEBUG "pktgen: VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001514
1515 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001516 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001517
1518 pkt_dev->nr_labels = 0; /* turn off MPLS */
1519 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1520 } else {
1521 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1522 pkt_dev->svlan_id = 0xffff;
1523
1524 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001525 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001526 }
1527 return count;
1528 }
1529
1530 if (!strcmp(name, "vlan_p")) {
1531 len = num_arg(&user_buffer[i], 1, &value);
1532 if (len < 0) {
1533 return len;
1534 }
1535 i += len;
1536 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1537 pkt_dev->vlan_p = value;
1538 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1539 } else {
1540 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1541 }
1542 return count;
1543 }
1544
1545 if (!strcmp(name, "vlan_cfi")) {
1546 len = num_arg(&user_buffer[i], 1, &value);
1547 if (len < 0) {
1548 return len;
1549 }
1550 i += len;
1551 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1552 pkt_dev->vlan_cfi = value;
1553 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1554 } else {
1555 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1556 }
1557 return count;
1558 }
1559
1560 if (!strcmp(name, "svlan_id")) {
1561 len = num_arg(&user_buffer[i], 4, &value);
1562 if (len < 0) {
1563 return len;
1564 }
1565 i += len;
1566 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1567 pkt_dev->svlan_id = value; /* turn on SVLAN */
1568
1569 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001570 printk(KERN_DEBUG "pktgen: SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001571
1572 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001573 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001574
1575 pkt_dev->nr_labels = 0; /* turn off MPLS */
1576 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1577 } else {
1578 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1579 pkt_dev->svlan_id = 0xffff;
1580
1581 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001582 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001583 }
1584 return count;
1585 }
1586
1587 if (!strcmp(name, "svlan_p")) {
1588 len = num_arg(&user_buffer[i], 1, &value);
1589 if (len < 0) {
1590 return len;
1591 }
1592 i += len;
1593 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1594 pkt_dev->svlan_p = value;
1595 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1596 } else {
1597 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1598 }
1599 return count;
1600 }
1601
1602 if (!strcmp(name, "svlan_cfi")) {
1603 len = num_arg(&user_buffer[i], 1, &value);
1604 if (len < 0) {
1605 return len;
1606 }
1607 i += len;
1608 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1609 pkt_dev->svlan_cfi = value;
1610 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1611 } else {
1612 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1613 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001614 return count;
1615 }
1616
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001617 if (!strcmp(name, "tos")) {
1618 __u32 tmp_value = 0;
1619 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1620 if (len < 0) {
1621 return len;
1622 }
1623 i += len;
1624 if (len == 2) {
1625 pkt_dev->tos = tmp_value;
1626 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1627 } else {
1628 sprintf(pg_result, "ERROR: tos must be 00-ff");
1629 }
1630 return count;
1631 }
1632
1633 if (!strcmp(name, "traffic_class")) {
1634 __u32 tmp_value = 0;
1635 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1636 if (len < 0) {
1637 return len;
1638 }
1639 i += len;
1640 if (len == 2) {
1641 pkt_dev->traffic_class = tmp_value;
1642 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1643 } else {
1644 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1645 }
1646 return count;
1647 }
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1650 return -EINVAL;
1651}
1652
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001653static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001655 return single_open(file, pktgen_if_show, PDE(inode)->data);
1656}
1657
Arjan van de Ven9a321442007-02-12 00:55:35 -08001658static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001659 .owner = THIS_MODULE,
1660 .open = pktgen_if_open,
1661 .read = seq_read,
1662 .llseek = seq_lseek,
1663 .write = pktgen_if_write,
1664 .release = single_release,
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001665};
1666
1667static int pktgen_thread_show(struct seq_file *seq, void *v)
1668{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001669 struct pktgen_thread *t = seq->private;
Stephen Hemminger648fda72009-08-27 13:55:07 +00001670 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001672 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Luiz Capitulino222f1802006-03-20 22:16:13 -08001674 seq_printf(seq, "Running: ");
1675
1676 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001677 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001678 if (pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001679 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Luiz Capitulino222f1802006-03-20 22:16:13 -08001681 seq_printf(seq, "\nStopped: ");
1682
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001683 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001684 if (!pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001685 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 if (t->result[0])
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001688 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 else
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001690 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Luiz Capitulino222f1802006-03-20 22:16:13 -08001692 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001697static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001698 const char __user * user_buffer,
1699 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001701 struct seq_file *seq = (struct seq_file *)file->private_data;
1702 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 int i = 0, max, len, ret;
1704 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001705 char *pg_result;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001708 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return -EINVAL;
1710 }
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001713 len = count_trail_chars(&user_buffer[i], max);
1714 if (len < 0)
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001715 return len;
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 i += len;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 /* Read variable name */
1720
1721 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001722 if (len < 0)
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001723 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 memset(name, 0, sizeof(name));
1726 if (copy_from_user(name, &user_buffer[i], len))
1727 return -EFAULT;
1728 i += len;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001729
Luiz Capitulino222f1802006-03-20 22:16:13 -08001730 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001732 if (len < 0)
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001733 return len;
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 i += len;
1736
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001737 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001738 printk(KERN_DEBUG "pktgen: t=%s, count=%lu\n",
1739 name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Luiz Capitulino222f1802006-03-20 22:16:13 -08001741 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07001742 printk(KERN_ERR "pktgen: ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 ret = -EINVAL;
1744 goto out;
1745 }
1746
1747 pg_result = &(t->result[0]);
1748
Luiz Capitulino222f1802006-03-20 22:16:13 -08001749 if (!strcmp(name, "add_device")) {
1750 char f[32];
1751 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001753 if (len < 0) {
1754 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto out;
1756 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001757 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return -EFAULT;
1759 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001760 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001761 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001762 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001763 ret = count;
1764 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 goto out;
1766 }
1767
Luiz Capitulino222f1802006-03-20 22:16:13 -08001768 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001769 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001770 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001771 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001772 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001774 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 goto out;
1776 }
1777
Luiz Capitulino222f1802006-03-20 22:16:13 -08001778 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001779 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001780 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 goto out;
1782 }
1783
1784 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001785out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return ret;
1787}
1788
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001789static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001791 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
Arjan van de Ven9a321442007-02-12 00:55:35 -08001794static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001795 .owner = THIS_MODULE,
1796 .open = pktgen_thread_open,
1797 .read = seq_read,
1798 .llseek = seq_lseek,
1799 .write = pktgen_thread_write,
1800 .release = single_release,
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07001801};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001804static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
1806 struct pktgen_thread *t;
1807 struct pktgen_dev *pkt_dev = NULL;
1808
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001809 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 pkt_dev = pktgen_find_dev(t, ifname);
1811 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001812 if (remove) {
1813 if_lock(t);
1814 pkt_dev->removal_mark = 1;
1815 t->control |= T_REMDEV;
1816 if_unlock(t);
1817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 break;
1819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001821 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
1823
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001824/*
1825 * mark a device for removal
1826 */
Stephen Hemminger39df2322007-03-04 16:11:51 -08001827static void pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
1829 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001830 const int max_tries = 10, msec_per_try = 125;
1831 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001832
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001833 mutex_lock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001834 pr_debug("pktgen: pktgen_mark_device marking %s for removal\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001835
Luiz Capitulino222f1802006-03-20 22:16:13 -08001836 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001837
1838 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001839 if (pkt_dev == NULL)
1840 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001841
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001842 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001843 pr_debug("pktgen: pktgen_mark_device waiting for %s "
1844 "to disappear....\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001845 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001846 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001847
1848 if (++i >= max_tries) {
David S. Miller25a8b252007-07-30 16:11:48 -07001849 printk(KERN_ERR "pktgen_mark_device: timed out after "
1850 "waiting %d msec for device %s to be removed\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001851 msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001852 break;
1853 }
1854
1855 }
1856
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001857 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001858}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001859
Stephen Hemminger39df2322007-03-04 16:11:51 -08001860static void pktgen_change_name(struct net_device *dev)
1861{
1862 struct pktgen_thread *t;
1863
1864 list_for_each_entry(t, &pktgen_threads, th_list) {
1865 struct pktgen_dev *pkt_dev;
1866
1867 list_for_each_entry(pkt_dev, &t->if_list, list) {
1868 if (pkt_dev->odev != dev)
1869 continue;
1870
1871 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
1872
1873 pkt_dev->entry = create_proc_entry(dev->name, 0600,
1874 pg_proc_dir);
1875 if (!pkt_dev->entry)
1876 printk(KERN_ERR "pktgen: can't move proc "
1877 " entry for '%s'\n", dev->name);
1878 break;
1879 }
1880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
Luiz Capitulino222f1802006-03-20 22:16:13 -08001883static int pktgen_device_event(struct notifier_block *unused,
1884 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Stephen Hemminger39df2322007-03-04 16:11:51 -08001886 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -07001888 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001889 return NOTIFY_DONE;
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 /* It is OK that we do not hold the group lock right now,
1892 * as we run under the RTNL lock.
1893 */
1894
1895 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001896 case NETDEV_CHANGENAME:
1897 pktgen_change_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001901 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 return NOTIFY_DONE;
1906}
1907
Robert Olssone6fce5b2008-08-07 02:23:01 -07001908static struct net_device *pktgen_dev_get_by_name(struct pktgen_dev *pkt_dev, const char *ifname)
1909{
1910 char b[IFNAMSIZ+5];
1911 int i = 0;
1912
1913 for(i=0; ifname[i] != '@'; i++) {
1914 if(i == IFNAMSIZ)
1915 break;
1916
1917 b[i] = ifname[i];
1918 }
1919 b[i] = 0;
1920
1921 return dev_get_by_name(&init_net, b);
1922}
1923
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925/* Associate pktgen_dev with a device. */
1926
Stephen Hemminger39df2322007-03-04 16:11:51 -08001927static int pktgen_setup_dev(struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001928{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001930 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (pkt_dev->odev) {
1934 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001935 pkt_dev->odev = NULL;
1936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Robert Olssone6fce5b2008-08-07 02:23:01 -07001938 odev = pktgen_dev_get_by_name(pkt_dev, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (!odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001940 printk(KERN_ERR "pktgen: no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001941 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (odev->type != ARPHRD_ETHER) {
David S. Miller25a8b252007-07-30 16:11:48 -07001945 printk(KERN_ERR "pktgen: not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001946 err = -EINVAL;
1947 } else if (!netif_running(odev)) {
David S. Miller25a8b252007-07-30 16:11:48 -07001948 printk(KERN_ERR "pktgen: device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001949 err = -ENETDOWN;
1950 } else {
1951 pkt_dev->odev = odev;
1952 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001956 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
1959/* Read pkt_dev from the interface and set up internal pktgen_dev
1960 * structure to have the right information to create/send packets
1961 */
1962static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
1963{
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001964 int ntxq;
1965
Luiz Capitulino222f1802006-03-20 22:16:13 -08001966 if (!pkt_dev->odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001967 printk(KERN_ERR "pktgen: ERROR: pkt_dev->odev == NULL in "
1968 "setup_inject.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001969 sprintf(pkt_dev->result,
1970 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1971 return;
1972 }
1973
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001974 /* make sure that we don't pick a non-existing transmit queue */
1975 ntxq = pkt_dev->odev->real_num_tx_queues;
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08001976
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001977 if (ntxq <= pkt_dev->queue_map_min) {
1978 printk(KERN_WARNING "pktgen: WARNING: Requested "
Jesse Brandeburg88271662008-10-28 13:21:51 -07001979 "queue_map_min (zero-based) (%d) exceeds valid range "
1980 "[0 - %d] for (%d) queues on %s, resetting\n",
1981 pkt_dev->queue_map_min, (ntxq ?: 1)- 1, ntxq,
1982 pkt_dev->odev->name);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001983 pkt_dev->queue_map_min = ntxq - 1;
1984 }
Jesse Brandeburg88271662008-10-28 13:21:51 -07001985 if (pkt_dev->queue_map_max >= ntxq) {
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001986 printk(KERN_WARNING "pktgen: WARNING: Requested "
Jesse Brandeburg88271662008-10-28 13:21:51 -07001987 "queue_map_max (zero-based) (%d) exceeds valid range "
1988 "[0 - %d] for (%d) queues on %s, resetting\n",
1989 pkt_dev->queue_map_max, (ntxq ?: 1)- 1, ntxq,
1990 pkt_dev->odev->name);
Andrew Gallatin64c00d82008-08-13 15:16:00 -07001991 pkt_dev->queue_map_max = ntxq - 1;
1992 }
1993
Luiz Capitulino222f1802006-03-20 22:16:13 -08001994 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001996 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08001997 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Luiz Capitulino222f1802006-03-20 22:16:13 -08001999 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08002000 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Luiz Capitulino222f1802006-03-20 22:16:13 -08002002 /* Set up pkt size */
2003 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
2004
2005 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002007 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 * gets exported
2009 */
2010
2011#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08002012 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 struct inet6_dev *idev;
2014
Luiz Capitulino222f1802006-03-20 22:16:13 -08002015 for (i = 0; i < IN6_ADDR_HSIZE; i++)
2016 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 set = 1;
2018 break;
2019 }
2020
Luiz Capitulino222f1802006-03-20 22:16:13 -08002021 if (!set) {
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /*
2024 * Use linklevel address if unconfigured.
2025 *
2026 * use ipv6_get_lladdr if/when it's get exported
2027 */
2028
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002029 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if ((idev = __in6_dev_get(pkt_dev->odev)) != NULL) {
2031 struct inet6_ifaddr *ifp;
2032
2033 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002034 for (ifp = idev->addr_list; ifp;
2035 ifp = ifp->if_next) {
2036 if (ifp->scope == IFA_LINK
2037 && !(ifp->
2038 flags & IFA_F_TENTATIVE)) {
2039 ipv6_addr_copy(&pkt_dev->
2040 cur_in6_saddr,
2041 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 err = 0;
2043 break;
2044 }
2045 }
2046 read_unlock_bh(&idev->lock);
2047 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002048 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002049 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07002050 printk(KERN_ERR "pktgen: ERROR: IPv6 link "
2051 "address not availble.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 }
2053#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002054 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 pkt_dev->saddr_min = 0;
2056 pkt_dev->saddr_max = 0;
2057 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002058
2059 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002062 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (in_dev) {
2064 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002065 pkt_dev->saddr_min =
2066 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 pkt_dev->saddr_max = pkt_dev->saddr_min;
2068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002071 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2073 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2074 }
2075
2076 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2077 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2078 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002079 /* Initialize current values. */
2080 pkt_dev->cur_dst_mac_offset = 0;
2081 pkt_dev->cur_src_mac_offset = 0;
2082 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2083 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2084 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2085 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 pkt_dev->nflows = 0;
2087}
2088
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002089static inline s64 delta_ns(ktime_t a, ktime_t b)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002091 return ktime_to_ns(ktime_sub(a, b));
2092}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002094static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until)
2095{
2096 ktime_t start, now;
2097 s64 dt;
2098
2099 start = now = ktime_now();
2100
2101 while ((dt = delta_ns(spin_until, now)) > 0) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -07002102 /* TODO: optimize sleeping behavior */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002103 if (dt > TICK_NSEC)
Nishanth Aravamudan121caf52005-09-12 14:15:34 -07002104 schedule_timeout_interruptible(1);
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002105 else if (dt > 100*NSEC_PER_USEC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (!pkt_dev->running)
2107 return;
2108 if (need_resched())
2109 schedule();
2110 }
2111
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002112 now = ktime_now();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00002115 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(now, start));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002118static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2119{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002120 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002121 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2122 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2123 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2124}
2125
Stephen Hemminger648fda72009-08-27 13:55:07 +00002126static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002127{
Stephen Hemminger648fda72009-08-27 13:55:07 +00002128 return !!(pkt_dev->flows[flow].flags & F_INIT);
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002129}
2130
2131static inline int f_pick(struct pktgen_dev *pkt_dev)
2132{
2133 int flow = pkt_dev->curfl;
2134
2135 if (pkt_dev->flags & F_FLOW_SEQ) {
2136 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2137 /* reset time */
2138 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002139 pkt_dev->flows[flow].flags = 0;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002140 pkt_dev->curfl += 1;
2141 if (pkt_dev->curfl >= pkt_dev->cflows)
2142 pkt_dev->curfl = 0; /*reset */
2143 }
2144 } else {
2145 flow = random32() % pkt_dev->cflows;
Robert Olsson1211a642008-08-05 18:44:26 -07002146 pkt_dev->curfl = flow;
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002147
Robert Olsson1211a642008-08-05 18:44:26 -07002148 if (pkt_dev->flows[flow].count > pkt_dev->lflow) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002149 pkt_dev->flows[flow].count = 0;
Robert Olsson1211a642008-08-05 18:44:26 -07002150 pkt_dev->flows[flow].flags = 0;
2151 }
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002152 }
2153
2154 return pkt_dev->curfl;
2155}
2156
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002157
2158#ifdef CONFIG_XFRM
2159/* If there was already an IPSEC SA, we keep it as is, else
2160 * we go look for it ...
2161*/
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002162static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002163{
2164 struct xfrm_state *x = pkt_dev->flows[flow].x;
2165 if (!x) {
2166 /*slow path: we dont already have xfrm_state*/
Alexey Dobriyan5447c5e2008-11-25 17:31:51 -08002167 x = xfrm_stateonly_find(&init_net,
2168 (xfrm_address_t *)&pkt_dev->cur_daddr,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002169 (xfrm_address_t *)&pkt_dev->cur_saddr,
2170 AF_INET,
2171 pkt_dev->ipsmode,
2172 pkt_dev->ipsproto, 0);
2173 if (x) {
2174 pkt_dev->flows[flow].x = x;
2175 set_pkt_overhead(pkt_dev);
2176 pkt_dev->pkt_overhead+=x->props.header_len;
2177 }
2178
2179 }
2180}
2181#endif
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002182static void set_cur_queue_map(struct pktgen_dev *pkt_dev)
2183{
Robert Olssone6fce5b2008-08-07 02:23:01 -07002184
2185 if (pkt_dev->flags & F_QUEUE_MAP_CPU)
2186 pkt_dev->cur_queue_map = smp_processor_id();
2187
2188 else if (pkt_dev->queue_map_min < pkt_dev->queue_map_max) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002189 __u16 t;
2190 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
2191 t = random32() %
2192 (pkt_dev->queue_map_max -
2193 pkt_dev->queue_map_min + 1)
2194 + pkt_dev->queue_map_min;
2195 } else {
2196 t = pkt_dev->cur_queue_map + 1;
2197 if (t > pkt_dev->queue_map_max)
2198 t = pkt_dev->queue_map_min;
2199 }
2200 pkt_dev->cur_queue_map = t;
2201 }
Robert Olssonbfdbc0a2008-11-19 14:09:47 -08002202 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 -07002203}
2204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205/* Increment/randomize headers according to flags and current values
2206 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2207 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002208static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2209{
2210 __u32 imn;
2211 __u32 imx;
2212 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002214 if (pkt_dev->cflows)
2215 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002218 if (pkt_dev->src_mac_count > 1) {
2219 __u32 mc;
2220 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Luiz Capitulino222f1802006-03-20 22:16:13 -08002222 if (pkt_dev->flags & F_MACSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002223 mc = random32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002224 else {
2225 mc = pkt_dev->cur_src_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002226 if (pkt_dev->cur_src_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002227 pkt_dev->src_mac_count)
2228 pkt_dev->cur_src_mac_offset = 0;
2229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Luiz Capitulino222f1802006-03-20 22:16:13 -08002231 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2232 pkt_dev->hh[11] = tmp;
2233 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2234 pkt_dev->hh[10] = tmp;
2235 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2236 pkt_dev->hh[9] = tmp;
2237 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2238 pkt_dev->hh[8] = tmp;
2239 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2240 pkt_dev->hh[7] = tmp;
2241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Luiz Capitulino222f1802006-03-20 22:16:13 -08002243 /* Deal with Destination MAC */
2244 if (pkt_dev->dst_mac_count > 1) {
2245 __u32 mc;
2246 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Luiz Capitulino222f1802006-03-20 22:16:13 -08002248 if (pkt_dev->flags & F_MACDST_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002249 mc = random32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Luiz Capitulino222f1802006-03-20 22:16:13 -08002251 else {
2252 mc = pkt_dev->cur_dst_mac_offset++;
Robert Olssonff2a79a2008-08-05 18:45:05 -07002253 if (pkt_dev->cur_dst_mac_offset >=
Luiz Capitulino222f1802006-03-20 22:16:13 -08002254 pkt_dev->dst_mac_count) {
2255 pkt_dev->cur_dst_mac_offset = 0;
2256 }
2257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Luiz Capitulino222f1802006-03-20 22:16:13 -08002259 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2260 pkt_dev->hh[5] = tmp;
2261 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2262 pkt_dev->hh[4] = tmp;
2263 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2264 pkt_dev->hh[3] = tmp;
2265 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2266 pkt_dev->hh[2] = tmp;
2267 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2268 pkt_dev->hh[1] = tmp;
2269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002271 if (pkt_dev->flags & F_MPLS_RND) {
2272 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002273 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002274 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2275 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002276 ((__force __be32)random32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002277 htonl(0x000fffff));
2278 }
2279
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002280 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002281 pkt_dev->vlan_id = random32() & (4096-1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002282 }
2283
2284 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002285 pkt_dev->svlan_id = random32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002286 }
2287
Luiz Capitulino222f1802006-03-20 22:16:13 -08002288 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2289 if (pkt_dev->flags & F_UDPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002290 pkt_dev->cur_udp_src = random32() %
2291 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2292 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Luiz Capitulino222f1802006-03-20 22:16:13 -08002294 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 pkt_dev->cur_udp_src++;
2296 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2297 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002298 }
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Luiz Capitulino222f1802006-03-20 22:16:13 -08002301 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2302 if (pkt_dev->flags & F_UDPDST_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002303 pkt_dev->cur_udp_dst = random32() %
2304 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2305 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002306 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002308 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002310 }
2311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
2313 if (!(pkt_dev->flags & F_IPV6)) {
2314
Luiz Capitulino222f1802006-03-20 22:16:13 -08002315 if ((imn = ntohl(pkt_dev->saddr_min)) < (imx =
2316 ntohl(pkt_dev->
2317 saddr_max))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002319 if (pkt_dev->flags & F_IPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002320 t = random32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 else {
2322 t = ntohl(pkt_dev->cur_saddr);
2323 t++;
2324 if (t > imx) {
2325 t = imn;
2326 }
2327 }
2328 pkt_dev->cur_saddr = htonl(t);
2329 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002330
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002331 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2333 } else {
Al Viro252e3342006-11-14 20:48:11 -08002334 imn = ntohl(pkt_dev->daddr_min);
2335 imx = ntohl(pkt_dev->daddr_max);
2336 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002338 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 if (pkt_dev->flags & F_IPDST_RND) {
2340
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002341 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002342 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Joe Perches21cf2252007-12-16 13:44:00 -08002344 while (ipv4_is_loopback(s) ||
2345 ipv4_is_multicast(s) ||
Jan Engelhardt1e637c72008-01-21 03:18:08 -08002346 ipv4_is_lbcast(s) ||
Joe Perches21cf2252007-12-16 13:44:00 -08002347 ipv4_is_zeronet(s) ||
2348 ipv4_is_local_multicast(s)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002349 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002350 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 }
Al Viro252e3342006-11-14 20:48:11 -08002352 pkt_dev->cur_daddr = s;
2353 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 t = ntohl(pkt_dev->cur_daddr);
2355 t++;
2356 if (t > imx) {
2357 t = imn;
2358 }
2359 pkt_dev->cur_daddr = htonl(t);
2360 }
2361 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002362 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002363 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002364 pkt_dev->flows[flow].cur_daddr =
2365 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002366#ifdef CONFIG_XFRM
2367 if (pkt_dev->flags & F_IPSEC_ON)
2368 get_ipsec_sa(pkt_dev, flow);
2369#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 pkt_dev->nflows++;
2371 }
2372 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002373 } else { /* IPV6 * */
2374
2375 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2376 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2377 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2378 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 else {
2380 int i;
2381
2382 /* Only random destinations yet */
2383
Luiz Capitulino222f1802006-03-20 22:16:13 -08002384 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002386 (((__force __be32)random32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002387 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2388 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
2392
Luiz Capitulino222f1802006-03-20 22:16:13 -08002393 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2394 __u32 t;
2395 if (pkt_dev->flags & F_TXSIZE_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002396 t = random32() %
2397 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2398 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002399 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002401 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002403 }
2404 pkt_dev->cur_pkt_size = t;
2405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002407 set_cur_queue_map(pkt_dev);
Robert Olsson45b270f2007-08-28 15:45:55 -07002408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 pkt_dev->flows[flow].count++;
2410}
2411
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002412
2413#ifdef CONFIG_XFRM
2414static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2415{
2416 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2417 int err = 0;
2418 struct iphdr *iph;
2419
2420 if (!x)
2421 return 0;
2422 /* XXX: we dont support tunnel mode for now until
2423 * we resolve the dst issue */
2424 if (x->props.mode != XFRM_MODE_TRANSPORT)
2425 return 0;
2426
2427 spin_lock(&x->lock);
2428 iph = ip_hdr(skb);
2429
Herbert Xu13996372007-10-17 21:35:51 -07002430 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002431 if (err)
2432 goto error;
2433 err = x->type->output(x, skb);
2434 if (err)
2435 goto error;
2436
2437 x->curlft.bytes +=skb->len;
2438 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002439error:
2440 spin_unlock(&x->lock);
2441 return err;
2442}
2443
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002444static void free_SAs(struct pktgen_dev *pkt_dev)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002445{
2446 if (pkt_dev->cflows) {
2447 /* let go of the SAs if we have them */
2448 int i = 0;
Florian Westphal5b5f7922009-05-21 15:07:12 -07002449 for (; i < pkt_dev->cflows; i++) {
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002450 struct xfrm_state *x = pkt_dev->flows[i].x;
2451 if (x) {
2452 xfrm_state_put(x);
2453 pkt_dev->flows[i].x = NULL;
2454 }
2455 }
2456 }
2457}
2458
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00002459static int process_ipsec(struct pktgen_dev *pkt_dev,
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002460 struct sk_buff *skb, __be16 protocol)
2461{
2462 if (pkt_dev->flags & F_IPSEC_ON) {
2463 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2464 int nhead = 0;
2465 if (x) {
2466 int ret;
2467 __u8 *eth;
2468 nhead = x->props.header_len - skb_headroom(skb);
2469 if (nhead >0) {
2470 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2471 if (ret < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -07002472 printk(KERN_ERR "Error expanding "
2473 "ipsec packet %d\n",ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002474 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002475 }
2476 }
2477
2478 /* ipsec is not expecting ll header */
2479 skb_pull(skb, ETH_HLEN);
2480 ret = pktgen_output_ipsec(skb, pkt_dev);
2481 if (ret) {
David S. Miller25a8b252007-07-30 16:11:48 -07002482 printk(KERN_ERR "Error creating ipsec "
2483 "packet %d\n",ret);
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002484 goto err;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002485 }
2486 /* restore ll */
2487 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2488 memcpy(eth, pkt_dev->hh, 12);
2489 *(u16 *) & eth[12] = protocol;
2490 }
2491 }
2492 return 1;
Ilpo Järvinenb4bb4ac2008-10-13 18:43:59 -07002493err:
2494 kfree_skb(skb);
2495 return 0;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002496}
2497#endif
2498
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002499static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2500{
2501 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002502 for (i = 0; i < pkt_dev->nr_labels; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002503 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
2504 }
2505 mpls--;
2506 *mpls |= MPLS_STACK_BOTTOM;
2507}
2508
Al Viro0f37c602006-11-03 03:49:56 -08002509static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2510 unsigned int prio)
2511{
2512 return htons(id | (cfi << 12) | (prio << 13));
2513}
2514
Luiz Capitulino222f1802006-03-20 22:16:13 -08002515static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2516 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
2518 struct sk_buff *skb = NULL;
2519 __u8 *eth;
2520 struct udphdr *udph;
2521 int datalen, iplen;
2522 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002523 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002524 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002525 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002526 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2527 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2528 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2529 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002530 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002531
2532 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002533 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002534
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002535 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002536 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002537
Robert Olsson64053be2005-06-26 15:27:10 -07002538 /* Update any of the values, used when we're incrementing various
2539 * fields.
2540 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002541 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002542 mod_cur_headers(pkt_dev);
2543
David S. Miller7ac54592006-01-18 14:19:10 -08002544 datalen = (odev->hard_header_len + 16) & ~0xf;
Stephen Hemmingere4707572009-08-27 13:55:13 +00002545 skb = __netdev_alloc_skb(odev,
2546 pkt_dev->cur_pkt_size + 64
2547 + datalen + pkt_dev->pkt_overhead, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (!skb) {
2549 sprintf(pkt_dev->result, "No memory");
2550 return NULL;
2551 }
2552
David S. Miller7ac54592006-01-18 14:19:10 -08002553 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555 /* Reserve for ethernet and IP header */
2556 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002557 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2558 if (pkt_dev->nr_labels)
2559 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002560
2561 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002562 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002563 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002564 *svlan_tci = build_tci(pkt_dev->svlan_id,
2565 pkt_dev->svlan_cfi,
2566 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002567 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002568 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002569 }
2570 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002571 *vlan_tci = build_tci(pkt_dev->vlan_id,
2572 pkt_dev->vlan_cfi,
2573 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002574 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002575 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002576 }
2577
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002578 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002579 skb->transport_header = skb->network_header + sizeof(struct iphdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002580 skb_put(skb, sizeof(struct iphdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002581 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002582 iph = ip_hdr(skb);
2583 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002586 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002588 /* Eth + IPh + UDPh + mpls */
2589 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002590 pkt_dev->pkt_overhead;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002591 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 udph->source = htons(pkt_dev->cur_udp_src);
2595 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002596 udph->len = htons(datalen + 8); /* DATA + udphdr */
2597 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 iph->ihl = 5;
2600 iph->version = 4;
2601 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002602 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002603 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 iph->saddr = pkt_dev->cur_saddr;
2605 iph->daddr = pkt_dev->cur_daddr;
2606 iph->frag_off = 0;
2607 iplen = 20 + 8 + datalen;
2608 iph->tot_len = htons(iplen);
2609 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002610 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002611 skb->protocol = protocol;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002612 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002613 pkt_dev->pkt_overhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 skb->dev = odev;
2615 skb->pkt_type = PACKET_HOST;
2616
Luiz Capitulino222f1802006-03-20 22:16:13 -08002617 if (pkt_dev->nfrags <= 0)
2618 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 else {
2620 int frags = pkt_dev->nfrags;
2621 int i;
2622
Luiz Capitulino222f1802006-03-20 22:16:13 -08002623 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (frags > MAX_SKB_FRAGS)
2626 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002627 if (datalen > frags * PAGE_SIZE) {
2628 skb_put(skb, datalen - frags * PAGE_SIZE);
2629 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 }
2631
2632 i = 0;
2633 while (datalen > 0) {
2634 struct page *page = alloc_pages(GFP_KERNEL, 0);
2635 skb_shinfo(skb)->frags[i].page = page;
2636 skb_shinfo(skb)->frags[i].page_offset = 0;
2637 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002638 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 datalen -= skb_shinfo(skb)->frags[i].size;
2640 skb->len += skb_shinfo(skb)->frags[i].size;
2641 skb->data_len += skb_shinfo(skb)->frags[i].size;
2642 i++;
2643 skb_shinfo(skb)->nr_frags = i;
2644 }
2645
2646 while (i < frags) {
2647 int rem;
2648
2649 if (i == 0)
2650 break;
2651
2652 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2653 if (rem == 0)
2654 break;
2655
2656 skb_shinfo(skb)->frags[i - 1].size -= rem;
2657
Luiz Capitulino222f1802006-03-20 22:16:13 -08002658 skb_shinfo(skb)->frags[i] =
2659 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002661 skb_shinfo(skb)->frags[i].page =
2662 skb_shinfo(skb)->frags[i - 1].page;
2663 skb_shinfo(skb)->frags[i].page_offset +=
2664 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 skb_shinfo(skb)->frags[i].size = rem;
2666 i++;
2667 skb_shinfo(skb)->nr_frags = i;
2668 }
2669 }
2670
Luiz Capitulino222f1802006-03-20 22:16:13 -08002671 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Luiz Capitulino222f1802006-03-20 22:16:13 -08002673 if (pgh) {
2674 struct timeval timestamp;
2675
2676 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2677 pgh->seq_num = htonl(pkt_dev->seq_num);
2678
2679 do_gettimeofday(&timestamp);
2680 pgh->tv_sec = htonl(timestamp.tv_sec);
2681 pgh->tv_usec = htonl(timestamp.tv_usec);
2682 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002683
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002684#ifdef CONFIG_XFRM
2685 if (!process_ipsec(pkt_dev, skb, protocol))
2686 return NULL;
2687#endif
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 return skb;
2690}
2691
2692/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002693 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2695 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002696 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 * Should be candidate for net/ipv4/utils.c
2698 * --ro
2699 */
2700
Luiz Capitulino222f1802006-03-20 22:16:13 -08002701static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
2703 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002704 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 unsigned long u;
2706 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002707 unsigned int prefixlen = 0;
2708 unsigned int suffixlen = 0;
Al Viro252e3342006-11-14 20:48:11 -08002709 __be32 tmp;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002710 char *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Luiz Capitulino222f1802006-03-20 22:16:13 -08002712 for (i = 0; i < 16; i++)
2713 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 for (;;) {
2716 if (*s == ':') {
2717 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002718 if (s[1] == ':') { /* Found "::", skip to part 2 */
2719 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 len++;
2721 break;
2722 }
2723 s++;
2724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002726 u = simple_strtoul(s, &pos, 16);
2727 i = pos - s;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002728 if (!i)
2729 return 0;
2730 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
2732 /* the last 4 bytes may be written as IPv4 address */
2733
2734 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002735 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2736 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
2738 ip[prefixlen++] = (u >> 8);
2739 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002740 s += i;
2741 len += i;
2742 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return len;
2744 }
2745
2746/* part 2, after "::" */
2747 for (;;) {
2748 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002749 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 break;
2751 s++;
2752 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002753 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 break;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002755
2756 u = simple_strtol(s, &pos, 16);
2757 i = pos - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002759 if (*s)
2760 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 break;
2762 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002763 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002765 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2766 sizeof(tmp));
2767 suffixlen += 4;
2768 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 break;
2770 }
2771 suffix[suffixlen++] = (u >> 8);
2772 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002773 s += i;
2774 len += i;
2775 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 break;
2777 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002778 for (i = 0; i < suffixlen; i++)
2779 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return len;
2781}
2782
Luiz Capitulino222f1802006-03-20 22:16:13 -08002783static char tohex(char hexdigit)
2784{
2785 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786}
2787
Luiz Capitulino222f1802006-03-20 22:16:13 -08002788static int fmt_xlong(char *s, unsigned int i)
2789{
2790 char *bak = s;
2791 *s = tohex((i >> 12) & 0xf);
2792 if (s != bak || *s != '0')
2793 ++s;
2794 *s = tohex((i >> 8) & 0xf);
2795 if (s != bak || *s != '0')
2796 ++s;
2797 *s = tohex((i >> 4) & 0xf);
2798 if (s != bak || *s != '0')
2799 ++s;
2800 *s = tohex(i & 0xf);
2801 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
Luiz Capitulino222f1802006-03-20 22:16:13 -08002804static unsigned int fmt_ip6(char *s, const char ip[16])
2805{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 unsigned int len;
2807 unsigned int i;
2808 unsigned int temp;
2809 unsigned int compressing;
2810 int j;
2811
Luiz Capitulino222f1802006-03-20 22:16:13 -08002812 len = 0;
2813 compressing = 0;
2814 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
2816#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002817 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2818 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2819 temp = strlen(s);
2820 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 }
2822#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002823 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2824 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 if (temp == 0) {
2826 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002827 compressing = 1;
2828 if (j == 0) {
2829 *s++ = ':';
2830 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832 }
2833 } else {
2834 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002835 compressing = 0;
2836 *s++ = ':';
2837 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002839 i = fmt_xlong(s, temp);
2840 len += i;
2841 s += i;
2842 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 *s++ = ':';
2844 ++len;
2845 }
2846 }
2847 }
2848 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002849 *s++ = ':';
2850 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002852 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 return len;
2854}
2855
Luiz Capitulino222f1802006-03-20 22:16:13 -08002856static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2857 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
2859 struct sk_buff *skb = NULL;
2860 __u8 *eth;
2861 struct udphdr *udph;
2862 int datalen;
2863 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002864 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002865 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002866 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002867 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2868 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2869 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2870 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002871 u16 queue_map;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002872
2873 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002874 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002875
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002876 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002877 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002878
Robert Olsson64053be2005-06-26 15:27:10 -07002879 /* Update any of the values, used when we're incrementing various
2880 * fields.
2881 */
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002882 queue_map = pkt_dev->cur_queue_map;
Robert Olsson64053be2005-06-26 15:27:10 -07002883 mod_cur_headers(pkt_dev);
2884
Stephen Hemmingere4707572009-08-27 13:55:13 +00002885 skb = __netdev_alloc_skb(odev,
2886 pkt_dev->cur_pkt_size + 64
2887 + 16 + pkt_dev->pkt_overhead, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 if (!skb) {
2889 sprintf(pkt_dev->result, "No memory");
2890 return NULL;
2891 }
2892
2893 skb_reserve(skb, 16);
2894
2895 /* Reserve for ethernet and IP header */
2896 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002897 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2898 if (pkt_dev->nr_labels)
2899 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002900
2901 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002902 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002903 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002904 *svlan_tci = build_tci(pkt_dev->svlan_id,
2905 pkt_dev->svlan_cfi,
2906 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002907 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002908 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002909 }
2910 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002911 *vlan_tci = build_tci(pkt_dev->vlan_id,
2912 pkt_dev->vlan_cfi,
2913 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002914 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002915 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002916 }
2917
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002918 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002919 skb->transport_header = skb->network_header + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002920 skb_put(skb, sizeof(struct ipv6hdr) + sizeof(struct udphdr));
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002921 skb_set_queue_mapping(skb, queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002922 iph = ipv6_hdr(skb);
2923 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002926 *(__be16 *) & eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002927
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002928 /* Eth + IPh + UDPh + mpls */
2929 datalen = pkt_dev->cur_pkt_size - 14 -
2930 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002931 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Luiz Capitulino222f1802006-03-20 22:16:13 -08002933 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 datalen = sizeof(struct pktgen_hdr);
2935 if (net_ratelimit())
Luiz Capitulino222f1802006-03-20 22:16:13 -08002936 printk(KERN_INFO "pktgen: increased datalen to %d\n",
2937 datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 }
2939
2940 udph->source = htons(pkt_dev->cur_udp_src);
2941 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002942 udph->len = htons(datalen + sizeof(struct udphdr));
2943 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002945 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002947 if (pkt_dev->traffic_class) {
2948 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002949 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002950 }
2951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 iph->hop_limit = 32;
2953
2954 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
2955 iph->nexthdr = IPPROTO_UDP;
2956
2957 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
2958 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
2959
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002960 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002961 pkt_dev->pkt_overhead);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002962 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 skb->dev = odev;
2964 skb->pkt_type = PACKET_HOST;
2965
Luiz Capitulino222f1802006-03-20 22:16:13 -08002966 if (pkt_dev->nfrags <= 0)
2967 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 else {
2969 int frags = pkt_dev->nfrags;
2970 int i;
2971
Luiz Capitulino222f1802006-03-20 22:16:13 -08002972 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 if (frags > MAX_SKB_FRAGS)
2975 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002976 if (datalen > frags * PAGE_SIZE) {
2977 skb_put(skb, datalen - frags * PAGE_SIZE);
2978 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 }
2980
2981 i = 0;
2982 while (datalen > 0) {
2983 struct page *page = alloc_pages(GFP_KERNEL, 0);
2984 skb_shinfo(skb)->frags[i].page = page;
2985 skb_shinfo(skb)->frags[i].page_offset = 0;
2986 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002987 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 datalen -= skb_shinfo(skb)->frags[i].size;
2989 skb->len += skb_shinfo(skb)->frags[i].size;
2990 skb->data_len += skb_shinfo(skb)->frags[i].size;
2991 i++;
2992 skb_shinfo(skb)->nr_frags = i;
2993 }
2994
2995 while (i < frags) {
2996 int rem;
2997
2998 if (i == 0)
2999 break;
3000
3001 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
3002 if (rem == 0)
3003 break;
3004
3005 skb_shinfo(skb)->frags[i - 1].size -= rem;
3006
Luiz Capitulino222f1802006-03-20 22:16:13 -08003007 skb_shinfo(skb)->frags[i] =
3008 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003010 skb_shinfo(skb)->frags[i].page =
3011 skb_shinfo(skb)->frags[i - 1].page;
3012 skb_shinfo(skb)->frags[i].page_offset +=
3013 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 skb_shinfo(skb)->frags[i].size = rem;
3015 i++;
3016 skb_shinfo(skb)->nr_frags = i;
3017 }
3018 }
3019
Luiz Capitulino222f1802006-03-20 22:16:13 -08003020 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 /* should we update cloned packets too ? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003022 if (pgh) {
3023 struct timeval timestamp;
3024
3025 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
3026 pgh->seq_num = htonl(pkt_dev->seq_num);
3027
3028 do_gettimeofday(&timestamp);
3029 pgh->tv_sec = htonl(timestamp.tv_sec);
3030 pgh->tv_usec = htonl(timestamp.tv_usec);
3031 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003032 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 return skb;
3035}
3036
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003037static struct sk_buff *fill_packet(struct net_device *odev,
3038 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003040 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return fill_packet_ipv6(odev, pkt_dev);
3042 else
3043 return fill_packet_ipv4(odev, pkt_dev);
3044}
3045
Luiz Capitulino222f1802006-03-20 22:16:13 -08003046static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003048 pkt_dev->seq_num = 1;
3049 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003051 pkt_dev->tx_bytes = 0;
3052 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053}
3054
3055/* Set up structure for sending pkts, clear counters */
3056
3057static void pktgen_run(struct pktgen_thread *t)
3058{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003059 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 int started = 0;
3061
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003062 pr_debug("pktgen: entering pktgen_run. %p\n", t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
3064 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003065 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
3067 /*
3068 * setup odev and create initial packet.
3069 */
3070 pktgen_setup_inject(pkt_dev);
3071
Luiz Capitulino222f1802006-03-20 22:16:13 -08003072 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003074 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003076 pkt_dev->started_at =
3077 pkt_dev->next_tx = ktime_now();
3078
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003079 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 strcpy(pkt_dev->result, "Starting");
3082 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003083 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 strcpy(pkt_dev->result, "Error starting");
3085 }
3086 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003087 if (started)
3088 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089}
3090
3091static void pktgen_stop_all_threads_ifs(void)
3092{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003093 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003095 pr_debug("pktgen: entering pktgen_stop_all_threads_ifs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003097 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003098
3099 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003100 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003101
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003102 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103}
3104
Stephen Hemminger648fda72009-08-27 13:55:07 +00003105static int thread_is_running(const struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106{
Stephen Hemminger648fda72009-08-27 13:55:07 +00003107 const struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003109 list_for_each_entry(pkt_dev, &t->if_list, list)
Stephen Hemminger648fda72009-08-27 13:55:07 +00003110 if (pkt_dev->running)
3111 return 1;
3112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113}
3114
Luiz Capitulino222f1802006-03-20 22:16:13 -08003115static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003117 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Luiz Capitulino222f1802006-03-20 22:16:13 -08003119 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Luiz Capitulino222f1802006-03-20 22:16:13 -08003121 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Luiz Capitulino222f1802006-03-20 22:16:13 -08003123 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Luiz Capitulino222f1802006-03-20 22:16:13 -08003125 if (signal_pending(current))
3126 goto signal;
3127 if_lock(t);
3128 }
3129 if_unlock(t);
3130 return 1;
3131signal:
3132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133}
3134
3135static int pktgen_wait_all_threads_run(void)
3136{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003137 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003139
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003140 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003141
3142 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003144 if (sig == 0)
3145 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003147
3148 if (sig == 0)
3149 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003151
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003152 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 return sig;
3154}
3155
3156static void pktgen_run_all_threads(void)
3157{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003158 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003160 pr_debug("pktgen: entering pktgen_run_all_threads.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003162 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003164 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003166
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003167 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Luiz Capitulino222f1802006-03-20 22:16:13 -08003169 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 pktgen_wait_all_threads_run();
3172}
3173
Jesse Brandeburgeb37b412008-11-10 16:48:03 -08003174static void pktgen_reset_all_threads(void)
3175{
3176 struct pktgen_thread *t;
3177
3178 pr_debug("pktgen: entering pktgen_reset_all_threads.\n");
3179
3180 mutex_lock(&pktgen_thread_lock);
3181
3182 list_for_each_entry(t, &pktgen_threads, th_list)
3183 t->control |= (T_REMDEVALL);
3184
3185 mutex_unlock(&pktgen_thread_lock);
3186
3187 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
3188
3189 pktgen_wait_all_threads_run();
3190}
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3193{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003194 __u64 bps, mbps, pps;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003195 char *p = pkt_dev->result;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003196 ktime_t elapsed = ktime_sub(pkt_dev->stopped_at,
3197 pkt_dev->started_at);
3198 ktime_t idle = ns_to_ktime(pkt_dev->idle_acc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003200 p += sprintf(p, "OK: %llu(c%llu+d%llu) nsec, %llu (%dbyte,%dfrags)\n",
3201 (unsigned long long)ktime_to_us(elapsed),
3202 (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)),
3203 (unsigned long long)ktime_to_us(idle),
Luiz Capitulino222f1802006-03-20 22:16:13 -08003204 (unsigned long long)pkt_dev->sofar,
3205 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003207 pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC,
3208 ktime_to_ns(elapsed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Luiz Capitulino222f1802006-03-20 22:16:13 -08003210 bps = pps * 8 * pkt_dev->cur_pkt_size;
3211
3212 mbps = bps;
3213 do_div(mbps, 1000000);
3214 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3215 (unsigned long long)pps,
3216 (unsigned long long)mbps,
3217 (unsigned long long)bps,
3218 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221/* Set stopped-at timer, remove from running list, do counters & statistics */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003222static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003224 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003225
Luiz Capitulino222f1802006-03-20 22:16:13 -08003226 if (!pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003227 printk(KERN_WARNING "pktgen: interface: %s is already "
3228 "stopped\n", pkt_dev->odev->name);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003229 return -EINVAL;
3230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Stephen Hemminger3bda06a2009-08-27 13:55:10 +00003232 kfree_skb(pkt_dev->skb);
3233 pkt_dev->skb = NULL;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003234 pkt_dev->stopped_at = ktime_now();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003235 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003237 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Luiz Capitulino222f1802006-03-20 22:16:13 -08003239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240}
3241
Luiz Capitulino222f1802006-03-20 22:16:13 -08003242static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003244 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 if_lock(t);
3247
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003248 list_for_each_entry(pkt_dev, &t->if_list, list) {
3249 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003250 continue;
3251 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003252 best = pkt_dev;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003253 else if (ktime_lt(pkt_dev->next_tx, best->next_tx))
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003254 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 }
3256 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003257 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258}
3259
Luiz Capitulino222f1802006-03-20 22:16:13 -08003260static void pktgen_stop(struct pktgen_thread *t)
3261{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003262 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003264 pr_debug("pktgen: entering pktgen_stop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Luiz Capitulino222f1802006-03-20 22:16:13 -08003266 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003268 list_for_each_entry(pkt_dev, &t->if_list, list) {
3269 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Luiz Capitulino222f1802006-03-20 22:16:13 -08003272 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273}
3274
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003275/*
3276 * one of our devices needs to be removed - find it
3277 * and remove it
3278 */
3279static void pktgen_rem_one_if(struct pktgen_thread *t)
3280{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003281 struct list_head *q, *n;
3282 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003283
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003284 pr_debug("pktgen: entering pktgen_rem_one_if\n");
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003285
3286 if_lock(t);
3287
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003288 list_for_each_safe(q, n, &t->if_list) {
3289 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003290
Luiz Capitulino222f1802006-03-20 22:16:13 -08003291 if (!cur->removal_mark)
3292 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003293
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003294 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003295 cur->skb = NULL;
3296
3297 pktgen_remove_device(t, cur);
3298
3299 break;
3300 }
3301
3302 if_unlock(t);
3303}
3304
Luiz Capitulino222f1802006-03-20 22:16:13 -08003305static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003307 struct list_head *q, *n;
3308 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003309
3310 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003311
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003312 pr_debug("pktgen: entering pktgen_rem_all_ifs\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003313 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003315 list_for_each_safe(q, n, &t->if_list) {
3316 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003317
Wei Yongjun86dc1ad2009-02-25 00:31:54 +00003318 kfree_skb(cur->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003319 cur->skb = NULL;
3320
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 pktgen_remove_device(t, cur);
3322 }
3323
Luiz Capitulino222f1802006-03-20 22:16:13 -08003324 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325}
3326
Luiz Capitulino222f1802006-03-20 22:16:13 -08003327static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003329 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
David S. Milleree74baa2007-01-01 20:51:53 -08003331 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003333 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003335 list_del(&t->th_list);
3336
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003337 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338}
3339
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003340static void idle(struct pktgen_dev *pkt_dev)
3341{
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003342 ktime_t idle_start = ktime_now();
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003343
3344 if (need_resched())
3345 schedule();
3346 else
3347 cpu_relax();
3348
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003349 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(), idle_start));
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003350}
3351
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003352
Stephen Hemminger475ac1e2009-08-27 13:55:08 +00003353static void pktgen_xmit(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354{
Stephen Hemminger00829822008-11-20 20:14:53 -08003355 struct net_device *odev = pkt_dev->odev;
3356 int (*xmit)(struct sk_buff *, struct net_device *)
3357 = odev->netdev_ops->ndo_start_xmit;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003358 struct netdev_queue *txq;
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003359 u16 queue_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 int ret;
3361
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003362 if (pkt_dev->delay) {
3363 if (ktime_lt(ktime_now(), pkt_dev->next_tx))
3364 spin(pkt_dev, pkt_dev->next_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
3366 /* This is max DELAY, this has special meaning of
3367 * "never transmit"
3368 */
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003369 if (pkt_dev->delay == ULLONG_MAX) {
3370 pkt_dev->next_tx = ktime_add_ns(ktime_now(), ULONG_MAX);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003371 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 }
3373 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003374
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003375 if (!pkt_dev->skb) {
3376 set_cur_queue_map(pkt_dev);
3377 queue_map = pkt_dev->cur_queue_map;
3378 } else {
3379 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3380 }
3381
3382 txq = netdev_get_tx_queue(odev, queue_map);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003383 /* Did we saturate the queue already? */
3384 if (netif_tx_queue_stopped(txq) || netif_tx_queue_frozen(txq)) {
3385 /* If device is down, then all queues are permnantly frozen */
3386 if (netif_running(odev))
3387 idle(pkt_dev);
3388 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 pktgen_stop_device(pkt_dev);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003390 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003392
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003393 if (!pkt_dev->skb || (pkt_dev->last_ok &&
3394 ++pkt_dev->clone_count >= pkt_dev->clone_skb)) {
3395 /* build a new pkt */
3396 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003397
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003398 pkt_dev->skb = fill_packet(odev, pkt_dev);
3399 if (pkt_dev->skb == NULL) {
3400 printk(KERN_ERR "pktgen: ERROR: couldn't "
3401 "allocate skb in fill_packet.\n");
3402 schedule();
3403 pkt_dev->clone_count--; /* back out increment, OOM */
3404 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
Stephen Hemminger7d7bb1c2009-08-27 13:55:12 +00003406
3407 pkt_dev->allocated_skbs++;
3408 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003410
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003411 /* fill_packet() might have changed the queue */
3412 queue_map = skb_get_queue_mapping(pkt_dev->skb);
3413 txq = netdev_get_tx_queue(odev, queue_map);
3414
3415 __netif_tx_lock_bh(txq);
Stephen Hemminger3791dec2009-08-27 13:55:11 +00003416 if (unlikely(netif_tx_queue_stopped(txq) || netif_tx_queue_frozen(txq)))
3417 pkt_dev->last_ok = 0;
3418 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 atomic_inc(&(pkt_dev->skb->users));
Stephen Hemminger5b8db2f2009-08-27 13:55:14 +00003420
3421 retry_now:
Stephen Hemminger00829822008-11-20 20:14:53 -08003422 ret = (*xmit)(pkt_dev->skb, odev);
Stephen Hemminger5b8db2f2009-08-27 13:55:14 +00003423 switch (ret) {
3424 case NETDEV_TX_OK:
Eric Dumazet08baf562009-05-25 22:58:01 -07003425 txq_trans_update(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003426 pkt_dev->last_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 pkt_dev->sofar++;
3428 pkt_dev->seq_num++;
3429 pkt_dev->tx_bytes += pkt_dev->cur_pkt_size;
Stephen Hemminger5b8db2f2009-08-27 13:55:14 +00003430 break;
3431 case NETDEV_TX_LOCKED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 cpu_relax();
3433 goto retry_now;
Stephen Hemminger5b8db2f2009-08-27 13:55:14 +00003434 default: /* Drivers are not supposed to return other values! */
3435 if (net_ratelimit())
3436 pr_info("pktgen: %s xmit error: %d\n",
3437 odev->name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 pkt_dev->errors++;
Stephen Hemminger5b8db2f2009-08-27 13:55:14 +00003439 /* fallthru */
3440 case NETDEV_TX_BUSY:
3441 /* Retry it next time */
3442 atomic_dec(&(pkt_dev->skb->users));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 pkt_dev->last_ok = 0;
3444 }
3445
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003446 if (pkt_dev->delay)
3447 pkt_dev->next_tx = ktime_add_ns(ktime_now(),
3448 pkt_dev->delay);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003449 }
David S. Millerfd2ea0a2008-07-17 01:56:23 -07003450 __netif_tx_unlock_bh(txq);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 /* If pkt_dev->count is zero, then run forever */
3453 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
3454 if (atomic_read(&(pkt_dev->skb->users)) != 1) {
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003455 ktime_t idle_start = ktime_now();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3457 if (signal_pending(current)) {
3458 break;
3459 }
3460 schedule();
3461 }
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003462 pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_now(),
3463 idle_start));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 /* Done with this */
3467 pktgen_stop_device(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003468 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003469}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003471/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 * Main loop of the thread goes here
3473 */
3474
David S. Milleree74baa2007-01-01 20:51:53 -08003475static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
3477 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003478 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003479 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
David S. Milleree74baa2007-01-01 20:51:53 -08003482 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
3484 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003485 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003487 pr_debug("pktgen: starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
David S. Milleree74baa2007-01-01 20:51:53 -08003489 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003490
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003491 set_freezable();
3492
David S. Milleree74baa2007-01-01 20:51:53 -08003493 while (!kthread_should_stop()) {
3494 pkt_dev = next_to_run(t);
3495
3496 if (!pkt_dev &&
3497 (t->control & (T_STOP | T_RUN | T_REMDEVALL | T_REMDEV))
3498 == 0) {
3499 prepare_to_wait(&(t->queue), &wait,
3500 TASK_INTERRUPTIBLE);
3501 schedule_timeout(HZ / 10);
3502 finish_wait(&(t->queue), &wait);
3503 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003504
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 __set_current_state(TASK_RUNNING);
3506
Robert Olssonb1639112007-08-28 15:46:58 -07003507 if (pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 pktgen_xmit(pkt_dev);
3509
Luiz Capitulino222f1802006-03-20 22:16:13 -08003510 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 pktgen_stop(t);
3512 t->control &= ~(T_STOP);
3513 }
3514
Luiz Capitulino222f1802006-03-20 22:16:13 -08003515 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 pktgen_run(t);
3517 t->control &= ~(T_RUN);
3518 }
3519
Luiz Capitulino222f1802006-03-20 22:16:13 -08003520 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003522 t->control &= ~(T_REMDEVALL);
3523 }
3524
Luiz Capitulino222f1802006-03-20 22:16:13 -08003525 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003526 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 t->control &= ~(T_REMDEV);
3528 }
3529
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003530 try_to_freeze();
3531
David S. Milleree74baa2007-01-01 20:51:53 -08003532 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003535 pr_debug("pktgen: %s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003536 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003538 pr_debug("pktgen: %s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003539 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003541 pr_debug("pktgen: %s removing thread.\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003542 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003543
David S. Milleree74baa2007-01-01 20:51:53 -08003544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545}
3546
Luiz Capitulino222f1802006-03-20 22:16:13 -08003547static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
3548 const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003550 struct pktgen_dev *p, *pkt_dev = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003551 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003553 list_for_each_entry(p, &t->if_list, list)
Stephen Hemminger39df2322007-03-04 16:11:51 -08003554 if (strncmp(p->odev->name, ifname, IFNAMSIZ) == 0) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003555 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003556 break;
3557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
Luiz Capitulino222f1802006-03-20 22:16:13 -08003559 if_unlock(t);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003560 pr_debug("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003561 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562}
3563
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003564/*
3565 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 */
3567
Luiz Capitulino222f1802006-03-20 22:16:13 -08003568static int add_dev_to_thread(struct pktgen_thread *t,
3569 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570{
3571 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
Luiz Capitulino222f1802006-03-20 22:16:13 -08003573 if_lock(t);
3574
3575 if (pkt_dev->pg_thread) {
David S. Miller25a8b252007-07-30 16:11:48 -07003576 printk(KERN_ERR "pktgen: ERROR: already assigned "
3577 "to a thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003578 rv = -EBUSY;
3579 goto out;
3580 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003581
3582 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003583 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 pkt_dev->running = 0;
3585
Luiz Capitulino222f1802006-03-20 22:16:13 -08003586out:
3587 if_unlock(t);
3588 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589}
3590
3591/* Called under thread lock */
3592
Luiz Capitulino222f1802006-03-20 22:16:13 -08003593static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003595 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003596 int err;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003597
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 /* We don't allow a device to be on several threads */
3599
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003600 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3601 if (pkt_dev) {
David S. Miller25a8b252007-07-30 16:11:48 -07003602 printk(KERN_ERR "pktgen: ERROR: interface already used.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003603 return -EBUSY;
3604 }
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003605
3606 pkt_dev = kzalloc(sizeof(struct pktgen_dev), GFP_KERNEL);
3607 if (!pkt_dev)
3608 return -ENOMEM;
3609
Luiz Capitulino222f1802006-03-20 22:16:13 -08003610 pkt_dev->flows = vmalloc(MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003611 if (pkt_dev->flows == NULL) {
3612 kfree(pkt_dev);
3613 return -ENOMEM;
3614 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003615 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003616
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003617 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003618 pkt_dev->min_pkt_size = ETH_ZLEN;
3619 pkt_dev->max_pkt_size = ETH_ZLEN;
3620 pkt_dev->nfrags = 0;
3621 pkt_dev->clone_skb = pg_clone_skb_d;
Stephen Hemmingerfd29cf72009-08-27 13:55:16 +00003622 pkt_dev->delay = pg_delay_d;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003623 pkt_dev->count = pg_count_d;
3624 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003625 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003626 pkt_dev->udp_src_max = 9;
3627 pkt_dev->udp_dst_min = 9;
3628 pkt_dev->udp_dst_max = 9;
3629
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003630 pkt_dev->vlan_p = 0;
3631 pkt_dev->vlan_cfi = 0;
3632 pkt_dev->vlan_id = 0xffff;
3633 pkt_dev->svlan_p = 0;
3634 pkt_dev->svlan_cfi = 0;
3635 pkt_dev->svlan_id = 0xffff;
3636
Stephen Hemminger39df2322007-03-04 16:11:51 -08003637 err = pktgen_setup_dev(pkt_dev, ifname);
3638 if (err)
3639 goto out1;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003640
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003641 pkt_dev->entry = proc_create_data(ifname, 0600, pg_proc_dir,
3642 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003643 if (!pkt_dev->entry) {
David S. Miller25a8b252007-07-30 16:11:48 -07003644 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003645 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003646 err = -EINVAL;
3647 goto out2;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003648 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003649#ifdef CONFIG_XFRM
3650 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3651 pkt_dev->ipsproto = IPPROTO_ESP;
3652#endif
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003653
3654 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003655out2:
3656 dev_put(pkt_dev->odev);
3657out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003658#ifdef CONFIG_XFRM
3659 free_SAs(pkt_dev);
3660#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003661 vfree(pkt_dev->flows);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003662 kfree(pkt_dev);
3663 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664}
3665
David S. Milleree74baa2007-01-01 20:51:53 -08003666static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003668 struct pktgen_thread *t;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003669 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003670 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Luiz Capitulino222f1802006-03-20 22:16:13 -08003672 t = kzalloc(sizeof(struct pktgen_thread), GFP_KERNEL);
3673 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07003674 printk(KERN_ERR "pktgen: ERROR: out of memory, can't "
3675 "create new thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003676 return -ENOMEM;
3677 }
3678
Luiz Capitulino222f1802006-03-20 22:16:13 -08003679 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003681
David S. Milleree74baa2007-01-01 20:51:53 -08003682 INIT_LIST_HEAD(&t->if_list);
3683
3684 list_add_tail(&t->th_list, &pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003685 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003686
3687 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3688 if (IS_ERR(p)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003689 printk(KERN_ERR "pktgen: kernel_thread() failed "
3690 "for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003691 list_del(&t->th_list);
3692 kfree(t);
3693 return PTR_ERR(p);
3694 }
3695 kthread_bind(p, cpu);
3696 t->tsk = p;
3697
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003698 pe = proc_create_data(t->tsk->comm, 0600, pg_proc_dir,
3699 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003700 if (!pe) {
David S. Miller25a8b252007-07-30 16:11:48 -07003701 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003702 PG_PROC_DIR, t->tsk->comm);
3703 kthread_stop(p);
3704 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003705 kfree(t);
3706 return -EINVAL;
3707 }
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003708
David S. Milleree74baa2007-01-01 20:51:53 -08003709 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003710 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
3712 return 0;
3713}
3714
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003715/*
3716 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003718static void _rem_dev_from_if_list(struct pktgen_thread *t,
3719 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003721 struct list_head *q, *n;
3722 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003724 list_for_each_safe(q, n, &t->if_list) {
3725 p = list_entry(q, struct pktgen_dev, list);
3726 if (p == pkt_dev)
3727 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 }
3729}
3730
Luiz Capitulino222f1802006-03-20 22:16:13 -08003731static int pktgen_remove_device(struct pktgen_thread *t,
3732 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733{
3734
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003735 pr_debug("pktgen: remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
Luiz Capitulino222f1802006-03-20 22:16:13 -08003737 if (pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003738 printk(KERN_WARNING "pktgen: WARNING: trying to remove a "
3739 "running interface, stopping it now.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003740 pktgen_stop_device(pkt_dev);
3741 }
3742
3743 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
3745 if (pkt_dev->odev) {
3746 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003747 pkt_dev->odev = NULL;
3748 }
3749
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 /* And update the thread if_list */
3751
3752 _rem_dev_from_if_list(t, pkt_dev);
3753
Stephen Hemminger39df2322007-03-04 16:11:51 -08003754 if (pkt_dev->entry)
3755 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003757#ifdef CONFIG_XFRM
3758 free_SAs(pkt_dev);
3759#endif
Figo.zhang1d0ebfe2009-06-08 00:40:35 -07003760 vfree(pkt_dev->flows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763}
3764
Luiz Capitulino222f1802006-03-20 22:16:13 -08003765static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766{
3767 int cpu;
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003768 struct proc_dir_entry *pe;
3769
David S. Miller25a8b252007-07-30 16:11:48 -07003770 printk(KERN_INFO "%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003772 pg_proc_dir = proc_mkdir(PG_PROC_DIR, init_net.proc_net);
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003773 if (!pg_proc_dir)
3774 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
Wang Chen25296d52008-02-28 14:11:49 -08003776 pe = proc_create(PGCTRL, 0600, pg_proc_dir, &pktgen_fops);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003777 if (pe == NULL) {
David S. Miller25a8b252007-07-30 16:11:48 -07003778 printk(KERN_ERR "pktgen: ERROR: cannot create %s "
3779 "procfs entry.\n", PGCTRL);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003780 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003781 return -EINVAL;
3782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 /* Register us to receive netdevice events */
3785 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003786
John Hawkes670c02c2005-10-13 09:30:31 -07003787 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003788 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
David S. Milleree74baa2007-01-01 20:51:53 -08003790 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003791 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07003792 printk(KERN_WARNING "pktgen: WARNING: Cannot create "
3793 "thread for cpu %d (%d)\n", cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003794 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003795
3796 if (list_empty(&pktgen_threads)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003797 printk(KERN_ERR "pktgen: ERROR: Initialization failed for "
3798 "all threads\n");
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003799 unregister_netdevice_notifier(&pktgen_notifier_block);
3800 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003801 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003802 return -ENODEV;
3803 }
3804
Luiz Capitulino222f1802006-03-20 22:16:13 -08003805 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806}
3807
3808static void __exit pg_cleanup(void)
3809{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003810 struct pktgen_thread *t;
3811 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 wait_queue_head_t queue;
3813 init_waitqueue_head(&queue);
3814
Luiz Capitulino222f1802006-03-20 22:16:13 -08003815 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003817 list_for_each_safe(q, n, &pktgen_threads) {
3818 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003819 kthread_stop(t->tsk);
3820 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Luiz Capitulino222f1802006-03-20 22:16:13 -08003823 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 unregister_netdevice_notifier(&pktgen_notifier_block);
3825
Luiz Capitulino222f1802006-03-20 22:16:13 -08003826 /* Clean up proc file system */
Stephen Hemmingerd50a6b52005-10-14 15:42:33 -07003827 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003828 proc_net_remove(&init_net, PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829}
3830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831module_init(pg_init);
3832module_exit(pg_cleanup);
3833
3834MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se");
3835MODULE_DESCRIPTION("Packet Generator tool");
3836MODULE_LICENSE("GPL");
3837module_param(pg_count_d, int, 0);
3838module_param(pg_delay_d, int, 0);
3839module_param(pg_clone_skb_d, int, 0);
3840module_param(debug, int, 0);