3 * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se>
4 * Uppsala University and
5 * Swedish University of Agricultural Sciences
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Ben Greear <greearb@candelatech.com>
9 * Jens Låås <jens.laas@data.slu.se>
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.
17 * A tool for loading the network with preconfigurated packets.
18 * The tool is implemented as a linux module. Parameters are output
19 * 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.
23 * Additional hacking by:
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>
47 * 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
49 * as a "fastpath" with a configurable number of clones after alloc's.
50 * 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
54 * Also moved to /proc/net/pktgen/
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>
61 * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br)
64 * 021124 Finished major redesign and rewrite for new functionality.
65 * See Documentation/networking/pktgen.txt for how to use this.
68 * 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
72 * way. The if_lock should be possible to remove when add/rem_device is merged
75 * By design there should only be *one* "controlling" process. In practice
76 * multiple write accesses gives unpredictable result. Understood by "write"
77 * to /proc gives result code thats should be read be the "writer".
78 * For pratical use this should be no problem.
80 * 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.
84 * Fix refcount off by one if first packet fails, potential null deref,
87 * First "ranges" functionality for ipv6 030726 --ro
89 * Included flow support. 030802 ANK.
91 * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org>
93 * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419
94 * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604
96 * New xmit() return, do_div and misc clean up by Stephen Hemminger
97 * <shemminger@osdl.org> 040923
99 * Rany Dunlap fixed u64 printk compiler waring
101 * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org>
102 * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213
104 * Corrections from Nikolai Malykh (nmalykh@bilim.com)
105 * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230
107 * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com>
110 #include <linux/sys.h>
111 #include <linux/types.h>
112 #include <linux/module.h>
113 #include <linux/moduleparam.h>
114 #include <linux/kernel.h>
115 #include <linux/smp_lock.h>
116 #include <linux/sched.h>
117 #include <linux/slab.h>
118 #include <linux/vmalloc.h>
119 #include <linux/sched.h>
120 #include <linux/unistd.h>
121 #include <linux/string.h>
122 #include <linux/ptrace.h>
123 #include <linux/errno.h>
124 #include <linux/ioport.h>
125 #include <linux/interrupt.h>
126 #include <linux/delay.h>
127 #include <linux/timer.h>
128 #include <linux/init.h>
129 #include <linux/skbuff.h>
130 #include <linux/netdevice.h>
131 #include <linux/inet.h>
132 #include <linux/inetdevice.h>
133 #include <linux/rtnetlink.h>
134 #include <linux/if_arp.h>
135 #include <linux/in.h>
136 #include <linux/ip.h>
137 #include <linux/ipv6.h>
138 #include <linux/udp.h>
139 #include <linux/proc_fs.h>
140 #include <linux/wait.h>
141 #include <net/checksum.h>
142 #include <net/ipv6.h>
143 #include <net/addrconf.h>
144 #include <asm/byteorder.h>
145 #include <linux/rcupdate.h>
146 #include <asm/bitops.h>
149 #include <asm/uaccess.h>
150 #include <asm/div64.h> /* do_div */
151 #include <asm/timex.h>
154 #define VERSION "pktgen v2.61: Packet Generator for packet performance testing.\n"
156 /* #define PG_DEBUG(a) a */
159 /* The buckets are exponential in 'width' */
160 #define LAT_BUCKETS_MAX 32
161 #define IP_NAME_SZ 32
163 /* Device flag bits */
164 #define F_IPSRC_RND (1<<0) /* IP-Src Random */
165 #define F_IPDST_RND (1<<1) /* IP-Dst Random */
166 #define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
167 #define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
168 #define F_MACSRC_RND (1<<4) /* MAC-Src Random */
169 #define F_MACDST_RND (1<<5) /* MAC-Dst Random */
170 #define F_TXSIZE_RND (1<<6) /* Transmit size is random */
171 #define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
173 /* Thread control flag bits */
174 #define T_TERMINATE (1<<0)
175 #define T_STOP (1<<1) /* Stop run */
176 #define T_RUN (1<<2) /* Start run */
177 #define T_REMDEV (1<<3) /* Remove all devs */
180 #define thread_lock() spin_lock(&_thread_lock)
181 #define thread_unlock() spin_unlock(&_thread_lock)
183 /* If lock -- can be removed after some work */
184 #define if_lock(t) spin_lock(&(t->if_lock));
185 #define if_unlock(t) spin_unlock(&(t->if_lock));
187 /* Used to help with determining the pkts on receive */
188 #define PKTGEN_MAGIC 0xbe9be955
189 #define PG_PROC_DIR "pktgen"
191 #define MAX_CFLOWS 65536
202 * Try to keep frequent/infrequent used vars. separated.
206 struct proc_dir_entry
*proc_ent
;
208 /* proc file names */
211 struct pktgen_thread
* pg_thread
; /* the owner */
212 struct pktgen_dev
*next
; /* Used for chaining in the thread's run-queue */
214 int running
; /* if this changes to false, the test will stop */
216 /* If min != max, then we will either do a linear iteration, or
217 * we will do a random selection from within the range.
221 int min_pkt_size
; /* = ETH_ZLEN; */
222 int max_pkt_size
; /* = ETH_ZLEN; */
224 __u32 delay_us
; /* Default delay */
226 __u64 count
; /* Default No packets to send */
227 __u64 sofar
; /* How many pkts we've sent so far */
228 __u64 tx_bytes
; /* How many bytes we've transmitted */
229 __u64 errors
; /* Errors when trying to transmit, pkts will be re-sent */
231 /* runtime counters relating to clone_skb */
232 __u64 next_tx_us
; /* timestamp of when to tx next */
235 __u64 allocated_skbs
;
237 int last_ok
; /* Was last skb sent?
238 * Or a failed transmit of some sort? This will keep
239 * sequence numbers in order, for example.
241 __u64 started_at
; /* micro-seconds */
242 __u64 stopped_at
; /* micro-seconds */
243 __u64 idle_acc
; /* micro-seconds */
246 int clone_skb
; /* Use multiple SKBs during packet gen. If this number
247 * is greater than 1, then that many coppies of the same
248 * packet will be sent before a new packet is allocated.
249 * For instance, if you want to send 1024 identical packets
250 * before creating a new packet, set clone_skb to 1024.
253 char dst_min
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
254 char dst_max
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
255 char src_min
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
256 char src_max
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
258 struct in6_addr in6_saddr
;
259 struct in6_addr in6_daddr
;
260 struct in6_addr cur_in6_daddr
;
261 struct in6_addr cur_in6_saddr
;
263 struct in6_addr min_in6_daddr
;
264 struct in6_addr max_in6_daddr
;
265 struct in6_addr min_in6_saddr
;
266 struct in6_addr max_in6_saddr
;
268 /* If we're doing ranges, random or incremental, then this
269 * defines the min/max for those ranges.
271 __u32 saddr_min
; /* inclusive, source IP address */
272 __u32 saddr_max
; /* exclusive, source IP address */
273 __u32 daddr_min
; /* inclusive, dest IP address */
274 __u32 daddr_max
; /* exclusive, dest IP address */
276 __u16 udp_src_min
; /* inclusive, source UDP port */
277 __u16 udp_src_max
; /* exclusive, source UDP port */
278 __u16 udp_dst_min
; /* inclusive, dest UDP port */
279 __u16 udp_dst_max
; /* exclusive, dest UDP port */
281 __u32 src_mac_count
; /* How many MACs to iterate through */
282 __u32 dst_mac_count
; /* How many MACs to iterate through */
284 unsigned char dst_mac
[6];
285 unsigned char src_mac
[6];
287 __u32 cur_dst_mac_offset
;
288 __u32 cur_src_mac_offset
;
297 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
299 We fill in SRC address later
300 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
304 __u16 pad
; /* pad out the hh struct to an even 16 bytes */
306 struct sk_buff
* skb
; /* skb we are to transmit next, mainly used for when we
307 * are transmitting the same one multiple times
309 struct net_device
* odev
; /* The out-going device. Note that the device should
310 * have it's pg_info pointer pointing back to this
311 * device. This will be set when the user specifies
312 * the out-going device name (not when the inject is
313 * started as it used to do.)
315 struct flow_state
*flows
;
316 unsigned cflows
; /* Concurrent flows (config) */
317 unsigned lflow
; /* Flow length (config) */
318 unsigned nflows
; /* accumulated flows (stats) */
328 struct pktgen_thread
{
330 struct pktgen_dev
*if_list
; /* All device here */
331 struct pktgen_thread
* next
;
333 char fname
[128]; /* name of proc file */
334 struct proc_dir_entry
*proc_ent
;
336 u32 max_before_softirq
; /* We'll call do_softirq to prevent starvation. */
338 /* Field for thread to receive "posted" events terminate, stop ifs etc.*/
344 wait_queue_head_t queue
;
350 /* This code works around the fact that do_div cannot handle two 64-bit
351 numbers, and regular 64-bit division doesn't work on x86 kernels.
357 /* This was emailed to LMKL by: Chris Caputo <ccaputo@alt.net>
358 * Function copied/adapted/optimized from:
360 * nemesis.sourceforge.net/browse/lib/static/intmath/ix86/intmath.c.html
362 * Copyright 1994, University of Cambridge Computer Laboratory
363 * All Rights Reserved.
366 inline static s64
divremdi3(s64 x
, s64 y
, int type
)
368 u64 a
= (x
< 0) ? -x
: x
;
369 u64 b
= (y
< 0) ? -y
: y
;
389 if (PG_DIV
== type
) {
390 return (((x
^ y
) & (1ll<<63)) == 0) ? res
: -(s64
)res
;
393 return ((x
& (1ll<<63)) == 0) ? a
: -(s64
)a
;
397 /* End of hacks to deal with 64-bit math on x86 */
399 /** Convert to miliseconds */
400 static inline __u64
tv_to_ms(const struct timeval
* tv
)
402 __u64 ms
= tv
->tv_usec
/ 1000;
403 ms
+= (__u64
)tv
->tv_sec
* (__u64
)1000;
408 /** Convert to micro-seconds */
409 static inline __u64
tv_to_us(const struct timeval
* tv
)
411 __u64 us
= tv
->tv_usec
;
412 us
+= (__u64
)tv
->tv_sec
* (__u64
)1000000;
416 static inline __u64
pg_div(__u64 n
, __u32 base
) {
419 /* printk("pktgen: pg_div, n: %llu base: %d rv: %llu\n",
424 static inline __u64
pg_div64(__u64 n
, __u64 base
)
428 * How do we know if the architectrure we are running on
429 * supports division with 64 bit base?
432 #if defined(__sparc_v9__) || defined(__powerpc64__) || defined(__alpha__) || defined(__x86_64__) || defined(__ia64__)
436 tmp
= divremdi3(n
, base
, PG_DIV
);
441 static inline u32
pktgen_random(void)
445 get_random_bytes(&n
, 4);
452 static inline __u64
getCurMs(void)
455 do_gettimeofday(&tv
);
456 return tv_to_ms(&tv
);
459 static inline __u64
getCurUs(void)
462 do_gettimeofday(&tv
);
463 return tv_to_us(&tv
);
466 static inline __u64
tv_diff(const struct timeval
* a
, const struct timeval
* b
)
468 return tv_to_us(a
) - tv_to_us(b
);
472 /* old include end */
474 static char version
[] __initdata
= VERSION
;
476 static ssize_t
proc_pgctrl_read(struct file
* file
, char __user
* buf
, size_t count
, loff_t
*ppos
);
477 static ssize_t
proc_pgctrl_write(struct file
* file
, const char __user
* buf
, size_t count
, loff_t
*ppos
);
478 static int proc_if_read(char *buf
, char **start
, off_t offset
, int len
, int *eof
, void *data
);
480 static int proc_thread_read(char *buf
, char **start
, off_t offset
, int len
, int *eof
, void *data
);
481 static int proc_if_write(struct file
*file
, const char __user
*user_buffer
, unsigned long count
, void *data
);
482 static int proc_thread_write(struct file
*file
, const char __user
*user_buffer
, unsigned long count
, void *data
);
483 static int create_proc_dir(void);
484 static int remove_proc_dir(void);
486 static int pktgen_remove_device(struct pktgen_thread
* t
, struct pktgen_dev
*i
);
487 static int pktgen_add_device(struct pktgen_thread
* t
, const char* ifname
);
488 static struct pktgen_thread
* pktgen_find_thread(const char* name
);
489 static struct pktgen_dev
*pktgen_find_dev(struct pktgen_thread
* t
, const char* ifname
);
490 static int pktgen_device_event(struct notifier_block
*, unsigned long, void *);
491 static void pktgen_run_all_threads(void);
492 static void pktgen_stop_all_threads_ifs(void);
493 static int pktgen_stop_device(struct pktgen_dev
*pkt_dev
);
494 static void pktgen_stop(struct pktgen_thread
* t
);
495 static void pktgen_clear_counters(struct pktgen_dev
*pkt_dev
);
496 static struct pktgen_dev
*pktgen_NN_threads(const char* dev_name
, int remove
);
497 static unsigned int scan_ip6(const char *s
,char ip
[16]);
498 static unsigned int fmt_ip6(char *s
,const char ip
[16]);
500 /* Module parameters, defaults. */
501 static int pg_count_d
= 1000; /* 1000 pkts by default */
502 static int pg_delay_d
= 0;
503 static int pg_clone_skb_d
= 0;
504 static int debug
= 0;
506 static spinlock_t _thread_lock
= SPIN_LOCK_UNLOCKED
;
507 static struct pktgen_thread
*pktgen_threads
= NULL
;
509 static char module_fname
[128];
510 static struct proc_dir_entry
*module_proc_ent
= NULL
;
512 static struct notifier_block pktgen_notifier_block
= {
513 .notifier_call
= pktgen_device_event
,
516 static struct file_operations pktgen_fops
= {
517 .read
= proc_pgctrl_read
,
518 .write
= proc_pgctrl_write
,
519 /* .ioctl = pktgen_ioctl, later maybe */
523 * /proc handling functions
527 static struct proc_dir_entry
*pg_proc_dir
= NULL
;
528 static int proc_pgctrl_read_eof
=0;
530 static ssize_t
proc_pgctrl_read(struct file
* file
, char __user
* buf
,
531 size_t count
, loff_t
*ppos
)
536 if(proc_pgctrl_read_eof
) {
537 proc_pgctrl_read_eof
=0;
542 sprintf(data
, "%s", VERSION
);
551 if (copy_to_user(buf
, data
, len
)) {
557 proc_pgctrl_read_eof
=1; /* EOF next call */
563 static ssize_t
proc_pgctrl_write(struct file
* file
,const char __user
* buf
,
564 size_t count
, loff_t
*ppos
)
569 if (!capable(CAP_NET_ADMIN
)){
574 data
= (void*)vmalloc ((unsigned int)count
);
580 if (copy_from_user(data
, buf
, count
)) {
584 data
[count
-1] = 0; /* Make string */
586 if (!strcmp(data
, "stop"))
587 pktgen_stop_all_threads_ifs();
589 else if (!strcmp(data
, "start"))
590 pktgen_run_all_threads();
593 printk("pktgen: Unknown command: %s\n", data
);
603 static int proc_if_read(char *buf
, char **start
, off_t offset
,
604 int len
, int *eof
, void *data
)
608 struct pktgen_dev
*pkt_dev
= (struct pktgen_dev
*)(data
);
611 __u64 now
= getCurUs();
614 p
+= sprintf(p
, "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
615 (unsigned long long) pkt_dev
->count
,
616 pkt_dev
->min_pkt_size
, pkt_dev
->max_pkt_size
);
618 p
+= sprintf(p
, " frags: %d delay: %u clone_skb: %d ifname: %s\n",
619 pkt_dev
->nfrags
, 1000*pkt_dev
->delay_us
+pkt_dev
->delay_ns
, pkt_dev
->clone_skb
, pkt_dev
->ifname
);
621 p
+= sprintf(p
, " flows: %u flowlen: %u\n", pkt_dev
->cflows
, pkt_dev
->lflow
);
624 if(pkt_dev
->flags
& F_IPV6
) {
625 char b1
[128], b2
[128], b3
[128];
626 fmt_ip6(b1
, pkt_dev
->in6_saddr
.s6_addr
);
627 fmt_ip6(b2
, pkt_dev
->min_in6_saddr
.s6_addr
);
628 fmt_ip6(b3
, pkt_dev
->max_in6_saddr
.s6_addr
);
629 p
+= sprintf(p
, " saddr: %s min_saddr: %s max_saddr: %s\n", b1
, b2
, b3
);
631 fmt_ip6(b1
, pkt_dev
->in6_daddr
.s6_addr
);
632 fmt_ip6(b2
, pkt_dev
->min_in6_daddr
.s6_addr
);
633 fmt_ip6(b3
, pkt_dev
->max_in6_daddr
.s6_addr
);
634 p
+= sprintf(p
, " daddr: %s min_daddr: %s max_daddr: %s\n", b1
, b2
, b3
);
638 p
+= sprintf(p
, " dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n",
639 pkt_dev
->dst_min
, pkt_dev
->dst_max
, pkt_dev
->src_min
, pkt_dev
->src_max
);
641 p
+= sprintf(p
, " src_mac: ");
643 if ((pkt_dev
->src_mac
[0] == 0) &&
644 (pkt_dev
->src_mac
[1] == 0) &&
645 (pkt_dev
->src_mac
[2] == 0) &&
646 (pkt_dev
->src_mac
[3] == 0) &&
647 (pkt_dev
->src_mac
[4] == 0) &&
648 (pkt_dev
->src_mac
[5] == 0))
650 for (i
= 0; i
< 6; i
++)
651 p
+= sprintf(p
, "%02X%s", pkt_dev
->odev
->dev_addr
[i
], i
== 5 ? " " : ":");
654 for (i
= 0; i
< 6; i
++)
655 p
+= sprintf(p
, "%02X%s", pkt_dev
->src_mac
[i
], i
== 5 ? " " : ":");
657 p
+= sprintf(p
, "dst_mac: ");
658 for (i
= 0; i
< 6; i
++)
659 p
+= sprintf(p
, "%02X%s", pkt_dev
->dst_mac
[i
], i
== 5 ? "\n" : ":");
661 p
+= sprintf(p
, " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n",
662 pkt_dev
->udp_src_min
, pkt_dev
->udp_src_max
, pkt_dev
->udp_dst_min
,
663 pkt_dev
->udp_dst_max
);
665 p
+= sprintf(p
, " src_mac_count: %d dst_mac_count: %d \n Flags: ",
666 pkt_dev
->src_mac_count
, pkt_dev
->dst_mac_count
);
669 if (pkt_dev
->flags
& F_IPV6
)
670 p
+= sprintf(p
, "IPV6 ");
672 if (pkt_dev
->flags
& F_IPSRC_RND
)
673 p
+= sprintf(p
, "IPSRC_RND ");
675 if (pkt_dev
->flags
& F_IPDST_RND
)
676 p
+= sprintf(p
, "IPDST_RND ");
678 if (pkt_dev
->flags
& F_TXSIZE_RND
)
679 p
+= sprintf(p
, "TXSIZE_RND ");
681 if (pkt_dev
->flags
& F_UDPSRC_RND
)
682 p
+= sprintf(p
, "UDPSRC_RND ");
684 if (pkt_dev
->flags
& F_UDPDST_RND
)
685 p
+= sprintf(p
, "UDPDST_RND ");
687 if (pkt_dev
->flags
& F_MACSRC_RND
)
688 p
+= sprintf(p
, "MACSRC_RND ");
690 if (pkt_dev
->flags
& F_MACDST_RND
)
691 p
+= sprintf(p
, "MACDST_RND ");
694 p
+= sprintf(p
, "\n");
696 sa
= pkt_dev
->started_at
;
697 stopped
= pkt_dev
->stopped_at
;
698 if (pkt_dev
->running
)
699 stopped
= now
; /* not really stopped, more like last-running-at */
701 p
+= sprintf(p
, "Current:\n pkts-sofar: %llu errors: %llu\n started: %lluus stopped: %lluus idle: %lluus\n",
702 (unsigned long long) pkt_dev
->sofar
,
703 (unsigned long long) pkt_dev
->errors
,
704 (unsigned long long) sa
,
705 (unsigned long long) stopped
,
706 (unsigned long long) pkt_dev
->idle_acc
);
708 p
+= sprintf(p
, " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
709 pkt_dev
->seq_num
, pkt_dev
->cur_dst_mac_offset
, pkt_dev
->cur_src_mac_offset
);
711 if(pkt_dev
->flags
& F_IPV6
) {
712 char b1
[128], b2
[128];
713 fmt_ip6(b1
, pkt_dev
->cur_in6_daddr
.s6_addr
);
714 fmt_ip6(b2
, pkt_dev
->cur_in6_saddr
.s6_addr
);
715 p
+= sprintf(p
, " cur_saddr: %s cur_daddr: %s\n", b2
, b1
);
718 p
+= sprintf(p
, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
719 pkt_dev
->cur_saddr
, pkt_dev
->cur_daddr
);
722 p
+= sprintf(p
, " cur_udp_dst: %d cur_udp_src: %d\n",
723 pkt_dev
->cur_udp_dst
, pkt_dev
->cur_udp_src
);
725 p
+= sprintf(p
, " flows: %u\n", pkt_dev
->nflows
);
727 if (pkt_dev
->result
[0])
728 p
+= sprintf(p
, "Result: %s\n", pkt_dev
->result
);
730 p
+= sprintf(p
, "Result: Idle\n");
737 static int count_trail_chars(const char __user
*user_buffer
, unsigned int maxlen
)
741 for (i
= 0; i
< maxlen
; i
++) {
743 if (get_user(c
, &user_buffer
[i
]))
761 static unsigned long num_arg(const char __user
*user_buffer
, unsigned long maxlen
,
767 for(; i
< maxlen
; i
++) {
769 if (get_user(c
, &user_buffer
[i
]))
771 if ((c
>= '0') && (c
<= '9')) {
780 static int strn_len(const char __user
*user_buffer
, unsigned int maxlen
)
784 for(; i
< maxlen
; i
++) {
786 if (get_user(c
, &user_buffer
[i
]))
805 static int proc_if_write(struct file
*file
, const char __user
*user_buffer
,
806 unsigned long count
, void *data
)
809 char name
[16], valstr
[32];
810 unsigned long value
= 0;
811 struct pktgen_dev
*pkt_dev
= (struct pktgen_dev
*)(data
);
812 char* pg_result
= NULL
;
816 pg_result
= &(pkt_dev
->result
[0]);
819 printk("pktgen: wrong command format\n");
824 tmp
= count_trail_chars(&user_buffer
[i
], max
);
826 printk("pktgen: illegal format\n");
831 /* Read variable name */
833 len
= strn_len(&user_buffer
[i
], sizeof(name
) - 1);
834 if (len
< 0) { return len
; }
835 memset(name
, 0, sizeof(name
));
836 if (copy_from_user(name
, &user_buffer
[i
], len
) )
841 len
= count_trail_chars(&user_buffer
[i
], max
);
849 if (copy_from_user(tb
, user_buffer
, count
))
852 printk("pktgen: %s,%lu buffer -:%s:-\n", name
, count
, tb
);
855 if (!strcmp(name
, "min_pkt_size")) {
856 len
= num_arg(&user_buffer
[i
], 10, &value
);
857 if (len
< 0) { return len
; }
861 if (value
!= pkt_dev
->min_pkt_size
) {
862 pkt_dev
->min_pkt_size
= value
;
863 pkt_dev
->cur_pkt_size
= value
;
865 sprintf(pg_result
, "OK: min_pkt_size=%u", pkt_dev
->min_pkt_size
);
869 if (!strcmp(name
, "max_pkt_size")) {
870 len
= num_arg(&user_buffer
[i
], 10, &value
);
871 if (len
< 0) { return len
; }
875 if (value
!= pkt_dev
->max_pkt_size
) {
876 pkt_dev
->max_pkt_size
= value
;
877 pkt_dev
->cur_pkt_size
= value
;
879 sprintf(pg_result
, "OK: max_pkt_size=%u", pkt_dev
->max_pkt_size
);
883 /* Shortcut for min = max */
885 if (!strcmp(name
, "pkt_size")) {
886 len
= num_arg(&user_buffer
[i
], 10, &value
);
887 if (len
< 0) { return len
; }
891 if (value
!= pkt_dev
->min_pkt_size
) {
892 pkt_dev
->min_pkt_size
= value
;
893 pkt_dev
->max_pkt_size
= value
;
894 pkt_dev
->cur_pkt_size
= value
;
896 sprintf(pg_result
, "OK: pkt_size=%u", pkt_dev
->min_pkt_size
);
900 if (!strcmp(name
, "debug")) {
901 len
= num_arg(&user_buffer
[i
], 10, &value
);
902 if (len
< 0) { return len
; }
905 sprintf(pg_result
, "OK: debug=%u", debug
);
909 if (!strcmp(name
, "frags")) {
910 len
= num_arg(&user_buffer
[i
], 10, &value
);
911 if (len
< 0) { return len
; }
913 pkt_dev
->nfrags
= value
;
914 sprintf(pg_result
, "OK: frags=%u", pkt_dev
->nfrags
);
917 if (!strcmp(name
, "delay")) {
918 len
= num_arg(&user_buffer
[i
], 10, &value
);
919 if (len
< 0) { return len
; }
921 if (value
== 0x7FFFFFFF) {
922 pkt_dev
->delay_us
= 0x7FFFFFFF;
923 pkt_dev
->delay_ns
= 0;
925 pkt_dev
->delay_us
= value
/ 1000;
926 pkt_dev
->delay_ns
= value
% 1000;
928 sprintf(pg_result
, "OK: delay=%u", 1000*pkt_dev
->delay_us
+pkt_dev
->delay_ns
);
931 if (!strcmp(name
, "udp_src_min")) {
932 len
= num_arg(&user_buffer
[i
], 10, &value
);
933 if (len
< 0) { return len
; }
935 if (value
!= pkt_dev
->udp_src_min
) {
936 pkt_dev
->udp_src_min
= value
;
937 pkt_dev
->cur_udp_src
= value
;
939 sprintf(pg_result
, "OK: udp_src_min=%u", pkt_dev
->udp_src_min
);
942 if (!strcmp(name
, "udp_dst_min")) {
943 len
= num_arg(&user_buffer
[i
], 10, &value
);
944 if (len
< 0) { return len
; }
946 if (value
!= pkt_dev
->udp_dst_min
) {
947 pkt_dev
->udp_dst_min
= value
;
948 pkt_dev
->cur_udp_dst
= value
;
950 sprintf(pg_result
, "OK: udp_dst_min=%u", pkt_dev
->udp_dst_min
);
953 if (!strcmp(name
, "udp_src_max")) {
954 len
= num_arg(&user_buffer
[i
], 10, &value
);
955 if (len
< 0) { return len
; }
957 if (value
!= pkt_dev
->udp_src_max
) {
958 pkt_dev
->udp_src_max
= value
;
959 pkt_dev
->cur_udp_src
= value
;
961 sprintf(pg_result
, "OK: udp_src_max=%u", pkt_dev
->udp_src_max
);
964 if (!strcmp(name
, "udp_dst_max")) {
965 len
= num_arg(&user_buffer
[i
], 10, &value
);
966 if (len
< 0) { return len
; }
968 if (value
!= pkt_dev
->udp_dst_max
) {
969 pkt_dev
->udp_dst_max
= value
;
970 pkt_dev
->cur_udp_dst
= value
;
972 sprintf(pg_result
, "OK: udp_dst_max=%u", pkt_dev
->udp_dst_max
);
975 if (!strcmp(name
, "clone_skb")) {
976 len
= num_arg(&user_buffer
[i
], 10, &value
);
977 if (len
< 0) { return len
; }
979 pkt_dev
->clone_skb
= value
;
981 sprintf(pg_result
, "OK: clone_skb=%d", pkt_dev
->clone_skb
);
984 if (!strcmp(name
, "count")) {
985 len
= num_arg(&user_buffer
[i
], 10, &value
);
986 if (len
< 0) { return len
; }
988 pkt_dev
->count
= value
;
989 sprintf(pg_result
, "OK: count=%llu",
990 (unsigned long long) pkt_dev
->count
);
993 if (!strcmp(name
, "src_mac_count")) {
994 len
= num_arg(&user_buffer
[i
], 10, &value
);
995 if (len
< 0) { return len
; }
997 if (pkt_dev
->src_mac_count
!= value
) {
998 pkt_dev
->src_mac_count
= value
;
999 pkt_dev
->cur_src_mac_offset
= 0;
1001 sprintf(pg_result
, "OK: src_mac_count=%d", pkt_dev
->src_mac_count
);
1004 if (!strcmp(name
, "dst_mac_count")) {
1005 len
= num_arg(&user_buffer
[i
], 10, &value
);
1006 if (len
< 0) { return len
; }
1008 if (pkt_dev
->dst_mac_count
!= value
) {
1009 pkt_dev
->dst_mac_count
= value
;
1010 pkt_dev
->cur_dst_mac_offset
= 0;
1012 sprintf(pg_result
, "OK: dst_mac_count=%d", pkt_dev
->dst_mac_count
);
1015 if (!strcmp(name
, "flag")) {
1018 len
= strn_len(&user_buffer
[i
], sizeof(f
) - 1);
1019 if (len
< 0) { return len
; }
1020 if (copy_from_user(f
, &user_buffer
[i
], len
))
1023 if (strcmp(f
, "IPSRC_RND") == 0)
1024 pkt_dev
->flags
|= F_IPSRC_RND
;
1026 else if (strcmp(f
, "!IPSRC_RND") == 0)
1027 pkt_dev
->flags
&= ~F_IPSRC_RND
;
1029 else if (strcmp(f
, "TXSIZE_RND") == 0)
1030 pkt_dev
->flags
|= F_TXSIZE_RND
;
1032 else if (strcmp(f
, "!TXSIZE_RND") == 0)
1033 pkt_dev
->flags
&= ~F_TXSIZE_RND
;
1035 else if (strcmp(f
, "IPDST_RND") == 0)
1036 pkt_dev
->flags
|= F_IPDST_RND
;
1038 else if (strcmp(f
, "!IPDST_RND") == 0)
1039 pkt_dev
->flags
&= ~F_IPDST_RND
;
1041 else if (strcmp(f
, "UDPSRC_RND") == 0)
1042 pkt_dev
->flags
|= F_UDPSRC_RND
;
1044 else if (strcmp(f
, "!UDPSRC_RND") == 0)
1045 pkt_dev
->flags
&= ~F_UDPSRC_RND
;
1047 else if (strcmp(f
, "UDPDST_RND") == 0)
1048 pkt_dev
->flags
|= F_UDPDST_RND
;
1050 else if (strcmp(f
, "!UDPDST_RND") == 0)
1051 pkt_dev
->flags
&= ~F_UDPDST_RND
;
1053 else if (strcmp(f
, "MACSRC_RND") == 0)
1054 pkt_dev
->flags
|= F_MACSRC_RND
;
1056 else if (strcmp(f
, "!MACSRC_RND") == 0)
1057 pkt_dev
->flags
&= ~F_MACSRC_RND
;
1059 else if (strcmp(f
, "MACDST_RND") == 0)
1060 pkt_dev
->flags
|= F_MACDST_RND
;
1062 else if (strcmp(f
, "!MACDST_RND") == 0)
1063 pkt_dev
->flags
&= ~F_MACDST_RND
;
1066 sprintf(pg_result
, "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1068 "IPSRC_RND, IPDST_RND, TXSIZE_RND, UDPSRC_RND, UDPDST_RND, MACSRC_RND, MACDST_RND\n");
1071 sprintf(pg_result
, "OK: flags=0x%x", pkt_dev
->flags
);
1074 if (!strcmp(name
, "dst_min") || !strcmp(name
, "dst")) {
1075 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->dst_min
) - 1);
1076 if (len
< 0) { return len
; }
1078 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1081 if (strcmp(buf
, pkt_dev
->dst_min
) != 0) {
1082 memset(pkt_dev
->dst_min
, 0, sizeof(pkt_dev
->dst_min
));
1083 strncpy(pkt_dev
->dst_min
, buf
, len
);
1084 pkt_dev
->daddr_min
= in_aton(pkt_dev
->dst_min
);
1085 pkt_dev
->cur_daddr
= pkt_dev
->daddr_min
;
1088 printk("pktgen: dst_min set to: %s\n", pkt_dev
->dst_min
);
1090 sprintf(pg_result
, "OK: dst_min=%s", pkt_dev
->dst_min
);
1093 if (!strcmp(name
, "dst_max")) {
1094 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->dst_max
) - 1);
1095 if (len
< 0) { return len
; }
1097 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1101 if (strcmp(buf
, pkt_dev
->dst_max
) != 0) {
1102 memset(pkt_dev
->dst_max
, 0, sizeof(pkt_dev
->dst_max
));
1103 strncpy(pkt_dev
->dst_max
, buf
, len
);
1104 pkt_dev
->daddr_max
= in_aton(pkt_dev
->dst_max
);
1105 pkt_dev
->cur_daddr
= pkt_dev
->daddr_max
;
1108 printk("pktgen: dst_max set to: %s\n", pkt_dev
->dst_max
);
1110 sprintf(pg_result
, "OK: dst_max=%s", pkt_dev
->dst_max
);
1113 if (!strcmp(name
, "dst6")) {
1114 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1115 if (len
< 0) return len
;
1117 pkt_dev
->flags
|= F_IPV6
;
1119 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1123 scan_ip6(buf
, pkt_dev
->in6_daddr
.s6_addr
);
1124 fmt_ip6(buf
, pkt_dev
->in6_daddr
.s6_addr
);
1126 ipv6_addr_copy(&pkt_dev
->cur_in6_daddr
, &pkt_dev
->in6_daddr
);
1129 printk("pktgen: dst6 set to: %s\n", buf
);
1132 sprintf(pg_result
, "OK: dst6=%s", buf
);
1135 if (!strcmp(name
, "dst6_min")) {
1136 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1137 if (len
< 0) return len
;
1139 pkt_dev
->flags
|= F_IPV6
;
1141 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1145 scan_ip6(buf
, pkt_dev
->min_in6_daddr
.s6_addr
);
1146 fmt_ip6(buf
, pkt_dev
->min_in6_daddr
.s6_addr
);
1148 ipv6_addr_copy(&pkt_dev
->cur_in6_daddr
, &pkt_dev
->min_in6_daddr
);
1150 printk("pktgen: dst6_min set to: %s\n", buf
);
1153 sprintf(pg_result
, "OK: dst6_min=%s", buf
);
1156 if (!strcmp(name
, "dst6_max")) {
1157 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1158 if (len
< 0) return len
;
1160 pkt_dev
->flags
|= F_IPV6
;
1162 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1166 scan_ip6(buf
, pkt_dev
->max_in6_daddr
.s6_addr
);
1167 fmt_ip6(buf
, pkt_dev
->max_in6_daddr
.s6_addr
);
1170 printk("pktgen: dst6_max set to: %s\n", buf
);
1173 sprintf(pg_result
, "OK: dst6_max=%s", buf
);
1176 if (!strcmp(name
, "src6")) {
1177 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1178 if (len
< 0) return len
;
1180 pkt_dev
->flags
|= F_IPV6
;
1182 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1186 scan_ip6(buf
, pkt_dev
->in6_saddr
.s6_addr
);
1187 fmt_ip6(buf
, pkt_dev
->in6_saddr
.s6_addr
);
1189 ipv6_addr_copy(&pkt_dev
->cur_in6_saddr
, &pkt_dev
->in6_saddr
);
1192 printk("pktgen: src6 set to: %s\n", buf
);
1195 sprintf(pg_result
, "OK: src6=%s", buf
);
1198 if (!strcmp(name
, "src_min")) {
1199 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->src_min
) - 1);
1200 if (len
< 0) { return len
; }
1201 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1204 if (strcmp(buf
, pkt_dev
->src_min
) != 0) {
1205 memset(pkt_dev
->src_min
, 0, sizeof(pkt_dev
->src_min
));
1206 strncpy(pkt_dev
->src_min
, buf
, len
);
1207 pkt_dev
->saddr_min
= in_aton(pkt_dev
->src_min
);
1208 pkt_dev
->cur_saddr
= pkt_dev
->saddr_min
;
1211 printk("pktgen: src_min set to: %s\n", pkt_dev
->src_min
);
1213 sprintf(pg_result
, "OK: src_min=%s", pkt_dev
->src_min
);
1216 if (!strcmp(name
, "src_max")) {
1217 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->src_max
) - 1);
1218 if (len
< 0) { return len
; }
1219 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1222 if (strcmp(buf
, pkt_dev
->src_max
) != 0) {
1223 memset(pkt_dev
->src_max
, 0, sizeof(pkt_dev
->src_max
));
1224 strncpy(pkt_dev
->src_max
, buf
, len
);
1225 pkt_dev
->saddr_max
= in_aton(pkt_dev
->src_max
);
1226 pkt_dev
->cur_saddr
= pkt_dev
->saddr_max
;
1229 printk("pktgen: src_max set to: %s\n", pkt_dev
->src_max
);
1231 sprintf(pg_result
, "OK: src_max=%s", pkt_dev
->src_max
);
1234 if (!strcmp(name
, "dst_mac")) {
1236 unsigned char old_dmac
[6];
1237 unsigned char *m
= pkt_dev
->dst_mac
;
1238 memcpy(old_dmac
, pkt_dev
->dst_mac
, 6);
1240 len
= strn_len(&user_buffer
[i
], sizeof(valstr
) - 1);
1241 if (len
< 0) { return len
; }
1242 memset(valstr
, 0, sizeof(valstr
));
1243 if( copy_from_user(valstr
, &user_buffer
[i
], len
))
1247 for(*m
= 0;*v
&& m
< pkt_dev
->dst_mac
+ 6; v
++) {
1248 if (*v
>= '0' && *v
<= '9') {
1252 if (*v
>= 'A' && *v
<= 'F') {
1254 *m
+= *v
- 'A' + 10;
1256 if (*v
>= 'a' && *v
<= 'f') {
1258 *m
+= *v
- 'a' + 10;
1266 /* Set up Dest MAC */
1267 if (memcmp(old_dmac
, pkt_dev
->dst_mac
, 6) != 0)
1268 memcpy(&(pkt_dev
->hh
[0]), pkt_dev
->dst_mac
, 6);
1270 sprintf(pg_result
, "OK: dstmac");
1273 if (!strcmp(name
, "src_mac")) {
1275 unsigned char *m
= pkt_dev
->src_mac
;
1277 len
= strn_len(&user_buffer
[i
], sizeof(valstr
) - 1);
1278 if (len
< 0) { return len
; }
1279 memset(valstr
, 0, sizeof(valstr
));
1280 if( copy_from_user(valstr
, &user_buffer
[i
], len
))
1284 for(*m
= 0;*v
&& m
< pkt_dev
->src_mac
+ 6; v
++) {
1285 if (*v
>= '0' && *v
<= '9') {
1289 if (*v
>= 'A' && *v
<= 'F') {
1291 *m
+= *v
- 'A' + 10;
1293 if (*v
>= 'a' && *v
<= 'f') {
1295 *m
+= *v
- 'a' + 10;
1303 sprintf(pg_result
, "OK: srcmac");
1307 if (!strcmp(name
, "clear_counters")) {
1308 pktgen_clear_counters(pkt_dev
);
1309 sprintf(pg_result
, "OK: Clearing counters.\n");
1313 if (!strcmp(name
, "flows")) {
1314 len
= num_arg(&user_buffer
[i
], 10, &value
);
1315 if (len
< 0) { return len
; }
1317 if (value
> MAX_CFLOWS
)
1320 pkt_dev
->cflows
= value
;
1321 sprintf(pg_result
, "OK: flows=%u", pkt_dev
->cflows
);
1325 if (!strcmp(name
, "flowlen")) {
1326 len
= num_arg(&user_buffer
[i
], 10, &value
);
1327 if (len
< 0) { return len
; }
1329 pkt_dev
->lflow
= value
;
1330 sprintf(pg_result
, "OK: flowlen=%u", pkt_dev
->lflow
);
1334 sprintf(pkt_dev
->result
, "No such parameter \"%s\"", name
);
1338 static int proc_thread_read(char *buf
, char **start
, off_t offset
,
1339 int len
, int *eof
, void *data
)
1342 struct pktgen_thread
*t
= (struct pktgen_thread
*)(data
);
1343 struct pktgen_dev
*pkt_dev
= NULL
;
1347 printk("pktgen: ERROR: could not find thread in proc_thread_read\n");
1352 p
+= sprintf(p
, "Name: %s max_before_softirq: %d\n",
1353 t
->name
, t
->max_before_softirq
);
1355 p
+= sprintf(p
, "Running: ");
1358 for(pkt_dev
= t
->if_list
;pkt_dev
; pkt_dev
= pkt_dev
->next
)
1359 if(pkt_dev
->running
)
1360 p
+= sprintf(p
, "%s ", pkt_dev
->ifname
);
1362 p
+= sprintf(p
, "\nStopped: ");
1364 for(pkt_dev
= t
->if_list
;pkt_dev
; pkt_dev
= pkt_dev
->next
)
1365 if(!pkt_dev
->running
)
1366 p
+= sprintf(p
, "%s ", pkt_dev
->ifname
);
1369 p
+= sprintf(p
, "\nResult: %s\n", t
->result
);
1371 p
+= sprintf(p
, "\nResult: NA\n");
1380 static int proc_thread_write(struct file
*file
, const char __user
*user_buffer
,
1381 unsigned long count
, void *data
)
1383 int i
= 0, max
, len
, ret
;
1385 struct pktgen_thread
*t
;
1387 unsigned long value
= 0;
1390 // sprintf(pg_result, "Wrong command format");
1395 len
= count_trail_chars(&user_buffer
[i
], max
);
1401 /* Read variable name */
1403 len
= strn_len(&user_buffer
[i
], sizeof(name
) - 1);
1407 memset(name
, 0, sizeof(name
));
1408 if (copy_from_user(name
, &user_buffer
[i
], len
))
1413 len
= count_trail_chars(&user_buffer
[i
], max
);
1420 printk("pktgen: t=%s, count=%lu\n", name
, count
);
1423 t
= (struct pktgen_thread
*)(data
);
1425 printk("pktgen: ERROR: No thread\n");
1430 pg_result
= &(t
->result
[0]);
1432 if (!strcmp(name
, "add_device")) {
1435 len
= strn_len(&user_buffer
[i
], sizeof(f
) - 1);
1440 if( copy_from_user(f
, &user_buffer
[i
], len
) )
1444 pktgen_add_device(t
, f
);
1447 sprintf(pg_result
, "OK: add_device=%s", f
);
1451 if (!strcmp(name
, "rem_device_all")) {
1453 t
->control
|= T_REMDEV
;
1455 current
->state
= TASK_INTERRUPTIBLE
;
1456 schedule_timeout(HZ
/8); /* Propagate thread->control */
1458 sprintf(pg_result
, "OK: rem_device_all");
1462 if (!strcmp(name
, "max_before_softirq")) {
1463 len
= num_arg(&user_buffer
[i
], 10, &value
);
1465 t
->max_before_softirq
= value
;
1468 sprintf(pg_result
, "OK: max_before_softirq=%lu", value
);
1478 static int create_proc_dir(void)
1481 /* does proc_dir already exists */
1482 len
= strlen(PG_PROC_DIR
);
1484 for (pg_proc_dir
= proc_net
->subdir
; pg_proc_dir
; pg_proc_dir
=pg_proc_dir
->next
) {
1485 if ((pg_proc_dir
->namelen
== len
) &&
1486 (! memcmp(pg_proc_dir
->name
, PG_PROC_DIR
, len
)))
1491 pg_proc_dir
= create_proc_entry(PG_PROC_DIR
, S_IFDIR
, proc_net
);
1499 static int remove_proc_dir(void)
1501 remove_proc_entry(PG_PROC_DIR
, proc_net
);
1505 /* Think find or remove for NN */
1506 static struct pktgen_dev
*__pktgen_NN_threads(const char* ifname
, int remove
)
1508 struct pktgen_thread
*t
;
1509 struct pktgen_dev
*pkt_dev
= NULL
;
1514 pkt_dev
= pktgen_find_dev(t
, ifname
);
1518 pktgen_remove_device(t
, pkt_dev
);
1528 static struct pktgen_dev
*pktgen_NN_threads(const char* ifname
, int remove
)
1530 struct pktgen_dev
*pkt_dev
= NULL
;
1532 pkt_dev
= __pktgen_NN_threads(ifname
, remove
);
1537 static int pktgen_device_event(struct notifier_block
*unused
, unsigned long event
, void *ptr
)
1539 struct net_device
*dev
= (struct net_device
*)(ptr
);
1541 /* It is OK that we do not hold the group lock right now,
1542 * as we run under the RTNL lock.
1546 case NETDEV_CHANGEADDR
:
1547 case NETDEV_GOING_DOWN
:
1550 /* Ignore for now */
1553 case NETDEV_UNREGISTER
:
1554 pktgen_NN_threads(dev
->name
, REMOVE
);
1561 /* Associate pktgen_dev with a device. */
1563 static struct net_device
* pktgen_setup_dev(struct pktgen_dev
*pkt_dev
) {
1564 struct net_device
*odev
;
1566 /* Clean old setups */
1568 if (pkt_dev
->odev
) {
1569 dev_put(pkt_dev
->odev
);
1570 pkt_dev
->odev
= NULL
;
1573 odev
= dev_get_by_name(pkt_dev
->ifname
);
1576 printk("pktgen: no such netdevice: \"%s\"\n", pkt_dev
->ifname
);
1579 if (odev
->type
!= ARPHRD_ETHER
) {
1580 printk("pktgen: not an ethernet device: \"%s\"\n", pkt_dev
->ifname
);
1583 if (!netif_running(odev
)) {
1584 printk("pktgen: device is down: \"%s\"\n", pkt_dev
->ifname
);
1587 pkt_dev
->odev
= odev
;
1589 return pkt_dev
->odev
;
1598 /* Read pkt_dev from the interface and set up internal pktgen_dev
1599 * structure to have the right information to create/send packets
1601 static void pktgen_setup_inject(struct pktgen_dev
*pkt_dev
)
1603 /* Try once more, just in case it works now. */
1605 pktgen_setup_dev(pkt_dev
);
1607 if (!pkt_dev
->odev
) {
1608 printk("pktgen: ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1609 sprintf(pkt_dev
->result
, "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1613 /* Default to the interface's mac if not explicitly set. */
1615 if ((pkt_dev
->src_mac
[0] == 0) &&
1616 (pkt_dev
->src_mac
[1] == 0) &&
1617 (pkt_dev
->src_mac
[2] == 0) &&
1618 (pkt_dev
->src_mac
[3] == 0) &&
1619 (pkt_dev
->src_mac
[4] == 0) &&
1620 (pkt_dev
->src_mac
[5] == 0)) {
1622 memcpy(&(pkt_dev
->hh
[6]), pkt_dev
->odev
->dev_addr
, 6);
1624 /* Set up Dest MAC */
1625 memcpy(&(pkt_dev
->hh
[0]), pkt_dev
->dst_mac
, 6);
1627 /* Set up pkt size */
1628 pkt_dev
->cur_pkt_size
= pkt_dev
->min_pkt_size
;
1630 if(pkt_dev
->flags
& F_IPV6
) {
1632 * Skip this automatic address setting until locks or functions
1637 int i
, set
= 0, err
=1;
1638 struct inet6_dev
*idev
;
1640 for(i
=0; i
< IN6_ADDR_HSIZE
; i
++)
1641 if(pkt_dev
->cur_in6_saddr
.s6_addr
[i
]) {
1649 * Use linklevel address if unconfigured.
1651 * use ipv6_get_lladdr if/when it's get exported
1655 read_lock(&addrconf_lock
);
1656 if ((idev
= __in6_dev_get(pkt_dev
->odev
)) != NULL
) {
1657 struct inet6_ifaddr
*ifp
;
1659 read_lock_bh(&idev
->lock
);
1660 for (ifp
=idev
->addr_list
; ifp
; ifp
=ifp
->if_next
) {
1661 if (ifp
->scope
== IFA_LINK
&& !(ifp
->flags
&IFA_F_TENTATIVE
)) {
1662 ipv6_addr_copy(&pkt_dev
->cur_in6_saddr
, &ifp
->addr
);
1667 read_unlock_bh(&idev
->lock
);
1669 read_unlock(&addrconf_lock
);
1670 if(err
) printk("pktgen: ERROR: IPv6 link address not availble.\n");
1675 pkt_dev
->saddr_min
= 0;
1676 pkt_dev
->saddr_max
= 0;
1677 if (strlen(pkt_dev
->src_min
) == 0) {
1679 struct in_device
*in_dev
;
1682 in_dev
= __in_dev_get(pkt_dev
->odev
);
1684 if (in_dev
->ifa_list
) {
1685 pkt_dev
->saddr_min
= in_dev
->ifa_list
->ifa_address
;
1686 pkt_dev
->saddr_max
= pkt_dev
->saddr_min
;
1688 __in_dev_put(in_dev
);
1693 pkt_dev
->saddr_min
= in_aton(pkt_dev
->src_min
);
1694 pkt_dev
->saddr_max
= in_aton(pkt_dev
->src_max
);
1697 pkt_dev
->daddr_min
= in_aton(pkt_dev
->dst_min
);
1698 pkt_dev
->daddr_max
= in_aton(pkt_dev
->dst_max
);
1700 /* Initialize current values. */
1701 pkt_dev
->cur_dst_mac_offset
= 0;
1702 pkt_dev
->cur_src_mac_offset
= 0;
1703 pkt_dev
->cur_saddr
= pkt_dev
->saddr_min
;
1704 pkt_dev
->cur_daddr
= pkt_dev
->daddr_min
;
1705 pkt_dev
->cur_udp_dst
= pkt_dev
->udp_dst_min
;
1706 pkt_dev
->cur_udp_src
= pkt_dev
->udp_src_min
;
1707 pkt_dev
->nflows
= 0;
1710 static void spin(struct pktgen_dev
*pkt_dev
, __u64 spin_until_us
)
1715 start
= now
= getCurUs();
1716 printk(KERN_INFO
"sleeping for %d\n", (int)(spin_until_us
- now
));
1717 while (now
< spin_until_us
) {
1718 /* TODO: optimise sleeping behavior */
1719 if (spin_until_us
- now
> (1000000/HZ
)+1) {
1720 current
->state
= TASK_INTERRUPTIBLE
;
1721 schedule_timeout(1);
1722 } else if (spin_until_us
- now
> 100) {
1724 if (!pkt_dev
->running
)
1733 pkt_dev
->idle_acc
+= now
- start
;
1737 /* Increment/randomize headers according to flags and current values
1738 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
1740 static void mod_cur_headers(struct pktgen_dev
*pkt_dev
) {
1745 if(pkt_dev
->cflows
) {
1746 flow
= pktgen_random() % pkt_dev
->cflows
;
1748 if (pkt_dev
->flows
[flow
].count
> pkt_dev
->lflow
)
1749 pkt_dev
->flows
[flow
].count
= 0;
1753 /* Deal with source MAC */
1754 if (pkt_dev
->src_mac_count
> 1) {
1758 if (pkt_dev
->flags
& F_MACSRC_RND
)
1759 mc
= pktgen_random() % (pkt_dev
->src_mac_count
);
1761 mc
= pkt_dev
->cur_src_mac_offset
++;
1762 if (pkt_dev
->cur_src_mac_offset
> pkt_dev
->src_mac_count
)
1763 pkt_dev
->cur_src_mac_offset
= 0;
1766 tmp
= pkt_dev
->src_mac
[5] + (mc
& 0xFF);
1767 pkt_dev
->hh
[11] = tmp
;
1768 tmp
= (pkt_dev
->src_mac
[4] + ((mc
>> 8) & 0xFF) + (tmp
>> 8));
1769 pkt_dev
->hh
[10] = tmp
;
1770 tmp
= (pkt_dev
->src_mac
[3] + ((mc
>> 16) & 0xFF) + (tmp
>> 8));
1771 pkt_dev
->hh
[9] = tmp
;
1772 tmp
= (pkt_dev
->src_mac
[2] + ((mc
>> 24) & 0xFF) + (tmp
>> 8));
1773 pkt_dev
->hh
[8] = tmp
;
1774 tmp
= (pkt_dev
->src_mac
[1] + (tmp
>> 8));
1775 pkt_dev
->hh
[7] = tmp
;
1778 /* Deal with Destination MAC */
1779 if (pkt_dev
->dst_mac_count
> 1) {
1783 if (pkt_dev
->flags
& F_MACDST_RND
)
1784 mc
= pktgen_random() % (pkt_dev
->dst_mac_count
);
1787 mc
= pkt_dev
->cur_dst_mac_offset
++;
1788 if (pkt_dev
->cur_dst_mac_offset
> pkt_dev
->dst_mac_count
) {
1789 pkt_dev
->cur_dst_mac_offset
= 0;
1793 tmp
= pkt_dev
->dst_mac
[5] + (mc
& 0xFF);
1794 pkt_dev
->hh
[5] = tmp
;
1795 tmp
= (pkt_dev
->dst_mac
[4] + ((mc
>> 8) & 0xFF) + (tmp
>> 8));
1796 pkt_dev
->hh
[4] = tmp
;
1797 tmp
= (pkt_dev
->dst_mac
[3] + ((mc
>> 16) & 0xFF) + (tmp
>> 8));
1798 pkt_dev
->hh
[3] = tmp
;
1799 tmp
= (pkt_dev
->dst_mac
[2] + ((mc
>> 24) & 0xFF) + (tmp
>> 8));
1800 pkt_dev
->hh
[2] = tmp
;
1801 tmp
= (pkt_dev
->dst_mac
[1] + (tmp
>> 8));
1802 pkt_dev
->hh
[1] = tmp
;
1805 if (pkt_dev
->udp_src_min
< pkt_dev
->udp_src_max
) {
1806 if (pkt_dev
->flags
& F_UDPSRC_RND
)
1807 pkt_dev
->cur_udp_src
= ((pktgen_random() % (pkt_dev
->udp_src_max
- pkt_dev
->udp_src_min
)) + pkt_dev
->udp_src_min
);
1810 pkt_dev
->cur_udp_src
++;
1811 if (pkt_dev
->cur_udp_src
>= pkt_dev
->udp_src_max
)
1812 pkt_dev
->cur_udp_src
= pkt_dev
->udp_src_min
;
1816 if (pkt_dev
->udp_dst_min
< pkt_dev
->udp_dst_max
) {
1817 if (pkt_dev
->flags
& F_UDPDST_RND
) {
1818 pkt_dev
->cur_udp_dst
= ((pktgen_random() % (pkt_dev
->udp_dst_max
- pkt_dev
->udp_dst_min
)) + pkt_dev
->udp_dst_min
);
1821 pkt_dev
->cur_udp_dst
++;
1822 if (pkt_dev
->cur_udp_dst
>= pkt_dev
->udp_dst_max
)
1823 pkt_dev
->cur_udp_dst
= pkt_dev
->udp_dst_min
;
1827 if (!(pkt_dev
->flags
& F_IPV6
)) {
1829 if ((imn
= ntohl(pkt_dev
->saddr_min
)) < (imx
= ntohl(pkt_dev
->saddr_max
))) {
1831 if (pkt_dev
->flags
& F_IPSRC_RND
)
1832 t
= ((pktgen_random() % (imx
- imn
)) + imn
);
1834 t
= ntohl(pkt_dev
->cur_saddr
);
1840 pkt_dev
->cur_saddr
= htonl(t
);
1843 if (pkt_dev
->cflows
&& pkt_dev
->flows
[flow
].count
!= 0) {
1844 pkt_dev
->cur_daddr
= pkt_dev
->flows
[flow
].cur_daddr
;
1847 if ((imn
= ntohl(pkt_dev
->daddr_min
)) < (imx
= ntohl(pkt_dev
->daddr_max
))) {
1849 if (pkt_dev
->flags
& F_IPDST_RND
) {
1851 t
= ((pktgen_random() % (imx
- imn
)) + imn
);
1854 while( LOOPBACK(t
) || MULTICAST(t
) || BADCLASS(t
) || ZERONET(t
) || LOCAL_MCAST(t
) ) {
1855 t
= ((pktgen_random() % (imx
- imn
)) + imn
);
1858 pkt_dev
->cur_daddr
= t
;
1862 t
= ntohl(pkt_dev
->cur_daddr
);
1867 pkt_dev
->cur_daddr
= htonl(t
);
1870 if(pkt_dev
->cflows
) {
1871 pkt_dev
->flows
[flow
].cur_daddr
= pkt_dev
->cur_daddr
;
1878 if(pkt_dev
->min_in6_daddr
.s6_addr32
[0] == 0 &&
1879 pkt_dev
->min_in6_daddr
.s6_addr32
[1] == 0 &&
1880 pkt_dev
->min_in6_daddr
.s6_addr32
[2] == 0 &&
1881 pkt_dev
->min_in6_daddr
.s6_addr32
[3] == 0);
1885 /* Only random destinations yet */
1887 for(i
=0; i
< 4; i
++) {
1888 pkt_dev
->cur_in6_daddr
.s6_addr32
[i
] =
1890 pkt_dev
->min_in6_daddr
.s6_addr32
[i
]) &
1891 pkt_dev
->max_in6_daddr
.s6_addr32
[i
]);
1896 if (pkt_dev
->min_pkt_size
< pkt_dev
->max_pkt_size
) {
1898 if (pkt_dev
->flags
& F_TXSIZE_RND
) {
1899 t
= ((pktgen_random() % (pkt_dev
->max_pkt_size
- pkt_dev
->min_pkt_size
))
1900 + pkt_dev
->min_pkt_size
);
1903 t
= pkt_dev
->cur_pkt_size
+ 1;
1904 if (t
> pkt_dev
->max_pkt_size
)
1905 t
= pkt_dev
->min_pkt_size
;
1907 pkt_dev
->cur_pkt_size
= t
;
1910 pkt_dev
->flows
[flow
].count
++;
1914 static struct sk_buff
*fill_packet_ipv4(struct net_device
*odev
,
1915 struct pktgen_dev
*pkt_dev
)
1917 struct sk_buff
*skb
= NULL
;
1919 struct udphdr
*udph
;
1922 struct pktgen_hdr
*pgh
= NULL
;
1924 skb
= alloc_skb(pkt_dev
->cur_pkt_size
+ 64 + 16, GFP_ATOMIC
);
1926 sprintf(pkt_dev
->result
, "No memory");
1930 skb_reserve(skb
, 16);
1932 /* Reserve for ethernet and IP header */
1933 eth
= (__u8
*) skb_push(skb
, 14);
1934 iph
= (struct iphdr
*)skb_put(skb
, sizeof(struct iphdr
));
1935 udph
= (struct udphdr
*)skb_put(skb
, sizeof(struct udphdr
));
1937 /* Update any of the values, used when we're incrementing various
1940 mod_cur_headers(pkt_dev
);
1942 memcpy(eth
, pkt_dev
->hh
, 12);
1943 *(u16
*)ð
[12] = __constant_htons(ETH_P_IP
);
1945 datalen
= pkt_dev
->cur_pkt_size
- 14 - 20 - 8; /* Eth + IPh + UDPh */
1946 if (datalen
< sizeof(struct pktgen_hdr
))
1947 datalen
= sizeof(struct pktgen_hdr
);
1949 udph
->source
= htons(pkt_dev
->cur_udp_src
);
1950 udph
->dest
= htons(pkt_dev
->cur_udp_dst
);
1951 udph
->len
= htons(datalen
+ 8); /* DATA + udphdr */
1952 udph
->check
= 0; /* No checksum */
1958 iph
->protocol
= IPPROTO_UDP
; /* UDP */
1959 iph
->saddr
= pkt_dev
->cur_saddr
;
1960 iph
->daddr
= pkt_dev
->cur_daddr
;
1962 iplen
= 20 + 8 + datalen
;
1963 iph
->tot_len
= htons(iplen
);
1965 iph
->check
= ip_fast_csum((void *) iph
, iph
->ihl
);
1966 skb
->protocol
= __constant_htons(ETH_P_IP
);
1967 skb
->mac
.raw
= ((u8
*)iph
) - 14;
1969 skb
->pkt_type
= PACKET_HOST
;
1971 if (pkt_dev
->nfrags
<= 0)
1972 pgh
= (struct pktgen_hdr
*)skb_put(skb
, datalen
);
1974 int frags
= pkt_dev
->nfrags
;
1977 pgh
= (struct pktgen_hdr
*)(((char*)(udph
)) + 8);
1979 if (frags
> MAX_SKB_FRAGS
)
1980 frags
= MAX_SKB_FRAGS
;
1981 if (datalen
> frags
*PAGE_SIZE
) {
1982 skb_put(skb
, datalen
-frags
*PAGE_SIZE
);
1983 datalen
= frags
*PAGE_SIZE
;
1987 while (datalen
> 0) {
1988 struct page
*page
= alloc_pages(GFP_KERNEL
, 0);
1989 skb_shinfo(skb
)->frags
[i
].page
= page
;
1990 skb_shinfo(skb
)->frags
[i
].page_offset
= 0;
1991 skb_shinfo(skb
)->frags
[i
].size
=
1992 (datalen
< PAGE_SIZE
? datalen
: PAGE_SIZE
);
1993 datalen
-= skb_shinfo(skb
)->frags
[i
].size
;
1994 skb
->len
+= skb_shinfo(skb
)->frags
[i
].size
;
1995 skb
->data_len
+= skb_shinfo(skb
)->frags
[i
].size
;
1997 skb_shinfo(skb
)->nr_frags
= i
;
2006 rem
= skb_shinfo(skb
)->frags
[i
- 1].size
/ 2;
2010 skb_shinfo(skb
)->frags
[i
- 1].size
-= rem
;
2012 skb_shinfo(skb
)->frags
[i
] = skb_shinfo(skb
)->frags
[i
- 1];
2013 get_page(skb_shinfo(skb
)->frags
[i
].page
);
2014 skb_shinfo(skb
)->frags
[i
].page
= skb_shinfo(skb
)->frags
[i
- 1].page
;
2015 skb_shinfo(skb
)->frags
[i
].page_offset
+= skb_shinfo(skb
)->frags
[i
- 1].size
;
2016 skb_shinfo(skb
)->frags
[i
].size
= rem
;
2018 skb_shinfo(skb
)->nr_frags
= i
;
2022 /* Stamp the time, and sequence number, convert them to network byte order */
2025 struct timeval timestamp
;
2027 pgh
->pgh_magic
= htonl(PKTGEN_MAGIC
);
2028 pgh
->seq_num
= htonl(pkt_dev
->seq_num
);
2030 do_gettimeofday(×tamp
);
2031 pgh
->tv_sec
= htonl(timestamp
.tv_sec
);
2032 pgh
->tv_usec
= htonl(timestamp
.tv_usec
);
2040 * scan_ip6, fmt_ip taken from dietlibc-0.21
2041 * Author Felix von Leitner <felix-dietlibc@fefe.de>
2043 * Slightly modified for kernel.
2044 * Should be candidate for net/ipv4/utils.c
2048 static unsigned int scan_ip6(const char *s
,char ip
[16])
2054 unsigned int prefixlen
=0;
2055 unsigned int suffixlen
=0;
2058 for (i
=0; i
<16; i
++) ip
[i
]=0;
2063 if (s
[1] == ':') { /* Found "::", skip to part 2 */
2072 u
=simple_strtoul(s
,&tmp
,16);
2077 if (prefixlen
==12 && s
[i
]=='.') {
2079 /* the last 4 bytes may be written as IPv4 address */
2082 memcpy((struct in_addr
*)(ip
+12), &tmp
, sizeof(tmp
));
2085 ip
[prefixlen
++] = (u
>> 8);
2086 ip
[prefixlen
++] = (u
& 255);
2092 /* part 2, after "::" */
2099 } else if (suffixlen
!=0)
2103 u
=simple_strtol(s
,&tmp
,16);
2110 if (suffixlen
+prefixlen
<=12 && s
[i
]=='.') {
2112 memcpy((struct in_addr
*)(suffix
+suffixlen
), &tmp
, sizeof(tmp
));
2117 suffix
[suffixlen
++] = (u
>> 8);
2118 suffix
[suffixlen
++] = (u
& 255);
2120 if (prefixlen
+suffixlen
==16)
2123 for (i
=0; i
<suffixlen
; i
++)
2124 ip
[16-suffixlen
+i
] = suffix
[i
];
2128 static char tohex(char hexdigit
) {
2129 return hexdigit
>9?hexdigit
+'a'-10:hexdigit
+'0';
2132 static int fmt_xlong(char* s
,unsigned int i
) {
2134 *s
=tohex((i
>>12)&0xf); if (s
!=bak
|| *s
!='0') ++s
;
2135 *s
=tohex((i
>>8)&0xf); if (s
!=bak
|| *s
!='0') ++s
;
2136 *s
=tohex((i
>>4)&0xf); if (s
!=bak
|| *s
!='0') ++s
;
2141 static unsigned int fmt_ip6(char *s
,const char ip
[16]) {
2145 unsigned int compressing
;
2148 len
= 0; compressing
= 0;
2149 for (j
=0; j
<16; j
+=2) {
2151 #ifdef V4MAPPEDPREFIX
2152 if (j
==12 && !memcmp(ip
,V4mappedprefix
,12)) {
2153 inet_ntoa_r(*(struct in_addr
*)(ip
+12),s
);
2158 temp
= ((unsigned long) (unsigned char) ip
[j
] << 8) +
2159 (unsigned long) (unsigned char) ip
[j
+1];
2172 i
= fmt_xlong(s
,temp
); len
+= i
; s
+= i
;
2186 static struct sk_buff
*fill_packet_ipv6(struct net_device
*odev
,
2187 struct pktgen_dev
*pkt_dev
)
2189 struct sk_buff
*skb
= NULL
;
2191 struct udphdr
*udph
;
2193 struct ipv6hdr
*iph
;
2194 struct pktgen_hdr
*pgh
= NULL
;
2196 skb
= alloc_skb(pkt_dev
->cur_pkt_size
+ 64 + 16, GFP_ATOMIC
);
2198 sprintf(pkt_dev
->result
, "No memory");
2202 skb_reserve(skb
, 16);
2204 /* Reserve for ethernet and IP header */
2205 eth
= (__u8
*) skb_push(skb
, 14);
2206 iph
= (struct ipv6hdr
*)skb_put(skb
, sizeof(struct ipv6hdr
));
2207 udph
= (struct udphdr
*)skb_put(skb
, sizeof(struct udphdr
));
2210 /* Update any of the values, used when we're incrementing various
2213 mod_cur_headers(pkt_dev
);
2216 memcpy(eth
, pkt_dev
->hh
, 12);
2217 *(u16
*)ð
[12] = __constant_htons(ETH_P_IPV6
);
2220 datalen
= pkt_dev
->cur_pkt_size
-14-
2221 sizeof(struct ipv6hdr
)-sizeof(struct udphdr
); /* Eth + IPh + UDPh */
2223 if (datalen
< sizeof(struct pktgen_hdr
)) {
2224 datalen
= sizeof(struct pktgen_hdr
);
2225 if (net_ratelimit())
2226 printk(KERN_INFO
"pktgen: increased datalen to %d\n", datalen
);
2229 udph
->source
= htons(pkt_dev
->cur_udp_src
);
2230 udph
->dest
= htons(pkt_dev
->cur_udp_dst
);
2231 udph
->len
= htons(datalen
+ sizeof(struct udphdr
));
2232 udph
->check
= 0; /* No checksum */
2234 *(u32
*)iph
= __constant_htonl(0x60000000); /* Version + flow */
2236 iph
->hop_limit
= 32;
2238 iph
->payload_len
= htons(sizeof(struct udphdr
) + datalen
);
2239 iph
->nexthdr
= IPPROTO_UDP
;
2241 ipv6_addr_copy(&iph
->daddr
, &pkt_dev
->cur_in6_daddr
);
2242 ipv6_addr_copy(&iph
->saddr
, &pkt_dev
->cur_in6_saddr
);
2244 skb
->mac
.raw
= ((u8
*)iph
) - 14;
2245 skb
->protocol
= __constant_htons(ETH_P_IPV6
);
2247 skb
->pkt_type
= PACKET_HOST
;
2249 if (pkt_dev
->nfrags
<= 0)
2250 pgh
= (struct pktgen_hdr
*)skb_put(skb
, datalen
);
2252 int frags
= pkt_dev
->nfrags
;
2255 pgh
= (struct pktgen_hdr
*)(((char*)(udph
)) + 8);
2257 if (frags
> MAX_SKB_FRAGS
)
2258 frags
= MAX_SKB_FRAGS
;
2259 if (datalen
> frags
*PAGE_SIZE
) {
2260 skb_put(skb
, datalen
-frags
*PAGE_SIZE
);
2261 datalen
= frags
*PAGE_SIZE
;
2265 while (datalen
> 0) {
2266 struct page
*page
= alloc_pages(GFP_KERNEL
, 0);
2267 skb_shinfo(skb
)->frags
[i
].page
= page
;
2268 skb_shinfo(skb
)->frags
[i
].page_offset
= 0;
2269 skb_shinfo(skb
)->frags
[i
].size
=
2270 (datalen
< PAGE_SIZE
? datalen
: PAGE_SIZE
);
2271 datalen
-= skb_shinfo(skb
)->frags
[i
].size
;
2272 skb
->len
+= skb_shinfo(skb
)->frags
[i
].size
;
2273 skb
->data_len
+= skb_shinfo(skb
)->frags
[i
].size
;
2275 skb_shinfo(skb
)->nr_frags
= i
;
2284 rem
= skb_shinfo(skb
)->frags
[i
- 1].size
/ 2;
2288 skb_shinfo(skb
)->frags
[i
- 1].size
-= rem
;
2290 skb_shinfo(skb
)->frags
[i
] = skb_shinfo(skb
)->frags
[i
- 1];
2291 get_page(skb_shinfo(skb
)->frags
[i
].page
);
2292 skb_shinfo(skb
)->frags
[i
].page
= skb_shinfo(skb
)->frags
[i
- 1].page
;
2293 skb_shinfo(skb
)->frags
[i
].page_offset
+= skb_shinfo(skb
)->frags
[i
- 1].size
;
2294 skb_shinfo(skb
)->frags
[i
].size
= rem
;
2296 skb_shinfo(skb
)->nr_frags
= i
;
2300 /* Stamp the time, and sequence number, convert them to network byte order */
2301 /* should we update cloned packets too ? */
2303 struct timeval timestamp
;
2305 pgh
->pgh_magic
= htonl(PKTGEN_MAGIC
);
2306 pgh
->seq_num
= htonl(pkt_dev
->seq_num
);
2308 do_gettimeofday(×tamp
);
2309 pgh
->tv_sec
= htonl(timestamp
.tv_sec
);
2310 pgh
->tv_usec
= htonl(timestamp
.tv_usec
);
2317 static inline struct sk_buff
*fill_packet(struct net_device
*odev
,
2318 struct pktgen_dev
*pkt_dev
)
2320 if(pkt_dev
->flags
& F_IPV6
)
2321 return fill_packet_ipv6(odev
, pkt_dev
);
2323 return fill_packet_ipv4(odev
, pkt_dev
);
2326 static void pktgen_clear_counters(struct pktgen_dev
*pkt_dev
)
2328 pkt_dev
->seq_num
= 1;
2329 pkt_dev
->idle_acc
= 0;
2331 pkt_dev
->tx_bytes
= 0;
2332 pkt_dev
->errors
= 0;
2335 /* Set up structure for sending pkts, clear counters */
2337 static void pktgen_run(struct pktgen_thread
*t
)
2339 struct pktgen_dev
*pkt_dev
= NULL
;
2342 PG_DEBUG(printk("pktgen: entering pktgen_run. %p\n", t
));
2345 for (pkt_dev
= t
->if_list
; pkt_dev
; pkt_dev
= pkt_dev
->next
) {
2348 * setup odev and create initial packet.
2350 pktgen_setup_inject(pkt_dev
);
2353 pktgen_clear_counters(pkt_dev
);
2354 pkt_dev
->running
= 1; /* Cranke yeself! */
2355 pkt_dev
->skb
= NULL
;
2356 pkt_dev
->started_at
= getCurUs();
2357 pkt_dev
->next_tx_us
= getCurUs(); /* Transmit immediately */
2358 pkt_dev
->next_tx_ns
= 0;
2360 strcpy(pkt_dev
->result
, "Starting");
2364 strcpy(pkt_dev
->result
, "Error starting");
2367 if(started
) t
->control
&= ~(T_STOP
);
2370 static void pktgen_stop_all_threads_ifs(void)
2372 struct pktgen_thread
*t
= pktgen_threads
;
2374 PG_DEBUG(printk("pktgen: entering pktgen_stop_all_threads.\n"));
2384 static int thread_is_running(struct pktgen_thread
*t
)
2386 struct pktgen_dev
*next
;
2389 for(next
=t
->if_list
; next
; next
=next
->next
) {
2398 static int pktgen_wait_thread_run(struct pktgen_thread
*t
)
2402 while(thread_is_running(t
)) {
2406 msleep_interruptible(100);
2408 if (signal_pending(current
))
2418 static int pktgen_wait_all_threads_run(void)
2420 struct pktgen_thread
*t
= pktgen_threads
;
2424 sig
= pktgen_wait_thread_run(t
);
2425 if( sig
== 0 ) break;
2433 t
->control
|= (T_STOP
);
2441 static void pktgen_run_all_threads(void)
2443 struct pktgen_thread
*t
= pktgen_threads
;
2445 PG_DEBUG(printk("pktgen: entering pktgen_run_all_threads.\n"));
2450 t
->control
|= (T_RUN
);
2455 current
->state
= TASK_INTERRUPTIBLE
;
2456 schedule_timeout(HZ
/8); /* Propagate thread->control */
2458 pktgen_wait_all_threads_run();
2462 static void show_results(struct pktgen_dev
*pkt_dev
, int nr_frags
)
2464 __u64 total_us
, bps
, mbps
, pps
, idle
;
2465 char *p
= pkt_dev
->result
;
2467 total_us
= pkt_dev
->stopped_at
- pkt_dev
->started_at
;
2469 idle
= pkt_dev
->idle_acc
;
2471 p
+= sprintf(p
, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
2472 (unsigned long long) total_us
,
2473 (unsigned long long)(total_us
- idle
),
2474 (unsigned long long) idle
,
2475 (unsigned long long) pkt_dev
->sofar
,
2476 pkt_dev
->cur_pkt_size
, nr_frags
);
2478 pps
= pkt_dev
->sofar
* USEC_PER_SEC
;
2480 while ((total_us
>> 32) != 0) {
2485 do_div(pps
, total_us
);
2487 bps
= pps
* 8 * pkt_dev
->cur_pkt_size
;
2490 do_div(mbps
, 1000000);
2491 p
+= sprintf(p
, " %llupps %lluMb/sec (%llubps) errors: %llu",
2492 (unsigned long long) pps
,
2493 (unsigned long long) mbps
,
2494 (unsigned long long) bps
,
2495 (unsigned long long) pkt_dev
->errors
);
2499 /* Set stopped-at timer, remove from running list, do counters & statistics */
2501 static int pktgen_stop_device(struct pktgen_dev
*pkt_dev
)
2504 if (!pkt_dev
->running
) {
2505 printk("pktgen: interface: %s is already stopped\n", pkt_dev
->ifname
);
2509 pkt_dev
->stopped_at
= getCurUs();
2510 pkt_dev
->running
= 0;
2512 show_results(pkt_dev
, skb_shinfo(pkt_dev
->skb
)->nr_frags
);
2515 kfree_skb(pkt_dev
->skb
);
2517 pkt_dev
->skb
= NULL
;
2522 static struct pktgen_dev
*next_to_run(struct pktgen_thread
*t
)
2524 struct pktgen_dev
*next
, *best
= NULL
;
2528 for(next
=t
->if_list
; next
; next
=next
->next
) {
2529 if(!next
->running
) continue;
2530 if(best
== NULL
) best
=next
;
2531 else if ( next
->next_tx_us
< best
->next_tx_us
)
2538 static void pktgen_stop(struct pktgen_thread
*t
) {
2539 struct pktgen_dev
*next
= NULL
;
2541 PG_DEBUG(printk("pktgen: entering pktgen_stop.\n"));
2545 for(next
=t
->if_list
; next
; next
=next
->next
)
2546 pktgen_stop_device(next
);
2551 static void pktgen_rem_all_ifs(struct pktgen_thread
*t
)
2553 struct pktgen_dev
*cur
, *next
= NULL
;
2555 /* Remove all devices, free mem */
2559 for(cur
=t
->if_list
; cur
; cur
=next
) {
2561 pktgen_remove_device(t
, cur
);
2567 static void pktgen_rem_thread(struct pktgen_thread
*t
)
2569 /* Remove from the thread list */
2571 struct pktgen_thread
*tmp
= pktgen_threads
;
2573 if (strlen(t
->fname
))
2574 remove_proc_entry(t
->fname
, NULL
);
2579 pktgen_threads
= tmp
->next
;
2582 if (tmp
->next
== t
) {
2583 tmp
->next
= t
->next
;
2593 static __inline__
void pktgen_xmit(struct pktgen_dev
*pkt_dev
)
2595 struct net_device
*odev
= NULL
;
2596 __u64 idle_start
= 0;
2599 odev
= pkt_dev
->odev
;
2601 if (pkt_dev
->delay_us
|| pkt_dev
->delay_ns
) {
2605 if (now
< pkt_dev
->next_tx_us
)
2606 spin(pkt_dev
, pkt_dev
->next_tx_us
);
2608 /* This is max DELAY, this has special meaning of
2611 if (pkt_dev
->delay_us
== 0x7FFFFFFF) {
2612 pkt_dev
->next_tx_us
= getCurUs() + pkt_dev
->delay_us
;
2613 pkt_dev
->next_tx_ns
= pkt_dev
->delay_ns
;
2618 if (netif_queue_stopped(odev
) || need_resched()) {
2619 idle_start
= getCurUs();
2621 if (!netif_running(odev
)) {
2622 pktgen_stop_device(pkt_dev
);
2628 pkt_dev
->idle_acc
+= getCurUs() - idle_start
;
2630 if (netif_queue_stopped(odev
)) {
2631 pkt_dev
->next_tx_us
= getCurUs(); /* TODO */
2632 pkt_dev
->next_tx_ns
= 0;
2633 goto out
; /* Try the next interface */
2637 if (pkt_dev
->last_ok
|| !pkt_dev
->skb
) {
2638 if ((++pkt_dev
->clone_count
>= pkt_dev
->clone_skb
) || (!pkt_dev
->skb
)) {
2639 /* build a new pkt */
2641 kfree_skb(pkt_dev
->skb
);
2643 pkt_dev
->skb
= fill_packet(odev
, pkt_dev
);
2644 if (pkt_dev
->skb
== NULL
) {
2645 printk("pktgen: ERROR: couldn't allocate skb in fill_packet.\n");
2647 pkt_dev
->clone_count
--; /* back out increment, OOM */
2650 pkt_dev
->allocated_skbs
++;
2651 pkt_dev
->clone_count
= 0; /* reset counter */
2655 spin_lock_bh(&odev
->xmit_lock
);
2656 if (!netif_queue_stopped(odev
)) {
2658 atomic_inc(&(pkt_dev
->skb
->users
));
2660 ret
= odev
->hard_start_xmit(pkt_dev
->skb
, odev
);
2661 if (likely(ret
== NETDEV_TX_OK
)) {
2662 pkt_dev
->last_ok
= 1;
2665 pkt_dev
->tx_bytes
+= pkt_dev
->cur_pkt_size
;
2667 } else if (ret
== NETDEV_TX_LOCKED
2668 && (odev
->features
& NETIF_F_LLTX
)) {
2671 } else { /* Retry it next time */
2673 atomic_dec(&(pkt_dev
->skb
->users
));
2675 if (debug
&& net_ratelimit())
2676 printk(KERN_INFO
"pktgen: Hard xmit error\n");
2679 pkt_dev
->last_ok
= 0;
2682 pkt_dev
->next_tx_us
= getCurUs();
2683 pkt_dev
->next_tx_ns
= 0;
2685 pkt_dev
->next_tx_us
+= pkt_dev
->delay_us
;
2686 pkt_dev
->next_tx_ns
+= pkt_dev
->delay_ns
;
2688 if (pkt_dev
->next_tx_ns
> 1000) {
2689 pkt_dev
->next_tx_us
++;
2690 pkt_dev
->next_tx_ns
-= 1000;
2694 else { /* Retry it next time */
2695 pkt_dev
->last_ok
= 0;
2696 pkt_dev
->next_tx_us
= getCurUs(); /* TODO */
2697 pkt_dev
->next_tx_ns
= 0;
2700 spin_unlock_bh(&odev
->xmit_lock
);
2702 /* If pkt_dev->count is zero, then run forever */
2703 if ((pkt_dev
->count
!= 0) && (pkt_dev
->sofar
>= pkt_dev
->count
)) {
2704 if (atomic_read(&(pkt_dev
->skb
->users
)) != 1) {
2705 idle_start
= getCurUs();
2706 while (atomic_read(&(pkt_dev
->skb
->users
)) != 1) {
2707 if (signal_pending(current
)) {
2712 pkt_dev
->idle_acc
+= getCurUs() - idle_start
;
2715 /* Done with this */
2716 pktgen_stop_device(pkt_dev
);
2722 * Main loop of the thread goes here
2725 static void pktgen_thread_worker(struct pktgen_thread
*t
)
2728 struct pktgen_dev
*pkt_dev
= NULL
;
2731 u32 max_before_softirq
;
2732 u32 tx_since_softirq
= 0;
2734 daemonize("pktgen/%d", cpu
);
2736 /* Block all signals except SIGKILL, SIGSTOP and SIGTERM */
2738 spin_lock_irq(¤t
->sighand
->siglock
);
2739 tmpsig
= current
->blocked
;
2740 siginitsetinv(¤t
->blocked
,
2745 recalc_sigpending();
2746 spin_unlock_irq(¤t
->sighand
->siglock
);
2748 /* Migrate to the right CPU */
2749 set_cpus_allowed(current
, cpumask_of_cpu(cpu
));
2750 if (smp_processor_id() != cpu
)
2753 init_waitqueue_head(&t
->queue
);
2755 t
->control
&= ~(T_TERMINATE
);
2756 t
->control
&= ~(T_RUN
);
2757 t
->control
&= ~(T_STOP
);
2758 t
->control
&= ~(T_REMDEV
);
2760 t
->pid
= current
->pid
;
2762 PG_DEBUG(printk("pktgen: starting pktgen/%d: pid=%d\n", cpu
, current
->pid
));
2764 max_before_softirq
= t
->max_before_softirq
;
2766 __set_current_state(TASK_INTERRUPTIBLE
);
2771 __set_current_state(TASK_RUNNING
);
2774 * Get next dev to xmit -- if any.
2777 pkt_dev
= next_to_run(t
);
2781 pktgen_xmit(pkt_dev
);
2784 * We like to stay RUNNING but must also give
2785 * others fair share.
2788 tx_since_softirq
+= pkt_dev
->last_ok
;
2790 if (tx_since_softirq
> max_before_softirq
) {
2791 if (local_softirq_pending())
2793 tx_since_softirq
= 0;
2796 prepare_to_wait(&(t
->queue
), &wait
, TASK_INTERRUPTIBLE
);
2797 schedule_timeout(HZ
/10);
2798 finish_wait(&(t
->queue
), &wait
);
2802 * Back from sleep, either due to the timeout or signal.
2803 * We check if we have any "posted" work for us.
2806 if (t
->control
& T_TERMINATE
|| signal_pending(current
))
2807 /* we received a request to terminate ourself */
2811 if(t
->control
& T_STOP
) {
2813 t
->control
&= ~(T_STOP
);
2816 if(t
->control
& T_RUN
) {
2818 t
->control
&= ~(T_RUN
);
2821 if(t
->control
& T_REMDEV
) {
2822 pktgen_rem_all_ifs(t
);
2823 t
->control
&= ~(T_REMDEV
);
2830 PG_DEBUG(printk("pktgen: %s stopping all device\n", t
->name
));
2833 PG_DEBUG(printk("pktgen: %s removing all device\n", t
->name
));
2834 pktgen_rem_all_ifs(t
);
2836 PG_DEBUG(printk("pktgen: %s removing thread.\n", t
->name
));
2837 pktgen_rem_thread(t
);
2840 static struct pktgen_dev
*pktgen_find_dev(struct pktgen_thread
*t
, const char* ifname
)
2842 struct pktgen_dev
*pkt_dev
= NULL
;
2845 for(pkt_dev
=t
->if_list
; pkt_dev
; pkt_dev
= pkt_dev
->next
) {
2846 if (strcmp(pkt_dev
->ifname
, ifname
) == 0) {
2852 PG_DEBUG(printk("pktgen: find_dev(%s) returning %p\n", ifname
,pkt_dev
));
2857 * Adds a dev at front of if_list.
2860 static int add_dev_to_thread(struct pktgen_thread
*t
, struct pktgen_dev
*pkt_dev
)
2866 if (pkt_dev
->pg_thread
) {
2867 printk("pktgen: ERROR: already assigned to a thread.\n");
2871 pkt_dev
->next
=t
->if_list
; t
->if_list
=pkt_dev
;
2872 pkt_dev
->pg_thread
= t
;
2873 pkt_dev
->running
= 0;
2880 /* Called under thread lock */
2882 static int pktgen_add_device(struct pktgen_thread
*t
, const char* ifname
)
2884 struct pktgen_dev
*pkt_dev
;
2886 /* We don't allow a device to be on several threads */
2888 if( (pkt_dev
= __pktgen_NN_threads(ifname
, FIND
)) == NULL
) {
2890 pkt_dev
= kmalloc(sizeof(struct pktgen_dev
), GFP_KERNEL
);
2894 memset(pkt_dev
, 0, sizeof(struct pktgen_dev
));
2896 pkt_dev
->flows
= vmalloc(MAX_CFLOWS
*sizeof(struct flow_state
));
2897 if (pkt_dev
->flows
== NULL
) {
2901 memset(pkt_dev
->flows
, 0, MAX_CFLOWS
*sizeof(struct flow_state
));
2903 pkt_dev
->min_pkt_size
= ETH_ZLEN
;
2904 pkt_dev
->max_pkt_size
= ETH_ZLEN
;
2905 pkt_dev
->nfrags
= 0;
2906 pkt_dev
->clone_skb
= pg_clone_skb_d
;
2907 pkt_dev
->delay_us
= pg_delay_d
/ 1000;
2908 pkt_dev
->delay_ns
= pg_delay_d
% 1000;
2909 pkt_dev
->count
= pg_count_d
;
2911 pkt_dev
->udp_src_min
= 9; /* sink port */
2912 pkt_dev
->udp_src_max
= 9;
2913 pkt_dev
->udp_dst_min
= 9;
2914 pkt_dev
->udp_dst_max
= 9;
2916 strncpy(pkt_dev
->ifname
, ifname
, 31);
2917 sprintf(pkt_dev
->fname
, "net/%s/%s", PG_PROC_DIR
, ifname
);
2919 if (! pktgen_setup_dev(pkt_dev
)) {
2920 printk("pktgen: ERROR: pktgen_setup_dev failed.\n");
2922 vfree(pkt_dev
->flows
);
2927 pkt_dev
->proc_ent
= create_proc_entry(pkt_dev
->fname
, 0600, NULL
);
2928 if (!pkt_dev
->proc_ent
) {
2929 printk("pktgen: cannot create %s procfs entry.\n", pkt_dev
->fname
);
2931 vfree(pkt_dev
->flows
);
2935 pkt_dev
->proc_ent
->read_proc
= proc_if_read
;
2936 pkt_dev
->proc_ent
->write_proc
= proc_if_write
;
2937 pkt_dev
->proc_ent
->data
= (void*)(pkt_dev
);
2938 pkt_dev
->proc_ent
->owner
= THIS_MODULE
;
2940 return add_dev_to_thread(t
, pkt_dev
);
2943 printk("pktgen: ERROR: interface already used.\n");
2948 static struct pktgen_thread
*pktgen_find_thread(const char* name
)
2950 struct pktgen_thread
*t
= NULL
;
2956 if (strcmp(t
->name
, name
) == 0)
2965 static int pktgen_create_thread(const char* name
, int cpu
)
2967 struct pktgen_thread
*t
= NULL
;
2969 if (strlen(name
) > 31) {
2970 printk("pktgen: ERROR: Thread name cannot be more than 31 characters.\n");
2974 if (pktgen_find_thread(name
)) {
2975 printk("pktgen: ERROR: thread: %s already exists\n", name
);
2979 t
= (struct pktgen_thread
*)(kmalloc(sizeof(struct pktgen_thread
), GFP_KERNEL
));
2981 printk("pktgen: ERROR: out of memory, can't create new thread.\n");
2985 memset(t
, 0, sizeof(struct pktgen_thread
));
2986 strcpy(t
->name
, name
);
2987 spin_lock_init(&t
->if_lock
);
2990 sprintf(t
->fname
, "net/%s/%s", PG_PROC_DIR
, t
->name
);
2991 t
->proc_ent
= create_proc_entry(t
->fname
, 0600, NULL
);
2993 printk("pktgen: cannot create %s procfs entry.\n", t
->fname
);
2997 t
->proc_ent
->read_proc
= proc_thread_read
;
2998 t
->proc_ent
->write_proc
= proc_thread_write
;
2999 t
->proc_ent
->data
= (void*)(t
);
3000 t
->proc_ent
->owner
= THIS_MODULE
;
3002 t
->next
= pktgen_threads
;
3005 if (kernel_thread((void *) pktgen_thread_worker
, (void *) t
,
3006 CLONE_FS
| CLONE_FILES
| CLONE_SIGHAND
) < 0)
3007 printk("pktgen: kernel_thread() failed for cpu %d\n", t
->cpu
);
3013 * Removes a device from the thread if_list.
3015 static void _rem_dev_from_if_list(struct pktgen_thread
*t
, struct pktgen_dev
*pkt_dev
)
3017 struct pktgen_dev
*i
, *prev
= NULL
;
3023 if(prev
) prev
->next
= i
->next
;
3024 else t
->if_list
= NULL
;
3032 static int pktgen_remove_device(struct pktgen_thread
*t
, struct pktgen_dev
*pkt_dev
)
3035 PG_DEBUG(printk("pktgen: remove_device pkt_dev=%p\n", pkt_dev
));
3037 if (pkt_dev
->running
) {
3038 printk("pktgen:WARNING: trying to remove a running interface, stopping it now.\n");
3039 pktgen_stop_device(pkt_dev
);
3042 /* Dis-associate from the interface */
3044 if (pkt_dev
->odev
) {
3045 dev_put(pkt_dev
->odev
);
3046 pkt_dev
->odev
= NULL
;
3049 /* And update the thread if_list */
3051 _rem_dev_from_if_list(t
, pkt_dev
);
3053 /* Clean up proc file system */
3055 if (strlen(pkt_dev
->fname
))
3056 remove_proc_entry(pkt_dev
->fname
, NULL
);
3059 vfree(pkt_dev
->flows
);
3064 static int __init
pg_init(void)
3069 module_fname
[0] = 0;
3073 sprintf(module_fname
, "net/%s/pgctrl", PG_PROC_DIR
);
3074 module_proc_ent
= create_proc_entry(module_fname
, 0600, NULL
);
3075 if (!module_proc_ent
) {
3076 printk("pktgen: ERROR: cannot create %s procfs entry.\n", module_fname
);
3080 module_proc_ent
->proc_fops
= &pktgen_fops
;
3081 module_proc_ent
->data
= NULL
;
3083 /* Register us to receive netdevice events */
3084 register_netdevice_notifier(&pktgen_notifier_block
);
3086 for (cpu
= 0; cpu
< NR_CPUS
; cpu
++) {
3089 if (!cpu_online(cpu
))
3092 sprintf(buf
, "kpktgend_%i", cpu
);
3093 pktgen_create_thread(buf
, cpu
);
3098 static void __exit
pg_cleanup(void)
3100 wait_queue_head_t queue
;
3101 init_waitqueue_head(&queue
);
3103 /* Stop all interfaces & threads */
3105 while (pktgen_threads
) {
3106 struct pktgen_thread
*t
= pktgen_threads
;
3107 pktgen_threads
->control
|= (T_TERMINATE
);
3109 wait_event_interruptible_timeout(queue
, (t
!= pktgen_threads
), HZ
);
3112 /* Un-register us from receiving netdevice events */
3113 unregister_netdevice_notifier(&pktgen_notifier_block
);
3115 /* Clean up proc file system */
3117 remove_proc_entry(module_fname
, NULL
);
3123 module_init(pg_init
);
3124 module_exit(pg_cleanup
);
3126 MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se");
3127 MODULE_DESCRIPTION("Packet Generator tool");
3128 MODULE_LICENSE("GPL");
3129 module_param(pg_count_d
, int, 0);
3130 module_param(pg_delay_d
, int, 0);
3131 module_param(pg_clone_skb_d
, int, 0);
3132 module_param(debug
, int, 0);