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 practical 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 * Randy 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/seq_file.h>
141 #include <linux/wait.h>
142 #include <net/checksum.h>
143 #include <net/ipv6.h>
144 #include <net/addrconf.h>
145 #include <asm/byteorder.h>
146 #include <linux/rcupdate.h>
147 #include <asm/bitops.h>
150 #include <asm/uaccess.h>
151 #include <asm/div64.h> /* do_div */
152 #include <asm/timex.h>
155 #define VERSION "pktgen v2.63: Packet Generator for packet performance testing.\n"
157 /* #define PG_DEBUG(a) a */
160 /* The buckets are exponential in 'width' */
161 #define LAT_BUCKETS_MAX 32
162 #define IP_NAME_SZ 32
164 /* Device flag bits */
165 #define F_IPSRC_RND (1<<0) /* IP-Src Random */
166 #define F_IPDST_RND (1<<1) /* IP-Dst Random */
167 #define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
168 #define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
169 #define F_MACSRC_RND (1<<4) /* MAC-Src Random */
170 #define F_MACDST_RND (1<<5) /* MAC-Dst Random */
171 #define F_TXSIZE_RND (1<<6) /* Transmit size is random */
172 #define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
174 /* Thread control flag bits */
175 #define T_TERMINATE (1<<0)
176 #define T_STOP (1<<1) /* Stop run */
177 #define T_RUN (1<<2) /* Start run */
178 #define T_REMDEV (1<<3) /* Remove all devs */
181 #define thread_lock() down(&pktgen_sem)
182 #define thread_unlock() up(&pktgen_sem)
184 /* If lock -- can be removed after some work */
185 #define if_lock(t) spin_lock(&(t->if_lock));
186 #define if_unlock(t) spin_unlock(&(t->if_lock));
188 /* Used to help with determining the pkts on receive */
189 #define PKTGEN_MAGIC 0xbe9be955
190 #define PG_PROC_DIR "pktgen"
191 #define PGCTRL "pgctrl"
192 static struct proc_dir_entry
*pg_proc_dir
= NULL
;
194 #define MAX_CFLOWS 65536
205 * Try to keep frequent/infrequent used vars. separated.
208 char ifname
[IFNAMSIZ
];
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 copies 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
;
334 u32 max_before_softirq
; /* We'll call do_softirq to prevent starvation. */
336 /* Field for thread to receive "posted" events terminate, stop ifs etc.*/
342 wait_queue_head_t queue
;
348 /* This code works around the fact that do_div cannot handle two 64-bit
349 numbers, and regular 64-bit division doesn't work on x86 kernels.
355 /* This was emailed to LMKL by: Chris Caputo <ccaputo@alt.net>
356 * Function copied/adapted/optimized from:
358 * nemesis.sourceforge.net/browse/lib/static/intmath/ix86/intmath.c.html
360 * Copyright 1994, University of Cambridge Computer Laboratory
361 * All Rights Reserved.
364 static inline s64
divremdi3(s64 x
, s64 y
, int type
)
366 u64 a
= (x
< 0) ? -x
: x
;
367 u64 b
= (y
< 0) ? -y
: y
;
387 if (PG_DIV
== type
) {
388 return (((x
^ y
) & (1ll<<63)) == 0) ? res
: -(s64
)res
;
391 return ((x
& (1ll<<63)) == 0) ? a
: -(s64
)a
;
395 /* End of hacks to deal with 64-bit math on x86 */
397 /** Convert to milliseconds */
398 static inline __u64
tv_to_ms(const struct timeval
* tv
)
400 __u64 ms
= tv
->tv_usec
/ 1000;
401 ms
+= (__u64
)tv
->tv_sec
* (__u64
)1000;
406 /** Convert to micro-seconds */
407 static inline __u64
tv_to_us(const struct timeval
* tv
)
409 __u64 us
= tv
->tv_usec
;
410 us
+= (__u64
)tv
->tv_sec
* (__u64
)1000000;
414 static inline __u64
pg_div(__u64 n
, __u32 base
) {
417 /* printk("pktgen: pg_div, n: %llu base: %d rv: %llu\n",
422 static inline __u64
pg_div64(__u64 n
, __u64 base
)
426 * How do we know if the architecture we are running on
427 * supports division with 64 bit base?
430 #if defined(__sparc_v9__) || defined(__powerpc64__) || defined(__alpha__) || defined(__x86_64__) || defined(__ia64__)
434 tmp
= divremdi3(n
, base
, PG_DIV
);
439 static inline u32
pktgen_random(void)
443 get_random_bytes(&n
, 4);
450 static inline __u64
getCurMs(void)
453 do_gettimeofday(&tv
);
454 return tv_to_ms(&tv
);
457 static inline __u64
getCurUs(void)
460 do_gettimeofday(&tv
);
461 return tv_to_us(&tv
);
464 static inline __u64
tv_diff(const struct timeval
* a
, const struct timeval
* b
)
466 return tv_to_us(a
) - tv_to_us(b
);
470 /* old include end */
472 static char version
[] __initdata
= VERSION
;
474 static int pktgen_remove_device(struct pktgen_thread
* t
, struct pktgen_dev
*i
);
475 static int pktgen_add_device(struct pktgen_thread
* t
, const char* ifname
);
476 static struct pktgen_dev
*pktgen_find_dev(struct pktgen_thread
* t
, const char* ifname
);
477 static int pktgen_device_event(struct notifier_block
*, unsigned long, void *);
478 static void pktgen_run_all_threads(void);
479 static void pktgen_stop_all_threads_ifs(void);
480 static int pktgen_stop_device(struct pktgen_dev
*pkt_dev
);
481 static void pktgen_stop(struct pktgen_thread
* t
);
482 static void pktgen_clear_counters(struct pktgen_dev
*pkt_dev
);
483 static struct pktgen_dev
*pktgen_NN_threads(const char* dev_name
, int remove
);
484 static unsigned int scan_ip6(const char *s
,char ip
[16]);
485 static unsigned int fmt_ip6(char *s
,const char ip
[16]);
487 /* Module parameters, defaults. */
488 static int pg_count_d
= 1000; /* 1000 pkts by default */
489 static int pg_delay_d
;
490 static int pg_clone_skb_d
;
493 static DECLARE_MUTEX(pktgen_sem
);
494 static struct pktgen_thread
*pktgen_threads
= NULL
;
496 static struct notifier_block pktgen_notifier_block
= {
497 .notifier_call
= pktgen_device_event
,
501 * /proc handling functions
505 static int pgctrl_show(struct seq_file
*seq
, void *v
)
507 seq_puts(seq
, VERSION
);
511 static ssize_t
pgctrl_write(struct file
* file
,const char __user
* buf
,
512 size_t count
, loff_t
*ppos
)
517 if (!capable(CAP_NET_ADMIN
)){
522 if (count
> sizeof(data
))
523 count
= sizeof(data
);
525 if (copy_from_user(data
, buf
, count
)) {
529 data
[count
-1] = 0; /* Make string */
531 if (!strcmp(data
, "stop"))
532 pktgen_stop_all_threads_ifs();
534 else if (!strcmp(data
, "start"))
535 pktgen_run_all_threads();
538 printk("pktgen: Unknown command: %s\n", data
);
546 static int pgctrl_open(struct inode
*inode
, struct file
*file
)
548 return single_open(file
, pgctrl_show
, PDE(inode
)->data
);
551 static struct file_operations pktgen_fops
= {
552 .owner
= THIS_MODULE
,
556 .write
= pgctrl_write
,
557 .release
= single_release
,
560 static int pktgen_if_show(struct seq_file
*seq
, void *v
)
563 struct pktgen_dev
*pkt_dev
= seq
->private;
566 __u64 now
= getCurUs();
568 seq_printf(seq
, "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
569 (unsigned long long) pkt_dev
->count
,
570 pkt_dev
->min_pkt_size
, pkt_dev
->max_pkt_size
);
572 seq_printf(seq
, " frags: %d delay: %u clone_skb: %d ifname: %s\n",
573 pkt_dev
->nfrags
, 1000*pkt_dev
->delay_us
+pkt_dev
->delay_ns
, pkt_dev
->clone_skb
, pkt_dev
->ifname
);
575 seq_printf(seq
, " flows: %u flowlen: %u\n", pkt_dev
->cflows
, pkt_dev
->lflow
);
578 if(pkt_dev
->flags
& F_IPV6
) {
579 char b1
[128], b2
[128], b3
[128];
580 fmt_ip6(b1
, pkt_dev
->in6_saddr
.s6_addr
);
581 fmt_ip6(b2
, pkt_dev
->min_in6_saddr
.s6_addr
);
582 fmt_ip6(b3
, pkt_dev
->max_in6_saddr
.s6_addr
);
583 seq_printf(seq
, " saddr: %s min_saddr: %s max_saddr: %s\n", b1
, b2
, b3
);
585 fmt_ip6(b1
, pkt_dev
->in6_daddr
.s6_addr
);
586 fmt_ip6(b2
, pkt_dev
->min_in6_daddr
.s6_addr
);
587 fmt_ip6(b3
, pkt_dev
->max_in6_daddr
.s6_addr
);
588 seq_printf(seq
, " daddr: %s min_daddr: %s max_daddr: %s\n", b1
, b2
, b3
);
592 seq_printf(seq
," dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n",
593 pkt_dev
->dst_min
, pkt_dev
->dst_max
, pkt_dev
->src_min
, pkt_dev
->src_max
);
595 seq_puts(seq
, " src_mac: ");
597 if ((pkt_dev
->src_mac
[0] == 0) &&
598 (pkt_dev
->src_mac
[1] == 0) &&
599 (pkt_dev
->src_mac
[2] == 0) &&
600 (pkt_dev
->src_mac
[3] == 0) &&
601 (pkt_dev
->src_mac
[4] == 0) &&
602 (pkt_dev
->src_mac
[5] == 0))
604 for (i
= 0; i
< 6; i
++)
605 seq_printf(seq
, "%02X%s", pkt_dev
->odev
->dev_addr
[i
], i
== 5 ? " " : ":");
608 for (i
= 0; i
< 6; i
++)
609 seq_printf(seq
, "%02X%s", pkt_dev
->src_mac
[i
], i
== 5 ? " " : ":");
611 seq_printf(seq
, "dst_mac: ");
612 for (i
= 0; i
< 6; i
++)
613 seq_printf(seq
, "%02X%s", pkt_dev
->dst_mac
[i
], i
== 5 ? "\n" : ":");
615 seq_printf(seq
, " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n",
616 pkt_dev
->udp_src_min
, pkt_dev
->udp_src_max
, pkt_dev
->udp_dst_min
,
617 pkt_dev
->udp_dst_max
);
619 seq_printf(seq
, " src_mac_count: %d dst_mac_count: %d \n Flags: ",
620 pkt_dev
->src_mac_count
, pkt_dev
->dst_mac_count
);
623 if (pkt_dev
->flags
& F_IPV6
)
624 seq_printf(seq
, "IPV6 ");
626 if (pkt_dev
->flags
& F_IPSRC_RND
)
627 seq_printf(seq
, "IPSRC_RND ");
629 if (pkt_dev
->flags
& F_IPDST_RND
)
630 seq_printf(seq
, "IPDST_RND ");
632 if (pkt_dev
->flags
& F_TXSIZE_RND
)
633 seq_printf(seq
, "TXSIZE_RND ");
635 if (pkt_dev
->flags
& F_UDPSRC_RND
)
636 seq_printf(seq
, "UDPSRC_RND ");
638 if (pkt_dev
->flags
& F_UDPDST_RND
)
639 seq_printf(seq
, "UDPDST_RND ");
641 if (pkt_dev
->flags
& F_MACSRC_RND
)
642 seq_printf(seq
, "MACSRC_RND ");
644 if (pkt_dev
->flags
& F_MACDST_RND
)
645 seq_printf(seq
, "MACDST_RND ");
650 sa
= pkt_dev
->started_at
;
651 stopped
= pkt_dev
->stopped_at
;
652 if (pkt_dev
->running
)
653 stopped
= now
; /* not really stopped, more like last-running-at */
655 seq_printf(seq
, "Current:\n pkts-sofar: %llu errors: %llu\n started: %lluus stopped: %lluus idle: %lluus\n",
656 (unsigned long long) pkt_dev
->sofar
,
657 (unsigned long long) pkt_dev
->errors
,
658 (unsigned long long) sa
,
659 (unsigned long long) stopped
,
660 (unsigned long long) pkt_dev
->idle_acc
);
662 seq_printf(seq
, " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
663 pkt_dev
->seq_num
, pkt_dev
->cur_dst_mac_offset
,
664 pkt_dev
->cur_src_mac_offset
);
666 if(pkt_dev
->flags
& F_IPV6
) {
667 char b1
[128], b2
[128];
668 fmt_ip6(b1
, pkt_dev
->cur_in6_daddr
.s6_addr
);
669 fmt_ip6(b2
, pkt_dev
->cur_in6_saddr
.s6_addr
);
670 seq_printf(seq
, " cur_saddr: %s cur_daddr: %s\n", b2
, b1
);
673 seq_printf(seq
, " cur_saddr: 0x%x cur_daddr: 0x%x\n",
674 pkt_dev
->cur_saddr
, pkt_dev
->cur_daddr
);
677 seq_printf(seq
, " cur_udp_dst: %d cur_udp_src: %d\n",
678 pkt_dev
->cur_udp_dst
, pkt_dev
->cur_udp_src
);
680 seq_printf(seq
, " flows: %u\n", pkt_dev
->nflows
);
682 if (pkt_dev
->result
[0])
683 seq_printf(seq
, "Result: %s\n", pkt_dev
->result
);
685 seq_printf(seq
, "Result: Idle\n");
691 static int count_trail_chars(const char __user
*user_buffer
, unsigned int maxlen
)
695 for (i
= 0; i
< maxlen
; i
++) {
697 if (get_user(c
, &user_buffer
[i
]))
715 static unsigned long num_arg(const char __user
*user_buffer
, unsigned long maxlen
,
721 for(; i
< maxlen
; i
++) {
723 if (get_user(c
, &user_buffer
[i
]))
725 if ((c
>= '0') && (c
<= '9')) {
734 static int strn_len(const char __user
*user_buffer
, unsigned int maxlen
)
738 for(; i
< maxlen
; i
++) {
740 if (get_user(c
, &user_buffer
[i
]))
759 static ssize_t
pktgen_if_write(struct file
*file
, const char __user
*user_buffer
,
760 size_t count
, loff_t
*offset
)
762 struct seq_file
*seq
= (struct seq_file
*) file
->private_data
;
763 struct pktgen_dev
*pkt_dev
= seq
->private;
765 char name
[16], valstr
[32];
766 unsigned long value
= 0;
767 char* pg_result
= NULL
;
771 pg_result
= &(pkt_dev
->result
[0]);
774 printk("pktgen: wrong command format\n");
779 tmp
= count_trail_chars(&user_buffer
[i
], max
);
781 printk("pktgen: illegal format\n");
786 /* Read variable name */
788 len
= strn_len(&user_buffer
[i
], sizeof(name
) - 1);
789 if (len
< 0) { return len
; }
790 memset(name
, 0, sizeof(name
));
791 if (copy_from_user(name
, &user_buffer
[i
], len
) )
796 len
= count_trail_chars(&user_buffer
[i
], max
);
804 if (copy_from_user(tb
, user_buffer
, count
))
807 printk("pktgen: %s,%lu buffer -:%s:-\n", name
,
808 (unsigned long) count
, tb
);
811 if (!strcmp(name
, "min_pkt_size")) {
812 len
= num_arg(&user_buffer
[i
], 10, &value
);
813 if (len
< 0) { return len
; }
817 if (value
!= pkt_dev
->min_pkt_size
) {
818 pkt_dev
->min_pkt_size
= value
;
819 pkt_dev
->cur_pkt_size
= value
;
821 sprintf(pg_result
, "OK: min_pkt_size=%u", pkt_dev
->min_pkt_size
);
825 if (!strcmp(name
, "max_pkt_size")) {
826 len
= num_arg(&user_buffer
[i
], 10, &value
);
827 if (len
< 0) { return len
; }
831 if (value
!= pkt_dev
->max_pkt_size
) {
832 pkt_dev
->max_pkt_size
= value
;
833 pkt_dev
->cur_pkt_size
= value
;
835 sprintf(pg_result
, "OK: max_pkt_size=%u", pkt_dev
->max_pkt_size
);
839 /* Shortcut for min = max */
841 if (!strcmp(name
, "pkt_size")) {
842 len
= num_arg(&user_buffer
[i
], 10, &value
);
843 if (len
< 0) { return len
; }
847 if (value
!= pkt_dev
->min_pkt_size
) {
848 pkt_dev
->min_pkt_size
= value
;
849 pkt_dev
->max_pkt_size
= value
;
850 pkt_dev
->cur_pkt_size
= value
;
852 sprintf(pg_result
, "OK: pkt_size=%u", pkt_dev
->min_pkt_size
);
856 if (!strcmp(name
, "debug")) {
857 len
= num_arg(&user_buffer
[i
], 10, &value
);
858 if (len
< 0) { return len
; }
861 sprintf(pg_result
, "OK: debug=%u", debug
);
865 if (!strcmp(name
, "frags")) {
866 len
= num_arg(&user_buffer
[i
], 10, &value
);
867 if (len
< 0) { return len
; }
869 pkt_dev
->nfrags
= value
;
870 sprintf(pg_result
, "OK: frags=%u", pkt_dev
->nfrags
);
873 if (!strcmp(name
, "delay")) {
874 len
= num_arg(&user_buffer
[i
], 10, &value
);
875 if (len
< 0) { return len
; }
877 if (value
== 0x7FFFFFFF) {
878 pkt_dev
->delay_us
= 0x7FFFFFFF;
879 pkt_dev
->delay_ns
= 0;
881 pkt_dev
->delay_us
= value
/ 1000;
882 pkt_dev
->delay_ns
= value
% 1000;
884 sprintf(pg_result
, "OK: delay=%u", 1000*pkt_dev
->delay_us
+pkt_dev
->delay_ns
);
887 if (!strcmp(name
, "udp_src_min")) {
888 len
= num_arg(&user_buffer
[i
], 10, &value
);
889 if (len
< 0) { return len
; }
891 if (value
!= pkt_dev
->udp_src_min
) {
892 pkt_dev
->udp_src_min
= value
;
893 pkt_dev
->cur_udp_src
= value
;
895 sprintf(pg_result
, "OK: udp_src_min=%u", pkt_dev
->udp_src_min
);
898 if (!strcmp(name
, "udp_dst_min")) {
899 len
= num_arg(&user_buffer
[i
], 10, &value
);
900 if (len
< 0) { return len
; }
902 if (value
!= pkt_dev
->udp_dst_min
) {
903 pkt_dev
->udp_dst_min
= value
;
904 pkt_dev
->cur_udp_dst
= value
;
906 sprintf(pg_result
, "OK: udp_dst_min=%u", pkt_dev
->udp_dst_min
);
909 if (!strcmp(name
, "udp_src_max")) {
910 len
= num_arg(&user_buffer
[i
], 10, &value
);
911 if (len
< 0) { return len
; }
913 if (value
!= pkt_dev
->udp_src_max
) {
914 pkt_dev
->udp_src_max
= value
;
915 pkt_dev
->cur_udp_src
= value
;
917 sprintf(pg_result
, "OK: udp_src_max=%u", pkt_dev
->udp_src_max
);
920 if (!strcmp(name
, "udp_dst_max")) {
921 len
= num_arg(&user_buffer
[i
], 10, &value
);
922 if (len
< 0) { return len
; }
924 if (value
!= pkt_dev
->udp_dst_max
) {
925 pkt_dev
->udp_dst_max
= value
;
926 pkt_dev
->cur_udp_dst
= value
;
928 sprintf(pg_result
, "OK: udp_dst_max=%u", pkt_dev
->udp_dst_max
);
931 if (!strcmp(name
, "clone_skb")) {
932 len
= num_arg(&user_buffer
[i
], 10, &value
);
933 if (len
< 0) { return len
; }
935 pkt_dev
->clone_skb
= value
;
937 sprintf(pg_result
, "OK: clone_skb=%d", pkt_dev
->clone_skb
);
940 if (!strcmp(name
, "count")) {
941 len
= num_arg(&user_buffer
[i
], 10, &value
);
942 if (len
< 0) { return len
; }
944 pkt_dev
->count
= value
;
945 sprintf(pg_result
, "OK: count=%llu",
946 (unsigned long long) pkt_dev
->count
);
949 if (!strcmp(name
, "src_mac_count")) {
950 len
= num_arg(&user_buffer
[i
], 10, &value
);
951 if (len
< 0) { return len
; }
953 if (pkt_dev
->src_mac_count
!= value
) {
954 pkt_dev
->src_mac_count
= value
;
955 pkt_dev
->cur_src_mac_offset
= 0;
957 sprintf(pg_result
, "OK: src_mac_count=%d", pkt_dev
->src_mac_count
);
960 if (!strcmp(name
, "dst_mac_count")) {
961 len
= num_arg(&user_buffer
[i
], 10, &value
);
962 if (len
< 0) { return len
; }
964 if (pkt_dev
->dst_mac_count
!= value
) {
965 pkt_dev
->dst_mac_count
= value
;
966 pkt_dev
->cur_dst_mac_offset
= 0;
968 sprintf(pg_result
, "OK: dst_mac_count=%d", pkt_dev
->dst_mac_count
);
971 if (!strcmp(name
, "flag")) {
974 len
= strn_len(&user_buffer
[i
], sizeof(f
) - 1);
975 if (len
< 0) { return len
; }
976 if (copy_from_user(f
, &user_buffer
[i
], len
))
979 if (strcmp(f
, "IPSRC_RND") == 0)
980 pkt_dev
->flags
|= F_IPSRC_RND
;
982 else if (strcmp(f
, "!IPSRC_RND") == 0)
983 pkt_dev
->flags
&= ~F_IPSRC_RND
;
985 else if (strcmp(f
, "TXSIZE_RND") == 0)
986 pkt_dev
->flags
|= F_TXSIZE_RND
;
988 else if (strcmp(f
, "!TXSIZE_RND") == 0)
989 pkt_dev
->flags
&= ~F_TXSIZE_RND
;
991 else if (strcmp(f
, "IPDST_RND") == 0)
992 pkt_dev
->flags
|= F_IPDST_RND
;
994 else if (strcmp(f
, "!IPDST_RND") == 0)
995 pkt_dev
->flags
&= ~F_IPDST_RND
;
997 else if (strcmp(f
, "UDPSRC_RND") == 0)
998 pkt_dev
->flags
|= F_UDPSRC_RND
;
1000 else if (strcmp(f
, "!UDPSRC_RND") == 0)
1001 pkt_dev
->flags
&= ~F_UDPSRC_RND
;
1003 else if (strcmp(f
, "UDPDST_RND") == 0)
1004 pkt_dev
->flags
|= F_UDPDST_RND
;
1006 else if (strcmp(f
, "!UDPDST_RND") == 0)
1007 pkt_dev
->flags
&= ~F_UDPDST_RND
;
1009 else if (strcmp(f
, "MACSRC_RND") == 0)
1010 pkt_dev
->flags
|= F_MACSRC_RND
;
1012 else if (strcmp(f
, "!MACSRC_RND") == 0)
1013 pkt_dev
->flags
&= ~F_MACSRC_RND
;
1015 else if (strcmp(f
, "MACDST_RND") == 0)
1016 pkt_dev
->flags
|= F_MACDST_RND
;
1018 else if (strcmp(f
, "!MACDST_RND") == 0)
1019 pkt_dev
->flags
&= ~F_MACDST_RND
;
1022 sprintf(pg_result
, "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1024 "IPSRC_RND, IPDST_RND, TXSIZE_RND, UDPSRC_RND, UDPDST_RND, MACSRC_RND, MACDST_RND\n");
1027 sprintf(pg_result
, "OK: flags=0x%x", pkt_dev
->flags
);
1030 if (!strcmp(name
, "dst_min") || !strcmp(name
, "dst")) {
1031 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->dst_min
) - 1);
1032 if (len
< 0) { return len
; }
1034 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1037 if (strcmp(buf
, pkt_dev
->dst_min
) != 0) {
1038 memset(pkt_dev
->dst_min
, 0, sizeof(pkt_dev
->dst_min
));
1039 strncpy(pkt_dev
->dst_min
, buf
, len
);
1040 pkt_dev
->daddr_min
= in_aton(pkt_dev
->dst_min
);
1041 pkt_dev
->cur_daddr
= pkt_dev
->daddr_min
;
1044 printk("pktgen: dst_min set to: %s\n", pkt_dev
->dst_min
);
1046 sprintf(pg_result
, "OK: dst_min=%s", pkt_dev
->dst_min
);
1049 if (!strcmp(name
, "dst_max")) {
1050 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->dst_max
) - 1);
1051 if (len
< 0) { return len
; }
1053 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1057 if (strcmp(buf
, pkt_dev
->dst_max
) != 0) {
1058 memset(pkt_dev
->dst_max
, 0, sizeof(pkt_dev
->dst_max
));
1059 strncpy(pkt_dev
->dst_max
, buf
, len
);
1060 pkt_dev
->daddr_max
= in_aton(pkt_dev
->dst_max
);
1061 pkt_dev
->cur_daddr
= pkt_dev
->daddr_max
;
1064 printk("pktgen: dst_max set to: %s\n", pkt_dev
->dst_max
);
1066 sprintf(pg_result
, "OK: dst_max=%s", pkt_dev
->dst_max
);
1069 if (!strcmp(name
, "dst6")) {
1070 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1071 if (len
< 0) return len
;
1073 pkt_dev
->flags
|= F_IPV6
;
1075 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1079 scan_ip6(buf
, pkt_dev
->in6_daddr
.s6_addr
);
1080 fmt_ip6(buf
, pkt_dev
->in6_daddr
.s6_addr
);
1082 ipv6_addr_copy(&pkt_dev
->cur_in6_daddr
, &pkt_dev
->in6_daddr
);
1085 printk("pktgen: dst6 set to: %s\n", buf
);
1088 sprintf(pg_result
, "OK: dst6=%s", buf
);
1091 if (!strcmp(name
, "dst6_min")) {
1092 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1093 if (len
< 0) return len
;
1095 pkt_dev
->flags
|= F_IPV6
;
1097 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1101 scan_ip6(buf
, pkt_dev
->min_in6_daddr
.s6_addr
);
1102 fmt_ip6(buf
, pkt_dev
->min_in6_daddr
.s6_addr
);
1104 ipv6_addr_copy(&pkt_dev
->cur_in6_daddr
, &pkt_dev
->min_in6_daddr
);
1106 printk("pktgen: dst6_min set to: %s\n", buf
);
1109 sprintf(pg_result
, "OK: dst6_min=%s", buf
);
1112 if (!strcmp(name
, "dst6_max")) {
1113 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1114 if (len
< 0) return len
;
1116 pkt_dev
->flags
|= F_IPV6
;
1118 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1122 scan_ip6(buf
, pkt_dev
->max_in6_daddr
.s6_addr
);
1123 fmt_ip6(buf
, pkt_dev
->max_in6_daddr
.s6_addr
);
1126 printk("pktgen: dst6_max set to: %s\n", buf
);
1129 sprintf(pg_result
, "OK: dst6_max=%s", buf
);
1132 if (!strcmp(name
, "src6")) {
1133 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1134 if (len
< 0) return len
;
1136 pkt_dev
->flags
|= F_IPV6
;
1138 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1142 scan_ip6(buf
, pkt_dev
->in6_saddr
.s6_addr
);
1143 fmt_ip6(buf
, pkt_dev
->in6_saddr
.s6_addr
);
1145 ipv6_addr_copy(&pkt_dev
->cur_in6_saddr
, &pkt_dev
->in6_saddr
);
1148 printk("pktgen: src6 set to: %s\n", buf
);
1151 sprintf(pg_result
, "OK: src6=%s", buf
);
1154 if (!strcmp(name
, "src_min")) {
1155 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->src_min
) - 1);
1156 if (len
< 0) { return len
; }
1157 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1160 if (strcmp(buf
, pkt_dev
->src_min
) != 0) {
1161 memset(pkt_dev
->src_min
, 0, sizeof(pkt_dev
->src_min
));
1162 strncpy(pkt_dev
->src_min
, buf
, len
);
1163 pkt_dev
->saddr_min
= in_aton(pkt_dev
->src_min
);
1164 pkt_dev
->cur_saddr
= pkt_dev
->saddr_min
;
1167 printk("pktgen: src_min set to: %s\n", pkt_dev
->src_min
);
1169 sprintf(pg_result
, "OK: src_min=%s", pkt_dev
->src_min
);
1172 if (!strcmp(name
, "src_max")) {
1173 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->src_max
) - 1);
1174 if (len
< 0) { return len
; }
1175 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1178 if (strcmp(buf
, pkt_dev
->src_max
) != 0) {
1179 memset(pkt_dev
->src_max
, 0, sizeof(pkt_dev
->src_max
));
1180 strncpy(pkt_dev
->src_max
, buf
, len
);
1181 pkt_dev
->saddr_max
= in_aton(pkt_dev
->src_max
);
1182 pkt_dev
->cur_saddr
= pkt_dev
->saddr_max
;
1185 printk("pktgen: src_max set to: %s\n", pkt_dev
->src_max
);
1187 sprintf(pg_result
, "OK: src_max=%s", pkt_dev
->src_max
);
1190 if (!strcmp(name
, "dst_mac")) {
1192 unsigned char old_dmac
[6];
1193 unsigned char *m
= pkt_dev
->dst_mac
;
1194 memcpy(old_dmac
, pkt_dev
->dst_mac
, 6);
1196 len
= strn_len(&user_buffer
[i
], sizeof(valstr
) - 1);
1197 if (len
< 0) { return len
; }
1198 memset(valstr
, 0, sizeof(valstr
));
1199 if( copy_from_user(valstr
, &user_buffer
[i
], len
))
1203 for(*m
= 0;*v
&& m
< pkt_dev
->dst_mac
+ 6; v
++) {
1204 if (*v
>= '0' && *v
<= '9') {
1208 if (*v
>= 'A' && *v
<= 'F') {
1210 *m
+= *v
- 'A' + 10;
1212 if (*v
>= 'a' && *v
<= 'f') {
1214 *m
+= *v
- 'a' + 10;
1222 /* Set up Dest MAC */
1223 if (memcmp(old_dmac
, pkt_dev
->dst_mac
, 6) != 0)
1224 memcpy(&(pkt_dev
->hh
[0]), pkt_dev
->dst_mac
, 6);
1226 sprintf(pg_result
, "OK: dstmac");
1229 if (!strcmp(name
, "src_mac")) {
1231 unsigned char *m
= pkt_dev
->src_mac
;
1233 len
= strn_len(&user_buffer
[i
], sizeof(valstr
) - 1);
1234 if (len
< 0) { return len
; }
1235 memset(valstr
, 0, sizeof(valstr
));
1236 if( copy_from_user(valstr
, &user_buffer
[i
], len
))
1240 for(*m
= 0;*v
&& m
< pkt_dev
->src_mac
+ 6; v
++) {
1241 if (*v
>= '0' && *v
<= '9') {
1245 if (*v
>= 'A' && *v
<= 'F') {
1247 *m
+= *v
- 'A' + 10;
1249 if (*v
>= 'a' && *v
<= 'f') {
1251 *m
+= *v
- 'a' + 10;
1259 sprintf(pg_result
, "OK: srcmac");
1263 if (!strcmp(name
, "clear_counters")) {
1264 pktgen_clear_counters(pkt_dev
);
1265 sprintf(pg_result
, "OK: Clearing counters.\n");
1269 if (!strcmp(name
, "flows")) {
1270 len
= num_arg(&user_buffer
[i
], 10, &value
);
1271 if (len
< 0) { return len
; }
1273 if (value
> MAX_CFLOWS
)
1276 pkt_dev
->cflows
= value
;
1277 sprintf(pg_result
, "OK: flows=%u", pkt_dev
->cflows
);
1281 if (!strcmp(name
, "flowlen")) {
1282 len
= num_arg(&user_buffer
[i
], 10, &value
);
1283 if (len
< 0) { return len
; }
1285 pkt_dev
->lflow
= value
;
1286 sprintf(pg_result
, "OK: flowlen=%u", pkt_dev
->lflow
);
1290 sprintf(pkt_dev
->result
, "No such parameter \"%s\"", name
);
1294 static int pktgen_if_open(struct inode
*inode
, struct file
*file
)
1296 return single_open(file
, pktgen_if_show
, PDE(inode
)->data
);
1299 static struct file_operations pktgen_if_fops
= {
1300 .owner
= THIS_MODULE
,
1301 .open
= pktgen_if_open
,
1303 .llseek
= seq_lseek
,
1304 .write
= pktgen_if_write
,
1305 .release
= single_release
,
1308 static int pktgen_thread_show(struct seq_file
*seq
, void *v
)
1310 struct pktgen_thread
*t
= seq
->private;
1311 struct pktgen_dev
*pkt_dev
= NULL
;
1315 seq_printf(seq
, "Name: %s max_before_softirq: %d\n",
1316 t
->name
, t
->max_before_softirq
);
1318 seq_printf(seq
, "Running: ");
1321 for(pkt_dev
= t
->if_list
;pkt_dev
; pkt_dev
= pkt_dev
->next
)
1322 if(pkt_dev
->running
)
1323 seq_printf(seq
, "%s ", pkt_dev
->ifname
);
1325 seq_printf(seq
, "\nStopped: ");
1327 for(pkt_dev
= t
->if_list
;pkt_dev
; pkt_dev
= pkt_dev
->next
)
1328 if(!pkt_dev
->running
)
1329 seq_printf(seq
, "%s ", pkt_dev
->ifname
);
1332 seq_printf(seq
, "\nResult: %s\n", t
->result
);
1334 seq_printf(seq
, "\nResult: NA\n");
1341 static ssize_t
pktgen_thread_write(struct file
*file
,
1342 const char __user
*user_buffer
,
1343 size_t count
, loff_t
*offset
)
1345 struct seq_file
*seq
= (struct seq_file
*) file
->private_data
;
1346 struct pktgen_thread
*t
= seq
->private;
1347 int i
= 0, max
, len
, ret
;
1350 unsigned long value
= 0;
1353 // sprintf(pg_result, "Wrong command format");
1358 len
= count_trail_chars(&user_buffer
[i
], max
);
1364 /* Read variable name */
1366 len
= strn_len(&user_buffer
[i
], sizeof(name
) - 1);
1370 memset(name
, 0, sizeof(name
));
1371 if (copy_from_user(name
, &user_buffer
[i
], len
))
1376 len
= count_trail_chars(&user_buffer
[i
], max
);
1383 printk("pktgen: t=%s, count=%lu\n", name
,
1384 (unsigned long) count
);
1387 printk("pktgen: ERROR: No thread\n");
1392 pg_result
= &(t
->result
[0]);
1394 if (!strcmp(name
, "add_device")) {
1397 len
= strn_len(&user_buffer
[i
], sizeof(f
) - 1);
1402 if( copy_from_user(f
, &user_buffer
[i
], len
) )
1406 pktgen_add_device(t
, f
);
1409 sprintf(pg_result
, "OK: add_device=%s", f
);
1413 if (!strcmp(name
, "rem_device_all")) {
1415 t
->control
|= T_REMDEV
;
1417 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
1419 sprintf(pg_result
, "OK: rem_device_all");
1423 if (!strcmp(name
, "max_before_softirq")) {
1424 len
= num_arg(&user_buffer
[i
], 10, &value
);
1426 t
->max_before_softirq
= value
;
1429 sprintf(pg_result
, "OK: max_before_softirq=%lu", value
);
1439 static int pktgen_thread_open(struct inode
*inode
, struct file
*file
)
1441 return single_open(file
, pktgen_thread_show
, PDE(inode
)->data
);
1444 static struct file_operations pktgen_thread_fops
= {
1445 .owner
= THIS_MODULE
,
1446 .open
= pktgen_thread_open
,
1448 .llseek
= seq_lseek
,
1449 .write
= pktgen_thread_write
,
1450 .release
= single_release
,
1453 /* Think find or remove for NN */
1454 static struct pktgen_dev
*__pktgen_NN_threads(const char* ifname
, int remove
)
1456 struct pktgen_thread
*t
;
1457 struct pktgen_dev
*pkt_dev
= NULL
;
1462 pkt_dev
= pktgen_find_dev(t
, ifname
);
1466 pktgen_remove_device(t
, pkt_dev
);
1476 static struct pktgen_dev
*pktgen_NN_threads(const char* ifname
, int remove
)
1478 struct pktgen_dev
*pkt_dev
= NULL
;
1480 pkt_dev
= __pktgen_NN_threads(ifname
, remove
);
1485 static int pktgen_device_event(struct notifier_block
*unused
, unsigned long event
, void *ptr
)
1487 struct net_device
*dev
= (struct net_device
*)(ptr
);
1489 /* It is OK that we do not hold the group lock right now,
1490 * as we run under the RTNL lock.
1494 case NETDEV_CHANGEADDR
:
1495 case NETDEV_GOING_DOWN
:
1498 /* Ignore for now */
1501 case NETDEV_UNREGISTER
:
1502 pktgen_NN_threads(dev
->name
, REMOVE
);
1509 /* Associate pktgen_dev with a device. */
1511 static struct net_device
* pktgen_setup_dev(struct pktgen_dev
*pkt_dev
) {
1512 struct net_device
*odev
;
1514 /* Clean old setups */
1516 if (pkt_dev
->odev
) {
1517 dev_put(pkt_dev
->odev
);
1518 pkt_dev
->odev
= NULL
;
1521 odev
= dev_get_by_name(pkt_dev
->ifname
);
1524 printk("pktgen: no such netdevice: \"%s\"\n", pkt_dev
->ifname
);
1527 if (odev
->type
!= ARPHRD_ETHER
) {
1528 printk("pktgen: not an ethernet device: \"%s\"\n", pkt_dev
->ifname
);
1531 if (!netif_running(odev
)) {
1532 printk("pktgen: device is down: \"%s\"\n", pkt_dev
->ifname
);
1535 pkt_dev
->odev
= odev
;
1537 return pkt_dev
->odev
;
1546 /* Read pkt_dev from the interface and set up internal pktgen_dev
1547 * structure to have the right information to create/send packets
1549 static void pktgen_setup_inject(struct pktgen_dev
*pkt_dev
)
1551 /* Try once more, just in case it works now. */
1553 pktgen_setup_dev(pkt_dev
);
1555 if (!pkt_dev
->odev
) {
1556 printk("pktgen: ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1557 sprintf(pkt_dev
->result
, "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
1561 /* Default to the interface's mac if not explicitly set. */
1563 if ((pkt_dev
->src_mac
[0] == 0) &&
1564 (pkt_dev
->src_mac
[1] == 0) &&
1565 (pkt_dev
->src_mac
[2] == 0) &&
1566 (pkt_dev
->src_mac
[3] == 0) &&
1567 (pkt_dev
->src_mac
[4] == 0) &&
1568 (pkt_dev
->src_mac
[5] == 0)) {
1570 memcpy(&(pkt_dev
->hh
[6]), pkt_dev
->odev
->dev_addr
, 6);
1572 /* Set up Dest MAC */
1573 memcpy(&(pkt_dev
->hh
[0]), pkt_dev
->dst_mac
, 6);
1575 /* Set up pkt size */
1576 pkt_dev
->cur_pkt_size
= pkt_dev
->min_pkt_size
;
1578 if(pkt_dev
->flags
& F_IPV6
) {
1580 * Skip this automatic address setting until locks or functions
1585 int i
, set
= 0, err
=1;
1586 struct inet6_dev
*idev
;
1588 for(i
=0; i
< IN6_ADDR_HSIZE
; i
++)
1589 if(pkt_dev
->cur_in6_saddr
.s6_addr
[i
]) {
1597 * Use linklevel address if unconfigured.
1599 * use ipv6_get_lladdr if/when it's get exported
1603 read_lock(&addrconf_lock
);
1604 if ((idev
= __in6_dev_get(pkt_dev
->odev
)) != NULL
) {
1605 struct inet6_ifaddr
*ifp
;
1607 read_lock_bh(&idev
->lock
);
1608 for (ifp
=idev
->addr_list
; ifp
; ifp
=ifp
->if_next
) {
1609 if (ifp
->scope
== IFA_LINK
&& !(ifp
->flags
&IFA_F_TENTATIVE
)) {
1610 ipv6_addr_copy(&pkt_dev
->cur_in6_saddr
, &ifp
->addr
);
1615 read_unlock_bh(&idev
->lock
);
1617 read_unlock(&addrconf_lock
);
1618 if(err
) printk("pktgen: ERROR: IPv6 link address not availble.\n");
1623 pkt_dev
->saddr_min
= 0;
1624 pkt_dev
->saddr_max
= 0;
1625 if (strlen(pkt_dev
->src_min
) == 0) {
1627 struct in_device
*in_dev
;
1630 in_dev
= __in_dev_get_rcu(pkt_dev
->odev
);
1632 if (in_dev
->ifa_list
) {
1633 pkt_dev
->saddr_min
= in_dev
->ifa_list
->ifa_address
;
1634 pkt_dev
->saddr_max
= pkt_dev
->saddr_min
;
1640 pkt_dev
->saddr_min
= in_aton(pkt_dev
->src_min
);
1641 pkt_dev
->saddr_max
= in_aton(pkt_dev
->src_max
);
1644 pkt_dev
->daddr_min
= in_aton(pkt_dev
->dst_min
);
1645 pkt_dev
->daddr_max
= in_aton(pkt_dev
->dst_max
);
1647 /* Initialize current values. */
1648 pkt_dev
->cur_dst_mac_offset
= 0;
1649 pkt_dev
->cur_src_mac_offset
= 0;
1650 pkt_dev
->cur_saddr
= pkt_dev
->saddr_min
;
1651 pkt_dev
->cur_daddr
= pkt_dev
->daddr_min
;
1652 pkt_dev
->cur_udp_dst
= pkt_dev
->udp_dst_min
;
1653 pkt_dev
->cur_udp_src
= pkt_dev
->udp_src_min
;
1654 pkt_dev
->nflows
= 0;
1657 static void spin(struct pktgen_dev
*pkt_dev
, __u64 spin_until_us
)
1662 start
= now
= getCurUs();
1663 printk(KERN_INFO
"sleeping for %d\n", (int)(spin_until_us
- now
));
1664 while (now
< spin_until_us
) {
1665 /* TODO: optimize sleeping behavior */
1666 if (spin_until_us
- now
> jiffies_to_usecs(1)+1)
1667 schedule_timeout_interruptible(1);
1668 else if (spin_until_us
- now
> 100) {
1670 if (!pkt_dev
->running
)
1679 pkt_dev
->idle_acc
+= now
- start
;
1683 /* Increment/randomize headers according to flags and current values
1684 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
1686 static void mod_cur_headers(struct pktgen_dev
*pkt_dev
) {
1691 if(pkt_dev
->cflows
) {
1692 flow
= pktgen_random() % pkt_dev
->cflows
;
1694 if (pkt_dev
->flows
[flow
].count
> pkt_dev
->lflow
)
1695 pkt_dev
->flows
[flow
].count
= 0;
1699 /* Deal with source MAC */
1700 if (pkt_dev
->src_mac_count
> 1) {
1704 if (pkt_dev
->flags
& F_MACSRC_RND
)
1705 mc
= pktgen_random() % (pkt_dev
->src_mac_count
);
1707 mc
= pkt_dev
->cur_src_mac_offset
++;
1708 if (pkt_dev
->cur_src_mac_offset
> pkt_dev
->src_mac_count
)
1709 pkt_dev
->cur_src_mac_offset
= 0;
1712 tmp
= pkt_dev
->src_mac
[5] + (mc
& 0xFF);
1713 pkt_dev
->hh
[11] = tmp
;
1714 tmp
= (pkt_dev
->src_mac
[4] + ((mc
>> 8) & 0xFF) + (tmp
>> 8));
1715 pkt_dev
->hh
[10] = tmp
;
1716 tmp
= (pkt_dev
->src_mac
[3] + ((mc
>> 16) & 0xFF) + (tmp
>> 8));
1717 pkt_dev
->hh
[9] = tmp
;
1718 tmp
= (pkt_dev
->src_mac
[2] + ((mc
>> 24) & 0xFF) + (tmp
>> 8));
1719 pkt_dev
->hh
[8] = tmp
;
1720 tmp
= (pkt_dev
->src_mac
[1] + (tmp
>> 8));
1721 pkt_dev
->hh
[7] = tmp
;
1724 /* Deal with Destination MAC */
1725 if (pkt_dev
->dst_mac_count
> 1) {
1729 if (pkt_dev
->flags
& F_MACDST_RND
)
1730 mc
= pktgen_random() % (pkt_dev
->dst_mac_count
);
1733 mc
= pkt_dev
->cur_dst_mac_offset
++;
1734 if (pkt_dev
->cur_dst_mac_offset
> pkt_dev
->dst_mac_count
) {
1735 pkt_dev
->cur_dst_mac_offset
= 0;
1739 tmp
= pkt_dev
->dst_mac
[5] + (mc
& 0xFF);
1740 pkt_dev
->hh
[5] = tmp
;
1741 tmp
= (pkt_dev
->dst_mac
[4] + ((mc
>> 8) & 0xFF) + (tmp
>> 8));
1742 pkt_dev
->hh
[4] = tmp
;
1743 tmp
= (pkt_dev
->dst_mac
[3] + ((mc
>> 16) & 0xFF) + (tmp
>> 8));
1744 pkt_dev
->hh
[3] = tmp
;
1745 tmp
= (pkt_dev
->dst_mac
[2] + ((mc
>> 24) & 0xFF) + (tmp
>> 8));
1746 pkt_dev
->hh
[2] = tmp
;
1747 tmp
= (pkt_dev
->dst_mac
[1] + (tmp
>> 8));
1748 pkt_dev
->hh
[1] = tmp
;
1751 if (pkt_dev
->udp_src_min
< pkt_dev
->udp_src_max
) {
1752 if (pkt_dev
->flags
& F_UDPSRC_RND
)
1753 pkt_dev
->cur_udp_src
= ((pktgen_random() % (pkt_dev
->udp_src_max
- pkt_dev
->udp_src_min
)) + pkt_dev
->udp_src_min
);
1756 pkt_dev
->cur_udp_src
++;
1757 if (pkt_dev
->cur_udp_src
>= pkt_dev
->udp_src_max
)
1758 pkt_dev
->cur_udp_src
= pkt_dev
->udp_src_min
;
1762 if (pkt_dev
->udp_dst_min
< pkt_dev
->udp_dst_max
) {
1763 if (pkt_dev
->flags
& F_UDPDST_RND
) {
1764 pkt_dev
->cur_udp_dst
= ((pktgen_random() % (pkt_dev
->udp_dst_max
- pkt_dev
->udp_dst_min
)) + pkt_dev
->udp_dst_min
);
1767 pkt_dev
->cur_udp_dst
++;
1768 if (pkt_dev
->cur_udp_dst
>= pkt_dev
->udp_dst_max
)
1769 pkt_dev
->cur_udp_dst
= pkt_dev
->udp_dst_min
;
1773 if (!(pkt_dev
->flags
& F_IPV6
)) {
1775 if ((imn
= ntohl(pkt_dev
->saddr_min
)) < (imx
= ntohl(pkt_dev
->saddr_max
))) {
1777 if (pkt_dev
->flags
& F_IPSRC_RND
)
1778 t
= ((pktgen_random() % (imx
- imn
)) + imn
);
1780 t
= ntohl(pkt_dev
->cur_saddr
);
1786 pkt_dev
->cur_saddr
= htonl(t
);
1789 if (pkt_dev
->cflows
&& pkt_dev
->flows
[flow
].count
!= 0) {
1790 pkt_dev
->cur_daddr
= pkt_dev
->flows
[flow
].cur_daddr
;
1793 if ((imn
= ntohl(pkt_dev
->daddr_min
)) < (imx
= ntohl(pkt_dev
->daddr_max
))) {
1795 if (pkt_dev
->flags
& F_IPDST_RND
) {
1797 t
= ((pktgen_random() % (imx
- imn
)) + imn
);
1800 while( LOOPBACK(t
) || MULTICAST(t
) || BADCLASS(t
) || ZERONET(t
) || LOCAL_MCAST(t
) ) {
1801 t
= ((pktgen_random() % (imx
- imn
)) + imn
);
1804 pkt_dev
->cur_daddr
= t
;
1808 t
= ntohl(pkt_dev
->cur_daddr
);
1813 pkt_dev
->cur_daddr
= htonl(t
);
1816 if(pkt_dev
->cflows
) {
1817 pkt_dev
->flows
[flow
].cur_daddr
= pkt_dev
->cur_daddr
;
1824 if(pkt_dev
->min_in6_daddr
.s6_addr32
[0] == 0 &&
1825 pkt_dev
->min_in6_daddr
.s6_addr32
[1] == 0 &&
1826 pkt_dev
->min_in6_daddr
.s6_addr32
[2] == 0 &&
1827 pkt_dev
->min_in6_daddr
.s6_addr32
[3] == 0);
1831 /* Only random destinations yet */
1833 for(i
=0; i
< 4; i
++) {
1834 pkt_dev
->cur_in6_daddr
.s6_addr32
[i
] =
1836 pkt_dev
->min_in6_daddr
.s6_addr32
[i
]) &
1837 pkt_dev
->max_in6_daddr
.s6_addr32
[i
]);
1842 if (pkt_dev
->min_pkt_size
< pkt_dev
->max_pkt_size
) {
1844 if (pkt_dev
->flags
& F_TXSIZE_RND
) {
1845 t
= ((pktgen_random() % (pkt_dev
->max_pkt_size
- pkt_dev
->min_pkt_size
))
1846 + pkt_dev
->min_pkt_size
);
1849 t
= pkt_dev
->cur_pkt_size
+ 1;
1850 if (t
> pkt_dev
->max_pkt_size
)
1851 t
= pkt_dev
->min_pkt_size
;
1853 pkt_dev
->cur_pkt_size
= t
;
1856 pkt_dev
->flows
[flow
].count
++;
1860 static struct sk_buff
*fill_packet_ipv4(struct net_device
*odev
,
1861 struct pktgen_dev
*pkt_dev
)
1863 struct sk_buff
*skb
= NULL
;
1865 struct udphdr
*udph
;
1868 struct pktgen_hdr
*pgh
= NULL
;
1870 /* Update any of the values, used when we're incrementing various
1873 mod_cur_headers(pkt_dev
);
1875 skb
= alloc_skb(pkt_dev
->cur_pkt_size
+ 64 + 16, GFP_ATOMIC
);
1877 sprintf(pkt_dev
->result
, "No memory");
1881 skb_reserve(skb
, 16);
1883 /* Reserve for ethernet and IP header */
1884 eth
= (__u8
*) skb_push(skb
, 14);
1885 iph
= (struct iphdr
*)skb_put(skb
, sizeof(struct iphdr
));
1886 udph
= (struct udphdr
*)skb_put(skb
, sizeof(struct udphdr
));
1888 memcpy(eth
, pkt_dev
->hh
, 12);
1889 *(u16
*)ð
[12] = __constant_htons(ETH_P_IP
);
1891 datalen
= pkt_dev
->cur_pkt_size
- 14 - 20 - 8; /* Eth + IPh + UDPh */
1892 if (datalen
< sizeof(struct pktgen_hdr
))
1893 datalen
= sizeof(struct pktgen_hdr
);
1895 udph
->source
= htons(pkt_dev
->cur_udp_src
);
1896 udph
->dest
= htons(pkt_dev
->cur_udp_dst
);
1897 udph
->len
= htons(datalen
+ 8); /* DATA + udphdr */
1898 udph
->check
= 0; /* No checksum */
1904 iph
->protocol
= IPPROTO_UDP
; /* UDP */
1905 iph
->saddr
= pkt_dev
->cur_saddr
;
1906 iph
->daddr
= pkt_dev
->cur_daddr
;
1908 iplen
= 20 + 8 + datalen
;
1909 iph
->tot_len
= htons(iplen
);
1911 iph
->check
= ip_fast_csum((void *) iph
, iph
->ihl
);
1912 skb
->protocol
= __constant_htons(ETH_P_IP
);
1913 skb
->mac
.raw
= ((u8
*)iph
) - 14;
1915 skb
->pkt_type
= PACKET_HOST
;
1917 if (pkt_dev
->nfrags
<= 0)
1918 pgh
= (struct pktgen_hdr
*)skb_put(skb
, datalen
);
1920 int frags
= pkt_dev
->nfrags
;
1923 pgh
= (struct pktgen_hdr
*)(((char*)(udph
)) + 8);
1925 if (frags
> MAX_SKB_FRAGS
)
1926 frags
= MAX_SKB_FRAGS
;
1927 if (datalen
> frags
*PAGE_SIZE
) {
1928 skb_put(skb
, datalen
-frags
*PAGE_SIZE
);
1929 datalen
= frags
*PAGE_SIZE
;
1933 while (datalen
> 0) {
1934 struct page
*page
= alloc_pages(GFP_KERNEL
, 0);
1935 skb_shinfo(skb
)->frags
[i
].page
= page
;
1936 skb_shinfo(skb
)->frags
[i
].page_offset
= 0;
1937 skb_shinfo(skb
)->frags
[i
].size
=
1938 (datalen
< PAGE_SIZE
? datalen
: PAGE_SIZE
);
1939 datalen
-= skb_shinfo(skb
)->frags
[i
].size
;
1940 skb
->len
+= skb_shinfo(skb
)->frags
[i
].size
;
1941 skb
->data_len
+= skb_shinfo(skb
)->frags
[i
].size
;
1943 skb_shinfo(skb
)->nr_frags
= i
;
1952 rem
= skb_shinfo(skb
)->frags
[i
- 1].size
/ 2;
1956 skb_shinfo(skb
)->frags
[i
- 1].size
-= rem
;
1958 skb_shinfo(skb
)->frags
[i
] = skb_shinfo(skb
)->frags
[i
- 1];
1959 get_page(skb_shinfo(skb
)->frags
[i
].page
);
1960 skb_shinfo(skb
)->frags
[i
].page
= skb_shinfo(skb
)->frags
[i
- 1].page
;
1961 skb_shinfo(skb
)->frags
[i
].page_offset
+= skb_shinfo(skb
)->frags
[i
- 1].size
;
1962 skb_shinfo(skb
)->frags
[i
].size
= rem
;
1964 skb_shinfo(skb
)->nr_frags
= i
;
1968 /* Stamp the time, and sequence number, convert them to network byte order */
1971 struct timeval timestamp
;
1973 pgh
->pgh_magic
= htonl(PKTGEN_MAGIC
);
1974 pgh
->seq_num
= htonl(pkt_dev
->seq_num
);
1976 do_gettimeofday(×tamp
);
1977 pgh
->tv_sec
= htonl(timestamp
.tv_sec
);
1978 pgh
->tv_usec
= htonl(timestamp
.tv_usec
);
1986 * scan_ip6, fmt_ip taken from dietlibc-0.21
1987 * Author Felix von Leitner <felix-dietlibc@fefe.de>
1989 * Slightly modified for kernel.
1990 * Should be candidate for net/ipv4/utils.c
1994 static unsigned int scan_ip6(const char *s
,char ip
[16])
2000 unsigned int prefixlen
=0;
2001 unsigned int suffixlen
=0;
2004 for (i
=0; i
<16; i
++) ip
[i
]=0;
2009 if (s
[1] == ':') { /* Found "::", skip to part 2 */
2018 u
=simple_strtoul(s
,&tmp
,16);
2023 if (prefixlen
==12 && s
[i
]=='.') {
2025 /* the last 4 bytes may be written as IPv4 address */
2028 memcpy((struct in_addr
*)(ip
+12), &tmp
, sizeof(tmp
));
2031 ip
[prefixlen
++] = (u
>> 8);
2032 ip
[prefixlen
++] = (u
& 255);
2038 /* part 2, after "::" */
2045 } else if (suffixlen
!=0)
2049 u
=simple_strtol(s
,&tmp
,16);
2056 if (suffixlen
+prefixlen
<=12 && s
[i
]=='.') {
2058 memcpy((struct in_addr
*)(suffix
+suffixlen
), &tmp
, sizeof(tmp
));
2063 suffix
[suffixlen
++] = (u
>> 8);
2064 suffix
[suffixlen
++] = (u
& 255);
2066 if (prefixlen
+suffixlen
==16)
2069 for (i
=0; i
<suffixlen
; i
++)
2070 ip
[16-suffixlen
+i
] = suffix
[i
];
2074 static char tohex(char hexdigit
) {
2075 return hexdigit
>9?hexdigit
+'a'-10:hexdigit
+'0';
2078 static int fmt_xlong(char* s
,unsigned int i
) {
2080 *s
=tohex((i
>>12)&0xf); if (s
!=bak
|| *s
!='0') ++s
;
2081 *s
=tohex((i
>>8)&0xf); if (s
!=bak
|| *s
!='0') ++s
;
2082 *s
=tohex((i
>>4)&0xf); if (s
!=bak
|| *s
!='0') ++s
;
2087 static unsigned int fmt_ip6(char *s
,const char ip
[16]) {
2091 unsigned int compressing
;
2094 len
= 0; compressing
= 0;
2095 for (j
=0; j
<16; j
+=2) {
2097 #ifdef V4MAPPEDPREFIX
2098 if (j
==12 && !memcmp(ip
,V4mappedprefix
,12)) {
2099 inet_ntoa_r(*(struct in_addr
*)(ip
+12),s
);
2104 temp
= ((unsigned long) (unsigned char) ip
[j
] << 8) +
2105 (unsigned long) (unsigned char) ip
[j
+1];
2118 i
= fmt_xlong(s
,temp
); len
+= i
; s
+= i
;
2132 static struct sk_buff
*fill_packet_ipv6(struct net_device
*odev
,
2133 struct pktgen_dev
*pkt_dev
)
2135 struct sk_buff
*skb
= NULL
;
2137 struct udphdr
*udph
;
2139 struct ipv6hdr
*iph
;
2140 struct pktgen_hdr
*pgh
= NULL
;
2142 /* Update any of the values, used when we're incrementing various
2145 mod_cur_headers(pkt_dev
);
2147 skb
= alloc_skb(pkt_dev
->cur_pkt_size
+ 64 + 16, GFP_ATOMIC
);
2149 sprintf(pkt_dev
->result
, "No memory");
2153 skb_reserve(skb
, 16);
2155 /* Reserve for ethernet and IP header */
2156 eth
= (__u8
*) skb_push(skb
, 14);
2157 iph
= (struct ipv6hdr
*)skb_put(skb
, sizeof(struct ipv6hdr
));
2158 udph
= (struct udphdr
*)skb_put(skb
, sizeof(struct udphdr
));
2160 memcpy(eth
, pkt_dev
->hh
, 12);
2161 *(u16
*)ð
[12] = __constant_htons(ETH_P_IPV6
);
2163 datalen
= pkt_dev
->cur_pkt_size
-14-
2164 sizeof(struct ipv6hdr
)-sizeof(struct udphdr
); /* Eth + IPh + UDPh */
2166 if (datalen
< sizeof(struct pktgen_hdr
)) {
2167 datalen
= sizeof(struct pktgen_hdr
);
2168 if (net_ratelimit())
2169 printk(KERN_INFO
"pktgen: increased datalen to %d\n", datalen
);
2172 udph
->source
= htons(pkt_dev
->cur_udp_src
);
2173 udph
->dest
= htons(pkt_dev
->cur_udp_dst
);
2174 udph
->len
= htons(datalen
+ sizeof(struct udphdr
));
2175 udph
->check
= 0; /* No checksum */
2177 *(u32
*)iph
= __constant_htonl(0x60000000); /* Version + flow */
2179 iph
->hop_limit
= 32;
2181 iph
->payload_len
= htons(sizeof(struct udphdr
) + datalen
);
2182 iph
->nexthdr
= IPPROTO_UDP
;
2184 ipv6_addr_copy(&iph
->daddr
, &pkt_dev
->cur_in6_daddr
);
2185 ipv6_addr_copy(&iph
->saddr
, &pkt_dev
->cur_in6_saddr
);
2187 skb
->mac
.raw
= ((u8
*)iph
) - 14;
2188 skb
->protocol
= __constant_htons(ETH_P_IPV6
);
2190 skb
->pkt_type
= PACKET_HOST
;
2192 if (pkt_dev
->nfrags
<= 0)
2193 pgh
= (struct pktgen_hdr
*)skb_put(skb
, datalen
);
2195 int frags
= pkt_dev
->nfrags
;
2198 pgh
= (struct pktgen_hdr
*)(((char*)(udph
)) + 8);
2200 if (frags
> MAX_SKB_FRAGS
)
2201 frags
= MAX_SKB_FRAGS
;
2202 if (datalen
> frags
*PAGE_SIZE
) {
2203 skb_put(skb
, datalen
-frags
*PAGE_SIZE
);
2204 datalen
= frags
*PAGE_SIZE
;
2208 while (datalen
> 0) {
2209 struct page
*page
= alloc_pages(GFP_KERNEL
, 0);
2210 skb_shinfo(skb
)->frags
[i
].page
= page
;
2211 skb_shinfo(skb
)->frags
[i
].page_offset
= 0;
2212 skb_shinfo(skb
)->frags
[i
].size
=
2213 (datalen
< PAGE_SIZE
? datalen
: PAGE_SIZE
);
2214 datalen
-= skb_shinfo(skb
)->frags
[i
].size
;
2215 skb
->len
+= skb_shinfo(skb
)->frags
[i
].size
;
2216 skb
->data_len
+= skb_shinfo(skb
)->frags
[i
].size
;
2218 skb_shinfo(skb
)->nr_frags
= i
;
2227 rem
= skb_shinfo(skb
)->frags
[i
- 1].size
/ 2;
2231 skb_shinfo(skb
)->frags
[i
- 1].size
-= rem
;
2233 skb_shinfo(skb
)->frags
[i
] = skb_shinfo(skb
)->frags
[i
- 1];
2234 get_page(skb_shinfo(skb
)->frags
[i
].page
);
2235 skb_shinfo(skb
)->frags
[i
].page
= skb_shinfo(skb
)->frags
[i
- 1].page
;
2236 skb_shinfo(skb
)->frags
[i
].page_offset
+= skb_shinfo(skb
)->frags
[i
- 1].size
;
2237 skb_shinfo(skb
)->frags
[i
].size
= rem
;
2239 skb_shinfo(skb
)->nr_frags
= i
;
2243 /* Stamp the time, and sequence number, convert them to network byte order */
2244 /* should we update cloned packets too ? */
2246 struct timeval timestamp
;
2248 pgh
->pgh_magic
= htonl(PKTGEN_MAGIC
);
2249 pgh
->seq_num
= htonl(pkt_dev
->seq_num
);
2251 do_gettimeofday(×tamp
);
2252 pgh
->tv_sec
= htonl(timestamp
.tv_sec
);
2253 pgh
->tv_usec
= htonl(timestamp
.tv_usec
);
2260 static inline struct sk_buff
*fill_packet(struct net_device
*odev
,
2261 struct pktgen_dev
*pkt_dev
)
2263 if(pkt_dev
->flags
& F_IPV6
)
2264 return fill_packet_ipv6(odev
, pkt_dev
);
2266 return fill_packet_ipv4(odev
, pkt_dev
);
2269 static void pktgen_clear_counters(struct pktgen_dev
*pkt_dev
)
2271 pkt_dev
->seq_num
= 1;
2272 pkt_dev
->idle_acc
= 0;
2274 pkt_dev
->tx_bytes
= 0;
2275 pkt_dev
->errors
= 0;
2278 /* Set up structure for sending pkts, clear counters */
2280 static void pktgen_run(struct pktgen_thread
*t
)
2282 struct pktgen_dev
*pkt_dev
= NULL
;
2285 PG_DEBUG(printk("pktgen: entering pktgen_run. %p\n", t
));
2288 for (pkt_dev
= t
->if_list
; pkt_dev
; pkt_dev
= pkt_dev
->next
) {
2291 * setup odev and create initial packet.
2293 pktgen_setup_inject(pkt_dev
);
2296 pktgen_clear_counters(pkt_dev
);
2297 pkt_dev
->running
= 1; /* Cranke yeself! */
2298 pkt_dev
->skb
= NULL
;
2299 pkt_dev
->started_at
= getCurUs();
2300 pkt_dev
->next_tx_us
= getCurUs(); /* Transmit immediately */
2301 pkt_dev
->next_tx_ns
= 0;
2303 strcpy(pkt_dev
->result
, "Starting");
2307 strcpy(pkt_dev
->result
, "Error starting");
2310 if(started
) t
->control
&= ~(T_STOP
);
2313 static void pktgen_stop_all_threads_ifs(void)
2315 struct pktgen_thread
*t
= pktgen_threads
;
2317 PG_DEBUG(printk("pktgen: entering pktgen_stop_all_threads.\n"));
2327 static int thread_is_running(struct pktgen_thread
*t
)
2329 struct pktgen_dev
*next
;
2332 for(next
=t
->if_list
; next
; next
=next
->next
) {
2341 static int pktgen_wait_thread_run(struct pktgen_thread
*t
)
2345 while(thread_is_running(t
)) {
2349 msleep_interruptible(100);
2351 if (signal_pending(current
))
2361 static int pktgen_wait_all_threads_run(void)
2363 struct pktgen_thread
*t
= pktgen_threads
;
2367 sig
= pktgen_wait_thread_run(t
);
2368 if( sig
== 0 ) break;
2376 t
->control
|= (T_STOP
);
2384 static void pktgen_run_all_threads(void)
2386 struct pktgen_thread
*t
= pktgen_threads
;
2388 PG_DEBUG(printk("pktgen: entering pktgen_run_all_threads.\n"));
2393 t
->control
|= (T_RUN
);
2398 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
2400 pktgen_wait_all_threads_run();
2404 static void show_results(struct pktgen_dev
*pkt_dev
, int nr_frags
)
2406 __u64 total_us
, bps
, mbps
, pps
, idle
;
2407 char *p
= pkt_dev
->result
;
2409 total_us
= pkt_dev
->stopped_at
- pkt_dev
->started_at
;
2411 idle
= pkt_dev
->idle_acc
;
2413 p
+= sprintf(p
, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
2414 (unsigned long long) total_us
,
2415 (unsigned long long)(total_us
- idle
),
2416 (unsigned long long) idle
,
2417 (unsigned long long) pkt_dev
->sofar
,
2418 pkt_dev
->cur_pkt_size
, nr_frags
);
2420 pps
= pkt_dev
->sofar
* USEC_PER_SEC
;
2422 while ((total_us
>> 32) != 0) {
2427 do_div(pps
, total_us
);
2429 bps
= pps
* 8 * pkt_dev
->cur_pkt_size
;
2432 do_div(mbps
, 1000000);
2433 p
+= sprintf(p
, " %llupps %lluMb/sec (%llubps) errors: %llu",
2434 (unsigned long long) pps
,
2435 (unsigned long long) mbps
,
2436 (unsigned long long) bps
,
2437 (unsigned long long) pkt_dev
->errors
);
2441 /* Set stopped-at timer, remove from running list, do counters & statistics */
2443 static int pktgen_stop_device(struct pktgen_dev
*pkt_dev
)
2446 if (!pkt_dev
->running
) {
2447 printk("pktgen: interface: %s is already stopped\n", pkt_dev
->ifname
);
2451 pkt_dev
->stopped_at
= getCurUs();
2452 pkt_dev
->running
= 0;
2454 show_results(pkt_dev
, skb_shinfo(pkt_dev
->skb
)->nr_frags
);
2457 kfree_skb(pkt_dev
->skb
);
2459 pkt_dev
->skb
= NULL
;
2464 static struct pktgen_dev
*next_to_run(struct pktgen_thread
*t
)
2466 struct pktgen_dev
*next
, *best
= NULL
;
2470 for(next
=t
->if_list
; next
; next
=next
->next
) {
2471 if(!next
->running
) continue;
2472 if(best
== NULL
) best
=next
;
2473 else if ( next
->next_tx_us
< best
->next_tx_us
)
2480 static void pktgen_stop(struct pktgen_thread
*t
) {
2481 struct pktgen_dev
*next
= NULL
;
2483 PG_DEBUG(printk("pktgen: entering pktgen_stop.\n"));
2487 for(next
=t
->if_list
; next
; next
=next
->next
)
2488 pktgen_stop_device(next
);
2493 static void pktgen_rem_all_ifs(struct pktgen_thread
*t
)
2495 struct pktgen_dev
*cur
, *next
= NULL
;
2497 /* Remove all devices, free mem */
2501 for(cur
=t
->if_list
; cur
; cur
=next
) {
2503 pktgen_remove_device(t
, cur
);
2509 static void pktgen_rem_thread(struct pktgen_thread
*t
)
2511 /* Remove from the thread list */
2513 struct pktgen_thread
*tmp
= pktgen_threads
;
2515 remove_proc_entry(t
->name
, pg_proc_dir
);
2520 pktgen_threads
= tmp
->next
;
2523 if (tmp
->next
== t
) {
2524 tmp
->next
= t
->next
;
2534 static __inline__
void pktgen_xmit(struct pktgen_dev
*pkt_dev
)
2536 struct net_device
*odev
= NULL
;
2537 __u64 idle_start
= 0;
2540 odev
= pkt_dev
->odev
;
2542 if (pkt_dev
->delay_us
|| pkt_dev
->delay_ns
) {
2546 if (now
< pkt_dev
->next_tx_us
)
2547 spin(pkt_dev
, pkt_dev
->next_tx_us
);
2549 /* This is max DELAY, this has special meaning of
2552 if (pkt_dev
->delay_us
== 0x7FFFFFFF) {
2553 pkt_dev
->next_tx_us
= getCurUs() + pkt_dev
->delay_us
;
2554 pkt_dev
->next_tx_ns
= pkt_dev
->delay_ns
;
2559 if (netif_queue_stopped(odev
) || need_resched()) {
2560 idle_start
= getCurUs();
2562 if (!netif_running(odev
)) {
2563 pktgen_stop_device(pkt_dev
);
2569 pkt_dev
->idle_acc
+= getCurUs() - idle_start
;
2571 if (netif_queue_stopped(odev
)) {
2572 pkt_dev
->next_tx_us
= getCurUs(); /* TODO */
2573 pkt_dev
->next_tx_ns
= 0;
2574 goto out
; /* Try the next interface */
2578 if (pkt_dev
->last_ok
|| !pkt_dev
->skb
) {
2579 if ((++pkt_dev
->clone_count
>= pkt_dev
->clone_skb
) || (!pkt_dev
->skb
)) {
2580 /* build a new pkt */
2582 kfree_skb(pkt_dev
->skb
);
2584 pkt_dev
->skb
= fill_packet(odev
, pkt_dev
);
2585 if (pkt_dev
->skb
== NULL
) {
2586 printk("pktgen: ERROR: couldn't allocate skb in fill_packet.\n");
2588 pkt_dev
->clone_count
--; /* back out increment, OOM */
2591 pkt_dev
->allocated_skbs
++;
2592 pkt_dev
->clone_count
= 0; /* reset counter */
2596 spin_lock_bh(&odev
->xmit_lock
);
2597 if (!netif_queue_stopped(odev
)) {
2599 atomic_inc(&(pkt_dev
->skb
->users
));
2601 ret
= odev
->hard_start_xmit(pkt_dev
->skb
, odev
);
2602 if (likely(ret
== NETDEV_TX_OK
)) {
2603 pkt_dev
->last_ok
= 1;
2606 pkt_dev
->tx_bytes
+= pkt_dev
->cur_pkt_size
;
2608 } else if (ret
== NETDEV_TX_LOCKED
2609 && (odev
->features
& NETIF_F_LLTX
)) {
2612 } else { /* Retry it next time */
2614 atomic_dec(&(pkt_dev
->skb
->users
));
2616 if (debug
&& net_ratelimit())
2617 printk(KERN_INFO
"pktgen: Hard xmit error\n");
2620 pkt_dev
->last_ok
= 0;
2623 pkt_dev
->next_tx_us
= getCurUs();
2624 pkt_dev
->next_tx_ns
= 0;
2626 pkt_dev
->next_tx_us
+= pkt_dev
->delay_us
;
2627 pkt_dev
->next_tx_ns
+= pkt_dev
->delay_ns
;
2629 if (pkt_dev
->next_tx_ns
> 1000) {
2630 pkt_dev
->next_tx_us
++;
2631 pkt_dev
->next_tx_ns
-= 1000;
2635 else { /* Retry it next time */
2636 pkt_dev
->last_ok
= 0;
2637 pkt_dev
->next_tx_us
= getCurUs(); /* TODO */
2638 pkt_dev
->next_tx_ns
= 0;
2641 spin_unlock_bh(&odev
->xmit_lock
);
2643 /* If pkt_dev->count is zero, then run forever */
2644 if ((pkt_dev
->count
!= 0) && (pkt_dev
->sofar
>= pkt_dev
->count
)) {
2645 if (atomic_read(&(pkt_dev
->skb
->users
)) != 1) {
2646 idle_start
= getCurUs();
2647 while (atomic_read(&(pkt_dev
->skb
->users
)) != 1) {
2648 if (signal_pending(current
)) {
2653 pkt_dev
->idle_acc
+= getCurUs() - idle_start
;
2656 /* Done with this */
2657 pktgen_stop_device(pkt_dev
);
2663 * Main loop of the thread goes here
2666 static void pktgen_thread_worker(struct pktgen_thread
*t
)
2669 struct pktgen_dev
*pkt_dev
= NULL
;
2672 u32 max_before_softirq
;
2673 u32 tx_since_softirq
= 0;
2675 daemonize("pktgen/%d", cpu
);
2677 /* Block all signals except SIGKILL, SIGSTOP and SIGTERM */
2679 spin_lock_irq(¤t
->sighand
->siglock
);
2680 tmpsig
= current
->blocked
;
2681 siginitsetinv(¤t
->blocked
,
2686 recalc_sigpending();
2687 spin_unlock_irq(¤t
->sighand
->siglock
);
2689 /* Migrate to the right CPU */
2690 set_cpus_allowed(current
, cpumask_of_cpu(cpu
));
2691 if (smp_processor_id() != cpu
)
2694 init_waitqueue_head(&t
->queue
);
2696 t
->control
&= ~(T_TERMINATE
);
2697 t
->control
&= ~(T_RUN
);
2698 t
->control
&= ~(T_STOP
);
2699 t
->control
&= ~(T_REMDEV
);
2701 t
->pid
= current
->pid
;
2703 PG_DEBUG(printk("pktgen: starting pktgen/%d: pid=%d\n", cpu
, current
->pid
));
2705 max_before_softirq
= t
->max_before_softirq
;
2707 __set_current_state(TASK_INTERRUPTIBLE
);
2712 __set_current_state(TASK_RUNNING
);
2715 * Get next dev to xmit -- if any.
2718 pkt_dev
= next_to_run(t
);
2722 pktgen_xmit(pkt_dev
);
2725 * We like to stay RUNNING but must also give
2726 * others fair share.
2729 tx_since_softirq
+= pkt_dev
->last_ok
;
2731 if (tx_since_softirq
> max_before_softirq
) {
2732 if (local_softirq_pending())
2734 tx_since_softirq
= 0;
2737 prepare_to_wait(&(t
->queue
), &wait
, TASK_INTERRUPTIBLE
);
2738 schedule_timeout(HZ
/10);
2739 finish_wait(&(t
->queue
), &wait
);
2743 * Back from sleep, either due to the timeout or signal.
2744 * We check if we have any "posted" work for us.
2747 if (t
->control
& T_TERMINATE
|| signal_pending(current
))
2748 /* we received a request to terminate ourself */
2752 if(t
->control
& T_STOP
) {
2754 t
->control
&= ~(T_STOP
);
2757 if(t
->control
& T_RUN
) {
2759 t
->control
&= ~(T_RUN
);
2762 if(t
->control
& T_REMDEV
) {
2763 pktgen_rem_all_ifs(t
);
2764 t
->control
&= ~(T_REMDEV
);
2771 PG_DEBUG(printk("pktgen: %s stopping all device\n", t
->name
));
2774 PG_DEBUG(printk("pktgen: %s removing all device\n", t
->name
));
2775 pktgen_rem_all_ifs(t
);
2777 PG_DEBUG(printk("pktgen: %s removing thread.\n", t
->name
));
2778 pktgen_rem_thread(t
);
2781 static struct pktgen_dev
*pktgen_find_dev(struct pktgen_thread
*t
, const char* ifname
)
2783 struct pktgen_dev
*pkt_dev
= NULL
;
2786 for(pkt_dev
=t
->if_list
; pkt_dev
; pkt_dev
= pkt_dev
->next
) {
2787 if (strncmp(pkt_dev
->ifname
, ifname
, IFNAMSIZ
) == 0) {
2793 PG_DEBUG(printk("pktgen: find_dev(%s) returning %p\n", ifname
,pkt_dev
));
2798 * Adds a dev at front of if_list.
2801 static int add_dev_to_thread(struct pktgen_thread
*t
, struct pktgen_dev
*pkt_dev
)
2807 if (pkt_dev
->pg_thread
) {
2808 printk("pktgen: ERROR: already assigned to a thread.\n");
2812 pkt_dev
->next
=t
->if_list
; t
->if_list
=pkt_dev
;
2813 pkt_dev
->pg_thread
= t
;
2814 pkt_dev
->running
= 0;
2821 /* Called under thread lock */
2823 static int pktgen_add_device(struct pktgen_thread
*t
, const char* ifname
)
2825 struct pktgen_dev
*pkt_dev
;
2826 struct proc_dir_entry
*pe
;
2828 /* We don't allow a device to be on several threads */
2830 pkt_dev
= __pktgen_NN_threads(ifname
, FIND
);
2832 printk("pktgen: ERROR: interface already used.\n");
2836 pkt_dev
= kzalloc(sizeof(struct pktgen_dev
), GFP_KERNEL
);
2840 pkt_dev
->flows
= vmalloc(MAX_CFLOWS
*sizeof(struct flow_state
));
2841 if (pkt_dev
->flows
== NULL
) {
2845 memset(pkt_dev
->flows
, 0, MAX_CFLOWS
*sizeof(struct flow_state
));
2847 pkt_dev
->min_pkt_size
= ETH_ZLEN
;
2848 pkt_dev
->max_pkt_size
= ETH_ZLEN
;
2849 pkt_dev
->nfrags
= 0;
2850 pkt_dev
->clone_skb
= pg_clone_skb_d
;
2851 pkt_dev
->delay_us
= pg_delay_d
/ 1000;
2852 pkt_dev
->delay_ns
= pg_delay_d
% 1000;
2853 pkt_dev
->count
= pg_count_d
;
2855 pkt_dev
->udp_src_min
= 9; /* sink port */
2856 pkt_dev
->udp_src_max
= 9;
2857 pkt_dev
->udp_dst_min
= 9;
2858 pkt_dev
->udp_dst_max
= 9;
2860 strncpy(pkt_dev
->ifname
, ifname
, IFNAMSIZ
);
2862 if (! pktgen_setup_dev(pkt_dev
)) {
2863 printk("pktgen: ERROR: pktgen_setup_dev failed.\n");
2865 vfree(pkt_dev
->flows
);
2870 pe
= create_proc_entry(ifname
, 0600, pg_proc_dir
);
2872 printk("pktgen: cannot create %s/%s procfs entry.\n",
2873 PG_PROC_DIR
, ifname
);
2875 vfree(pkt_dev
->flows
);
2879 pe
->proc_fops
= &pktgen_if_fops
;
2882 return add_dev_to_thread(t
, pkt_dev
);
2885 static struct pktgen_thread
* __init
pktgen_find_thread(const char* name
)
2887 struct pktgen_thread
*t
= NULL
;
2893 if (strcmp(t
->name
, name
) == 0)
2902 static int __init
pktgen_create_thread(const char* name
, int cpu
)
2904 struct pktgen_thread
*t
= NULL
;
2905 struct proc_dir_entry
*pe
;
2907 if (strlen(name
) > 31) {
2908 printk("pktgen: ERROR: Thread name cannot be more than 31 characters.\n");
2912 if (pktgen_find_thread(name
)) {
2913 printk("pktgen: ERROR: thread: %s already exists\n", name
);
2917 t
= kzalloc(sizeof(struct pktgen_thread
), GFP_KERNEL
);
2919 printk("pktgen: ERROR: out of memory, can't create new thread.\n");
2923 strcpy(t
->name
, name
);
2924 spin_lock_init(&t
->if_lock
);
2927 pe
= create_proc_entry(t
->name
, 0600, pg_proc_dir
);
2929 printk("pktgen: cannot create %s/%s procfs entry.\n",
2930 PG_PROC_DIR
, t
->name
);
2935 pe
->proc_fops
= &pktgen_thread_fops
;
2938 t
->next
= pktgen_threads
;
2941 if (kernel_thread((void *) pktgen_thread_worker
, (void *) t
,
2942 CLONE_FS
| CLONE_FILES
| CLONE_SIGHAND
) < 0)
2943 printk("pktgen: kernel_thread() failed for cpu %d\n", t
->cpu
);
2949 * Removes a device from the thread if_list.
2951 static void _rem_dev_from_if_list(struct pktgen_thread
*t
, struct pktgen_dev
*pkt_dev
)
2953 struct pktgen_dev
*i
, *prev
= NULL
;
2959 if(prev
) prev
->next
= i
->next
;
2960 else t
->if_list
= NULL
;
2968 static int pktgen_remove_device(struct pktgen_thread
*t
, struct pktgen_dev
*pkt_dev
)
2971 PG_DEBUG(printk("pktgen: remove_device pkt_dev=%p\n", pkt_dev
));
2973 if (pkt_dev
->running
) {
2974 printk("pktgen:WARNING: trying to remove a running interface, stopping it now.\n");
2975 pktgen_stop_device(pkt_dev
);
2978 /* Dis-associate from the interface */
2980 if (pkt_dev
->odev
) {
2981 dev_put(pkt_dev
->odev
);
2982 pkt_dev
->odev
= NULL
;
2985 /* And update the thread if_list */
2987 _rem_dev_from_if_list(t
, pkt_dev
);
2989 /* Clean up proc file system */
2991 remove_proc_entry(pkt_dev
->ifname
, pg_proc_dir
);
2994 vfree(pkt_dev
->flows
);
2999 static int __init
pg_init(void)
3002 struct proc_dir_entry
*pe
;
3006 pg_proc_dir
= proc_mkdir(PG_PROC_DIR
, proc_net
);
3009 pg_proc_dir
->owner
= THIS_MODULE
;
3011 pe
= create_proc_entry(PGCTRL
, 0600, pg_proc_dir
);
3013 printk("pktgen: ERROR: cannot create %s procfs entry.\n", PGCTRL
);
3014 proc_net_remove(PG_PROC_DIR
);
3018 pe
->proc_fops
= &pktgen_fops
;
3021 /* Register us to receive netdevice events */
3022 register_netdevice_notifier(&pktgen_notifier_block
);
3024 for_each_online_cpu(cpu
) {
3027 sprintf(buf
, "kpktgend_%i", cpu
);
3028 pktgen_create_thread(buf
, cpu
);
3033 static void __exit
pg_cleanup(void)
3035 wait_queue_head_t queue
;
3036 init_waitqueue_head(&queue
);
3038 /* Stop all interfaces & threads */
3040 while (pktgen_threads
) {
3041 struct pktgen_thread
*t
= pktgen_threads
;
3042 pktgen_threads
->control
|= (T_TERMINATE
);
3044 wait_event_interruptible_timeout(queue
, (t
!= pktgen_threads
), HZ
);
3047 /* Un-register us from receiving netdevice events */
3048 unregister_netdevice_notifier(&pktgen_notifier_block
);
3050 /* Clean up proc file system */
3051 remove_proc_entry(PGCTRL
, pg_proc_dir
);
3052 proc_net_remove(PG_PROC_DIR
);
3056 module_init(pg_init
);
3057 module_exit(pg_cleanup
);
3059 MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se");
3060 MODULE_DESCRIPTION("Packet Generator tool");
3061 MODULE_LICENSE("GPL");
3062 module_param(pg_count_d
, int, 0);
3063 module_param(pg_delay_d
, int, 0);
3064 module_param(pg_clone_skb_d
, int, 0);
3065 module_param(debug
, int, 0);