blob: a6bdcb0d43d9740d381f3e6ca898775474f86bd3 [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>
9 * Jens Låås <jens.laas@data.slu.se>
10 *
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
115#include <linux/sys.h>
116#include <linux/types.h>
117#include <linux/module.h>
118#include <linux/moduleparam.h>
119#include <linux/kernel.h>
120#include <linux/smp_lock.h>
Luiz Capitulino222fa072006-03-20 22:24:27 -0800121#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <linux/sched.h>
123#include <linux/slab.h>
124#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#include <linux/unistd.h>
126#include <linux/string.h>
127#include <linux/ptrace.h>
128#include <linux/errno.h>
129#include <linux/ioport.h>
130#include <linux/interrupt.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -0800131#include <linux/capability.h>
Andrew Morton09fe3ef2007-04-12 14:45:32 -0700132#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#include <linux/delay.h>
134#include <linux/timer.h>
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800135#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#include <linux/init.h>
137#include <linux/skbuff.h>
138#include <linux/netdevice.h>
139#include <linux/inet.h>
140#include <linux/inetdevice.h>
141#include <linux/rtnetlink.h>
142#include <linux/if_arp.h>
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700143#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#include <linux/in.h>
145#include <linux/ip.h>
146#include <linux/ipv6.h>
147#include <linux/udp.h>
148#include <linux/proc_fs.h>
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700149#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#include <linux/wait.h>
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800151#include <linux/etherdevice.h>
David S. Milleree74baa2007-01-01 20:51:53 -0800152#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#include <net/checksum.h>
154#include <net/ipv6.h>
155#include <net/addrconf.h>
156#include <asm/byteorder.h>
157#include <linux/rcupdate.h>
158#include <asm/bitops.h>
159#include <asm/io.h>
160#include <asm/dma.h>
161#include <asm/uaccess.h>
Luiz Capitulino222f1802006-03-20 22:16:13 -0800162#include <asm/div64.h> /* do_div */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#include <asm/timex.h>
164
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700165#define VERSION "pktgen v2.68: Packet Generator for packet performance testing.\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* The buckets are exponential in 'width' */
168#define LAT_BUCKETS_MAX 32
169#define IP_NAME_SZ 32
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800170#define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
171#define MPLS_STACK_BOTTOM __constant_htonl(0x00000100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/* Device flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800174#define F_IPSRC_RND (1<<0) /* IP-Src Random */
175#define F_IPDST_RND (1<<1) /* IP-Dst Random */
176#define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
177#define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
178#define F_MACSRC_RND (1<<4) /* MAC-Src Random */
179#define F_MACDST_RND (1<<5) /* MAC-Dst Random */
180#define F_TXSIZE_RND (1<<6) /* Transmit size is random */
181#define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800182#define F_MPLS_RND (1<<8) /* Random MPLS labels */
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700183#define F_VID_RND (1<<9) /* Random VLAN ID */
184#define F_SVID_RND (1<<10) /* Random SVLAN ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186/* Thread control flag bits */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800187#define T_TERMINATE (1<<0)
188#define T_STOP (1<<1) /* Stop run */
189#define T_RUN (1<<2) /* Start run */
190#define T_REMDEVALL (1<<3) /* Remove all devs */
191#define T_REMDEV (1<<4) /* Remove one dev */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/* If lock -- can be removed after some work */
194#define if_lock(t) spin_lock(&(t->if_lock));
195#define if_unlock(t) spin_unlock(&(t->if_lock));
196
197/* Used to help with determining the pkts on receive */
198#define PKTGEN_MAGIC 0xbe9be955
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700199#define PG_PROC_DIR "pktgen"
200#define PGCTRL "pgctrl"
201static struct proc_dir_entry *pg_proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203#define MAX_CFLOWS 65536
204
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700205#define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
206#define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
207
Luiz Capitulino222f1802006-03-20 22:16:13 -0800208struct flow_state {
Al Viro252e33462006-11-14 20:48:11 -0800209 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800210 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
213struct pktgen_dev {
214
215 /*
216 * Try to keep frequent/infrequent used vars. separated.
217 */
218
Luiz Capitulino222f1802006-03-20 22:16:13 -0800219 char ifname[IFNAMSIZ];
220 char result[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Luiz Capitulino222f1802006-03-20 22:16:13 -0800222 struct pktgen_thread *pg_thread; /* the owner */
Luiz Capitulinoc26a80162006-03-20 22:18:16 -0800223 struct list_head list; /* Used for chaining in the thread's run-queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Luiz Capitulino222f1802006-03-20 22:16:13 -0800225 int running; /* if this changes to false, the test will stop */
226
227 /* If min != max, then we will either do a linear iteration, or
228 * we will do a random selection from within the range.
229 */
230 __u32 flags;
Arthur Kepner95ed63f2006-03-20 21:26:56 -0800231 int removal_mark; /* non-zero => the device is marked for
232 * removal by worker thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Luiz Capitulino222f1802006-03-20 22:16:13 -0800234 int min_pkt_size; /* = ETH_ZLEN; */
235 int max_pkt_size; /* = ETH_ZLEN; */
236 int nfrags;
237 __u32 delay_us; /* Default delay */
238 __u32 delay_ns;
239 __u64 count; /* Default No packets to send */
240 __u64 sofar; /* How many pkts we've sent so far */
241 __u64 tx_bytes; /* How many bytes we've transmitted */
242 __u64 errors; /* Errors when trying to transmit, pkts will be re-sent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Luiz Capitulino222f1802006-03-20 22:16:13 -0800244 /* runtime counters relating to clone_skb */
245 __u64 next_tx_us; /* timestamp of when to tx next */
246 __u32 next_tx_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Luiz Capitulino222f1802006-03-20 22:16:13 -0800248 __u64 allocated_skbs;
249 __u32 clone_count;
250 int last_ok; /* Was last skb sent?
251 * Or a failed transmit of some sort? This will keep
252 * sequence numbers in order, for example.
253 */
254 __u64 started_at; /* micro-seconds */
255 __u64 stopped_at; /* micro-seconds */
256 __u64 idle_acc; /* micro-seconds */
257 __u32 seq_num;
258
259 int clone_skb; /* Use multiple SKBs during packet gen. If this number
260 * is greater than 1, then that many copies of the same
261 * packet will be sent before a new packet is allocated.
262 * For instance, if you want to send 1024 identical packets
263 * before creating a new packet, set clone_skb to 1024.
264 */
265
266 char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
267 char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
268 char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
269 char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */
270
271 struct in6_addr in6_saddr;
272 struct in6_addr in6_daddr;
273 struct in6_addr cur_in6_daddr;
274 struct in6_addr cur_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* For ranges */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800276 struct in6_addr min_in6_daddr;
277 struct in6_addr max_in6_daddr;
278 struct in6_addr min_in6_saddr;
279 struct in6_addr max_in6_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Luiz Capitulino222f1802006-03-20 22:16:13 -0800281 /* If we're doing ranges, random or incremental, then this
282 * defines the min/max for those ranges.
283 */
Al Viro252e33462006-11-14 20:48:11 -0800284 __be32 saddr_min; /* inclusive, source IP address */
285 __be32 saddr_max; /* exclusive, source IP address */
286 __be32 daddr_min; /* inclusive, dest IP address */
287 __be32 daddr_max; /* exclusive, dest IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Luiz Capitulino222f1802006-03-20 22:16:13 -0800289 __u16 udp_src_min; /* inclusive, source UDP port */
290 __u16 udp_src_max; /* exclusive, source UDP port */
291 __u16 udp_dst_min; /* inclusive, dest UDP port */
292 __u16 udp_dst_max; /* exclusive, dest UDP port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700294 /* DSCP + ECN */
295 __u8 tos; /* six most significant bits of (former) IPv4 TOS are for dscp codepoint */
296 __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6 (see RFC 3260, sec. 4) */
297
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800298 /* MPLS */
299 unsigned nr_labels; /* Depth of stack, 0 = no MPLS */
300 __be32 labels[MAX_MPLS_LABELS];
301
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700302 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
303 __u8 vlan_p;
304 __u8 vlan_cfi;
305 __u16 vlan_id; /* 0xffff means no vlan tag */
306
307 __u8 svlan_p;
308 __u8 svlan_cfi;
309 __u16 svlan_id; /* 0xffff means no svlan tag */
310
Luiz Capitulino222f1802006-03-20 22:16:13 -0800311 __u32 src_mac_count; /* How many MACs to iterate through */
312 __u32 dst_mac_count; /* How many MACs to iterate through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Luiz Capitulino222f1802006-03-20 22:16:13 -0800314 unsigned char dst_mac[ETH_ALEN];
315 unsigned char src_mac[ETH_ALEN];
316
317 __u32 cur_dst_mac_offset;
318 __u32 cur_src_mac_offset;
Al Viro252e33462006-11-14 20:48:11 -0800319 __be32 cur_saddr;
320 __be32 cur_daddr;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800321 __u16 cur_udp_dst;
322 __u16 cur_udp_src;
323 __u32 cur_pkt_size;
324
325 __u8 hh[14];
326 /* = {
327 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
328
329 We fill in SRC address later
330 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
331 0x08, 0x00
332 };
333 */
334 __u16 pad; /* pad out the hh struct to an even 16 bytes */
335
336 struct sk_buff *skb; /* skb we are to transmit next, mainly used for when we
337 * are transmitting the same one multiple times
338 */
339 struct net_device *odev; /* The out-going device. Note that the device should
340 * have it's pg_info pointer pointing back to this
341 * device. This will be set when the user specifies
342 * the out-going device name (not when the inject is
343 * started as it used to do.)
344 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct flow_state *flows;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800346 unsigned cflows; /* Concurrent flows (config) */
347 unsigned lflow; /* Flow length (config) */
348 unsigned nflows; /* accumulated flows (stats) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
351struct pktgen_hdr {
Al Viro252e33462006-11-14 20:48:11 -0800352 __be32 pgh_magic;
353 __be32 seq_num;
354 __be32 tv_sec;
355 __be32 tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356};
357
358struct pktgen_thread {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800359 spinlock_t if_lock;
Luiz Capitulinoc26a80162006-03-20 22:18:16 -0800360 struct list_head if_list; /* All device here */
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800361 struct list_head th_list;
David S. Milleree74baa2007-01-01 20:51:53 -0800362 struct task_struct *tsk;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800363 char result[512];
364 u32 max_before_softirq; /* We'll call do_softirq to prevent starvation. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Luiz Capitulino222f1802006-03-20 22:16:13 -0800366 /* Field for thread to receive "posted" events terminate, stop ifs etc. */
367
368 u32 control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 int pid;
370 int cpu;
371
Luiz Capitulino222f1802006-03-20 22:16:13 -0800372 wait_queue_head_t queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
375#define REMOVE 1
376#define FIND 0
377
378/* This code works around the fact that do_div cannot handle two 64-bit
379 numbers, and regular 64-bit division doesn't work on x86 kernels.
380 --Ben
381*/
382
383#define PG_DIV 0
384
385/* This was emailed to LMKL by: Chris Caputo <ccaputo@alt.net>
386 * Function copied/adapted/optimized from:
387 *
388 * nemesis.sourceforge.net/browse/lib/static/intmath/ix86/intmath.c.html
389 *
390 * Copyright 1994, University of Cambridge Computer Laboratory
391 * All Rights Reserved.
392 *
393 */
Jesper Juhl77933d72005-07-27 11:46:09 -0700394static inline s64 divremdi3(s64 x, s64 y, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800396 u64 a = (x < 0) ? -x : x;
397 u64 b = (y < 0) ? -y : y;
398 u64 res = 0, d = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Luiz Capitulino222f1802006-03-20 22:16:13 -0800400 if (b > 0) {
401 while (b < a) {
402 b <<= 1;
403 d <<= 1;
404 }
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Luiz Capitulino222f1802006-03-20 22:16:13 -0800407 do {
408 if (a >= b) {
409 a -= b;
410 res += d;
411 }
412 b >>= 1;
413 d >>= 1;
414 }
415 while (d);
416
417 if (PG_DIV == type) {
418 return (((x ^ y) & (1ll << 63)) == 0) ? res : -(s64) res;
419 } else {
420 return ((x & (1ll << 63)) == 0) ? a : -(s64) a;
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
424/* End of hacks to deal with 64-bit math on x86 */
425
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700426/** Convert to milliseconds */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800427static inline __u64 tv_to_ms(const struct timeval *tv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800429 __u64 ms = tv->tv_usec / 1000;
430 ms += (__u64) tv->tv_sec * (__u64) 1000;
431 return ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/** Convert to micro-seconds */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800435static inline __u64 tv_to_us(const struct timeval *tv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800437 __u64 us = tv->tv_usec;
438 us += (__u64) tv->tv_sec * (__u64) 1000000;
439 return us;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Luiz Capitulino222f1802006-03-20 22:16:13 -0800442static inline __u64 pg_div(__u64 n, __u32 base)
443{
444 __u64 tmp = n;
445 do_div(tmp, base);
446 /* printk("pktgen: pg_div, n: %llu base: %d rv: %llu\n",
447 n, base, tmp); */
448 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Luiz Capitulino222f1802006-03-20 22:16:13 -0800451static inline __u64 pg_div64(__u64 n, __u64 base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800453 __u64 tmp = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/*
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700455 * How do we know if the architecture we are running on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * supports division with 64 bit base?
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900457 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800459#if defined(__sparc_v9__) || defined(__powerpc64__) || defined(__alpha__) || defined(__x86_64__) || defined(__ia64__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Luiz Capitulino222f1802006-03-20 22:16:13 -0800461 do_div(tmp, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800463 tmp = divremdi3(n, base, PG_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -0800465 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468static inline u32 pktgen_random(void)
469{
470#if 0
471 __u32 n;
472 get_random_bytes(&n, 4);
473 return n;
474#else
475 return net_random();
476#endif
477}
478
Luiz Capitulino222f1802006-03-20 22:16:13 -0800479static inline __u64 getCurMs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800481 struct timeval tv;
482 do_gettimeofday(&tv);
483 return tv_to_ms(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Luiz Capitulino222f1802006-03-20 22:16:13 -0800486static inline __u64 getCurUs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800488 struct timeval tv;
489 do_gettimeofday(&tv);
490 return tv_to_us(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Luiz Capitulino222f1802006-03-20 22:16:13 -0800493static inline __u64 tv_diff(const struct timeval *a, const struct timeval *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800495 return tv_to_us(a) - tv_to_us(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/* old include end */
499
500static char version[] __initdata = VERSION;
501
Luiz Capitulino222f1802006-03-20 22:16:13 -0800502static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i);
503static int pktgen_add_device(struct pktgen_thread *t, const char *ifname);
504static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
505 const char *ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506static int pktgen_device_event(struct notifier_block *, unsigned long, void *);
507static void pktgen_run_all_threads(void);
508static void pktgen_stop_all_threads_ifs(void);
509static int pktgen_stop_device(struct pktgen_dev *pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800510static void pktgen_stop(struct pktgen_thread *t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511static void pktgen_clear_counters(struct pktgen_dev *pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800512static int pktgen_mark_device(const char *ifname);
513static unsigned int scan_ip6(const char *s, char ip[16]);
514static unsigned int fmt_ip6(char *s, const char ip[16]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516/* Module parameters, defaults. */
Luiz Capitulino222f1802006-03-20 22:16:13 -0800517static int pg_count_d = 1000; /* 1000 pkts by default */
Jaco Kroonf34fbb972005-12-22 12:51:46 -0800518static int pg_delay_d;
519static int pg_clone_skb_d;
520static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Luiz Capitulino222fa072006-03-20 22:24:27 -0800522static DEFINE_MUTEX(pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -0800523static LIST_HEAD(pktgen_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525static struct notifier_block pktgen_notifier_block = {
526 .notifier_call = pktgen_device_event,
527};
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900530 * /proc handling functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *
532 */
533
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700534static int pgctrl_show(struct seq_file *seq, void *v)
Luiz Capitulino222f1802006-03-20 22:16:13 -0800535{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700536 seq_puts(seq, VERSION);
537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Luiz Capitulino222f1802006-03-20 22:16:13 -0800540static ssize_t pgctrl_write(struct file *file, const char __user * buf,
541 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int err = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700544 char data[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Luiz Capitulino222f1802006-03-20 22:16:13 -0800546 if (!capable(CAP_NET_ADMIN)) {
547 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700551 if (count > sizeof(data))
552 count = sizeof(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (copy_from_user(data, buf, count)) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -0700555 err = -EFAULT;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700556 goto out;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800557 }
558 data[count - 1] = 0; /* Make string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Luiz Capitulino222f1802006-03-20 22:16:13 -0800560 if (!strcmp(data, "stop"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 pktgen_stop_all_threads_ifs();
562
Luiz Capitulino222f1802006-03-20 22:16:13 -0800563 else if (!strcmp(data, "start"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 pktgen_run_all_threads();
565
Luiz Capitulino222f1802006-03-20 22:16:13 -0800566 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 printk("pktgen: Unknown command: %s\n", data);
568
569 err = count;
570
Luiz Capitulino222f1802006-03-20 22:16:13 -0800571out:
572 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700575static int pgctrl_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700577 return single_open(file, pgctrl_show, PDE(inode)->data);
578}
579
Arjan van de Ven9a321442007-02-12 00:55:35 -0800580static const struct file_operations pktgen_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800581 .owner = THIS_MODULE,
582 .open = pgctrl_open,
583 .read = seq_read,
584 .llseek = seq_lseek,
585 .write = pgctrl_write,
586 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700587};
588
589static int pktgen_if_show(struct seq_file *seq, void *v)
590{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800592 struct pktgen_dev *pkt_dev = seq->private;
593 __u64 sa;
594 __u64 stopped;
595 __u64 now = getCurUs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Luiz Capitulino222f1802006-03-20 22:16:13 -0800597 seq_printf(seq,
598 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
599 (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size,
600 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Luiz Capitulino222f1802006-03-20 22:16:13 -0800602 seq_printf(seq,
603 " frags: %d delay: %u clone_skb: %d ifname: %s\n",
604 pkt_dev->nfrags,
605 1000 * pkt_dev->delay_us + pkt_dev->delay_ns,
606 pkt_dev->clone_skb, pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Luiz Capitulino222f1802006-03-20 22:16:13 -0800608 seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows,
609 pkt_dev->lflow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Luiz Capitulino222f1802006-03-20 22:16:13 -0800611 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 char b1[128], b2[128], b3[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800613 fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr);
614 fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr);
615 fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr);
616 seq_printf(seq,
617 " saddr: %s min_saddr: %s max_saddr: %s\n", b1,
618 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Luiz Capitulino222f1802006-03-20 22:16:13 -0800620 fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr);
621 fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr);
622 fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr);
623 seq_printf(seq,
624 " daddr: %s min_daddr: %s max_daddr: %s\n", b1,
625 b2, b3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Luiz Capitulino222f1802006-03-20 22:16:13 -0800627 } else
628 seq_printf(seq,
629 " dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n",
630 pkt_dev->dst_min, pkt_dev->dst_max, pkt_dev->src_min,
631 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700633 seq_puts(seq, " src_mac: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Kris Katterjohnf404e9a2006-01-17 13:04:57 -0800635 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -0800636 for (i = 0; i < 6; i++)
637 seq_printf(seq, "%02X%s", pkt_dev->odev->dev_addr[i],
638 i == 5 ? " " : ":");
639 else
640 for (i = 0; i < 6; i++)
641 seq_printf(seq, "%02X%s", pkt_dev->src_mac[i],
642 i == 5 ? " " : ":");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Luiz Capitulino222f1802006-03-20 22:16:13 -0800644 seq_printf(seq, "dst_mac: ");
645 for (i = 0; i < 6; i++)
646 seq_printf(seq, "%02X%s", pkt_dev->dst_mac[i],
647 i == 5 ? "\n" : ":");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Luiz Capitulino222f1802006-03-20 22:16:13 -0800649 seq_printf(seq,
650 " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n",
651 pkt_dev->udp_src_min, pkt_dev->udp_src_max,
652 pkt_dev->udp_dst_min, pkt_dev->udp_dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Luiz Capitulino222f1802006-03-20 22:16:13 -0800654 seq_printf(seq,
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800655 " src_mac_count: %d dst_mac_count: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700656 pkt_dev->src_mac_count, pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800658 if (pkt_dev->nr_labels) {
659 unsigned i;
660 seq_printf(seq, " mpls: ");
661 for(i = 0; i < pkt_dev->nr_labels; i++)
662 seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]),
663 i == pkt_dev->nr_labels-1 ? "\n" : ", ");
664 }
665
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700666 if (pkt_dev->vlan_id != 0xffff) {
667 seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
668 pkt_dev->vlan_id, pkt_dev->vlan_p, pkt_dev->vlan_cfi);
669 }
670
671 if (pkt_dev->svlan_id != 0xffff) {
672 seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
673 pkt_dev->svlan_id, pkt_dev->svlan_p, pkt_dev->svlan_cfi);
674 }
675
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700676 if (pkt_dev->tos) {
677 seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos);
678 }
679
680 if (pkt_dev->traffic_class) {
681 seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class);
682 }
683
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800684 seq_printf(seq, " Flags: ");
685
Luiz Capitulino222f1802006-03-20 22:16:13 -0800686 if (pkt_dev->flags & F_IPV6)
687 seq_printf(seq, "IPV6 ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Luiz Capitulino222f1802006-03-20 22:16:13 -0800689 if (pkt_dev->flags & F_IPSRC_RND)
690 seq_printf(seq, "IPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Luiz Capitulino222f1802006-03-20 22:16:13 -0800692 if (pkt_dev->flags & F_IPDST_RND)
693 seq_printf(seq, "IPDST_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Luiz Capitulino222f1802006-03-20 22:16:13 -0800695 if (pkt_dev->flags & F_TXSIZE_RND)
696 seq_printf(seq, "TXSIZE_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Luiz Capitulino222f1802006-03-20 22:16:13 -0800698 if (pkt_dev->flags & F_UDPSRC_RND)
699 seq_printf(seq, "UDPSRC_RND ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Luiz Capitulino222f1802006-03-20 22:16:13 -0800701 if (pkt_dev->flags & F_UDPDST_RND)
702 seq_printf(seq, "UDPDST_RND ");
703
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800704 if (pkt_dev->flags & F_MPLS_RND)
705 seq_printf(seq, "MPLS_RND ");
706
Luiz Capitulino222f1802006-03-20 22:16:13 -0800707 if (pkt_dev->flags & F_MACSRC_RND)
708 seq_printf(seq, "MACSRC_RND ");
709
710 if (pkt_dev->flags & F_MACDST_RND)
711 seq_printf(seq, "MACDST_RND ");
712
Francesco Fondelli34954dd2006-09-27 16:30:44 -0700713 if (pkt_dev->flags & F_VID_RND)
714 seq_printf(seq, "VID_RND ");
715
716 if (pkt_dev->flags & F_SVID_RND)
717 seq_printf(seq, "SVID_RND ");
718
Luiz Capitulino222f1802006-03-20 22:16:13 -0800719 seq_puts(seq, "\n");
720
721 sa = pkt_dev->started_at;
722 stopped = pkt_dev->stopped_at;
723 if (pkt_dev->running)
724 stopped = now; /* not really stopped, more like last-running-at */
725
726 seq_printf(seq,
727 "Current:\n pkts-sofar: %llu errors: %llu\n started: %lluus stopped: %lluus idle: %lluus\n",
728 (unsigned long long)pkt_dev->sofar,
729 (unsigned long long)pkt_dev->errors, (unsigned long long)sa,
730 (unsigned long long)stopped,
731 (unsigned long long)pkt_dev->idle_acc);
732
733 seq_printf(seq,
734 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700735 pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset,
736 pkt_dev->cur_src_mac_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Luiz Capitulino222f1802006-03-20 22:16:13 -0800738 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 char b1[128], b2[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800740 fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr);
741 fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr);
742 seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1);
743 } else
744 seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700745 pkt_dev->cur_saddr, pkt_dev->cur_daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Luiz Capitulino222f1802006-03-20 22:16:13 -0800747 seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n",
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700748 pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Luiz Capitulino222f1802006-03-20 22:16:13 -0800750 seq_printf(seq, " flows: %u\n", pkt_dev->nflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 if (pkt_dev->result[0])
Luiz Capitulino222f1802006-03-20 22:16:13 -0800753 seq_printf(seq, "Result: %s\n", pkt_dev->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 else
Luiz Capitulino222f1802006-03-20 22:16:13 -0800755 seq_printf(seq, "Result: Idle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800760
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700761static int hex32_arg(const char __user *user_buffer, unsigned long maxlen, __u32 *num)
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800762{
763 int i = 0;
764 *num = 0;
765
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700766 for(; i < maxlen; i++) {
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800767 char c;
768 *num <<= 4;
769 if (get_user(c, &user_buffer[i]))
770 return -EFAULT;
771 if ((c >= '0') && (c <= '9'))
772 *num |= c - '0';
773 else if ((c >= 'a') && (c <= 'f'))
774 *num |= c - 'a' + 10;
775 else if ((c >= 'A') && (c <= 'F'))
776 *num |= c - 'A' + 10;
777 else
778 break;
779 }
780 return i;
781}
782
Luiz Capitulino222f1802006-03-20 22:16:13 -0800783static int count_trail_chars(const char __user * user_buffer,
784 unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 int i;
787
788 for (i = 0; i < maxlen; i++) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800789 char c;
790 if (get_user(c, &user_buffer[i]))
791 return -EFAULT;
792 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 case '\"':
794 case '\n':
795 case '\r':
796 case '\t':
797 case ' ':
798 case '=':
799 break;
800 default:
801 goto done;
802 };
803 }
804done:
805 return i;
806}
807
Luiz Capitulino222f1802006-03-20 22:16:13 -0800808static unsigned long num_arg(const char __user * user_buffer,
809 unsigned long maxlen, unsigned long *num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 int i = 0;
812 *num = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800813
814 for (; i < maxlen; i++) {
815 char c;
816 if (get_user(c, &user_buffer[i]))
817 return -EFAULT;
818 if ((c >= '0') && (c <= '9')) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 *num *= 10;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800820 *num += c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 } else
822 break;
823 }
824 return i;
825}
826
Luiz Capitulino222f1802006-03-20 22:16:13 -0800827static int strn_len(const char __user * user_buffer, unsigned int maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 int i = 0;
830
Luiz Capitulino222f1802006-03-20 22:16:13 -0800831 for (; i < maxlen; i++) {
832 char c;
833 if (get_user(c, &user_buffer[i]))
834 return -EFAULT;
835 switch (c) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 case '\"':
837 case '\n':
838 case '\r':
839 case '\t':
840 case ' ':
841 goto done_str;
842 break;
843 default:
844 break;
845 };
846 }
847done_str:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return i;
849}
850
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800851static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev)
852{
853 unsigned n = 0;
854 char c;
855 ssize_t i = 0;
856 int len;
857
858 pkt_dev->nr_labels = 0;
859 do {
860 __u32 tmp;
Francesco Fondelli1ca77682006-09-27 16:32:03 -0700861 len = hex32_arg(&buffer[i], 8, &tmp);
Steven Whitehouseca6549a2006-03-23 01:10:26 -0800862 if (len <= 0)
863 return len;
864 pkt_dev->labels[n] = htonl(tmp);
865 if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM)
866 pkt_dev->flags |= F_MPLS_RND;
867 i += len;
868 if (get_user(c, &buffer[i]))
869 return -EFAULT;
870 i++;
871 n++;
872 if (n >= MAX_MPLS_LABELS)
873 return -E2BIG;
874 } while(c == ',');
875
876 pkt_dev->nr_labels = n;
877 return i;
878}
879
Luiz Capitulino222f1802006-03-20 22:16:13 -0800880static ssize_t pktgen_if_write(struct file *file,
881 const char __user * user_buffer, size_t count,
882 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Luiz Capitulino222f1802006-03-20 22:16:13 -0800884 struct seq_file *seq = (struct seq_file *)file->private_data;
885 struct pktgen_dev *pkt_dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 int i = 0, max, len;
887 char name[16], valstr[32];
888 unsigned long value = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800889 char *pg_result = NULL;
890 int tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 char buf[128];
Luiz Capitulino222f1802006-03-20 22:16:13 -0800892
893 pg_result = &(pkt_dev->result[0]);
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (count < 1) {
896 printk("pktgen: wrong command format\n");
897 return -EINVAL;
898 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 max = count - i;
901 tmp = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800902 if (tmp < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 printk("pktgen: illegal format\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -0800904 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
Luiz Capitulino222f1802006-03-20 22:16:13 -0800906 i += tmp;
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 /* Read variable name */
909
910 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800911 if (len < 0) {
912 return len;
913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 memset(name, 0, sizeof(name));
Luiz Capitulino222f1802006-03-20 22:16:13 -0800915 if (copy_from_user(name, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return -EFAULT;
917 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800918
919 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 len = count_trail_chars(&user_buffer[i], max);
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;
925
926 if (debug) {
Luiz Capitulino222f1802006-03-20 22:16:13 -0800927 char tb[count + 1];
928 if (copy_from_user(tb, user_buffer, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800930 tb[count] = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -0700931 printk("pktgen: %s,%lu buffer -:%s:-\n", name,
Luiz Capitulino222f1802006-03-20 22:16:13 -0800932 (unsigned long)count, tb);
933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (!strcmp(name, "min_pkt_size")) {
936 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800937 if (len < 0) {
938 return len;
939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800941 if (value < 14 + 20 + 8)
942 value = 14 + 20 + 8;
943 if (value != pkt_dev->min_pkt_size) {
944 pkt_dev->min_pkt_size = value;
945 pkt_dev->cur_pkt_size = value;
946 }
947 sprintf(pg_result, "OK: min_pkt_size=%u",
948 pkt_dev->min_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return count;
950 }
951
Luiz Capitulino222f1802006-03-20 22:16:13 -0800952 if (!strcmp(name, "max_pkt_size")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800954 if (len < 0) {
955 return len;
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800958 if (value < 14 + 20 + 8)
959 value = 14 + 20 + 8;
960 if (value != pkt_dev->max_pkt_size) {
961 pkt_dev->max_pkt_size = value;
962 pkt_dev->cur_pkt_size = value;
963 }
964 sprintf(pg_result, "OK: max_pkt_size=%u",
965 pkt_dev->max_pkt_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 return count;
967 }
968
Luiz Capitulino222f1802006-03-20 22:16:13 -0800969 /* Shortcut for min = max */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 if (!strcmp(name, "pkt_size")) {
972 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800973 if (len < 0) {
974 return len;
975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800977 if (value < 14 + 20 + 8)
978 value = 14 + 20 + 8;
979 if (value != pkt_dev->min_pkt_size) {
980 pkt_dev->min_pkt_size = value;
981 pkt_dev->max_pkt_size = value;
982 pkt_dev->cur_pkt_size = value;
983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size);
985 return count;
986 }
987
Luiz Capitulino222f1802006-03-20 22:16:13 -0800988 if (!strcmp(name, "debug")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -0800990 if (len < 0) {
991 return len;
992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -0800994 debug = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 sprintf(pg_result, "OK: debug=%u", debug);
996 return count;
997 }
998
Luiz Capitulino222f1802006-03-20 22:16:13 -0800999 if (!strcmp(name, "frags")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001001 if (len < 0) {
1002 return len;
1003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 i += len;
1005 pkt_dev->nfrags = value;
1006 sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags);
1007 return count;
1008 }
1009 if (!strcmp(name, "delay")) {
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;
1015 if (value == 0x7FFFFFFF) {
1016 pkt_dev->delay_us = 0x7FFFFFFF;
1017 pkt_dev->delay_ns = 0;
1018 } else {
1019 pkt_dev->delay_us = value / 1000;
1020 pkt_dev->delay_ns = value % 1000;
1021 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001022 sprintf(pg_result, "OK: delay=%u",
1023 1000 * pkt_dev->delay_us + pkt_dev->delay_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return count;
1025 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001026 if (!strcmp(name, "udp_src_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001028 if (len < 0) {
1029 return len;
1030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001032 if (value != pkt_dev->udp_src_min) {
1033 pkt_dev->udp_src_min = value;
1034 pkt_dev->cur_udp_src = value;
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min);
1037 return count;
1038 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001039 if (!strcmp(name, "udp_dst_min")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001041 if (len < 0) {
1042 return len;
1043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001045 if (value != pkt_dev->udp_dst_min) {
1046 pkt_dev->udp_dst_min = value;
1047 pkt_dev->cur_udp_dst = value;
1048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min);
1050 return count;
1051 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001052 if (!strcmp(name, "udp_src_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001054 if (len < 0) {
1055 return len;
1056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001058 if (value != pkt_dev->udp_src_max) {
1059 pkt_dev->udp_src_max = value;
1060 pkt_dev->cur_udp_src = value;
1061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max);
1063 return count;
1064 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001065 if (!strcmp(name, "udp_dst_max")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001067 if (len < 0) {
1068 return len;
1069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001071 if (value != pkt_dev->udp_dst_max) {
1072 pkt_dev->udp_dst_max = value;
1073 pkt_dev->cur_udp_dst = value;
1074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max);
1076 return count;
1077 }
1078 if (!strcmp(name, "clone_skb")) {
1079 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001080 if (len < 0) {
1081 return len;
1082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001084 pkt_dev->clone_skb = value;
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb);
1087 return count;
1088 }
1089 if (!strcmp(name, "count")) {
1090 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001091 if (len < 0) {
1092 return len;
1093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 i += len;
1095 pkt_dev->count = value;
1096 sprintf(pg_result, "OK: count=%llu",
Luiz Capitulino222f1802006-03-20 22:16:13 -08001097 (unsigned long long)pkt_dev->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return count;
1099 }
1100 if (!strcmp(name, "src_mac_count")) {
1101 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001102 if (len < 0) {
1103 return len;
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 i += len;
1106 if (pkt_dev->src_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001107 pkt_dev->src_mac_count = value;
1108 pkt_dev->cur_src_mac_offset = 0;
1109 }
1110 sprintf(pg_result, "OK: src_mac_count=%d",
1111 pkt_dev->src_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return count;
1113 }
1114 if (!strcmp(name, "dst_mac_count")) {
1115 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001116 if (len < 0) {
1117 return len;
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 i += len;
1120 if (pkt_dev->dst_mac_count != value) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001121 pkt_dev->dst_mac_count = value;
1122 pkt_dev->cur_dst_mac_offset = 0;
1123 }
1124 sprintf(pg_result, "OK: dst_mac_count=%d",
1125 pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return count;
1127 }
1128 if (!strcmp(name, "flag")) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001129 char f[32];
1130 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001132 if (len < 0) {
1133 return len;
1134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (copy_from_user(f, &user_buffer[i], len))
1136 return -EFAULT;
1137 i += len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001138 if (strcmp(f, "IPSRC_RND") == 0)
1139 pkt_dev->flags |= F_IPSRC_RND;
1140
1141 else if (strcmp(f, "!IPSRC_RND") == 0)
1142 pkt_dev->flags &= ~F_IPSRC_RND;
1143
1144 else if (strcmp(f, "TXSIZE_RND") == 0)
1145 pkt_dev->flags |= F_TXSIZE_RND;
1146
1147 else if (strcmp(f, "!TXSIZE_RND") == 0)
1148 pkt_dev->flags &= ~F_TXSIZE_RND;
1149
1150 else if (strcmp(f, "IPDST_RND") == 0)
1151 pkt_dev->flags |= F_IPDST_RND;
1152
1153 else if (strcmp(f, "!IPDST_RND") == 0)
1154 pkt_dev->flags &= ~F_IPDST_RND;
1155
1156 else if (strcmp(f, "UDPSRC_RND") == 0)
1157 pkt_dev->flags |= F_UDPSRC_RND;
1158
1159 else if (strcmp(f, "!UDPSRC_RND") == 0)
1160 pkt_dev->flags &= ~F_UDPSRC_RND;
1161
1162 else if (strcmp(f, "UDPDST_RND") == 0)
1163 pkt_dev->flags |= F_UDPDST_RND;
1164
1165 else if (strcmp(f, "!UDPDST_RND") == 0)
1166 pkt_dev->flags &= ~F_UDPDST_RND;
1167
1168 else if (strcmp(f, "MACSRC_RND") == 0)
1169 pkt_dev->flags |= F_MACSRC_RND;
1170
1171 else if (strcmp(f, "!MACSRC_RND") == 0)
1172 pkt_dev->flags &= ~F_MACSRC_RND;
1173
1174 else if (strcmp(f, "MACDST_RND") == 0)
1175 pkt_dev->flags |= F_MACDST_RND;
1176
1177 else if (strcmp(f, "!MACDST_RND") == 0)
1178 pkt_dev->flags &= ~F_MACDST_RND;
1179
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001180 else if (strcmp(f, "MPLS_RND") == 0)
1181 pkt_dev->flags |= F_MPLS_RND;
1182
1183 else if (strcmp(f, "!MPLS_RND") == 0)
1184 pkt_dev->flags &= ~F_MPLS_RND;
1185
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001186 else if (strcmp(f, "VID_RND") == 0)
1187 pkt_dev->flags |= F_VID_RND;
1188
1189 else if (strcmp(f, "!VID_RND") == 0)
1190 pkt_dev->flags &= ~F_VID_RND;
1191
1192 else if (strcmp(f, "SVID_RND") == 0)
1193 pkt_dev->flags |= F_SVID_RND;
1194
1195 else if (strcmp(f, "!SVID_RND") == 0)
1196 pkt_dev->flags &= ~F_SVID_RND;
1197
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001198 else if (strcmp(f, "!IPV6") == 0)
1199 pkt_dev->flags &= ~F_IPV6;
1200
Luiz Capitulino222f1802006-03-20 22:16:13 -08001201 else {
1202 sprintf(pg_result,
1203 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1204 f,
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001205 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
1206 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08001207 return count;
1208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags);
1210 return count;
1211 }
1212 if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) {
1213 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001214 if (len < 0) {
1215 return len;
1216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Luiz Capitulino222f1802006-03-20 22:16:13 -08001218 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001220 buf[len] = 0;
1221 if (strcmp(buf, pkt_dev->dst_min) != 0) {
1222 memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min));
1223 strncpy(pkt_dev->dst_min, buf, len);
1224 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
1225 pkt_dev->cur_daddr = pkt_dev->daddr_min;
1226 }
1227 if (debug)
1228 printk("pktgen: dst_min set to: %s\n",
1229 pkt_dev->dst_min);
1230 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min);
1232 return count;
1233 }
1234 if (!strcmp(name, "dst_max")) {
1235 len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001236 if (len < 0) {
1237 return len;
1238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Luiz Capitulino222f1802006-03-20 22:16:13 -08001240 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return -EFAULT;
1242
Luiz Capitulino222f1802006-03-20 22:16:13 -08001243 buf[len] = 0;
1244 if (strcmp(buf, pkt_dev->dst_max) != 0) {
1245 memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max));
1246 strncpy(pkt_dev->dst_max, buf, len);
1247 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
1248 pkt_dev->cur_daddr = pkt_dev->daddr_max;
1249 }
1250 if (debug)
1251 printk("pktgen: dst_max set to: %s\n",
1252 pkt_dev->dst_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 i += len;
1254 sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max);
1255 return count;
1256 }
1257 if (!strcmp(name, "dst6")) {
1258 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001259 if (len < 0)
1260 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 pkt_dev->flags |= F_IPV6;
1263
Luiz Capitulino222f1802006-03-20 22:16:13 -08001264 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001266 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 scan_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001269 fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr);
1272
Luiz Capitulino222f1802006-03-20 22:16:13 -08001273 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 printk("pktgen: dst6 set to: %s\n", buf);
1275
Luiz Capitulino222f1802006-03-20 22:16:13 -08001276 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 sprintf(pg_result, "OK: dst6=%s", buf);
1278 return count;
1279 }
1280 if (!strcmp(name, "dst6_min")) {
1281 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001282 if (len < 0)
1283 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 pkt_dev->flags |= F_IPV6;
1286
Luiz Capitulino222f1802006-03-20 22:16:13 -08001287 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001289 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001292 fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Luiz Capitulino222f1802006-03-20 22:16:13 -08001294 ipv6_addr_copy(&pkt_dev->cur_in6_daddr,
1295 &pkt_dev->min_in6_daddr);
1296 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 printk("pktgen: dst6_min set to: %s\n", buf);
1298
Luiz Capitulino222f1802006-03-20 22:16:13 -08001299 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 sprintf(pg_result, "OK: dst6_min=%s", buf);
1301 return count;
1302 }
1303 if (!strcmp(name, "dst6_max")) {
1304 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001305 if (len < 0)
1306 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 pkt_dev->flags |= F_IPV6;
1309
Luiz Capitulino222f1802006-03-20 22:16:13 -08001310 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001312 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001315 fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Luiz Capitulino222f1802006-03-20 22:16:13 -08001317 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 printk("pktgen: dst6_max set to: %s\n", buf);
1319
Luiz Capitulino222f1802006-03-20 22:16:13 -08001320 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 sprintf(pg_result, "OK: dst6_max=%s", buf);
1322 return count;
1323 }
1324 if (!strcmp(name, "src6")) {
1325 len = strn_len(&user_buffer[i], sizeof(buf) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001326 if (len < 0)
1327 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 pkt_dev->flags |= F_IPV6;
1330
Luiz Capitulino222f1802006-03-20 22:16:13 -08001331 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001333 buf[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 scan_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001336 fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr);
1339
Luiz Capitulino222f1802006-03-20 22:16:13 -08001340 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 printk("pktgen: src6 set to: %s\n", buf);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001342
1343 i += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 sprintf(pg_result, "OK: src6=%s", buf);
1345 return count;
1346 }
1347 if (!strcmp(name, "src_min")) {
1348 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001349 if (len < 0) {
1350 return len;
1351 }
1352 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001354 buf[len] = 0;
1355 if (strcmp(buf, pkt_dev->src_min) != 0) {
1356 memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min));
1357 strncpy(pkt_dev->src_min, buf, len);
1358 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
1359 pkt_dev->cur_saddr = pkt_dev->saddr_min;
1360 }
1361 if (debug)
1362 printk("pktgen: src_min set to: %s\n",
1363 pkt_dev->src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 i += len;
1365 sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min);
1366 return count;
1367 }
1368 if (!strcmp(name, "src_max")) {
1369 len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001370 if (len < 0) {
1371 return len;
1372 }
1373 if (copy_from_user(buf, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return -EFAULT;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001375 buf[len] = 0;
1376 if (strcmp(buf, pkt_dev->src_max) != 0) {
1377 memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max));
1378 strncpy(pkt_dev->src_max, buf, len);
1379 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
1380 pkt_dev->cur_saddr = pkt_dev->saddr_max;
1381 }
1382 if (debug)
1383 printk("pktgen: src_max set to: %s\n",
1384 pkt_dev->src_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 i += len;
1386 sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max);
1387 return count;
1388 }
1389 if (!strcmp(name, "dst_mac")) {
1390 char *v = valstr;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001391 unsigned char old_dmac[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 unsigned char *m = pkt_dev->dst_mac;
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001393 memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001396 if (len < 0) {
1397 return len;
1398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001400 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return -EFAULT;
1402 i += len;
1403
Luiz Capitulino222f1802006-03-20 22:16:13 -08001404 for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (*v >= '0' && *v <= '9') {
1406 *m *= 16;
1407 *m += *v - '0';
1408 }
1409 if (*v >= 'A' && *v <= 'F') {
1410 *m *= 16;
1411 *m += *v - 'A' + 10;
1412 }
1413 if (*v >= 'a' && *v <= 'f') {
1414 *m *= 16;
1415 *m += *v - 'a' + 10;
1416 }
1417 if (*v == ':') {
1418 m++;
1419 *m = 0;
1420 }
1421 }
1422
1423 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001424 if (compare_ether_addr(old_dmac, pkt_dev->dst_mac))
1425 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 sprintf(pg_result, "OK: dstmac");
1428 return count;
1429 }
1430 if (!strcmp(name, "src_mac")) {
1431 char *v = valstr;
1432 unsigned char *m = pkt_dev->src_mac;
1433
1434 len = strn_len(&user_buffer[i], sizeof(valstr) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001435 if (len < 0) {
1436 return len;
1437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 memset(valstr, 0, sizeof(valstr));
Luiz Capitulino222f1802006-03-20 22:16:13 -08001439 if (copy_from_user(valstr, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return -EFAULT;
1441 i += len;
1442
Luiz Capitulino222f1802006-03-20 22:16:13 -08001443 for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (*v >= '0' && *v <= '9') {
1445 *m *= 16;
1446 *m += *v - '0';
1447 }
1448 if (*v >= 'A' && *v <= 'F') {
1449 *m *= 16;
1450 *m += *v - 'A' + 10;
1451 }
1452 if (*v >= 'a' && *v <= 'f') {
1453 *m *= 16;
1454 *m += *v - 'a' + 10;
1455 }
1456 if (*v == ':') {
1457 m++;
1458 *m = 0;
1459 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Luiz Capitulino222f1802006-03-20 22:16:13 -08001462 sprintf(pg_result, "OK: srcmac");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return count;
1464 }
1465
Luiz Capitulino222f1802006-03-20 22:16:13 -08001466 if (!strcmp(name, "clear_counters")) {
1467 pktgen_clear_counters(pkt_dev);
1468 sprintf(pg_result, "OK: Clearing counters.\n");
1469 return count;
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 if (!strcmp(name, "flows")) {
1473 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001474 if (len < 0) {
1475 return len;
1476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 i += len;
1478 if (value > MAX_CFLOWS)
1479 value = MAX_CFLOWS;
1480
1481 pkt_dev->cflows = value;
1482 sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows);
1483 return count;
1484 }
1485
1486 if (!strcmp(name, "flowlen")) {
1487 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001488 if (len < 0) {
1489 return len;
1490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 i += len;
1492 pkt_dev->lflow = value;
1493 sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow);
1494 return count;
1495 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001496
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001497 if (!strcmp(name, "mpls")) {
1498 unsigned n, offset;
1499 len = get_labels(&user_buffer[i], pkt_dev);
1500 if (len < 0) { return len; }
1501 i += len;
1502 offset = sprintf(pg_result, "OK: mpls=");
1503 for(n = 0; n < pkt_dev->nr_labels; n++)
1504 offset += sprintf(pg_result + offset,
1505 "%08x%s", ntohl(pkt_dev->labels[n]),
1506 n == pkt_dev->nr_labels-1 ? "" : ",");
Francesco Fondelli34954dd2006-09-27 16:30:44 -07001507
1508 if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) {
1509 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1510 pkt_dev->svlan_id = 0xffff;
1511
1512 if (debug)
1513 printk("pktgen: VLAN/SVLAN auto turned off\n");
1514 }
1515 return count;
1516 }
1517
1518 if (!strcmp(name, "vlan_id")) {
1519 len = num_arg(&user_buffer[i], 4, &value);
1520 if (len < 0) {
1521 return len;
1522 }
1523 i += len;
1524 if (value <= 4095) {
1525 pkt_dev->vlan_id = value; /* turn on VLAN */
1526
1527 if (debug)
1528 printk("pktgen: VLAN turned on\n");
1529
1530 if (debug && pkt_dev->nr_labels)
1531 printk("pktgen: MPLS auto turned off\n");
1532
1533 pkt_dev->nr_labels = 0; /* turn off MPLS */
1534 sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id);
1535 } else {
1536 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1537 pkt_dev->svlan_id = 0xffff;
1538
1539 if (debug)
1540 printk("pktgen: VLAN/SVLAN turned off\n");
1541 }
1542 return count;
1543 }
1544
1545 if (!strcmp(name, "vlan_p")) {
1546 len = num_arg(&user_buffer[i], 1, &value);
1547 if (len < 0) {
1548 return len;
1549 }
1550 i += len;
1551 if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) {
1552 pkt_dev->vlan_p = value;
1553 sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p);
1554 } else {
1555 sprintf(pg_result, "ERROR: vlan_p must be 0-7");
1556 }
1557 return count;
1558 }
1559
1560 if (!strcmp(name, "vlan_cfi")) {
1561 len = num_arg(&user_buffer[i], 1, &value);
1562 if (len < 0) {
1563 return len;
1564 }
1565 i += len;
1566 if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) {
1567 pkt_dev->vlan_cfi = value;
1568 sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi);
1569 } else {
1570 sprintf(pg_result, "ERROR: vlan_cfi must be 0-1");
1571 }
1572 return count;
1573 }
1574
1575 if (!strcmp(name, "svlan_id")) {
1576 len = num_arg(&user_buffer[i], 4, &value);
1577 if (len < 0) {
1578 return len;
1579 }
1580 i += len;
1581 if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) {
1582 pkt_dev->svlan_id = value; /* turn on SVLAN */
1583
1584 if (debug)
1585 printk("pktgen: SVLAN turned on\n");
1586
1587 if (debug && pkt_dev->nr_labels)
1588 printk("pktgen: MPLS auto turned off\n");
1589
1590 pkt_dev->nr_labels = 0; /* turn off MPLS */
1591 sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id);
1592 } else {
1593 pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */
1594 pkt_dev->svlan_id = 0xffff;
1595
1596 if (debug)
1597 printk("pktgen: VLAN/SVLAN turned off\n");
1598 }
1599 return count;
1600 }
1601
1602 if (!strcmp(name, "svlan_p")) {
1603 len = num_arg(&user_buffer[i], 1, &value);
1604 if (len < 0) {
1605 return len;
1606 }
1607 i += len;
1608 if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) {
1609 pkt_dev->svlan_p = value;
1610 sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p);
1611 } else {
1612 sprintf(pg_result, "ERROR: svlan_p must be 0-7");
1613 }
1614 return count;
1615 }
1616
1617 if (!strcmp(name, "svlan_cfi")) {
1618 len = num_arg(&user_buffer[i], 1, &value);
1619 if (len < 0) {
1620 return len;
1621 }
1622 i += len;
1623 if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) {
1624 pkt_dev->svlan_cfi = value;
1625 sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi);
1626 } else {
1627 sprintf(pg_result, "ERROR: svlan_cfi must be 0-1");
1628 }
Steven Whitehouseca6549a2006-03-23 01:10:26 -08001629 return count;
1630 }
1631
Francesco Fondelli1ca77682006-09-27 16:32:03 -07001632 if (!strcmp(name, "tos")) {
1633 __u32 tmp_value = 0;
1634 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1635 if (len < 0) {
1636 return len;
1637 }
1638 i += len;
1639 if (len == 2) {
1640 pkt_dev->tos = tmp_value;
1641 sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos);
1642 } else {
1643 sprintf(pg_result, "ERROR: tos must be 00-ff");
1644 }
1645 return count;
1646 }
1647
1648 if (!strcmp(name, "traffic_class")) {
1649 __u32 tmp_value = 0;
1650 len = hex32_arg(&user_buffer[i], 2, &tmp_value);
1651 if (len < 0) {
1652 return len;
1653 }
1654 i += len;
1655 if (len == 2) {
1656 pkt_dev->traffic_class = tmp_value;
1657 sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class);
1658 } else {
1659 sprintf(pg_result, "ERROR: traffic_class must be 00-ff");
1660 }
1661 return count;
1662 }
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 sprintf(pkt_dev->result, "No such parameter \"%s\"", name);
1665 return -EINVAL;
1666}
1667
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001668static int pktgen_if_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001670 return single_open(file, pktgen_if_show, PDE(inode)->data);
1671}
1672
Arjan van de Ven9a321442007-02-12 00:55:35 -08001673static const struct file_operations pktgen_if_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001674 .owner = THIS_MODULE,
1675 .open = pktgen_if_open,
1676 .read = seq_read,
1677 .llseek = seq_lseek,
1678 .write = pktgen_if_write,
1679 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001680};
1681
1682static int pktgen_thread_show(struct seq_file *seq, void *v)
1683{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001684 struct pktgen_thread *t = seq->private;
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08001685 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001687 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001689 seq_printf(seq, "Name: %s max_before_softirq: %d\n",
David S. Milleree74baa2007-01-01 20:51:53 -08001690 t->tsk->comm, t->max_before_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Luiz Capitulino222f1802006-03-20 22:16:13 -08001692 seq_printf(seq, "Running: ");
1693
1694 if_lock(t);
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08001695 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001696 if (pkt_dev->running)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001697 seq_printf(seq, "%s ", pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Luiz Capitulino222f1802006-03-20 22:16:13 -08001699 seq_printf(seq, "\nStopped: ");
1700
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08001701 list_for_each_entry(pkt_dev, &t->if_list, list)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001702 if (!pkt_dev->running)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001703 seq_printf(seq, "%s ", pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 if (t->result[0])
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001706 seq_printf(seq, "\nResult: %s\n", t->result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 else
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001708 seq_printf(seq, "\nResult: NA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Luiz Capitulino222f1802006-03-20 22:16:13 -08001710 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001712 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713}
1714
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001715static ssize_t pktgen_thread_write(struct file *file,
Luiz Capitulino222f1802006-03-20 22:16:13 -08001716 const char __user * user_buffer,
1717 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
Luiz Capitulino222f1802006-03-20 22:16:13 -08001719 struct seq_file *seq = (struct seq_file *)file->private_data;
1720 struct pktgen_thread *t = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 int i = 0, max, len, ret;
1722 char name[40];
Luiz Capitulino222f1802006-03-20 22:16:13 -08001723 char *pg_result;
1724 unsigned long value = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (count < 1) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001727 // sprintf(pg_result, "Wrong command format");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return -EINVAL;
1729 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 max = count - i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001732 len = count_trail_chars(&user_buffer[i], max);
1733 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001734 return len;
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /* Read variable name */
1739
1740 len = strn_len(&user_buffer[i], sizeof(name) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001741 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001742 return len;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 memset(name, 0, sizeof(name));
1745 if (copy_from_user(name, &user_buffer[i], len))
1746 return -EFAULT;
1747 i += len;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001748
Luiz Capitulino222f1802006-03-20 22:16:13 -08001749 max = count - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 len = count_trail_chars(&user_buffer[i], max);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001751 if (len < 0)
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001752 return len;
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 i += len;
1755
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001756 if (debug)
Luiz Capitulino222f1802006-03-20 22:16:13 -08001757 printk("pktgen: t=%s, count=%lu\n", name, (unsigned long)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Luiz Capitulino222f1802006-03-20 22:16:13 -08001759 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 printk("pktgen: ERROR: No thread\n");
1761 ret = -EINVAL;
1762 goto out;
1763 }
1764
1765 pg_result = &(t->result[0]);
1766
Luiz Capitulino222f1802006-03-20 22:16:13 -08001767 if (!strcmp(name, "add_device")) {
1768 char f[32];
1769 memset(f, 0, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 len = strn_len(&user_buffer[i], sizeof(f) - 1);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001771 if (len < 0) {
1772 ret = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 goto out;
1774 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001775 if (copy_from_user(f, &user_buffer[i], len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return -EFAULT;
1777 i += len;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001778 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001779 pktgen_add_device(t, f);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001780 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001781 ret = count;
1782 sprintf(pg_result, "OK: add_device=%s", f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 goto out;
1784 }
1785
Luiz Capitulino222f1802006-03-20 22:16:13 -08001786 if (!strcmp(name, "rem_device_all")) {
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001787 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001788 t->control |= T_REMDEVALL;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001789 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001790 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 ret = count;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001792 sprintf(pg_result, "OK: rem_device_all");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 goto out;
1794 }
1795
Luiz Capitulino222f1802006-03-20 22:16:13 -08001796 if (!strcmp(name, "max_before_softirq")) {
1797 len = num_arg(&user_buffer[i], 10, &value);
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001798 mutex_lock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001799 t->max_before_softirq = value;
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001800 mutex_unlock(&pktgen_thread_lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001801 ret = count;
1802 sprintf(pg_result, "OK: max_before_softirq=%lu", value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 goto out;
1804 }
1805
1806 ret = -EINVAL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001807out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return ret;
1809}
1810
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001811static int pktgen_thread_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001813 return single_open(file, pktgen_thread_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Arjan van de Ven9a321442007-02-12 00:55:35 -08001816static const struct file_operations pktgen_thread_fops = {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001817 .owner = THIS_MODULE,
1818 .open = pktgen_thread_open,
1819 .read = seq_read,
1820 .llseek = seq_lseek,
1821 .write = pktgen_thread_write,
1822 .release = single_release,
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07001823};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825/* Think find or remove for NN */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001826static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
1828 struct pktgen_thread *t;
1829 struct pktgen_dev *pkt_dev = NULL;
1830
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08001831 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 pkt_dev = pktgen_find_dev(t, ifname);
1833 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001834 if (remove) {
1835 if_lock(t);
1836 pkt_dev->removal_mark = 1;
1837 t->control |= T_REMDEV;
1838 if_unlock(t);
1839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 break;
1841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08001843 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
1845
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001846/*
1847 * mark a device for removal
1848 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001849static int pktgen_mark_device(const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
1851 struct pktgen_dev *pkt_dev = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001852 const int max_tries = 10, msec_per_try = 125;
1853 int i = 0;
1854 int ret = 0;
1855
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001856 mutex_lock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001857 pr_debug("pktgen: pktgen_mark_device marking %s for removal\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001858
Luiz Capitulino222f1802006-03-20 22:16:13 -08001859 while (1) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001860
1861 pkt_dev = __pktgen_NN_threads(ifname, REMOVE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001862 if (pkt_dev == NULL)
1863 break; /* success */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001864
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001865 mutex_unlock(&pktgen_thread_lock);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08001866 pr_debug("pktgen: pktgen_mark_device waiting for %s "
1867 "to disappear....\n", ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001868 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try));
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001869 mutex_lock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001870
1871 if (++i >= max_tries) {
1872 printk("pktgen_mark_device: timed out after waiting "
Luiz Capitulino222f1802006-03-20 22:16:13 -08001873 "%d msec for device %s to be removed\n",
1874 msec_per_try * i, ifname);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001875 ret = 1;
1876 break;
1877 }
1878
1879 }
1880
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08001881 mutex_unlock(&pktgen_thread_lock);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08001882
1883 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}
1885
Luiz Capitulino222f1802006-03-20 22:16:13 -08001886static int pktgen_device_event(struct notifier_block *unused,
1887 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 struct net_device *dev = (struct net_device *)(ptr);
1890
1891 /* It is OK that we do not hold the group lock right now,
1892 * as we run under the RTNL lock.
1893 */
1894
1895 switch (event) {
1896 case NETDEV_CHANGEADDR:
1897 case NETDEV_GOING_DOWN:
1898 case NETDEV_DOWN:
1899 case NETDEV_UP:
1900 /* Ignore for now */
1901 break;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 case NETDEV_UNREGISTER:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001904 pktgen_mark_device(dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 break;
1906 };
1907
1908 return NOTIFY_DONE;
1909}
1910
1911/* Associate pktgen_dev with a device. */
1912
Luiz Capitulino222f1802006-03-20 22:16:13 -08001913static struct net_device *pktgen_setup_dev(struct pktgen_dev *pkt_dev)
1914{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 struct net_device *odev;
1916
1917 /* Clean old setups */
1918
1919 if (pkt_dev->odev) {
1920 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08001921 pkt_dev->odev = NULL;
1922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 odev = dev_get_by_name(pkt_dev->ifname);
1925
1926 if (!odev) {
1927 printk("pktgen: no such netdevice: \"%s\"\n", pkt_dev->ifname);
1928 goto out;
1929 }
1930 if (odev->type != ARPHRD_ETHER) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08001931 printk("pktgen: not an ethernet device: \"%s\"\n",
1932 pkt_dev->ifname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 goto out_put;
1934 }
1935 if (!netif_running(odev)) {
1936 printk("pktgen: device is down: \"%s\"\n", pkt_dev->ifname);
1937 goto out_put;
1938 }
1939 pkt_dev->odev = odev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08001940
1941 return pkt_dev->odev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943out_put:
1944 dev_put(odev);
1945out:
Luiz Capitulino222f1802006-03-20 22:16:13 -08001946 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948}
1949
1950/* Read pkt_dev from the interface and set up internal pktgen_dev
1951 * structure to have the right information to create/send packets
1952 */
1953static void pktgen_setup_inject(struct pktgen_dev *pkt_dev)
1954{
1955 /* Try once more, just in case it works now. */
Luiz Capitulino222f1802006-03-20 22:16:13 -08001956 if (!pkt_dev->odev)
1957 pktgen_setup_dev(pkt_dev);
1958
1959 if (!pkt_dev->odev) {
1960 printk("pktgen: ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1961 sprintf(pkt_dev->result,
1962 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1963 return;
1964 }
1965
1966 /* Default to the interface's mac if not explicitly set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001968 if (is_zero_ether_addr(pkt_dev->src_mac))
Luiz Capitulino222f1802006-03-20 22:16:13 -08001969 memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Luiz Capitulino222f1802006-03-20 22:16:13 -08001971 /* Set up Dest MAC */
Kris Katterjohnf404e9a2006-01-17 13:04:57 -08001972 memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Luiz Capitulino222f1802006-03-20 22:16:13 -08001974 /* Set up pkt size */
1975 pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size;
1976
1977 if (pkt_dev->flags & F_IPV6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001979 * Skip this automatic address setting until locks or functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 * gets exported
1981 */
1982
1983#ifdef NOTNOW
Luiz Capitulino222f1802006-03-20 22:16:13 -08001984 int i, set = 0, err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 struct inet6_dev *idev;
1986
Luiz Capitulino222f1802006-03-20 22:16:13 -08001987 for (i = 0; i < IN6_ADDR_HSIZE; i++)
1988 if (pkt_dev->cur_in6_saddr.s6_addr[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 set = 1;
1990 break;
1991 }
1992
Luiz Capitulino222f1802006-03-20 22:16:13 -08001993 if (!set) {
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 /*
1996 * Use linklevel address if unconfigured.
1997 *
1998 * use ipv6_get_lladdr if/when it's get exported
1999 */
2000
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002001 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if ((idev = __in6_dev_get(pkt_dev->odev)) != NULL) {
2003 struct inet6_ifaddr *ifp;
2004
2005 read_lock_bh(&idev->lock);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002006 for (ifp = idev->addr_list; ifp;
2007 ifp = ifp->if_next) {
2008 if (ifp->scope == IFA_LINK
2009 && !(ifp->
2010 flags & IFA_F_TENTATIVE)) {
2011 ipv6_addr_copy(&pkt_dev->
2012 cur_in6_saddr,
2013 &ifp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 err = 0;
2015 break;
2016 }
2017 }
2018 read_unlock_bh(&idev->lock);
2019 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002020 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002021 if (err)
2022 printk("pktgen: ERROR: IPv6 link address not availble.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 }
2024#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002025 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 pkt_dev->saddr_min = 0;
2027 pkt_dev->saddr_max = 0;
2028 if (strlen(pkt_dev->src_min) == 0) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002029
2030 struct in_device *in_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002033 in_dev = __in_dev_get_rcu(pkt_dev->odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 if (in_dev) {
2035 if (in_dev->ifa_list) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002036 pkt_dev->saddr_min =
2037 in_dev->ifa_list->ifa_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 pkt_dev->saddr_max = pkt_dev->saddr_min;
2039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041 rcu_read_unlock();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002042 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 pkt_dev->saddr_min = in_aton(pkt_dev->src_min);
2044 pkt_dev->saddr_max = in_aton(pkt_dev->src_max);
2045 }
2046
2047 pkt_dev->daddr_min = in_aton(pkt_dev->dst_min);
2048 pkt_dev->daddr_max = in_aton(pkt_dev->dst_max);
2049 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002050 /* Initialize current values. */
2051 pkt_dev->cur_dst_mac_offset = 0;
2052 pkt_dev->cur_src_mac_offset = 0;
2053 pkt_dev->cur_saddr = pkt_dev->saddr_min;
2054 pkt_dev->cur_daddr = pkt_dev->daddr_min;
2055 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
2056 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 pkt_dev->nflows = 0;
2058}
2059
2060static void spin(struct pktgen_dev *pkt_dev, __u64 spin_until_us)
2061{
2062 __u64 start;
2063 __u64 now;
2064
2065 start = now = getCurUs();
2066 printk(KERN_INFO "sleeping for %d\n", (int)(spin_until_us - now));
2067 while (now < spin_until_us) {
Stephen Hemmingerb4099fa2005-10-14 15:32:22 -07002068 /* TODO: optimize sleeping behavior */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002069 if (spin_until_us - now > jiffies_to_usecs(1) + 1)
Nishanth Aravamudan121caf52005-09-12 14:15:34 -07002070 schedule_timeout_interruptible(1);
2071 else if (spin_until_us - now > 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 do_softirq();
2073 if (!pkt_dev->running)
2074 return;
2075 if (need_resched())
2076 schedule();
2077 }
2078
2079 now = getCurUs();
2080 }
2081
2082 pkt_dev->idle_acc += now - start;
2083}
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085/* Increment/randomize headers according to flags and current values
2086 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2087 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002088static void mod_cur_headers(struct pktgen_dev *pkt_dev)
2089{
2090 __u32 imn;
2091 __u32 imx;
2092 int flow = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Luiz Capitulino222f1802006-03-20 22:16:13 -08002094 if (pkt_dev->cflows) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 flow = pktgen_random() % pkt_dev->cflows;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 if (pkt_dev->flows[flow].count > pkt_dev->lflow)
2098 pkt_dev->flows[flow].count = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 /* Deal with source MAC */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002102 if (pkt_dev->src_mac_count > 1) {
2103 __u32 mc;
2104 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Luiz Capitulino222f1802006-03-20 22:16:13 -08002106 if (pkt_dev->flags & F_MACSRC_RND)
2107 mc = pktgen_random() % (pkt_dev->src_mac_count);
2108 else {
2109 mc = pkt_dev->cur_src_mac_offset++;
2110 if (pkt_dev->cur_src_mac_offset >
2111 pkt_dev->src_mac_count)
2112 pkt_dev->cur_src_mac_offset = 0;
2113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Luiz Capitulino222f1802006-03-20 22:16:13 -08002115 tmp = pkt_dev->src_mac[5] + (mc & 0xFF);
2116 pkt_dev->hh[11] = tmp;
2117 tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2118 pkt_dev->hh[10] = tmp;
2119 tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2120 pkt_dev->hh[9] = tmp;
2121 tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2122 pkt_dev->hh[8] = tmp;
2123 tmp = (pkt_dev->src_mac[1] + (tmp >> 8));
2124 pkt_dev->hh[7] = tmp;
2125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Luiz Capitulino222f1802006-03-20 22:16:13 -08002127 /* Deal with Destination MAC */
2128 if (pkt_dev->dst_mac_count > 1) {
2129 __u32 mc;
2130 __u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Luiz Capitulino222f1802006-03-20 22:16:13 -08002132 if (pkt_dev->flags & F_MACDST_RND)
2133 mc = pktgen_random() % (pkt_dev->dst_mac_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Luiz Capitulino222f1802006-03-20 22:16:13 -08002135 else {
2136 mc = pkt_dev->cur_dst_mac_offset++;
2137 if (pkt_dev->cur_dst_mac_offset >
2138 pkt_dev->dst_mac_count) {
2139 pkt_dev->cur_dst_mac_offset = 0;
2140 }
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Luiz Capitulino222f1802006-03-20 22:16:13 -08002143 tmp = pkt_dev->dst_mac[5] + (mc & 0xFF);
2144 pkt_dev->hh[5] = tmp;
2145 tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8));
2146 pkt_dev->hh[4] = tmp;
2147 tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8));
2148 pkt_dev->hh[3] = tmp;
2149 tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8));
2150 pkt_dev->hh[2] = tmp;
2151 tmp = (pkt_dev->dst_mac[1] + (tmp >> 8));
2152 pkt_dev->hh[1] = tmp;
2153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002155 if (pkt_dev->flags & F_MPLS_RND) {
2156 unsigned i;
2157 for(i = 0; i < pkt_dev->nr_labels; i++)
2158 if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM)
2159 pkt_dev->labels[i] = MPLS_STACK_BOTTOM |
Al Viro252e33462006-11-14 20:48:11 -08002160 ((__force __be32)pktgen_random() &
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002161 htonl(0x000fffff));
2162 }
2163
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002164 if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) {
2165 pkt_dev->vlan_id = pktgen_random() % 4096;
2166 }
2167
2168 if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) {
2169 pkt_dev->svlan_id = pktgen_random() % 4096;
2170 }
2171
Luiz Capitulino222f1802006-03-20 22:16:13 -08002172 if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) {
2173 if (pkt_dev->flags & F_UDPSRC_RND)
2174 pkt_dev->cur_udp_src =
2175 ((pktgen_random() %
2176 (pkt_dev->udp_src_max - pkt_dev->udp_src_min)) +
2177 pkt_dev->udp_src_min);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Luiz Capitulino222f1802006-03-20 22:16:13 -08002179 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 pkt_dev->cur_udp_src++;
2181 if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max)
2182 pkt_dev->cur_udp_src = pkt_dev->udp_src_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002183 }
2184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Luiz Capitulino222f1802006-03-20 22:16:13 -08002186 if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) {
2187 if (pkt_dev->flags & F_UDPDST_RND) {
2188 pkt_dev->cur_udp_dst =
2189 ((pktgen_random() %
2190 (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)) +
2191 pkt_dev->udp_dst_min);
2192 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 pkt_dev->cur_udp_dst++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002194 if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002196 }
2197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 if (!(pkt_dev->flags & F_IPV6)) {
2200
Luiz Capitulino222f1802006-03-20 22:16:13 -08002201 if ((imn = ntohl(pkt_dev->saddr_min)) < (imx =
2202 ntohl(pkt_dev->
2203 saddr_max))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 __u32 t;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002205 if (pkt_dev->flags & F_IPSRC_RND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 t = ((pktgen_random() % (imx - imn)) + imn);
2207 else {
2208 t = ntohl(pkt_dev->cur_saddr);
2209 t++;
2210 if (t > imx) {
2211 t = imn;
2212 }
2213 }
2214 pkt_dev->cur_saddr = htonl(t);
2215 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 if (pkt_dev->cflows && pkt_dev->flows[flow].count != 0) {
2218 pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr;
2219 } else {
Al Viro252e33462006-11-14 20:48:11 -08002220 imn = ntohl(pkt_dev->daddr_min);
2221 imx = ntohl(pkt_dev->daddr_max);
2222 if (imn < imx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 __u32 t;
Al Viro252e33462006-11-14 20:48:11 -08002224 __be32 s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (pkt_dev->flags & F_IPDST_RND) {
2226
Al Viro252e33462006-11-14 20:48:11 -08002227 t = pktgen_random() % (imx - imn) + imn;
2228 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Al Viro252e33462006-11-14 20:48:11 -08002230 while (LOOPBACK(s) || MULTICAST(s)
2231 || BADCLASS(s) || ZERONET(s)
2232 || LOCAL_MCAST(s)) {
2233 t = (pktgen_random() %
2234 (imx - imn)) + imn;
2235 s = htonl(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 }
Al Viro252e33462006-11-14 20:48:11 -08002237 pkt_dev->cur_daddr = s;
2238 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 t = ntohl(pkt_dev->cur_daddr);
2240 t++;
2241 if (t > imx) {
2242 t = imn;
2243 }
2244 pkt_dev->cur_daddr = htonl(t);
2245 }
2246 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002247 if (pkt_dev->cflows) {
2248 pkt_dev->flows[flow].cur_daddr =
2249 pkt_dev->cur_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 pkt_dev->nflows++;
2251 }
2252 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002253 } else { /* IPV6 * */
2254
2255 if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 &&
2256 pkt_dev->min_in6_daddr.s6_addr32[1] == 0 &&
2257 pkt_dev->min_in6_daddr.s6_addr32[2] == 0 &&
2258 pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 else {
2260 int i;
2261
2262 /* Only random destinations yet */
2263
Luiz Capitulino222f1802006-03-20 22:16:13 -08002264 for (i = 0; i < 4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 pkt_dev->cur_in6_daddr.s6_addr32[i] =
Al Viro252e33462006-11-14 20:48:11 -08002266 (((__force __be32)pktgen_random() |
Luiz Capitulino222f1802006-03-20 22:16:13 -08002267 pkt_dev->min_in6_daddr.s6_addr32[i]) &
2268 pkt_dev->max_in6_daddr.s6_addr32[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
2272
Luiz Capitulino222f1802006-03-20 22:16:13 -08002273 if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) {
2274 __u32 t;
2275 if (pkt_dev->flags & F_TXSIZE_RND) {
2276 t = ((pktgen_random() %
2277 (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size))
2278 + pkt_dev->min_pkt_size);
2279 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 t = pkt_dev->cur_pkt_size + 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002281 if (t > pkt_dev->max_pkt_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 t = pkt_dev->min_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002283 }
2284 pkt_dev->cur_pkt_size = t;
2285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 pkt_dev->flows[flow].count++;
2288}
2289
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002290static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev)
2291{
2292 unsigned i;
2293 for(i = 0; i < pkt_dev->nr_labels; i++) {
2294 *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM;
2295 }
2296 mpls--;
2297 *mpls |= MPLS_STACK_BOTTOM;
2298}
2299
Al Viro0f37c602006-11-03 03:49:56 -08002300static inline __be16 build_tci(unsigned int id, unsigned int cfi,
2301 unsigned int prio)
2302{
2303 return htons(id | (cfi << 12) | (prio << 13));
2304}
2305
Luiz Capitulino222f1802006-03-20 22:16:13 -08002306static struct sk_buff *fill_packet_ipv4(struct net_device *odev,
2307 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 struct sk_buff *skb = NULL;
2310 __u8 *eth;
2311 struct udphdr *udph;
2312 int datalen, iplen;
2313 struct iphdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002314 struct pktgen_hdr *pgh = NULL;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002315 __be16 protocol = __constant_htons(ETH_P_IP);
2316 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002317 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2318 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2319 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2320 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
2321
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002322
2323 if (pkt_dev->nr_labels)
2324 protocol = __constant_htons(ETH_P_MPLS_UC);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002325
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002326 if (pkt_dev->vlan_id != 0xffff)
2327 protocol = __constant_htons(ETH_P_8021Q);
2328
Robert Olsson64053be2005-06-26 15:27:10 -07002329 /* Update any of the values, used when we're incrementing various
2330 * fields.
2331 */
2332 mod_cur_headers(pkt_dev);
2333
David S. Miller7ac54592006-01-18 14:19:10 -08002334 datalen = (odev->hard_header_len + 16) & ~0xf;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002335 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + datalen +
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002336 pkt_dev->nr_labels*sizeof(u32) +
2337 VLAN_TAG_SIZE(pkt_dev) + SVLAN_TAG_SIZE(pkt_dev),
2338 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 if (!skb) {
2340 sprintf(pkt_dev->result, "No memory");
2341 return NULL;
2342 }
2343
David S. Miller7ac54592006-01-18 14:19:10 -08002344 skb_reserve(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 /* Reserve for ethernet and IP header */
2347 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002348 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2349 if (pkt_dev->nr_labels)
2350 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002351
2352 if (pkt_dev->vlan_id != 0xffff) {
2353 if(pkt_dev->svlan_id != 0xffff) {
2354 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002355 *svlan_tci = build_tci(pkt_dev->svlan_id,
2356 pkt_dev->svlan_cfi,
2357 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002358 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
2359 *svlan_encapsulated_proto = __constant_htons(ETH_P_8021Q);
2360 }
2361 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002362 *vlan_tci = build_tci(pkt_dev->vlan_id,
2363 pkt_dev->vlan_cfi,
2364 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002365 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
2366 *vlan_encapsulated_proto = __constant_htons(ETH_P_IP);
2367 }
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 iph = (struct iphdr *)skb_put(skb, sizeof(struct iphdr));
2370 udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr));
2371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002373 *(__be16 *) & eth[12] = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002375 /* Eth + IPh + UDPh + mpls */
2376 datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 -
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002377 pkt_dev->nr_labels*sizeof(u32) - VLAN_TAG_SIZE(pkt_dev) - SVLAN_TAG_SIZE(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002378 if (datalen < sizeof(struct pktgen_hdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 datalen = sizeof(struct pktgen_hdr);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 udph->source = htons(pkt_dev->cur_udp_src);
2382 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002383 udph->len = htons(datalen + 8); /* DATA + udphdr */
2384 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 iph->ihl = 5;
2387 iph->version = 4;
2388 iph->ttl = 32;
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002389 iph->tos = pkt_dev->tos;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002390 iph->protocol = IPPROTO_UDP; /* UDP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 iph->saddr = pkt_dev->cur_saddr;
2392 iph->daddr = pkt_dev->cur_daddr;
2393 iph->frag_off = 0;
2394 iplen = 20 + 8 + datalen;
2395 iph->tot_len = htons(iplen);
2396 iph->check = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002397 iph->check = ip_fast_csum((void *)iph, iph->ihl);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002398 skb->protocol = protocol;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002399 skb->mac.raw = ((u8 *) iph) - 14 - pkt_dev->nr_labels*sizeof(u32) -
2400 VLAN_TAG_SIZE(pkt_dev) - SVLAN_TAG_SIZE(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 skb->dev = odev;
2402 skb->pkt_type = PACKET_HOST;
Chen-Li Tienaaf58062006-08-07 20:49:07 -07002403 skb->nh.iph = iph;
2404 skb->h.uh = udph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Luiz Capitulino222f1802006-03-20 22:16:13 -08002406 if (pkt_dev->nfrags <= 0)
2407 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 else {
2409 int frags = pkt_dev->nfrags;
2410 int i;
2411
Luiz Capitulino222f1802006-03-20 22:16:13 -08002412 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (frags > MAX_SKB_FRAGS)
2415 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002416 if (datalen > frags * PAGE_SIZE) {
2417 skb_put(skb, datalen - frags * PAGE_SIZE);
2418 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 }
2420
2421 i = 0;
2422 while (datalen > 0) {
2423 struct page *page = alloc_pages(GFP_KERNEL, 0);
2424 skb_shinfo(skb)->frags[i].page = page;
2425 skb_shinfo(skb)->frags[i].page_offset = 0;
2426 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002427 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 datalen -= skb_shinfo(skb)->frags[i].size;
2429 skb->len += skb_shinfo(skb)->frags[i].size;
2430 skb->data_len += skb_shinfo(skb)->frags[i].size;
2431 i++;
2432 skb_shinfo(skb)->nr_frags = i;
2433 }
2434
2435 while (i < frags) {
2436 int rem;
2437
2438 if (i == 0)
2439 break;
2440
2441 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2442 if (rem == 0)
2443 break;
2444
2445 skb_shinfo(skb)->frags[i - 1].size -= rem;
2446
Luiz Capitulino222f1802006-03-20 22:16:13 -08002447 skb_shinfo(skb)->frags[i] =
2448 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002450 skb_shinfo(skb)->frags[i].page =
2451 skb_shinfo(skb)->frags[i - 1].page;
2452 skb_shinfo(skb)->frags[i].page_offset +=
2453 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 skb_shinfo(skb)->frags[i].size = rem;
2455 i++;
2456 skb_shinfo(skb)->nr_frags = i;
2457 }
2458 }
2459
Luiz Capitulino222f1802006-03-20 22:16:13 -08002460 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Luiz Capitulino222f1802006-03-20 22:16:13 -08002462 if (pgh) {
2463 struct timeval timestamp;
2464
2465 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2466 pgh->seq_num = htonl(pkt_dev->seq_num);
2467
2468 do_gettimeofday(&timestamp);
2469 pgh->tv_sec = htonl(timestamp.tv_sec);
2470 pgh->tv_usec = htonl(timestamp.tv_usec);
2471 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 return skb;
2474}
2475
2476/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002477 * scan_ip6, fmt_ip taken from dietlibc-0.21
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2479 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002480 * Slightly modified for kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 * Should be candidate for net/ipv4/utils.c
2482 * --ro
2483 */
2484
Luiz Capitulino222f1802006-03-20 22:16:13 -08002485static unsigned int scan_ip6(const char *s, char ip[16])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
2487 unsigned int i;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002488 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 unsigned long u;
2490 char suffix[16];
Luiz Capitulino222f1802006-03-20 22:16:13 -08002491 unsigned int prefixlen = 0;
2492 unsigned int suffixlen = 0;
Al Viro252e33462006-11-14 20:48:11 -08002493 __be32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Luiz Capitulino222f1802006-03-20 22:16:13 -08002495 for (i = 0; i < 16; i++)
2496 ip[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 for (;;) {
2499 if (*s == ':') {
2500 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002501 if (s[1] == ':') { /* Found "::", skip to part 2 */
2502 s += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 len++;
2504 break;
2505 }
2506 s++;
2507 }
2508 {
2509 char *tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002510 u = simple_strtoul(s, &tmp, 16);
2511 i = tmp - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 }
2513
Luiz Capitulino222f1802006-03-20 22:16:13 -08002514 if (!i)
2515 return 0;
2516 if (prefixlen == 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 /* the last 4 bytes may be written as IPv4 address */
2519
2520 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002521 memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp));
2522 return i + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 }
2524 ip[prefixlen++] = (u >> 8);
2525 ip[prefixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002526 s += i;
2527 len += i;
2528 if (prefixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return len;
2530 }
2531
2532/* part 2, after "::" */
2533 for (;;) {
2534 if (*s == ':') {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002535 if (suffixlen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 break;
2537 s++;
2538 len++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002539 } else if (suffixlen != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 break;
2541 {
2542 char *tmp;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002543 u = simple_strtol(s, &tmp, 16);
2544 i = tmp - s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 }
2546 if (!i) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002547 if (*s)
2548 len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 break;
2550 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002551 if (suffixlen + prefixlen <= 12 && s[i] == '.') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 tmp = in_aton(s);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002553 memcpy((struct in_addr *)(suffix + suffixlen), &tmp,
2554 sizeof(tmp));
2555 suffixlen += 4;
2556 len += strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 break;
2558 }
2559 suffix[suffixlen++] = (u >> 8);
2560 suffix[suffixlen++] = (u & 255);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002561 s += i;
2562 len += i;
2563 if (prefixlen + suffixlen == 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 break;
2565 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002566 for (i = 0; i < suffixlen; i++)
2567 ip[16 - suffixlen + i] = suffix[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 return len;
2569}
2570
Luiz Capitulino222f1802006-03-20 22:16:13 -08002571static char tohex(char hexdigit)
2572{
2573 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574}
2575
Luiz Capitulino222f1802006-03-20 22:16:13 -08002576static int fmt_xlong(char *s, unsigned int i)
2577{
2578 char *bak = s;
2579 *s = tohex((i >> 12) & 0xf);
2580 if (s != bak || *s != '0')
2581 ++s;
2582 *s = tohex((i >> 8) & 0xf);
2583 if (s != bak || *s != '0')
2584 ++s;
2585 *s = tohex((i >> 4) & 0xf);
2586 if (s != bak || *s != '0')
2587 ++s;
2588 *s = tohex(i & 0xf);
2589 return s - bak + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590}
2591
Luiz Capitulino222f1802006-03-20 22:16:13 -08002592static unsigned int fmt_ip6(char *s, const char ip[16])
2593{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 unsigned int len;
2595 unsigned int i;
2596 unsigned int temp;
2597 unsigned int compressing;
2598 int j;
2599
Luiz Capitulino222f1802006-03-20 22:16:13 -08002600 len = 0;
2601 compressing = 0;
2602 for (j = 0; j < 16; j += 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604#ifdef V4MAPPEDPREFIX
Luiz Capitulino222f1802006-03-20 22:16:13 -08002605 if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) {
2606 inet_ntoa_r(*(struct in_addr *)(ip + 12), s);
2607 temp = strlen(s);
2608 return len + temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 }
2610#endif
Luiz Capitulino222f1802006-03-20 22:16:13 -08002611 temp = ((unsigned long)(unsigned char)ip[j] << 8) +
2612 (unsigned long)(unsigned char)ip[j + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (temp == 0) {
2614 if (!compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002615 compressing = 1;
2616 if (j == 0) {
2617 *s++ = ':';
2618 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 }
2620 }
2621 } else {
2622 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002623 compressing = 0;
2624 *s++ = ':';
2625 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002627 i = fmt_xlong(s, temp);
2628 len += i;
2629 s += i;
2630 if (j < 14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 *s++ = ':';
2632 ++len;
2633 }
2634 }
2635 }
2636 if (compressing) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08002637 *s++ = ':';
2638 ++len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002640 *s = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 return len;
2642}
2643
Luiz Capitulino222f1802006-03-20 22:16:13 -08002644static struct sk_buff *fill_packet_ipv6(struct net_device *odev,
2645 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646{
2647 struct sk_buff *skb = NULL;
2648 __u8 *eth;
2649 struct udphdr *udph;
2650 int datalen;
2651 struct ipv6hdr *iph;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002652 struct pktgen_hdr *pgh = NULL;
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002653 __be16 protocol = __constant_htons(ETH_P_IPV6);
2654 __be32 *mpls;
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002655 __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */
2656 __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */
2657 __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */
2658 __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002659
2660 if (pkt_dev->nr_labels)
2661 protocol = __constant_htons(ETH_P_MPLS_UC);
Robert Olsson64053be2005-06-26 15:27:10 -07002662
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002663 if (pkt_dev->vlan_id != 0xffff)
2664 protocol = __constant_htons(ETH_P_8021Q);
2665
Robert Olsson64053be2005-06-26 15:27:10 -07002666 /* Update any of the values, used when we're incrementing various
2667 * fields.
2668 */
2669 mod_cur_headers(pkt_dev);
2670
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002671 skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + 16 +
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002672 pkt_dev->nr_labels*sizeof(u32) +
2673 VLAN_TAG_SIZE(pkt_dev) + SVLAN_TAG_SIZE(pkt_dev),
2674 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 if (!skb) {
2676 sprintf(pkt_dev->result, "No memory");
2677 return NULL;
2678 }
2679
2680 skb_reserve(skb, 16);
2681
2682 /* Reserve for ethernet and IP header */
2683 eth = (__u8 *) skb_push(skb, 14);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002684 mpls = (__be32 *)skb_put(skb, pkt_dev->nr_labels*sizeof(__u32));
2685 if (pkt_dev->nr_labels)
2686 mpls_push(mpls, pkt_dev);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002687
2688 if (pkt_dev->vlan_id != 0xffff) {
2689 if(pkt_dev->svlan_id != 0xffff) {
2690 svlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002691 *svlan_tci = build_tci(pkt_dev->svlan_id,
2692 pkt_dev->svlan_cfi,
2693 pkt_dev->svlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002694 svlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
2695 *svlan_encapsulated_proto = __constant_htons(ETH_P_8021Q);
2696 }
2697 vlan_tci = (__be16 *)skb_put(skb, sizeof(__be16));
Al Viro0f37c602006-11-03 03:49:56 -08002698 *vlan_tci = build_tci(pkt_dev->vlan_id,
2699 pkt_dev->vlan_cfi,
2700 pkt_dev->vlan_p);
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002701 vlan_encapsulated_proto = (__be16 *)skb_put(skb, sizeof(__be16));
2702 *vlan_encapsulated_proto = __constant_htons(ETH_P_IPV6);
2703 }
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 iph = (struct ipv6hdr *)skb_put(skb, sizeof(struct ipv6hdr));
2706 udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr));
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 memcpy(eth, pkt_dev->hh, 12);
Al Viro252e33462006-11-14 20:48:11 -08002709 *(__be16 *) & eth[12] = protocol;
Robert Olsson64053be2005-06-26 15:27:10 -07002710
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002711 /* Eth + IPh + UDPh + mpls */
2712 datalen = pkt_dev->cur_pkt_size - 14 -
2713 sizeof(struct ipv6hdr) - sizeof(struct udphdr) -
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002714 pkt_dev->nr_labels*sizeof(u32) - VLAN_TAG_SIZE(pkt_dev) - SVLAN_TAG_SIZE(pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Luiz Capitulino222f1802006-03-20 22:16:13 -08002716 if (datalen < sizeof(struct pktgen_hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 datalen = sizeof(struct pktgen_hdr);
2718 if (net_ratelimit())
Luiz Capitulino222f1802006-03-20 22:16:13 -08002719 printk(KERN_INFO "pktgen: increased datalen to %d\n",
2720 datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 }
2722
2723 udph->source = htons(pkt_dev->cur_udp_src);
2724 udph->dest = htons(pkt_dev->cur_udp_dst);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002725 udph->len = htons(datalen + sizeof(struct udphdr));
2726 udph->check = 0; /* No checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Al Viro252e33462006-11-14 20:48:11 -08002728 *(__be32 *) iph = __constant_htonl(0x60000000); /* Version + flow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002730 if (pkt_dev->traffic_class) {
2731 /* Version + traffic class + flow (0) */
Al Viro252e33462006-11-14 20:48:11 -08002732 *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20));
Francesco Fondelli1ca77682006-09-27 16:32:03 -07002733 }
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 iph->hop_limit = 32;
2736
2737 iph->payload_len = htons(sizeof(struct udphdr) + datalen);
2738 iph->nexthdr = IPPROTO_UDP;
2739
2740 ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr);
2741 ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr);
2742
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002743 skb->mac.raw = ((u8 *) iph) - 14 - pkt_dev->nr_labels*sizeof(u32) -
2744 VLAN_TAG_SIZE(pkt_dev) - SVLAN_TAG_SIZE(pkt_dev);
Steven Whitehouseca6549a2006-03-23 01:10:26 -08002745 skb->protocol = protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 skb->dev = odev;
2747 skb->pkt_type = PACKET_HOST;
David S. Miller69d8c282006-08-07 20:52:10 -07002748 skb->nh.ipv6h = iph;
2749 skb->h.uh = udph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Luiz Capitulino222f1802006-03-20 22:16:13 -08002751 if (pkt_dev->nfrags <= 0)
2752 pgh = (struct pktgen_hdr *)skb_put(skb, datalen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 else {
2754 int frags = pkt_dev->nfrags;
2755 int i;
2756
Luiz Capitulino222f1802006-03-20 22:16:13 -08002757 pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8);
2758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 if (frags > MAX_SKB_FRAGS)
2760 frags = MAX_SKB_FRAGS;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002761 if (datalen > frags * PAGE_SIZE) {
2762 skb_put(skb, datalen - frags * PAGE_SIZE);
2763 datalen = frags * PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 }
2765
2766 i = 0;
2767 while (datalen > 0) {
2768 struct page *page = alloc_pages(GFP_KERNEL, 0);
2769 skb_shinfo(skb)->frags[i].page = page;
2770 skb_shinfo(skb)->frags[i].page_offset = 0;
2771 skb_shinfo(skb)->frags[i].size =
Luiz Capitulino222f1802006-03-20 22:16:13 -08002772 (datalen < PAGE_SIZE ? datalen : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 datalen -= skb_shinfo(skb)->frags[i].size;
2774 skb->len += skb_shinfo(skb)->frags[i].size;
2775 skb->data_len += skb_shinfo(skb)->frags[i].size;
2776 i++;
2777 skb_shinfo(skb)->nr_frags = i;
2778 }
2779
2780 while (i < frags) {
2781 int rem;
2782
2783 if (i == 0)
2784 break;
2785
2786 rem = skb_shinfo(skb)->frags[i - 1].size / 2;
2787 if (rem == 0)
2788 break;
2789
2790 skb_shinfo(skb)->frags[i - 1].size -= rem;
2791
Luiz Capitulino222f1802006-03-20 22:16:13 -08002792 skb_shinfo(skb)->frags[i] =
2793 skb_shinfo(skb)->frags[i - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 get_page(skb_shinfo(skb)->frags[i].page);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002795 skb_shinfo(skb)->frags[i].page =
2796 skb_shinfo(skb)->frags[i - 1].page;
2797 skb_shinfo(skb)->frags[i].page_offset +=
2798 skb_shinfo(skb)->frags[i - 1].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 skb_shinfo(skb)->frags[i].size = rem;
2800 i++;
2801 skb_shinfo(skb)->nr_frags = i;
2802 }
2803 }
2804
Luiz Capitulino222f1802006-03-20 22:16:13 -08002805 /* Stamp the time, and sequence number, convert them to network byte order */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 /* should we update cloned packets too ? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002807 if (pgh) {
2808 struct timeval timestamp;
2809
2810 pgh->pgh_magic = htonl(PKTGEN_MAGIC);
2811 pgh->seq_num = htonl(pkt_dev->seq_num);
2812
2813 do_gettimeofday(&timestamp);
2814 pgh->tv_sec = htonl(timestamp.tv_sec);
2815 pgh->tv_usec = htonl(timestamp.tv_usec);
2816 }
Francesco Fondelli34954dd2006-09-27 16:30:44 -07002817 /* pkt_dev->seq_num++; FF: you really mean this? */
Luiz Capitulino222f1802006-03-20 22:16:13 -08002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 return skb;
2820}
2821
Luiz Capitulino222f1802006-03-20 22:16:13 -08002822static inline struct sk_buff *fill_packet(struct net_device *odev,
2823 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002825 if (pkt_dev->flags & F_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return fill_packet_ipv6(odev, pkt_dev);
2827 else
2828 return fill_packet_ipv4(odev, pkt_dev);
2829}
2830
Luiz Capitulino222f1802006-03-20 22:16:13 -08002831static void pktgen_clear_counters(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002833 pkt_dev->seq_num = 1;
2834 pkt_dev->idle_acc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002836 pkt_dev->tx_bytes = 0;
2837 pkt_dev->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838}
2839
2840/* Set up structure for sending pkts, clear counters */
2841
2842static void pktgen_run(struct pktgen_thread *t)
2843{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08002844 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 int started = 0;
2846
Stephen Hemminger25c4e532007-03-04 16:06:47 -08002847 pr_debug("pktgen: entering pktgen_run. %p\n", t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 if_lock(t);
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08002850 list_for_each_entry(pkt_dev, &t->if_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 /*
2853 * setup odev and create initial packet.
2854 */
2855 pktgen_setup_inject(pkt_dev);
2856
Luiz Capitulino222f1802006-03-20 22:16:13 -08002857 if (pkt_dev->odev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 pktgen_clear_counters(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002859 pkt_dev->running = 1; /* Cranke yeself! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 pkt_dev->skb = NULL;
2861 pkt_dev->started_at = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08002862 pkt_dev->next_tx_us = getCurUs(); /* Transmit immediately */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002864
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 strcpy(pkt_dev->result, "Starting");
2866 started++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002867 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 strcpy(pkt_dev->result, "Error starting");
2869 }
2870 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002871 if (started)
2872 t->control &= ~(T_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873}
2874
2875static void pktgen_stop_all_threads_ifs(void)
2876{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002877 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Stephen Hemminger25c4e532007-03-04 16:06:47 -08002879 pr_debug("pktgen: entering pktgen_stop_all_threads_ifs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002881 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002882
2883 list_for_each_entry(t, &pktgen_threads, th_list)
Arthur Kepner95ed63f2006-03-20 21:26:56 -08002884 t->control |= T_STOP;
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002885
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002886 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887}
2888
Luiz Capitulino222f1802006-03-20 22:16:13 -08002889static int thread_is_running(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08002891 struct pktgen_dev *pkt_dev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002892 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08002894 list_for_each_entry(pkt_dev, &t->if_list, list)
2895 if (pkt_dev->running) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 res = 1;
2897 break;
2898 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08002899 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900}
2901
Luiz Capitulino222f1802006-03-20 22:16:13 -08002902static int pktgen_wait_thread_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002904 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Luiz Capitulino222f1802006-03-20 22:16:13 -08002906 while (thread_is_running(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Luiz Capitulino222f1802006-03-20 22:16:13 -08002908 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Luiz Capitulino222f1802006-03-20 22:16:13 -08002910 msleep_interruptible(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Luiz Capitulino222f1802006-03-20 22:16:13 -08002912 if (signal_pending(current))
2913 goto signal;
2914 if_lock(t);
2915 }
2916 if_unlock(t);
2917 return 1;
2918signal:
2919 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920}
2921
2922static int pktgen_wait_all_threads_run(void)
2923{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002924 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 int sig = 1;
Luiz Capitulino222f1802006-03-20 22:16:13 -08002926
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002927 mutex_lock(&pktgen_thread_lock);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002928
2929 list_for_each_entry(t, &pktgen_threads, th_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 sig = pktgen_wait_thread_run(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08002931 if (sig == 0)
2932 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 }
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002934
2935 if (sig == 0)
2936 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 t->control |= (T_STOP);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002938
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002939 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 return sig;
2941}
2942
2943static void pktgen_run_all_threads(void)
2944{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002945 struct pktgen_thread *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Stephen Hemminger25c4e532007-03-04 16:06:47 -08002947 pr_debug("pktgen: entering pktgen_run_all_threads.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002949 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002951 list_for_each_entry(t, &pktgen_threads, th_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 t->control |= (T_RUN);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08002953
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08002954 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Luiz Capitulino222f1802006-03-20 22:16:13 -08002956 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
2957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 pktgen_wait_all_threads_run();
2959}
2960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961static void show_results(struct pktgen_dev *pkt_dev, int nr_frags)
2962{
Luiz Capitulino222f1802006-03-20 22:16:13 -08002963 __u64 total_us, bps, mbps, pps, idle;
2964 char *p = pkt_dev->result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Luiz Capitulino222f1802006-03-20 22:16:13 -08002966 total_us = pkt_dev->stopped_at - pkt_dev->started_at;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Luiz Capitulino222f1802006-03-20 22:16:13 -08002968 idle = pkt_dev->idle_acc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Luiz Capitulino222f1802006-03-20 22:16:13 -08002970 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
2971 (unsigned long long)total_us,
2972 (unsigned long long)(total_us - idle),
2973 (unsigned long long)idle,
2974 (unsigned long long)pkt_dev->sofar,
2975 pkt_dev->cur_pkt_size, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Luiz Capitulino222f1802006-03-20 22:16:13 -08002977 pps = pkt_dev->sofar * USEC_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Luiz Capitulino222f1802006-03-20 22:16:13 -08002979 while ((total_us >> 32) != 0) {
2980 pps >>= 1;
2981 total_us >>= 1;
2982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Luiz Capitulino222f1802006-03-20 22:16:13 -08002984 do_div(pps, total_us);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Luiz Capitulino222f1802006-03-20 22:16:13 -08002986 bps = pps * 8 * pkt_dev->cur_pkt_size;
2987
2988 mbps = bps;
2989 do_div(mbps, 1000000);
2990 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
2991 (unsigned long long)pps,
2992 (unsigned long long)mbps,
2993 (unsigned long long)bps,
2994 (unsigned long long)pkt_dev->errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
2997/* Set stopped-at timer, remove from running list, do counters & statistics */
2998
Luiz Capitulino222f1802006-03-20 22:16:13 -08002999static int pktgen_stop_device(struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003001 int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003002
Luiz Capitulino222f1802006-03-20 22:16:13 -08003003 if (!pkt_dev->running) {
3004 printk("pktgen: interface: %s is already stopped\n",
3005 pkt_dev->ifname);
3006 return -EINVAL;
3007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
Luiz Capitulino222f1802006-03-20 22:16:13 -08003009 pkt_dev->stopped_at = getCurUs();
3010 pkt_dev->running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003012 show_results(pkt_dev, nr_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Luiz Capitulino222f1802006-03-20 22:16:13 -08003014 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
Luiz Capitulino222f1802006-03-20 22:16:13 -08003017static struct pktgen_dev *next_to_run(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003019 struct pktgen_dev *pkt_dev, *best = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 if_lock(t);
3022
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003023 list_for_each_entry(pkt_dev, &t->if_list, list) {
3024 if (!pkt_dev->running)
Luiz Capitulino222f1802006-03-20 22:16:13 -08003025 continue;
3026 if (best == NULL)
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003027 best = pkt_dev;
3028 else if (pkt_dev->next_tx_us < best->next_tx_us)
3029 best = pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 }
3031 if_unlock(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003032 return best;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
3034
Luiz Capitulino222f1802006-03-20 22:16:13 -08003035static void pktgen_stop(struct pktgen_thread *t)
3036{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003037 struct pktgen_dev *pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003039 pr_debug("pktgen: entering pktgen_stop\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Luiz Capitulino222f1802006-03-20 22:16:13 -08003041 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003043 list_for_each_entry(pkt_dev, &t->if_list, list) {
3044 pktgen_stop_device(pkt_dev);
3045 if (pkt_dev->skb)
3046 kfree_skb(pkt_dev->skb);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003047
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003048 pkt_dev->skb = NULL;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Luiz Capitulino222f1802006-03-20 22:16:13 -08003051 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052}
3053
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003054/*
3055 * one of our devices needs to be removed - find it
3056 * and remove it
3057 */
3058static void pktgen_rem_one_if(struct pktgen_thread *t)
3059{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003060 struct list_head *q, *n;
3061 struct pktgen_dev *cur;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003062
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003063 pr_debug("pktgen: entering pktgen_rem_one_if\n");
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003064
3065 if_lock(t);
3066
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003067 list_for_each_safe(q, n, &t->if_list) {
3068 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003069
Luiz Capitulino222f1802006-03-20 22:16:13 -08003070 if (!cur->removal_mark)
3071 continue;
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003072
3073 if (cur->skb)
3074 kfree_skb(cur->skb);
3075 cur->skb = NULL;
3076
3077 pktgen_remove_device(t, cur);
3078
3079 break;
3080 }
3081
3082 if_unlock(t);
3083}
3084
Luiz Capitulino222f1802006-03-20 22:16:13 -08003085static void pktgen_rem_all_ifs(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003087 struct list_head *q, *n;
3088 struct pktgen_dev *cur;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003089
3090 /* Remove all devices, free mem */
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003091
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003092 pr_debug("pktgen: entering pktgen_rem_all_ifs\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003093 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003095 list_for_each_safe(q, n, &t->if_list) {
3096 cur = list_entry(q, struct pktgen_dev, list);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003097
3098 if (cur->skb)
3099 kfree_skb(cur->skb);
3100 cur->skb = NULL;
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 pktgen_remove_device(t, cur);
3103 }
3104
Luiz Capitulino222f1802006-03-20 22:16:13 -08003105 if_unlock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106}
3107
Luiz Capitulino222f1802006-03-20 22:16:13 -08003108static void pktgen_rem_thread(struct pktgen_thread *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003110 /* Remove from the thread list */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
David S. Milleree74baa2007-01-01 20:51:53 -08003112 remove_proc_entry(t->tsk->comm, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003114 mutex_lock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003116 list_del(&t->th_list);
3117
Luiz Capitulino6146e6a2006-03-20 22:24:45 -08003118 mutex_unlock(&pktgen_thread_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119}
3120
3121static __inline__ void pktgen_xmit(struct pktgen_dev *pkt_dev)
3122{
3123 struct net_device *odev = NULL;
3124 __u64 idle_start = 0;
3125 int ret;
3126
3127 odev = pkt_dev->odev;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if (pkt_dev->delay_us || pkt_dev->delay_ns) {
3130 u64 now;
3131
3132 now = getCurUs();
3133 if (now < pkt_dev->next_tx_us)
3134 spin(pkt_dev, pkt_dev->next_tx_us);
3135
3136 /* This is max DELAY, this has special meaning of
3137 * "never transmit"
3138 */
3139 if (pkt_dev->delay_us == 0x7FFFFFFF) {
3140 pkt_dev->next_tx_us = getCurUs() + pkt_dev->delay_us;
3141 pkt_dev->next_tx_ns = pkt_dev->delay_ns;
3142 goto out;
3143 }
3144 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003145
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 if (netif_queue_stopped(odev) || need_resched()) {
3147 idle_start = getCurUs();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 if (!netif_running(odev)) {
3150 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003151 if (pkt_dev->skb)
3152 kfree_skb(pkt_dev->skb);
3153 pkt_dev->skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 goto out;
3155 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003156 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 pkt_dev->idle_acc += getCurUs() - idle_start;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 if (netif_queue_stopped(odev)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003162 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003164 goto out; /* Try the next interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 }
3166 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 if (pkt_dev->last_ok || !pkt_dev->skb) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003169 if ((++pkt_dev->clone_count >= pkt_dev->clone_skb)
3170 || (!pkt_dev->skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 /* build a new pkt */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003172 if (pkt_dev->skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 kfree_skb(pkt_dev->skb);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 pkt_dev->skb = fill_packet(odev, pkt_dev);
3176 if (pkt_dev->skb == NULL) {
3177 printk("pktgen: ERROR: couldn't allocate skb in fill_packet.\n");
3178 schedule();
Luiz Capitulino222f1802006-03-20 22:16:13 -08003179 pkt_dev->clone_count--; /* back out increment, OOM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 goto out;
3181 }
3182 pkt_dev->allocated_skbs++;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003183 pkt_dev->clone_count = 0; /* reset counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185 }
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003186
Herbert Xu932ff272006-06-09 12:20:56 -07003187 netif_tx_lock_bh(odev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 if (!netif_queue_stopped(odev)) {
3189
3190 atomic_inc(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003191 retry_now:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 ret = odev->hard_start_xmit(pkt_dev->skb, odev);
3193 if (likely(ret == NETDEV_TX_OK)) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003194 pkt_dev->last_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 pkt_dev->sofar++;
3196 pkt_dev->seq_num++;
3197 pkt_dev->tx_bytes += pkt_dev->cur_pkt_size;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003198
3199 } else if (ret == NETDEV_TX_LOCKED
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 && (odev->features & NETIF_F_LLTX)) {
3201 cpu_relax();
3202 goto retry_now;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003203 } else { /* Retry it next time */
3204
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 atomic_dec(&(pkt_dev->skb->users));
Luiz Capitulino222f1802006-03-20 22:16:13 -08003206
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 if (debug && net_ratelimit())
3208 printk(KERN_INFO "pktgen: Hard xmit error\n");
Luiz Capitulino222f1802006-03-20 22:16:13 -08003209
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 pkt_dev->errors++;
3211 pkt_dev->last_ok = 0;
3212 }
3213
3214 pkt_dev->next_tx_us = getCurUs();
3215 pkt_dev->next_tx_ns = 0;
3216
3217 pkt_dev->next_tx_us += pkt_dev->delay_us;
3218 pkt_dev->next_tx_ns += pkt_dev->delay_ns;
3219
3220 if (pkt_dev->next_tx_ns > 1000) {
3221 pkt_dev->next_tx_us++;
3222 pkt_dev->next_tx_ns -= 1000;
3223 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Luiz Capitulino222f1802006-03-20 22:16:13 -08003226 else { /* Retry it next time */
3227 pkt_dev->last_ok = 0;
3228 pkt_dev->next_tx_us = getCurUs(); /* TODO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 pkt_dev->next_tx_ns = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Herbert Xu932ff272006-06-09 12:20:56 -07003232 netif_tx_unlock_bh(odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 /* If pkt_dev->count is zero, then run forever */
3235 if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) {
3236 if (atomic_read(&(pkt_dev->skb->users)) != 1) {
3237 idle_start = getCurUs();
3238 while (atomic_read(&(pkt_dev->skb->users)) != 1) {
3239 if (signal_pending(current)) {
3240 break;
3241 }
3242 schedule();
3243 }
3244 pkt_dev->idle_acc += getCurUs() - idle_start;
3245 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 /* Done with this */
3248 pktgen_stop_device(pkt_dev);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003249 if (pkt_dev->skb)
3250 kfree_skb(pkt_dev->skb);
3251 pkt_dev->skb = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003252 }
3253out:;
3254}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003256/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 * Main loop of the thread goes here
3258 */
3259
David S. Milleree74baa2007-01-01 20:51:53 -08003260static int pktgen_thread_worker(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261{
3262 DEFINE_WAIT(wait);
David S. Milleree74baa2007-01-01 20:51:53 -08003263 struct pktgen_thread *t = arg;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003264 struct pktgen_dev *pkt_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 int cpu = t->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 u32 max_before_softirq;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003267 u32 tx_since_softirq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
David S. Milleree74baa2007-01-01 20:51:53 -08003269 BUG_ON(smp_processor_id() != cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
3271 init_waitqueue_head(&t->queue);
3272
Luiz Capitulino222f1802006-03-20 22:16:13 -08003273 t->pid = current->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003275 pr_debug("pktgen: starting pktgen/%d: pid=%d\n", cpu, current->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
3277 max_before_softirq = t->max_before_softirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
David S. Milleree74baa2007-01-01 20:51:53 -08003279 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003280
David S. Milleree74baa2007-01-01 20:51:53 -08003281 while (!kthread_should_stop()) {
3282 pkt_dev = next_to_run(t);
3283
3284 if (!pkt_dev &&
3285 (t->control & (T_STOP | T_RUN | T_REMDEVALL | T_REMDEV))
3286 == 0) {
3287 prepare_to_wait(&(t->queue), &wait,
3288 TASK_INTERRUPTIBLE);
3289 schedule_timeout(HZ / 10);
3290 finish_wait(&(t->queue), &wait);
3291 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 __set_current_state(TASK_RUNNING);
3294
Luiz Capitulino222f1802006-03-20 22:16:13 -08003295 if (pkt_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
3297 pktgen_xmit(pkt_dev);
3298
3299 /*
3300 * We like to stay RUNNING but must also give
3301 * others fair share.
3302 */
3303
3304 tx_since_softirq += pkt_dev->last_ok;
3305
3306 if (tx_since_softirq > max_before_softirq) {
3307 if (local_softirq_pending())
3308 do_softirq();
3309 tx_since_softirq = 0;
3310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 }
3312
Luiz Capitulino222f1802006-03-20 22:16:13 -08003313 if (t->control & T_STOP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 pktgen_stop(t);
3315 t->control &= ~(T_STOP);
3316 }
3317
Luiz Capitulino222f1802006-03-20 22:16:13 -08003318 if (t->control & T_RUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 pktgen_run(t);
3320 t->control &= ~(T_RUN);
3321 }
3322
Luiz Capitulino222f1802006-03-20 22:16:13 -08003323 if (t->control & T_REMDEVALL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 pktgen_rem_all_ifs(t);
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003325 t->control &= ~(T_REMDEVALL);
3326 }
3327
Luiz Capitulino222f1802006-03-20 22:16:13 -08003328 if (t->control & T_REMDEV) {
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003329 pktgen_rem_one_if(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 t->control &= ~(T_REMDEV);
3331 }
3332
Andrew Morton09fe3ef2007-04-12 14:45:32 -07003333 try_to_freeze();
3334
David S. Milleree74baa2007-01-01 20:51:53 -08003335 set_current_state(TASK_INTERRUPTIBLE);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003338 pr_debug("pktgen: %s stopping all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003339 pktgen_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003341 pr_debug("pktgen: %s removing all device\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003342 pktgen_rem_all_ifs(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003344 pr_debug("pktgen: %s removing thread.\n", t->tsk->comm);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003345 pktgen_rem_thread(t);
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003346
David S. Milleree74baa2007-01-01 20:51:53 -08003347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348}
3349
Luiz Capitulino222f1802006-03-20 22:16:13 -08003350static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t,
3351 const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003353 struct pktgen_dev *p, *pkt_dev = NULL;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003354 if_lock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003356 list_for_each_entry(p, &t->if_list, list)
3357 if (strncmp(p->ifname, ifname, IFNAMSIZ) == 0) {
3358 pkt_dev = p;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003359 break;
3360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Luiz Capitulino222f1802006-03-20 22:16:13 -08003362 if_unlock(t);
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003363 pr_debug("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003364 return pkt_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
3366
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003367/*
3368 * Adds a dev at front of if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 */
3370
Luiz Capitulino222f1802006-03-20 22:16:13 -08003371static int add_dev_to_thread(struct pktgen_thread *t,
3372 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373{
3374 int rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
Luiz Capitulino222f1802006-03-20 22:16:13 -08003376 if_lock(t);
3377
3378 if (pkt_dev->pg_thread) {
3379 printk("pktgen: ERROR: already assigned to a thread.\n");
3380 rv = -EBUSY;
3381 goto out;
3382 }
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003383
3384 list_add(&pkt_dev->list, &t->if_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003385 pkt_dev->pg_thread = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 pkt_dev->running = 0;
3387
Luiz Capitulino222f1802006-03-20 22:16:13 -08003388out:
3389 if_unlock(t);
3390 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391}
3392
3393/* Called under thread lock */
3394
Luiz Capitulino222f1802006-03-20 22:16:13 -08003395static int pktgen_add_device(struct pktgen_thread *t, const char *ifname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396{
Luiz Capitulino222f1802006-03-20 22:16:13 -08003397 struct pktgen_dev *pkt_dev;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003398 struct proc_dir_entry *pe;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 /* We don't allow a device to be on several threads */
3401
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003402 pkt_dev = __pktgen_NN_threads(ifname, FIND);
3403 if (pkt_dev) {
Luiz Capitulino222f1802006-03-20 22:16:13 -08003404 printk("pktgen: ERROR: interface already used.\n");
3405 return -EBUSY;
3406 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003407
3408 pkt_dev = kzalloc(sizeof(struct pktgen_dev), GFP_KERNEL);
3409 if (!pkt_dev)
3410 return -ENOMEM;
3411
Luiz Capitulino222f1802006-03-20 22:16:13 -08003412 pkt_dev->flows = vmalloc(MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003413 if (pkt_dev->flows == NULL) {
3414 kfree(pkt_dev);
3415 return -ENOMEM;
3416 }
Luiz Capitulino222f1802006-03-20 22:16:13 -08003417 memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state));
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003418
Arthur Kepner95ed63f2006-03-20 21:26:56 -08003419 pkt_dev->removal_mark = 0;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003420 pkt_dev->min_pkt_size = ETH_ZLEN;
3421 pkt_dev->max_pkt_size = ETH_ZLEN;
3422 pkt_dev->nfrags = 0;
3423 pkt_dev->clone_skb = pg_clone_skb_d;
3424 pkt_dev->delay_us = pg_delay_d / 1000;
3425 pkt_dev->delay_ns = pg_delay_d % 1000;
3426 pkt_dev->count = pg_count_d;
3427 pkt_dev->sofar = 0;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003428 pkt_dev->udp_src_min = 9; /* sink port */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003429 pkt_dev->udp_src_max = 9;
3430 pkt_dev->udp_dst_min = 9;
3431 pkt_dev->udp_dst_max = 9;
3432
Francesco Fondelli34954dd2006-09-27 16:30:44 -07003433 pkt_dev->vlan_p = 0;
3434 pkt_dev->vlan_cfi = 0;
3435 pkt_dev->vlan_id = 0xffff;
3436 pkt_dev->svlan_p = 0;
3437 pkt_dev->svlan_cfi = 0;
3438 pkt_dev->svlan_id = 0xffff;
3439
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003440 strncpy(pkt_dev->ifname, ifname, IFNAMSIZ);
3441
Luiz Capitulino222f1802006-03-20 22:16:13 -08003442 if (!pktgen_setup_dev(pkt_dev)) {
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003443 printk("pktgen: ERROR: pktgen_setup_dev failed.\n");
3444 if (pkt_dev->flows)
3445 vfree(pkt_dev->flows);
3446 kfree(pkt_dev);
3447 return -ENODEV;
3448 }
3449
3450 pe = create_proc_entry(ifname, 0600, pg_proc_dir);
3451 if (!pe) {
3452 printk("pktgen: cannot create %s/%s procfs entry.\n",
3453 PG_PROC_DIR, ifname);
3454 if (pkt_dev->flows)
3455 vfree(pkt_dev->flows);
3456 kfree(pkt_dev);
3457 return -EINVAL;
3458 }
3459 pe->proc_fops = &pktgen_if_fops;
3460 pe->data = pkt_dev;
3461
3462 return add_dev_to_thread(t, pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463}
3464
David S. Milleree74baa2007-01-01 20:51:53 -08003465static int __init pktgen_create_thread(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003467 struct pktgen_thread *t;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003468 struct proc_dir_entry *pe;
David S. Milleree74baa2007-01-01 20:51:53 -08003469 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Luiz Capitulino222f1802006-03-20 22:16:13 -08003471 t = kzalloc(sizeof(struct pktgen_thread), GFP_KERNEL);
3472 if (!t) {
3473 printk("pktgen: ERROR: out of memory, can't create new thread.\n");
3474 return -ENOMEM;
3475 }
3476
Luiz Capitulino222f1802006-03-20 22:16:13 -08003477 spin_lock_init(&t->if_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 t->cpu = cpu;
Luiz Capitulino222f1802006-03-20 22:16:13 -08003479
David S. Milleree74baa2007-01-01 20:51:53 -08003480 INIT_LIST_HEAD(&t->if_list);
3481
3482 list_add_tail(&t->th_list, &pktgen_threads);
3483
3484 p = kthread_create(pktgen_thread_worker, t, "kpktgend_%d", cpu);
3485 if (IS_ERR(p)) {
3486 printk("pktgen: kernel_thread() failed for cpu %d\n", t->cpu);
3487 list_del(&t->th_list);
3488 kfree(t);
3489 return PTR_ERR(p);
3490 }
3491 kthread_bind(p, cpu);
3492 t->tsk = p;
3493
3494 pe = create_proc_entry(t->tsk->comm, 0600, pg_proc_dir);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003495 if (!pe) {
3496 printk("pktgen: cannot create %s/%s procfs entry.\n",
David S. Milleree74baa2007-01-01 20:51:53 -08003497 PG_PROC_DIR, t->tsk->comm);
3498 kthread_stop(p);
3499 list_del(&t->th_list);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003500 kfree(t);
3501 return -EINVAL;
3502 }
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003503
3504 pe->proc_fops = &pktgen_thread_fops;
3505 pe->data = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
David S. Milleree74baa2007-01-01 20:51:53 -08003507 wake_up_process(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
3509 return 0;
3510}
3511
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003512/*
3513 * Removes a device from the thread if_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 */
Luiz Capitulino222f1802006-03-20 22:16:13 -08003515static void _rem_dev_from_if_list(struct pktgen_thread *t,
3516 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517{
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003518 struct list_head *q, *n;
3519 struct pktgen_dev *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Luiz Capitulinoc26a80162006-03-20 22:18:16 -08003521 list_for_each_safe(q, n, &t->if_list) {
3522 p = list_entry(q, struct pktgen_dev, list);
3523 if (p == pkt_dev)
3524 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 }
3526}
3527
Luiz Capitulino222f1802006-03-20 22:16:13 -08003528static int pktgen_remove_device(struct pktgen_thread *t,
3529 struct pktgen_dev *pkt_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530{
3531
Stephen Hemminger25c4e532007-03-04 16:06:47 -08003532 pr_debug("pktgen: remove_device pkt_dev=%p\n", pkt_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
Luiz Capitulino222f1802006-03-20 22:16:13 -08003534 if (pkt_dev->running) {
3535 printk("pktgen:WARNING: trying to remove a running interface, stopping it now.\n");
3536 pktgen_stop_device(pkt_dev);
3537 }
3538
3539 /* Dis-associate from the interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
3541 if (pkt_dev->odev) {
3542 dev_put(pkt_dev->odev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003543 pkt_dev->odev = NULL;
3544 }
3545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 /* And update the thread if_list */
3547
3548 _rem_dev_from_if_list(t, pkt_dev);
3549
Luiz Capitulino222f1802006-03-20 22:16:13 -08003550 /* Clean up proc file system */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003552 remove_proc_entry(pkt_dev->ifname, pg_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 if (pkt_dev->flows)
3555 vfree(pkt_dev->flows);
3556 kfree(pkt_dev);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558}
3559
Luiz Capitulino222f1802006-03-20 22:16:13 -08003560static int __init pg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561{
3562 int cpu;
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003563 struct proc_dir_entry *pe;
3564
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 printk(version);
3566
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003567 pg_proc_dir = proc_mkdir(PG_PROC_DIR, proc_net);
3568 if (!pg_proc_dir)
3569 return -ENODEV;
3570 pg_proc_dir->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003572 pe = create_proc_entry(PGCTRL, 0600, pg_proc_dir);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003573 if (pe == NULL) {
3574 printk("pktgen: ERROR: cannot create %s procfs entry.\n",
3575 PGCTRL);
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003576 proc_net_remove(PG_PROC_DIR);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003577 return -EINVAL;
3578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Luiz Capitulino222f1802006-03-20 22:16:13 -08003580 pe->proc_fops = &pktgen_fops;
3581 pe->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
3583 /* Register us to receive netdevice events */
3584 register_netdevice_notifier(&pktgen_notifier_block);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003585
John Hawkes670c02c2005-10-13 09:30:31 -07003586 for_each_online_cpu(cpu) {
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003587 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
David S. Milleree74baa2007-01-01 20:51:53 -08003589 err = pktgen_create_thread(cpu);
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003590 if (err)
3591 printk("pktgen: WARNING: Cannot create thread for cpu %d (%d)\n",
3592 cpu, err);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003593 }
Luiz Capitulino8024bb22006-03-20 22:17:55 -08003594
3595 if (list_empty(&pktgen_threads)) {
3596 printk("pktgen: ERROR: Initialization failed for all threads\n");
3597 unregister_netdevice_notifier(&pktgen_notifier_block);
3598 remove_proc_entry(PGCTRL, pg_proc_dir);
3599 proc_net_remove(PG_PROC_DIR);
3600 return -ENODEV;
3601 }
3602
Luiz Capitulino222f1802006-03-20 22:16:13 -08003603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604}
3605
3606static void __exit pg_cleanup(void)
3607{
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003608 struct pktgen_thread *t;
3609 struct list_head *q, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 wait_queue_head_t queue;
3611 init_waitqueue_head(&queue);
3612
Luiz Capitulino222f1802006-03-20 22:16:13 -08003613 /* Stop all interfaces & threads */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Luiz Capitulinocdcdbe02006-03-20 22:16:40 -08003615 list_for_each_safe(q, n, &pktgen_threads) {
3616 t = list_entry(q, struct pktgen_thread, th_list);
David S. Milleree74baa2007-01-01 20:51:53 -08003617 kthread_stop(t->tsk);
3618 kfree(t);
Luiz Capitulino222f1802006-03-20 22:16:13 -08003619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
Luiz Capitulino222f1802006-03-20 22:16:13 -08003621 /* Un-register us from receiving netdevice events */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 unregister_netdevice_notifier(&pktgen_notifier_block);
3623
Luiz Capitulino222f1802006-03-20 22:16:13 -08003624 /* Clean up proc file system */
Stephen Hemmingerd50a6b562005-10-14 15:42:33 -07003625 remove_proc_entry(PGCTRL, pg_proc_dir);
3626 proc_net_remove(PG_PROC_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627}
3628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629module_init(pg_init);
3630module_exit(pg_cleanup);
3631
3632MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se");
3633MODULE_DESCRIPTION("Packet Generator tool");
3634MODULE_LICENSE("GPL");
3635module_param(pg_count_d, int, 0);
3636module_param(pg_delay_d, int, 0);
3637module_param(pg_clone_skb_d, int, 0);
3638module_param(debug, int, 0);