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 * MPLS support by Steven Whitehouse <steve@chygwyn.com>
112 * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com>
114 * Fixed src_mac command to set source mac of packet to value specified in
115 * command by Adit Ranadive <adit.262@gmail.com>
119 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
121 #include <linux/sys.h>
122 #include <linux/types.h>
123 #include <linux/module.h>
124 #include <linux/moduleparam.h>
125 #include <linux/kernel.h>
126 #include <linux/mutex.h>
127 #include <linux/sched.h>
128 #include <linux/slab.h>
129 #include <linux/vmalloc.h>
130 #include <linux/unistd.h>
131 #include <linux/string.h>
132 #include <linux/ptrace.h>
133 #include <linux/errno.h>
134 #include <linux/ioport.h>
135 #include <linux/interrupt.h>
136 #include <linux/capability.h>
137 #include <linux/hrtimer.h>
138 #include <linux/freezer.h>
139 #include <linux/delay.h>
140 #include <linux/timer.h>
141 #include <linux/list.h>
142 #include <linux/init.h>
143 #include <linux/skbuff.h>
144 #include <linux/netdevice.h>
145 #include <linux/inet.h>
146 #include <linux/inetdevice.h>
147 #include <linux/rtnetlink.h>
148 #include <linux/if_arp.h>
149 #include <linux/if_vlan.h>
150 #include <linux/in.h>
151 #include <linux/ip.h>
152 #include <linux/ipv6.h>
153 #include <linux/udp.h>
154 #include <linux/proc_fs.h>
155 #include <linux/seq_file.h>
156 #include <linux/wait.h>
157 #include <linux/etherdevice.h>
158 #include <linux/kthread.h>
159 #include <linux/prefetch.h>
160 #include <net/net_namespace.h>
161 #include <net/checksum.h>
162 #include <net/ipv6.h>
164 #include <net/ip6_checksum.h>
165 #include <net/addrconf.h>
167 #include <net/xfrm.h>
169 #include <net/netns/generic.h>
170 #include <asm/byteorder.h>
171 #include <linux/rcupdate.h>
172 #include <linux/bitops.h>
173 #include <linux/io.h>
174 #include <linux/timex.h>
175 #include <linux/uaccess.h>
177 #include <asm/div64.h> /* do_div */
179 #define VERSION "2.74"
180 #define IP_NAME_SZ 32
181 #define MAX_MPLS_LABELS 16 /* This is the max label stack depth */
182 #define MPLS_STACK_BOTTOM htonl(0x00000100)
184 #define func_enter() pr_debug("entering %s\n", __func__);
186 /* Device flag bits */
187 #define F_IPSRC_RND (1<<0) /* IP-Src Random */
188 #define F_IPDST_RND (1<<1) /* IP-Dst Random */
189 #define F_UDPSRC_RND (1<<2) /* UDP-Src Random */
190 #define F_UDPDST_RND (1<<3) /* UDP-Dst Random */
191 #define F_MACSRC_RND (1<<4) /* MAC-Src Random */
192 #define F_MACDST_RND (1<<5) /* MAC-Dst Random */
193 #define F_TXSIZE_RND (1<<6) /* Transmit size is random */
194 #define F_IPV6 (1<<7) /* Interface in IPV6 Mode */
195 #define F_MPLS_RND (1<<8) /* Random MPLS labels */
196 #define F_VID_RND (1<<9) /* Random VLAN ID */
197 #define F_SVID_RND (1<<10) /* Random SVLAN ID */
198 #define F_FLOW_SEQ (1<<11) /* Sequential flows */
199 #define F_IPSEC_ON (1<<12) /* ipsec on for flows */
200 #define F_QUEUE_MAP_RND (1<<13) /* queue map Random */
201 #define F_QUEUE_MAP_CPU (1<<14) /* queue map mirrors smp_processor_id() */
202 #define F_NODE (1<<15) /* Node memory alloc*/
203 #define F_UDPCSUM (1<<16) /* Include UDP checksum */
205 /* Thread control flag bits */
206 #define T_STOP (1<<0) /* Stop run */
207 #define T_RUN (1<<1) /* Start run */
208 #define T_REMDEVALL (1<<2) /* Remove all devs */
209 #define T_REMDEV (1<<3) /* Remove one dev */
211 /* If lock -- can be removed after some work */
212 #define if_lock(t) spin_lock(&(t->if_lock));
213 #define if_unlock(t) spin_unlock(&(t->if_lock));
215 /* Used to help with determining the pkts on receive */
216 #define PKTGEN_MAGIC 0xbe9be955
217 #define PG_PROC_DIR "pktgen"
218 #define PGCTRL "pgctrl"
220 #define MAX_CFLOWS 65536
222 #define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4)
223 #define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4)
229 struct xfrm_state
*x
;
235 #define F_INIT (1<<0) /* flow has been initialized */
239 * Try to keep frequent/infrequent used vars. separated.
241 struct proc_dir_entry
*entry
; /* proc file */
242 struct pktgen_thread
*pg_thread
;/* the owner */
243 struct list_head list
; /* chaining in the thread's run-queue */
245 int running
; /* if false, the test will stop */
247 /* If min != max, then we will either do a linear iteration, or
248 * we will do a random selection from within the range.
251 int removal_mark
; /* non-zero => the device is marked for
252 * removal by worker thread */
256 int pkt_overhead
; /* overhead for MPLS, VLANs, IPSEC etc */
259 u64 delay
; /* nano-seconds */
261 __u64 count
; /* Default No packets to send */
262 __u64 sofar
; /* How many pkts we've sent so far */
263 __u64 tx_bytes
; /* How many bytes we've transmitted */
264 __u64 errors
; /* Errors when trying to transmit, */
266 /* runtime counters relating to clone_skb */
268 __u64 allocated_skbs
;
270 int last_ok
; /* Was last skb sent?
271 * Or a failed transmit of some sort?
272 * This will keep sequence numbers in order
277 u64 idle_acc
; /* nano-seconds */
282 * Use multiple SKBs during packet gen.
283 * If this number is greater than 1, then
284 * that many copies of the same packet will be
285 * sent before a new packet is allocated.
286 * If you want to send 1024 identical packets
287 * before creating a new packet,
288 * set clone_skb to 1024.
291 char dst_min
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
292 char dst_max
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
293 char src_min
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
294 char src_max
[IP_NAME_SZ
]; /* IP, ie 1.2.3.4 */
296 struct in6_addr in6_saddr
;
297 struct in6_addr in6_daddr
;
298 struct in6_addr cur_in6_daddr
;
299 struct in6_addr cur_in6_saddr
;
301 struct in6_addr min_in6_daddr
;
302 struct in6_addr max_in6_daddr
;
303 struct in6_addr min_in6_saddr
;
304 struct in6_addr max_in6_saddr
;
306 /* If we're doing ranges, random or incremental, then this
307 * defines the min/max for those ranges.
309 __be32 saddr_min
; /* inclusive, source IP address */
310 __be32 saddr_max
; /* exclusive, source IP address */
311 __be32 daddr_min
; /* inclusive, dest IP address */
312 __be32 daddr_max
; /* exclusive, dest IP address */
314 __u16 udp_src_min
; /* inclusive, source UDP port */
315 __u16 udp_src_max
; /* exclusive, source UDP port */
316 __u16 udp_dst_min
; /* inclusive, dest UDP port */
317 __u16 udp_dst_max
; /* exclusive, dest UDP port */
320 __u8 tos
; /* six MSB of (former) IPv4 TOS
321 are for dscp codepoint */
322 __u8 traffic_class
; /* ditto for the (former) Traffic Class in IPv6
323 (see RFC 3260, sec. 4) */
326 unsigned int nr_labels
; /* Depth of stack, 0 = no MPLS */
327 __be32 labels
[MAX_MPLS_LABELS
];
329 /* VLAN/SVLAN (802.1Q/Q-in-Q) */
332 __u16 vlan_id
; /* 0xffff means no vlan tag */
336 __u16 svlan_id
; /* 0xffff means no svlan tag */
338 __u32 src_mac_count
; /* How many MACs to iterate through */
339 __u32 dst_mac_count
; /* How many MACs to iterate through */
341 unsigned char dst_mac
[ETH_ALEN
];
342 unsigned char src_mac
[ETH_ALEN
];
344 __u32 cur_dst_mac_offset
;
345 __u32 cur_src_mac_offset
;
357 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB,
359 We fill in SRC address later
360 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
364 __u16 pad
; /* pad out the hh struct to an even 16 bytes */
366 struct sk_buff
*skb
; /* skb we are to transmit next, used for when we
367 * are transmitting the same one multiple times
369 struct net_device
*odev
; /* The out-going device.
370 * Note that the device should have it's
371 * pg_info pointer pointing back to this
373 * Set when the user specifies the out-going
374 * device name (not when the inject is
375 * started as it used to do.)
378 struct flow_state
*flows
;
379 unsigned int cflows
; /* Concurrent flows (config) */
380 unsigned int lflow
; /* Flow length (config) */
381 unsigned int nflows
; /* accumulated flows (stats) */
382 unsigned int curfl
; /* current sequenced flow (state)*/
386 __u32 skb_priority
; /* skb priority field */
387 int node
; /* Memory node */
390 __u8 ipsmode
; /* IPSEC mode (config) */
391 __u8 ipsproto
; /* IPSEC type (config) */
404 static int pg_net_id __read_mostly
;
408 struct proc_dir_entry
*proc_dir
;
409 struct list_head pktgen_threads
;
413 struct pktgen_thread
{
414 spinlock_t if_lock
; /* for list of devices */
415 struct list_head if_list
; /* All device here */
416 struct list_head th_list
;
417 struct task_struct
*tsk
;
420 /* Field for thread to receive "posted" events terminate,
426 wait_queue_head_t queue
;
427 struct completion start_done
;
428 struct pktgen_net
*net
;
434 static const char version
[] =
435 "Packet Generator for packet performance testing. "
436 "Version: " VERSION
"\n";
438 static int pktgen_remove_device(struct pktgen_thread
*t
, struct pktgen_dev
*i
);
439 static int pktgen_add_device(struct pktgen_thread
*t
, const char *ifname
);
440 static struct pktgen_dev
*pktgen_find_dev(struct pktgen_thread
*t
,
441 const char *ifname
, bool exact
);
442 static int pktgen_device_event(struct notifier_block
*, unsigned long, void *);
443 static void pktgen_run_all_threads(struct pktgen_net
*pn
);
444 static void pktgen_reset_all_threads(struct pktgen_net
*pn
);
445 static void pktgen_stop_all_threads_ifs(struct pktgen_net
*pn
);
447 static void pktgen_stop(struct pktgen_thread
*t
);
448 static void pktgen_clear_counters(struct pktgen_dev
*pkt_dev
);
450 /* Module parameters, defaults. */
451 static int pg_count_d __read_mostly
= 1000;
452 static int pg_delay_d __read_mostly
;
453 static int pg_clone_skb_d __read_mostly
;
454 static int debug __read_mostly
;
456 static DEFINE_MUTEX(pktgen_thread_lock
);
458 static struct notifier_block pktgen_notifier_block
= {
459 .notifier_call
= pktgen_device_event
,
463 * /proc handling functions
467 static int pgctrl_show(struct seq_file
*seq
, void *v
)
469 seq_puts(seq
, version
);
473 static ssize_t
pgctrl_write(struct file
*file
, const char __user
*buf
,
474 size_t count
, loff_t
*ppos
)
478 struct pktgen_net
*pn
= net_generic(current
->nsproxy
->net_ns
, pg_net_id
);
480 if (!capable(CAP_NET_ADMIN
)) {
485 if (count
> sizeof(data
))
486 count
= sizeof(data
);
488 if (copy_from_user(data
, buf
, count
)) {
492 data
[count
- 1] = 0; /* Make string */
494 if (!strcmp(data
, "stop"))
495 pktgen_stop_all_threads_ifs(pn
);
497 else if (!strcmp(data
, "start"))
498 pktgen_run_all_threads(pn
);
500 else if (!strcmp(data
, "reset"))
501 pktgen_reset_all_threads(pn
);
504 pr_warning("Unknown command: %s\n", data
);
512 static int pgctrl_open(struct inode
*inode
, struct file
*file
)
514 return single_open(file
, pgctrl_show
, PDE_DATA(inode
));
517 static const struct file_operations pktgen_fops
= {
518 .owner
= THIS_MODULE
,
522 .write
= pgctrl_write
,
523 .release
= single_release
,
526 static int pktgen_if_show(struct seq_file
*seq
, void *v
)
528 const struct pktgen_dev
*pkt_dev
= seq
->private;
533 "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n",
534 (unsigned long long)pkt_dev
->count
, pkt_dev
->min_pkt_size
,
535 pkt_dev
->max_pkt_size
);
538 " frags: %d delay: %llu clone_skb: %d ifname: %s\n",
539 pkt_dev
->nfrags
, (unsigned long long) pkt_dev
->delay
,
540 pkt_dev
->clone_skb
, pkt_dev
->odevname
);
542 seq_printf(seq
, " flows: %u flowlen: %u\n", pkt_dev
->cflows
,
546 " queue_map_min: %u queue_map_max: %u\n",
547 pkt_dev
->queue_map_min
,
548 pkt_dev
->queue_map_max
);
550 if (pkt_dev
->skb_priority
)
551 seq_printf(seq
, " skb_priority: %u\n",
552 pkt_dev
->skb_priority
);
554 if (pkt_dev
->flags
& F_IPV6
) {
556 " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n"
557 " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n",
559 &pkt_dev
->min_in6_saddr
, &pkt_dev
->max_in6_saddr
,
561 &pkt_dev
->min_in6_daddr
, &pkt_dev
->max_in6_daddr
);
564 " dst_min: %s dst_max: %s\n",
565 pkt_dev
->dst_min
, pkt_dev
->dst_max
);
567 " src_min: %s src_max: %s\n",
568 pkt_dev
->src_min
, pkt_dev
->src_max
);
571 seq_puts(seq
, " src_mac: ");
573 seq_printf(seq
, "%pM ",
574 is_zero_ether_addr(pkt_dev
->src_mac
) ?
575 pkt_dev
->odev
->dev_addr
: pkt_dev
->src_mac
);
577 seq_printf(seq
, "dst_mac: ");
578 seq_printf(seq
, "%pM\n", pkt_dev
->dst_mac
);
581 " udp_src_min: %d udp_src_max: %d"
582 " udp_dst_min: %d udp_dst_max: %d\n",
583 pkt_dev
->udp_src_min
, pkt_dev
->udp_src_max
,
584 pkt_dev
->udp_dst_min
, pkt_dev
->udp_dst_max
);
587 " src_mac_count: %d dst_mac_count: %d\n",
588 pkt_dev
->src_mac_count
, pkt_dev
->dst_mac_count
);
590 if (pkt_dev
->nr_labels
) {
592 seq_printf(seq
, " mpls: ");
593 for (i
= 0; i
< pkt_dev
->nr_labels
; i
++)
594 seq_printf(seq
, "%08x%s", ntohl(pkt_dev
->labels
[i
]),
595 i
== pkt_dev
->nr_labels
-1 ? "\n" : ", ");
598 if (pkt_dev
->vlan_id
!= 0xffff)
599 seq_printf(seq
, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n",
600 pkt_dev
->vlan_id
, pkt_dev
->vlan_p
,
603 if (pkt_dev
->svlan_id
!= 0xffff)
604 seq_printf(seq
, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n",
605 pkt_dev
->svlan_id
, pkt_dev
->svlan_p
,
609 seq_printf(seq
, " tos: 0x%02x\n", pkt_dev
->tos
);
611 if (pkt_dev
->traffic_class
)
612 seq_printf(seq
, " traffic_class: 0x%02x\n", pkt_dev
->traffic_class
);
614 if (pkt_dev
->node
>= 0)
615 seq_printf(seq
, " node: %d\n", pkt_dev
->node
);
617 seq_printf(seq
, " Flags: ");
619 if (pkt_dev
->flags
& F_IPV6
)
620 seq_printf(seq
, "IPV6 ");
622 if (pkt_dev
->flags
& F_IPSRC_RND
)
623 seq_printf(seq
, "IPSRC_RND ");
625 if (pkt_dev
->flags
& F_IPDST_RND
)
626 seq_printf(seq
, "IPDST_RND ");
628 if (pkt_dev
->flags
& F_TXSIZE_RND
)
629 seq_printf(seq
, "TXSIZE_RND ");
631 if (pkt_dev
->flags
& F_UDPSRC_RND
)
632 seq_printf(seq
, "UDPSRC_RND ");
634 if (pkt_dev
->flags
& F_UDPDST_RND
)
635 seq_printf(seq
, "UDPDST_RND ");
637 if (pkt_dev
->flags
& F_UDPCSUM
)
638 seq_printf(seq
, "UDPCSUM ");
640 if (pkt_dev
->flags
& F_MPLS_RND
)
641 seq_printf(seq
, "MPLS_RND ");
643 if (pkt_dev
->flags
& F_QUEUE_MAP_RND
)
644 seq_printf(seq
, "QUEUE_MAP_RND ");
646 if (pkt_dev
->flags
& F_QUEUE_MAP_CPU
)
647 seq_printf(seq
, "QUEUE_MAP_CPU ");
649 if (pkt_dev
->cflows
) {
650 if (pkt_dev
->flags
& F_FLOW_SEQ
)
651 seq_printf(seq
, "FLOW_SEQ "); /*in sequence flows*/
653 seq_printf(seq
, "FLOW_RND ");
657 if (pkt_dev
->flags
& F_IPSEC_ON
)
658 seq_printf(seq
, "IPSEC ");
661 if (pkt_dev
->flags
& F_MACSRC_RND
)
662 seq_printf(seq
, "MACSRC_RND ");
664 if (pkt_dev
->flags
& F_MACDST_RND
)
665 seq_printf(seq
, "MACDST_RND ");
667 if (pkt_dev
->flags
& F_VID_RND
)
668 seq_printf(seq
, "VID_RND ");
670 if (pkt_dev
->flags
& F_SVID_RND
)
671 seq_printf(seq
, "SVID_RND ");
673 if (pkt_dev
->flags
& F_NODE
)
674 seq_printf(seq
, "NODE_ALLOC ");
678 /* not really stopped, more like last-running-at */
679 stopped
= pkt_dev
->running
? ktime_get() : pkt_dev
->stopped_at
;
680 idle
= pkt_dev
->idle_acc
;
681 do_div(idle
, NSEC_PER_USEC
);
684 "Current:\n pkts-sofar: %llu errors: %llu\n",
685 (unsigned long long)pkt_dev
->sofar
,
686 (unsigned long long)pkt_dev
->errors
);
689 " started: %lluus stopped: %lluus idle: %lluus\n",
690 (unsigned long long) ktime_to_us(pkt_dev
->started_at
),
691 (unsigned long long) ktime_to_us(stopped
),
692 (unsigned long long) idle
);
695 " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n",
696 pkt_dev
->seq_num
, pkt_dev
->cur_dst_mac_offset
,
697 pkt_dev
->cur_src_mac_offset
);
699 if (pkt_dev
->flags
& F_IPV6
) {
700 seq_printf(seq
, " cur_saddr: %pI6c cur_daddr: %pI6c\n",
701 &pkt_dev
->cur_in6_saddr
,
702 &pkt_dev
->cur_in6_daddr
);
704 seq_printf(seq
, " cur_saddr: %pI4 cur_daddr: %pI4\n",
705 &pkt_dev
->cur_saddr
, &pkt_dev
->cur_daddr
);
707 seq_printf(seq
, " cur_udp_dst: %d cur_udp_src: %d\n",
708 pkt_dev
->cur_udp_dst
, pkt_dev
->cur_udp_src
);
710 seq_printf(seq
, " cur_queue_map: %u\n", pkt_dev
->cur_queue_map
);
712 seq_printf(seq
, " flows: %u\n", pkt_dev
->nflows
);
714 if (pkt_dev
->result
[0])
715 seq_printf(seq
, "Result: %s\n", pkt_dev
->result
);
717 seq_printf(seq
, "Result: Idle\n");
723 static int hex32_arg(const char __user
*user_buffer
, unsigned long maxlen
,
729 for (; i
< maxlen
; i
++) {
733 if (get_user(c
, &user_buffer
[i
]))
735 value
= hex_to_bin(c
);
744 static int count_trail_chars(const char __user
* user_buffer
,
749 for (i
= 0; i
< maxlen
; i
++) {
751 if (get_user(c
, &user_buffer
[i
]))
769 static long num_arg(const char __user
*user_buffer
, unsigned long maxlen
,
775 for (i
= 0; i
< maxlen
; i
++) {
777 if (get_user(c
, &user_buffer
[i
]))
779 if ((c
>= '0') && (c
<= '9')) {
788 static int strn_len(const char __user
* user_buffer
, unsigned int maxlen
)
792 for (i
= 0; i
< maxlen
; i
++) {
794 if (get_user(c
, &user_buffer
[i
]))
812 static ssize_t
get_labels(const char __user
*buffer
, struct pktgen_dev
*pkt_dev
)
819 pkt_dev
->nr_labels
= 0;
822 len
= hex32_arg(&buffer
[i
], 8, &tmp
);
825 pkt_dev
->labels
[n
] = htonl(tmp
);
826 if (pkt_dev
->labels
[n
] & MPLS_STACK_BOTTOM
)
827 pkt_dev
->flags
|= F_MPLS_RND
;
829 if (get_user(c
, &buffer
[i
]))
833 if (n
>= MAX_MPLS_LABELS
)
837 pkt_dev
->nr_labels
= n
;
841 static ssize_t
pktgen_if_write(struct file
*file
,
842 const char __user
* user_buffer
, size_t count
,
845 struct seq_file
*seq
= file
->private_data
;
846 struct pktgen_dev
*pkt_dev
= seq
->private;
848 char name
[16], valstr
[32];
849 unsigned long value
= 0;
850 char *pg_result
= NULL
;
854 pg_result
= &(pkt_dev
->result
[0]);
857 pr_warning("wrong command format\n");
862 tmp
= count_trail_chars(user_buffer
, max
);
864 pr_warning("illegal format\n");
869 /* Read variable name */
871 len
= strn_len(&user_buffer
[i
], sizeof(name
) - 1);
875 memset(name
, 0, sizeof(name
));
876 if (copy_from_user(name
, &user_buffer
[i
], len
))
881 len
= count_trail_chars(&user_buffer
[i
], max
);
888 size_t copy
= min_t(size_t, count
, 1023);
890 if (copy_from_user(tb
, user_buffer
, copy
))
893 pr_debug("%s,%lu buffer -:%s:-\n",
894 name
, (unsigned long)count
, tb
);
897 if (!strcmp(name
, "min_pkt_size")) {
898 len
= num_arg(&user_buffer
[i
], 10, &value
);
903 if (value
< 14 + 20 + 8)
905 if (value
!= pkt_dev
->min_pkt_size
) {
906 pkt_dev
->min_pkt_size
= value
;
907 pkt_dev
->cur_pkt_size
= value
;
909 sprintf(pg_result
, "OK: min_pkt_size=%u",
910 pkt_dev
->min_pkt_size
);
914 if (!strcmp(name
, "max_pkt_size")) {
915 len
= num_arg(&user_buffer
[i
], 10, &value
);
920 if (value
< 14 + 20 + 8)
922 if (value
!= pkt_dev
->max_pkt_size
) {
923 pkt_dev
->max_pkt_size
= value
;
924 pkt_dev
->cur_pkt_size
= value
;
926 sprintf(pg_result
, "OK: max_pkt_size=%u",
927 pkt_dev
->max_pkt_size
);
931 /* Shortcut for min = max */
933 if (!strcmp(name
, "pkt_size")) {
934 len
= num_arg(&user_buffer
[i
], 10, &value
);
939 if (value
< 14 + 20 + 8)
941 if (value
!= pkt_dev
->min_pkt_size
) {
942 pkt_dev
->min_pkt_size
= value
;
943 pkt_dev
->max_pkt_size
= value
;
944 pkt_dev
->cur_pkt_size
= value
;
946 sprintf(pg_result
, "OK: pkt_size=%u", pkt_dev
->min_pkt_size
);
950 if (!strcmp(name
, "debug")) {
951 len
= num_arg(&user_buffer
[i
], 10, &value
);
957 sprintf(pg_result
, "OK: debug=%u", debug
);
961 if (!strcmp(name
, "frags")) {
962 len
= num_arg(&user_buffer
[i
], 10, &value
);
967 pkt_dev
->nfrags
= value
;
968 sprintf(pg_result
, "OK: frags=%u", pkt_dev
->nfrags
);
971 if (!strcmp(name
, "delay")) {
972 len
= num_arg(&user_buffer
[i
], 10, &value
);
977 if (value
== 0x7FFFFFFF)
978 pkt_dev
->delay
= ULLONG_MAX
;
980 pkt_dev
->delay
= (u64
)value
;
982 sprintf(pg_result
, "OK: delay=%llu",
983 (unsigned long long) pkt_dev
->delay
);
986 if (!strcmp(name
, "rate")) {
987 len
= num_arg(&user_buffer
[i
], 10, &value
);
994 pkt_dev
->delay
= pkt_dev
->min_pkt_size
*8*NSEC_PER_USEC
/value
;
996 pr_info("Delay set at: %llu ns\n", pkt_dev
->delay
);
998 sprintf(pg_result
, "OK: rate=%lu", value
);
1001 if (!strcmp(name
, "ratep")) {
1002 len
= num_arg(&user_buffer
[i
], 10, &value
);
1009 pkt_dev
->delay
= NSEC_PER_SEC
/value
;
1011 pr_info("Delay set at: %llu ns\n", pkt_dev
->delay
);
1013 sprintf(pg_result
, "OK: rate=%lu", value
);
1016 if (!strcmp(name
, "udp_src_min")) {
1017 len
= num_arg(&user_buffer
[i
], 10, &value
);
1022 if (value
!= pkt_dev
->udp_src_min
) {
1023 pkt_dev
->udp_src_min
= value
;
1024 pkt_dev
->cur_udp_src
= value
;
1026 sprintf(pg_result
, "OK: udp_src_min=%u", pkt_dev
->udp_src_min
);
1029 if (!strcmp(name
, "udp_dst_min")) {
1030 len
= num_arg(&user_buffer
[i
], 10, &value
);
1035 if (value
!= pkt_dev
->udp_dst_min
) {
1036 pkt_dev
->udp_dst_min
= value
;
1037 pkt_dev
->cur_udp_dst
= value
;
1039 sprintf(pg_result
, "OK: udp_dst_min=%u", pkt_dev
->udp_dst_min
);
1042 if (!strcmp(name
, "udp_src_max")) {
1043 len
= num_arg(&user_buffer
[i
], 10, &value
);
1048 if (value
!= pkt_dev
->udp_src_max
) {
1049 pkt_dev
->udp_src_max
= value
;
1050 pkt_dev
->cur_udp_src
= value
;
1052 sprintf(pg_result
, "OK: udp_src_max=%u", pkt_dev
->udp_src_max
);
1055 if (!strcmp(name
, "udp_dst_max")) {
1056 len
= num_arg(&user_buffer
[i
], 10, &value
);
1061 if (value
!= pkt_dev
->udp_dst_max
) {
1062 pkt_dev
->udp_dst_max
= value
;
1063 pkt_dev
->cur_udp_dst
= value
;
1065 sprintf(pg_result
, "OK: udp_dst_max=%u", pkt_dev
->udp_dst_max
);
1068 if (!strcmp(name
, "clone_skb")) {
1069 len
= num_arg(&user_buffer
[i
], 10, &value
);
1073 (!(pkt_dev
->odev
->priv_flags
& IFF_TX_SKB_SHARING
)))
1076 pkt_dev
->clone_skb
= value
;
1078 sprintf(pg_result
, "OK: clone_skb=%d", pkt_dev
->clone_skb
);
1081 if (!strcmp(name
, "count")) {
1082 len
= num_arg(&user_buffer
[i
], 10, &value
);
1087 pkt_dev
->count
= value
;
1088 sprintf(pg_result
, "OK: count=%llu",
1089 (unsigned long long)pkt_dev
->count
);
1092 if (!strcmp(name
, "src_mac_count")) {
1093 len
= num_arg(&user_buffer
[i
], 10, &value
);
1098 if (pkt_dev
->src_mac_count
!= value
) {
1099 pkt_dev
->src_mac_count
= value
;
1100 pkt_dev
->cur_src_mac_offset
= 0;
1102 sprintf(pg_result
, "OK: src_mac_count=%d",
1103 pkt_dev
->src_mac_count
);
1106 if (!strcmp(name
, "dst_mac_count")) {
1107 len
= num_arg(&user_buffer
[i
], 10, &value
);
1112 if (pkt_dev
->dst_mac_count
!= value
) {
1113 pkt_dev
->dst_mac_count
= value
;
1114 pkt_dev
->cur_dst_mac_offset
= 0;
1116 sprintf(pg_result
, "OK: dst_mac_count=%d",
1117 pkt_dev
->dst_mac_count
);
1120 if (!strcmp(name
, "node")) {
1121 len
= num_arg(&user_buffer
[i
], 10, &value
);
1127 if (node_possible(value
)) {
1128 pkt_dev
->node
= value
;
1129 sprintf(pg_result
, "OK: node=%d", pkt_dev
->node
);
1130 if (pkt_dev
->page
) {
1131 put_page(pkt_dev
->page
);
1132 pkt_dev
->page
= NULL
;
1136 sprintf(pg_result
, "ERROR: node not possible");
1139 if (!strcmp(name
, "flag")) {
1142 len
= strn_len(&user_buffer
[i
], sizeof(f
) - 1);
1146 if (copy_from_user(f
, &user_buffer
[i
], len
))
1149 if (strcmp(f
, "IPSRC_RND") == 0)
1150 pkt_dev
->flags
|= F_IPSRC_RND
;
1152 else if (strcmp(f
, "!IPSRC_RND") == 0)
1153 pkt_dev
->flags
&= ~F_IPSRC_RND
;
1155 else if (strcmp(f
, "TXSIZE_RND") == 0)
1156 pkt_dev
->flags
|= F_TXSIZE_RND
;
1158 else if (strcmp(f
, "!TXSIZE_RND") == 0)
1159 pkt_dev
->flags
&= ~F_TXSIZE_RND
;
1161 else if (strcmp(f
, "IPDST_RND") == 0)
1162 pkt_dev
->flags
|= F_IPDST_RND
;
1164 else if (strcmp(f
, "!IPDST_RND") == 0)
1165 pkt_dev
->flags
&= ~F_IPDST_RND
;
1167 else if (strcmp(f
, "UDPSRC_RND") == 0)
1168 pkt_dev
->flags
|= F_UDPSRC_RND
;
1170 else if (strcmp(f
, "!UDPSRC_RND") == 0)
1171 pkt_dev
->flags
&= ~F_UDPSRC_RND
;
1173 else if (strcmp(f
, "UDPDST_RND") == 0)
1174 pkt_dev
->flags
|= F_UDPDST_RND
;
1176 else if (strcmp(f
, "!UDPDST_RND") == 0)
1177 pkt_dev
->flags
&= ~F_UDPDST_RND
;
1179 else if (strcmp(f
, "MACSRC_RND") == 0)
1180 pkt_dev
->flags
|= F_MACSRC_RND
;
1182 else if (strcmp(f
, "!MACSRC_RND") == 0)
1183 pkt_dev
->flags
&= ~F_MACSRC_RND
;
1185 else if (strcmp(f
, "MACDST_RND") == 0)
1186 pkt_dev
->flags
|= F_MACDST_RND
;
1188 else if (strcmp(f
, "!MACDST_RND") == 0)
1189 pkt_dev
->flags
&= ~F_MACDST_RND
;
1191 else if (strcmp(f
, "MPLS_RND") == 0)
1192 pkt_dev
->flags
|= F_MPLS_RND
;
1194 else if (strcmp(f
, "!MPLS_RND") == 0)
1195 pkt_dev
->flags
&= ~F_MPLS_RND
;
1197 else if (strcmp(f
, "VID_RND") == 0)
1198 pkt_dev
->flags
|= F_VID_RND
;
1200 else if (strcmp(f
, "!VID_RND") == 0)
1201 pkt_dev
->flags
&= ~F_VID_RND
;
1203 else if (strcmp(f
, "SVID_RND") == 0)
1204 pkt_dev
->flags
|= F_SVID_RND
;
1206 else if (strcmp(f
, "!SVID_RND") == 0)
1207 pkt_dev
->flags
&= ~F_SVID_RND
;
1209 else if (strcmp(f
, "FLOW_SEQ") == 0)
1210 pkt_dev
->flags
|= F_FLOW_SEQ
;
1212 else if (strcmp(f
, "QUEUE_MAP_RND") == 0)
1213 pkt_dev
->flags
|= F_QUEUE_MAP_RND
;
1215 else if (strcmp(f
, "!QUEUE_MAP_RND") == 0)
1216 pkt_dev
->flags
&= ~F_QUEUE_MAP_RND
;
1218 else if (strcmp(f
, "QUEUE_MAP_CPU") == 0)
1219 pkt_dev
->flags
|= F_QUEUE_MAP_CPU
;
1221 else if (strcmp(f
, "!QUEUE_MAP_CPU") == 0)
1222 pkt_dev
->flags
&= ~F_QUEUE_MAP_CPU
;
1224 else if (strcmp(f
, "IPSEC") == 0)
1225 pkt_dev
->flags
|= F_IPSEC_ON
;
1228 else if (strcmp(f
, "!IPV6") == 0)
1229 pkt_dev
->flags
&= ~F_IPV6
;
1231 else if (strcmp(f
, "NODE_ALLOC") == 0)
1232 pkt_dev
->flags
|= F_NODE
;
1234 else if (strcmp(f
, "!NODE_ALLOC") == 0)
1235 pkt_dev
->flags
&= ~F_NODE
;
1237 else if (strcmp(f
, "UDPCSUM") == 0)
1238 pkt_dev
->flags
|= F_UDPCSUM
;
1240 else if (strcmp(f
, "!UDPCSUM") == 0)
1241 pkt_dev
->flags
&= ~F_UDPCSUM
;
1245 "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s",
1247 "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, "
1248 "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, IPSEC, NODE_ALLOC\n");
1251 sprintf(pg_result
, "OK: flags=0x%x", pkt_dev
->flags
);
1254 if (!strcmp(name
, "dst_min") || !strcmp(name
, "dst")) {
1255 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->dst_min
) - 1);
1259 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1262 if (strcmp(buf
, pkt_dev
->dst_min
) != 0) {
1263 memset(pkt_dev
->dst_min
, 0, sizeof(pkt_dev
->dst_min
));
1264 strncpy(pkt_dev
->dst_min
, buf
, len
);
1265 pkt_dev
->daddr_min
= in_aton(pkt_dev
->dst_min
);
1266 pkt_dev
->cur_daddr
= pkt_dev
->daddr_min
;
1269 pr_debug("dst_min set to: %s\n", pkt_dev
->dst_min
);
1271 sprintf(pg_result
, "OK: dst_min=%s", pkt_dev
->dst_min
);
1274 if (!strcmp(name
, "dst_max")) {
1275 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->dst_max
) - 1);
1280 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1284 if (strcmp(buf
, pkt_dev
->dst_max
) != 0) {
1285 memset(pkt_dev
->dst_max
, 0, sizeof(pkt_dev
->dst_max
));
1286 strncpy(pkt_dev
->dst_max
, buf
, len
);
1287 pkt_dev
->daddr_max
= in_aton(pkt_dev
->dst_max
);
1288 pkt_dev
->cur_daddr
= pkt_dev
->daddr_max
;
1291 pr_debug("dst_max set to: %s\n", pkt_dev
->dst_max
);
1293 sprintf(pg_result
, "OK: dst_max=%s", pkt_dev
->dst_max
);
1296 if (!strcmp(name
, "dst6")) {
1297 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1301 pkt_dev
->flags
|= F_IPV6
;
1303 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1307 in6_pton(buf
, -1, pkt_dev
->in6_daddr
.s6_addr
, -1, NULL
);
1308 snprintf(buf
, sizeof(buf
), "%pI6c", &pkt_dev
->in6_daddr
);
1310 pkt_dev
->cur_in6_daddr
= pkt_dev
->in6_daddr
;
1313 pr_debug("dst6 set to: %s\n", buf
);
1316 sprintf(pg_result
, "OK: dst6=%s", buf
);
1319 if (!strcmp(name
, "dst6_min")) {
1320 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1324 pkt_dev
->flags
|= F_IPV6
;
1326 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1330 in6_pton(buf
, -1, pkt_dev
->min_in6_daddr
.s6_addr
, -1, NULL
);
1331 snprintf(buf
, sizeof(buf
), "%pI6c", &pkt_dev
->min_in6_daddr
);
1333 pkt_dev
->cur_in6_daddr
= pkt_dev
->min_in6_daddr
;
1335 pr_debug("dst6_min set to: %s\n", buf
);
1338 sprintf(pg_result
, "OK: dst6_min=%s", buf
);
1341 if (!strcmp(name
, "dst6_max")) {
1342 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1346 pkt_dev
->flags
|= F_IPV6
;
1348 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1352 in6_pton(buf
, -1, pkt_dev
->max_in6_daddr
.s6_addr
, -1, NULL
);
1353 snprintf(buf
, sizeof(buf
), "%pI6c", &pkt_dev
->max_in6_daddr
);
1356 pr_debug("dst6_max set to: %s\n", buf
);
1359 sprintf(pg_result
, "OK: dst6_max=%s", buf
);
1362 if (!strcmp(name
, "src6")) {
1363 len
= strn_len(&user_buffer
[i
], sizeof(buf
) - 1);
1367 pkt_dev
->flags
|= F_IPV6
;
1369 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1373 in6_pton(buf
, -1, pkt_dev
->in6_saddr
.s6_addr
, -1, NULL
);
1374 snprintf(buf
, sizeof(buf
), "%pI6c", &pkt_dev
->in6_saddr
);
1376 pkt_dev
->cur_in6_saddr
= pkt_dev
->in6_saddr
;
1379 pr_debug("src6 set to: %s\n", buf
);
1382 sprintf(pg_result
, "OK: src6=%s", buf
);
1385 if (!strcmp(name
, "src_min")) {
1386 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->src_min
) - 1);
1390 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1393 if (strcmp(buf
, pkt_dev
->src_min
) != 0) {
1394 memset(pkt_dev
->src_min
, 0, sizeof(pkt_dev
->src_min
));
1395 strncpy(pkt_dev
->src_min
, buf
, len
);
1396 pkt_dev
->saddr_min
= in_aton(pkt_dev
->src_min
);
1397 pkt_dev
->cur_saddr
= pkt_dev
->saddr_min
;
1400 pr_debug("src_min set to: %s\n", pkt_dev
->src_min
);
1402 sprintf(pg_result
, "OK: src_min=%s", pkt_dev
->src_min
);
1405 if (!strcmp(name
, "src_max")) {
1406 len
= strn_len(&user_buffer
[i
], sizeof(pkt_dev
->src_max
) - 1);
1410 if (copy_from_user(buf
, &user_buffer
[i
], len
))
1413 if (strcmp(buf
, pkt_dev
->src_max
) != 0) {
1414 memset(pkt_dev
->src_max
, 0, sizeof(pkt_dev
->src_max
));
1415 strncpy(pkt_dev
->src_max
, buf
, len
);
1416 pkt_dev
->saddr_max
= in_aton(pkt_dev
->src_max
);
1417 pkt_dev
->cur_saddr
= pkt_dev
->saddr_max
;
1420 pr_debug("src_max set to: %s\n", pkt_dev
->src_max
);
1422 sprintf(pg_result
, "OK: src_max=%s", pkt_dev
->src_max
);
1425 if (!strcmp(name
, "dst_mac")) {
1426 len
= strn_len(&user_buffer
[i
], sizeof(valstr
) - 1);
1430 memset(valstr
, 0, sizeof(valstr
));
1431 if (copy_from_user(valstr
, &user_buffer
[i
], len
))
1434 if (!mac_pton(valstr
, pkt_dev
->dst_mac
))
1436 /* Set up Dest MAC */
1437 memcpy(&pkt_dev
->hh
[0], pkt_dev
->dst_mac
, ETH_ALEN
);
1439 sprintf(pg_result
, "OK: dstmac %pM", pkt_dev
->dst_mac
);
1442 if (!strcmp(name
, "src_mac")) {
1443 len
= strn_len(&user_buffer
[i
], sizeof(valstr
) - 1);
1447 memset(valstr
, 0, sizeof(valstr
));
1448 if (copy_from_user(valstr
, &user_buffer
[i
], len
))
1451 if (!mac_pton(valstr
, pkt_dev
->src_mac
))
1453 /* Set up Src MAC */
1454 memcpy(&pkt_dev
->hh
[6], pkt_dev
->src_mac
, ETH_ALEN
);
1456 sprintf(pg_result
, "OK: srcmac %pM", pkt_dev
->src_mac
);
1460 if (!strcmp(name
, "clear_counters")) {
1461 pktgen_clear_counters(pkt_dev
);
1462 sprintf(pg_result
, "OK: Clearing counters.\n");
1466 if (!strcmp(name
, "flows")) {
1467 len
= num_arg(&user_buffer
[i
], 10, &value
);
1472 if (value
> MAX_CFLOWS
)
1475 pkt_dev
->cflows
= value
;
1476 sprintf(pg_result
, "OK: flows=%u", pkt_dev
->cflows
);
1480 if (!strcmp(name
, "flowlen")) {
1481 len
= num_arg(&user_buffer
[i
], 10, &value
);
1486 pkt_dev
->lflow
= value
;
1487 sprintf(pg_result
, "OK: flowlen=%u", pkt_dev
->lflow
);
1491 if (!strcmp(name
, "queue_map_min")) {
1492 len
= num_arg(&user_buffer
[i
], 5, &value
);
1497 pkt_dev
->queue_map_min
= value
;
1498 sprintf(pg_result
, "OK: queue_map_min=%u", pkt_dev
->queue_map_min
);
1502 if (!strcmp(name
, "queue_map_max")) {
1503 len
= num_arg(&user_buffer
[i
], 5, &value
);
1508 pkt_dev
->queue_map_max
= value
;
1509 sprintf(pg_result
, "OK: queue_map_max=%u", pkt_dev
->queue_map_max
);
1513 if (!strcmp(name
, "mpls")) {
1514 unsigned int n
, cnt
;
1516 len
= get_labels(&user_buffer
[i
], pkt_dev
);
1520 cnt
= sprintf(pg_result
, "OK: mpls=");
1521 for (n
= 0; n
< pkt_dev
->nr_labels
; n
++)
1522 cnt
+= sprintf(pg_result
+ cnt
,
1523 "%08x%s", ntohl(pkt_dev
->labels
[n
]),
1524 n
== pkt_dev
->nr_labels
-1 ? "" : ",");
1526 if (pkt_dev
->nr_labels
&& pkt_dev
->vlan_id
!= 0xffff) {
1527 pkt_dev
->vlan_id
= 0xffff; /* turn off VLAN/SVLAN */
1528 pkt_dev
->svlan_id
= 0xffff;
1531 pr_debug("VLAN/SVLAN auto turned off\n");
1536 if (!strcmp(name
, "vlan_id")) {
1537 len
= num_arg(&user_buffer
[i
], 4, &value
);
1542 if (value
<= 4095) {
1543 pkt_dev
->vlan_id
= value
; /* turn on VLAN */
1546 pr_debug("VLAN turned on\n");
1548 if (debug
&& pkt_dev
->nr_labels
)
1549 pr_debug("MPLS auto turned off\n");
1551 pkt_dev
->nr_labels
= 0; /* turn off MPLS */
1552 sprintf(pg_result
, "OK: vlan_id=%u", pkt_dev
->vlan_id
);
1554 pkt_dev
->vlan_id
= 0xffff; /* turn off VLAN/SVLAN */
1555 pkt_dev
->svlan_id
= 0xffff;
1558 pr_debug("VLAN/SVLAN turned off\n");
1563 if (!strcmp(name
, "vlan_p")) {
1564 len
= num_arg(&user_buffer
[i
], 1, &value
);
1569 if ((value
<= 7) && (pkt_dev
->vlan_id
!= 0xffff)) {
1570 pkt_dev
->vlan_p
= value
;
1571 sprintf(pg_result
, "OK: vlan_p=%u", pkt_dev
->vlan_p
);
1573 sprintf(pg_result
, "ERROR: vlan_p must be 0-7");
1578 if (!strcmp(name
, "vlan_cfi")) {
1579 len
= num_arg(&user_buffer
[i
], 1, &value
);
1584 if ((value
<= 1) && (pkt_dev
->vlan_id
!= 0xffff)) {
1585 pkt_dev
->vlan_cfi
= value
;
1586 sprintf(pg_result
, "OK: vlan_cfi=%u", pkt_dev
->vlan_cfi
);
1588 sprintf(pg_result
, "ERROR: vlan_cfi must be 0-1");
1593 if (!strcmp(name
, "svlan_id")) {
1594 len
= num_arg(&user_buffer
[i
], 4, &value
);
1599 if ((value
<= 4095) && ((pkt_dev
->vlan_id
!= 0xffff))) {
1600 pkt_dev
->svlan_id
= value
; /* turn on SVLAN */
1603 pr_debug("SVLAN turned on\n");
1605 if (debug
&& pkt_dev
->nr_labels
)
1606 pr_debug("MPLS auto turned off\n");
1608 pkt_dev
->nr_labels
= 0; /* turn off MPLS */
1609 sprintf(pg_result
, "OK: svlan_id=%u", pkt_dev
->svlan_id
);
1611 pkt_dev
->vlan_id
= 0xffff; /* turn off VLAN/SVLAN */
1612 pkt_dev
->svlan_id
= 0xffff;
1615 pr_debug("VLAN/SVLAN turned off\n");
1620 if (!strcmp(name
, "svlan_p")) {
1621 len
= num_arg(&user_buffer
[i
], 1, &value
);
1626 if ((value
<= 7) && (pkt_dev
->svlan_id
!= 0xffff)) {
1627 pkt_dev
->svlan_p
= value
;
1628 sprintf(pg_result
, "OK: svlan_p=%u", pkt_dev
->svlan_p
);
1630 sprintf(pg_result
, "ERROR: svlan_p must be 0-7");
1635 if (!strcmp(name
, "svlan_cfi")) {
1636 len
= num_arg(&user_buffer
[i
], 1, &value
);
1641 if ((value
<= 1) && (pkt_dev
->svlan_id
!= 0xffff)) {
1642 pkt_dev
->svlan_cfi
= value
;
1643 sprintf(pg_result
, "OK: svlan_cfi=%u", pkt_dev
->svlan_cfi
);
1645 sprintf(pg_result
, "ERROR: svlan_cfi must be 0-1");
1650 if (!strcmp(name
, "tos")) {
1651 __u32 tmp_value
= 0;
1652 len
= hex32_arg(&user_buffer
[i
], 2, &tmp_value
);
1658 pkt_dev
->tos
= tmp_value
;
1659 sprintf(pg_result
, "OK: tos=0x%02x", pkt_dev
->tos
);
1661 sprintf(pg_result
, "ERROR: tos must be 00-ff");
1666 if (!strcmp(name
, "traffic_class")) {
1667 __u32 tmp_value
= 0;
1668 len
= hex32_arg(&user_buffer
[i
], 2, &tmp_value
);
1674 pkt_dev
->traffic_class
= tmp_value
;
1675 sprintf(pg_result
, "OK: traffic_class=0x%02x", pkt_dev
->traffic_class
);
1677 sprintf(pg_result
, "ERROR: traffic_class must be 00-ff");
1682 if (!strcmp(name
, "skb_priority")) {
1683 len
= num_arg(&user_buffer
[i
], 9, &value
);
1688 pkt_dev
->skb_priority
= value
;
1689 sprintf(pg_result
, "OK: skb_priority=%i",
1690 pkt_dev
->skb_priority
);
1694 sprintf(pkt_dev
->result
, "No such parameter \"%s\"", name
);
1698 static int pktgen_if_open(struct inode
*inode
, struct file
*file
)
1700 return single_open(file
, pktgen_if_show
, PDE_DATA(inode
));
1703 static const struct file_operations pktgen_if_fops
= {
1704 .owner
= THIS_MODULE
,
1705 .open
= pktgen_if_open
,
1707 .llseek
= seq_lseek
,
1708 .write
= pktgen_if_write
,
1709 .release
= single_release
,
1712 static int pktgen_thread_show(struct seq_file
*seq
, void *v
)
1714 struct pktgen_thread
*t
= seq
->private;
1715 const struct pktgen_dev
*pkt_dev
;
1719 seq_printf(seq
, "Running: ");
1722 list_for_each_entry(pkt_dev
, &t
->if_list
, list
)
1723 if (pkt_dev
->running
)
1724 seq_printf(seq
, "%s ", pkt_dev
->odevname
);
1726 seq_printf(seq
, "\nStopped: ");
1728 list_for_each_entry(pkt_dev
, &t
->if_list
, list
)
1729 if (!pkt_dev
->running
)
1730 seq_printf(seq
, "%s ", pkt_dev
->odevname
);
1733 seq_printf(seq
, "\nResult: %s\n", t
->result
);
1735 seq_printf(seq
, "\nResult: NA\n");
1742 static ssize_t
pktgen_thread_write(struct file
*file
,
1743 const char __user
* user_buffer
,
1744 size_t count
, loff_t
* offset
)
1746 struct seq_file
*seq
= file
->private_data
;
1747 struct pktgen_thread
*t
= seq
->private;
1748 int i
, max
, len
, ret
;
1753 // sprintf(pg_result, "Wrong command format");
1758 len
= count_trail_chars(user_buffer
, max
);
1764 /* Read variable name */
1766 len
= strn_len(&user_buffer
[i
], sizeof(name
) - 1);
1770 memset(name
, 0, sizeof(name
));
1771 if (copy_from_user(name
, &user_buffer
[i
], len
))
1776 len
= count_trail_chars(&user_buffer
[i
], max
);
1783 pr_debug("t=%s, count=%lu\n", name
, (unsigned long)count
);
1786 pr_err("ERROR: No thread\n");
1791 pg_result
= &(t
->result
[0]);
1793 if (!strcmp(name
, "add_device")) {
1796 len
= strn_len(&user_buffer
[i
], sizeof(f
) - 1);
1801 if (copy_from_user(f
, &user_buffer
[i
], len
))
1804 mutex_lock(&pktgen_thread_lock
);
1805 ret
= pktgen_add_device(t
, f
);
1806 mutex_unlock(&pktgen_thread_lock
);
1809 sprintf(pg_result
, "OK: add_device=%s", f
);
1811 sprintf(pg_result
, "ERROR: can not add device %s", f
);
1815 if (!strcmp(name
, "rem_device_all")) {
1816 mutex_lock(&pktgen_thread_lock
);
1817 t
->control
|= T_REMDEVALL
;
1818 mutex_unlock(&pktgen_thread_lock
);
1819 schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */
1821 sprintf(pg_result
, "OK: rem_device_all");
1825 if (!strcmp(name
, "max_before_softirq")) {
1826 sprintf(pg_result
, "OK: Note! max_before_softirq is obsoleted -- Do not use");
1836 static int pktgen_thread_open(struct inode
*inode
, struct file
*file
)
1838 return single_open(file
, pktgen_thread_show
, PDE_DATA(inode
));
1841 static const struct file_operations pktgen_thread_fops
= {
1842 .owner
= THIS_MODULE
,
1843 .open
= pktgen_thread_open
,
1845 .llseek
= seq_lseek
,
1846 .write
= pktgen_thread_write
,
1847 .release
= single_release
,
1850 /* Think find or remove for NN */
1851 static struct pktgen_dev
*__pktgen_NN_threads(const struct pktgen_net
*pn
,
1852 const char *ifname
, int remove
)
1854 struct pktgen_thread
*t
;
1855 struct pktgen_dev
*pkt_dev
= NULL
;
1856 bool exact
= (remove
== FIND
);
1858 list_for_each_entry(t
, &pn
->pktgen_threads
, th_list
) {
1859 pkt_dev
= pktgen_find_dev(t
, ifname
, exact
);
1863 pkt_dev
->removal_mark
= 1;
1864 t
->control
|= T_REMDEV
;
1874 * mark a device for removal
1876 static void pktgen_mark_device(const struct pktgen_net
*pn
, const char *ifname
)
1878 struct pktgen_dev
*pkt_dev
= NULL
;
1879 const int max_tries
= 10, msec_per_try
= 125;
1882 mutex_lock(&pktgen_thread_lock
);
1883 pr_debug("%s: marking %s for removal\n", __func__
, ifname
);
1887 pkt_dev
= __pktgen_NN_threads(pn
, ifname
, REMOVE
);
1888 if (pkt_dev
== NULL
)
1889 break; /* success */
1891 mutex_unlock(&pktgen_thread_lock
);
1892 pr_debug("%s: waiting for %s to disappear....\n",
1894 schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try
));
1895 mutex_lock(&pktgen_thread_lock
);
1897 if (++i
>= max_tries
) {
1898 pr_err("%s: timed out after waiting %d msec for device %s to be removed\n",
1899 __func__
, msec_per_try
* i
, ifname
);
1905 mutex_unlock(&pktgen_thread_lock
);
1908 static void pktgen_change_name(const struct pktgen_net
*pn
, struct net_device
*dev
)
1910 struct pktgen_thread
*t
;
1912 list_for_each_entry(t
, &pn
->pktgen_threads
, th_list
) {
1913 struct pktgen_dev
*pkt_dev
;
1915 list_for_each_entry(pkt_dev
, &t
->if_list
, list
) {
1916 if (pkt_dev
->odev
!= dev
)
1919 proc_remove(pkt_dev
->entry
);
1921 pkt_dev
->entry
= proc_create_data(dev
->name
, 0600,
1925 if (!pkt_dev
->entry
)
1926 pr_err("can't move proc entry for '%s'\n",
1933 static int pktgen_device_event(struct notifier_block
*unused
,
1934 unsigned long event
, void *ptr
)
1936 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
1937 struct pktgen_net
*pn
= net_generic(dev_net(dev
), pg_net_id
);
1939 if (pn
->pktgen_exiting
)
1942 /* It is OK that we do not hold the group lock right now,
1943 * as we run under the RTNL lock.
1947 case NETDEV_CHANGENAME
:
1948 pktgen_change_name(pn
, dev
);
1951 case NETDEV_UNREGISTER
:
1952 pktgen_mark_device(pn
, dev
->name
);
1959 static struct net_device
*pktgen_dev_get_by_name(const struct pktgen_net
*pn
,
1960 struct pktgen_dev
*pkt_dev
,
1966 for (i
= 0; ifname
[i
] != '@'; i
++) {
1974 return dev_get_by_name(pn
->net
, b
);
1978 /* Associate pktgen_dev with a device. */
1980 static int pktgen_setup_dev(const struct pktgen_net
*pn
,
1981 struct pktgen_dev
*pkt_dev
, const char *ifname
)
1983 struct net_device
*odev
;
1986 /* Clean old setups */
1987 if (pkt_dev
->odev
) {
1988 dev_put(pkt_dev
->odev
);
1989 pkt_dev
->odev
= NULL
;
1992 odev
= pktgen_dev_get_by_name(pn
, pkt_dev
, ifname
);
1994 pr_err("no such netdevice: \"%s\"\n", ifname
);
1998 if (odev
->type
!= ARPHRD_ETHER
) {
1999 pr_err("not an ethernet device: \"%s\"\n", ifname
);
2001 } else if (!netif_running(odev
)) {
2002 pr_err("device is down: \"%s\"\n", ifname
);
2005 pkt_dev
->odev
= odev
;
2013 /* Read pkt_dev from the interface and set up internal pktgen_dev
2014 * structure to have the right information to create/send packets
2016 static void pktgen_setup_inject(struct pktgen_dev
*pkt_dev
)
2020 if (!pkt_dev
->odev
) {
2021 pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n");
2022 sprintf(pkt_dev
->result
,
2023 "ERROR: pkt_dev->odev == NULL in setup_inject.\n");
2027 /* make sure that we don't pick a non-existing transmit queue */
2028 ntxq
= pkt_dev
->odev
->real_num_tx_queues
;
2030 if (ntxq
<= pkt_dev
->queue_map_min
) {
2031 pr_warning("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2032 pkt_dev
->queue_map_min
, (ntxq
?: 1) - 1, ntxq
,
2034 pkt_dev
->queue_map_min
= (ntxq
?: 1) - 1;
2036 if (pkt_dev
->queue_map_max
>= ntxq
) {
2037 pr_warning("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n",
2038 pkt_dev
->queue_map_max
, (ntxq
?: 1) - 1, ntxq
,
2040 pkt_dev
->queue_map_max
= (ntxq
?: 1) - 1;
2043 /* Default to the interface's mac if not explicitly set. */
2045 if (is_zero_ether_addr(pkt_dev
->src_mac
))
2046 memcpy(&(pkt_dev
->hh
[6]), pkt_dev
->odev
->dev_addr
, ETH_ALEN
);
2048 /* Set up Dest MAC */
2049 memcpy(&(pkt_dev
->hh
[0]), pkt_dev
->dst_mac
, ETH_ALEN
);
2051 if (pkt_dev
->flags
& F_IPV6
) {
2052 int i
, set
= 0, err
= 1;
2053 struct inet6_dev
*idev
;
2055 if (pkt_dev
->min_pkt_size
== 0) {
2056 pkt_dev
->min_pkt_size
= 14 + sizeof(struct ipv6hdr
)
2057 + sizeof(struct udphdr
)
2058 + sizeof(struct pktgen_hdr
)
2059 + pkt_dev
->pkt_overhead
;
2062 for (i
= 0; i
< IN6_ADDR_HSIZE
; i
++)
2063 if (pkt_dev
->cur_in6_saddr
.s6_addr
[i
]) {
2071 * Use linklevel address if unconfigured.
2073 * use ipv6_get_lladdr if/when it's get exported
2077 idev
= __in6_dev_get(pkt_dev
->odev
);
2079 struct inet6_ifaddr
*ifp
;
2081 read_lock_bh(&idev
->lock
);
2082 list_for_each_entry(ifp
, &idev
->addr_list
, if_list
) {
2083 if ((ifp
->scope
& IFA_LINK
) &&
2084 !(ifp
->flags
& IFA_F_TENTATIVE
)) {
2085 pkt_dev
->cur_in6_saddr
= ifp
->addr
;
2090 read_unlock_bh(&idev
->lock
);
2094 pr_err("ERROR: IPv6 link address not available\n");
2097 if (pkt_dev
->min_pkt_size
== 0) {
2098 pkt_dev
->min_pkt_size
= 14 + sizeof(struct iphdr
)
2099 + sizeof(struct udphdr
)
2100 + sizeof(struct pktgen_hdr
)
2101 + pkt_dev
->pkt_overhead
;
2104 pkt_dev
->saddr_min
= 0;
2105 pkt_dev
->saddr_max
= 0;
2106 if (strlen(pkt_dev
->src_min
) == 0) {
2108 struct in_device
*in_dev
;
2111 in_dev
= __in_dev_get_rcu(pkt_dev
->odev
);
2113 if (in_dev
->ifa_list
) {
2114 pkt_dev
->saddr_min
=
2115 in_dev
->ifa_list
->ifa_address
;
2116 pkt_dev
->saddr_max
= pkt_dev
->saddr_min
;
2121 pkt_dev
->saddr_min
= in_aton(pkt_dev
->src_min
);
2122 pkt_dev
->saddr_max
= in_aton(pkt_dev
->src_max
);
2125 pkt_dev
->daddr_min
= in_aton(pkt_dev
->dst_min
);
2126 pkt_dev
->daddr_max
= in_aton(pkt_dev
->dst_max
);
2128 /* Initialize current values. */
2129 pkt_dev
->cur_pkt_size
= pkt_dev
->min_pkt_size
;
2130 if (pkt_dev
->min_pkt_size
> pkt_dev
->max_pkt_size
)
2131 pkt_dev
->max_pkt_size
= pkt_dev
->min_pkt_size
;
2133 pkt_dev
->cur_dst_mac_offset
= 0;
2134 pkt_dev
->cur_src_mac_offset
= 0;
2135 pkt_dev
->cur_saddr
= pkt_dev
->saddr_min
;
2136 pkt_dev
->cur_daddr
= pkt_dev
->daddr_min
;
2137 pkt_dev
->cur_udp_dst
= pkt_dev
->udp_dst_min
;
2138 pkt_dev
->cur_udp_src
= pkt_dev
->udp_src_min
;
2139 pkt_dev
->nflows
= 0;
2143 static void spin(struct pktgen_dev
*pkt_dev
, ktime_t spin_until
)
2145 ktime_t start_time
, end_time
;
2147 struct hrtimer_sleeper t
;
2149 hrtimer_init_on_stack(&t
.timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_ABS
);
2150 hrtimer_set_expires(&t
.timer
, spin_until
);
2152 remaining
= ktime_to_ns(hrtimer_expires_remaining(&t
.timer
));
2153 if (remaining
<= 0) {
2154 pkt_dev
->next_tx
= ktime_add_ns(spin_until
, pkt_dev
->delay
);
2158 start_time
= ktime_get();
2159 if (remaining
< 100000) {
2160 /* for small delays (<100us), just loop until limit is reached */
2162 end_time
= ktime_get();
2163 } while (ktime_compare(end_time
, spin_until
) < 0);
2165 /* see do_nanosleep */
2166 hrtimer_init_sleeper(&t
, current
);
2168 set_current_state(TASK_INTERRUPTIBLE
);
2169 hrtimer_start_expires(&t
.timer
, HRTIMER_MODE_ABS
);
2170 if (!hrtimer_active(&t
.timer
))
2176 hrtimer_cancel(&t
.timer
);
2177 } while (t
.task
&& pkt_dev
->running
&& !signal_pending(current
));
2178 __set_current_state(TASK_RUNNING
);
2179 end_time
= ktime_get();
2182 pkt_dev
->idle_acc
+= ktime_to_ns(ktime_sub(end_time
, start_time
));
2183 pkt_dev
->next_tx
= ktime_add_ns(spin_until
, pkt_dev
->delay
);
2186 static inline void set_pkt_overhead(struct pktgen_dev
*pkt_dev
)
2188 pkt_dev
->pkt_overhead
= 0;
2189 pkt_dev
->pkt_overhead
+= pkt_dev
->nr_labels
*sizeof(u32
);
2190 pkt_dev
->pkt_overhead
+= VLAN_TAG_SIZE(pkt_dev
);
2191 pkt_dev
->pkt_overhead
+= SVLAN_TAG_SIZE(pkt_dev
);
2194 static inline int f_seen(const struct pktgen_dev
*pkt_dev
, int flow
)
2196 return !!(pkt_dev
->flows
[flow
].flags
& F_INIT
);
2199 static inline int f_pick(struct pktgen_dev
*pkt_dev
)
2201 int flow
= pkt_dev
->curfl
;
2203 if (pkt_dev
->flags
& F_FLOW_SEQ
) {
2204 if (pkt_dev
->flows
[flow
].count
>= pkt_dev
->lflow
) {
2206 pkt_dev
->flows
[flow
].count
= 0;
2207 pkt_dev
->flows
[flow
].flags
= 0;
2208 pkt_dev
->curfl
+= 1;
2209 if (pkt_dev
->curfl
>= pkt_dev
->cflows
)
2210 pkt_dev
->curfl
= 0; /*reset */
2213 flow
= prandom_u32() % pkt_dev
->cflows
;
2214 pkt_dev
->curfl
= flow
;
2216 if (pkt_dev
->flows
[flow
].count
> pkt_dev
->lflow
) {
2217 pkt_dev
->flows
[flow
].count
= 0;
2218 pkt_dev
->flows
[flow
].flags
= 0;
2222 return pkt_dev
->curfl
;
2227 /* If there was already an IPSEC SA, we keep it as is, else
2228 * we go look for it ...
2230 #define DUMMY_MARK 0
2231 static void get_ipsec_sa(struct pktgen_dev
*pkt_dev
, int flow
)
2233 struct xfrm_state
*x
= pkt_dev
->flows
[flow
].x
;
2234 struct pktgen_net
*pn
= net_generic(dev_net(pkt_dev
->odev
), pg_net_id
);
2236 /*slow path: we dont already have xfrm_state*/
2237 x
= xfrm_stateonly_find(pn
->net
, DUMMY_MARK
,
2238 (xfrm_address_t
*)&pkt_dev
->cur_daddr
,
2239 (xfrm_address_t
*)&pkt_dev
->cur_saddr
,
2242 pkt_dev
->ipsproto
, 0);
2244 pkt_dev
->flows
[flow
].x
= x
;
2245 set_pkt_overhead(pkt_dev
);
2246 pkt_dev
->pkt_overhead
+= x
->props
.header_len
;
2252 static void set_cur_queue_map(struct pktgen_dev
*pkt_dev
)
2255 if (pkt_dev
->flags
& F_QUEUE_MAP_CPU
)
2256 pkt_dev
->cur_queue_map
= smp_processor_id();
2258 else if (pkt_dev
->queue_map_min
<= pkt_dev
->queue_map_max
) {
2260 if (pkt_dev
->flags
& F_QUEUE_MAP_RND
) {
2262 (pkt_dev
->queue_map_max
-
2263 pkt_dev
->queue_map_min
+ 1)
2264 + pkt_dev
->queue_map_min
;
2266 t
= pkt_dev
->cur_queue_map
+ 1;
2267 if (t
> pkt_dev
->queue_map_max
)
2268 t
= pkt_dev
->queue_map_min
;
2270 pkt_dev
->cur_queue_map
= t
;
2272 pkt_dev
->cur_queue_map
= pkt_dev
->cur_queue_map
% pkt_dev
->odev
->real_num_tx_queues
;
2275 /* Increment/randomize headers according to flags and current values
2276 * for IP src/dest, UDP src/dst port, MAC-Addr src/dst
2278 static void mod_cur_headers(struct pktgen_dev
*pkt_dev
)
2284 if (pkt_dev
->cflows
)
2285 flow
= f_pick(pkt_dev
);
2287 /* Deal with source MAC */
2288 if (pkt_dev
->src_mac_count
> 1) {
2292 if (pkt_dev
->flags
& F_MACSRC_RND
)
2293 mc
= prandom_u32() % pkt_dev
->src_mac_count
;
2295 mc
= pkt_dev
->cur_src_mac_offset
++;
2296 if (pkt_dev
->cur_src_mac_offset
>=
2297 pkt_dev
->src_mac_count
)
2298 pkt_dev
->cur_src_mac_offset
= 0;
2301 tmp
= pkt_dev
->src_mac
[5] + (mc
& 0xFF);
2302 pkt_dev
->hh
[11] = tmp
;
2303 tmp
= (pkt_dev
->src_mac
[4] + ((mc
>> 8) & 0xFF) + (tmp
>> 8));
2304 pkt_dev
->hh
[10] = tmp
;
2305 tmp
= (pkt_dev
->src_mac
[3] + ((mc
>> 16) & 0xFF) + (tmp
>> 8));
2306 pkt_dev
->hh
[9] = tmp
;
2307 tmp
= (pkt_dev
->src_mac
[2] + ((mc
>> 24) & 0xFF) + (tmp
>> 8));
2308 pkt_dev
->hh
[8] = tmp
;
2309 tmp
= (pkt_dev
->src_mac
[1] + (tmp
>> 8));
2310 pkt_dev
->hh
[7] = tmp
;
2313 /* Deal with Destination MAC */
2314 if (pkt_dev
->dst_mac_count
> 1) {
2318 if (pkt_dev
->flags
& F_MACDST_RND
)
2319 mc
= prandom_u32() % pkt_dev
->dst_mac_count
;
2322 mc
= pkt_dev
->cur_dst_mac_offset
++;
2323 if (pkt_dev
->cur_dst_mac_offset
>=
2324 pkt_dev
->dst_mac_count
) {
2325 pkt_dev
->cur_dst_mac_offset
= 0;
2329 tmp
= pkt_dev
->dst_mac
[5] + (mc
& 0xFF);
2330 pkt_dev
->hh
[5] = tmp
;
2331 tmp
= (pkt_dev
->dst_mac
[4] + ((mc
>> 8) & 0xFF) + (tmp
>> 8));
2332 pkt_dev
->hh
[4] = tmp
;
2333 tmp
= (pkt_dev
->dst_mac
[3] + ((mc
>> 16) & 0xFF) + (tmp
>> 8));
2334 pkt_dev
->hh
[3] = tmp
;
2335 tmp
= (pkt_dev
->dst_mac
[2] + ((mc
>> 24) & 0xFF) + (tmp
>> 8));
2336 pkt_dev
->hh
[2] = tmp
;
2337 tmp
= (pkt_dev
->dst_mac
[1] + (tmp
>> 8));
2338 pkt_dev
->hh
[1] = tmp
;
2341 if (pkt_dev
->flags
& F_MPLS_RND
) {
2343 for (i
= 0; i
< pkt_dev
->nr_labels
; i
++)
2344 if (pkt_dev
->labels
[i
] & MPLS_STACK_BOTTOM
)
2345 pkt_dev
->labels
[i
] = MPLS_STACK_BOTTOM
|
2346 ((__force __be32
)prandom_u32() &
2350 if ((pkt_dev
->flags
& F_VID_RND
) && (pkt_dev
->vlan_id
!= 0xffff)) {
2351 pkt_dev
->vlan_id
= prandom_u32() & (4096 - 1);
2354 if ((pkt_dev
->flags
& F_SVID_RND
) && (pkt_dev
->svlan_id
!= 0xffff)) {
2355 pkt_dev
->svlan_id
= prandom_u32() & (4096 - 1);
2358 if (pkt_dev
->udp_src_min
< pkt_dev
->udp_src_max
) {
2359 if (pkt_dev
->flags
& F_UDPSRC_RND
)
2360 pkt_dev
->cur_udp_src
= prandom_u32() %
2361 (pkt_dev
->udp_src_max
- pkt_dev
->udp_src_min
)
2362 + pkt_dev
->udp_src_min
;
2365 pkt_dev
->cur_udp_src
++;
2366 if (pkt_dev
->cur_udp_src
>= pkt_dev
->udp_src_max
)
2367 pkt_dev
->cur_udp_src
= pkt_dev
->udp_src_min
;
2371 if (pkt_dev
->udp_dst_min
< pkt_dev
->udp_dst_max
) {
2372 if (pkt_dev
->flags
& F_UDPDST_RND
) {
2373 pkt_dev
->cur_udp_dst
= prandom_u32() %
2374 (pkt_dev
->udp_dst_max
- pkt_dev
->udp_dst_min
)
2375 + pkt_dev
->udp_dst_min
;
2377 pkt_dev
->cur_udp_dst
++;
2378 if (pkt_dev
->cur_udp_dst
>= pkt_dev
->udp_dst_max
)
2379 pkt_dev
->cur_udp_dst
= pkt_dev
->udp_dst_min
;
2383 if (!(pkt_dev
->flags
& F_IPV6
)) {
2385 imn
= ntohl(pkt_dev
->saddr_min
);
2386 imx
= ntohl(pkt_dev
->saddr_max
);
2389 if (pkt_dev
->flags
& F_IPSRC_RND
)
2390 t
= prandom_u32() % (imx
- imn
) + imn
;
2392 t
= ntohl(pkt_dev
->cur_saddr
);
2398 pkt_dev
->cur_saddr
= htonl(t
);
2401 if (pkt_dev
->cflows
&& f_seen(pkt_dev
, flow
)) {
2402 pkt_dev
->cur_daddr
= pkt_dev
->flows
[flow
].cur_daddr
;
2404 imn
= ntohl(pkt_dev
->daddr_min
);
2405 imx
= ntohl(pkt_dev
->daddr_max
);
2409 if (pkt_dev
->flags
& F_IPDST_RND
) {
2415 } while (ipv4_is_loopback(s
) ||
2416 ipv4_is_multicast(s
) ||
2417 ipv4_is_lbcast(s
) ||
2418 ipv4_is_zeronet(s
) ||
2419 ipv4_is_local_multicast(s
));
2420 pkt_dev
->cur_daddr
= s
;
2422 t
= ntohl(pkt_dev
->cur_daddr
);
2427 pkt_dev
->cur_daddr
= htonl(t
);
2430 if (pkt_dev
->cflows
) {
2431 pkt_dev
->flows
[flow
].flags
|= F_INIT
;
2432 pkt_dev
->flows
[flow
].cur_daddr
=
2435 if (pkt_dev
->flags
& F_IPSEC_ON
)
2436 get_ipsec_sa(pkt_dev
, flow
);
2441 } else { /* IPV6 * */
2443 if (!ipv6_addr_any(&pkt_dev
->min_in6_daddr
)) {
2446 /* Only random destinations yet */
2448 for (i
= 0; i
< 4; i
++) {
2449 pkt_dev
->cur_in6_daddr
.s6_addr32
[i
] =
2450 (((__force __be32
)prandom_u32() |
2451 pkt_dev
->min_in6_daddr
.s6_addr32
[i
]) &
2452 pkt_dev
->max_in6_daddr
.s6_addr32
[i
]);
2457 if (pkt_dev
->min_pkt_size
< pkt_dev
->max_pkt_size
) {
2459 if (pkt_dev
->flags
& F_TXSIZE_RND
) {
2461 (pkt_dev
->max_pkt_size
- pkt_dev
->min_pkt_size
)
2462 + pkt_dev
->min_pkt_size
;
2464 t
= pkt_dev
->cur_pkt_size
+ 1;
2465 if (t
> pkt_dev
->max_pkt_size
)
2466 t
= pkt_dev
->min_pkt_size
;
2468 pkt_dev
->cur_pkt_size
= t
;
2471 set_cur_queue_map(pkt_dev
);
2473 pkt_dev
->flows
[flow
].count
++;
2478 static int pktgen_output_ipsec(struct sk_buff
*skb
, struct pktgen_dev
*pkt_dev
)
2480 struct xfrm_state
*x
= pkt_dev
->flows
[pkt_dev
->curfl
].x
;
2485 /* XXX: we dont support tunnel mode for now until
2486 * we resolve the dst issue */
2487 if (x
->props
.mode
!= XFRM_MODE_TRANSPORT
)
2490 spin_lock(&x
->lock
);
2492 err
= x
->outer_mode
->output(x
, skb
);
2495 err
= x
->type
->output(x
, skb
);
2499 x
->curlft
.bytes
+= skb
->len
;
2500 x
->curlft
.packets
++;
2502 spin_unlock(&x
->lock
);
2506 static void free_SAs(struct pktgen_dev
*pkt_dev
)
2508 if (pkt_dev
->cflows
) {
2509 /* let go of the SAs if we have them */
2511 for (i
= 0; i
< pkt_dev
->cflows
; i
++) {
2512 struct xfrm_state
*x
= pkt_dev
->flows
[i
].x
;
2515 pkt_dev
->flows
[i
].x
= NULL
;
2521 static int process_ipsec(struct pktgen_dev
*pkt_dev
,
2522 struct sk_buff
*skb
, __be16 protocol
)
2524 if (pkt_dev
->flags
& F_IPSEC_ON
) {
2525 struct xfrm_state
*x
= pkt_dev
->flows
[pkt_dev
->curfl
].x
;
2530 nhead
= x
->props
.header_len
- skb_headroom(skb
);
2532 ret
= pskb_expand_head(skb
, nhead
, 0, GFP_ATOMIC
);
2534 pr_err("Error expanding ipsec packet %d\n",
2540 /* ipsec is not expecting ll header */
2541 skb_pull(skb
, ETH_HLEN
);
2542 ret
= pktgen_output_ipsec(skb
, pkt_dev
);
2544 pr_err("Error creating ipsec packet %d\n", ret
);
2548 eth
= (__u8
*) skb_push(skb
, ETH_HLEN
);
2549 memcpy(eth
, pkt_dev
->hh
, 12);
2550 *(u16
*) ð
[12] = protocol
;
2560 static void mpls_push(__be32
*mpls
, struct pktgen_dev
*pkt_dev
)
2563 for (i
= 0; i
< pkt_dev
->nr_labels
; i
++)
2564 *mpls
++ = pkt_dev
->labels
[i
] & ~MPLS_STACK_BOTTOM
;
2567 *mpls
|= MPLS_STACK_BOTTOM
;
2570 static inline __be16
build_tci(unsigned int id
, unsigned int cfi
,
2573 return htons(id
| (cfi
<< 12) | (prio
<< 13));
2576 static void pktgen_finalize_skb(struct pktgen_dev
*pkt_dev
, struct sk_buff
*skb
,
2579 struct timeval timestamp
;
2580 struct pktgen_hdr
*pgh
;
2582 pgh
= (struct pktgen_hdr
*)skb_put(skb
, sizeof(*pgh
));
2583 datalen
-= sizeof(*pgh
);
2585 if (pkt_dev
->nfrags
<= 0) {
2586 memset(skb_put(skb
, datalen
), 0, datalen
);
2588 int frags
= pkt_dev
->nfrags
;
2593 if (frags
> MAX_SKB_FRAGS
)
2594 frags
= MAX_SKB_FRAGS
;
2595 len
= datalen
- frags
* PAGE_SIZE
;
2597 memset(skb_put(skb
, len
), 0, len
);
2598 datalen
= frags
* PAGE_SIZE
;
2602 frag_len
= (datalen
/frags
) < PAGE_SIZE
?
2603 (datalen
/frags
) : PAGE_SIZE
;
2604 while (datalen
> 0) {
2605 if (unlikely(!pkt_dev
->page
)) {
2606 int node
= numa_node_id();
2608 if (pkt_dev
->node
>= 0 && (pkt_dev
->flags
& F_NODE
))
2609 node
= pkt_dev
->node
;
2610 pkt_dev
->page
= alloc_pages_node(node
, GFP_KERNEL
| __GFP_ZERO
, 0);
2614 get_page(pkt_dev
->page
);
2615 skb_frag_set_page(skb
, i
, pkt_dev
->page
);
2616 skb_shinfo(skb
)->frags
[i
].page_offset
= 0;
2617 /*last fragment, fill rest of data*/
2618 if (i
== (frags
- 1))
2619 skb_frag_size_set(&skb_shinfo(skb
)->frags
[i
],
2620 (datalen
< PAGE_SIZE
? datalen
: PAGE_SIZE
));
2622 skb_frag_size_set(&skb_shinfo(skb
)->frags
[i
], frag_len
);
2623 datalen
-= skb_frag_size(&skb_shinfo(skb
)->frags
[i
]);
2624 skb
->len
+= skb_frag_size(&skb_shinfo(skb
)->frags
[i
]);
2625 skb
->data_len
+= skb_frag_size(&skb_shinfo(skb
)->frags
[i
]);
2627 skb_shinfo(skb
)->nr_frags
= i
;
2631 /* Stamp the time, and sequence number,
2632 * convert them to network byte order
2634 pgh
->pgh_magic
= htonl(PKTGEN_MAGIC
);
2635 pgh
->seq_num
= htonl(pkt_dev
->seq_num
);
2637 do_gettimeofday(×tamp
);
2638 pgh
->tv_sec
= htonl(timestamp
.tv_sec
);
2639 pgh
->tv_usec
= htonl(timestamp
.tv_usec
);
2642 static struct sk_buff
*pktgen_alloc_skb(struct net_device
*dev
,
2643 struct pktgen_dev
*pkt_dev
,
2644 unsigned int extralen
)
2646 struct sk_buff
*skb
= NULL
;
2647 unsigned int size
= pkt_dev
->cur_pkt_size
+ 64 + extralen
+
2648 pkt_dev
->pkt_overhead
;
2650 if (pkt_dev
->flags
& F_NODE
) {
2651 int node
= pkt_dev
->node
>= 0 ? pkt_dev
->node
: numa_node_id();
2653 skb
= __alloc_skb(NET_SKB_PAD
+ size
, GFP_NOWAIT
, 0, node
);
2655 skb_reserve(skb
, NET_SKB_PAD
);
2659 skb
= __netdev_alloc_skb(dev
, size
, GFP_NOWAIT
);
2665 static struct sk_buff
*fill_packet_ipv4(struct net_device
*odev
,
2666 struct pktgen_dev
*pkt_dev
)
2668 struct sk_buff
*skb
= NULL
;
2670 struct udphdr
*udph
;
2673 __be16 protocol
= htons(ETH_P_IP
);
2675 __be16
*vlan_tci
= NULL
; /* Encapsulates priority and VLAN ID */
2676 __be16
*vlan_encapsulated_proto
= NULL
; /* packet type ID field (or len) for VLAN tag */
2677 __be16
*svlan_tci
= NULL
; /* Encapsulates priority and SVLAN ID */
2678 __be16
*svlan_encapsulated_proto
= NULL
; /* packet type ID field (or len) for SVLAN tag */
2681 if (pkt_dev
->nr_labels
)
2682 protocol
= htons(ETH_P_MPLS_UC
);
2684 if (pkt_dev
->vlan_id
!= 0xffff)
2685 protocol
= htons(ETH_P_8021Q
);
2687 /* Update any of the values, used when we're incrementing various
2690 mod_cur_headers(pkt_dev
);
2691 queue_map
= pkt_dev
->cur_queue_map
;
2693 datalen
= (odev
->hard_header_len
+ 16) & ~0xf;
2695 skb
= pktgen_alloc_skb(odev
, pkt_dev
, datalen
);
2697 sprintf(pkt_dev
->result
, "No memory");
2701 prefetchw(skb
->data
);
2702 skb_reserve(skb
, datalen
);
2704 /* Reserve for ethernet and IP header */
2705 eth
= (__u8
*) skb_push(skb
, 14);
2706 mpls
= (__be32
*)skb_put(skb
, pkt_dev
->nr_labels
*sizeof(__u32
));
2707 if (pkt_dev
->nr_labels
)
2708 mpls_push(mpls
, pkt_dev
);
2710 if (pkt_dev
->vlan_id
!= 0xffff) {
2711 if (pkt_dev
->svlan_id
!= 0xffff) {
2712 svlan_tci
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2713 *svlan_tci
= build_tci(pkt_dev
->svlan_id
,
2716 svlan_encapsulated_proto
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2717 *svlan_encapsulated_proto
= htons(ETH_P_8021Q
);
2719 vlan_tci
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2720 *vlan_tci
= build_tci(pkt_dev
->vlan_id
,
2723 vlan_encapsulated_proto
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2724 *vlan_encapsulated_proto
= htons(ETH_P_IP
);
2727 skb_set_mac_header(skb
, 0);
2728 skb_set_network_header(skb
, skb
->len
);
2729 iph
= (struct iphdr
*) skb_put(skb
, sizeof(struct iphdr
));
2731 skb_set_transport_header(skb
, skb
->len
);
2732 udph
= (struct udphdr
*) skb_put(skb
, sizeof(struct udphdr
));
2733 skb_set_queue_mapping(skb
, queue_map
);
2734 skb
->priority
= pkt_dev
->skb_priority
;
2736 memcpy(eth
, pkt_dev
->hh
, 12);
2737 *(__be16
*) & eth
[12] = protocol
;
2739 /* Eth + IPh + UDPh + mpls */
2740 datalen
= pkt_dev
->cur_pkt_size
- 14 - 20 - 8 -
2741 pkt_dev
->pkt_overhead
;
2742 if (datalen
< 0 || datalen
< sizeof(struct pktgen_hdr
))
2743 datalen
= sizeof(struct pktgen_hdr
);
2745 udph
->source
= htons(pkt_dev
->cur_udp_src
);
2746 udph
->dest
= htons(pkt_dev
->cur_udp_dst
);
2747 udph
->len
= htons(datalen
+ 8); /* DATA + udphdr */
2753 iph
->tos
= pkt_dev
->tos
;
2754 iph
->protocol
= IPPROTO_UDP
; /* UDP */
2755 iph
->saddr
= pkt_dev
->cur_saddr
;
2756 iph
->daddr
= pkt_dev
->cur_daddr
;
2757 iph
->id
= htons(pkt_dev
->ip_id
);
2760 iplen
= 20 + 8 + datalen
;
2761 iph
->tot_len
= htons(iplen
);
2763 skb
->protocol
= protocol
;
2765 skb
->pkt_type
= PACKET_HOST
;
2767 if (!(pkt_dev
->flags
& F_UDPCSUM
)) {
2768 skb
->ip_summed
= CHECKSUM_NONE
;
2769 } else if (odev
->features
& NETIF_F_V4_CSUM
) {
2770 skb
->ip_summed
= CHECKSUM_PARTIAL
;
2772 udp4_hwcsum(skb
, udph
->source
, udph
->dest
);
2774 __wsum csum
= udp_csum(skb
);
2776 /* add protocol-dependent pseudo-header */
2777 udph
->check
= csum_tcpudp_magic(udph
->source
, udph
->dest
,
2778 datalen
+ 8, IPPROTO_UDP
, csum
);
2780 if (udph
->check
== 0)
2781 udph
->check
= CSUM_MANGLED_0
;
2784 pktgen_finalize_skb(pkt_dev
, skb
, datalen
);
2787 if (!process_ipsec(pkt_dev
, skb
, protocol
))
2794 static struct sk_buff
*fill_packet_ipv6(struct net_device
*odev
,
2795 struct pktgen_dev
*pkt_dev
)
2797 struct sk_buff
*skb
= NULL
;
2799 struct udphdr
*udph
;
2800 int datalen
, udplen
;
2801 struct ipv6hdr
*iph
;
2802 __be16 protocol
= htons(ETH_P_IPV6
);
2804 __be16
*vlan_tci
= NULL
; /* Encapsulates priority and VLAN ID */
2805 __be16
*vlan_encapsulated_proto
= NULL
; /* packet type ID field (or len) for VLAN tag */
2806 __be16
*svlan_tci
= NULL
; /* Encapsulates priority and SVLAN ID */
2807 __be16
*svlan_encapsulated_proto
= NULL
; /* packet type ID field (or len) for SVLAN tag */
2810 if (pkt_dev
->nr_labels
)
2811 protocol
= htons(ETH_P_MPLS_UC
);
2813 if (pkt_dev
->vlan_id
!= 0xffff)
2814 protocol
= htons(ETH_P_8021Q
);
2816 /* Update any of the values, used when we're incrementing various
2819 mod_cur_headers(pkt_dev
);
2820 queue_map
= pkt_dev
->cur_queue_map
;
2822 skb
= pktgen_alloc_skb(odev
, pkt_dev
, 16);
2824 sprintf(pkt_dev
->result
, "No memory");
2828 prefetchw(skb
->data
);
2829 skb_reserve(skb
, 16);
2831 /* Reserve for ethernet and IP header */
2832 eth
= (__u8
*) skb_push(skb
, 14);
2833 mpls
= (__be32
*)skb_put(skb
, pkt_dev
->nr_labels
*sizeof(__u32
));
2834 if (pkt_dev
->nr_labels
)
2835 mpls_push(mpls
, pkt_dev
);
2837 if (pkt_dev
->vlan_id
!= 0xffff) {
2838 if (pkt_dev
->svlan_id
!= 0xffff) {
2839 svlan_tci
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2840 *svlan_tci
= build_tci(pkt_dev
->svlan_id
,
2843 svlan_encapsulated_proto
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2844 *svlan_encapsulated_proto
= htons(ETH_P_8021Q
);
2846 vlan_tci
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2847 *vlan_tci
= build_tci(pkt_dev
->vlan_id
,
2850 vlan_encapsulated_proto
= (__be16
*)skb_put(skb
, sizeof(__be16
));
2851 *vlan_encapsulated_proto
= htons(ETH_P_IPV6
);
2854 skb_set_mac_header(skb
, 0);
2855 skb_set_network_header(skb
, skb
->len
);
2856 iph
= (struct ipv6hdr
*) skb_put(skb
, sizeof(struct ipv6hdr
));
2858 skb_set_transport_header(skb
, skb
->len
);
2859 udph
= (struct udphdr
*) skb_put(skb
, sizeof(struct udphdr
));
2860 skb_set_queue_mapping(skb
, queue_map
);
2861 skb
->priority
= pkt_dev
->skb_priority
;
2863 memcpy(eth
, pkt_dev
->hh
, 12);
2864 *(__be16
*) ð
[12] = protocol
;
2866 /* Eth + IPh + UDPh + mpls */
2867 datalen
= pkt_dev
->cur_pkt_size
- 14 -
2868 sizeof(struct ipv6hdr
) - sizeof(struct udphdr
) -
2869 pkt_dev
->pkt_overhead
;
2871 if (datalen
< 0 || datalen
< sizeof(struct pktgen_hdr
)) {
2872 datalen
= sizeof(struct pktgen_hdr
);
2873 net_info_ratelimited("increased datalen to %d\n", datalen
);
2876 udplen
= datalen
+ sizeof(struct udphdr
);
2877 udph
->source
= htons(pkt_dev
->cur_udp_src
);
2878 udph
->dest
= htons(pkt_dev
->cur_udp_dst
);
2879 udph
->len
= htons(udplen
);
2882 *(__be32
*) iph
= htonl(0x60000000); /* Version + flow */
2884 if (pkt_dev
->traffic_class
) {
2885 /* Version + traffic class + flow (0) */
2886 *(__be32
*)iph
|= htonl(0x60000000 | (pkt_dev
->traffic_class
<< 20));
2889 iph
->hop_limit
= 32;
2891 iph
->payload_len
= htons(udplen
);
2892 iph
->nexthdr
= IPPROTO_UDP
;
2894 iph
->daddr
= pkt_dev
->cur_in6_daddr
;
2895 iph
->saddr
= pkt_dev
->cur_in6_saddr
;
2897 skb
->protocol
= protocol
;
2899 skb
->pkt_type
= PACKET_HOST
;
2901 if (!(pkt_dev
->flags
& F_UDPCSUM
)) {
2902 skb
->ip_summed
= CHECKSUM_NONE
;
2903 } else if (odev
->features
& NETIF_F_V6_CSUM
) {
2904 skb
->ip_summed
= CHECKSUM_PARTIAL
;
2905 skb
->csum_start
= skb_transport_header(skb
) - skb
->head
;
2906 skb
->csum_offset
= offsetof(struct udphdr
, check
);
2907 udph
->check
= ~csum_ipv6_magic(&iph
->saddr
, &iph
->daddr
, udplen
, IPPROTO_UDP
, 0);
2909 __wsum csum
= udp_csum(skb
);
2911 /* add protocol-dependent pseudo-header */
2912 udph
->check
= csum_ipv6_magic(&iph
->saddr
, &iph
->daddr
, udplen
, IPPROTO_UDP
, csum
);
2914 if (udph
->check
== 0)
2915 udph
->check
= CSUM_MANGLED_0
;
2918 pktgen_finalize_skb(pkt_dev
, skb
, datalen
);
2923 static struct sk_buff
*fill_packet(struct net_device
*odev
,
2924 struct pktgen_dev
*pkt_dev
)
2926 if (pkt_dev
->flags
& F_IPV6
)
2927 return fill_packet_ipv6(odev
, pkt_dev
);
2929 return fill_packet_ipv4(odev
, pkt_dev
);
2932 static void pktgen_clear_counters(struct pktgen_dev
*pkt_dev
)
2934 pkt_dev
->seq_num
= 1;
2935 pkt_dev
->idle_acc
= 0;
2937 pkt_dev
->tx_bytes
= 0;
2938 pkt_dev
->errors
= 0;
2941 /* Set up structure for sending pkts, clear counters */
2943 static void pktgen_run(struct pktgen_thread
*t
)
2945 struct pktgen_dev
*pkt_dev
;
2951 list_for_each_entry(pkt_dev
, &t
->if_list
, list
) {
2954 * setup odev and create initial packet.
2956 pktgen_setup_inject(pkt_dev
);
2958 if (pkt_dev
->odev
) {
2959 pktgen_clear_counters(pkt_dev
);
2960 pkt_dev
->running
= 1; /* Cranke yeself! */
2961 pkt_dev
->skb
= NULL
;
2962 pkt_dev
->started_at
= pkt_dev
->next_tx
= ktime_get();
2964 set_pkt_overhead(pkt_dev
);
2966 strcpy(pkt_dev
->result
, "Starting");
2969 strcpy(pkt_dev
->result
, "Error starting");
2973 t
->control
&= ~(T_STOP
);
2976 static void pktgen_stop_all_threads_ifs(struct pktgen_net
*pn
)
2978 struct pktgen_thread
*t
;
2982 mutex_lock(&pktgen_thread_lock
);
2984 list_for_each_entry(t
, &pn
->pktgen_threads
, th_list
)
2985 t
->control
|= T_STOP
;
2987 mutex_unlock(&pktgen_thread_lock
);
2990 static int thread_is_running(const struct pktgen_thread
*t
)
2992 const struct pktgen_dev
*pkt_dev
;
2994 list_for_each_entry(pkt_dev
, &t
->if_list
, list
)
2995 if (pkt_dev
->running
)
3000 static int pktgen_wait_thread_run(struct pktgen_thread
*t
)
3004 while (thread_is_running(t
)) {
3008 msleep_interruptible(100);
3010 if (signal_pending(current
))
3020 static int pktgen_wait_all_threads_run(struct pktgen_net
*pn
)
3022 struct pktgen_thread
*t
;
3025 mutex_lock(&pktgen_thread_lock
);
3027 list_for_each_entry(t
, &pn
->pktgen_threads
, th_list
) {
3028 sig
= pktgen_wait_thread_run(t
);
3034 list_for_each_entry(t
, &pn
->pktgen_threads
, th_list
)
3035 t
->control
|= (T_STOP
);
3037 mutex_unlock(&pktgen_thread_lock
);
3041 static void pktgen_run_all_threads(struct pktgen_net
*pn
)
3043 struct pktgen_thread
*t
;
3047 mutex_lock(&pktgen_thread_lock
);
3049 list_for_each_entry(t
, &pn
->pktgen_threads
, th_list
)
3050 t
->control
|= (T_RUN
);
3052 mutex_unlock(&pktgen_thread_lock
);
3054 /* Propagate thread->control */
3055 schedule_timeout_interruptible(msecs_to_jiffies(125));
3057 pktgen_wait_all_threads_run(pn
);
3060 static void pktgen_reset_all_threads(struct pktgen_net
*pn
)
3062 struct pktgen_thread
*t
;
3066 mutex_lock(&pktgen_thread_lock
);
3068 list_for_each_entry(t
, &pn
->pktgen_threads
, th_list
)
3069 t
->control
|= (T_REMDEVALL
);
3071 mutex_unlock(&pktgen_thread_lock
);
3073 /* Propagate thread->control */
3074 schedule_timeout_interruptible(msecs_to_jiffies(125));
3076 pktgen_wait_all_threads_run(pn
);
3079 static void show_results(struct pktgen_dev
*pkt_dev
, int nr_frags
)
3081 __u64 bps
, mbps
, pps
;
3082 char *p
= pkt_dev
->result
;
3083 ktime_t elapsed
= ktime_sub(pkt_dev
->stopped_at
,
3084 pkt_dev
->started_at
);
3085 ktime_t idle
= ns_to_ktime(pkt_dev
->idle_acc
);
3087 p
+= sprintf(p
, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
3088 (unsigned long long)ktime_to_us(elapsed
),
3089 (unsigned long long)ktime_to_us(ktime_sub(elapsed
, idle
)),
3090 (unsigned long long)ktime_to_us(idle
),
3091 (unsigned long long)pkt_dev
->sofar
,
3092 pkt_dev
->cur_pkt_size
, nr_frags
);
3094 pps
= div64_u64(pkt_dev
->sofar
* NSEC_PER_SEC
,
3095 ktime_to_ns(elapsed
));
3097 bps
= pps
* 8 * pkt_dev
->cur_pkt_size
;
3100 do_div(mbps
, 1000000);
3101 p
+= sprintf(p
, " %llupps %lluMb/sec (%llubps) errors: %llu",
3102 (unsigned long long)pps
,
3103 (unsigned long long)mbps
,
3104 (unsigned long long)bps
,
3105 (unsigned long long)pkt_dev
->errors
);
3108 /* Set stopped-at timer, remove from running list, do counters & statistics */
3109 static int pktgen_stop_device(struct pktgen_dev
*pkt_dev
)
3111 int nr_frags
= pkt_dev
->skb
? skb_shinfo(pkt_dev
->skb
)->nr_frags
: -1;
3113 if (!pkt_dev
->running
) {
3114 pr_warning("interface: %s is already stopped\n",
3119 kfree_skb(pkt_dev
->skb
);
3120 pkt_dev
->skb
= NULL
;
3121 pkt_dev
->stopped_at
= ktime_get();
3122 pkt_dev
->running
= 0;
3124 show_results(pkt_dev
, nr_frags
);
3129 static struct pktgen_dev
*next_to_run(struct pktgen_thread
*t
)
3131 struct pktgen_dev
*pkt_dev
, *best
= NULL
;
3135 list_for_each_entry(pkt_dev
, &t
->if_list
, list
) {
3136 if (!pkt_dev
->running
)
3140 else if (ktime_compare(pkt_dev
->next_tx
, best
->next_tx
) < 0)
3147 static void pktgen_stop(struct pktgen_thread
*t
)
3149 struct pktgen_dev
*pkt_dev
;
3155 list_for_each_entry(pkt_dev
, &t
->if_list
, list
) {
3156 pktgen_stop_device(pkt_dev
);
3163 * one of our devices needs to be removed - find it
3166 static void pktgen_rem_one_if(struct pktgen_thread
*t
)
3168 struct list_head
*q
, *n
;
3169 struct pktgen_dev
*cur
;
3175 list_for_each_safe(q
, n
, &t
->if_list
) {
3176 cur
= list_entry(q
, struct pktgen_dev
, list
);
3178 if (!cur
->removal_mark
)
3181 kfree_skb(cur
->skb
);
3184 pktgen_remove_device(t
, cur
);
3192 static void pktgen_rem_all_ifs(struct pktgen_thread
*t
)
3194 struct list_head
*q
, *n
;
3195 struct pktgen_dev
*cur
;
3199 /* Remove all devices, free mem */
3203 list_for_each_safe(q
, n
, &t
->if_list
) {
3204 cur
= list_entry(q
, struct pktgen_dev
, list
);
3206 kfree_skb(cur
->skb
);
3209 pktgen_remove_device(t
, cur
);
3215 static void pktgen_rem_thread(struct pktgen_thread
*t
)
3217 /* Remove from the thread list */
3218 remove_proc_entry(t
->tsk
->comm
, t
->net
->proc_dir
);
3221 static void pktgen_resched(struct pktgen_dev
*pkt_dev
)
3223 ktime_t idle_start
= ktime_get();
3225 pkt_dev
->idle_acc
+= ktime_to_ns(ktime_sub(ktime_get(), idle_start
));
3228 static void pktgen_wait_for_skb(struct pktgen_dev
*pkt_dev
)
3230 ktime_t idle_start
= ktime_get();
3232 while (atomic_read(&(pkt_dev
->skb
->users
)) != 1) {
3233 if (signal_pending(current
))
3237 pktgen_resched(pkt_dev
);
3241 pkt_dev
->idle_acc
+= ktime_to_ns(ktime_sub(ktime_get(), idle_start
));
3244 static void pktgen_xmit(struct pktgen_dev
*pkt_dev
)
3246 struct net_device
*odev
= pkt_dev
->odev
;
3247 netdev_tx_t (*xmit
)(struct sk_buff
*, struct net_device
*)
3248 = odev
->netdev_ops
->ndo_start_xmit
;
3249 struct netdev_queue
*txq
;
3253 /* If device is offline, then don't send */
3254 if (unlikely(!netif_running(odev
) || !netif_carrier_ok(odev
))) {
3255 pktgen_stop_device(pkt_dev
);
3259 /* This is max DELAY, this has special meaning of
3262 if (unlikely(pkt_dev
->delay
== ULLONG_MAX
)) {
3263 pkt_dev
->next_tx
= ktime_add_ns(ktime_get(), ULONG_MAX
);
3267 /* If no skb or clone count exhausted then get new one */
3268 if (!pkt_dev
->skb
|| (pkt_dev
->last_ok
&&
3269 ++pkt_dev
->clone_count
>= pkt_dev
->clone_skb
)) {
3270 /* build a new pkt */
3271 kfree_skb(pkt_dev
->skb
);
3273 pkt_dev
->skb
= fill_packet(odev
, pkt_dev
);
3274 if (pkt_dev
->skb
== NULL
) {
3275 pr_err("ERROR: couldn't allocate skb in fill_packet\n");
3277 pkt_dev
->clone_count
--; /* back out increment, OOM */
3280 pkt_dev
->last_pkt_size
= pkt_dev
->skb
->len
;
3281 pkt_dev
->allocated_skbs
++;
3282 pkt_dev
->clone_count
= 0; /* reset counter */
3285 if (pkt_dev
->delay
&& pkt_dev
->last_ok
)
3286 spin(pkt_dev
, pkt_dev
->next_tx
);
3288 queue_map
= skb_get_queue_mapping(pkt_dev
->skb
);
3289 txq
= netdev_get_tx_queue(odev
, queue_map
);
3291 __netif_tx_lock_bh(txq
);
3293 if (unlikely(netif_xmit_frozen_or_stopped(txq
))) {
3294 ret
= NETDEV_TX_BUSY
;
3295 pkt_dev
->last_ok
= 0;
3298 atomic_inc(&(pkt_dev
->skb
->users
));
3299 ret
= (*xmit
)(pkt_dev
->skb
, odev
);
3303 txq_trans_update(txq
);
3304 pkt_dev
->last_ok
= 1;
3307 pkt_dev
->tx_bytes
+= pkt_dev
->last_pkt_size
;
3311 case NET_XMIT_POLICED
:
3312 /* skb has been consumed */
3315 default: /* Drivers are not supposed to return other values! */
3316 net_info_ratelimited("%s xmit error: %d\n",
3317 pkt_dev
->odevname
, ret
);
3320 case NETDEV_TX_LOCKED
:
3321 case NETDEV_TX_BUSY
:
3322 /* Retry it next time */
3323 atomic_dec(&(pkt_dev
->skb
->users
));
3324 pkt_dev
->last_ok
= 0;
3327 __netif_tx_unlock_bh(txq
);
3329 /* If pkt_dev->count is zero, then run forever */
3330 if ((pkt_dev
->count
!= 0) && (pkt_dev
->sofar
>= pkt_dev
->count
)) {
3331 pktgen_wait_for_skb(pkt_dev
);
3333 /* Done with this */
3334 pktgen_stop_device(pkt_dev
);
3339 * Main loop of the thread goes here
3342 static int pktgen_thread_worker(void *arg
)
3345 struct pktgen_thread
*t
= arg
;
3346 struct pktgen_dev
*pkt_dev
= NULL
;
3349 BUG_ON(smp_processor_id() != cpu
);
3351 init_waitqueue_head(&t
->queue
);
3352 complete(&t
->start_done
);
3354 pr_debug("starting pktgen/%d: pid=%d\n", cpu
, task_pid_nr(current
));
3356 set_current_state(TASK_INTERRUPTIBLE
);
3360 while (!kthread_should_stop()) {
3361 pkt_dev
= next_to_run(t
);
3363 if (unlikely(!pkt_dev
&& t
->control
== 0)) {
3364 if (t
->net
->pktgen_exiting
)
3366 wait_event_interruptible_timeout(t
->queue
,
3373 __set_current_state(TASK_RUNNING
);
3375 if (likely(pkt_dev
)) {
3376 pktgen_xmit(pkt_dev
);
3379 pktgen_resched(pkt_dev
);
3384 if (t
->control
& T_STOP
) {
3386 t
->control
&= ~(T_STOP
);
3389 if (t
->control
& T_RUN
) {
3391 t
->control
&= ~(T_RUN
);
3394 if (t
->control
& T_REMDEVALL
) {
3395 pktgen_rem_all_ifs(t
);
3396 t
->control
&= ~(T_REMDEVALL
);
3399 if (t
->control
& T_REMDEV
) {
3400 pktgen_rem_one_if(t
);
3401 t
->control
&= ~(T_REMDEV
);
3406 set_current_state(TASK_INTERRUPTIBLE
);
3409 pr_debug("%s stopping all device\n", t
->tsk
->comm
);
3412 pr_debug("%s removing all device\n", t
->tsk
->comm
);
3413 pktgen_rem_all_ifs(t
);
3415 pr_debug("%s removing thread\n", t
->tsk
->comm
);
3416 pktgen_rem_thread(t
);
3418 /* Wait for kthread_stop */
3419 while (!kthread_should_stop()) {
3420 set_current_state(TASK_INTERRUPTIBLE
);
3423 __set_current_state(TASK_RUNNING
);
3428 static struct pktgen_dev
*pktgen_find_dev(struct pktgen_thread
*t
,
3429 const char *ifname
, bool exact
)
3431 struct pktgen_dev
*p
, *pkt_dev
= NULL
;
3432 size_t len
= strlen(ifname
);
3435 list_for_each_entry(p
, &t
->if_list
, list
)
3436 if (strncmp(p
->odevname
, ifname
, len
) == 0) {
3437 if (p
->odevname
[len
]) {
3438 if (exact
|| p
->odevname
[len
] != '@')
3446 pr_debug("find_dev(%s) returning %p\n", ifname
, pkt_dev
);
3451 * Adds a dev at front of if_list.
3454 static int add_dev_to_thread(struct pktgen_thread
*t
,
3455 struct pktgen_dev
*pkt_dev
)
3461 if (pkt_dev
->pg_thread
) {
3462 pr_err("ERROR: already assigned to a thread\n");
3467 list_add(&pkt_dev
->list
, &t
->if_list
);
3468 pkt_dev
->pg_thread
= t
;
3469 pkt_dev
->running
= 0;
3476 /* Called under thread lock */
3478 static int pktgen_add_device(struct pktgen_thread
*t
, const char *ifname
)
3480 struct pktgen_dev
*pkt_dev
;
3482 int node
= cpu_to_node(t
->cpu
);
3484 /* We don't allow a device to be on several threads */
3486 pkt_dev
= __pktgen_NN_threads(t
->net
, ifname
, FIND
);
3488 pr_err("ERROR: interface already used\n");
3492 pkt_dev
= kzalloc_node(sizeof(struct pktgen_dev
), GFP_KERNEL
, node
);
3496 strcpy(pkt_dev
->odevname
, ifname
);
3497 pkt_dev
->flows
= vzalloc_node(MAX_CFLOWS
* sizeof(struct flow_state
),
3499 if (pkt_dev
->flows
== NULL
) {
3504 pkt_dev
->removal_mark
= 0;
3505 pkt_dev
->nfrags
= 0;
3506 pkt_dev
->delay
= pg_delay_d
;
3507 pkt_dev
->count
= pg_count_d
;
3509 pkt_dev
->udp_src_min
= 9; /* sink port */
3510 pkt_dev
->udp_src_max
= 9;
3511 pkt_dev
->udp_dst_min
= 9;
3512 pkt_dev
->udp_dst_max
= 9;
3513 pkt_dev
->vlan_p
= 0;
3514 pkt_dev
->vlan_cfi
= 0;
3515 pkt_dev
->vlan_id
= 0xffff;
3516 pkt_dev
->svlan_p
= 0;
3517 pkt_dev
->svlan_cfi
= 0;
3518 pkt_dev
->svlan_id
= 0xffff;
3521 err
= pktgen_setup_dev(t
->net
, pkt_dev
, ifname
);
3524 if (pkt_dev
->odev
->priv_flags
& IFF_TX_SKB_SHARING
)
3525 pkt_dev
->clone_skb
= pg_clone_skb_d
;
3527 pkt_dev
->entry
= proc_create_data(ifname
, 0600, t
->net
->proc_dir
,
3528 &pktgen_if_fops
, pkt_dev
);
3529 if (!pkt_dev
->entry
) {
3530 pr_err("cannot create %s/%s procfs entry\n",
3531 PG_PROC_DIR
, ifname
);
3536 pkt_dev
->ipsmode
= XFRM_MODE_TRANSPORT
;
3537 pkt_dev
->ipsproto
= IPPROTO_ESP
;
3540 return add_dev_to_thread(t
, pkt_dev
);
3542 dev_put(pkt_dev
->odev
);
3547 vfree(pkt_dev
->flows
);
3552 static int __net_init
pktgen_create_thread(int cpu
, struct pktgen_net
*pn
)
3554 struct pktgen_thread
*t
;
3555 struct proc_dir_entry
*pe
;
3556 struct task_struct
*p
;
3558 t
= kzalloc_node(sizeof(struct pktgen_thread
), GFP_KERNEL
,
3561 pr_err("ERROR: out of memory, can't create new thread\n");
3565 spin_lock_init(&t
->if_lock
);
3568 INIT_LIST_HEAD(&t
->if_list
);
3570 list_add_tail(&t
->th_list
, &pn
->pktgen_threads
);
3571 init_completion(&t
->start_done
);
3573 p
= kthread_create_on_node(pktgen_thread_worker
,
3576 "kpktgend_%d", cpu
);
3578 pr_err("kernel_thread() failed for cpu %d\n", t
->cpu
);
3579 list_del(&t
->th_list
);
3583 kthread_bind(p
, cpu
);
3586 pe
= proc_create_data(t
->tsk
->comm
, 0600, pn
->proc_dir
,
3587 &pktgen_thread_fops
, t
);
3589 pr_err("cannot create %s/%s procfs entry\n",
3590 PG_PROC_DIR
, t
->tsk
->comm
);
3592 list_del(&t
->th_list
);
3599 wait_for_completion(&t
->start_done
);
3605 * Removes a device from the thread if_list.
3607 static void _rem_dev_from_if_list(struct pktgen_thread
*t
,
3608 struct pktgen_dev
*pkt_dev
)
3610 struct list_head
*q
, *n
;
3611 struct pktgen_dev
*p
;
3613 list_for_each_safe(q
, n
, &t
->if_list
) {
3614 p
= list_entry(q
, struct pktgen_dev
, list
);
3620 static int pktgen_remove_device(struct pktgen_thread
*t
,
3621 struct pktgen_dev
*pkt_dev
)
3623 pr_debug("remove_device pkt_dev=%p\n", pkt_dev
);
3625 if (pkt_dev
->running
) {
3626 pr_warning("WARNING: trying to remove a running interface, stopping it now\n");
3627 pktgen_stop_device(pkt_dev
);
3630 /* Dis-associate from the interface */
3632 if (pkt_dev
->odev
) {
3633 dev_put(pkt_dev
->odev
);
3634 pkt_dev
->odev
= NULL
;
3637 /* And update the thread if_list */
3639 _rem_dev_from_if_list(t
, pkt_dev
);
3642 proc_remove(pkt_dev
->entry
);
3647 vfree(pkt_dev
->flows
);
3649 put_page(pkt_dev
->page
);
3654 static int __net_init
pg_net_init(struct net
*net
)
3656 struct pktgen_net
*pn
= net_generic(net
, pg_net_id
);
3657 struct proc_dir_entry
*pe
;
3661 INIT_LIST_HEAD(&pn
->pktgen_threads
);
3662 pn
->pktgen_exiting
= false;
3663 pn
->proc_dir
= proc_mkdir(PG_PROC_DIR
, pn
->net
->proc_net
);
3664 if (!pn
->proc_dir
) {
3665 pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR
);
3668 pe
= proc_create(PGCTRL
, 0600, pn
->proc_dir
, &pktgen_fops
);
3670 pr_err("cannot create %s procfs entry\n", PGCTRL
);
3675 for_each_online_cpu(cpu
) {
3678 err
= pktgen_create_thread(cpu
, pn
);
3680 pr_warn("Cannot create thread for cpu %d (%d)\n",
3684 if (list_empty(&pn
->pktgen_threads
)) {
3685 pr_err("Initialization failed for all threads\n");
3693 remove_proc_entry(PGCTRL
, pn
->proc_dir
);
3695 remove_proc_entry(PG_PROC_DIR
, pn
->net
->proc_net
);
3699 static void __net_exit
pg_net_exit(struct net
*net
)
3701 struct pktgen_net
*pn
= net_generic(net
, pg_net_id
);
3702 struct pktgen_thread
*t
;
3703 struct list_head
*q
, *n
;
3706 /* Stop all interfaces & threads */
3707 pn
->pktgen_exiting
= true;
3709 mutex_lock(&pktgen_thread_lock
);
3710 list_splice_init(&pn
->pktgen_threads
, &list
);
3711 mutex_unlock(&pktgen_thread_lock
);
3713 list_for_each_safe(q
, n
, &list
) {
3714 t
= list_entry(q
, struct pktgen_thread
, th_list
);
3715 list_del(&t
->th_list
);
3716 kthread_stop(t
->tsk
);
3720 remove_proc_entry(PGCTRL
, pn
->proc_dir
);
3721 remove_proc_entry(PG_PROC_DIR
, pn
->net
->proc_net
);
3724 static struct pernet_operations pg_net_ops
= {
3725 .init
= pg_net_init
,
3726 .exit
= pg_net_exit
,
3728 .size
= sizeof(struct pktgen_net
),
3731 static int __init
pg_init(void)
3735 pr_info("%s", version
);
3736 ret
= register_pernet_subsys(&pg_net_ops
);
3739 ret
= register_netdevice_notifier(&pktgen_notifier_block
);
3741 unregister_pernet_subsys(&pg_net_ops
);
3746 static void __exit
pg_cleanup(void)
3748 unregister_netdevice_notifier(&pktgen_notifier_block
);
3749 unregister_pernet_subsys(&pg_net_ops
);
3752 module_init(pg_init
);
3753 module_exit(pg_cleanup
);
3755 MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>");
3756 MODULE_DESCRIPTION("Packet Generator tool");
3757 MODULE_LICENSE("GPL");
3758 MODULE_VERSION(VERSION
);
3759 module_param(pg_count_d
, int, 0);
3760 MODULE_PARM_DESC(pg_count_d
, "Default number of packets to inject");
3761 module_param(pg_delay_d
, int, 0);
3762 MODULE_PARM_DESC(pg_delay_d
, "Default delay between packets (nanoseconds)");
3763 module_param(pg_clone_skb_d
, int, 0);
3764 MODULE_PARM_DESC(pg_clone_skb_d
, "Default number of copies of the same packet");
3765 module_param(debug
, int, 0);
3766 MODULE_PARM_DESC(debug
, "Enable debugging of pktgen module");