blob: fdf537707e51afd9099df2693d4e5f5af668ba5a [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 Hemmingerd50a6b562005-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 Olssonb1639112007-08-28 15:46:58 -0700171#define VERSION "pktgen v2.69: 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193/* Thread control flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800194#define T_TERMINATE (1<<0)
195#define T_STOP (1<<1) /* Stop run */
196#define T_RUN (1<<2) /* Start run */
197#define T_REMDEVALL (1<<3) /* Remove all devs */
198#define T_REMDEV (1<<4) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/* If lock -- can be removed after some work */
201#define if_lock(t) spin_lock(&(t->if_lock));
202#define if_unlock(t) spin_unlock(&(t->if_lock));
203
204/* Used to help with determining the pkts on receive */
205#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700206#define PG_PROC_DIR "pktgen"
207#define PGCTRL "pgctrl"
208static struct proc_dir_entry *pg_proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210#define MAX_CFLOWS 65536
211
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700212#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
213#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
214
Luiz Capitulino222f1802006-03-20 22:16:13 -0800215struct flow_state {
Al Viro252e3342006-11-14 20:48:11 -0800216 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800217 int count;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700218#ifdef CONFIG_XFRM
219 struct xfrm_state *x;
220#endif
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700221 __u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700224/* flow flag bits */
225#define F_INIT (1<<0) /* flow has been initialized */
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227struct pktgen_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /*
229 * Try to keep frequent/infrequent used vars. separated.
230 */
Stephen Hemminger39df2322007-03-04 16:11:51 -0800231 struct proc_dir_entry *entry; /* proc file */
232 struct pktgen_thread *pg_thread;/* the owner */
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800233 struct list_head list; /* Used for chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Luiz Capitulino222f1802006-03-20 22:16:13 -0800235 int running; /* if this changes to false, the test will stop */
236
237 /* If min != max, then we will either do a linear iteration, or
238 * we will do a random selection from within the range.
239 */
240 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800241 int removal_mark; /* non-zero => the device is marked for
242 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Luiz Capitulino222f1802006-03-20 22:16:13 -0800244 int min_pkt_size; /* = ETH_ZLEN; */
245 int max_pkt_size; /* = ETH_ZLEN; */
Jamal Hadi Salim16dab722007-07-02 22:39:50 -0700246 int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800247 int nfrags;
248 __u32 delay_us; /* Default delay */
249 __u32 delay_ns;
250 __u64 count; /* Default No packets to send */
251 __u64 sofar; /* How many pkts we've sent so far */
252 __u64 tx_bytes; /* How many bytes we've transmitted */
253 __u64 errors; /* Errors when trying to transmit, pkts will be re-sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Luiz Capitulino222f1802006-03-20 22:16:13 -0800255 /* runtime counters relating to clone_skb */
256 __u64 next_tx_us; /* timestamp of when to tx next */
257 __u32 next_tx_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Luiz Capitulino222f1802006-03-20 22:16:13 -0800259 __u64 allocated_skbs;
260 __u32 clone_count;
261 int last_ok; /* Was last skb sent?
262 * Or a failed transmit of some sort? This will keep
263 * sequence numbers in order, for example.
264 */
265 __u64 started_at; /* micro-seconds */
266 __u64 stopped_at; /* micro-seconds */
267 __u64 idle_acc; /* micro-seconds */
268 __u32 seq_num;
269
270 int clone_skb; /* Use multiple SKBs during packet gen. If this number
271 * is greater than 1, then that many copies of the same
272 * packet will be sent before a new packet is allocated.
273 * For instance, if you want to send 1024 identical packets
274 * before creating a new packet, set clone_skb to 1024.
275 */
276
277 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
278 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
279 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
280 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
281
282 struct in6_addr in6_saddr;
283 struct in6_addr in6_daddr;
284 struct in6_addr cur_in6_daddr;
285 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800287 struct in6_addr min_in6_daddr;
288 struct in6_addr max_in6_daddr;
289 struct in6_addr min_in6_saddr;
290 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Luiz Capitulino222f1802006-03-20 22:16:13 -0800292 /* If we're doing ranges, random or incremental, then this
293 * defines the min/max for those ranges.
294 */
Al Viro252e3342006-11-14 20:48:11 -0800295 __be32 saddr_min; /* inclusive, source IP address */
296 __be32 saddr_max; /* exclusive, source IP address */
297 __be32 daddr_min; /* inclusive, dest IP address */
298 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Luiz Capitulino222f1802006-03-20 22:16:13 -0800300 __u16 udp_src_min; /* inclusive, source UDP port */
301 __u16 udp_src_max; /* exclusive, source UDP port */
302 __u16 udp_dst_min; /* inclusive, dest UDP port */
303 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700305 /* DSCP + ECN */
306 __u8 tos; /* six most significant bits of (former) IPv4 TOS are for dscp codepoint */
307 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6 (see RFC 3260, sec. 4) */
308
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800309 /* MPLS */
310 unsigned nr_labels; /* Depth of stack, 0 = no MPLS */
311 __be32 labels[MAX_MPLS_LABELS];
312
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700313 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
314 __u8 vlan_p;
315 __u8 vlan_cfi;
316 __u16 vlan_id; /* 0xffff means no vlan tag */
317
318 __u8 svlan_p;
319 __u8 svlan_cfi;
320 __u16 svlan_id; /* 0xffff means no svlan tag */
321
Luiz Capitulino222f1802006-03-20 22:16:13 -0800322 __u32 src_mac_count; /* How many MACs to iterate through */
323 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Luiz Capitulino222f1802006-03-20 22:16:13 -0800325 unsigned char dst_mac[ETH_ALEN];
326 unsigned char src_mac[ETH_ALEN];
327
328 __u32 cur_dst_mac_offset;
329 __u32 cur_src_mac_offset;
Al Viro252e3342006-11-14 20:48:11 -0800330 __be32 cur_saddr;
331 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800332 __u16 cur_udp_dst;
333 __u16 cur_udp_src;
Robert Olsson45b270f2007-08-28 15:45:55 -0700334 __u16 cur_queue_map;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800335 __u32 cur_pkt_size;
336
337 __u8 hh[14];
338 /* = {
339 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
340
341 We fill in SRC address later
342 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
343 0x08, 0x00
344 };
345 */
346 __u16 pad; /* pad out the hh struct to an even 16 bytes */
347
348 struct sk_buff *skb; /* skb we are to transmit next, mainly used for when we
349 * are transmitting the same one multiple times
350 */
351 struct net_device *odev; /* The out-going device. Note that the device should
352 * have it's pg_info pointer pointing back to this
353 * device. This will be set when the user specifies
354 * the out-going device name (not when the inject is
355 * started as it used to do.)
356 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800358 unsigned cflows; /* Concurrent flows (config) */
359 unsigned lflow; /* Flow length (config) */
360 unsigned nflows; /* accumulated flows (stats) */
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700361 unsigned curfl; /* current sequenced flow (state)*/
Robert Olsson45b270f2007-08-28 15:45:55 -0700362
363 u16 queue_map_min;
364 u16 queue_map_max;
365
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700366#ifdef CONFIG_XFRM
367 __u8 ipsmode; /* IPSEC mode (config) */
368 __u8 ipsproto; /* IPSEC type (config) */
369#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -0800370 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
373struct pktgen_hdr {
Al Viro252e3342006-11-14 20:48:11 -0800374 __be32 pgh_magic;
375 __be32 seq_num;
376 __be32 tv_sec;
377 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378};
379
380struct pktgen_thread {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800381 spinlock_t if_lock;
Luiz Capitulinoc26a8012006-03-20 22:18:16 -0800382 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800383 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800384 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800385 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Luiz Capitulino222f1802006-03-20 22:16:13 -0800387 /* Field for thread to receive "posted" events terminate, stop ifs etc. */
388
389 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int cpu;
391
Luiz Capitulino222f1802006-03-20 22:16:13 -0800392 wait_queue_head_t queue;
Denis V. Lunevd3ede322008-05-20 15:12:44 -0700393 struct completion start_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
395
396#define REMOVE 1
397#define FIND 0
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/** Convert to micro-seconds */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800400static inline __u64 tv_to_us(const struct timeval *tv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800402 __u64 us = tv->tv_usec;
403 us += (__u64) tv->tv_sec * (__u64) 1000000;
404 return us;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Ilpo Järvinen6db105d2008-01-12 03:25:00 -0800407static __u64 getCurUs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800409 struct timeval tv;
410 do_gettimeofday(&tv);
411 return tv_to_us(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414/* old include end */
415
416static char version[] __initdata = VERSION;
417
Luiz Capitulino222f1802006-03-20 22:16:13 -0800418static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
419static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
420static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
421 const char *ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
423static void pktgen_run_all_threads(void);
424static void pktgen_stop_all_threads_ifs(void);
425static int pktgen_stop_device(struct pktgen_dev *pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800426static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -0800428
Luiz Capitulino222f1802006-03-20 22:16:13 -0800429static unsigned int scan_ip6(const char *s, char ip[16]);
430static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432/* Module parameters, defaults. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800433static int pg_count_d = 1000; /* 1000 pkts by default */
Jaco Kroonf34fbb972005-12-22 12:51:46 -0800434static int pg_delay_d;
435static int pg_clone_skb_d;
436static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Luiz Capitulino222fa072006-03-20 22:24:27 -0800438static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800439static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441static struct notifier_block pktgen_notifier_block = {
442 .notifier_call = pktgen_device_event,
443};
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900446 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
448 */
449
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700450static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800451{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700452 seq_puts(seq, VERSION);
453 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Luiz Capitulino222f1802006-03-20 22:16:13 -0800456static ssize_t pgctrl_write(struct file *file, const char __user * buf,
457 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700460 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Luiz Capitulino222f1802006-03-20 22:16:13 -0800462 if (!capable(CAP_NET_ADMIN)) {
463 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700467 if (count > sizeof(data))
468 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700471 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700472 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800473 }
474 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Luiz Capitulino222f1802006-03-20 22:16:13 -0800476 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 pktgen_stop_all_threads_ifs();
478
Luiz Capitulino222f1802006-03-20 22:16:13 -0800479 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 pktgen_run_all_threads();
481
Luiz Capitulino222f1802006-03-20 22:16:13 -0800482 else
David S. Miller25a8b252007-07-30 16:11:48 -0700483 printk(KERN_WARNING "pktgen: Unknown command: %s\n", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 err = count;
486
Luiz Capitulino222f1802006-03-20 22:16:13 -0800487out:
488 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700491static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700493 return single_open(file, pgctrl_show, PDE(inode)->data);
494}
495
Arjan van de Ven9a321442007-02-12 00:55:35 -0800496static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800497 .owner = THIS_MODULE,
498 .open = pgctrl_open,
499 .read = seq_read,
500 .llseek = seq_lseek,
501 .write = pgctrl_write,
502 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700503};
504
505static int pktgen_if_show(struct seq_file *seq, void *v)
506{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800507 struct pktgen_dev *pkt_dev = seq->private;
508 __u64 sa;
509 __u64 stopped;
510 __u64 now = getCurUs();
Joe Perches0795af52007-10-03 17:59:30 -0700511 DECLARE_MAC_BUF(mac);
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,
519 " frags: %d delay: %u clone_skb: %d ifname: %s\n",
520 pkt_dev->nfrags,
521 1000 * pkt_dev->delay_us + pkt_dev->delay_ns,
Stephen Hemminger39df2322007-03-04 16:11:51 -0800522 pkt_dev->clone_skb, pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Luiz Capitulino222f1802006-03-20 22:16:13 -0800524 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
525 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Robert Olsson45b270f2007-08-28 15:45:55 -0700527 seq_printf(seq,
528 " queue_map_min: %u queue_map_max: %u\n",
529 pkt_dev->queue_map_min,
530 pkt_dev->queue_map_max);
531
Luiz Capitulino222f1802006-03-20 22:16:13 -0800532 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800534 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
535 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
536 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
537 seq_printf(seq,
538 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
539 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Luiz Capitulino222f1802006-03-20 22:16:13 -0800541 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
542 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
543 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
544 seq_printf(seq,
545 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
546 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Luiz Capitulino222f1802006-03-20 22:16:13 -0800548 } else
549 seq_printf(seq,
550 " dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n",
551 pkt_dev->dst_min, pkt_dev->dst_max, pkt_dev->src_min,
552 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700554 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Joe Perches0795af52007-10-03 17:59:30 -0700556 seq_printf(seq, "%s ",
557 print_mac(mac, is_zero_ether_addr(pkt_dev->src_mac) ?
558 pkt_dev->odev->dev_addr : pkt_dev->src_mac));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Luiz Capitulino222f1802006-03-20 22:16:13 -0800560 seq_printf(seq, "dst_mac: ");
Joe Perches0795af52007-10-03 17:59:30 -0700561 seq_printf(seq, "%s\n", print_mac(mac, pkt_dev->dst_mac));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 seq_printf(seq,
564 " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n",
565 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
566 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Luiz Capitulino222f1802006-03-20 22:16:13 -0800568 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800569 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700570 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800572 if (pkt_dev->nr_labels) {
573 unsigned i;
574 seq_printf(seq, " mpls: ");
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700575 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800576 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
577 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
578 }
579
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700580 if (pkt_dev->vlan_id != 0xffff) {
581 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
582 pkt_dev->vlan_id, pkt_dev->vlan_p, pkt_dev->vlan_cfi);
583 }
584
585 if (pkt_dev->svlan_id != 0xffff) {
586 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
587 pkt_dev->svlan_id, pkt_dev->svlan_p, pkt_dev->svlan_cfi);
588 }
589
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700590 if (pkt_dev->tos) {
591 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
592 }
593
594 if (pkt_dev->traffic_class) {
595 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
596 }
597
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800598 seq_printf(seq, " Flags: ");
599
Luiz Capitulino222f1802006-03-20 22:16:13 -0800600 if (pkt_dev->flags & F_IPV6)
601 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Luiz Capitulino222f1802006-03-20 22:16:13 -0800603 if (pkt_dev->flags & F_IPSRC_RND)
604 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Luiz Capitulino222f1802006-03-20 22:16:13 -0800606 if (pkt_dev->flags & F_IPDST_RND)
607 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Luiz Capitulino222f1802006-03-20 22:16:13 -0800609 if (pkt_dev->flags & F_TXSIZE_RND)
610 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Luiz Capitulino222f1802006-03-20 22:16:13 -0800612 if (pkt_dev->flags & F_UDPSRC_RND)
613 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Luiz Capitulino222f1802006-03-20 22:16:13 -0800615 if (pkt_dev->flags & F_UDPDST_RND)
616 seq_printf(seq, "UDPDST_RND ");
617
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800618 if (pkt_dev->flags & F_MPLS_RND)
619 seq_printf(seq, "MPLS_RND ");
620
Robert Olsson45b270f2007-08-28 15:45:55 -0700621 if (pkt_dev->flags & F_QUEUE_MAP_RND)
622 seq_printf(seq, "QUEUE_MAP_RND ");
623
Jamal Hadi Salim007a5312007-07-02 22:40:36 -0700624 if (pkt_dev->cflows) {
625 if (pkt_dev->flags & F_FLOW_SEQ)
626 seq_printf(seq, "FLOW_SEQ "); /*in sequence flows*/
627 else
628 seq_printf(seq, "FLOW_RND ");
629 }
630
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -0700631#ifdef CONFIG_XFRM
632 if (pkt_dev->flags & F_IPSEC_ON)
633 seq_printf(seq, "IPSEC ");
634#endif
635
Luiz Capitulino222f1802006-03-20 22:16:13 -0800636 if (pkt_dev->flags & F_MACSRC_RND)
637 seq_printf(seq, "MACSRC_RND ");
638
639 if (pkt_dev->flags & F_MACDST_RND)
640 seq_printf(seq, "MACDST_RND ");
641
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700642 if (pkt_dev->flags & F_VID_RND)
643 seq_printf(seq, "VID_RND ");
644
645 if (pkt_dev->flags & F_SVID_RND)
646 seq_printf(seq, "SVID_RND ");
647
Luiz Capitulino222f1802006-03-20 22:16:13 -0800648 seq_puts(seq, "\n");
649
650 sa = pkt_dev->started_at;
651 stopped = pkt_dev->stopped_at;
652 if (pkt_dev->running)
653 stopped = now; /* not really stopped, more like last-running-at */
654
655 seq_printf(seq,
656 "Current:\n pkts-sofar: %llu errors: %llu\n started: %lluus stopped: %lluus idle: %lluus\n",
657 (unsigned long long)pkt_dev->sofar,
658 (unsigned long long)pkt_dev->errors, (unsigned long long)sa,
659 (unsigned long long)stopped,
660 (unsigned long long)pkt_dev->idle_acc);
661
662 seq_printf(seq,
663 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700664 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
665 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Luiz Capitulino222f1802006-03-20 22:16:13 -0800667 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800669 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
670 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
671 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
672 } else
673 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700674 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Luiz Capitulino222f1802006-03-20 22:16:13 -0800676 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700677 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Robert Olsson45b270f2007-08-28 15:45:55 -0700679 seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map);
680
Luiz Capitulino222f1802006-03-20 22:16:13 -0800681 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800684 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800691
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700692static int hex32_arg(const char __user *user_buffer, unsigned long maxlen, __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800693{
694 int i = 0;
695 *num = 0;
696
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700697 for (; i < maxlen; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800698 char c;
699 *num <<= 4;
700 if (get_user(c, &user_buffer[i]))
701 return -EFAULT;
702 if ((c >= '0') && (c <= '9'))
703 *num |= c - '0';
704 else if ((c >= 'a') && (c <= 'f'))
705 *num |= c - 'a' + 10;
706 else if ((c >= 'A') && (c <= 'F'))
707 *num |= c - 'A' + 10;
708 else
709 break;
710 }
711 return i;
712}
713
Luiz Capitulino222f1802006-03-20 22:16:13 -0800714static int count_trail_chars(const char __user * user_buffer,
715 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 int i;
718
719 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800720 char c;
721 if (get_user(c, &user_buffer[i]))
722 return -EFAULT;
723 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 case '\"':
725 case '\n':
726 case '\r':
727 case '\t':
728 case ' ':
729 case '=':
730 break;
731 default:
732 goto done;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735done:
736 return i;
737}
738
Luiz Capitulino222f1802006-03-20 22:16:13 -0800739static unsigned long num_arg(const char __user * user_buffer,
740 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 int i = 0;
743 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800744
745 for (; i < maxlen; i++) {
746 char c;
747 if (get_user(c, &user_buffer[i]))
748 return -EFAULT;
749 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800751 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 } else
753 break;
754 }
755 return i;
756}
757
Luiz Capitulino222f1802006-03-20 22:16:13 -0800758static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 int i = 0;
761
Luiz Capitulino222f1802006-03-20 22:16:13 -0800762 for (; i < maxlen; i++) {
763 char c;
764 if (get_user(c, &user_buffer[i]))
765 return -EFAULT;
766 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 case '\"':
768 case '\n':
769 case '\r':
770 case '\t':
771 case ' ':
772 goto done_str;
773 break;
774 default:
775 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return i;
780}
781
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800782static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
783{
784 unsigned n = 0;
785 char c;
786 ssize_t i = 0;
787 int len;
788
789 pkt_dev->nr_labels = 0;
790 do {
791 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700792 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800793 if (len <= 0)
794 return len;
795 pkt_dev->labels[n] = htonl(tmp);
796 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
797 pkt_dev->flags |= F_MPLS_RND;
798 i += len;
799 if (get_user(c, &buffer[i]))
800 return -EFAULT;
801 i++;
802 n++;
803 if (n >= MAX_MPLS_LABELS)
804 return -E2BIG;
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700805 } while (c == ',');
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800806
807 pkt_dev->nr_labels = n;
808 return i;
809}
810
Luiz Capitulino222f1802006-03-20 22:16:13 -0800811static ssize_t pktgen_if_write(struct file *file,
812 const char __user * user_buffer, size_t count,
813 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800815 struct seq_file *seq = (struct seq_file *)file->private_data;
816 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int i = 0, max, len;
818 char name[16], valstr[32];
819 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800820 char *pg_result = NULL;
821 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800823
824 pg_result = &(pkt_dev->result[0]);
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (count < 1) {
David S. Miller25a8b252007-07-30 16:11:48 -0700827 printk(KERN_WARNING "pktgen: wrong command format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return -EINVAL;
829 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 max = count - i;
832 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800833 if (tmp < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -0700834 printk(KERN_WARNING "pktgen: illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800835 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800837 i += tmp;
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* Read variable name */
840
841 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800842 if (len < 0) {
843 return len;
844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800846 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return -EFAULT;
848 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800849
850 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800852 if (len < 0)
853 return len;
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 i += len;
856
857 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800858 char tb[count + 1];
859 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800861 tb[count] = 0;
David S. Miller25a8b252007-07-30 16:11:48 -0700862 printk(KERN_DEBUG "pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800863 (unsigned long)count, tb);
864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (!strcmp(name, "min_pkt_size")) {
867 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800868 if (len < 0) {
869 return len;
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800872 if (value < 14 + 20 + 8)
873 value = 14 + 20 + 8;
874 if (value != pkt_dev->min_pkt_size) {
875 pkt_dev->min_pkt_size = value;
876 pkt_dev->cur_pkt_size = value;
877 }
878 sprintf(pg_result, "OK: min_pkt_size=%u",
879 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return count;
881 }
882
Luiz Capitulino222f1802006-03-20 22:16:13 -0800883 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800885 if (len < 0) {
886 return len;
887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800889 if (value < 14 + 20 + 8)
890 value = 14 + 20 + 8;
891 if (value != pkt_dev->max_pkt_size) {
892 pkt_dev->max_pkt_size = value;
893 pkt_dev->cur_pkt_size = value;
894 }
895 sprintf(pg_result, "OK: max_pkt_size=%u",
896 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return count;
898 }
899
Luiz Capitulino222f1802006-03-20 22:16:13 -0800900 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 if (!strcmp(name, "pkt_size")) {
903 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800904 if (len < 0) {
905 return len;
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800908 if (value < 14 + 20 + 8)
909 value = 14 + 20 + 8;
910 if (value != pkt_dev->min_pkt_size) {
911 pkt_dev->min_pkt_size = value;
912 pkt_dev->max_pkt_size = value;
913 pkt_dev->cur_pkt_size = value;
914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
916 return count;
917 }
918
Luiz Capitulino222f1802006-03-20 22:16:13 -0800919 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800921 if (len < 0) {
922 return len;
923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800925 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 sprintf(pg_result, "OK: debug=%u", debug);
927 return count;
928 }
929
Luiz Capitulino222f1802006-03-20 22:16:13 -0800930 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800932 if (len < 0) {
933 return len;
934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 i += len;
936 pkt_dev->nfrags = value;
937 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
938 return count;
939 }
940 if (!strcmp(name, "delay")) {
941 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800942 if (len < 0) {
943 return len;
944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 i += len;
946 if (value == 0x7FFFFFFF) {
947 pkt_dev->delay_us = 0x7FFFFFFF;
948 pkt_dev->delay_ns = 0;
949 } else {
950 pkt_dev->delay_us = value / 1000;
951 pkt_dev->delay_ns = value % 1000;
952 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800953 sprintf(pg_result, "OK: delay=%u",
954 1000 * pkt_dev->delay_us + pkt_dev->delay_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return count;
956 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800957 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800959 if (len < 0) {
960 return len;
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800963 if (value != pkt_dev->udp_src_min) {
964 pkt_dev->udp_src_min = value;
965 pkt_dev->cur_udp_src = value;
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
968 return count;
969 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800970 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800972 if (len < 0) {
973 return len;
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800976 if (value != pkt_dev->udp_dst_min) {
977 pkt_dev->udp_dst_min = value;
978 pkt_dev->cur_udp_dst = value;
979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
981 return count;
982 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800983 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800985 if (len < 0) {
986 return len;
987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800989 if (value != pkt_dev->udp_src_max) {
990 pkt_dev->udp_src_max = value;
991 pkt_dev->cur_udp_src = value;
992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
994 return count;
995 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800996 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800998 if (len < 0) {
999 return len;
1000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001002 if (value != pkt_dev->udp_dst_max) {
1003 pkt_dev->udp_dst_max = value;
1004 pkt_dev->cur_udp_dst = value;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1007 return count;
1008 }
1009 if (!strcmp(name, "clone_skb")) {
1010 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001011 if (len < 0) {
1012 return len;
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001015 pkt_dev->clone_skb = value;
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1018 return count;
1019 }
1020 if (!strcmp(name, "count")) {
1021 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001022 if (len < 0) {
1023 return len;
1024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 i += len;
1026 pkt_dev->count = value;
1027 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001028 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return count;
1030 }
1031 if (!strcmp(name, "src_mac_count")) {
1032 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001033 if (len < 0) {
1034 return len;
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 i += len;
1037 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001038 pkt_dev->src_mac_count = value;
1039 pkt_dev->cur_src_mac_offset = 0;
1040 }
1041 sprintf(pg_result, "OK: src_mac_count=%d",
1042 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return count;
1044 }
1045 if (!strcmp(name, "dst_mac_count")) {
1046 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001047 if (len < 0) {
1048 return len;
1049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 i += len;
1051 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001052 pkt_dev->dst_mac_count = value;
1053 pkt_dev->cur_dst_mac_offset = 0;
1054 }
1055 sprintf(pg_result, "OK: dst_mac_count=%d",
1056 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return count;
1058 }
1059 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001060 char f[32];
1061 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001063 if (len < 0) {
1064 return len;
1065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (copy_from_user(f, &user_buffer[i], len))
1067 return -EFAULT;
1068 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001069 if (strcmp(f, "IPSRC_RND") == 0)
1070 pkt_dev->flags |= F_IPSRC_RND;
1071
1072 else if (strcmp(f, "!IPSRC_RND") == 0)
1073 pkt_dev->flags &= ~F_IPSRC_RND;
1074
1075 else if (strcmp(f, "TXSIZE_RND") == 0)
1076 pkt_dev->flags |= F_TXSIZE_RND;
1077
1078 else if (strcmp(f, "!TXSIZE_RND") == 0)
1079 pkt_dev->flags &= ~F_TXSIZE_RND;
1080
1081 else if (strcmp(f, "IPDST_RND") == 0)
1082 pkt_dev->flags |= F_IPDST_RND;
1083
1084 else if (strcmp(f, "!IPDST_RND") == 0)
1085 pkt_dev->flags &= ~F_IPDST_RND;
1086
1087 else if (strcmp(f, "UDPSRC_RND") == 0)
1088 pkt_dev->flags |= F_UDPSRC_RND;
1089
1090 else if (strcmp(f, "!UDPSRC_RND") == 0)
1091 pkt_dev->flags &= ~F_UDPSRC_RND;
1092
1093 else if (strcmp(f, "UDPDST_RND") == 0)
1094 pkt_dev->flags |= F_UDPDST_RND;
1095
1096 else if (strcmp(f, "!UDPDST_RND") == 0)
1097 pkt_dev->flags &= ~F_UDPDST_RND;
1098
1099 else if (strcmp(f, "MACSRC_RND") == 0)
1100 pkt_dev->flags |= F_MACSRC_RND;
1101
1102 else if (strcmp(f, "!MACSRC_RND") == 0)
1103 pkt_dev->flags &= ~F_MACSRC_RND;
1104
1105 else if (strcmp(f, "MACDST_RND") == 0)
1106 pkt_dev->flags |= F_MACDST_RND;
1107
1108 else if (strcmp(f, "!MACDST_RND") == 0)
1109 pkt_dev->flags &= ~F_MACDST_RND;
1110
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001111 else if (strcmp(f, "MPLS_RND") == 0)
1112 pkt_dev->flags |= F_MPLS_RND;
1113
1114 else if (strcmp(f, "!MPLS_RND") == 0)
1115 pkt_dev->flags &= ~F_MPLS_RND;
1116
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001117 else if (strcmp(f, "VID_RND") == 0)
1118 pkt_dev->flags |= F_VID_RND;
1119
1120 else if (strcmp(f, "!VID_RND") == 0)
1121 pkt_dev->flags &= ~F_VID_RND;
1122
1123 else if (strcmp(f, "SVID_RND") == 0)
1124 pkt_dev->flags |= F_SVID_RND;
1125
1126 else if (strcmp(f, "!SVID_RND") == 0)
1127 pkt_dev->flags &= ~F_SVID_RND;
1128
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07001129 else if (strcmp(f, "FLOW_SEQ") == 0)
1130 pkt_dev->flags |= F_FLOW_SEQ;
1131
Robert Olsson45b270f2007-08-28 15:45:55 -07001132 else if (strcmp(f, "QUEUE_MAP_RND") == 0)
1133 pkt_dev->flags |= F_QUEUE_MAP_RND;
1134
1135 else if (strcmp(f, "!QUEUE_MAP_RND") == 0)
1136 pkt_dev->flags &= ~F_QUEUE_MAP_RND;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001137#ifdef CONFIG_XFRM
1138 else if (strcmp(f, "IPSEC") == 0)
1139 pkt_dev->flags |= F_IPSEC_ON;
1140#endif
1141
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001142 else if (strcmp(f, "!IPV6") == 0)
1143 pkt_dev->flags &= ~F_IPV6;
1144
Luiz Capitulino222f1802006-03-20 22:16:13 -08001145 else {
1146 sprintf(pg_result,
1147 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1148 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001149 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07001150 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001151 return count;
1152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1154 return count;
1155 }
1156 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1157 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001158 if (len < 0) {
1159 return len;
1160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Luiz Capitulino222f1802006-03-20 22:16:13 -08001162 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001164 buf[len] = 0;
1165 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1166 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1167 strncpy(pkt_dev->dst_min, buf, len);
1168 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1169 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1170 }
1171 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001172 printk(KERN_DEBUG "pktgen: dst_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001173 pkt_dev->dst_min);
1174 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1176 return count;
1177 }
1178 if (!strcmp(name, "dst_max")) {
1179 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001180 if (len < 0) {
1181 return len;
1182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Luiz Capitulino222f1802006-03-20 22:16:13 -08001184 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return -EFAULT;
1186
Luiz Capitulino222f1802006-03-20 22:16:13 -08001187 buf[len] = 0;
1188 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1189 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1190 strncpy(pkt_dev->dst_max, buf, len);
1191 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1192 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1193 }
1194 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001195 printk(KERN_DEBUG "pktgen: dst_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001196 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 i += len;
1198 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1199 return count;
1200 }
1201 if (!strcmp(name, "dst6")) {
1202 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001203 if (len < 0)
1204 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 pkt_dev->flags |= F_IPV6;
1207
Luiz Capitulino222f1802006-03-20 22:16:13 -08001208 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001210 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001213 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1216
Luiz Capitulino222f1802006-03-20 22:16:13 -08001217 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001218 printk(KERN_DEBUG "pktgen: dst6 set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Luiz Capitulino222f1802006-03-20 22:16:13 -08001220 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 sprintf(pg_result, "OK: dst6=%s", buf);
1222 return count;
1223 }
1224 if (!strcmp(name, "dst6_min")) {
1225 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001226 if (len < 0)
1227 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 pkt_dev->flags |= F_IPV6;
1230
Luiz Capitulino222f1802006-03-20 22:16:13 -08001231 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001233 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001236 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Luiz Capitulino222f1802006-03-20 22:16:13 -08001238 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1239 &pkt_dev->min_in6_daddr);
1240 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001241 printk(KERN_DEBUG "pktgen: dst6_min set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Luiz Capitulino222f1802006-03-20 22:16:13 -08001243 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 sprintf(pg_result, "OK: dst6_min=%s", buf);
1245 return count;
1246 }
1247 if (!strcmp(name, "dst6_max")) {
1248 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001249 if (len < 0)
1250 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 pkt_dev->flags |= F_IPV6;
1253
Luiz Capitulino222f1802006-03-20 22:16:13 -08001254 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001256 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001259 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Luiz Capitulino222f1802006-03-20 22:16:13 -08001261 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001262 printk(KERN_DEBUG "pktgen: dst6_max set to: %s\n", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Luiz Capitulino222f1802006-03-20 22:16:13 -08001264 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 sprintf(pg_result, "OK: dst6_max=%s", buf);
1266 return count;
1267 }
1268 if (!strcmp(name, "src6")) {
1269 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001270 if (len < 0)
1271 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 pkt_dev->flags |= F_IPV6;
1274
Luiz Capitulino222f1802006-03-20 22:16:13 -08001275 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001277 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001280 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1283
Luiz Capitulino222f1802006-03-20 22:16:13 -08001284 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001285 printk(KERN_DEBUG "pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001286
1287 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 sprintf(pg_result, "OK: src6=%s", buf);
1289 return count;
1290 }
1291 if (!strcmp(name, "src_min")) {
1292 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001293 if (len < 0) {
1294 return len;
1295 }
1296 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001298 buf[len] = 0;
1299 if (strcmp(buf, pkt_dev->src_min) != 0) {
1300 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1301 strncpy(pkt_dev->src_min, buf, len);
1302 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1303 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1304 }
1305 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001306 printk(KERN_DEBUG "pktgen: src_min set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001307 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 i += len;
1309 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1310 return count;
1311 }
1312 if (!strcmp(name, "src_max")) {
1313 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001314 if (len < 0) {
1315 return len;
1316 }
1317 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001319 buf[len] = 0;
1320 if (strcmp(buf, pkt_dev->src_max) != 0) {
1321 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1322 strncpy(pkt_dev->src_max, buf, len);
1323 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1324 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1325 }
1326 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001327 printk(KERN_DEBUG "pktgen: src_max set to: %s\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001328 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 i += len;
1330 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1331 return count;
1332 }
1333 if (!strcmp(name, "dst_mac")) {
1334 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001335 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001337 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001340 if (len < 0) {
1341 return len;
1342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001344 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return -EFAULT;
1346 i += len;
1347
Luiz Capitulino222f1802006-03-20 22:16:13 -08001348 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (*v >= '0' && *v <= '9') {
1350 *m *= 16;
1351 *m += *v - '0';
1352 }
1353 if (*v >= 'A' && *v <= 'F') {
1354 *m *= 16;
1355 *m += *v - 'A' + 10;
1356 }
1357 if (*v >= 'a' && *v <= 'f') {
1358 *m *= 16;
1359 *m += *v - 'a' + 10;
1360 }
1361 if (*v == ':') {
1362 m++;
1363 *m = 0;
1364 }
1365 }
1366
1367 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001368 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1369 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 sprintf(pg_result, "OK: dstmac");
1372 return count;
1373 }
1374 if (!strcmp(name, "src_mac")) {
1375 char *v = valstr;
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001376 unsigned char old_smac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 unsigned char *m = pkt_dev->src_mac;
1378
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001379 memcpy(old_smac, pkt_dev->src_mac, ETH_ALEN);
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001382 if (len < 0) {
1383 return len;
1384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001386 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return -EFAULT;
1388 i += len;
1389
Luiz Capitulino222f1802006-03-20 22:16:13 -08001390 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (*v >= '0' && *v <= '9') {
1392 *m *= 16;
1393 *m += *v - '0';
1394 }
1395 if (*v >= 'A' && *v <= 'F') {
1396 *m *= 16;
1397 *m += *v - 'A' + 10;
1398 }
1399 if (*v >= 'a' && *v <= 'f') {
1400 *m *= 16;
1401 *m += *v - 'a' + 10;
1402 }
1403 if (*v == ':') {
1404 m++;
1405 *m = 0;
1406 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Adit Ranadivece5d0b42007-09-16 14:52:15 -07001409 /* Set up Src MAC */
1410 if (compare_ether_addr(old_smac, pkt_dev->src_mac))
1411 memcpy(&(pkt_dev->hh[6]), pkt_dev->src_mac, ETH_ALEN);
1412
Luiz Capitulino222f1802006-03-20 22:16:13 -08001413 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return count;
1415 }
1416
Luiz Capitulino222f1802006-03-20 22:16:13 -08001417 if (!strcmp(name, "clear_counters")) {
1418 pktgen_clear_counters(pkt_dev);
1419 sprintf(pg_result, "OK: Clearing counters.\n");
1420 return count;
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 if (!strcmp(name, "flows")) {
1424 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001425 if (len < 0) {
1426 return len;
1427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 i += len;
1429 if (value > MAX_CFLOWS)
1430 value = MAX_CFLOWS;
1431
1432 pkt_dev->cflows = value;
1433 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1434 return count;
1435 }
1436
1437 if (!strcmp(name, "flowlen")) {
1438 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001439 if (len < 0) {
1440 return len;
1441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 i += len;
1443 pkt_dev->lflow = value;
1444 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1445 return count;
1446 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001447
Robert Olsson45b270f2007-08-28 15:45:55 -07001448 if (!strcmp(name, "queue_map_min")) {
1449 len = num_arg(&user_buffer[i], 5, &value);
1450 if (len < 0) {
1451 return len;
1452 }
1453 i += len;
1454 pkt_dev->queue_map_min = value;
1455 sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min);
1456 return count;
1457 }
1458
1459 if (!strcmp(name, "queue_map_max")) {
1460 len = num_arg(&user_buffer[i], 5, &value);
1461 if (len < 0) {
1462 return len;
1463 }
1464 i += len;
1465 pkt_dev->queue_map_max = value;
1466 sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max);
1467 return count;
1468 }
1469
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001470 if (!strcmp(name, "mpls")) {
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001471 unsigned n, cnt;
1472
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001473 len = get_labels(&user_buffer[i], pkt_dev);
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001474 if (len < 0)
1475 return len;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001476 i += len;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001477 cnt = sprintf(pg_result, "OK: mpls=");
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001478 for (n = 0; n < pkt_dev->nr_labels; n++)
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001479 cnt += sprintf(pg_result + cnt,
1480 "%08x%s", ntohl(pkt_dev->labels[n]),
1481 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001482
1483 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1484 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1485 pkt_dev->svlan_id = 0xffff;
1486
1487 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001488 printk(KERN_DEBUG "pktgen: VLAN/SVLAN auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001489 }
1490 return count;
1491 }
1492
1493 if (!strcmp(name, "vlan_id")) {
1494 len = num_arg(&user_buffer[i], 4, &value);
1495 if (len < 0) {
1496 return len;
1497 }
1498 i += len;
1499 if (value <= 4095) {
1500 pkt_dev->vlan_id = value; /* turn on VLAN */
1501
1502 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001503 printk(KERN_DEBUG "pktgen: VLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001504
1505 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001506 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001507
1508 pkt_dev->nr_labels = 0; /* turn off MPLS */
1509 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1510 } else {
1511 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1512 pkt_dev->svlan_id = 0xffff;
1513
1514 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001515 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001516 }
1517 return count;
1518 }
1519
1520 if (!strcmp(name, "vlan_p")) {
1521 len = num_arg(&user_buffer[i], 1, &value);
1522 if (len < 0) {
1523 return len;
1524 }
1525 i += len;
1526 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1527 pkt_dev->vlan_p = value;
1528 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1529 } else {
1530 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1531 }
1532 return count;
1533 }
1534
1535 if (!strcmp(name, "vlan_cfi")) {
1536 len = num_arg(&user_buffer[i], 1, &value);
1537 if (len < 0) {
1538 return len;
1539 }
1540 i += len;
1541 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1542 pkt_dev->vlan_cfi = value;
1543 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1544 } else {
1545 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1546 }
1547 return count;
1548 }
1549
1550 if (!strcmp(name, "svlan_id")) {
1551 len = num_arg(&user_buffer[i], 4, &value);
1552 if (len < 0) {
1553 return len;
1554 }
1555 i += len;
1556 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1557 pkt_dev->svlan_id = value; /* turn on SVLAN */
1558
1559 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001560 printk(KERN_DEBUG "pktgen: SVLAN turned on\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001561
1562 if (debug && pkt_dev->nr_labels)
David S. Miller25a8b252007-07-30 16:11:48 -07001563 printk(KERN_DEBUG "pktgen: MPLS auto turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001564
1565 pkt_dev->nr_labels = 0; /* turn off MPLS */
1566 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1567 } else {
1568 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1569 pkt_dev->svlan_id = 0xffff;
1570
1571 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001572 printk(KERN_DEBUG "pktgen: VLAN/SVLAN turned off\n");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001573 }
1574 return count;
1575 }
1576
1577 if (!strcmp(name, "svlan_p")) {
1578 len = num_arg(&user_buffer[i], 1, &value);
1579 if (len < 0) {
1580 return len;
1581 }
1582 i += len;
1583 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1584 pkt_dev->svlan_p = value;
1585 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1586 } else {
1587 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1588 }
1589 return count;
1590 }
1591
1592 if (!strcmp(name, "svlan_cfi")) {
1593 len = num_arg(&user_buffer[i], 1, &value);
1594 if (len < 0) {
1595 return len;
1596 }
1597 i += len;
1598 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1599 pkt_dev->svlan_cfi = value;
1600 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1601 } else {
1602 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1603 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001604 return count;
1605 }
1606
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001607 if (!strcmp(name, "tos")) {
1608 __u32 tmp_value = 0;
1609 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1610 if (len < 0) {
1611 return len;
1612 }
1613 i += len;
1614 if (len == 2) {
1615 pkt_dev->tos = tmp_value;
1616 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1617 } else {
1618 sprintf(pg_result, "ERROR: tos must be 00-ff");
1619 }
1620 return count;
1621 }
1622
1623 if (!strcmp(name, "traffic_class")) {
1624 __u32 tmp_value = 0;
1625 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1626 if (len < 0) {
1627 return len;
1628 }
1629 i += len;
1630 if (len == 2) {
1631 pkt_dev->traffic_class = tmp_value;
1632 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1633 } else {
1634 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1635 }
1636 return count;
1637 }
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1640 return -EINVAL;
1641}
1642
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001643static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001645 return single_open(file, pktgen_if_show, PDE(inode)->data);
1646}
1647
Arjan van de Ven9a321442007-02-12 00:55:35 -08001648static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001649 .owner = THIS_MODULE,
1650 .open = pktgen_if_open,
1651 .read = seq_read,
1652 .llseek = seq_lseek,
1653 .write = pktgen_if_write,
1654 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001655};
1656
1657static int pktgen_thread_show(struct seq_file *seq, void *v)
1658{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001659 struct pktgen_thread *t = seq->private;
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001660 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001662 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Luiz Capitulino222f1802006-03-20 22:16:13 -08001664 seq_printf(seq, "Running: ");
1665
1666 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001667 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001668 if (pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001669 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Luiz Capitulino222f1802006-03-20 22:16:13 -08001671 seq_printf(seq, "\nStopped: ");
1672
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08001673 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001674 if (!pkt_dev->running)
Stephen Hemminger39df2322007-03-04 16:11:51 -08001675 seq_printf(seq, "%s ", pkt_dev->odev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001678 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001680 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Luiz Capitulino222f1802006-03-20 22:16:13 -08001682 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001687static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001688 const char __user * user_buffer,
1689 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001691 struct seq_file *seq = (struct seq_file *)file->private_data;
1692 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 int i = 0, max, len, ret;
1694 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001695 char *pg_result;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001698 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 return -EINVAL;
1700 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001703 len = count_trail_chars(&user_buffer[i], max);
1704 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001705 return len;
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 /* Read variable name */
1710
1711 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001712 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001713 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 memset(name, 0, sizeof(name));
1716 if (copy_from_user(name, &user_buffer[i], len))
1717 return -EFAULT;
1718 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001719
Luiz Capitulino222f1802006-03-20 22:16:13 -08001720 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001722 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001723 return len;
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 i += len;
1726
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001727 if (debug)
David S. Miller25a8b252007-07-30 16:11:48 -07001728 printk(KERN_DEBUG "pktgen: t=%s, count=%lu\n",
1729 name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Luiz Capitulino222f1802006-03-20 22:16:13 -08001731 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07001732 printk(KERN_ERR "pktgen: ERROR: No thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 ret = -EINVAL;
1734 goto out;
1735 }
1736
1737 pg_result = &(t->result[0]);
1738
Luiz Capitulino222f1802006-03-20 22:16:13 -08001739 if (!strcmp(name, "add_device")) {
1740 char f[32];
1741 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743 if (len < 0) {
1744 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 goto out;
1746 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001747 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 return -EFAULT;
1749 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001750 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001751 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001752 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001753 ret = count;
1754 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto out;
1756 }
1757
Luiz Capitulino222f1802006-03-20 22:16:13 -08001758 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001759 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001760 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001761 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001762 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001764 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 goto out;
1766 }
1767
Luiz Capitulino222f1802006-03-20 22:16:13 -08001768 if (!strcmp(name, "max_before_softirq")) {
Robert Olssonb1639112007-08-28 15:46:58 -07001769 sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001770 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 goto out;
1772 }
1773
1774 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001775out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return ret;
1777}
1778
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001779static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001781 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
1783
Arjan van de Ven9a321442007-02-12 00:55:35 -08001784static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001785 .owner = THIS_MODULE,
1786 .open = pktgen_thread_open,
1787 .read = seq_read,
1788 .llseek = seq_lseek,
1789 .write = pktgen_thread_write,
1790 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001791};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001794static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
1796 struct pktgen_thread *t;
1797 struct pktgen_dev *pkt_dev = NULL;
1798
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001799 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 pkt_dev = pktgen_find_dev(t, ifname);
1801 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001802 if (remove) {
1803 if_lock(t);
1804 pkt_dev->removal_mark = 1;
1805 t->control |= T_REMDEV;
1806 if_unlock(t);
1807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 break;
1809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001811 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001814/*
1815 * mark a device for removal
1816 */
Stephen Hemminger39df2322007-03-04 16:11:51 -08001817static void pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
1819 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001820 const int max_tries = 10, msec_per_try = 125;
1821 int i = 0;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001822
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001823 mutex_lock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001824 pr_debug("pktgen: pktgen_mark_device marking %s for removal\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001825
Luiz Capitulino222f1802006-03-20 22:16:13 -08001826 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001827
1828 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001829 if (pkt_dev == NULL)
1830 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001831
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001832 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001833 pr_debug("pktgen: pktgen_mark_device waiting for %s "
1834 "to disappear....\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001835 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001836 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001837
1838 if (++i >= max_tries) {
David S. Miller25a8b252007-07-30 16:11:48 -07001839 printk(KERN_ERR "pktgen_mark_device: timed out after "
1840 "waiting %d msec for device %s to be removed\n",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001841 msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001842 break;
1843 }
1844
1845 }
1846
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001847 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001848}
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001849
Stephen Hemminger39df2322007-03-04 16:11:51 -08001850static void pktgen_change_name(struct net_device *dev)
1851{
1852 struct pktgen_thread *t;
1853
1854 list_for_each_entry(t, &pktgen_threads, th_list) {
1855 struct pktgen_dev *pkt_dev;
1856
1857 list_for_each_entry(pkt_dev, &t->if_list, list) {
1858 if (pkt_dev->odev != dev)
1859 continue;
1860
1861 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
1862
1863 pkt_dev->entry = create_proc_entry(dev->name, 0600,
1864 pg_proc_dir);
1865 if (!pkt_dev->entry)
1866 printk(KERN_ERR "pktgen: can't move proc "
1867 " entry for '%s'\n", dev->name);
1868 break;
1869 }
1870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
Luiz Capitulino222f1802006-03-20 22:16:13 -08001873static int pktgen_device_event(struct notifier_block *unused,
1874 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Stephen Hemminger39df2322007-03-04 16:11:51 -08001876 struct net_device *dev = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001878 if (dev_net(dev) != &init_net)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02001879 return NOTIFY_DONE;
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 /* It is OK that we do not hold the group lock right now,
1882 * as we run under the RTNL lock.
1883 */
1884
1885 switch (event) {
Stephen Hemminger39df2322007-03-04 16:11:51 -08001886 case NETDEV_CHANGENAME:
1887 pktgen_change_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001891 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895 return NOTIFY_DONE;
1896}
1897
1898/* Associate pktgen_dev with a device. */
1899
Stephen Hemminger39df2322007-03-04 16:11:51 -08001900static int pktgen_setup_dev(struct pktgen_dev *pkt_dev, const char *ifname)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001901{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 struct net_device *odev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08001903 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 /* Clean old setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (pkt_dev->odev) {
1907 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001908 pkt_dev->odev = NULL;
1909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Eric W. Biederman881d9662007-09-17 11:56:21 -07001911 odev = dev_get_by_name(&init_net, ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 if (!odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001913 printk(KERN_ERR "pktgen: no such netdevice: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001914 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
Stephen Hemminger39df2322007-03-04 16:11:51 -08001916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (odev->type != ARPHRD_ETHER) {
David S. Miller25a8b252007-07-30 16:11:48 -07001918 printk(KERN_ERR "pktgen: not an ethernet device: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001919 err = -EINVAL;
1920 } else if (!netif_running(odev)) {
David S. Miller25a8b252007-07-30 16:11:48 -07001921 printk(KERN_ERR "pktgen: device is down: \"%s\"\n", ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001922 err = -ENETDOWN;
1923 } else {
1924 pkt_dev->odev = odev;
1925 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 dev_put(odev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08001929 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
1931
1932/* Read pkt_dev from the interface and set up internal pktgen_dev
1933 * structure to have the right information to create/send packets
1934 */
1935static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
1936{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001937 if (!pkt_dev->odev) {
David S. Miller25a8b252007-07-30 16:11:48 -07001938 printk(KERN_ERR "pktgen: ERROR: pkt_dev->odev == NULL in "
1939 "setup_inject.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001940 sprintf(pkt_dev->result,
1941 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1942 return;
1943 }
1944
1945 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001947 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08001948 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Luiz Capitulino222f1802006-03-20 22:16:13 -08001950 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001951 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Luiz Capitulino222f1802006-03-20 22:16:13 -08001953 /* Set up pkt size */
1954 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
1955
1956 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001958 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 * gets exported
1960 */
1961
1962#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08001963 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 struct inet6_dev *idev;
1965
Luiz Capitulino222f1802006-03-20 22:16:13 -08001966 for (i = 0; i < IN6_ADDR_HSIZE; i++)
1967 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 set = 1;
1969 break;
1970 }
1971
Luiz Capitulino222f1802006-03-20 22:16:13 -08001972 if (!set) {
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 /*
1975 * Use linklevel address if unconfigured.
1976 *
1977 * use ipv6_get_lladdr if/when it's get exported
1978 */
1979
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001980 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 if ((idev = __in6_dev_get(pkt_dev->odev)) != NULL) {
1982 struct inet6_ifaddr *ifp;
1983
1984 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001985 for (ifp = idev->addr_list; ifp;
1986 ifp = ifp->if_next) {
1987 if (ifp->scope == IFA_LINK
1988 && !(ifp->
1989 flags & IFA_F_TENTATIVE)) {
1990 ipv6_addr_copy(&pkt_dev->
1991 cur_in6_saddr,
1992 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 err = 0;
1994 break;
1995 }
1996 }
1997 read_unlock_bh(&idev->lock);
1998 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001999 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002000 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07002001 printk(KERN_ERR "pktgen: ERROR: IPv6 link "
2002 "address not availble.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002005 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 pkt_dev->saddr_min = 0;
2007 pkt_dev->saddr_max = 0;
2008 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002009
2010 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002013 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (in_dev) {
2015 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002016 pkt_dev->saddr_min =
2017 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 pkt_dev->saddr_max = pkt_dev->saddr_min;
2019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002022 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2024 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2025 }
2026
2027 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2028 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2029 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002030 /* Initialize current values. */
2031 pkt_dev->cur_dst_mac_offset = 0;
2032 pkt_dev->cur_src_mac_offset = 0;
2033 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2034 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2035 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2036 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 pkt_dev->nflows = 0;
2038}
2039
2040static void spin(struct pktgen_dev *pkt_dev, __u64 spin_until_us)
2041{
2042 __u64 start;
2043 __u64 now;
2044
2045 start = now = getCurUs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 while (now < spin_until_us) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -07002047 /* TODO: optimize sleeping behavior */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002048 if (spin_until_us - now > jiffies_to_usecs(1) + 1)
Nishanth Aravamudan121caf52005-09-12 14:15:34 -07002049 schedule_timeout_interruptible(1);
2050 else if (spin_until_us - now > 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (!pkt_dev->running)
2052 return;
2053 if (need_resched())
2054 schedule();
2055 }
2056
2057 now = getCurUs();
2058 }
2059
2060 pkt_dev->idle_acc += now - start;
2061}
2062
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002063static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev)
2064{
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002065 pkt_dev->pkt_overhead = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002066 pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32);
2067 pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev);
2068 pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev);
2069}
2070
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002071static inline int f_seen(struct pktgen_dev *pkt_dev, int flow)
2072{
2073
2074 if (pkt_dev->flows[flow].flags & F_INIT)
2075 return 1;
2076 else
2077 return 0;
2078}
2079
2080static inline int f_pick(struct pktgen_dev *pkt_dev)
2081{
2082 int flow = pkt_dev->curfl;
2083
2084 if (pkt_dev->flags & F_FLOW_SEQ) {
2085 if (pkt_dev->flows[flow].count >= pkt_dev->lflow) {
2086 /* reset time */
2087 pkt_dev->flows[flow].count = 0;
2088 pkt_dev->curfl += 1;
2089 if (pkt_dev->curfl >= pkt_dev->cflows)
2090 pkt_dev->curfl = 0; /*reset */
2091 }
2092 } else {
2093 flow = random32() % pkt_dev->cflows;
2094
2095 if (pkt_dev->flows[flow].count > pkt_dev->lflow)
2096 pkt_dev->flows[flow].count = 0;
2097 }
2098
2099 return pkt_dev->curfl;
2100}
2101
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002102
2103#ifdef CONFIG_XFRM
2104/* If there was already an IPSEC SA, we keep it as is, else
2105 * we go look for it ...
2106*/
Adrian Bunkfea1ab02007-07-30 18:04:09 -07002107static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow)
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002108{
2109 struct xfrm_state *x = pkt_dev->flows[flow].x;
2110 if (!x) {
2111 /*slow path: we dont already have xfrm_state*/
2112 x = xfrm_stateonly_find((xfrm_address_t *)&pkt_dev->cur_daddr,
2113 (xfrm_address_t *)&pkt_dev->cur_saddr,
2114 AF_INET,
2115 pkt_dev->ipsmode,
2116 pkt_dev->ipsproto, 0);
2117 if (x) {
2118 pkt_dev->flows[flow].x = x;
2119 set_pkt_overhead(pkt_dev);
2120 pkt_dev->pkt_overhead+=x->props.header_len;
2121 }
2122
2123 }
2124}
2125#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126/* Increment/randomize headers according to flags and current values
2127 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2128 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002129static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2130{
2131 __u32 imn;
2132 __u32 imx;
2133 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002135 if (pkt_dev->cflows)
2136 flow = f_pick(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002139 if (pkt_dev->src_mac_count > 1) {
2140 __u32 mc;
2141 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Luiz Capitulino222f1802006-03-20 22:16:13 -08002143 if (pkt_dev->flags & F_MACSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002144 mc = random32() % pkt_dev->src_mac_count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002145 else {
2146 mc = pkt_dev->cur_src_mac_offset++;
2147 if (pkt_dev->cur_src_mac_offset >
2148 pkt_dev->src_mac_count)
2149 pkt_dev->cur_src_mac_offset = 0;
2150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Luiz Capitulino222f1802006-03-20 22:16:13 -08002152 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2153 pkt_dev->hh[11] = tmp;
2154 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2155 pkt_dev->hh[10] = tmp;
2156 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2157 pkt_dev->hh[9] = tmp;
2158 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2159 pkt_dev->hh[8] = tmp;
2160 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2161 pkt_dev->hh[7] = tmp;
2162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Luiz Capitulino222f1802006-03-20 22:16:13 -08002164 /* Deal with Destination MAC */
2165 if (pkt_dev->dst_mac_count > 1) {
2166 __u32 mc;
2167 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Luiz Capitulino222f1802006-03-20 22:16:13 -08002169 if (pkt_dev->flags & F_MACDST_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002170 mc = random32() % pkt_dev->dst_mac_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Luiz Capitulino222f1802006-03-20 22:16:13 -08002172 else {
2173 mc = pkt_dev->cur_dst_mac_offset++;
2174 if (pkt_dev->cur_dst_mac_offset >
2175 pkt_dev->dst_mac_count) {
2176 pkt_dev->cur_dst_mac_offset = 0;
2177 }
2178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Luiz Capitulino222f1802006-03-20 22:16:13 -08002180 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2181 pkt_dev->hh[5] = tmp;
2182 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2183 pkt_dev->hh[4] = tmp;
2184 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2185 pkt_dev->hh[3] = tmp;
2186 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2187 pkt_dev->hh[2] = tmp;
2188 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2189 pkt_dev->hh[1] = tmp;
2190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002192 if (pkt_dev->flags & F_MPLS_RND) {
2193 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002194 for (i = 0; i < pkt_dev->nr_labels; i++)
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002195 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2196 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002197 ((__force __be32)random32() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002198 htonl(0x000fffff));
2199 }
2200
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002201 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002202 pkt_dev->vlan_id = random32() & (4096-1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002203 }
2204
2205 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002206 pkt_dev->svlan_id = random32() & (4096 - 1);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002207 }
2208
Luiz Capitulino222f1802006-03-20 22:16:13 -08002209 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2210 if (pkt_dev->flags & F_UDPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002211 pkt_dev->cur_udp_src = random32() %
2212 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)
2213 + pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Luiz Capitulino222f1802006-03-20 22:16:13 -08002215 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 pkt_dev->cur_udp_src++;
2217 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2218 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002219 }
2220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Luiz Capitulino222f1802006-03-20 22:16:13 -08002222 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2223 if (pkt_dev->flags & F_UDPDST_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002224 pkt_dev->cur_udp_dst = random32() %
2225 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)
2226 + pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002227 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002229 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002231 }
2232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 if (!(pkt_dev->flags & F_IPV6)) {
2235
Luiz Capitulino222f1802006-03-20 22:16:13 -08002236 if ((imn = ntohl(pkt_dev->saddr_min)) < (imx =
2237 ntohl(pkt_dev->
2238 saddr_max))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002240 if (pkt_dev->flags & F_IPSRC_RND)
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002241 t = random32() % (imx - imn) + imn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 else {
2243 t = ntohl(pkt_dev->cur_saddr);
2244 t++;
2245 if (t > imx) {
2246 t = imn;
2247 }
2248 }
2249 pkt_dev->cur_saddr = htonl(t);
2250 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002251
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002252 if (pkt_dev->cflows && f_seen(pkt_dev, flow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2254 } else {
Al Viro252e3342006-11-14 20:48:11 -08002255 imn = ntohl(pkt_dev->daddr_min);
2256 imx = ntohl(pkt_dev->daddr_max);
2257 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 __u32 t;
Al Viro252e3342006-11-14 20:48:11 -08002259 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 if (pkt_dev->flags & F_IPDST_RND) {
2261
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002262 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002263 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Joe Perches21cf2252007-12-16 13:44:00 -08002265 while (ipv4_is_loopback(s) ||
2266 ipv4_is_multicast(s) ||
Jan Engelhardt1e637c72008-01-21 03:18:08 -08002267 ipv4_is_lbcast(s) ||
Joe Perches21cf2252007-12-16 13:44:00 -08002268 ipv4_is_zeronet(s) ||
2269 ipv4_is_local_multicast(s)) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002270 t = random32() % (imx - imn) + imn;
Al Viro252e3342006-11-14 20:48:11 -08002271 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
Al Viro252e3342006-11-14 20:48:11 -08002273 pkt_dev->cur_daddr = s;
2274 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 t = ntohl(pkt_dev->cur_daddr);
2276 t++;
2277 if (t > imx) {
2278 t = imn;
2279 }
2280 pkt_dev->cur_daddr = htonl(t);
2281 }
2282 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002283 if (pkt_dev->cflows) {
Jamal Hadi Salim007a5312007-07-02 22:40:36 -07002284 pkt_dev->flows[flow].flags |= F_INIT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002285 pkt_dev->flows[flow].cur_daddr =
2286 pkt_dev->cur_daddr;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002287#ifdef CONFIG_XFRM
2288 if (pkt_dev->flags & F_IPSEC_ON)
2289 get_ipsec_sa(pkt_dev, flow);
2290#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 pkt_dev->nflows++;
2292 }
2293 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002294 } else { /* IPV6 * */
2295
2296 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2297 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2298 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2299 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 else {
2301 int i;
2302
2303 /* Only random destinations yet */
2304
Luiz Capitulino222f1802006-03-20 22:16:13 -08002305 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002307 (((__force __be32)random32() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002308 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2309 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
2313
Luiz Capitulino222f1802006-03-20 22:16:13 -08002314 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2315 __u32 t;
2316 if (pkt_dev->flags & F_TXSIZE_RND) {
Stephen Hemminger5fa6fc72007-03-04 16:07:28 -08002317 t = random32() %
2318 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)
2319 + pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002320 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002322 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002324 }
2325 pkt_dev->cur_pkt_size = t;
2326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Robert Olsson45b270f2007-08-28 15:45:55 -07002328 if (pkt_dev->queue_map_min < pkt_dev->queue_map_max) {
2329 __u16 t;
2330 if (pkt_dev->flags & F_QUEUE_MAP_RND) {
2331 t = random32() %
2332 (pkt_dev->queue_map_max - pkt_dev->queue_map_min + 1)
2333 + pkt_dev->queue_map_min;
2334 } else {
2335 t = pkt_dev->cur_queue_map + 1;
2336 if (t > pkt_dev->queue_map_max)
2337 t = pkt_dev->queue_map_min;
2338 }
2339 pkt_dev->cur_queue_map = t;
2340 }
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 pkt_dev->flows[flow].count++;
2343}
2344
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002345
2346#ifdef CONFIG_XFRM
2347static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev)
2348{
2349 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2350 int err = 0;
2351 struct iphdr *iph;
2352
2353 if (!x)
2354 return 0;
2355 /* XXX: we dont support tunnel mode for now until
2356 * we resolve the dst issue */
2357 if (x->props.mode != XFRM_MODE_TRANSPORT)
2358 return 0;
2359
2360 spin_lock(&x->lock);
2361 iph = ip_hdr(skb);
2362
Herbert Xu13996372007-10-17 21:35:51 -07002363 err = x->outer_mode->output(x, skb);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002364 if (err)
2365 goto error;
2366 err = x->type->output(x, skb);
2367 if (err)
2368 goto error;
2369
2370 x->curlft.bytes +=skb->len;
2371 x->curlft.packets++;
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002372error:
2373 spin_unlock(&x->lock);
2374 return err;
2375}
2376
2377static inline void free_SAs(struct pktgen_dev *pkt_dev)
2378{
2379 if (pkt_dev->cflows) {
2380 /* let go of the SAs if we have them */
2381 int i = 0;
2382 for (; i < pkt_dev->nflows; i++){
2383 struct xfrm_state *x = pkt_dev->flows[i].x;
2384 if (x) {
2385 xfrm_state_put(x);
2386 pkt_dev->flows[i].x = NULL;
2387 }
2388 }
2389 }
2390}
2391
2392static inline int process_ipsec(struct pktgen_dev *pkt_dev,
2393 struct sk_buff *skb, __be16 protocol)
2394{
2395 if (pkt_dev->flags & F_IPSEC_ON) {
2396 struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x;
2397 int nhead = 0;
2398 if (x) {
2399 int ret;
2400 __u8 *eth;
2401 nhead = x->props.header_len - skb_headroom(skb);
2402 if (nhead >0) {
2403 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
2404 if (ret < 0) {
David S. Miller25a8b252007-07-30 16:11:48 -07002405 printk(KERN_ERR "Error expanding "
2406 "ipsec packet %d\n",ret);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002407 return 0;
2408 }
2409 }
2410
2411 /* ipsec is not expecting ll header */
2412 skb_pull(skb, ETH_HLEN);
2413 ret = pktgen_output_ipsec(skb, pkt_dev);
2414 if (ret) {
David S. Miller25a8b252007-07-30 16:11:48 -07002415 printk(KERN_ERR "Error creating ipsec "
2416 "packet %d\n",ret);
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002417 kfree_skb(skb);
2418 return 0;
2419 }
2420 /* restore ll */
2421 eth = (__u8 *) skb_push(skb, ETH_HLEN);
2422 memcpy(eth, pkt_dev->hh, 12);
2423 *(u16 *) & eth[12] = protocol;
2424 }
2425 }
2426 return 1;
2427}
2428#endif
2429
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002430static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2431{
2432 unsigned i;
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002433 for (i = 0; i < pkt_dev->nr_labels; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002434 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
2435 }
2436 mpls--;
2437 *mpls |= MPLS_STACK_BOTTOM;
2438}
2439
Al Viro0f37c602006-11-03 03:49:56 -08002440static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2441 unsigned int prio)
2442{
2443 return htons(id | (cfi << 12) | (prio << 13));
2444}
2445
Luiz Capitulino222f1802006-03-20 22:16:13 -08002446static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2447 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
2449 struct sk_buff *skb = NULL;
2450 __u8 *eth;
2451 struct udphdr *udph;
2452 int datalen, iplen;
2453 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002454 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002455 __be16 protocol = htons(ETH_P_IP);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002456 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002457 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2458 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2459 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2460 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
2461
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002462
2463 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002464 protocol = htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002465
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002466 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002467 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002468
Robert Olsson64053be2005-06-26 15:27:10 -07002469 /* Update any of the values, used when we're incrementing various
2470 * fields.
2471 */
2472 mod_cur_headers(pkt_dev);
2473
David S. Miller7ac54592006-01-18 14:19:10 -08002474 datalen = (odev->hard_header_len + 16) & ~0xf;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002475 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + datalen +
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002476 pkt_dev->pkt_overhead, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 if (!skb) {
2478 sprintf(pkt_dev->result, "No memory");
2479 return NULL;
2480 }
2481
David S. Miller7ac54592006-01-18 14:19:10 -08002482 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
2484 /* Reserve for ethernet and IP header */
2485 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002486 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2487 if (pkt_dev->nr_labels)
2488 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002489
2490 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002491 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002492 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002493 *svlan_tci = build_tci(pkt_dev->svlan_id,
2494 pkt_dev->svlan_cfi,
2495 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002496 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002497 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002498 }
2499 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002500 *vlan_tci = build_tci(pkt_dev->vlan_id,
2501 pkt_dev->vlan_cfi,
2502 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002503 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002504 *vlan_encapsulated_proto = htons(ETH_P_IP);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002505 }
2506
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002507 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002508 skb->transport_header = skb->network_header + sizeof(struct iphdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002509 skb_put(skb, sizeof(struct iphdr) + sizeof(struct udphdr));
Pavel Emelyanovdfa40912007-10-21 16:57:55 -07002510 skb_set_queue_mapping(skb, pkt_dev->cur_queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002511 iph = ip_hdr(skb);
2512 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002515 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002517 /* Eth + IPh + UDPh + mpls */
2518 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002519 pkt_dev->pkt_overhead;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002520 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 udph->source = htons(pkt_dev->cur_udp_src);
2524 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002525 udph->len = htons(datalen + 8); /* DATA + udphdr */
2526 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 iph->ihl = 5;
2529 iph->version = 4;
2530 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002531 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002532 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 iph->saddr = pkt_dev->cur_saddr;
2534 iph->daddr = pkt_dev->cur_daddr;
2535 iph->frag_off = 0;
2536 iplen = 20 + 8 + datalen;
2537 iph->tot_len = htons(iplen);
2538 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002539 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002540 skb->protocol = protocol;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002541 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002542 pkt_dev->pkt_overhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 skb->dev = odev;
2544 skb->pkt_type = PACKET_HOST;
2545
Luiz Capitulino222f1802006-03-20 22:16:13 -08002546 if (pkt_dev->nfrags <= 0)
2547 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 else {
2549 int frags = pkt_dev->nfrags;
2550 int i;
2551
Luiz Capitulino222f1802006-03-20 22:16:13 -08002552 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 if (frags > MAX_SKB_FRAGS)
2555 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002556 if (datalen > frags * PAGE_SIZE) {
2557 skb_put(skb, datalen - frags * PAGE_SIZE);
2558 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 }
2560
2561 i = 0;
2562 while (datalen > 0) {
2563 struct page *page = alloc_pages(GFP_KERNEL, 0);
2564 skb_shinfo(skb)->frags[i].page = page;
2565 skb_shinfo(skb)->frags[i].page_offset = 0;
2566 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002567 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 datalen -= skb_shinfo(skb)->frags[i].size;
2569 skb->len += skb_shinfo(skb)->frags[i].size;
2570 skb->data_len += skb_shinfo(skb)->frags[i].size;
2571 i++;
2572 skb_shinfo(skb)->nr_frags = i;
2573 }
2574
2575 while (i < frags) {
2576 int rem;
2577
2578 if (i == 0)
2579 break;
2580
2581 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2582 if (rem == 0)
2583 break;
2584
2585 skb_shinfo(skb)->frags[i - 1].size -= rem;
2586
Luiz Capitulino222f1802006-03-20 22:16:13 -08002587 skb_shinfo(skb)->frags[i] =
2588 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002590 skb_shinfo(skb)->frags[i].page =
2591 skb_shinfo(skb)->frags[i - 1].page;
2592 skb_shinfo(skb)->frags[i].page_offset +=
2593 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 skb_shinfo(skb)->frags[i].size = rem;
2595 i++;
2596 skb_shinfo(skb)->nr_frags = i;
2597 }
2598 }
2599
Luiz Capitulino222f1802006-03-20 22:16:13 -08002600 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Luiz Capitulino222f1802006-03-20 22:16:13 -08002602 if (pgh) {
2603 struct timeval timestamp;
2604
2605 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2606 pgh->seq_num = htonl(pkt_dev->seq_num);
2607
2608 do_gettimeofday(&timestamp);
2609 pgh->tv_sec = htonl(timestamp.tv_sec);
2610 pgh->tv_usec = htonl(timestamp.tv_usec);
2611 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002612
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07002613#ifdef CONFIG_XFRM
2614 if (!process_ipsec(pkt_dev, skb, protocol))
2615 return NULL;
2616#endif
2617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 return skb;
2619}
2620
2621/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002622 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2624 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002625 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 * Should be candidate for net/ipv4/utils.c
2627 * --ro
2628 */
2629
Luiz Capitulino222f1802006-03-20 22:16:13 -08002630static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
2632 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002633 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 unsigned long u;
2635 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002636 unsigned int prefixlen = 0;
2637 unsigned int suffixlen = 0;
Al Viro252e3342006-11-14 20:48:11 -08002638 __be32 tmp;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002639 char *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Luiz Capitulino222f1802006-03-20 22:16:13 -08002641 for (i = 0; i < 16; i++)
2642 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 for (;;) {
2645 if (*s == ':') {
2646 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002647 if (s[1] == ':') { /* Found "::", skip to part 2 */
2648 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 len++;
2650 break;
2651 }
2652 s++;
2653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002655 u = simple_strtoul(s, &pos, 16);
2656 i = pos - s;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002657 if (!i)
2658 return 0;
2659 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 /* the last 4 bytes may be written as IPv4 address */
2662
2663 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002664 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2665 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 }
2667 ip[prefixlen++] = (u >> 8);
2668 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002669 s += i;
2670 len += i;
2671 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 return len;
2673 }
2674
2675/* part 2, after "::" */
2676 for (;;) {
2677 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002678 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 break;
2680 s++;
2681 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002682 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 break;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07002684
2685 u = simple_strtol(s, &pos, 16);
2686 i = pos - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002688 if (*s)
2689 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 break;
2691 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002692 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002694 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2695 sizeof(tmp));
2696 suffixlen += 4;
2697 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 break;
2699 }
2700 suffix[suffixlen++] = (u >> 8);
2701 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002702 s += i;
2703 len += i;
2704 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 break;
2706 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002707 for (i = 0; i < suffixlen; i++)
2708 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 return len;
2710}
2711
Luiz Capitulino222f1802006-03-20 22:16:13 -08002712static char tohex(char hexdigit)
2713{
2714 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715}
2716
Luiz Capitulino222f1802006-03-20 22:16:13 -08002717static int fmt_xlong(char *s, unsigned int i)
2718{
2719 char *bak = s;
2720 *s = tohex((i >> 12) & 0xf);
2721 if (s != bak || *s != '0')
2722 ++s;
2723 *s = tohex((i >> 8) & 0xf);
2724 if (s != bak || *s != '0')
2725 ++s;
2726 *s = tohex((i >> 4) & 0xf);
2727 if (s != bak || *s != '0')
2728 ++s;
2729 *s = tohex(i & 0xf);
2730 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731}
2732
Luiz Capitulino222f1802006-03-20 22:16:13 -08002733static unsigned int fmt_ip6(char *s, const char ip[16])
2734{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 unsigned int len;
2736 unsigned int i;
2737 unsigned int temp;
2738 unsigned int compressing;
2739 int j;
2740
Luiz Capitulino222f1802006-03-20 22:16:13 -08002741 len = 0;
2742 compressing = 0;
2743 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
2745#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002746 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2747 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2748 temp = strlen(s);
2749 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 }
2751#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002752 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2753 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 if (temp == 0) {
2755 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002756 compressing = 1;
2757 if (j == 0) {
2758 *s++ = ':';
2759 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 }
2761 }
2762 } else {
2763 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002764 compressing = 0;
2765 *s++ = ':';
2766 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002768 i = fmt_xlong(s, temp);
2769 len += i;
2770 s += i;
2771 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 *s++ = ':';
2773 ++len;
2774 }
2775 }
2776 }
2777 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002778 *s++ = ':';
2779 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002781 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 return len;
2783}
2784
Luiz Capitulino222f1802006-03-20 22:16:13 -08002785static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2786 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
2788 struct sk_buff *skb = NULL;
2789 __u8 *eth;
2790 struct udphdr *udph;
2791 int datalen;
2792 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002793 struct pktgen_hdr *pgh = NULL;
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002794 __be16 protocol = htons(ETH_P_IPV6);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002795 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002796 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2797 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2798 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2799 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002800
2801 if (pkt_dev->nr_labels)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002802 protocol = htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002803
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002804 if (pkt_dev->vlan_id != 0xffff)
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002805 protocol = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002806
Robert Olsson64053be2005-06-26 15:27:10 -07002807 /* Update any of the values, used when we're incrementing various
2808 * fields.
2809 */
2810 mod_cur_headers(pkt_dev);
2811
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002812 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + 16 +
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002813 pkt_dev->pkt_overhead, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 if (!skb) {
2815 sprintf(pkt_dev->result, "No memory");
2816 return NULL;
2817 }
2818
2819 skb_reserve(skb, 16);
2820
2821 /* Reserve for ethernet and IP header */
2822 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002823 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2824 if (pkt_dev->nr_labels)
2825 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002826
2827 if (pkt_dev->vlan_id != 0xffff) {
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002828 if (pkt_dev->svlan_id != 0xffff) {
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002829 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002830 *svlan_tci = build_tci(pkt_dev->svlan_id,
2831 pkt_dev->svlan_cfi,
2832 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002833 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002834 *svlan_encapsulated_proto = htons(ETH_P_8021Q);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002835 }
2836 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002837 *vlan_tci = build_tci(pkt_dev->vlan_id,
2838 pkt_dev->vlan_cfi,
2839 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002840 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002841 *vlan_encapsulated_proto = htons(ETH_P_IPV6);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002842 }
2843
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002844 skb->network_header = skb->tail;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002845 skb->transport_header = skb->network_header + sizeof(struct ipv6hdr);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002846 skb_put(skb, sizeof(struct ipv6hdr) + sizeof(struct udphdr));
Pavel Emelyanovdfa40912007-10-21 16:57:55 -07002847 skb_set_queue_mapping(skb, pkt_dev->cur_queue_map);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002848 iph = ipv6_hdr(skb);
2849 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e3342006-11-14 20:48:11 -08002852 *(__be16 *) & eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002853
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002854 /* Eth + IPh + UDPh + mpls */
2855 datalen = pkt_dev->cur_pkt_size - 14 -
2856 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002857 pkt_dev->pkt_overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Luiz Capitulino222f1802006-03-20 22:16:13 -08002859 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 datalen = sizeof(struct pktgen_hdr);
2861 if (net_ratelimit())
Luiz Capitulino222f1802006-03-20 22:16:13 -08002862 printk(KERN_INFO "pktgen: increased datalen to %d\n",
2863 datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 }
2865
2866 udph->source = htons(pkt_dev->cur_udp_src);
2867 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002868 udph->len = htons(datalen + sizeof(struct udphdr));
2869 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Stephen Hemmingerd5f1ce92007-03-04 16:08:08 -08002871 *(__be32 *) iph = htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002873 if (pkt_dev->traffic_class) {
2874 /* Version + traffic class + flow (0) */
Al Viro252e3342006-11-14 20:48:11 -08002875 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002876 }
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 iph->hop_limit = 32;
2879
2880 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
2881 iph->nexthdr = IPPROTO_UDP;
2882
2883 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
2884 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
2885
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002886 skb->mac_header = (skb->network_header - ETH_HLEN -
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07002887 pkt_dev->pkt_overhead);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002888 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 skb->dev = odev;
2890 skb->pkt_type = PACKET_HOST;
2891
Luiz Capitulino222f1802006-03-20 22:16:13 -08002892 if (pkt_dev->nfrags <= 0)
2893 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 else {
2895 int frags = pkt_dev->nfrags;
2896 int i;
2897
Luiz Capitulino222f1802006-03-20 22:16:13 -08002898 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (frags > MAX_SKB_FRAGS)
2901 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002902 if (datalen > frags * PAGE_SIZE) {
2903 skb_put(skb, datalen - frags * PAGE_SIZE);
2904 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 }
2906
2907 i = 0;
2908 while (datalen > 0) {
2909 struct page *page = alloc_pages(GFP_KERNEL, 0);
2910 skb_shinfo(skb)->frags[i].page = page;
2911 skb_shinfo(skb)->frags[i].page_offset = 0;
2912 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002913 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 datalen -= skb_shinfo(skb)->frags[i].size;
2915 skb->len += skb_shinfo(skb)->frags[i].size;
2916 skb->data_len += skb_shinfo(skb)->frags[i].size;
2917 i++;
2918 skb_shinfo(skb)->nr_frags = i;
2919 }
2920
2921 while (i < frags) {
2922 int rem;
2923
2924 if (i == 0)
2925 break;
2926
2927 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2928 if (rem == 0)
2929 break;
2930
2931 skb_shinfo(skb)->frags[i - 1].size -= rem;
2932
Luiz Capitulino222f1802006-03-20 22:16:13 -08002933 skb_shinfo(skb)->frags[i] =
2934 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002936 skb_shinfo(skb)->frags[i].page =
2937 skb_shinfo(skb)->frags[i - 1].page;
2938 skb_shinfo(skb)->frags[i].page_offset +=
2939 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 skb_shinfo(skb)->frags[i].size = rem;
2941 i++;
2942 skb_shinfo(skb)->nr_frags = i;
2943 }
2944 }
2945
Luiz Capitulino222f1802006-03-20 22:16:13 -08002946 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 /* should we update cloned packets too ? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002948 if (pgh) {
2949 struct timeval timestamp;
2950
2951 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2952 pgh->seq_num = htonl(pkt_dev->seq_num);
2953
2954 do_gettimeofday(&timestamp);
2955 pgh->tv_sec = htonl(timestamp.tv_sec);
2956 pgh->tv_usec = htonl(timestamp.tv_usec);
2957 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002958 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 return skb;
2961}
2962
Luiz Capitulino222f1802006-03-20 22:16:13 -08002963static inline struct sk_buff *fill_packet(struct net_device *odev,
2964 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002966 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 return fill_packet_ipv6(odev, pkt_dev);
2968 else
2969 return fill_packet_ipv4(odev, pkt_dev);
2970}
2971
Luiz Capitulino222f1802006-03-20 22:16:13 -08002972static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002974 pkt_dev->seq_num = 1;
2975 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002977 pkt_dev->tx_bytes = 0;
2978 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979}
2980
2981/* Set up structure for sending pkts, clear counters */
2982
2983static void pktgen_run(struct pktgen_thread *t)
2984{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002985 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 int started = 0;
2987
Stephen Hemminger25c4e532007-03-04 16:06:47 -08002988 pr_debug("pktgen: entering pktgen_run. %p\n", t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
2990 if_lock(t);
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08002991 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
2993 /*
2994 * setup odev and create initial packet.
2995 */
2996 pktgen_setup_inject(pkt_dev);
2997
Luiz Capitulino222f1802006-03-20 22:16:13 -08002998 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003000 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 pkt_dev->skb = NULL;
3002 pkt_dev->started_at = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003003 pkt_dev->next_tx_us = getCurUs(); /* Transmit immediately */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 pkt_dev->next_tx_ns = 0;
Jamal Hadi Salim16dab722007-07-02 22:39:50 -07003005 set_pkt_overhead(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 strcpy(pkt_dev->result, "Starting");
3008 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003009 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 strcpy(pkt_dev->result, "Error starting");
3011 }
3012 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003013 if (started)
3014 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
3017static void pktgen_stop_all_threads_ifs(void)
3018{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003019 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003021 pr_debug("pktgen: entering pktgen_stop_all_threads_ifs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003023 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003024
3025 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003026 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003027
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003028 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029}
3030
Luiz Capitulino222f1802006-03-20 22:16:13 -08003031static int thread_is_running(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003033 struct pktgen_dev *pkt_dev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003034 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003036 list_for_each_entry(pkt_dev, &t->if_list, list)
3037 if (pkt_dev->running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 res = 1;
3039 break;
3040 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003041 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042}
3043
Luiz Capitulino222f1802006-03-20 22:16:13 -08003044static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003046 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Luiz Capitulino222f1802006-03-20 22:16:13 -08003048 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Luiz Capitulino222f1802006-03-20 22:16:13 -08003050 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Luiz Capitulino222f1802006-03-20 22:16:13 -08003052 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Luiz Capitulino222f1802006-03-20 22:16:13 -08003054 if (signal_pending(current))
3055 goto signal;
3056 if_lock(t);
3057 }
3058 if_unlock(t);
3059 return 1;
3060signal:
3061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
3064static int pktgen_wait_all_threads_run(void)
3065{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003066 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003068
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003069 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003070
3071 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003073 if (sig == 0)
3074 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003076
3077 if (sig == 0)
3078 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003080
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003081 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 return sig;
3083}
3084
3085static void pktgen_run_all_threads(void)
3086{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003087 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003089 pr_debug("pktgen: entering pktgen_run_all_threads.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003091 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003093 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003095
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003096 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Luiz Capitulino222f1802006-03-20 22:16:13 -08003098 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
3099
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 pktgen_wait_all_threads_run();
3101}
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
3104{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003105 __u64 total_us, bps, mbps, pps, idle;
3106 char *p = pkt_dev->result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Luiz Capitulino222f1802006-03-20 22:16:13 -08003108 total_us = pkt_dev->stopped_at - pkt_dev->started_at;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Luiz Capitulino222f1802006-03-20 22:16:13 -08003110 idle = pkt_dev->idle_acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Luiz Capitulino222f1802006-03-20 22:16:13 -08003112 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
3113 (unsigned long long)total_us,
3114 (unsigned long long)(total_us - idle),
3115 (unsigned long long)idle,
3116 (unsigned long long)pkt_dev->sofar,
3117 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Luiz Capitulino222f1802006-03-20 22:16:13 -08003119 pps = pkt_dev->sofar * USEC_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Luiz Capitulino222f1802006-03-20 22:16:13 -08003121 while ((total_us >> 32) != 0) {
3122 pps >>= 1;
3123 total_us >>= 1;
3124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Luiz Capitulino222f1802006-03-20 22:16:13 -08003126 do_div(pps, total_us);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Luiz Capitulino222f1802006-03-20 22:16:13 -08003128 bps = pps * 8 * pkt_dev->cur_pkt_size;
3129
3130 mbps = bps;
3131 do_div(mbps, 1000000);
3132 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3133 (unsigned long long)pps,
3134 (unsigned long long)mbps,
3135 (unsigned long long)bps,
3136 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139/* Set stopped-at timer, remove from running list, do counters & statistics */
3140
Luiz Capitulino222f1802006-03-20 22:16:13 -08003141static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003143 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003144
Luiz Capitulino222f1802006-03-20 22:16:13 -08003145 if (!pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003146 printk(KERN_WARNING "pktgen: interface: %s is already "
3147 "stopped\n", pkt_dev->odev->name);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003148 return -EINVAL;
3149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Luiz Capitulino222f1802006-03-20 22:16:13 -08003151 pkt_dev->stopped_at = getCurUs();
3152 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003154 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Luiz Capitulino222f1802006-03-20 22:16:13 -08003156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157}
3158
Luiz Capitulino222f1802006-03-20 22:16:13 -08003159static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003161 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 if_lock(t);
3164
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003165 list_for_each_entry(pkt_dev, &t->if_list, list) {
3166 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003167 continue;
3168 if (best == NULL)
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003169 best = pkt_dev;
3170 else if (pkt_dev->next_tx_us < best->next_tx_us)
3171 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 }
3173 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003174 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175}
3176
Luiz Capitulino222f1802006-03-20 22:16:13 -08003177static void pktgen_stop(struct pktgen_thread *t)
3178{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003179 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003181 pr_debug("pktgen: entering pktgen_stop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
Luiz Capitulino222f1802006-03-20 22:16:13 -08003183 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003185 list_for_each_entry(pkt_dev, &t->if_list, list) {
3186 pktgen_stop_device(pkt_dev);
3187 if (pkt_dev->skb)
3188 kfree_skb(pkt_dev->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003189
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003190 pkt_dev->skb = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Luiz Capitulino222f1802006-03-20 22:16:13 -08003193 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194}
3195
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003196/*
3197 * one of our devices needs to be removed - find it
3198 * and remove it
3199 */
3200static void pktgen_rem_one_if(struct pktgen_thread *t)
3201{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003202 struct list_head *q, *n;
3203 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003204
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003205 pr_debug("pktgen: entering pktgen_rem_one_if\n");
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003206
3207 if_lock(t);
3208
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003209 list_for_each_safe(q, n, &t->if_list) {
3210 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003211
Luiz Capitulino222f1802006-03-20 22:16:13 -08003212 if (!cur->removal_mark)
3213 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003214
3215 if (cur->skb)
3216 kfree_skb(cur->skb);
3217 cur->skb = NULL;
3218
3219 pktgen_remove_device(t, cur);
3220
3221 break;
3222 }
3223
3224 if_unlock(t);
3225}
3226
Luiz Capitulino222f1802006-03-20 22:16:13 -08003227static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003229 struct list_head *q, *n;
3230 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003231
3232 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003233
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003234 pr_debug("pktgen: entering pktgen_rem_all_ifs\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003235 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003237 list_for_each_safe(q, n, &t->if_list) {
3238 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003239
3240 if (cur->skb)
3241 kfree_skb(cur->skb);
3242 cur->skb = NULL;
3243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 pktgen_remove_device(t, cur);
3245 }
3246
Luiz Capitulino222f1802006-03-20 22:16:13 -08003247 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248}
3249
Luiz Capitulino222f1802006-03-20 22:16:13 -08003250static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003252 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
David S. Milleree74baa2007-01-01 20:51:53 -08003254 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003256 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003258 list_del(&t->th_list);
3259
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003260 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261}
3262
3263static __inline__ void pktgen_xmit(struct pktgen_dev *pkt_dev)
3264{
3265 struct net_device *odev = NULL;
3266 __u64 idle_start = 0;
3267 int ret;
3268
3269 odev = pkt_dev->odev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 if (pkt_dev->delay_us || pkt_dev->delay_ns) {
3272 u64 now;
3273
3274 now = getCurUs();
3275 if (now < pkt_dev->next_tx_us)
3276 spin(pkt_dev, pkt_dev->next_tx_us);
3277
3278 /* This is max DELAY, this has special meaning of
3279 * "never transmit"
3280 */
3281 if (pkt_dev->delay_us == 0x7FFFFFFF) {
3282 pkt_dev->next_tx_us = getCurUs() + pkt_dev->delay_us;
3283 pkt_dev->next_tx_ns = pkt_dev->delay_ns;
3284 goto out;
3285 }
3286 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003287
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003288 if ((netif_queue_stopped(odev) ||
Robert Olsson378be2c2007-08-28 15:43:14 -07003289 (pkt_dev->skb &&
Pavel Emelyanov668f8952007-10-21 17:01:56 -07003290 netif_subqueue_stopped(odev, pkt_dev->skb))) ||
Robert Olsson378be2c2007-08-28 15:43:14 -07003291 need_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 idle_start = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 if (!netif_running(odev)) {
3295 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003296 if (pkt_dev->skb)
3297 kfree_skb(pkt_dev->skb);
3298 pkt_dev->skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 goto out;
3300 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003301 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003303
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 pkt_dev->idle_acc += getCurUs() - idle_start;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003305
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003306 if (netif_queue_stopped(odev) ||
Pavel Emelyanov668f8952007-10-21 17:01:56 -07003307 netif_subqueue_stopped(odev, pkt_dev->skb)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003308 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003310 goto out; /* Try the next interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 }
3312 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003313
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 if (pkt_dev->last_ok || !pkt_dev->skb) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003315 if ((++pkt_dev->clone_count >= pkt_dev->clone_skb)
3316 || (!pkt_dev->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 /* build a new pkt */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003318 if (pkt_dev->skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003320
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 pkt_dev->skb = fill_packet(odev, pkt_dev);
3322 if (pkt_dev->skb == NULL) {
David S. Miller25a8b252007-07-30 16:11:48 -07003323 printk(KERN_ERR "pktgen: ERROR: couldn't "
3324 "allocate skb in fill_packet.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003326 pkt_dev->clone_count--; /* back out increment, OOM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 goto out;
3328 }
3329 pkt_dev->allocated_skbs++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003330 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 }
3332 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003333
Herbert Xu932ff272006-06-09 12:20:56 -07003334 netif_tx_lock_bh(odev);
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -07003335 if (!netif_queue_stopped(odev) &&
Pavel Emelyanov668f8952007-10-21 17:01:56 -07003336 !netif_subqueue_stopped(odev, pkt_dev->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
3338 atomic_inc(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003339 retry_now:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 ret = odev->hard_start_xmit(pkt_dev->skb, odev);
3341 if (likely(ret == NETDEV_TX_OK)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003342 pkt_dev->last_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 pkt_dev->sofar++;
3344 pkt_dev->seq_num++;
3345 pkt_dev->tx_bytes += pkt_dev->cur_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003346
3347 } else if (ret == NETDEV_TX_LOCKED
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 && (odev->features & NETIF_F_LLTX)) {
3349 cpu_relax();
3350 goto retry_now;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003351 } else { /* Retry it next time */
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 atomic_dec(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 if (debug && net_ratelimit())
3356 printk(KERN_INFO "pktgen: Hard xmit error\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003357
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 pkt_dev->errors++;
3359 pkt_dev->last_ok = 0;
3360 }
3361
3362 pkt_dev->next_tx_us = getCurUs();
3363 pkt_dev->next_tx_ns = 0;
3364
3365 pkt_dev->next_tx_us += pkt_dev->delay_us;
3366 pkt_dev->next_tx_ns += pkt_dev->delay_ns;
3367
3368 if (pkt_dev->next_tx_ns > 1000) {
3369 pkt_dev->next_tx_us++;
3370 pkt_dev->next_tx_ns -= 1000;
3371 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Luiz Capitulino222f1802006-03-20 22:16:13 -08003374 else { /* Retry it next time */
3375 pkt_dev->last_ok = 0;
3376 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Herbert Xu932ff272006-06-09 12:20:56 -07003380 netif_tx_unlock_bh(odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 /* If pkt_dev->count is zero, then run forever */
3383 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
3384 if (atomic_read(&(pkt_dev->skb->users)) != 1) {
3385 idle_start = getCurUs();
3386 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3387 if (signal_pending(current)) {
3388 break;
3389 }
3390 schedule();
3391 }
3392 pkt_dev->idle_acc += getCurUs() - idle_start;
3393 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 /* Done with this */
3396 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003397 if (pkt_dev->skb)
3398 kfree_skb(pkt_dev->skb);
3399 pkt_dev->skb = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003400 }
3401out:;
3402}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003404/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 * Main loop of the thread goes here
3406 */
3407
David S. Milleree74baa2007-01-01 20:51:53 -08003408static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409{
3410 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003411 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003412 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
David S. Milleree74baa2007-01-01 20:51:53 -08003415 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
3417 init_waitqueue_head(&t->queue);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003418 complete(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003420 pr_debug("pktgen: starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
David S. Milleree74baa2007-01-01 20:51:53 -08003422 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003423
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003424 set_freezable();
3425
David S. Milleree74baa2007-01-01 20:51:53 -08003426 while (!kthread_should_stop()) {
3427 pkt_dev = next_to_run(t);
3428
3429 if (!pkt_dev &&
3430 (t->control & (T_STOP | T_RUN | T_REMDEVALL | T_REMDEV))
3431 == 0) {
3432 prepare_to_wait(&(t->queue), &wait,
3433 TASK_INTERRUPTIBLE);
3434 schedule_timeout(HZ / 10);
3435 finish_wait(&(t->queue), &wait);
3436 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003437
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 __set_current_state(TASK_RUNNING);
3439
Robert Olssonb1639112007-08-28 15:46:58 -07003440 if (pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 pktgen_xmit(pkt_dev);
3442
Luiz Capitulino222f1802006-03-20 22:16:13 -08003443 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 pktgen_stop(t);
3445 t->control &= ~(T_STOP);
3446 }
3447
Luiz Capitulino222f1802006-03-20 22:16:13 -08003448 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 pktgen_run(t);
3450 t->control &= ~(T_RUN);
3451 }
3452
Luiz Capitulino222f1802006-03-20 22:16:13 -08003453 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003455 t->control &= ~(T_REMDEVALL);
3456 }
3457
Luiz Capitulino222f1802006-03-20 22:16:13 -08003458 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003459 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 t->control &= ~(T_REMDEV);
3461 }
3462
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003463 try_to_freeze();
3464
David S. Milleree74baa2007-01-01 20:51:53 -08003465 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003468 pr_debug("pktgen: %s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003469 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003471 pr_debug("pktgen: %s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003472 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003474 pr_debug("pktgen: %s removing thread.\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003475 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003476
David S. Milleree74baa2007-01-01 20:51:53 -08003477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478}
3479
Luiz Capitulino222f1802006-03-20 22:16:13 -08003480static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
3481 const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003483 struct pktgen_dev *p, *pkt_dev = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003484 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003486 list_for_each_entry(p, &t->if_list, list)
Stephen Hemminger39df2322007-03-04 16:11:51 -08003487 if (strncmp(p->odev->name, ifname, IFNAMSIZ) == 0) {
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003488 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003489 break;
3490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Luiz Capitulino222f1802006-03-20 22:16:13 -08003492 if_unlock(t);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003493 pr_debug("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003494 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495}
3496
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003497/*
3498 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 */
3500
Luiz Capitulino222f1802006-03-20 22:16:13 -08003501static int add_dev_to_thread(struct pktgen_thread *t,
3502 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503{
3504 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
Luiz Capitulino222f1802006-03-20 22:16:13 -08003506 if_lock(t);
3507
3508 if (pkt_dev->pg_thread) {
David S. Miller25a8b252007-07-30 16:11:48 -07003509 printk(KERN_ERR "pktgen: ERROR: already assigned "
3510 "to a thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003511 rv = -EBUSY;
3512 goto out;
3513 }
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003514
3515 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003516 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 pkt_dev->running = 0;
3518
Luiz Capitulino222f1802006-03-20 22:16:13 -08003519out:
3520 if_unlock(t);
3521 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522}
3523
3524/* Called under thread lock */
3525
Luiz Capitulino222f1802006-03-20 22:16:13 -08003526static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003528 struct pktgen_dev *pkt_dev;
Stephen Hemminger39df2322007-03-04 16:11:51 -08003529 int err;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 /* We don't allow a device to be on several threads */
3532
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003533 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3534 if (pkt_dev) {
David S. Miller25a8b252007-07-30 16:11:48 -07003535 printk(KERN_ERR "pktgen: ERROR: interface already used.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003536 return -EBUSY;
3537 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003538
3539 pkt_dev = kzalloc(sizeof(struct pktgen_dev), GFP_KERNEL);
3540 if (!pkt_dev)
3541 return -ENOMEM;
3542
Luiz Capitulino222f1802006-03-20 22:16:13 -08003543 pkt_dev->flows = vmalloc(MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003544 if (pkt_dev->flows == NULL) {
3545 kfree(pkt_dev);
3546 return -ENOMEM;
3547 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003548 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003549
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003550 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003551 pkt_dev->min_pkt_size = ETH_ZLEN;
3552 pkt_dev->max_pkt_size = ETH_ZLEN;
3553 pkt_dev->nfrags = 0;
3554 pkt_dev->clone_skb = pg_clone_skb_d;
3555 pkt_dev->delay_us = pg_delay_d / 1000;
3556 pkt_dev->delay_ns = pg_delay_d % 1000;
3557 pkt_dev->count = pg_count_d;
3558 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003559 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003560 pkt_dev->udp_src_max = 9;
3561 pkt_dev->udp_dst_min = 9;
3562 pkt_dev->udp_dst_max = 9;
3563
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003564 pkt_dev->vlan_p = 0;
3565 pkt_dev->vlan_cfi = 0;
3566 pkt_dev->vlan_id = 0xffff;
3567 pkt_dev->svlan_p = 0;
3568 pkt_dev->svlan_cfi = 0;
3569 pkt_dev->svlan_id = 0xffff;
3570
Stephen Hemminger39df2322007-03-04 16:11:51 -08003571 err = pktgen_setup_dev(pkt_dev, ifname);
3572 if (err)
3573 goto out1;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003574
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003575 pkt_dev->entry = proc_create_data(ifname, 0600, pg_proc_dir,
3576 &pktgen_if_fops, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003577 if (!pkt_dev->entry) {
David S. Miller25a8b252007-07-30 16:11:48 -07003578 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003579 PG_PROC_DIR, ifname);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003580 err = -EINVAL;
3581 goto out2;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003582 }
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003583#ifdef CONFIG_XFRM
3584 pkt_dev->ipsmode = XFRM_MODE_TRANSPORT;
3585 pkt_dev->ipsproto = IPPROTO_ESP;
3586#endif
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003587
3588 return add_dev_to_thread(t, pkt_dev);
Stephen Hemminger39df2322007-03-04 16:11:51 -08003589out2:
3590 dev_put(pkt_dev->odev);
3591out1:
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003592#ifdef CONFIG_XFRM
3593 free_SAs(pkt_dev);
3594#endif
Stephen Hemminger39df2322007-03-04 16:11:51 -08003595 if (pkt_dev->flows)
3596 vfree(pkt_dev->flows);
3597 kfree(pkt_dev);
3598 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599}
3600
David S. Milleree74baa2007-01-01 20:51:53 -08003601static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003603 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003604 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003605 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
Luiz Capitulino222f1802006-03-20 22:16:13 -08003607 t = kzalloc(sizeof(struct pktgen_thread), GFP_KERNEL);
3608 if (!t) {
David S. Miller25a8b252007-07-30 16:11:48 -07003609 printk(KERN_ERR "pktgen: ERROR: out of memory, can't "
3610 "create new thread.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003611 return -ENOMEM;
3612 }
3613
Luiz Capitulino222f1802006-03-20 22:16:13 -08003614 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003616
David S. Milleree74baa2007-01-01 20:51:53 -08003617 INIT_LIST_HEAD(&t->if_list);
3618
3619 list_add_tail(&t->th_list, &pktgen_threads);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003620 init_completion(&t->start_done);
David S. Milleree74baa2007-01-01 20:51:53 -08003621
3622 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3623 if (IS_ERR(p)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003624 printk(KERN_ERR "pktgen: kernel_thread() failed "
3625 "for cpu %d\n", t->cpu);
David S. Milleree74baa2007-01-01 20:51:53 -08003626 list_del(&t->th_list);
3627 kfree(t);
3628 return PTR_ERR(p);
3629 }
3630 kthread_bind(p, cpu);
3631 t->tsk = p;
3632
Denis V. Lunev5efdccb2008-05-02 02:46:22 -07003633 pe = proc_create_data(t->tsk->comm, 0600, pg_proc_dir,
3634 &pktgen_thread_fops, t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003635 if (!pe) {
David S. Miller25a8b252007-07-30 16:11:48 -07003636 printk(KERN_ERR "pktgen: cannot create %s/%s procfs entry.\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003637 PG_PROC_DIR, t->tsk->comm);
3638 kthread_stop(p);
3639 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003640 kfree(t);
3641 return -EINVAL;
3642 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003643
David S. Milleree74baa2007-01-01 20:51:53 -08003644 wake_up_process(p);
Denis V. Lunevd3ede322008-05-20 15:12:44 -07003645 wait_for_completion(&t->start_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647 return 0;
3648}
3649
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003650/*
3651 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003653static void _rem_dev_from_if_list(struct pktgen_thread *t,
3654 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655{
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003656 struct list_head *q, *n;
3657 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Luiz Capitulinoc26a8012006-03-20 22:18:16 -08003659 list_for_each_safe(q, n, &t->if_list) {
3660 p = list_entry(q, struct pktgen_dev, list);
3661 if (p == pkt_dev)
3662 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 }
3664}
3665
Luiz Capitulino222f1802006-03-20 22:16:13 -08003666static int pktgen_remove_device(struct pktgen_thread *t,
3667 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668{
3669
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003670 pr_debug("pktgen: remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Luiz Capitulino222f1802006-03-20 22:16:13 -08003672 if (pkt_dev->running) {
David S. Miller25a8b252007-07-30 16:11:48 -07003673 printk(KERN_WARNING "pktgen: WARNING: trying to remove a "
3674 "running interface, stopping it now.\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003675 pktgen_stop_device(pkt_dev);
3676 }
3677
3678 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680 if (pkt_dev->odev) {
3681 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003682 pkt_dev->odev = NULL;
3683 }
3684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 /* And update the thread if_list */
3686
3687 _rem_dev_from_if_list(t, pkt_dev);
3688
Stephen Hemminger39df2322007-03-04 16:11:51 -08003689 if (pkt_dev->entry)
3690 remove_proc_entry(pkt_dev->entry->name, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Jamal Hadi Salima553e4a2007-07-02 22:41:59 -07003692#ifdef CONFIG_XFRM
3693 free_SAs(pkt_dev);
3694#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 if (pkt_dev->flows)
3696 vfree(pkt_dev->flows);
3697 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003698 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699}
3700
Luiz Capitulino222f1802006-03-20 22:16:13 -08003701static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702{
3703 int cpu;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003704 struct proc_dir_entry *pe;
3705
David S. Miller25a8b252007-07-30 16:11:48 -07003706 printk(KERN_INFO "%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003708 pg_proc_dir = proc_mkdir(PG_PROC_DIR, init_net.proc_net);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003709 if (!pg_proc_dir)
3710 return -ENODEV;
3711 pg_proc_dir->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Wang Chen25296d52008-02-28 14:11:49 -08003713 pe = proc_create(PGCTRL, 0600, pg_proc_dir, &pktgen_fops);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003714 if (pe == NULL) {
David S. Miller25a8b252007-07-30 16:11:48 -07003715 printk(KERN_ERR "pktgen: ERROR: cannot create %s "
3716 "procfs entry.\n", PGCTRL);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003717 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003718 return -EINVAL;
3719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 /* Register us to receive netdevice events */
3722 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003723
John Hawkes670c02c2005-10-13 09:30:31 -07003724 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003725 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
David S. Milleree74baa2007-01-01 20:51:53 -08003727 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003728 if (err)
David S. Miller25a8b252007-07-30 16:11:48 -07003729 printk(KERN_WARNING "pktgen: WARNING: Cannot create "
3730 "thread for cpu %d (%d)\n", cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003731 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003732
3733 if (list_empty(&pktgen_threads)) {
David S. Miller25a8b252007-07-30 16:11:48 -07003734 printk(KERN_ERR "pktgen: ERROR: Initialization failed for "
3735 "all threads\n");
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003736 unregister_netdevice_notifier(&pktgen_notifier_block);
3737 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003738 proc_net_remove(&init_net, PG_PROC_DIR);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003739 return -ENODEV;
3740 }
3741
Luiz Capitulino222f1802006-03-20 22:16:13 -08003742 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743}
3744
3745static void __exit pg_cleanup(void)
3746{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003747 struct pktgen_thread *t;
3748 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 wait_queue_head_t queue;
3750 init_waitqueue_head(&queue);
3751
Luiz Capitulino222f1802006-03-20 22:16:13 -08003752 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003754 list_for_each_safe(q, n, &pktgen_threads) {
3755 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003756 kthread_stop(t->tsk);
3757 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Luiz Capitulino222f1802006-03-20 22:16:13 -08003760 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 unregister_netdevice_notifier(&pktgen_notifier_block);
3762
Luiz Capitulino222f1802006-03-20 22:16:13 -08003763 /* Clean up proc file system */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003764 remove_proc_entry(PGCTRL, pg_proc_dir);
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003765 proc_net_remove(&init_net, PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766}
3767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768module_init(pg_init);
3769module_exit(pg_cleanup);
3770
3771MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se");
3772MODULE_DESCRIPTION("Packet Generator tool");
3773MODULE_LICENSE("GPL");
3774module_param(pg_count_d, int, 0);
3775module_param(pg_delay_d, int, 0);
3776module_param(pg_clone_skb_d, int, 0);
3777module_param(debug, int, 0);