Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Authors: |
| 4 | * Copyright 2001, 2002 by Robert Olsson <robert.olsson@its.uu.se> |
| 5 | * Uppsala University and |
| 6 | * Swedish University of Agricultural Sciences |
| 7 | * |
| 8 | * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
| 9 | * Ben Greear <greearb@candelatech.com> |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 10 | * Jens Låås <jens.laas@data.slu.se> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * A tool for loading the network with preconfigurated packets. |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 13 | * The tool is implemented as a linux module. Parameters are output |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * device, delay (to hard_xmit), number of packets, and whether |
| 15 | * to use multiple SKBs or just the same one. |
| 16 | * pktgen uses the installed interface's output routine. |
| 17 | * |
| 18 | * Additional hacking by: |
| 19 | * |
| 20 | * Jens.Laas@data.slu.se |
| 21 | * Improved by ANK. 010120. |
| 22 | * Improved by ANK even more. 010212. |
| 23 | * MAC address typo fixed. 010417 --ro |
| 24 | * Integrated. 020301 --DaveM |
| 25 | * Added multiskb option 020301 --DaveM |
| 26 | * Scaling of results. 020417--sigurdur@linpro.no |
| 27 | * Significant re-work of the module: |
| 28 | * * Convert to threaded model to more efficiently be able to transmit |
| 29 | * and receive on multiple interfaces at once. |
| 30 | * * Converted many counters to __u64 to allow longer runs. |
| 31 | * * Allow configuration of ranges, like min/max IP address, MACs, |
| 32 | * and UDP-ports, for both source and destination, and can |
| 33 | * set to use a random distribution or sequentially walk the range. |
| 34 | * * Can now change most values after starting. |
| 35 | * * Place 12-byte packet in UDP payload with magic number, |
| 36 | * sequence number, and timestamp. |
| 37 | * * Add receiver code that detects dropped pkts, re-ordered pkts, and |
| 38 | * latencies (with micro-second) precision. |
| 39 | * * Add IOCTL interface to easily get counters & configuration. |
| 40 | * --Ben Greear <greearb@candelatech.com> |
| 41 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 42 | * Renamed multiskb to clone_skb and cleaned up sending core for two distinct |
| 43 | * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * as a "fastpath" with a configurable number of clones after alloc's. |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 45 | * clone_skb=0 means all packets are allocated this also means ranges time |
| 46 | * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | * clones. |
| 48 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 49 | * Also moved to /proc/net/pktgen/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * --ro |
| 51 | * |
| 52 | * Sept 10: Fixed threading/locking. Lots of bone-headed and more clever |
| 53 | * mistakes. Also merged in DaveM's patch in the -pre6 patch. |
| 54 | * --Ben Greear <greearb@candelatech.com> |
| 55 | * |
| 56 | * Integrated to 2.5.x 021029 --Lucio Maciel (luciomaciel@zipmail.com.br) |
| 57 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * 021124 Finished major redesign and rewrite for new functionality. |
| 59 | * See Documentation/networking/pktgen.txt for how to use this. |
| 60 | * |
| 61 | * The new operation: |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 62 | * For each CPU one thread/process is created at start. This process checks |
| 63 | * for running devices in the if_list and sends packets until count is 0 it |
| 64 | * also the thread checks the thread->control which is used for inter-process |
| 65 | * communication. controlling process "posts" operations to the threads this |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 66 | * way. |
| 67 | * The if_list is RCU protected, and the if_lock remains to protect updating |
| 68 | * of if_list, from "add_device" as it invoked from userspace (via proc write). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 70 | * By design there should only be *one* "controlling" process. In practice |
| 71 | * multiple write accesses gives unpredictable result. Understood by "write" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | * to /proc gives result code thats should be read be the "writer". |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 73 | * For practical use this should be no problem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 75 | * Note when adding devices to a specific CPU there good idea to also assign |
| 76 | * /proc/irq/XX/smp_affinity so TX-interrupts gets bound to the same CPU. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | * --ro |
| 78 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 79 | * Fix refcount off by one if first packet fails, potential null deref, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | * memleak 030710- KJP |
| 81 | * |
| 82 | * First "ranges" functionality for ipv6 030726 --ro |
| 83 | * |
| 84 | * Included flow support. 030802 ANK. |
| 85 | * |
| 86 | * Fixed unaligned access on IA-64 Grant Grundler <grundler@parisc-linux.org> |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 87 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419 |
| 89 | * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604 |
| 90 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 91 | * New xmit() return, do_div and misc clean up by Stephen Hemminger |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | * <shemminger@osdl.org> 040923 |
| 93 | * |
Stephen Hemminger | ca9f1fd | 2015-02-14 13:47:54 -0500 | [diff] [blame] | 94 | * Randy Dunlap fixed u64 printk compiler warning |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | * |
| 96 | * Remove FCS from BW calculation. Lennert Buytenhek <buytenh@wantstofly.org> |
| 97 | * New time handling. Lennert Buytenhek <buytenh@wantstofly.org> 041213 |
| 98 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 99 | * Corrections from Nikolai Malykh (nmalykh@bilim.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230 |
| 101 | * |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 102 | * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | * 050103 |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 104 | * |
| 105 | * MPLS support by Steven Whitehouse <steve@chygwyn.com> |
| 106 | * |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 107 | * 802.1Q/Q-in-Q support by Francesco Fondelli (FF) <francesco.fondelli@gmail.com> |
| 108 | * |
Adit Ranadive | ce5d0b4 | 2007-09-16 14:52:15 -0700 | [diff] [blame] | 109 | * Fixed src_mac command to set source mac of packet to value specified in |
| 110 | * command by Adit Ranadive <adit.262@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | */ |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 112 | |
| 113 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | #include <linux/sys.h> |
| 116 | #include <linux/types.h> |
| 117 | #include <linux/module.h> |
| 118 | #include <linux/moduleparam.h> |
| 119 | #include <linux/kernel.h> |
Luiz Capitulino | 222fa07 | 2006-03-20 22:24:27 -0800 | [diff] [blame] | 120 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | #include <linux/sched.h> |
| 122 | #include <linux/slab.h> |
| 123 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | #include <linux/unistd.h> |
| 125 | #include <linux/string.h> |
| 126 | #include <linux/ptrace.h> |
| 127 | #include <linux/errno.h> |
| 128 | #include <linux/ioport.h> |
| 129 | #include <linux/interrupt.h> |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 130 | #include <linux/capability.h> |
Stephen Hemminger | 2bc481c | 2009-08-28 23:41:29 -0700 | [diff] [blame] | 131 | #include <linux/hrtimer.h> |
Andrew Morton | 09fe3ef | 2007-04-12 14:45:32 -0700 | [diff] [blame] | 132 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | #include <linux/delay.h> |
| 134 | #include <linux/timer.h> |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 135 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | #include <linux/init.h> |
| 137 | #include <linux/skbuff.h> |
| 138 | #include <linux/netdevice.h> |
| 139 | #include <linux/inet.h> |
| 140 | #include <linux/inetdevice.h> |
| 141 | #include <linux/rtnetlink.h> |
| 142 | #include <linux/if_arp.h> |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 143 | #include <linux/if_vlan.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | #include <linux/in.h> |
| 145 | #include <linux/ip.h> |
| 146 | #include <linux/ipv6.h> |
| 147 | #include <linux/udp.h> |
| 148 | #include <linux/proc_fs.h> |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 149 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | #include <linux/wait.h> |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 151 | #include <linux/etherdevice.h> |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 152 | #include <linux/kthread.h> |
Linus Torvalds | 268bb0c | 2011-05-20 12:50:29 -0700 | [diff] [blame] | 153 | #include <linux/prefetch.h> |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 154 | #include <linux/mmzone.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 155 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | #include <net/checksum.h> |
| 157 | #include <net/ipv6.h> |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 158 | #include <net/udp.h> |
Stephen Rothwell | 73d94e9 | 2013-07-29 16:21:26 +1000 | [diff] [blame] | 159 | #include <net/ip6_checksum.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | #include <net/addrconf.h> |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 161 | #ifdef CONFIG_XFRM |
| 162 | #include <net/xfrm.h> |
| 163 | #endif |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 164 | #include <net/netns/generic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | #include <asm/byteorder.h> |
| 166 | #include <linux/rcupdate.h> |
Jiri Slaby | 1977f03 | 2007-10-18 23:40:25 -0700 | [diff] [blame] | 167 | #include <linux/bitops.h> |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 168 | #include <linux/io.h> |
| 169 | #include <linux/timex.h> |
| 170 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | #include <asm/dma.h> |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 172 | #include <asm/div64.h> /* do_div */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Jesper Dangaard Brouer | 4020726 | 2015-05-21 12:16:56 +0200 | [diff] [blame] | 174 | #define VERSION "2.75" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | #define IP_NAME_SZ 32 |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 176 | #define MAX_MPLS_LABELS 16 /* This is the max label stack depth */ |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 177 | #define MPLS_STACK_BOTTOM htonl(0x00000100) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 179 | #define func_enter() pr_debug("entering %s\n", __func__); |
| 180 | |
Dmitry Safonov | 6f107c7 | 2018-01-18 18:31:35 +0000 | [diff] [blame] | 181 | #define PKT_FLAGS \ |
| 182 | pf(IPV6) /* Interface in IPV6 Mode */ \ |
| 183 | pf(IPSRC_RND) /* IP-Src Random */ \ |
| 184 | pf(IPDST_RND) /* IP-Dst Random */ \ |
| 185 | pf(TXSIZE_RND) /* Transmit size is random */ \ |
| 186 | pf(UDPSRC_RND) /* UDP-Src Random */ \ |
| 187 | pf(UDPDST_RND) /* UDP-Dst Random */ \ |
| 188 | pf(UDPCSUM) /* Include UDP checksum */ \ |
| 189 | pf(NO_TIMESTAMP) /* Don't timestamp packets (default TS) */ \ |
| 190 | pf(MPLS_RND) /* Random MPLS labels */ \ |
| 191 | pf(QUEUE_MAP_RND) /* queue map Random */ \ |
| 192 | pf(QUEUE_MAP_CPU) /* queue map mirrors smp_processor_id() */ \ |
| 193 | pf(FLOW_SEQ) /* Sequential flows */ \ |
| 194 | pf(IPSEC) /* ipsec on for flows */ \ |
| 195 | pf(MACSRC_RND) /* MAC-Src Random */ \ |
| 196 | pf(MACDST_RND) /* MAC-Dst Random */ \ |
| 197 | pf(VID_RND) /* Random VLAN ID */ \ |
| 198 | pf(SVID_RND) /* Random SVLAN ID */ \ |
| 199 | pf(NODE) /* Node memory alloc*/ \ |
| 200 | |
| 201 | #define pf(flag) flag##_SHIFT, |
| 202 | enum pkt_flags { |
| 203 | PKT_FLAGS |
| 204 | }; |
| 205 | #undef pf |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* Device flag bits */ |
Dmitry Safonov | 6f107c7 | 2018-01-18 18:31:35 +0000 | [diff] [blame] | 208 | #define pf(flag) static const __u32 F_##flag = (1<<flag##_SHIFT); |
| 209 | PKT_FLAGS |
| 210 | #undef pf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Dmitry Safonov | 99c6d3d | 2018-01-18 18:31:36 +0000 | [diff] [blame] | 212 | #define pf(flag) __stringify(flag), |
| 213 | static char *pkt_flag_names[] = { |
| 214 | PKT_FLAGS |
| 215 | }; |
| 216 | #undef pf |
| 217 | |
| 218 | #define NR_PKT_FLAGS ARRAY_SIZE(pkt_flag_names) |
| 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | /* Thread control flag bits */ |
Stephen Hemminger | 6b80d6a | 2009-09-22 19:41:42 +0000 | [diff] [blame] | 221 | #define T_STOP (1<<0) /* Stop run */ |
| 222 | #define T_RUN (1<<1) /* Start run */ |
| 223 | #define T_REMDEVALL (1<<2) /* Remove all devs */ |
| 224 | #define T_REMDEV (1<<3) /* Remove one dev */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 226 | /* Xmit modes */ |
| 227 | #define M_START_XMIT 0 /* Default normal TX */ |
| 228 | #define M_NETIF_RECEIVE 1 /* Inject packets into stack */ |
John Fastabend | 0967f24 | 2016-07-02 14:12:54 -0700 | [diff] [blame] | 229 | #define M_QUEUE_XMIT 2 /* Inject packet into qdisc */ |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 230 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 231 | /* If lock -- protects updating of if_list */ |
Eric Dumazet | 9a0b1e8 | 2016-10-15 17:50:49 +0200 | [diff] [blame] | 232 | #define if_lock(t) mutex_lock(&(t->if_lock)); |
| 233 | #define if_unlock(t) mutex_unlock(&(t->if_lock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | /* Used to help with determining the pkts on receive */ |
| 236 | #define PKTGEN_MAGIC 0xbe9be955 |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 237 | #define PG_PROC_DIR "pktgen" |
| 238 | #define PGCTRL "pgctrl" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
| 240 | #define MAX_CFLOWS 65536 |
| 241 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 242 | #define VLAN_TAG_SIZE(x) ((x)->vlan_id == 0xffff ? 0 : 4) |
| 243 | #define SVLAN_TAG_SIZE(x) ((x)->svlan_id == 0xffff ? 0 : 4) |
| 244 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 245 | struct flow_state { |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 246 | __be32 cur_daddr; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 247 | int count; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 248 | #ifdef CONFIG_XFRM |
| 249 | struct xfrm_state *x; |
| 250 | #endif |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 251 | __u32 flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | }; |
| 253 | |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 254 | /* flow flag bits */ |
| 255 | #define F_INIT (1<<0) /* flow has been initialized */ |
| 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | struct pktgen_dev { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | /* |
| 259 | * Try to keep frequent/infrequent used vars. separated. |
| 260 | */ |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 261 | struct proc_dir_entry *entry; /* proc file */ |
| 262 | struct pktgen_thread *pg_thread;/* the owner */ |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 263 | struct list_head list; /* chaining in the thread's run-queue */ |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 264 | struct rcu_head rcu; /* freed by RCU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 266 | int running; /* if false, the test will stop */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 267 | |
| 268 | /* If min != max, then we will either do a linear iteration, or |
| 269 | * we will do a random selection from within the range. |
| 270 | */ |
| 271 | __u32 flags; |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 272 | int xmit_mode; |
Amerigo Wang | 68bf9f0 | 2012-10-09 17:48:17 +0000 | [diff] [blame] | 273 | int min_pkt_size; |
| 274 | int max_pkt_size; |
Jamal Hadi Salim | 16dab72 | 2007-07-02 22:39:50 -0700 | [diff] [blame] | 275 | int pkt_overhead; /* overhead for MPLS, VLANs, IPSEC etc */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 276 | int nfrags; |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 277 | int removal_mark; /* non-zero => the device is marked for |
| 278 | * removal by worker thread */ |
| 279 | |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 280 | struct page *page; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 281 | u64 delay; /* nano-seconds */ |
| 282 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 283 | __u64 count; /* Default No packets to send */ |
| 284 | __u64 sofar; /* How many pkts we've sent so far */ |
| 285 | __u64 tx_bytes; /* How many bytes we've transmitted */ |
John Fastabend | f466dba | 2009-12-23 22:02:57 -0800 | [diff] [blame] | 286 | __u64 errors; /* Errors when trying to transmit, */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 288 | /* runtime counters relating to clone_skb */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 290 | __u32 clone_count; |
| 291 | int last_ok; /* Was last skb sent? |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 292 | * Or a failed transmit of some sort? |
| 293 | * This will keep sequence numbers in order |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 294 | */ |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 295 | ktime_t next_tx; |
| 296 | ktime_t started_at; |
| 297 | ktime_t stopped_at; |
| 298 | u64 idle_acc; /* nano-seconds */ |
| 299 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 300 | __u32 seq_num; |
| 301 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 302 | int clone_skb; /* |
| 303 | * Use multiple SKBs during packet gen. |
| 304 | * If this number is greater than 1, then |
| 305 | * that many copies of the same packet will be |
| 306 | * sent before a new packet is allocated. |
| 307 | * If you want to send 1024 identical packets |
| 308 | * before creating a new packet, |
| 309 | * set clone_skb to 1024. |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 310 | */ |
| 311 | |
| 312 | char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 313 | char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 314 | char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 315 | char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 316 | |
| 317 | struct in6_addr in6_saddr; |
| 318 | struct in6_addr in6_daddr; |
| 319 | struct in6_addr cur_in6_daddr; |
| 320 | struct in6_addr cur_in6_saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | /* For ranges */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 322 | struct in6_addr min_in6_daddr; |
| 323 | struct in6_addr max_in6_daddr; |
| 324 | struct in6_addr min_in6_saddr; |
| 325 | struct in6_addr max_in6_saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 327 | /* If we're doing ranges, random or incremental, then this |
| 328 | * defines the min/max for those ranges. |
| 329 | */ |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 330 | __be32 saddr_min; /* inclusive, source IP address */ |
| 331 | __be32 saddr_max; /* exclusive, source IP address */ |
| 332 | __be32 daddr_min; /* inclusive, dest IP address */ |
| 333 | __be32 daddr_max; /* exclusive, dest IP address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 335 | __u16 udp_src_min; /* inclusive, source UDP port */ |
| 336 | __u16 udp_src_max; /* exclusive, source UDP port */ |
| 337 | __u16 udp_dst_min; /* inclusive, dest UDP port */ |
| 338 | __u16 udp_dst_max; /* exclusive, dest UDP port */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 340 | /* DSCP + ECN */ |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 341 | __u8 tos; /* six MSB of (former) IPv4 TOS |
| 342 | are for dscp codepoint */ |
| 343 | __u8 traffic_class; /* ditto for the (former) Traffic Class in IPv6 |
| 344 | (see RFC 3260, sec. 4) */ |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 345 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 346 | /* MPLS */ |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 347 | unsigned int nr_labels; /* Depth of stack, 0 = no MPLS */ |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 348 | __be32 labels[MAX_MPLS_LABELS]; |
| 349 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 350 | /* VLAN/SVLAN (802.1Q/Q-in-Q) */ |
| 351 | __u8 vlan_p; |
| 352 | __u8 vlan_cfi; |
| 353 | __u16 vlan_id; /* 0xffff means no vlan tag */ |
| 354 | |
| 355 | __u8 svlan_p; |
| 356 | __u8 svlan_cfi; |
| 357 | __u16 svlan_id; /* 0xffff means no svlan tag */ |
| 358 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 359 | __u32 src_mac_count; /* How many MACs to iterate through */ |
| 360 | __u32 dst_mac_count; /* How many MACs to iterate through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 362 | unsigned char dst_mac[ETH_ALEN]; |
| 363 | unsigned char src_mac[ETH_ALEN]; |
| 364 | |
| 365 | __u32 cur_dst_mac_offset; |
| 366 | __u32 cur_src_mac_offset; |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 367 | __be32 cur_saddr; |
| 368 | __be32 cur_daddr; |
Eric Dumazet | 66ed1e5 | 2009-10-24 06:55:20 -0700 | [diff] [blame] | 369 | __u16 ip_id; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 370 | __u16 cur_udp_dst; |
| 371 | __u16 cur_udp_src; |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 372 | __u16 cur_queue_map; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 373 | __u32 cur_pkt_size; |
Eric Dumazet | baac856 | 2009-11-05 21:04:32 -0800 | [diff] [blame] | 374 | __u32 last_pkt_size; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 375 | |
| 376 | __u8 hh[14]; |
| 377 | /* = { |
| 378 | 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB, |
| 379 | |
| 380 | We fill in SRC address later |
| 381 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 382 | 0x08, 0x00 |
| 383 | }; |
| 384 | */ |
| 385 | __u16 pad; /* pad out the hh struct to an even 16 bytes */ |
| 386 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 387 | struct sk_buff *skb; /* skb we are to transmit next, used for when we |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 388 | * are transmitting the same one multiple times |
| 389 | */ |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 390 | struct net_device *odev; /* The out-going device. |
| 391 | * Note that the device should have it's |
| 392 | * pg_info pointer pointing back to this |
| 393 | * device. |
| 394 | * Set when the user specifies the out-going |
| 395 | * device name (not when the inject is |
| 396 | * started as it used to do.) |
| 397 | */ |
Eric Dumazet | 593f63b | 2009-11-23 01:44:37 +0000 | [diff] [blame] | 398 | char odevname[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | struct flow_state *flows; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 400 | unsigned int cflows; /* Concurrent flows (config) */ |
| 401 | unsigned int lflow; /* Flow length (config) */ |
| 402 | unsigned int nflows; /* accumulated flows (stats) */ |
| 403 | unsigned int curfl; /* current sequenced flow (state)*/ |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 404 | |
| 405 | u16 queue_map_min; |
| 406 | u16 queue_map_max; |
John Fastabend | 9e50e3a | 2010-11-16 19:12:28 +0000 | [diff] [blame] | 407 | __u32 skb_priority; /* skb priority field */ |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 408 | unsigned int burst; /* number of duplicated packets to burst */ |
Robert Olsson | e99b99b | 2010-03-18 22:44:30 +0000 | [diff] [blame] | 409 | int node; /* Memory node */ |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 410 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 411 | #ifdef CONFIG_XFRM |
| 412 | __u8 ipsmode; /* IPSEC mode (config) */ |
| 413 | __u8 ipsproto; /* IPSEC type (config) */ |
Fan Du | de4aee7 | 2014-01-03 11:18:30 +0800 | [diff] [blame] | 414 | __u32 spi; |
David Miller | b6ca8bd | 2017-11-28 15:45:44 -0500 | [diff] [blame] | 415 | struct xfrm_dst xdst; |
Fan Du | cf93d47e | 2014-01-03 11:18:31 +0800 | [diff] [blame] | 416 | struct dst_ops dstops; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 417 | #endif |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 418 | char result[512]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | }; |
| 420 | |
| 421 | struct pktgen_hdr { |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 422 | __be32 pgh_magic; |
| 423 | __be32 seq_num; |
| 424 | __be32 tv_sec; |
| 425 | __be32 tv_usec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | }; |
| 427 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 428 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 429 | static unsigned int pg_net_id __read_mostly; |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 430 | |
| 431 | struct pktgen_net { |
| 432 | struct net *net; |
| 433 | struct proc_dir_entry *proc_dir; |
| 434 | struct list_head pktgen_threads; |
| 435 | bool pktgen_exiting; |
| 436 | }; |
Eric Dumazet | 551eaff | 2010-11-21 10:26:44 -0800 | [diff] [blame] | 437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | struct pktgen_thread { |
Eric Dumazet | 9a0b1e8 | 2016-10-15 17:50:49 +0200 | [diff] [blame] | 439 | struct mutex if_lock; /* for list of devices */ |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 440 | struct list_head if_list; /* All device here */ |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 441 | struct list_head th_list; |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 442 | struct task_struct *tsk; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 443 | char result[512]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 445 | /* Field for thread to receive "posted" events terminate, |
| 446 | stop ifs etc. */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 447 | |
| 448 | u32 control; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | int cpu; |
| 450 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 451 | wait_queue_head_t queue; |
Denis V. Lunev | d3ede32 | 2008-05-20 15:12:44 -0700 | [diff] [blame] | 452 | struct completion start_done; |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 453 | struct pktgen_net *net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | }; |
| 455 | |
| 456 | #define REMOVE 1 |
| 457 | #define FIND 0 |
| 458 | |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 459 | static const char version[] = |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 460 | "Packet Generator for packet performance testing. " |
| 461 | "Version: " VERSION "\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 463 | static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i); |
| 464 | static int pktgen_add_device(struct pktgen_thread *t, const char *ifname); |
| 465 | static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t, |
Eric Dumazet | 3e98484 | 2009-11-24 14:50:53 -0800 | [diff] [blame] | 466 | const char *ifname, bool exact); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | static int pktgen_device_event(struct notifier_block *, unsigned long, void *); |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 468 | static void pktgen_run_all_threads(struct pktgen_net *pn); |
| 469 | static void pktgen_reset_all_threads(struct pktgen_net *pn); |
| 470 | static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn); |
Stephen Hemminger | 3bda06a | 2009-08-27 13:55:10 +0000 | [diff] [blame] | 471 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 472 | static void pktgen_stop(struct pktgen_thread *t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | static void pktgen_clear_counters(struct pktgen_dev *pkt_dev); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | /* Module parameters, defaults. */ |
Stephen Hemminger | 65c5b78 | 2009-08-27 13:55:09 +0000 | [diff] [blame] | 476 | static int pg_count_d __read_mostly = 1000; |
| 477 | static int pg_delay_d __read_mostly; |
| 478 | static int pg_clone_skb_d __read_mostly; |
| 479 | static int debug __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Luiz Capitulino | 222fa07 | 2006-03-20 22:24:27 -0800 | [diff] [blame] | 481 | static DEFINE_MUTEX(pktgen_thread_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | static struct notifier_block pktgen_notifier_block = { |
| 484 | .notifier_call = pktgen_device_event, |
| 485 | }; |
| 486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | /* |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 488 | * /proc handling functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | * |
| 490 | */ |
| 491 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 492 | static int pgctrl_show(struct seq_file *seq, void *v) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 493 | { |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 494 | seq_puts(seq, version); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 495 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | } |
| 497 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 498 | static ssize_t pgctrl_write(struct file *file, const char __user *buf, |
| 499 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 501 | char data[128]; |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 502 | struct pktgen_net *pn = net_generic(current->nsproxy->net_ns, pg_net_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
Mathias Krause | 0945574 | 2014-02-21 21:38:35 +0100 | [diff] [blame] | 504 | if (!capable(CAP_NET_ADMIN)) |
| 505 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Mathias Krause | 20b0c71 | 2014-02-21 21:38:34 +0100 | [diff] [blame] | 507 | if (count == 0) |
| 508 | return -EINVAL; |
| 509 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 510 | if (count > sizeof(data)) |
| 511 | count = sizeof(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
Mathias Krause | 0945574 | 2014-02-21 21:38:35 +0100 | [diff] [blame] | 513 | if (copy_from_user(data, buf, count)) |
| 514 | return -EFAULT; |
| 515 | |
Mathias Krause | 20b0c71 | 2014-02-21 21:38:34 +0100 | [diff] [blame] | 516 | data[count - 1] = 0; /* Strip trailing '\n' and terminate string */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 518 | if (!strcmp(data, "stop")) |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 519 | pktgen_stop_all_threads_ifs(pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 521 | else if (!strcmp(data, "start")) |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 522 | pktgen_run_all_threads(pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Jesse Brandeburg | eb37b41 | 2008-11-10 16:48:03 -0800 | [diff] [blame] | 524 | else if (!strcmp(data, "reset")) |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 525 | pktgen_reset_all_threads(pn); |
Jesse Brandeburg | eb37b41 | 2008-11-10 16:48:03 -0800 | [diff] [blame] | 526 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 527 | else |
Jesper Dangaard Brouer | 4020726 | 2015-05-21 12:16:56 +0200 | [diff] [blame] | 528 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Mathias Krause | 0945574 | 2014-02-21 21:38:35 +0100 | [diff] [blame] | 530 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 533 | static int pgctrl_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 535 | return single_open(file, pgctrl_show, PDE_DATA(inode)); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 536 | } |
| 537 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 538 | static const struct file_operations pktgen_fops = { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 539 | .open = pgctrl_open, |
| 540 | .read = seq_read, |
| 541 | .llseek = seq_lseek, |
| 542 | .write = pgctrl_write, |
| 543 | .release = single_release, |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 544 | }; |
| 545 | |
| 546 | static int pktgen_if_show(struct seq_file *seq, void *v) |
| 547 | { |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 548 | const struct pktgen_dev *pkt_dev = seq->private; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 549 | ktime_t stopped; |
Dmitry Safonov | 99c6d3d | 2018-01-18 18:31:36 +0000 | [diff] [blame] | 550 | unsigned int i; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 551 | u64 idle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 553 | seq_printf(seq, |
| 554 | "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n", |
| 555 | (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size, |
| 556 | pkt_dev->max_pkt_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 558 | seq_printf(seq, |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 559 | " frags: %d delay: %llu clone_skb: %d ifname: %s\n", |
| 560 | pkt_dev->nfrags, (unsigned long long) pkt_dev->delay, |
Eric Dumazet | 593f63b | 2009-11-23 01:44:37 +0000 | [diff] [blame] | 561 | pkt_dev->clone_skb, pkt_dev->odevname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 563 | seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows, |
| 564 | pkt_dev->lflow); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 566 | seq_printf(seq, |
| 567 | " queue_map_min: %u queue_map_max: %u\n", |
| 568 | pkt_dev->queue_map_min, |
| 569 | pkt_dev->queue_map_max); |
| 570 | |
John Fastabend | 9e50e3a | 2010-11-16 19:12:28 +0000 | [diff] [blame] | 571 | if (pkt_dev->skb_priority) |
| 572 | seq_printf(seq, " skb_priority: %u\n", |
| 573 | pkt_dev->skb_priority); |
| 574 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 575 | if (pkt_dev->flags & F_IPV6) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 576 | seq_printf(seq, |
Alexey Dobriyan | 47a0200 | 2011-05-03 11:23:40 +0000 | [diff] [blame] | 577 | " saddr: %pI6c min_saddr: %pI6c max_saddr: %pI6c\n" |
| 578 | " daddr: %pI6c min_daddr: %pI6c max_daddr: %pI6c\n", |
| 579 | &pkt_dev->in6_saddr, |
| 580 | &pkt_dev->min_in6_saddr, &pkt_dev->max_in6_saddr, |
| 581 | &pkt_dev->in6_daddr, |
| 582 | &pkt_dev->min_in6_daddr, &pkt_dev->max_in6_daddr); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 583 | } else { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 584 | seq_printf(seq, |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 585 | " dst_min: %s dst_max: %s\n", |
| 586 | pkt_dev->dst_min, pkt_dev->dst_max); |
| 587 | seq_printf(seq, |
Jesper Dangaard Brouer | d079abd | 2015-05-21 12:16:11 +0200 | [diff] [blame] | 588 | " src_min: %s src_max: %s\n", |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 589 | pkt_dev->src_min, pkt_dev->src_max); |
| 590 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 592 | seq_puts(seq, " src_mac: "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 594 | seq_printf(seq, "%pM ", |
| 595 | is_zero_ether_addr(pkt_dev->src_mac) ? |
| 596 | pkt_dev->odev->dev_addr : pkt_dev->src_mac); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
Thomas Graf | 97dc48e | 2014-05-16 23:28:54 +0200 | [diff] [blame] | 598 | seq_puts(seq, "dst_mac: "); |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 599 | seq_printf(seq, "%pM\n", pkt_dev->dst_mac); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 601 | seq_printf(seq, |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 602 | " udp_src_min: %d udp_src_max: %d" |
| 603 | " udp_dst_min: %d udp_dst_max: %d\n", |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 604 | pkt_dev->udp_src_min, pkt_dev->udp_src_max, |
| 605 | pkt_dev->udp_dst_min, pkt_dev->udp_dst_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 607 | seq_printf(seq, |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 608 | " src_mac_count: %d dst_mac_count: %d\n", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 609 | pkt_dev->src_mac_count, pkt_dev->dst_mac_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 611 | if (pkt_dev->nr_labels) { |
Thomas Graf | 97dc48e | 2014-05-16 23:28:54 +0200 | [diff] [blame] | 612 | seq_puts(seq, " mpls: "); |
Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 613 | for (i = 0; i < pkt_dev->nr_labels; i++) |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 614 | seq_printf(seq, "%08x%s", ntohl(pkt_dev->labels[i]), |
| 615 | i == pkt_dev->nr_labels-1 ? "\n" : ", "); |
| 616 | } |
| 617 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 618 | if (pkt_dev->vlan_id != 0xffff) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 619 | seq_printf(seq, " vlan_id: %u vlan_p: %u vlan_cfi: %u\n", |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 620 | pkt_dev->vlan_id, pkt_dev->vlan_p, |
| 621 | pkt_dev->vlan_cfi); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 622 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 623 | if (pkt_dev->svlan_id != 0xffff) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 624 | seq_printf(seq, " svlan_id: %u vlan_p: %u vlan_cfi: %u\n", |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 625 | pkt_dev->svlan_id, pkt_dev->svlan_p, |
| 626 | pkt_dev->svlan_cfi); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 627 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 628 | if (pkt_dev->tos) |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 629 | seq_printf(seq, " tos: 0x%02x\n", pkt_dev->tos); |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 630 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 631 | if (pkt_dev->traffic_class) |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 632 | seq_printf(seq, " traffic_class: 0x%02x\n", pkt_dev->traffic_class); |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 633 | |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 634 | if (pkt_dev->burst > 1) |
| 635 | seq_printf(seq, " burst: %d\n", pkt_dev->burst); |
| 636 | |
Robert Olsson | e99b99b | 2010-03-18 22:44:30 +0000 | [diff] [blame] | 637 | if (pkt_dev->node >= 0) |
| 638 | seq_printf(seq, " node: %d\n", pkt_dev->node); |
| 639 | |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 640 | if (pkt_dev->xmit_mode == M_NETIF_RECEIVE) |
| 641 | seq_puts(seq, " xmit_mode: netif_receive\n"); |
John Fastabend | 0967f24 | 2016-07-02 14:12:54 -0700 | [diff] [blame] | 642 | else if (pkt_dev->xmit_mode == M_QUEUE_XMIT) |
| 643 | seq_puts(seq, " xmit_mode: xmit_queue\n"); |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 644 | |
Thomas Graf | 97dc48e | 2014-05-16 23:28:54 +0200 | [diff] [blame] | 645 | seq_puts(seq, " Flags: "); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 646 | |
Dmitry Safonov | 99c6d3d | 2018-01-18 18:31:36 +0000 | [diff] [blame] | 647 | for (i = 0; i < NR_PKT_FLAGS; i++) { |
| 648 | if (i == F_FLOW_SEQ) |
| 649 | if (!pkt_dev->cflows) |
| 650 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
Dmitry Safonov | 99c6d3d | 2018-01-18 18:31:36 +0000 | [diff] [blame] | 652 | if (pkt_dev->flags & (1 << i)) |
| 653 | seq_printf(seq, "%s ", pkt_flag_names[i]); |
| 654 | else if (i == F_FLOW_SEQ) |
| 655 | seq_puts(seq, "FLOW_RND "); |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 656 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 657 | #ifdef CONFIG_XFRM |
Dmitry Safonov | 99c6d3d | 2018-01-18 18:31:36 +0000 | [diff] [blame] | 658 | if (i == F_IPSEC && pkt_dev->spi) |
Fan Du | 8101328 | 2014-01-03 11:18:33 +0800 | [diff] [blame] | 659 | seq_printf(seq, "spi:%u", pkt_dev->spi); |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 660 | #endif |
Dmitry Safonov | 99c6d3d | 2018-01-18 18:31:36 +0000 | [diff] [blame] | 661 | } |
Robert Olsson | e99b99b | 2010-03-18 22:44:30 +0000 | [diff] [blame] | 662 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 663 | seq_puts(seq, "\n"); |
| 664 | |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 665 | /* not really stopped, more like last-running-at */ |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 666 | stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 667 | idle = pkt_dev->idle_acc; |
| 668 | do_div(idle, NSEC_PER_USEC); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 669 | |
| 670 | seq_printf(seq, |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 671 | "Current:\n pkts-sofar: %llu errors: %llu\n", |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 672 | (unsigned long long)pkt_dev->sofar, |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 673 | (unsigned long long)pkt_dev->errors); |
| 674 | |
| 675 | seq_printf(seq, |
| 676 | " started: %lluus stopped: %lluus idle: %lluus\n", |
| 677 | (unsigned long long) ktime_to_us(pkt_dev->started_at), |
| 678 | (unsigned long long) ktime_to_us(stopped), |
| 679 | (unsigned long long) idle); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 680 | |
| 681 | seq_printf(seq, |
| 682 | " seq_num: %d cur_dst_mac_offset: %d cur_src_mac_offset: %d\n", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 683 | pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset, |
| 684 | pkt_dev->cur_src_mac_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 686 | if (pkt_dev->flags & F_IPV6) { |
Alexey Dobriyan | 47a0200 | 2011-05-03 11:23:40 +0000 | [diff] [blame] | 687 | seq_printf(seq, " cur_saddr: %pI6c cur_daddr: %pI6c\n", |
| 688 | &pkt_dev->cur_in6_saddr, |
| 689 | &pkt_dev->cur_in6_daddr); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 690 | } else |
Amerigo Wang | 0373a94 | 2012-10-09 17:48:18 +0000 | [diff] [blame] | 691 | seq_printf(seq, " cur_saddr: %pI4 cur_daddr: %pI4\n", |
| 692 | &pkt_dev->cur_saddr, &pkt_dev->cur_daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 694 | seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 695 | pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 697 | seq_printf(seq, " cur_queue_map: %u\n", pkt_dev->cur_queue_map); |
| 698 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 699 | seq_printf(seq, " flows: %u\n", pkt_dev->nflows); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
| 701 | if (pkt_dev->result[0]) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 702 | seq_printf(seq, "Result: %s\n", pkt_dev->result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | else |
Thomas Graf | 97dc48e | 2014-05-16 23:28:54 +0200 | [diff] [blame] | 704 | seq_puts(seq, "Result: Idle\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 706 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | } |
| 708 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 709 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 710 | static int hex32_arg(const char __user *user_buffer, unsigned long maxlen, |
| 711 | __u32 *num) |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 712 | { |
| 713 | int i = 0; |
| 714 | *num = 0; |
| 715 | |
Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 716 | for (; i < maxlen; i++) { |
Andy Shevchenko | 82fd5b5 | 2010-09-20 20:40:26 +0000 | [diff] [blame] | 717 | int value; |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 718 | char c; |
| 719 | *num <<= 4; |
| 720 | if (get_user(c, &user_buffer[i])) |
| 721 | return -EFAULT; |
Andy Shevchenko | 82fd5b5 | 2010-09-20 20:40:26 +0000 | [diff] [blame] | 722 | value = hex_to_bin(c); |
| 723 | if (value >= 0) |
| 724 | *num |= value; |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 725 | else |
| 726 | break; |
| 727 | } |
| 728 | return i; |
| 729 | } |
| 730 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 731 | static int count_trail_chars(const char __user * user_buffer, |
| 732 | unsigned int maxlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | { |
| 734 | int i; |
| 735 | |
| 736 | for (i = 0; i < maxlen; i++) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 737 | char c; |
| 738 | if (get_user(c, &user_buffer[i])) |
| 739 | return -EFAULT; |
| 740 | switch (c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | case '\"': |
| 742 | case '\n': |
| 743 | case '\r': |
| 744 | case '\t': |
| 745 | case ' ': |
| 746 | case '=': |
| 747 | break; |
| 748 | default: |
| 749 | goto done; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 750 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | } |
| 752 | done: |
| 753 | return i; |
| 754 | } |
| 755 | |
Paul Gortmaker | bf0813b | 2012-01-19 15:40:06 +0000 | [diff] [blame] | 756 | static long num_arg(const char __user *user_buffer, unsigned long maxlen, |
| 757 | unsigned long *num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | { |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 759 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | *num = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 761 | |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 762 | for (i = 0; i < maxlen; i++) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 763 | char c; |
| 764 | if (get_user(c, &user_buffer[i])) |
| 765 | return -EFAULT; |
| 766 | if ((c >= '0') && (c <= '9')) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | *num *= 10; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 768 | *num += c - '0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | } else |
| 770 | break; |
| 771 | } |
| 772 | return i; |
| 773 | } |
| 774 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 775 | static int strn_len(const char __user * user_buffer, unsigned int maxlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | { |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 777 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 779 | for (i = 0; i < maxlen; i++) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 780 | char c; |
| 781 | if (get_user(c, &user_buffer[i])) |
| 782 | return -EFAULT; |
| 783 | switch (c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | case '\"': |
| 785 | case '\n': |
| 786 | case '\r': |
| 787 | case '\t': |
| 788 | case ' ': |
| 789 | goto done_str; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | default: |
| 791 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 792 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | } |
| 794 | done_str: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | return i; |
| 796 | } |
| 797 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 798 | static ssize_t get_labels(const char __user *buffer, struct pktgen_dev *pkt_dev) |
| 799 | { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 800 | unsigned int n = 0; |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 801 | char c; |
| 802 | ssize_t i = 0; |
| 803 | int len; |
| 804 | |
| 805 | pkt_dev->nr_labels = 0; |
| 806 | do { |
| 807 | __u32 tmp; |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 808 | len = hex32_arg(&buffer[i], 8, &tmp); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 809 | if (len <= 0) |
| 810 | return len; |
| 811 | pkt_dev->labels[n] = htonl(tmp); |
| 812 | if (pkt_dev->labels[n] & MPLS_STACK_BOTTOM) |
| 813 | pkt_dev->flags |= F_MPLS_RND; |
| 814 | i += len; |
| 815 | if (get_user(c, &buffer[i])) |
| 816 | return -EFAULT; |
| 817 | i++; |
| 818 | n++; |
| 819 | if (n >= MAX_MPLS_LABELS) |
| 820 | return -E2BIG; |
Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 821 | } while (c == ','); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 822 | |
| 823 | pkt_dev->nr_labels = n; |
| 824 | return i; |
| 825 | } |
| 826 | |
Dmitry Safonov | 52e12d5 | 2018-01-18 18:31:37 +0000 | [diff] [blame] | 827 | static __u32 pktgen_read_flag(const char *f, bool *disable) |
| 828 | { |
| 829 | __u32 i; |
| 830 | |
| 831 | if (f[0] == '!') { |
| 832 | *disable = true; |
| 833 | f++; |
| 834 | } |
| 835 | |
| 836 | for (i = 0; i < NR_PKT_FLAGS; i++) { |
| 837 | if (!IS_ENABLED(CONFIG_XFRM) && i == IPSEC_SHIFT) |
| 838 | continue; |
| 839 | |
| 840 | /* allow only disabling ipv6 flag */ |
| 841 | if (!*disable && i == IPV6_SHIFT) |
| 842 | continue; |
| 843 | |
| 844 | if (strcmp(f, pkt_flag_names[i]) == 0) |
| 845 | return 1 << i; |
| 846 | } |
| 847 | |
| 848 | if (strcmp(f, "FLOW_RND") == 0) { |
| 849 | *disable = !*disable; |
| 850 | return F_FLOW_SEQ; |
| 851 | } |
| 852 | |
| 853 | return 0; |
| 854 | } |
| 855 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 856 | static ssize_t pktgen_if_write(struct file *file, |
| 857 | const char __user * user_buffer, size_t count, |
| 858 | loff_t * offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | { |
Joe Perches | 8a994a7 | 2010-07-12 10:50:23 +0000 | [diff] [blame] | 860 | struct seq_file *seq = file->private_data; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 861 | struct pktgen_dev *pkt_dev = seq->private; |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 862 | int i, max, len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | char name[16], valstr[32]; |
| 864 | unsigned long value = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 865 | char *pg_result = NULL; |
| 866 | int tmp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | char buf[128]; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 868 | |
| 869 | pg_result = &(pkt_dev->result[0]); |
| 870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | if (count < 1) { |
Joe Perches | 294a0b7f | 2014-09-09 21:17:30 -0700 | [diff] [blame] | 872 | pr_warn("wrong command format\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | return -EINVAL; |
| 874 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 875 | |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 876 | max = count; |
| 877 | tmp = count_trail_chars(user_buffer, max); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 878 | if (tmp < 0) { |
Joe Perches | 294a0b7f | 2014-09-09 21:17:30 -0700 | [diff] [blame] | 879 | pr_warn("illegal format\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 880 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | } |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 882 | i = tmp; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | /* Read variable name */ |
| 885 | |
| 886 | len = strn_len(&user_buffer[i], sizeof(name) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 887 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 888 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | memset(name, 0, sizeof(name)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 891 | if (copy_from_user(name, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | return -EFAULT; |
| 893 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 894 | |
| 895 | max = count - i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | len = count_trail_chars(&user_buffer[i], max); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 897 | if (len < 0) |
| 898 | return len; |
| 899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | i += len; |
| 901 | |
| 902 | if (debug) { |
Arnd Bergmann | a870a02 | 2018-03-13 21:58:39 +0100 | [diff] [blame] | 903 | size_t copy = min_t(size_t, count + 1, 1024); |
| 904 | char *tp = strndup_user(user_buffer, copy); |
| 905 | |
| 906 | if (IS_ERR(tp)) |
| 907 | return PTR_ERR(tp); |
| 908 | |
| 909 | pr_debug("%s,%zu buffer -:%s:-\n", name, count, tp); |
Gustavo A. R. Silva | 29d1df7 | 2018-03-14 03:07:27 -0500 | [diff] [blame] | 910 | kfree(tp); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 911 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | |
| 913 | if (!strcmp(name, "min_pkt_size")) { |
| 914 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 915 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 916 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 919 | if (value < 14 + 20 + 8) |
| 920 | value = 14 + 20 + 8; |
| 921 | if (value != pkt_dev->min_pkt_size) { |
| 922 | pkt_dev->min_pkt_size = value; |
| 923 | pkt_dev->cur_pkt_size = value; |
| 924 | } |
| 925 | sprintf(pg_result, "OK: min_pkt_size=%u", |
| 926 | pkt_dev->min_pkt_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | return count; |
| 928 | } |
| 929 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 930 | if (!strcmp(name, "max_pkt_size")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 932 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 933 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 936 | if (value < 14 + 20 + 8) |
| 937 | value = 14 + 20 + 8; |
| 938 | if (value != pkt_dev->max_pkt_size) { |
| 939 | pkt_dev->max_pkt_size = value; |
| 940 | pkt_dev->cur_pkt_size = value; |
| 941 | } |
| 942 | sprintf(pg_result, "OK: max_pkt_size=%u", |
| 943 | pkt_dev->max_pkt_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | return count; |
| 945 | } |
| 946 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 947 | /* Shortcut for min = max */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | |
| 949 | if (!strcmp(name, "pkt_size")) { |
| 950 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 951 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 952 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 953 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 955 | if (value < 14 + 20 + 8) |
| 956 | value = 14 + 20 + 8; |
| 957 | if (value != pkt_dev->min_pkt_size) { |
| 958 | pkt_dev->min_pkt_size = value; |
| 959 | pkt_dev->max_pkt_size = value; |
| 960 | pkt_dev->cur_pkt_size = value; |
| 961 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size); |
| 963 | return count; |
| 964 | } |
| 965 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 966 | if (!strcmp(name, "debug")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 968 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 969 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 970 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 972 | debug = value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | sprintf(pg_result, "OK: debug=%u", debug); |
| 974 | return count; |
| 975 | } |
| 976 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 977 | if (!strcmp(name, "frags")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 979 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 980 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 981 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | i += len; |
| 983 | pkt_dev->nfrags = value; |
| 984 | sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags); |
| 985 | return count; |
| 986 | } |
| 987 | if (!strcmp(name, "delay")) { |
| 988 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 989 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 990 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | i += len; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 993 | if (value == 0x7FFFFFFF) |
| 994 | pkt_dev->delay = ULLONG_MAX; |
| 995 | else |
Eric Dumazet | 9240d71 | 2009-10-03 01:39:18 +0000 | [diff] [blame] | 996 | pkt_dev->delay = (u64)value; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 997 | |
| 998 | sprintf(pg_result, "OK: delay=%llu", |
| 999 | (unsigned long long) pkt_dev->delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | return count; |
| 1001 | } |
Daniel Turull | 43d28b6 | 2010-06-09 22:49:57 +0000 | [diff] [blame] | 1002 | if (!strcmp(name, "rate")) { |
| 1003 | len = num_arg(&user_buffer[i], 10, &value); |
| 1004 | if (len < 0) |
| 1005 | return len; |
| 1006 | |
| 1007 | i += len; |
| 1008 | if (!value) |
| 1009 | return len; |
| 1010 | pkt_dev->delay = pkt_dev->min_pkt_size*8*NSEC_PER_USEC/value; |
| 1011 | if (debug) |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 1012 | pr_info("Delay set at: %llu ns\n", pkt_dev->delay); |
Daniel Turull | 43d28b6 | 2010-06-09 22:49:57 +0000 | [diff] [blame] | 1013 | |
| 1014 | sprintf(pg_result, "OK: rate=%lu", value); |
| 1015 | return count; |
| 1016 | } |
| 1017 | if (!strcmp(name, "ratep")) { |
| 1018 | len = num_arg(&user_buffer[i], 10, &value); |
| 1019 | if (len < 0) |
| 1020 | return len; |
| 1021 | |
| 1022 | i += len; |
| 1023 | if (!value) |
| 1024 | return len; |
| 1025 | pkt_dev->delay = NSEC_PER_SEC/value; |
| 1026 | if (debug) |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 1027 | pr_info("Delay set at: %llu ns\n", pkt_dev->delay); |
Daniel Turull | 43d28b6 | 2010-06-09 22:49:57 +0000 | [diff] [blame] | 1028 | |
| 1029 | sprintf(pg_result, "OK: rate=%lu", value); |
| 1030 | return count; |
| 1031 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1032 | if (!strcmp(name, "udp_src_min")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1034 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1035 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1036 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1038 | if (value != pkt_dev->udp_src_min) { |
| 1039 | pkt_dev->udp_src_min = value; |
| 1040 | pkt_dev->cur_udp_src = value; |
| 1041 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min); |
| 1043 | return count; |
| 1044 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1045 | if (!strcmp(name, "udp_dst_min")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1047 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1048 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1051 | if (value != pkt_dev->udp_dst_min) { |
| 1052 | pkt_dev->udp_dst_min = value; |
| 1053 | pkt_dev->cur_udp_dst = value; |
| 1054 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min); |
| 1056 | return count; |
| 1057 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1058 | if (!strcmp(name, "udp_src_max")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1060 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1061 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1064 | if (value != pkt_dev->udp_src_max) { |
| 1065 | pkt_dev->udp_src_max = value; |
| 1066 | pkt_dev->cur_udp_src = value; |
| 1067 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max); |
| 1069 | return count; |
| 1070 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1071 | if (!strcmp(name, "udp_dst_max")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1073 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1074 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1077 | if (value != pkt_dev->udp_dst_max) { |
| 1078 | pkt_dev->udp_dst_max = value; |
| 1079 | pkt_dev->cur_udp_dst = value; |
| 1080 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max); |
| 1082 | return count; |
| 1083 | } |
| 1084 | if (!strcmp(name, "clone_skb")) { |
| 1085 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1086 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1087 | return len; |
Neil Horman | d887331 | 2011-07-26 06:05:37 +0000 | [diff] [blame] | 1088 | if ((value > 0) && |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 1089 | ((pkt_dev->xmit_mode == M_NETIF_RECEIVE) || |
| 1090 | !(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING))) |
Neil Horman | d887331 | 2011-07-26 06:05:37 +0000 | [diff] [blame] | 1091 | return -ENOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1093 | pkt_dev->clone_skb = value; |
| 1094 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb); |
| 1096 | return count; |
| 1097 | } |
| 1098 | if (!strcmp(name, "count")) { |
| 1099 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1100 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1101 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | i += len; |
| 1104 | pkt_dev->count = value; |
| 1105 | sprintf(pg_result, "OK: count=%llu", |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1106 | (unsigned long long)pkt_dev->count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | return count; |
| 1108 | } |
| 1109 | if (!strcmp(name, "src_mac_count")) { |
| 1110 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1111 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1112 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | i += len; |
| 1115 | if (pkt_dev->src_mac_count != value) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1116 | pkt_dev->src_mac_count = value; |
| 1117 | pkt_dev->cur_src_mac_offset = 0; |
| 1118 | } |
| 1119 | sprintf(pg_result, "OK: src_mac_count=%d", |
| 1120 | pkt_dev->src_mac_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | return count; |
| 1122 | } |
| 1123 | if (!strcmp(name, "dst_mac_count")) { |
| 1124 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1125 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1126 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | i += len; |
| 1129 | if (pkt_dev->dst_mac_count != value) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1130 | pkt_dev->dst_mac_count = value; |
| 1131 | pkt_dev->cur_dst_mac_offset = 0; |
| 1132 | } |
| 1133 | sprintf(pg_result, "OK: dst_mac_count=%d", |
| 1134 | pkt_dev->dst_mac_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | return count; |
| 1136 | } |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 1137 | if (!strcmp(name, "burst")) { |
| 1138 | len = num_arg(&user_buffer[i], 10, &value); |
| 1139 | if (len < 0) |
| 1140 | return len; |
| 1141 | |
| 1142 | i += len; |
John Fastabend | 0967f24 | 2016-07-02 14:12:54 -0700 | [diff] [blame] | 1143 | if ((value > 1) && |
| 1144 | ((pkt_dev->xmit_mode == M_QUEUE_XMIT) || |
| 1145 | ((pkt_dev->xmit_mode == M_START_XMIT) && |
| 1146 | (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING))))) |
Eric Dumazet | 52d6c8c | 2015-02-22 17:03:41 -0800 | [diff] [blame] | 1147 | return -ENOTSUPP; |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 1148 | pkt_dev->burst = value < 1 ? 1 : value; |
| 1149 | sprintf(pg_result, "OK: burst=%d", pkt_dev->burst); |
| 1150 | return count; |
| 1151 | } |
Robert Olsson | e99b99b | 2010-03-18 22:44:30 +0000 | [diff] [blame] | 1152 | if (!strcmp(name, "node")) { |
| 1153 | len = num_arg(&user_buffer[i], 10, &value); |
| 1154 | if (len < 0) |
| 1155 | return len; |
| 1156 | |
| 1157 | i += len; |
| 1158 | |
| 1159 | if (node_possible(value)) { |
| 1160 | pkt_dev->node = value; |
| 1161 | sprintf(pg_result, "OK: node=%d", pkt_dev->node); |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 1162 | if (pkt_dev->page) { |
| 1163 | put_page(pkt_dev->page); |
| 1164 | pkt_dev->page = NULL; |
| 1165 | } |
Robert Olsson | e99b99b | 2010-03-18 22:44:30 +0000 | [diff] [blame] | 1166 | } |
| 1167 | else |
| 1168 | sprintf(pg_result, "ERROR: node not possible"); |
| 1169 | return count; |
| 1170 | } |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 1171 | if (!strcmp(name, "xmit_mode")) { |
| 1172 | char f[32]; |
| 1173 | |
| 1174 | memset(f, 0, 32); |
| 1175 | len = strn_len(&user_buffer[i], sizeof(f) - 1); |
| 1176 | if (len < 0) |
| 1177 | return len; |
| 1178 | |
| 1179 | if (copy_from_user(f, &user_buffer[i], len)) |
| 1180 | return -EFAULT; |
| 1181 | i += len; |
| 1182 | |
| 1183 | if (strcmp(f, "start_xmit") == 0) { |
| 1184 | pkt_dev->xmit_mode = M_START_XMIT; |
| 1185 | } else if (strcmp(f, "netif_receive") == 0) { |
| 1186 | /* clone_skb set earlier, not supported in this mode */ |
| 1187 | if (pkt_dev->clone_skb > 0) |
| 1188 | return -ENOTSUPP; |
| 1189 | |
| 1190 | pkt_dev->xmit_mode = M_NETIF_RECEIVE; |
Alexei Starovoitov | 9eea922 | 2015-05-11 15:19:48 -0700 | [diff] [blame] | 1191 | |
| 1192 | /* make sure new packet is allocated every time |
| 1193 | * pktgen_xmit() is called |
| 1194 | */ |
| 1195 | pkt_dev->last_ok = 1; |
| 1196 | |
| 1197 | /* override clone_skb if user passed default value |
| 1198 | * at module loading time |
| 1199 | */ |
| 1200 | pkt_dev->clone_skb = 0; |
John Fastabend | 0967f24 | 2016-07-02 14:12:54 -0700 | [diff] [blame] | 1201 | } else if (strcmp(f, "queue_xmit") == 0) { |
| 1202 | pkt_dev->xmit_mode = M_QUEUE_XMIT; |
| 1203 | pkt_dev->last_ok = 1; |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 1204 | } else { |
| 1205 | sprintf(pg_result, |
| 1206 | "xmit_mode -:%s:- unknown\nAvailable modes: %s", |
| 1207 | f, "start_xmit, netif_receive\n"); |
| 1208 | return count; |
| 1209 | } |
| 1210 | sprintf(pg_result, "OK: xmit_mode=%s", f); |
| 1211 | return count; |
| 1212 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | if (!strcmp(name, "flag")) { |
Dmitry Safonov | 52e12d5 | 2018-01-18 18:31:37 +0000 | [diff] [blame] | 1214 | __u32 flag; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1215 | char f[32]; |
Dmitry Safonov | 52e12d5 | 2018-01-18 18:31:37 +0000 | [diff] [blame] | 1216 | bool disable = false; |
| 1217 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1218 | memset(f, 0, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | len = strn_len(&user_buffer[i], sizeof(f) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1220 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1221 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | if (copy_from_user(f, &user_buffer[i], len)) |
| 1224 | return -EFAULT; |
| 1225 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1226 | |
Dmitry Safonov | 52e12d5 | 2018-01-18 18:31:37 +0000 | [diff] [blame] | 1227 | flag = pktgen_read_flag(f, &disable); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1228 | |
Dmitry Safonov | 52e12d5 | 2018-01-18 18:31:37 +0000 | [diff] [blame] | 1229 | if (flag) { |
| 1230 | if (disable) |
| 1231 | pkt_dev->flags &= ~flag; |
| 1232 | else |
| 1233 | pkt_dev->flags |= flag; |
| 1234 | } else { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1235 | sprintf(pg_result, |
| 1236 | "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s", |
| 1237 | f, |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 1238 | "IPSRC_RND, IPDST_RND, UDPSRC_RND, UDPDST_RND, " |
Mathias Krause | 72f8e06 | 2014-02-21 21:38:36 +0100 | [diff] [blame] | 1239 | "MACSRC_RND, MACDST_RND, TXSIZE_RND, IPV6, " |
| 1240 | "MPLS_RND, VID_RND, SVID_RND, FLOW_SEQ, " |
| 1241 | "QUEUE_MAP_RND, QUEUE_MAP_CPU, UDPCSUM, " |
Jesper Dangaard Brouer | afb84b62 | 2014-08-28 18:14:47 +0200 | [diff] [blame] | 1242 | "NO_TIMESTAMP, " |
Mathias Krause | 72f8e06 | 2014-02-21 21:38:36 +0100 | [diff] [blame] | 1243 | #ifdef CONFIG_XFRM |
| 1244 | "IPSEC, " |
| 1245 | #endif |
| 1246 | "NODE_ALLOC\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1247 | return count; |
| 1248 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags); |
| 1250 | return count; |
| 1251 | } |
| 1252 | if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) { |
| 1253 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1254 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1255 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1257 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1259 | buf[len] = 0; |
| 1260 | if (strcmp(buf, pkt_dev->dst_min) != 0) { |
| 1261 | memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min)); |
Jakub Kicinski | f15f084 | 2018-07-17 14:32:24 -0700 | [diff] [blame] | 1262 | strcpy(pkt_dev->dst_min, buf); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1263 | pkt_dev->daddr_min = in_aton(pkt_dev->dst_min); |
| 1264 | pkt_dev->cur_daddr = pkt_dev->daddr_min; |
| 1265 | } |
| 1266 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1267 | pr_debug("dst_min set to: %s\n", pkt_dev->dst_min); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1268 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min); |
| 1270 | return count; |
| 1271 | } |
| 1272 | if (!strcmp(name, "dst_max")) { |
| 1273 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1274 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1275 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1276 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1277 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1279 | buf[len] = 0; |
| 1280 | if (strcmp(buf, pkt_dev->dst_max) != 0) { |
| 1281 | memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max)); |
Jakub Kicinski | f15f084 | 2018-07-17 14:32:24 -0700 | [diff] [blame] | 1282 | strcpy(pkt_dev->dst_max, buf); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1283 | pkt_dev->daddr_max = in_aton(pkt_dev->dst_max); |
| 1284 | pkt_dev->cur_daddr = pkt_dev->daddr_max; |
| 1285 | } |
| 1286 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1287 | pr_debug("dst_max set to: %s\n", pkt_dev->dst_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | i += len; |
| 1289 | sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max); |
| 1290 | return count; |
| 1291 | } |
| 1292 | if (!strcmp(name, "dst6")) { |
| 1293 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1294 | if (len < 0) |
| 1295 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
| 1297 | pkt_dev->flags |= F_IPV6; |
| 1298 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1299 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1301 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | |
Amerigo Wang | c468fb1 | 2012-10-09 17:48:20 +0000 | [diff] [blame] | 1303 | in6_pton(buf, -1, pkt_dev->in6_daddr.s6_addr, -1, NULL); |
Alexey Dobriyan | 47a0200 | 2011-05-03 11:23:40 +0000 | [diff] [blame] | 1304 | snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1306 | pkt_dev->cur_in6_daddr = pkt_dev->in6_daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1308 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1309 | pr_debug("dst6 set to: %s\n", buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1311 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | sprintf(pg_result, "OK: dst6=%s", buf); |
| 1313 | return count; |
| 1314 | } |
| 1315 | if (!strcmp(name, "dst6_min")) { |
| 1316 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1317 | if (len < 0) |
| 1318 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | |
| 1320 | pkt_dev->flags |= F_IPV6; |
| 1321 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1322 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1324 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | |
Amerigo Wang | c468fb1 | 2012-10-09 17:48:20 +0000 | [diff] [blame] | 1326 | in6_pton(buf, -1, pkt_dev->min_in6_daddr.s6_addr, -1, NULL); |
Alexey Dobriyan | 47a0200 | 2011-05-03 11:23:40 +0000 | [diff] [blame] | 1327 | snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->min_in6_daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1329 | pkt_dev->cur_in6_daddr = pkt_dev->min_in6_daddr; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1330 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1331 | pr_debug("dst6_min set to: %s\n", buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1333 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | sprintf(pg_result, "OK: dst6_min=%s", buf); |
| 1335 | return count; |
| 1336 | } |
| 1337 | if (!strcmp(name, "dst6_max")) { |
| 1338 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1339 | if (len < 0) |
| 1340 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
| 1342 | pkt_dev->flags |= F_IPV6; |
| 1343 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1344 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1346 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | |
Amerigo Wang | c468fb1 | 2012-10-09 17:48:20 +0000 | [diff] [blame] | 1348 | in6_pton(buf, -1, pkt_dev->max_in6_daddr.s6_addr, -1, NULL); |
Alexey Dobriyan | 47a0200 | 2011-05-03 11:23:40 +0000 | [diff] [blame] | 1349 | snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->max_in6_daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1351 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1352 | pr_debug("dst6_max set to: %s\n", buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1354 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | sprintf(pg_result, "OK: dst6_max=%s", buf); |
| 1356 | return count; |
| 1357 | } |
| 1358 | if (!strcmp(name, "src6")) { |
| 1359 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1360 | if (len < 0) |
| 1361 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
| 1363 | pkt_dev->flags |= F_IPV6; |
| 1364 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1365 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1367 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | |
Amerigo Wang | c468fb1 | 2012-10-09 17:48:20 +0000 | [diff] [blame] | 1369 | in6_pton(buf, -1, pkt_dev->in6_saddr.s6_addr, -1, NULL); |
Alexey Dobriyan | 47a0200 | 2011-05-03 11:23:40 +0000 | [diff] [blame] | 1370 | snprintf(buf, sizeof(buf), "%pI6c", &pkt_dev->in6_saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1372 | pkt_dev->cur_in6_saddr = pkt_dev->in6_saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1374 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1375 | pr_debug("src6 set to: %s\n", buf); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1376 | |
| 1377 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | sprintf(pg_result, "OK: src6=%s", buf); |
| 1379 | return count; |
| 1380 | } |
| 1381 | if (!strcmp(name, "src_min")) { |
| 1382 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1383 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1384 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1385 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1386 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1388 | buf[len] = 0; |
| 1389 | if (strcmp(buf, pkt_dev->src_min) != 0) { |
| 1390 | memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min)); |
Jakub Kicinski | f15f084 | 2018-07-17 14:32:24 -0700 | [diff] [blame] | 1391 | strcpy(pkt_dev->src_min, buf); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1392 | pkt_dev->saddr_min = in_aton(pkt_dev->src_min); |
| 1393 | pkt_dev->cur_saddr = pkt_dev->saddr_min; |
| 1394 | } |
| 1395 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1396 | pr_debug("src_min set to: %s\n", pkt_dev->src_min); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | i += len; |
| 1398 | sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min); |
| 1399 | return count; |
| 1400 | } |
| 1401 | if (!strcmp(name, "src_max")) { |
| 1402 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1403 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1404 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1405 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1406 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1408 | buf[len] = 0; |
| 1409 | if (strcmp(buf, pkt_dev->src_max) != 0) { |
| 1410 | memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max)); |
Jakub Kicinski | f15f084 | 2018-07-17 14:32:24 -0700 | [diff] [blame] | 1411 | strcpy(pkt_dev->src_max, buf); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1412 | pkt_dev->saddr_max = in_aton(pkt_dev->src_max); |
| 1413 | pkt_dev->cur_saddr = pkt_dev->saddr_max; |
| 1414 | } |
| 1415 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1416 | pr_debug("src_max set to: %s\n", pkt_dev->src_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | i += len; |
| 1418 | sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max); |
| 1419 | return count; |
| 1420 | } |
| 1421 | if (!strcmp(name, "dst_mac")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | len = strn_len(&user_buffer[i], sizeof(valstr) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1423 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1424 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | memset(valstr, 0, sizeof(valstr)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1427 | if (copy_from_user(valstr, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | |
Alexey Dobriyan | 4940fc8 | 2011-05-07 23:00:07 +0000 | [diff] [blame] | 1430 | if (!mac_pton(valstr, pkt_dev->dst_mac)) |
| 1431 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | /* Set up Dest MAC */ |
Joe Perches | 9ea08b1 | 2014-01-20 09:52:19 -0800 | [diff] [blame] | 1433 | ether_addr_copy(&pkt_dev->hh[0], pkt_dev->dst_mac); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1434 | |
Alexey Dobriyan | 4940fc8 | 2011-05-07 23:00:07 +0000 | [diff] [blame] | 1435 | sprintf(pg_result, "OK: dstmac %pM", pkt_dev->dst_mac); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | return count; |
| 1437 | } |
| 1438 | if (!strcmp(name, "src_mac")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | len = strn_len(&user_buffer[i], sizeof(valstr) - 1); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1440 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1441 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | memset(valstr, 0, sizeof(valstr)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1444 | if (copy_from_user(valstr, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
Alexey Dobriyan | 4940fc8 | 2011-05-07 23:00:07 +0000 | [diff] [blame] | 1447 | if (!mac_pton(valstr, pkt_dev->src_mac)) |
| 1448 | return -EINVAL; |
Adit Ranadive | ce5d0b4 | 2007-09-16 14:52:15 -0700 | [diff] [blame] | 1449 | /* Set up Src MAC */ |
Joe Perches | 9ea08b1 | 2014-01-20 09:52:19 -0800 | [diff] [blame] | 1450 | ether_addr_copy(&pkt_dev->hh[6], pkt_dev->src_mac); |
Adit Ranadive | ce5d0b4 | 2007-09-16 14:52:15 -0700 | [diff] [blame] | 1451 | |
Alexey Dobriyan | 4940fc8 | 2011-05-07 23:00:07 +0000 | [diff] [blame] | 1452 | sprintf(pg_result, "OK: srcmac %pM", pkt_dev->src_mac); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | return count; |
| 1454 | } |
| 1455 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1456 | if (!strcmp(name, "clear_counters")) { |
| 1457 | pktgen_clear_counters(pkt_dev); |
| 1458 | sprintf(pg_result, "OK: Clearing counters.\n"); |
| 1459 | return count; |
| 1460 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | |
| 1462 | if (!strcmp(name, "flows")) { |
| 1463 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1464 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1465 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1466 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | i += len; |
| 1468 | if (value > MAX_CFLOWS) |
| 1469 | value = MAX_CFLOWS; |
| 1470 | |
| 1471 | pkt_dev->cflows = value; |
| 1472 | sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows); |
| 1473 | return count; |
| 1474 | } |
Fan Du | 6bae919 | 2014-01-10 14:39:13 +0800 | [diff] [blame] | 1475 | #ifdef CONFIG_XFRM |
Fan Du | de4aee7 | 2014-01-03 11:18:30 +0800 | [diff] [blame] | 1476 | if (!strcmp(name, "spi")) { |
| 1477 | len = num_arg(&user_buffer[i], 10, &value); |
| 1478 | if (len < 0) |
| 1479 | return len; |
| 1480 | |
| 1481 | i += len; |
| 1482 | pkt_dev->spi = value; |
| 1483 | sprintf(pg_result, "OK: spi=%u", pkt_dev->spi); |
| 1484 | return count; |
| 1485 | } |
Fan Du | 6bae919 | 2014-01-10 14:39:13 +0800 | [diff] [blame] | 1486 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | if (!strcmp(name, "flowlen")) { |
| 1488 | len = num_arg(&user_buffer[i], 10, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1489 | if (len < 0) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1490 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | i += len; |
| 1493 | pkt_dev->lflow = value; |
| 1494 | sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow); |
| 1495 | return count; |
| 1496 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1497 | |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 1498 | if (!strcmp(name, "queue_map_min")) { |
| 1499 | len = num_arg(&user_buffer[i], 5, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1500 | if (len < 0) |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 1501 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1502 | |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 1503 | i += len; |
| 1504 | pkt_dev->queue_map_min = value; |
| 1505 | sprintf(pg_result, "OK: queue_map_min=%u", pkt_dev->queue_map_min); |
| 1506 | return count; |
| 1507 | } |
| 1508 | |
| 1509 | if (!strcmp(name, "queue_map_max")) { |
| 1510 | len = num_arg(&user_buffer[i], 5, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1511 | if (len < 0) |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 1512 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1513 | |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 1514 | i += len; |
| 1515 | pkt_dev->queue_map_max = value; |
| 1516 | sprintf(pg_result, "OK: queue_map_max=%u", pkt_dev->queue_map_max); |
| 1517 | return count; |
| 1518 | } |
| 1519 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 1520 | if (!strcmp(name, "mpls")) { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1521 | unsigned int n, cnt; |
Stephen Hemminger | cfcabdc | 2007-10-09 01:59:42 -0700 | [diff] [blame] | 1522 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 1523 | len = get_labels(&user_buffer[i], pkt_dev); |
Stephen Hemminger | cfcabdc | 2007-10-09 01:59:42 -0700 | [diff] [blame] | 1524 | if (len < 0) |
| 1525 | return len; |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 1526 | i += len; |
Stephen Hemminger | cfcabdc | 2007-10-09 01:59:42 -0700 | [diff] [blame] | 1527 | cnt = sprintf(pg_result, "OK: mpls="); |
Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 1528 | for (n = 0; n < pkt_dev->nr_labels; n++) |
Stephen Hemminger | cfcabdc | 2007-10-09 01:59:42 -0700 | [diff] [blame] | 1529 | cnt += sprintf(pg_result + cnt, |
| 1530 | "%08x%s", ntohl(pkt_dev->labels[n]), |
| 1531 | n == pkt_dev->nr_labels-1 ? "" : ","); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1532 | |
| 1533 | if (pkt_dev->nr_labels && pkt_dev->vlan_id != 0xffff) { |
| 1534 | pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */ |
| 1535 | pkt_dev->svlan_id = 0xffff; |
| 1536 | |
| 1537 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1538 | pr_debug("VLAN/SVLAN auto turned off\n"); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1539 | } |
| 1540 | return count; |
| 1541 | } |
| 1542 | |
| 1543 | if (!strcmp(name, "vlan_id")) { |
| 1544 | len = num_arg(&user_buffer[i], 4, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1545 | if (len < 0) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1546 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1547 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1548 | i += len; |
| 1549 | if (value <= 4095) { |
| 1550 | pkt_dev->vlan_id = value; /* turn on VLAN */ |
| 1551 | |
| 1552 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1553 | pr_debug("VLAN turned on\n"); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1554 | |
| 1555 | if (debug && pkt_dev->nr_labels) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1556 | pr_debug("MPLS auto turned off\n"); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1557 | |
| 1558 | pkt_dev->nr_labels = 0; /* turn off MPLS */ |
| 1559 | sprintf(pg_result, "OK: vlan_id=%u", pkt_dev->vlan_id); |
| 1560 | } else { |
| 1561 | pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */ |
| 1562 | pkt_dev->svlan_id = 0xffff; |
| 1563 | |
| 1564 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1565 | pr_debug("VLAN/SVLAN turned off\n"); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1566 | } |
| 1567 | return count; |
| 1568 | } |
| 1569 | |
| 1570 | if (!strcmp(name, "vlan_p")) { |
| 1571 | len = num_arg(&user_buffer[i], 1, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1572 | if (len < 0) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1573 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1574 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1575 | i += len; |
| 1576 | if ((value <= 7) && (pkt_dev->vlan_id != 0xffff)) { |
| 1577 | pkt_dev->vlan_p = value; |
| 1578 | sprintf(pg_result, "OK: vlan_p=%u", pkt_dev->vlan_p); |
| 1579 | } else { |
| 1580 | sprintf(pg_result, "ERROR: vlan_p must be 0-7"); |
| 1581 | } |
| 1582 | return count; |
| 1583 | } |
| 1584 | |
| 1585 | if (!strcmp(name, "vlan_cfi")) { |
| 1586 | len = num_arg(&user_buffer[i], 1, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1587 | if (len < 0) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1588 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1589 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1590 | i += len; |
| 1591 | if ((value <= 1) && (pkt_dev->vlan_id != 0xffff)) { |
| 1592 | pkt_dev->vlan_cfi = value; |
| 1593 | sprintf(pg_result, "OK: vlan_cfi=%u", pkt_dev->vlan_cfi); |
| 1594 | } else { |
| 1595 | sprintf(pg_result, "ERROR: vlan_cfi must be 0-1"); |
| 1596 | } |
| 1597 | return count; |
| 1598 | } |
| 1599 | |
| 1600 | if (!strcmp(name, "svlan_id")) { |
| 1601 | len = num_arg(&user_buffer[i], 4, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1602 | if (len < 0) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1603 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1604 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1605 | i += len; |
| 1606 | if ((value <= 4095) && ((pkt_dev->vlan_id != 0xffff))) { |
| 1607 | pkt_dev->svlan_id = value; /* turn on SVLAN */ |
| 1608 | |
| 1609 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1610 | pr_debug("SVLAN turned on\n"); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1611 | |
| 1612 | if (debug && pkt_dev->nr_labels) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1613 | pr_debug("MPLS auto turned off\n"); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1614 | |
| 1615 | pkt_dev->nr_labels = 0; /* turn off MPLS */ |
| 1616 | sprintf(pg_result, "OK: svlan_id=%u", pkt_dev->svlan_id); |
| 1617 | } else { |
| 1618 | pkt_dev->vlan_id = 0xffff; /* turn off VLAN/SVLAN */ |
| 1619 | pkt_dev->svlan_id = 0xffff; |
| 1620 | |
| 1621 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1622 | pr_debug("VLAN/SVLAN turned off\n"); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1623 | } |
| 1624 | return count; |
| 1625 | } |
| 1626 | |
| 1627 | if (!strcmp(name, "svlan_p")) { |
| 1628 | len = num_arg(&user_buffer[i], 1, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1629 | if (len < 0) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1630 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1631 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1632 | i += len; |
| 1633 | if ((value <= 7) && (pkt_dev->svlan_id != 0xffff)) { |
| 1634 | pkt_dev->svlan_p = value; |
| 1635 | sprintf(pg_result, "OK: svlan_p=%u", pkt_dev->svlan_p); |
| 1636 | } else { |
| 1637 | sprintf(pg_result, "ERROR: svlan_p must be 0-7"); |
| 1638 | } |
| 1639 | return count; |
| 1640 | } |
| 1641 | |
| 1642 | if (!strcmp(name, "svlan_cfi")) { |
| 1643 | len = num_arg(&user_buffer[i], 1, &value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1644 | if (len < 0) |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1645 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1646 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 1647 | i += len; |
| 1648 | if ((value <= 1) && (pkt_dev->svlan_id != 0xffff)) { |
| 1649 | pkt_dev->svlan_cfi = value; |
| 1650 | sprintf(pg_result, "OK: svlan_cfi=%u", pkt_dev->svlan_cfi); |
| 1651 | } else { |
| 1652 | sprintf(pg_result, "ERROR: svlan_cfi must be 0-1"); |
| 1653 | } |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 1654 | return count; |
| 1655 | } |
| 1656 | |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 1657 | if (!strcmp(name, "tos")) { |
| 1658 | __u32 tmp_value = 0; |
| 1659 | len = hex32_arg(&user_buffer[i], 2, &tmp_value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1660 | if (len < 0) |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 1661 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1662 | |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 1663 | i += len; |
| 1664 | if (len == 2) { |
| 1665 | pkt_dev->tos = tmp_value; |
| 1666 | sprintf(pg_result, "OK: tos=0x%02x", pkt_dev->tos); |
| 1667 | } else { |
| 1668 | sprintf(pg_result, "ERROR: tos must be 00-ff"); |
| 1669 | } |
| 1670 | return count; |
| 1671 | } |
| 1672 | |
| 1673 | if (!strcmp(name, "traffic_class")) { |
| 1674 | __u32 tmp_value = 0; |
| 1675 | len = hex32_arg(&user_buffer[i], 2, &tmp_value); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1676 | if (len < 0) |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 1677 | return len; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1678 | |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 1679 | i += len; |
| 1680 | if (len == 2) { |
| 1681 | pkt_dev->traffic_class = tmp_value; |
| 1682 | sprintf(pg_result, "OK: traffic_class=0x%02x", pkt_dev->traffic_class); |
| 1683 | } else { |
| 1684 | sprintf(pg_result, "ERROR: traffic_class must be 00-ff"); |
| 1685 | } |
| 1686 | return count; |
| 1687 | } |
| 1688 | |
John Fastabend | 9e50e3a | 2010-11-16 19:12:28 +0000 | [diff] [blame] | 1689 | if (!strcmp(name, "skb_priority")) { |
| 1690 | len = num_arg(&user_buffer[i], 9, &value); |
| 1691 | if (len < 0) |
| 1692 | return len; |
| 1693 | |
| 1694 | i += len; |
| 1695 | pkt_dev->skb_priority = value; |
| 1696 | sprintf(pg_result, "OK: skb_priority=%i", |
| 1697 | pkt_dev->skb_priority); |
| 1698 | return count; |
| 1699 | } |
| 1700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | sprintf(pkt_dev->result, "No such parameter \"%s\"", name); |
| 1702 | return -EINVAL; |
| 1703 | } |
| 1704 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1705 | static int pktgen_if_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 1707 | return single_open(file, pktgen_if_show, PDE_DATA(inode)); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1708 | } |
| 1709 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 1710 | static const struct file_operations pktgen_if_fops = { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1711 | .open = pktgen_if_open, |
| 1712 | .read = seq_read, |
| 1713 | .llseek = seq_lseek, |
| 1714 | .write = pktgen_if_write, |
| 1715 | .release = single_release, |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1716 | }; |
| 1717 | |
| 1718 | static int pktgen_thread_show(struct seq_file *seq, void *v) |
| 1719 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1720 | struct pktgen_thread *t = seq->private; |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 1721 | const struct pktgen_dev *pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1723 | BUG_ON(!t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | |
Thomas Graf | 97dc48e | 2014-05-16 23:28:54 +0200 | [diff] [blame] | 1725 | seq_puts(seq, "Running: "); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1726 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 1727 | rcu_read_lock(); |
| 1728 | list_for_each_entry_rcu(pkt_dev, &t->if_list, list) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1729 | if (pkt_dev->running) |
Eric Dumazet | 593f63b | 2009-11-23 01:44:37 +0000 | [diff] [blame] | 1730 | seq_printf(seq, "%s ", pkt_dev->odevname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | |
Thomas Graf | 97dc48e | 2014-05-16 23:28:54 +0200 | [diff] [blame] | 1732 | seq_puts(seq, "\nStopped: "); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1733 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 1734 | list_for_each_entry_rcu(pkt_dev, &t->if_list, list) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1735 | if (!pkt_dev->running) |
Eric Dumazet | 593f63b | 2009-11-23 01:44:37 +0000 | [diff] [blame] | 1736 | seq_printf(seq, "%s ", pkt_dev->odevname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | |
| 1738 | if (t->result[0]) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1739 | seq_printf(seq, "\nResult: %s\n", t->result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | else |
Thomas Graf | 97dc48e | 2014-05-16 23:28:54 +0200 | [diff] [blame] | 1741 | seq_puts(seq, "\nResult: NA\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 1743 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1745 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1748 | static ssize_t pktgen_thread_write(struct file *file, |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1749 | const char __user * user_buffer, |
| 1750 | size_t count, loff_t * offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | { |
Joe Perches | 8a994a7 | 2010-07-12 10:50:23 +0000 | [diff] [blame] | 1752 | struct seq_file *seq = file->private_data; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1753 | struct pktgen_thread *t = seq->private; |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 1754 | int i, max, len, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | char name[40]; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1756 | char *pg_result; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | if (count < 1) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1759 | // sprintf(pg_result, "Wrong command format"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | return -EINVAL; |
| 1761 | } |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1762 | |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 1763 | max = count; |
| 1764 | len = count_trail_chars(user_buffer, max); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1765 | if (len < 0) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1766 | return len; |
| 1767 | |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 1768 | i = len; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1769 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | /* Read variable name */ |
| 1771 | |
| 1772 | len = strn_len(&user_buffer[i], sizeof(name) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1773 | if (len < 0) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1774 | return len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | memset(name, 0, sizeof(name)); |
| 1777 | if (copy_from_user(name, &user_buffer[i], len)) |
| 1778 | return -EFAULT; |
| 1779 | i += len; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1780 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1781 | max = count - i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | len = count_trail_chars(&user_buffer[i], max); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1783 | if (len < 0) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1784 | return len; |
| 1785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | i += len; |
| 1787 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1788 | if (debug) |
Joe Perches | f342cda | 2012-05-16 17:50:41 +0000 | [diff] [blame] | 1789 | pr_debug("t=%s, count=%lu\n", name, (unsigned long)count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1791 | if (!t) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 1792 | pr_err("ERROR: No thread\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | ret = -EINVAL; |
| 1794 | goto out; |
| 1795 | } |
| 1796 | |
| 1797 | pg_result = &(t->result[0]); |
| 1798 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1799 | if (!strcmp(name, "add_device")) { |
| 1800 | char f[32]; |
| 1801 | memset(f, 0, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | len = strn_len(&user_buffer[i], sizeof(f) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1803 | if (len < 0) { |
| 1804 | ret = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | goto out; |
| 1806 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1807 | if (copy_from_user(f, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | return -EFAULT; |
| 1809 | i += len; |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1810 | mutex_lock(&pktgen_thread_lock); |
Cong Wang | 604dfd6 | 2013-01-27 21:14:08 +0000 | [diff] [blame] | 1811 | ret = pktgen_add_device(t, f); |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1812 | mutex_unlock(&pktgen_thread_lock); |
Cong Wang | 604dfd6 | 2013-01-27 21:14:08 +0000 | [diff] [blame] | 1813 | if (!ret) { |
| 1814 | ret = count; |
| 1815 | sprintf(pg_result, "OK: add_device=%s", f); |
| 1816 | } else |
| 1817 | sprintf(pg_result, "ERROR: can not add device %s", f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | goto out; |
| 1819 | } |
| 1820 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1821 | if (!strcmp(name, "rem_device_all")) { |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1822 | mutex_lock(&pktgen_thread_lock); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1823 | t->control |= T_REMDEVALL; |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1824 | mutex_unlock(&pktgen_thread_lock); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1825 | schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | ret = count; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1827 | sprintf(pg_result, "OK: rem_device_all"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | goto out; |
| 1829 | } |
| 1830 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1831 | if (!strcmp(name, "max_before_softirq")) { |
Robert Olsson | b163911 | 2007-08-28 15:46:58 -0700 | [diff] [blame] | 1832 | sprintf(pg_result, "OK: Note! max_before_softirq is obsoleted -- Do not use"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1833 | ret = count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | goto out; |
| 1835 | } |
| 1836 | |
| 1837 | ret = -EINVAL; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1838 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | return ret; |
| 1840 | } |
| 1841 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1842 | static int pktgen_thread_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 1844 | return single_open(file, pktgen_thread_show, PDE_DATA(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | } |
| 1846 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 1847 | static const struct file_operations pktgen_thread_fops = { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1848 | .open = pktgen_thread_open, |
| 1849 | .read = seq_read, |
| 1850 | .llseek = seq_lseek, |
| 1851 | .write = pktgen_thread_write, |
| 1852 | .release = single_release, |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1853 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | |
| 1855 | /* Think find or remove for NN */ |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1856 | static struct pktgen_dev *__pktgen_NN_threads(const struct pktgen_net *pn, |
| 1857 | const char *ifname, int remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | { |
| 1859 | struct pktgen_thread *t; |
| 1860 | struct pktgen_dev *pkt_dev = NULL; |
Eric Dumazet | 3e98484 | 2009-11-24 14:50:53 -0800 | [diff] [blame] | 1861 | bool exact = (remove == FIND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1863 | list_for_each_entry(t, &pn->pktgen_threads, th_list) { |
Eric Dumazet | 3e98484 | 2009-11-24 14:50:53 -0800 | [diff] [blame] | 1864 | pkt_dev = pktgen_find_dev(t, ifname, exact); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | if (pkt_dev) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1866 | if (remove) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1867 | pkt_dev->removal_mark = 1; |
| 1868 | t->control |= T_REMDEV; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1869 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | break; |
| 1871 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1873 | return pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | } |
| 1875 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1876 | /* |
| 1877 | * mark a device for removal |
| 1878 | */ |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1879 | static void pktgen_mark_device(const struct pktgen_net *pn, const char *ifname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | { |
| 1881 | struct pktgen_dev *pkt_dev = NULL; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1882 | const int max_tries = 10, msec_per_try = 125; |
| 1883 | int i = 0; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1884 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1885 | mutex_lock(&pktgen_thread_lock); |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 1886 | pr_debug("%s: marking %s for removal\n", __func__, ifname); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1887 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1888 | while (1) { |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1889 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1890 | pkt_dev = __pktgen_NN_threads(pn, ifname, REMOVE); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1891 | if (pkt_dev == NULL) |
| 1892 | break; /* success */ |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1893 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1894 | mutex_unlock(&pktgen_thread_lock); |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 1895 | pr_debug("%s: waiting for %s to disappear....\n", |
| 1896 | __func__, ifname); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1897 | schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try)); |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1898 | mutex_lock(&pktgen_thread_lock); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1899 | |
| 1900 | if (++i >= max_tries) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 1901 | pr_err("%s: timed out after waiting %d msec for device %s to be removed\n", |
| 1902 | __func__, msec_per_try * i, ifname); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1903 | break; |
| 1904 | } |
| 1905 | |
| 1906 | } |
| 1907 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 1908 | mutex_unlock(&pktgen_thread_lock); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1909 | } |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1910 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1911 | static void pktgen_change_name(const struct pktgen_net *pn, struct net_device *dev) |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1912 | { |
| 1913 | struct pktgen_thread *t; |
| 1914 | |
Eric Dumazet | 9a0b1e8 | 2016-10-15 17:50:49 +0200 | [diff] [blame] | 1915 | mutex_lock(&pktgen_thread_lock); |
| 1916 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1917 | list_for_each_entry(t, &pn->pktgen_threads, th_list) { |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1918 | struct pktgen_dev *pkt_dev; |
| 1919 | |
Eric Dumazet | 9a0b1e8 | 2016-10-15 17:50:49 +0200 | [diff] [blame] | 1920 | if_lock(t); |
| 1921 | list_for_each_entry(pkt_dev, &t->if_list, list) { |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1922 | if (pkt_dev->odev != dev) |
| 1923 | continue; |
| 1924 | |
David Howells | a8ca16e | 2013-04-12 17:27:28 +0100 | [diff] [blame] | 1925 | proc_remove(pkt_dev->entry); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1926 | |
Alexey Dobriyan | 2975315 | 2009-08-28 23:34:43 -0700 | [diff] [blame] | 1927 | pkt_dev->entry = proc_create_data(dev->name, 0600, |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1928 | pn->proc_dir, |
Alexey Dobriyan | 2975315 | 2009-08-28 23:34:43 -0700 | [diff] [blame] | 1929 | &pktgen_if_fops, |
| 1930 | pkt_dev); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1931 | if (!pkt_dev->entry) |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 1932 | pr_err("can't move proc entry for '%s'\n", |
| 1933 | dev->name); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1934 | break; |
| 1935 | } |
Eric Dumazet | 9a0b1e8 | 2016-10-15 17:50:49 +0200 | [diff] [blame] | 1936 | if_unlock(t); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1937 | } |
Eric Dumazet | 9a0b1e8 | 2016-10-15 17:50:49 +0200 | [diff] [blame] | 1938 | mutex_unlock(&pktgen_thread_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | } |
| 1940 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1941 | static int pktgen_device_event(struct notifier_block *unused, |
| 1942 | unsigned long event, void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 1944 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1945 | struct pktgen_net *pn = net_generic(dev_net(dev), pg_net_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1947 | if (pn->pktgen_exiting) |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 1948 | return NOTIFY_DONE; |
| 1949 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | /* It is OK that we do not hold the group lock right now, |
| 1951 | * as we run under the RTNL lock. |
| 1952 | */ |
| 1953 | |
| 1954 | switch (event) { |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1955 | case NETDEV_CHANGENAME: |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1956 | pktgen_change_name(pn, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | break; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | case NETDEV_UNREGISTER: |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1960 | pktgen_mark_device(pn, dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 1962 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | |
| 1964 | return NOTIFY_DONE; |
| 1965 | } |
| 1966 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1967 | static struct net_device *pktgen_dev_get_by_name(const struct pktgen_net *pn, |
| 1968 | struct pktgen_dev *pkt_dev, |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1969 | const char *ifname) |
Robert Olsson | e6fce5b | 2008-08-07 02:23:01 -0700 | [diff] [blame] | 1970 | { |
| 1971 | char b[IFNAMSIZ+5]; |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 1972 | int i; |
Robert Olsson | e6fce5b | 2008-08-07 02:23:01 -0700 | [diff] [blame] | 1973 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 1974 | for (i = 0; ifname[i] != '@'; i++) { |
| 1975 | if (i == IFNAMSIZ) |
Robert Olsson | e6fce5b | 2008-08-07 02:23:01 -0700 | [diff] [blame] | 1976 | break; |
| 1977 | |
| 1978 | b[i] = ifname[i]; |
| 1979 | } |
| 1980 | b[i] = 0; |
| 1981 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1982 | return dev_get_by_name(pn->net, b); |
Robert Olsson | e6fce5b | 2008-08-07 02:23:01 -0700 | [diff] [blame] | 1983 | } |
| 1984 | |
| 1985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | /* Associate pktgen_dev with a device. */ |
| 1987 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 1988 | static int pktgen_setup_dev(const struct pktgen_net *pn, |
| 1989 | struct pktgen_dev *pkt_dev, const char *ifname) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1990 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | struct net_device *odev; |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 1992 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | |
| 1994 | /* Clean old setups */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | if (pkt_dev->odev) { |
| 1996 | dev_put(pkt_dev->odev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1997 | pkt_dev->odev = NULL; |
| 1998 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 2000 | odev = pktgen_dev_get_by_name(pn, pkt_dev, ifname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | if (!odev) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 2002 | pr_err("no such netdevice: \"%s\"\n", ifname); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 2003 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | } |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 2005 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | if (odev->type != ARPHRD_ETHER) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 2007 | pr_err("not an ethernet device: \"%s\"\n", ifname); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 2008 | err = -EINVAL; |
| 2009 | } else if (!netif_running(odev)) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 2010 | pr_err("device is down: \"%s\"\n", ifname); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 2011 | err = -ENETDOWN; |
| 2012 | } else { |
| 2013 | pkt_dev->odev = odev; |
| 2014 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | dev_put(odev); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 2018 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | } |
| 2020 | |
| 2021 | /* Read pkt_dev from the interface and set up internal pktgen_dev |
| 2022 | * structure to have the right information to create/send packets |
| 2023 | */ |
| 2024 | static void pktgen_setup_inject(struct pktgen_dev *pkt_dev) |
| 2025 | { |
Andrew Gallatin | 64c00d8 | 2008-08-13 15:16:00 -0700 | [diff] [blame] | 2026 | int ntxq; |
| 2027 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2028 | if (!pkt_dev->odev) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 2029 | pr_err("ERROR: pkt_dev->odev == NULL in setup_inject\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2030 | sprintf(pkt_dev->result, |
| 2031 | "ERROR: pkt_dev->odev == NULL in setup_inject.\n"); |
| 2032 | return; |
| 2033 | } |
| 2034 | |
Andrew Gallatin | 64c00d8 | 2008-08-13 15:16:00 -0700 | [diff] [blame] | 2035 | /* make sure that we don't pick a non-existing transmit queue */ |
| 2036 | ntxq = pkt_dev->odev->real_num_tx_queues; |
Robert Olsson | bfdbc0a | 2008-11-19 14:09:47 -0800 | [diff] [blame] | 2037 | |
Andrew Gallatin | 64c00d8 | 2008-08-13 15:16:00 -0700 | [diff] [blame] | 2038 | if (ntxq <= pkt_dev->queue_map_min) { |
Joe Perches | 294a0b7f | 2014-09-09 21:17:30 -0700 | [diff] [blame] | 2039 | pr_warn("WARNING: Requested queue_map_min (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n", |
| 2040 | pkt_dev->queue_map_min, (ntxq ?: 1) - 1, ntxq, |
| 2041 | pkt_dev->odevname); |
Dan Carpenter | 26e29ee | 2012-01-06 03:13:47 +0000 | [diff] [blame] | 2042 | pkt_dev->queue_map_min = (ntxq ?: 1) - 1; |
Andrew Gallatin | 64c00d8 | 2008-08-13 15:16:00 -0700 | [diff] [blame] | 2043 | } |
Jesse Brandeburg | 8827166 | 2008-10-28 13:21:51 -0700 | [diff] [blame] | 2044 | if (pkt_dev->queue_map_max >= ntxq) { |
Joe Perches | 294a0b7f | 2014-09-09 21:17:30 -0700 | [diff] [blame] | 2045 | pr_warn("WARNING: Requested queue_map_max (zero-based) (%d) exceeds valid range [0 - %d] for (%d) queues on %s, resetting\n", |
| 2046 | pkt_dev->queue_map_max, (ntxq ?: 1) - 1, ntxq, |
| 2047 | pkt_dev->odevname); |
Dan Carpenter | 26e29ee | 2012-01-06 03:13:47 +0000 | [diff] [blame] | 2048 | pkt_dev->queue_map_max = (ntxq ?: 1) - 1; |
Andrew Gallatin | 64c00d8 | 2008-08-13 15:16:00 -0700 | [diff] [blame] | 2049 | } |
| 2050 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2051 | /* Default to the interface's mac if not explicitly set. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 2053 | if (is_zero_ether_addr(pkt_dev->src_mac)) |
Joe Perches | 9ea08b1 | 2014-01-20 09:52:19 -0800 | [diff] [blame] | 2054 | ether_addr_copy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2056 | /* Set up Dest MAC */ |
Joe Perches | 9ea08b1 | 2014-01-20 09:52:19 -0800 | [diff] [blame] | 2057 | ether_addr_copy(&(pkt_dev->hh[0]), pkt_dev->dst_mac); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2059 | if (pkt_dev->flags & F_IPV6) { |
Amerigo Wang | 4c139b8 | 2012-10-09 17:48:19 +0000 | [diff] [blame] | 2060 | int i, set = 0, err = 1; |
| 2061 | struct inet6_dev *idev; |
| 2062 | |
Amerigo Wang | 68bf9f0 | 2012-10-09 17:48:17 +0000 | [diff] [blame] | 2063 | if (pkt_dev->min_pkt_size == 0) { |
| 2064 | pkt_dev->min_pkt_size = 14 + sizeof(struct ipv6hdr) |
| 2065 | + sizeof(struct udphdr) |
| 2066 | + sizeof(struct pktgen_hdr) |
| 2067 | + pkt_dev->pkt_overhead; |
| 2068 | } |
| 2069 | |
Eric Dumazet | df7e8e2 | 2017-11-04 08:27:14 -0700 | [diff] [blame] | 2070 | for (i = 0; i < sizeof(struct in6_addr); i++) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2071 | if (pkt_dev->cur_in6_saddr.s6_addr[i]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | set = 1; |
| 2073 | break; |
| 2074 | } |
| 2075 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2076 | if (!set) { |
| 2077 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | /* |
| 2079 | * Use linklevel address if unconfigured. |
| 2080 | * |
| 2081 | * use ipv6_get_lladdr if/when it's get exported |
| 2082 | */ |
| 2083 | |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 2084 | rcu_read_lock(); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2085 | idev = __in6_dev_get(pkt_dev->odev); |
| 2086 | if (idev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | struct inet6_ifaddr *ifp; |
| 2088 | |
| 2089 | read_lock_bh(&idev->lock); |
Amerigo Wang | 4c139b8 | 2012-10-09 17:48:19 +0000 | [diff] [blame] | 2090 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
| 2091 | if ((ifp->scope & IFA_LINK) && |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 2092 | !(ifp->flags & IFA_F_TENTATIVE)) { |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2093 | pkt_dev->cur_in6_saddr = ifp->addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | err = 0; |
| 2095 | break; |
| 2096 | } |
| 2097 | } |
| 2098 | read_unlock_bh(&idev->lock); |
| 2099 | } |
YOSHIFUJI Hideaki | 8814c4b | 2006-09-22 14:44:24 -0700 | [diff] [blame] | 2100 | rcu_read_unlock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2101 | if (err) |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 2102 | pr_err("ERROR: IPv6 link address not available\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2104 | } else { |
Amerigo Wang | 68bf9f0 | 2012-10-09 17:48:17 +0000 | [diff] [blame] | 2105 | if (pkt_dev->min_pkt_size == 0) { |
| 2106 | pkt_dev->min_pkt_size = 14 + sizeof(struct iphdr) |
| 2107 | + sizeof(struct udphdr) |
| 2108 | + sizeof(struct pktgen_hdr) |
| 2109 | + pkt_dev->pkt_overhead; |
| 2110 | } |
| 2111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | pkt_dev->saddr_min = 0; |
| 2113 | pkt_dev->saddr_max = 0; |
| 2114 | if (strlen(pkt_dev->src_min) == 0) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2115 | |
| 2116 | struct in_device *in_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | |
| 2118 | rcu_read_lock(); |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 2119 | in_dev = __in_dev_get_rcu(pkt_dev->odev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | if (in_dev) { |
Florian Westphal | 2638eb8b | 2019-05-31 18:27:09 +0200 | [diff] [blame] | 2121 | const struct in_ifaddr *ifa; |
| 2122 | |
| 2123 | ifa = rcu_dereference(in_dev->ifa_list); |
| 2124 | if (ifa) { |
| 2125 | pkt_dev->saddr_min = ifa->ifa_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | pkt_dev->saddr_max = pkt_dev->saddr_min; |
| 2127 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | } |
| 2129 | rcu_read_unlock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2130 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | pkt_dev->saddr_min = in_aton(pkt_dev->src_min); |
| 2132 | pkt_dev->saddr_max = in_aton(pkt_dev->src_max); |
| 2133 | } |
| 2134 | |
| 2135 | pkt_dev->daddr_min = in_aton(pkt_dev->dst_min); |
| 2136 | pkt_dev->daddr_max = in_aton(pkt_dev->dst_max); |
| 2137 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2138 | /* Initialize current values. */ |
Amerigo Wang | 68bf9f0 | 2012-10-09 17:48:17 +0000 | [diff] [blame] | 2139 | pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size; |
| 2140 | if (pkt_dev->min_pkt_size > pkt_dev->max_pkt_size) |
| 2141 | pkt_dev->max_pkt_size = pkt_dev->min_pkt_size; |
| 2142 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2143 | pkt_dev->cur_dst_mac_offset = 0; |
| 2144 | pkt_dev->cur_src_mac_offset = 0; |
| 2145 | pkt_dev->cur_saddr = pkt_dev->saddr_min; |
| 2146 | pkt_dev->cur_daddr = pkt_dev->daddr_min; |
| 2147 | pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min; |
| 2148 | pkt_dev->cur_udp_src = pkt_dev->udp_src_min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | pkt_dev->nflows = 0; |
| 2150 | } |
| 2151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 2153 | static void spin(struct pktgen_dev *pkt_dev, ktime_t spin_until) |
| 2154 | { |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 2155 | ktime_t start_time, end_time; |
Eric Dumazet | 417bc4b | 2009-10-01 09:29:45 -0700 | [diff] [blame] | 2156 | s64 remaining; |
Stephen Hemminger | 2bc481c | 2009-08-28 23:41:29 -0700 | [diff] [blame] | 2157 | struct hrtimer_sleeper t; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 2158 | |
Sebastian Andrzej Siewior | dbc1625 | 2019-07-26 20:30:50 +0200 | [diff] [blame] | 2159 | hrtimer_init_sleeper_on_stack(&t, CLOCK_MONOTONIC, HRTIMER_MODE_ABS); |
Stephen Hemminger | 2bc481c | 2009-08-28 23:41:29 -0700 | [diff] [blame] | 2160 | hrtimer_set_expires(&t.timer, spin_until); |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 2161 | |
Daniel Turull | 43d28b6 | 2010-06-09 22:49:57 +0000 | [diff] [blame] | 2162 | remaining = ktime_to_ns(hrtimer_expires_remaining(&t.timer)); |
Guenter Roeck | bcf91bd | 2016-05-26 17:21:06 -0700 | [diff] [blame] | 2163 | if (remaining <= 0) |
| 2164 | goto out; |
Stephen Hemminger | 2bc481c | 2009-08-28 23:41:29 -0700 | [diff] [blame] | 2165 | |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 2166 | start_time = ktime_get(); |
Eric Dumazet | 33136d1 | 2011-10-20 17:00:21 -0400 | [diff] [blame] | 2167 | if (remaining < 100000) { |
| 2168 | /* for small delays (<100us), just loop until limit is reached */ |
| 2169 | do { |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 2170 | end_time = ktime_get(); |
| 2171 | } while (ktime_compare(end_time, spin_until) < 0); |
Eric Dumazet | 33136d1 | 2011-10-20 17:00:21 -0400 | [diff] [blame] | 2172 | } else { |
Stephen Hemminger | 2bc481c | 2009-08-28 23:41:29 -0700 | [diff] [blame] | 2173 | do { |
| 2174 | set_current_state(TASK_INTERRUPTIBLE); |
Thomas Gleixner | 9dd8813 | 2019-07-30 21:16:55 +0200 | [diff] [blame] | 2175 | hrtimer_sleeper_start_expires(&t, HRTIMER_MODE_ABS); |
Stephen Hemminger | 2bc481c | 2009-08-28 23:41:29 -0700 | [diff] [blame] | 2176 | |
| 2177 | if (likely(t.task)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | schedule(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | |
Stephen Hemminger | 2bc481c | 2009-08-28 23:41:29 -0700 | [diff] [blame] | 2180 | hrtimer_cancel(&t.timer); |
| 2181 | } while (t.task && pkt_dev->running && !signal_pending(current)); |
| 2182 | __set_current_state(TASK_RUNNING); |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 2183 | end_time = ktime_get(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | } |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 2185 | |
| 2186 | pkt_dev->idle_acc += ktime_to_ns(ktime_sub(end_time, start_time)); |
Guenter Roeck | bcf91bd | 2016-05-26 17:21:06 -0700 | [diff] [blame] | 2187 | out: |
Daniel Turull | 07a0f0f | 2010-06-10 23:08:11 -0700 | [diff] [blame] | 2188 | pkt_dev->next_tx = ktime_add_ns(spin_until, pkt_dev->delay); |
Guenter Roeck | bcf91bd | 2016-05-26 17:21:06 -0700 | [diff] [blame] | 2189 | destroy_hrtimer_on_stack(&t.timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | } |
| 2191 | |
Jamal Hadi Salim | 16dab72 | 2007-07-02 22:39:50 -0700 | [diff] [blame] | 2192 | static inline void set_pkt_overhead(struct pktgen_dev *pkt_dev) |
| 2193 | { |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2194 | pkt_dev->pkt_overhead = 0; |
Jamal Hadi Salim | 16dab72 | 2007-07-02 22:39:50 -0700 | [diff] [blame] | 2195 | pkt_dev->pkt_overhead += pkt_dev->nr_labels*sizeof(u32); |
| 2196 | pkt_dev->pkt_overhead += VLAN_TAG_SIZE(pkt_dev); |
| 2197 | pkt_dev->pkt_overhead += SVLAN_TAG_SIZE(pkt_dev); |
| 2198 | } |
| 2199 | |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 2200 | static inline int f_seen(const struct pktgen_dev *pkt_dev, int flow) |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2201 | { |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 2202 | return !!(pkt_dev->flows[flow].flags & F_INIT); |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2203 | } |
| 2204 | |
| 2205 | static inline int f_pick(struct pktgen_dev *pkt_dev) |
| 2206 | { |
| 2207 | int flow = pkt_dev->curfl; |
| 2208 | |
| 2209 | if (pkt_dev->flags & F_FLOW_SEQ) { |
| 2210 | if (pkt_dev->flows[flow].count >= pkt_dev->lflow) { |
| 2211 | /* reset time */ |
| 2212 | pkt_dev->flows[flow].count = 0; |
Robert Olsson | 1211a64 | 2008-08-05 18:44:26 -0700 | [diff] [blame] | 2213 | pkt_dev->flows[flow].flags = 0; |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2214 | pkt_dev->curfl += 1; |
| 2215 | if (pkt_dev->curfl >= pkt_dev->cflows) |
| 2216 | pkt_dev->curfl = 0; /*reset */ |
| 2217 | } |
| 2218 | } else { |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2219 | flow = prandom_u32() % pkt_dev->cflows; |
Robert Olsson | 1211a64 | 2008-08-05 18:44:26 -0700 | [diff] [blame] | 2220 | pkt_dev->curfl = flow; |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2221 | |
Robert Olsson | 1211a64 | 2008-08-05 18:44:26 -0700 | [diff] [blame] | 2222 | if (pkt_dev->flows[flow].count > pkt_dev->lflow) { |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2223 | pkt_dev->flows[flow].count = 0; |
Robert Olsson | 1211a64 | 2008-08-05 18:44:26 -0700 | [diff] [blame] | 2224 | pkt_dev->flows[flow].flags = 0; |
| 2225 | } |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2226 | } |
| 2227 | |
| 2228 | return pkt_dev->curfl; |
| 2229 | } |
| 2230 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2231 | |
| 2232 | #ifdef CONFIG_XFRM |
| 2233 | /* If there was already an IPSEC SA, we keep it as is, else |
| 2234 | * we go look for it ... |
| 2235 | */ |
Jamal Hadi Salim | bd55775 | 2010-02-22 16:20:22 -0800 | [diff] [blame] | 2236 | #define DUMMY_MARK 0 |
Adrian Bunk | fea1ab0 | 2007-07-30 18:04:09 -0700 | [diff] [blame] | 2237 | static void get_ipsec_sa(struct pktgen_dev *pkt_dev, int flow) |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2238 | { |
| 2239 | struct xfrm_state *x = pkt_dev->flows[flow].x; |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 2240 | struct pktgen_net *pn = net_generic(dev_net(pkt_dev->odev), pg_net_id); |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2241 | if (!x) { |
Fan Du | c454997 | 2014-01-03 11:18:32 +0800 | [diff] [blame] | 2242 | |
| 2243 | if (pkt_dev->spi) { |
| 2244 | /* We need as quick as possible to find the right SA |
| 2245 | * Searching with minimum criteria to archieve this. |
| 2246 | */ |
| 2247 | x = xfrm_state_lookup_byspi(pn->net, htonl(pkt_dev->spi), AF_INET); |
| 2248 | } else { |
| 2249 | /* slow path: we dont already have xfrm_state */ |
Steffen Klassert | 7e65264 | 2018-06-12 14:07:07 +0200 | [diff] [blame] | 2250 | x = xfrm_stateonly_find(pn->net, DUMMY_MARK, 0, |
Fan Du | c454997 | 2014-01-03 11:18:32 +0800 | [diff] [blame] | 2251 | (xfrm_address_t *)&pkt_dev->cur_daddr, |
| 2252 | (xfrm_address_t *)&pkt_dev->cur_saddr, |
| 2253 | AF_INET, |
| 2254 | pkt_dev->ipsmode, |
| 2255 | pkt_dev->ipsproto, 0); |
| 2256 | } |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2257 | if (x) { |
| 2258 | pkt_dev->flows[flow].x = x; |
| 2259 | set_pkt_overhead(pkt_dev); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2260 | pkt_dev->pkt_overhead += x->props.header_len; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | } |
| 2264 | } |
| 2265 | #endif |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2266 | static void set_cur_queue_map(struct pktgen_dev *pkt_dev) |
| 2267 | { |
Robert Olsson | e6fce5b | 2008-08-07 02:23:01 -0700 | [diff] [blame] | 2268 | |
| 2269 | if (pkt_dev->flags & F_QUEUE_MAP_CPU) |
| 2270 | pkt_dev->cur_queue_map = smp_processor_id(); |
| 2271 | |
Eric Dumazet | 896a7cf | 2009-10-02 20:24:59 +0000 | [diff] [blame] | 2272 | else if (pkt_dev->queue_map_min <= pkt_dev->queue_map_max) { |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2273 | __u16 t; |
| 2274 | if (pkt_dev->flags & F_QUEUE_MAP_RND) { |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2275 | t = prandom_u32() % |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2276 | (pkt_dev->queue_map_max - |
| 2277 | pkt_dev->queue_map_min + 1) |
| 2278 | + pkt_dev->queue_map_min; |
| 2279 | } else { |
| 2280 | t = pkt_dev->cur_queue_map + 1; |
| 2281 | if (t > pkt_dev->queue_map_max) |
| 2282 | t = pkt_dev->queue_map_min; |
| 2283 | } |
| 2284 | pkt_dev->cur_queue_map = t; |
| 2285 | } |
Robert Olsson | bfdbc0a | 2008-11-19 14:09:47 -0800 | [diff] [blame] | 2286 | pkt_dev->cur_queue_map = pkt_dev->cur_queue_map % pkt_dev->odev->real_num_tx_queues; |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2287 | } |
| 2288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | /* Increment/randomize headers according to flags and current values |
| 2290 | * for IP src/dest, UDP src/dst port, MAC-Addr src/dst |
| 2291 | */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2292 | static void mod_cur_headers(struct pktgen_dev *pkt_dev) |
| 2293 | { |
| 2294 | __u32 imn; |
| 2295 | __u32 imx; |
| 2296 | int flow = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2297 | |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2298 | if (pkt_dev->cflows) |
| 2299 | flow = f_pick(pkt_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | |
| 2301 | /* Deal with source MAC */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2302 | if (pkt_dev->src_mac_count > 1) { |
| 2303 | __u32 mc; |
| 2304 | __u32 tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2306 | if (pkt_dev->flags & F_MACSRC_RND) |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2307 | mc = prandom_u32() % pkt_dev->src_mac_count; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2308 | else { |
| 2309 | mc = pkt_dev->cur_src_mac_offset++; |
Robert Olsson | ff2a79a | 2008-08-05 18:45:05 -0700 | [diff] [blame] | 2310 | if (pkt_dev->cur_src_mac_offset >= |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2311 | pkt_dev->src_mac_count) |
| 2312 | pkt_dev->cur_src_mac_offset = 0; |
| 2313 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2315 | tmp = pkt_dev->src_mac[5] + (mc & 0xFF); |
| 2316 | pkt_dev->hh[11] = tmp; |
| 2317 | tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8)); |
| 2318 | pkt_dev->hh[10] = tmp; |
| 2319 | tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8)); |
| 2320 | pkt_dev->hh[9] = tmp; |
| 2321 | tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8)); |
| 2322 | pkt_dev->hh[8] = tmp; |
| 2323 | tmp = (pkt_dev->src_mac[1] + (tmp >> 8)); |
| 2324 | pkt_dev->hh[7] = tmp; |
| 2325 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2327 | /* Deal with Destination MAC */ |
| 2328 | if (pkt_dev->dst_mac_count > 1) { |
| 2329 | __u32 mc; |
| 2330 | __u32 tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2332 | if (pkt_dev->flags & F_MACDST_RND) |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2333 | mc = prandom_u32() % pkt_dev->dst_mac_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2335 | else { |
| 2336 | mc = pkt_dev->cur_dst_mac_offset++; |
Robert Olsson | ff2a79a | 2008-08-05 18:45:05 -0700 | [diff] [blame] | 2337 | if (pkt_dev->cur_dst_mac_offset >= |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2338 | pkt_dev->dst_mac_count) { |
| 2339 | pkt_dev->cur_dst_mac_offset = 0; |
| 2340 | } |
| 2341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2343 | tmp = pkt_dev->dst_mac[5] + (mc & 0xFF); |
| 2344 | pkt_dev->hh[5] = tmp; |
| 2345 | tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8)); |
| 2346 | pkt_dev->hh[4] = tmp; |
| 2347 | tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8)); |
| 2348 | pkt_dev->hh[3] = tmp; |
| 2349 | tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8)); |
| 2350 | pkt_dev->hh[2] = tmp; |
| 2351 | tmp = (pkt_dev->dst_mac[1] + (tmp >> 8)); |
| 2352 | pkt_dev->hh[1] = tmp; |
| 2353 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2355 | if (pkt_dev->flags & F_MPLS_RND) { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 2356 | unsigned int i; |
Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 2357 | for (i = 0; i < pkt_dev->nr_labels; i++) |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2358 | if (pkt_dev->labels[i] & MPLS_STACK_BOTTOM) |
| 2359 | pkt_dev->labels[i] = MPLS_STACK_BOTTOM | |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2360 | ((__force __be32)prandom_u32() & |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2361 | htonl(0x000fffff)); |
| 2362 | } |
| 2363 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2364 | if ((pkt_dev->flags & F_VID_RND) && (pkt_dev->vlan_id != 0xffff)) { |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2365 | pkt_dev->vlan_id = prandom_u32() & (4096 - 1); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2366 | } |
| 2367 | |
| 2368 | if ((pkt_dev->flags & F_SVID_RND) && (pkt_dev->svlan_id != 0xffff)) { |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2369 | pkt_dev->svlan_id = prandom_u32() & (4096 - 1); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2370 | } |
| 2371 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2372 | if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) { |
| 2373 | if (pkt_dev->flags & F_UDPSRC_RND) |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2374 | pkt_dev->cur_udp_src = prandom_u32() % |
Stephen Hemminger | 5fa6fc7 | 2007-03-04 16:07:28 -0800 | [diff] [blame] | 2375 | (pkt_dev->udp_src_max - pkt_dev->udp_src_min) |
| 2376 | + pkt_dev->udp_src_min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2378 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | pkt_dev->cur_udp_src++; |
| 2380 | if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max) |
| 2381 | pkt_dev->cur_udp_src = pkt_dev->udp_src_min; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2382 | } |
| 2383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2385 | if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) { |
| 2386 | if (pkt_dev->flags & F_UDPDST_RND) { |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2387 | pkt_dev->cur_udp_dst = prandom_u32() % |
Stephen Hemminger | 5fa6fc7 | 2007-03-04 16:07:28 -0800 | [diff] [blame] | 2388 | (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min) |
| 2389 | + pkt_dev->udp_dst_min; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2390 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | pkt_dev->cur_udp_dst++; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2392 | if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2394 | } |
| 2395 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2396 | |
| 2397 | if (!(pkt_dev->flags & F_IPV6)) { |
| 2398 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2399 | imn = ntohl(pkt_dev->saddr_min); |
| 2400 | imx = ntohl(pkt_dev->saddr_max); |
| 2401 | if (imn < imx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | __u32 t; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2403 | if (pkt_dev->flags & F_IPSRC_RND) |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2404 | t = prandom_u32() % (imx - imn) + imn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | else { |
| 2406 | t = ntohl(pkt_dev->cur_saddr); |
| 2407 | t++; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2408 | if (t > imx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | t = imn; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | } |
| 2412 | pkt_dev->cur_saddr = htonl(t); |
| 2413 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2414 | |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2415 | if (pkt_dev->cflows && f_seen(pkt_dev, flow)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr; |
| 2417 | } else { |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 2418 | imn = ntohl(pkt_dev->daddr_min); |
| 2419 | imx = ntohl(pkt_dev->daddr_max); |
| 2420 | if (imn < imx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | __u32 t; |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 2422 | __be32 s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | if (pkt_dev->flags & F_IPDST_RND) { |
| 2424 | |
Akinobu Mita | 70e3ba7 | 2013-04-29 16:21:41 -0700 | [diff] [blame] | 2425 | do { |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2426 | t = prandom_u32() % |
| 2427 | (imx - imn) + imn; |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 2428 | s = htonl(t); |
Akinobu Mita | 70e3ba7 | 2013-04-29 16:21:41 -0700 | [diff] [blame] | 2429 | } while (ipv4_is_loopback(s) || |
| 2430 | ipv4_is_multicast(s) || |
| 2431 | ipv4_is_lbcast(s) || |
| 2432 | ipv4_is_zeronet(s) || |
| 2433 | ipv4_is_local_multicast(s)); |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 2434 | pkt_dev->cur_daddr = s; |
| 2435 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2436 | t = ntohl(pkt_dev->cur_daddr); |
| 2437 | t++; |
| 2438 | if (t > imx) { |
| 2439 | t = imn; |
| 2440 | } |
| 2441 | pkt_dev->cur_daddr = htonl(t); |
| 2442 | } |
| 2443 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2444 | if (pkt_dev->cflows) { |
Jamal Hadi Salim | 007a531 | 2007-07-02 22:40:36 -0700 | [diff] [blame] | 2445 | pkt_dev->flows[flow].flags |= F_INIT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2446 | pkt_dev->flows[flow].cur_daddr = |
| 2447 | pkt_dev->cur_daddr; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2448 | #ifdef CONFIG_XFRM |
Dmitry Safonov | 6f107c7 | 2018-01-18 18:31:35 +0000 | [diff] [blame] | 2449 | if (pkt_dev->flags & F_IPSEC) |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2450 | get_ipsec_sa(pkt_dev, flow); |
| 2451 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | pkt_dev->nflows++; |
| 2453 | } |
| 2454 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2455 | } else { /* IPV6 * */ |
| 2456 | |
Joe Perches | 06e3041 | 2012-10-18 17:55:31 +0000 | [diff] [blame] | 2457 | if (!ipv6_addr_any(&pkt_dev->min_in6_daddr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | int i; |
| 2459 | |
| 2460 | /* Only random destinations yet */ |
| 2461 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2462 | for (i = 0; i < 4; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | pkt_dev->cur_in6_daddr.s6_addr32[i] = |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2464 | (((__force __be32)prandom_u32() | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2465 | pkt_dev->min_in6_daddr.s6_addr32[i]) & |
| 2466 | pkt_dev->max_in6_daddr.s6_addr32[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2468 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2469 | } |
| 2470 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2471 | if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) { |
| 2472 | __u32 t; |
| 2473 | if (pkt_dev->flags & F_TXSIZE_RND) { |
Akinobu Mita | 33d7c5e | 2013-04-29 16:21:40 -0700 | [diff] [blame] | 2474 | t = prandom_u32() % |
Stephen Hemminger | 5fa6fc7 | 2007-03-04 16:07:28 -0800 | [diff] [blame] | 2475 | (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size) |
| 2476 | + pkt_dev->min_pkt_size; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2477 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2478 | t = pkt_dev->cur_pkt_size + 1; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2479 | if (t > pkt_dev->max_pkt_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | t = pkt_dev->min_pkt_size; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2481 | } |
| 2482 | pkt_dev->cur_pkt_size = t; |
| 2483 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2485 | set_cur_queue_map(pkt_dev); |
Robert Olsson | 45b270f | 2007-08-28 15:45:55 -0700 | [diff] [blame] | 2486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2487 | pkt_dev->flows[flow].count++; |
| 2488 | } |
| 2489 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2490 | |
| 2491 | #ifdef CONFIG_XFRM |
Fengguang Wu | 5537a05 | 2014-01-06 11:00:07 +0100 | [diff] [blame] | 2492 | static u32 pktgen_dst_metrics[RTAX_MAX + 1] = { |
Fan Du | cf93d47e | 2014-01-03 11:18:31 +0800 | [diff] [blame] | 2493 | |
| 2494 | [RTAX_HOPLIMIT] = 0x5, /* Set a static hoplimit */ |
| 2495 | }; |
| 2496 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2497 | static int pktgen_output_ipsec(struct sk_buff *skb, struct pktgen_dev *pkt_dev) |
| 2498 | { |
| 2499 | struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x; |
| 2500 | int err = 0; |
Fan Du | 6de9ace | 2014-01-03 11:18:28 +0800 | [diff] [blame] | 2501 | struct net *net = dev_net(pkt_dev->odev); |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2502 | |
| 2503 | if (!x) |
| 2504 | return 0; |
| 2505 | /* XXX: we dont support tunnel mode for now until |
| 2506 | * we resolve the dst issue */ |
Fan Du | cf93d47e | 2014-01-03 11:18:31 +0800 | [diff] [blame] | 2507 | if ((x->props.mode != XFRM_MODE_TRANSPORT) && (pkt_dev->spi == 0)) |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2508 | return 0; |
| 2509 | |
Fan Du | cf93d47e | 2014-01-03 11:18:31 +0800 | [diff] [blame] | 2510 | /* But when user specify an valid SPI, transformation |
| 2511 | * supports both transport/tunnel mode + ESP/AH type. |
| 2512 | */ |
| 2513 | if ((x->props.mode == XFRM_MODE_TUNNEL) && (pkt_dev->spi != 0)) |
David Miller | b6ca8bd | 2017-11-28 15:45:44 -0500 | [diff] [blame] | 2514 | skb->_skb_refdst = (unsigned long)&pkt_dev->xdst.u.dst | SKB_DST_NOREF; |
Fan Du | cf93d47e | 2014-01-03 11:18:31 +0800 | [diff] [blame] | 2515 | |
| 2516 | rcu_read_lock_bh(); |
Florian Westphal | 0c620e9 | 2019-03-29 21:16:25 +0100 | [diff] [blame] | 2517 | err = pktgen_xfrm_outer_mode_output(x, skb); |
Fan Du | cf93d47e | 2014-01-03 11:18:31 +0800 | [diff] [blame] | 2518 | rcu_read_unlock_bh(); |
Fan Du | 6de9ace | 2014-01-03 11:18:28 +0800 | [diff] [blame] | 2519 | if (err) { |
| 2520 | XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR); |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2521 | goto error; |
Fan Du | 6de9ace | 2014-01-03 11:18:28 +0800 | [diff] [blame] | 2522 | } |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2523 | err = x->type->output(x, skb); |
Fan Du | 6de9ace | 2014-01-03 11:18:28 +0800 | [diff] [blame] | 2524 | if (err) { |
| 2525 | XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR); |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2526 | goto error; |
Fan Du | 6de9ace | 2014-01-03 11:18:28 +0800 | [diff] [blame] | 2527 | } |
Fan Du | 0af0a41 | 2014-01-03 11:18:27 +0800 | [diff] [blame] | 2528 | spin_lock_bh(&x->lock); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2529 | x->curlft.bytes += skb->len; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2530 | x->curlft.packets++; |
Fan Du | 0af0a41 | 2014-01-03 11:18:27 +0800 | [diff] [blame] | 2531 | spin_unlock_bh(&x->lock); |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2532 | error: |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2533 | return err; |
| 2534 | } |
| 2535 | |
Stephen Hemminger | 475ac1e | 2009-08-27 13:55:08 +0000 | [diff] [blame] | 2536 | static void free_SAs(struct pktgen_dev *pkt_dev) |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2537 | { |
| 2538 | if (pkt_dev->cflows) { |
| 2539 | /* let go of the SAs if we have them */ |
Paul Gortmaker | d618222 | 2010-10-18 12:14:44 +0000 | [diff] [blame] | 2540 | int i; |
| 2541 | for (i = 0; i < pkt_dev->cflows; i++) { |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2542 | struct xfrm_state *x = pkt_dev->flows[i].x; |
| 2543 | if (x) { |
| 2544 | xfrm_state_put(x); |
| 2545 | pkt_dev->flows[i].x = NULL; |
| 2546 | } |
| 2547 | } |
| 2548 | } |
| 2549 | } |
| 2550 | |
Stephen Hemminger | 475ac1e | 2009-08-27 13:55:08 +0000 | [diff] [blame] | 2551 | static int process_ipsec(struct pktgen_dev *pkt_dev, |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2552 | struct sk_buff *skb, __be16 protocol) |
| 2553 | { |
Dmitry Safonov | 6f107c7 | 2018-01-18 18:31:35 +0000 | [diff] [blame] | 2554 | if (pkt_dev->flags & F_IPSEC) { |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2555 | struct xfrm_state *x = pkt_dev->flows[pkt_dev->curfl].x; |
| 2556 | int nhead = 0; |
| 2557 | if (x) { |
Eric Dumazet | d496958 | 2015-05-25 16:06:37 -0700 | [diff] [blame] | 2558 | struct ethhdr *eth; |
fan.du | 3868204 | 2013-12-01 16:28:48 +0800 | [diff] [blame] | 2559 | struct iphdr *iph; |
Eric Dumazet | d496958 | 2015-05-25 16:06:37 -0700 | [diff] [blame] | 2560 | int ret; |
fan.du | 3868204 | 2013-12-01 16:28:48 +0800 | [diff] [blame] | 2561 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2562 | nhead = x->props.header_len - skb_headroom(skb); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2563 | if (nhead > 0) { |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2564 | ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC); |
| 2565 | if (ret < 0) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 2566 | pr_err("Error expanding ipsec packet %d\n", |
| 2567 | ret); |
Ilpo Järvinen | b4bb4ac | 2008-10-13 18:43:59 -0700 | [diff] [blame] | 2568 | goto err; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2569 | } |
| 2570 | } |
| 2571 | |
| 2572 | /* ipsec is not expecting ll header */ |
| 2573 | skb_pull(skb, ETH_HLEN); |
| 2574 | ret = pktgen_output_ipsec(skb, pkt_dev); |
| 2575 | if (ret) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 2576 | pr_err("Error creating ipsec packet %d\n", ret); |
Ilpo Järvinen | b4bb4ac | 2008-10-13 18:43:59 -0700 | [diff] [blame] | 2577 | goto err; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2578 | } |
| 2579 | /* restore ll */ |
Johannes Berg | d58ff35 | 2017-06-16 14:29:23 +0200 | [diff] [blame] | 2580 | eth = skb_push(skb, ETH_HLEN); |
Eric Dumazet | d496958 | 2015-05-25 16:06:37 -0700 | [diff] [blame] | 2581 | memcpy(eth, pkt_dev->hh, 2 * ETH_ALEN); |
| 2582 | eth->h_proto = protocol; |
fan.du | 3868204 | 2013-12-01 16:28:48 +0800 | [diff] [blame] | 2583 | |
| 2584 | /* Update IPv4 header len as well as checksum value */ |
| 2585 | iph = ip_hdr(skb); |
| 2586 | iph->tot_len = htons(skb->len - ETH_HLEN); |
| 2587 | ip_send_check(iph); |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2588 | } |
| 2589 | } |
| 2590 | return 1; |
Ilpo Järvinen | b4bb4ac | 2008-10-13 18:43:59 -0700 | [diff] [blame] | 2591 | err: |
| 2592 | kfree_skb(skb); |
| 2593 | return 0; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2594 | } |
| 2595 | #endif |
| 2596 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2597 | static void mpls_push(__be32 *mpls, struct pktgen_dev *pkt_dev) |
| 2598 | { |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 2599 | unsigned int i; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2600 | for (i = 0; i < pkt_dev->nr_labels; i++) |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2601 | *mpls++ = pkt_dev->labels[i] & ~MPLS_STACK_BOTTOM; |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2602 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2603 | mpls--; |
| 2604 | *mpls |= MPLS_STACK_BOTTOM; |
| 2605 | } |
| 2606 | |
Al Viro | 0f37c60 | 2006-11-03 03:49:56 -0800 | [diff] [blame] | 2607 | static inline __be16 build_tci(unsigned int id, unsigned int cfi, |
| 2608 | unsigned int prio) |
| 2609 | { |
| 2610 | return htons(id | (cfi << 12) | (prio << 13)); |
| 2611 | } |
| 2612 | |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2613 | static void pktgen_finalize_skb(struct pktgen_dev *pkt_dev, struct sk_buff *skb, |
| 2614 | int datalen) |
| 2615 | { |
Arnd Bergmann | 7f5d3f2 | 2017-11-07 11:38:32 +0100 | [diff] [blame] | 2616 | struct timespec64 timestamp; |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2617 | struct pktgen_hdr *pgh; |
| 2618 | |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2619 | pgh = skb_put(skb, sizeof(*pgh)); |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2620 | datalen -= sizeof(*pgh); |
| 2621 | |
| 2622 | if (pkt_dev->nfrags <= 0) { |
Johannes Berg | b080db5 | 2017-06-16 14:29:19 +0200 | [diff] [blame] | 2623 | skb_put_zero(skb, datalen); |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2624 | } else { |
| 2625 | int frags = pkt_dev->nfrags; |
| 2626 | int i, len; |
amit salecha | 7d36a99 | 2011-04-22 16:22:20 +0000 | [diff] [blame] | 2627 | int frag_len; |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2628 | |
| 2629 | |
| 2630 | if (frags > MAX_SKB_FRAGS) |
| 2631 | frags = MAX_SKB_FRAGS; |
| 2632 | len = datalen - frags * PAGE_SIZE; |
| 2633 | if (len > 0) { |
Johannes Berg | b080db5 | 2017-06-16 14:29:19 +0200 | [diff] [blame] | 2634 | skb_put_zero(skb, len); |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2635 | datalen = frags * PAGE_SIZE; |
| 2636 | } |
| 2637 | |
| 2638 | i = 0; |
amit salecha | 7d36a99 | 2011-04-22 16:22:20 +0000 | [diff] [blame] | 2639 | frag_len = (datalen/frags) < PAGE_SIZE ? |
| 2640 | (datalen/frags) : PAGE_SIZE; |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2641 | while (datalen > 0) { |
| 2642 | if (unlikely(!pkt_dev->page)) { |
| 2643 | int node = numa_node_id(); |
| 2644 | |
| 2645 | if (pkt_dev->node >= 0 && (pkt_dev->flags & F_NODE)) |
| 2646 | node = pkt_dev->node; |
| 2647 | pkt_dev->page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0); |
| 2648 | if (!pkt_dev->page) |
| 2649 | break; |
| 2650 | } |
Ian Campbell | a0bec1c | 2011-10-18 22:55:11 +0000 | [diff] [blame] | 2651 | get_page(pkt_dev->page); |
Ian Campbell | ea2ab69 | 2011-08-22 23:44:58 +0000 | [diff] [blame] | 2652 | skb_frag_set_page(skb, i, pkt_dev->page); |
Jonathan Lemon | b54c9d5 | 2019-07-30 07:40:33 -0700 | [diff] [blame] | 2653 | skb_frag_off_set(&skb_shinfo(skb)->frags[i], 0); |
amit salecha | 7d36a99 | 2011-04-22 16:22:20 +0000 | [diff] [blame] | 2654 | /*last fragment, fill rest of data*/ |
| 2655 | if (i == (frags - 1)) |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2656 | skb_frag_size_set(&skb_shinfo(skb)->frags[i], |
| 2657 | (datalen < PAGE_SIZE ? datalen : PAGE_SIZE)); |
amit salecha | 7d36a99 | 2011-04-22 16:22:20 +0000 | [diff] [blame] | 2658 | else |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 2659 | skb_frag_size_set(&skb_shinfo(skb)->frags[i], frag_len); |
| 2660 | datalen -= skb_frag_size(&skb_shinfo(skb)->frags[i]); |
| 2661 | skb->len += skb_frag_size(&skb_shinfo(skb)->frags[i]); |
| 2662 | skb->data_len += skb_frag_size(&skb_shinfo(skb)->frags[i]); |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2663 | i++; |
| 2664 | skb_shinfo(skb)->nr_frags = i; |
| 2665 | } |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2666 | } |
| 2667 | |
| 2668 | /* Stamp the time, and sequence number, |
| 2669 | * convert them to network byte order |
| 2670 | */ |
| 2671 | pgh->pgh_magic = htonl(PKTGEN_MAGIC); |
| 2672 | pgh->seq_num = htonl(pkt_dev->seq_num); |
| 2673 | |
Jesper Dangaard Brouer | afb84b62 | 2014-08-28 18:14:47 +0200 | [diff] [blame] | 2674 | if (pkt_dev->flags & F_NO_TIMESTAMP) { |
| 2675 | pgh->tv_sec = 0; |
| 2676 | pgh->tv_usec = 0; |
| 2677 | } else { |
Arnd Bergmann | 7f5d3f2 | 2017-11-07 11:38:32 +0100 | [diff] [blame] | 2678 | /* |
| 2679 | * pgh->tv_sec wraps in y2106 when interpreted as unsigned |
| 2680 | * as done by wireshark, or y2038 when interpreted as signed. |
| 2681 | * This is probably harmless, but if anyone wants to improve |
| 2682 | * it, we could introduce a variant that puts 64-bit nanoseconds |
| 2683 | * into the respective header bytes. |
| 2684 | * This would also be slightly faster to read. |
| 2685 | */ |
| 2686 | ktime_get_real_ts64(×tamp); |
Jesper Dangaard Brouer | afb84b62 | 2014-08-28 18:14:47 +0200 | [diff] [blame] | 2687 | pgh->tv_sec = htonl(timestamp.tv_sec); |
Arnd Bergmann | 7f5d3f2 | 2017-11-07 11:38:32 +0100 | [diff] [blame] | 2688 | pgh->tv_usec = htonl(timestamp.tv_nsec / NSEC_PER_USEC); |
Jesper Dangaard Brouer | afb84b62 | 2014-08-28 18:14:47 +0200 | [diff] [blame] | 2689 | } |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 2690 | } |
| 2691 | |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2692 | static struct sk_buff *pktgen_alloc_skb(struct net_device *dev, |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2693 | struct pktgen_dev *pkt_dev) |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2694 | { |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2695 | unsigned int extralen = LL_RESERVED_SPACE(dev); |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2696 | struct sk_buff *skb = NULL; |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2697 | unsigned int size; |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2698 | |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2699 | size = pkt_dev->cur_pkt_size + 64 + extralen + pkt_dev->pkt_overhead; |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2700 | if (pkt_dev->flags & F_NODE) { |
| 2701 | int node = pkt_dev->node >= 0 ? pkt_dev->node : numa_node_id(); |
| 2702 | |
| 2703 | skb = __alloc_skb(NET_SKB_PAD + size, GFP_NOWAIT, 0, node); |
| 2704 | if (likely(skb)) { |
| 2705 | skb_reserve(skb, NET_SKB_PAD); |
| 2706 | skb->dev = dev; |
| 2707 | } |
| 2708 | } else { |
| 2709 | skb = __netdev_alloc_skb(dev, size, GFP_NOWAIT); |
| 2710 | } |
John Fastabend | 3de0359 | 2016-01-10 21:38:44 -0800 | [diff] [blame] | 2711 | |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2712 | /* the caller pre-fetches from skb->data and reserves for the mac hdr */ |
John Fastabend | 3de0359 | 2016-01-10 21:38:44 -0800 | [diff] [blame] | 2713 | if (likely(skb)) |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2714 | skb_reserve(skb, extralen - 16); |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2715 | |
| 2716 | return skb; |
| 2717 | } |
| 2718 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2719 | static struct sk_buff *fill_packet_ipv4(struct net_device *odev, |
| 2720 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | { |
| 2722 | struct sk_buff *skb = NULL; |
| 2723 | __u8 *eth; |
| 2724 | struct udphdr *udph; |
| 2725 | int datalen, iplen; |
| 2726 | struct iphdr *iph; |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2727 | __be16 protocol = htons(ETH_P_IP); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2728 | __be32 *mpls; |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2729 | __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */ |
| 2730 | __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */ |
| 2731 | __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */ |
| 2732 | __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */ |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2733 | u16 queue_map; |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2734 | |
| 2735 | if (pkt_dev->nr_labels) |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2736 | protocol = htons(ETH_P_MPLS_UC); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2737 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2738 | if (pkt_dev->vlan_id != 0xffff) |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2739 | protocol = htons(ETH_P_8021Q); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2740 | |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2741 | /* Update any of the values, used when we're incrementing various |
| 2742 | * fields. |
| 2743 | */ |
| 2744 | mod_cur_headers(pkt_dev); |
Junchang Wang | eb58906 | 2010-11-07 23:19:43 +0000 | [diff] [blame] | 2745 | queue_map = pkt_dev->cur_queue_map; |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2746 | |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2747 | skb = pktgen_alloc_skb(odev, pkt_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | if (!skb) { |
| 2749 | sprintf(pkt_dev->result, "No memory"); |
| 2750 | return NULL; |
| 2751 | } |
| 2752 | |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2753 | prefetchw(skb->data); |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2754 | skb_reserve(skb, 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | |
| 2756 | /* Reserve for ethernet and IP header */ |
Johannes Berg | d58ff35 | 2017-06-16 14:29:23 +0200 | [diff] [blame] | 2757 | eth = skb_push(skb, 14); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2758 | mpls = skb_put(skb, pkt_dev->nr_labels * sizeof(__u32)); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2759 | if (pkt_dev->nr_labels) |
| 2760 | mpls_push(mpls, pkt_dev); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2761 | |
| 2762 | if (pkt_dev->vlan_id != 0xffff) { |
Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 2763 | if (pkt_dev->svlan_id != 0xffff) { |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2764 | svlan_tci = skb_put(skb, sizeof(__be16)); |
Al Viro | 0f37c60 | 2006-11-03 03:49:56 -0800 | [diff] [blame] | 2765 | *svlan_tci = build_tci(pkt_dev->svlan_id, |
| 2766 | pkt_dev->svlan_cfi, |
| 2767 | pkt_dev->svlan_p); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2768 | svlan_encapsulated_proto = skb_put(skb, |
| 2769 | sizeof(__be16)); |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2770 | *svlan_encapsulated_proto = htons(ETH_P_8021Q); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2771 | } |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2772 | vlan_tci = skb_put(skb, sizeof(__be16)); |
Al Viro | 0f37c60 | 2006-11-03 03:49:56 -0800 | [diff] [blame] | 2773 | *vlan_tci = build_tci(pkt_dev->vlan_id, |
| 2774 | pkt_dev->vlan_cfi, |
| 2775 | pkt_dev->vlan_p); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2776 | vlan_encapsulated_proto = skb_put(skb, sizeof(__be16)); |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2777 | *vlan_encapsulated_proto = htons(ETH_P_IP); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2778 | } |
| 2779 | |
Zhang Shengju | c145aeb | 2016-02-29 08:21:30 +0000 | [diff] [blame] | 2780 | skb_reset_mac_header(skb); |
Thomas Graf | 525cebe | 2013-06-03 11:49:23 +0000 | [diff] [blame] | 2781 | skb_set_network_header(skb, skb->len); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2782 | iph = skb_put(skb, sizeof(struct iphdr)); |
Thomas Graf | 525cebe | 2013-06-03 11:49:23 +0000 | [diff] [blame] | 2783 | |
| 2784 | skb_set_transport_header(skb, skb->len); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2785 | udph = skb_put(skb, sizeof(struct udphdr)); |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2786 | skb_set_queue_mapping(skb, queue_map); |
John Fastabend | 9e50e3a | 2010-11-16 19:12:28 +0000 | [diff] [blame] | 2787 | skb->priority = pkt_dev->skb_priority; |
| 2788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | memcpy(eth, pkt_dev->hh, 12); |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 2790 | *(__be16 *) & eth[12] = protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2791 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2792 | /* Eth + IPh + UDPh + mpls */ |
| 2793 | datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8 - |
Jamal Hadi Salim | 16dab72 | 2007-07-02 22:39:50 -0700 | [diff] [blame] | 2794 | pkt_dev->pkt_overhead; |
Nishank Trivedi | 6af773e | 2012-09-12 13:32:49 +0000 | [diff] [blame] | 2795 | if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | datalen = sizeof(struct pktgen_hdr); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | udph->source = htons(pkt_dev->cur_udp_src); |
| 2799 | udph->dest = htons(pkt_dev->cur_udp_dst); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2800 | udph->len = htons(datalen + 8); /* DATA + udphdr */ |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2801 | udph->check = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | |
| 2803 | iph->ihl = 5; |
| 2804 | iph->version = 4; |
| 2805 | iph->ttl = 32; |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 2806 | iph->tos = pkt_dev->tos; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2807 | iph->protocol = IPPROTO_UDP; /* UDP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | iph->saddr = pkt_dev->cur_saddr; |
| 2809 | iph->daddr = pkt_dev->cur_daddr; |
Eric Dumazet | 66ed1e5 | 2009-10-24 06:55:20 -0700 | [diff] [blame] | 2810 | iph->id = htons(pkt_dev->ip_id); |
| 2811 | pkt_dev->ip_id++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | iph->frag_off = 0; |
| 2813 | iplen = 20 + 8 + datalen; |
| 2814 | iph->tot_len = htons(iplen); |
Thomas Graf | 03c633e | 2013-07-25 14:08:04 +0200 | [diff] [blame] | 2815 | ip_send_check(iph); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2816 | skb->protocol = protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | skb->dev = odev; |
| 2818 | skb->pkt_type = PACKET_HOST; |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2819 | |
Sabrina Dubroca | 7744b5f | 2015-02-04 23:08:50 +0100 | [diff] [blame] | 2820 | pktgen_finalize_skb(pkt_dev, skb, datalen); |
| 2821 | |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2822 | if (!(pkt_dev->flags & F_UDPCSUM)) { |
| 2823 | skb->ip_summed = CHECKSUM_NONE; |
Tom Herbert | c8cd098 | 2015-12-14 11:19:44 -0800 | [diff] [blame] | 2824 | } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM)) { |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2825 | skb->ip_summed = CHECKSUM_PARTIAL; |
| 2826 | skb->csum = 0; |
Sabrina Dubroca | 7744b5f | 2015-02-04 23:08:50 +0100 | [diff] [blame] | 2827 | udp4_hwcsum(skb, iph->saddr, iph->daddr); |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2828 | } else { |
Sabrina Dubroca | 7744b5f | 2015-02-04 23:08:50 +0100 | [diff] [blame] | 2829 | __wsum csum = skb_checksum(skb, skb_transport_offset(skb), datalen + 8, 0); |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2830 | |
| 2831 | /* add protocol-dependent pseudo-header */ |
Sabrina Dubroca | 7744b5f | 2015-02-04 23:08:50 +0100 | [diff] [blame] | 2832 | udph->check = csum_tcpudp_magic(iph->saddr, iph->daddr, |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2833 | datalen + 8, IPPROTO_UDP, csum); |
| 2834 | |
| 2835 | if (udph->check == 0) |
| 2836 | udph->check = CSUM_MANGLED_0; |
| 2837 | } |
| 2838 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 2839 | #ifdef CONFIG_XFRM |
| 2840 | if (!process_ipsec(pkt_dev, skb, protocol)) |
| 2841 | return NULL; |
| 2842 | #endif |
| 2843 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 | return skb; |
| 2845 | } |
| 2846 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2847 | static struct sk_buff *fill_packet_ipv6(struct net_device *odev, |
| 2848 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | { |
| 2850 | struct sk_buff *skb = NULL; |
| 2851 | __u8 *eth; |
| 2852 | struct udphdr *udph; |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2853 | int datalen, udplen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2854 | struct ipv6hdr *iph; |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2855 | __be16 protocol = htons(ETH_P_IPV6); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2856 | __be32 *mpls; |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2857 | __be16 *vlan_tci = NULL; /* Encapsulates priority and VLAN ID */ |
| 2858 | __be16 *vlan_encapsulated_proto = NULL; /* packet type ID field (or len) for VLAN tag */ |
| 2859 | __be16 *svlan_tci = NULL; /* Encapsulates priority and SVLAN ID */ |
| 2860 | __be16 *svlan_encapsulated_proto = NULL; /* packet type ID field (or len) for SVLAN tag */ |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2861 | u16 queue_map; |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2862 | |
| 2863 | if (pkt_dev->nr_labels) |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2864 | protocol = htons(ETH_P_MPLS_UC); |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2865 | |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2866 | if (pkt_dev->vlan_id != 0xffff) |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2867 | protocol = htons(ETH_P_8021Q); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2868 | |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2869 | /* Update any of the values, used when we're incrementing various |
| 2870 | * fields. |
| 2871 | */ |
| 2872 | mod_cur_headers(pkt_dev); |
Junchang Wang | eb58906 | 2010-11-07 23:19:43 +0000 | [diff] [blame] | 2873 | queue_map = pkt_dev->cur_queue_map; |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2874 | |
Paolo Abeni | 63d7546 | 2016-09-30 16:56:45 +0200 | [diff] [blame] | 2875 | skb = pktgen_alloc_skb(odev, pkt_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | if (!skb) { |
| 2877 | sprintf(pkt_dev->result, "No memory"); |
| 2878 | return NULL; |
| 2879 | } |
| 2880 | |
Daniel Borkmann | 7a6e288 | 2013-06-08 14:18:16 +0200 | [diff] [blame] | 2881 | prefetchw(skb->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | skb_reserve(skb, 16); |
| 2883 | |
| 2884 | /* Reserve for ethernet and IP header */ |
Johannes Berg | d58ff35 | 2017-06-16 14:29:23 +0200 | [diff] [blame] | 2885 | eth = skb_push(skb, 14); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2886 | mpls = skb_put(skb, pkt_dev->nr_labels * sizeof(__u32)); |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2887 | if (pkt_dev->nr_labels) |
| 2888 | mpls_push(mpls, pkt_dev); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2889 | |
| 2890 | if (pkt_dev->vlan_id != 0xffff) { |
Stephen Hemminger | e71a478 | 2007-04-10 20:10:33 -0700 | [diff] [blame] | 2891 | if (pkt_dev->svlan_id != 0xffff) { |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2892 | svlan_tci = skb_put(skb, sizeof(__be16)); |
Al Viro | 0f37c60 | 2006-11-03 03:49:56 -0800 | [diff] [blame] | 2893 | *svlan_tci = build_tci(pkt_dev->svlan_id, |
| 2894 | pkt_dev->svlan_cfi, |
| 2895 | pkt_dev->svlan_p); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2896 | svlan_encapsulated_proto = skb_put(skb, |
| 2897 | sizeof(__be16)); |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2898 | *svlan_encapsulated_proto = htons(ETH_P_8021Q); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2899 | } |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2900 | vlan_tci = skb_put(skb, sizeof(__be16)); |
Al Viro | 0f37c60 | 2006-11-03 03:49:56 -0800 | [diff] [blame] | 2901 | *vlan_tci = build_tci(pkt_dev->vlan_id, |
| 2902 | pkt_dev->vlan_cfi, |
| 2903 | pkt_dev->vlan_p); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2904 | vlan_encapsulated_proto = skb_put(skb, sizeof(__be16)); |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2905 | *vlan_encapsulated_proto = htons(ETH_P_IPV6); |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 2906 | } |
| 2907 | |
Zhang Shengju | c145aeb | 2016-02-29 08:21:30 +0000 | [diff] [blame] | 2908 | skb_reset_mac_header(skb); |
Thomas Graf | 525cebe | 2013-06-03 11:49:23 +0000 | [diff] [blame] | 2909 | skb_set_network_header(skb, skb->len); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2910 | iph = skb_put(skb, sizeof(struct ipv6hdr)); |
Thomas Graf | 525cebe | 2013-06-03 11:49:23 +0000 | [diff] [blame] | 2911 | |
| 2912 | skb_set_transport_header(skb, skb->len); |
Johannes Berg | 4df864c | 2017-06-16 14:29:21 +0200 | [diff] [blame] | 2913 | udph = skb_put(skb, sizeof(struct udphdr)); |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 2914 | skb_set_queue_mapping(skb, queue_map); |
John Fastabend | 9e50e3a | 2010-11-16 19:12:28 +0000 | [diff] [blame] | 2915 | skb->priority = pkt_dev->skb_priority; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | memcpy(eth, pkt_dev->hh, 12); |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 2918 | *(__be16 *) ð[12] = protocol; |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2919 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2920 | /* Eth + IPh + UDPh + mpls */ |
| 2921 | datalen = pkt_dev->cur_pkt_size - 14 - |
| 2922 | sizeof(struct ipv6hdr) - sizeof(struct udphdr) - |
Jamal Hadi Salim | 16dab72 | 2007-07-02 22:39:50 -0700 | [diff] [blame] | 2923 | pkt_dev->pkt_overhead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | |
Amerigo Wang | 5aa8b57 | 2012-10-09 17:48:16 +0000 | [diff] [blame] | 2925 | if (datalen < 0 || datalen < sizeof(struct pktgen_hdr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2926 | datalen = sizeof(struct pktgen_hdr); |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 2927 | net_info_ratelimited("increased datalen to %d\n", datalen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | } |
| 2929 | |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2930 | udplen = datalen + sizeof(struct udphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | udph->source = htons(pkt_dev->cur_udp_src); |
| 2932 | udph->dest = htons(pkt_dev->cur_udp_dst); |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2933 | udph->len = htons(udplen); |
| 2934 | udph->check = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | |
Stephen Hemminger | d5f1ce9 | 2007-03-04 16:08:08 -0800 | [diff] [blame] | 2936 | *(__be32 *) iph = htonl(0x60000000); /* Version + flow */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 2938 | if (pkt_dev->traffic_class) { |
| 2939 | /* Version + traffic class + flow (0) */ |
Al Viro | 252e3346 | 2006-11-14 20:48:11 -0800 | [diff] [blame] | 2940 | *(__be32 *)iph |= htonl(0x60000000 | (pkt_dev->traffic_class << 20)); |
Francesco Fondelli | 1ca7768 | 2006-09-27 16:32:03 -0700 | [diff] [blame] | 2941 | } |
| 2942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | iph->hop_limit = 32; |
| 2944 | |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2945 | iph->payload_len = htons(udplen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | iph->nexthdr = IPPROTO_UDP; |
| 2947 | |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 2948 | iph->daddr = pkt_dev->cur_in6_daddr; |
| 2949 | iph->saddr = pkt_dev->cur_in6_saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | |
Steven Whitehouse | ca6549a | 2006-03-23 01:10:26 -0800 | [diff] [blame] | 2951 | skb->protocol = protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | skb->dev = odev; |
| 2953 | skb->pkt_type = PACKET_HOST; |
| 2954 | |
Sabrina Dubroca | 7744b5f | 2015-02-04 23:08:50 +0100 | [diff] [blame] | 2955 | pktgen_finalize_skb(pkt_dev, skb, datalen); |
| 2956 | |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2957 | if (!(pkt_dev->flags & F_UDPCSUM)) { |
| 2958 | skb->ip_summed = CHECKSUM_NONE; |
Tom Herbert | c8cd098 | 2015-12-14 11:19:44 -0800 | [diff] [blame] | 2959 | } else if (odev->features & (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM)) { |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2960 | skb->ip_summed = CHECKSUM_PARTIAL; |
| 2961 | skb->csum_start = skb_transport_header(skb) - skb->head; |
| 2962 | skb->csum_offset = offsetof(struct udphdr, check); |
| 2963 | udph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, 0); |
| 2964 | } else { |
Sabrina Dubroca | 7744b5f | 2015-02-04 23:08:50 +0100 | [diff] [blame] | 2965 | __wsum csum = skb_checksum(skb, skb_transport_offset(skb), udplen, 0); |
Thomas Graf | c26bf4a | 2013-07-25 18:12:18 +0200 | [diff] [blame] | 2966 | |
| 2967 | /* add protocol-dependent pseudo-header */ |
| 2968 | udph->check = csum_ipv6_magic(&iph->saddr, &iph->daddr, udplen, IPPROTO_UDP, csum); |
| 2969 | |
| 2970 | if (udph->check == 0) |
| 2971 | udph->check = CSUM_MANGLED_0; |
| 2972 | } |
| 2973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | return skb; |
| 2975 | } |
| 2976 | |
Stephen Hemminger | 475ac1e | 2009-08-27 13:55:08 +0000 | [diff] [blame] | 2977 | static struct sk_buff *fill_packet(struct net_device *odev, |
| 2978 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2980 | if (pkt_dev->flags & F_IPV6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | return fill_packet_ipv6(odev, pkt_dev); |
| 2982 | else |
| 2983 | return fill_packet_ipv4(odev, pkt_dev); |
| 2984 | } |
| 2985 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2986 | static void pktgen_clear_counters(struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2988 | pkt_dev->seq_num = 1; |
| 2989 | pkt_dev->idle_acc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | pkt_dev->sofar = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2991 | pkt_dev->tx_bytes = 0; |
| 2992 | pkt_dev->errors = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | } |
| 2994 | |
| 2995 | /* Set up structure for sending pkts, clear counters */ |
| 2996 | |
| 2997 | static void pktgen_run(struct pktgen_thread *t) |
| 2998 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 2999 | struct pktgen_dev *pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | int started = 0; |
| 3001 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3002 | func_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3003 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3004 | rcu_read_lock(); |
| 3005 | list_for_each_entry_rcu(pkt_dev, &t->if_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | |
| 3007 | /* |
| 3008 | * setup odev and create initial packet. |
| 3009 | */ |
| 3010 | pktgen_setup_inject(pkt_dev); |
| 3011 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3012 | if (pkt_dev->odev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | pktgen_clear_counters(pkt_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | pkt_dev->skb = NULL; |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3015 | pkt_dev->started_at = pkt_dev->next_tx = ktime_get(); |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 3016 | |
Jamal Hadi Salim | 16dab72 | 2007-07-02 22:39:50 -0700 | [diff] [blame] | 3017 | set_pkt_overhead(pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3019 | strcpy(pkt_dev->result, "Starting"); |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3020 | pkt_dev->running = 1; /* Cranke yeself! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3021 | started++; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3022 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | strcpy(pkt_dev->result, "Error starting"); |
| 3024 | } |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3025 | rcu_read_unlock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3026 | if (started) |
| 3027 | t->control &= ~(T_STOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3028 | } |
| 3029 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3030 | static void pktgen_stop_all_threads_ifs(struct pktgen_net *pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3032 | struct pktgen_thread *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3034 | func_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3035 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 3036 | mutex_lock(&pktgen_thread_lock); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3037 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3038 | list_for_each_entry(t, &pn->pktgen_threads, th_list) |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3039 | t->control |= T_STOP; |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3040 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 3041 | mutex_unlock(&pktgen_thread_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3042 | } |
| 3043 | |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 3044 | static int thread_is_running(const struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | { |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 3046 | const struct pktgen_dev *pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3048 | rcu_read_lock(); |
| 3049 | list_for_each_entry_rcu(pkt_dev, &t->if_list, list) |
| 3050 | if (pkt_dev->running) { |
| 3051 | rcu_read_unlock(); |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 3052 | return 1; |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3053 | } |
| 3054 | rcu_read_unlock(); |
Stephen Hemminger | 648fda7 | 2009-08-27 13:55:07 +0000 | [diff] [blame] | 3055 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3056 | } |
| 3057 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3058 | static int pktgen_wait_thread_run(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3060 | while (thread_is_running(t)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | |
Paolo Abeni | 720f1de | 2019-06-06 15:45:03 +0200 | [diff] [blame] | 3062 | /* note: 't' will still be around even after the unlock/lock |
| 3063 | * cycle because pktgen_thread threads are only cleared at |
| 3064 | * net exit |
| 3065 | */ |
| 3066 | mutex_unlock(&pktgen_thread_lock); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3067 | msleep_interruptible(100); |
Paolo Abeni | 720f1de | 2019-06-06 15:45:03 +0200 | [diff] [blame] | 3068 | mutex_lock(&pktgen_thread_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3070 | if (signal_pending(current)) |
| 3071 | goto signal; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3072 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3073 | return 1; |
| 3074 | signal: |
| 3075 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | } |
| 3077 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3078 | static int pktgen_wait_all_threads_run(struct pktgen_net *pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3080 | struct pktgen_thread *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 | int sig = 1; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3082 | |
Paolo Abeni | 720f1de | 2019-06-06 15:45:03 +0200 | [diff] [blame] | 3083 | /* prevent from racing with rmmod */ |
| 3084 | if (!try_module_get(THIS_MODULE)) |
| 3085 | return sig; |
| 3086 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 3087 | mutex_lock(&pktgen_thread_lock); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3088 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3089 | list_for_each_entry(t, &pn->pktgen_threads, th_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3090 | sig = pktgen_wait_thread_run(t); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3091 | if (sig == 0) |
| 3092 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3093 | } |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3094 | |
| 3095 | if (sig == 0) |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3096 | list_for_each_entry(t, &pn->pktgen_threads, th_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3097 | t->control |= (T_STOP); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3098 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 3099 | mutex_unlock(&pktgen_thread_lock); |
Paolo Abeni | 720f1de | 2019-06-06 15:45:03 +0200 | [diff] [blame] | 3100 | module_put(THIS_MODULE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3101 | return sig; |
| 3102 | } |
| 3103 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3104 | static void pktgen_run_all_threads(struct pktgen_net *pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3106 | struct pktgen_thread *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3108 | func_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 3110 | mutex_lock(&pktgen_thread_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3112 | list_for_each_entry(t, &pn->pktgen_threads, th_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | t->control |= (T_RUN); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3114 | |
Luiz Capitulino | 6146e6a | 2006-03-20 22:24:45 -0800 | [diff] [blame] | 3115 | mutex_unlock(&pktgen_thread_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 3117 | /* Propagate thread->control */ |
| 3118 | schedule_timeout_interruptible(msecs_to_jiffies(125)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3119 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3120 | pktgen_wait_all_threads_run(pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | } |
| 3122 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3123 | static void pktgen_reset_all_threads(struct pktgen_net *pn) |
Jesse Brandeburg | eb37b41 | 2008-11-10 16:48:03 -0800 | [diff] [blame] | 3124 | { |
| 3125 | struct pktgen_thread *t; |
| 3126 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3127 | func_enter(); |
Jesse Brandeburg | eb37b41 | 2008-11-10 16:48:03 -0800 | [diff] [blame] | 3128 | |
| 3129 | mutex_lock(&pktgen_thread_lock); |
| 3130 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3131 | list_for_each_entry(t, &pn->pktgen_threads, th_list) |
Jesse Brandeburg | eb37b41 | 2008-11-10 16:48:03 -0800 | [diff] [blame] | 3132 | t->control |= (T_REMDEVALL); |
| 3133 | |
| 3134 | mutex_unlock(&pktgen_thread_lock); |
| 3135 | |
Stephen Hemminger | 63adc6f | 2009-08-27 13:55:19 +0000 | [diff] [blame] | 3136 | /* Propagate thread->control */ |
| 3137 | schedule_timeout_interruptible(msecs_to_jiffies(125)); |
Jesse Brandeburg | eb37b41 | 2008-11-10 16:48:03 -0800 | [diff] [blame] | 3138 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3139 | pktgen_wait_all_threads_run(pn); |
Jesse Brandeburg | eb37b41 | 2008-11-10 16:48:03 -0800 | [diff] [blame] | 3140 | } |
| 3141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | static void show_results(struct pktgen_dev *pkt_dev, int nr_frags) |
| 3143 | { |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 3144 | __u64 bps, mbps, pps; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3145 | char *p = pkt_dev->result; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 3146 | ktime_t elapsed = ktime_sub(pkt_dev->stopped_at, |
| 3147 | pkt_dev->started_at); |
| 3148 | ktime_t idle = ns_to_ktime(pkt_dev->idle_acc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3149 | |
Daniel Turull | 03a14ab | 2011-03-09 14:11:00 -0800 | [diff] [blame] | 3150 | p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n", |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 3151 | (unsigned long long)ktime_to_us(elapsed), |
| 3152 | (unsigned long long)ktime_to_us(ktime_sub(elapsed, idle)), |
| 3153 | (unsigned long long)ktime_to_us(idle), |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3154 | (unsigned long long)pkt_dev->sofar, |
| 3155 | pkt_dev->cur_pkt_size, nr_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3156 | |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 3157 | pps = div64_u64(pkt_dev->sofar * NSEC_PER_SEC, |
| 3158 | ktime_to_ns(elapsed)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3159 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3160 | bps = pps * 8 * pkt_dev->cur_pkt_size; |
| 3161 | |
| 3162 | mbps = bps; |
| 3163 | do_div(mbps, 1000000); |
| 3164 | p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu", |
| 3165 | (unsigned long long)pps, |
| 3166 | (unsigned long long)mbps, |
| 3167 | (unsigned long long)bps, |
| 3168 | (unsigned long long)pkt_dev->errors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3169 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3170 | |
| 3171 | /* Set stopped-at timer, remove from running list, do counters & statistics */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3172 | static int pktgen_stop_device(struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3173 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3174 | int nr_frags = pkt_dev->skb ? skb_shinfo(pkt_dev->skb)->nr_frags : -1; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3175 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3176 | if (!pkt_dev->running) { |
Joe Perches | 294a0b7f | 2014-09-09 21:17:30 -0700 | [diff] [blame] | 3177 | pr_warn("interface: %s is already stopped\n", |
| 3178 | pkt_dev->odevname); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3179 | return -EINVAL; |
| 3180 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3182 | pkt_dev->running = 0; |
Stephen Hemminger | 3bda06a | 2009-08-27 13:55:10 +0000 | [diff] [blame] | 3183 | kfree_skb(pkt_dev->skb); |
| 3184 | pkt_dev->skb = NULL; |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3185 | pkt_dev->stopped_at = ktime_get(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3186 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3187 | show_results(pkt_dev, nr_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3188 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3189 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | } |
| 3191 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3192 | static struct pktgen_dev *next_to_run(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3193 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3194 | struct pktgen_dev *pkt_dev, *best = NULL; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3195 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3196 | rcu_read_lock(); |
| 3197 | list_for_each_entry_rcu(pkt_dev, &t->if_list, list) { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3198 | if (!pkt_dev->running) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3199 | continue; |
| 3200 | if (best == NULL) |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3201 | best = pkt_dev; |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3202 | else if (ktime_compare(pkt_dev->next_tx, best->next_tx) < 0) |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3203 | best = pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | } |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3205 | rcu_read_unlock(); |
| 3206 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3207 | return best; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3208 | } |
| 3209 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3210 | static void pktgen_stop(struct pktgen_thread *t) |
| 3211 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3212 | struct pktgen_dev *pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3213 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3214 | func_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3215 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3216 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3218 | list_for_each_entry_rcu(pkt_dev, &t->if_list, list) { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3219 | pktgen_stop_device(pkt_dev); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3220 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3221 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3222 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3223 | } |
| 3224 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3225 | /* |
| 3226 | * one of our devices needs to be removed - find it |
| 3227 | * and remove it |
| 3228 | */ |
| 3229 | static void pktgen_rem_one_if(struct pktgen_thread *t) |
| 3230 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3231 | struct list_head *q, *n; |
| 3232 | struct pktgen_dev *cur; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3233 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3234 | func_enter(); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3235 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3236 | list_for_each_safe(q, n, &t->if_list) { |
| 3237 | cur = list_entry(q, struct pktgen_dev, list); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3238 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3239 | if (!cur->removal_mark) |
| 3240 | continue; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3241 | |
Wei Yongjun | 86dc1ad | 2009-02-25 00:31:54 +0000 | [diff] [blame] | 3242 | kfree_skb(cur->skb); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3243 | cur->skb = NULL; |
| 3244 | |
| 3245 | pktgen_remove_device(t, cur); |
| 3246 | |
| 3247 | break; |
| 3248 | } |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3249 | } |
| 3250 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3251 | static void pktgen_rem_all_ifs(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3252 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3253 | struct list_head *q, *n; |
| 3254 | struct pktgen_dev *cur; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3255 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3256 | func_enter(); |
| 3257 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3258 | /* Remove all devices, free mem */ |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3259 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3260 | list_for_each_safe(q, n, &t->if_list) { |
| 3261 | cur = list_entry(q, struct pktgen_dev, list); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3262 | |
Wei Yongjun | 86dc1ad | 2009-02-25 00:31:54 +0000 | [diff] [blame] | 3263 | kfree_skb(cur->skb); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3264 | cur->skb = NULL; |
| 3265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | pktgen_remove_device(t, cur); |
| 3267 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | } |
| 3269 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3270 | static void pktgen_rem_thread(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3272 | /* Remove from the thread list */ |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3273 | remove_proc_entry(t->tsk->comm, t->net->proc_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | } |
| 3275 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3276 | static void pktgen_resched(struct pktgen_dev *pkt_dev) |
Stephen Hemminger | 3791dec | 2009-08-27 13:55:11 +0000 | [diff] [blame] | 3277 | { |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3278 | ktime_t idle_start = ktime_get(); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3279 | schedule(); |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3280 | pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start)); |
Stephen Hemminger | 3791dec | 2009-08-27 13:55:11 +0000 | [diff] [blame] | 3281 | } |
| 3282 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3283 | static void pktgen_wait_for_skb(struct pktgen_dev *pkt_dev) |
| 3284 | { |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3285 | ktime_t idle_start = ktime_get(); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3286 | |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3287 | while (refcount_read(&(pkt_dev->skb->users)) != 1) { |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3288 | if (signal_pending(current)) |
| 3289 | break; |
| 3290 | |
| 3291 | if (need_resched()) |
| 3292 | pktgen_resched(pkt_dev); |
| 3293 | else |
| 3294 | cpu_relax(); |
| 3295 | } |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3296 | pkt_dev->idle_acc += ktime_to_ns(ktime_sub(ktime_get(), idle_start)); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3297 | } |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 3298 | |
Stephen Hemminger | 475ac1e | 2009-08-27 13:55:08 +0000 | [diff] [blame] | 3299 | static void pktgen_xmit(struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | { |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 3301 | unsigned int burst = READ_ONCE(pkt_dev->burst); |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 3302 | struct net_device *odev = pkt_dev->odev; |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 3303 | struct netdev_queue *txq; |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3304 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3305 | int ret; |
| 3306 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3307 | /* If device is offline, then don't send */ |
| 3308 | if (unlikely(!netif_running(odev) || !netif_carrier_ok(odev))) { |
| 3309 | pktgen_stop_device(pkt_dev); |
Stephen Hemminger | 3791dec | 2009-08-27 13:55:11 +0000 | [diff] [blame] | 3310 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3312 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3313 | /* This is max DELAY, this has special meaning of |
| 3314 | * "never transmit" |
| 3315 | */ |
| 3316 | if (unlikely(pkt_dev->delay == ULLONG_MAX)) { |
Daniel Borkmann | 398f382 | 2012-10-28 08:27:19 +0000 | [diff] [blame] | 3317 | pkt_dev->next_tx = ktime_add_ns(ktime_get(), ULONG_MAX); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3318 | return; |
| 3319 | } |
| 3320 | |
| 3321 | /* If no skb or clone count exhausted then get new one */ |
Stephen Hemminger | 7d7bb1c | 2009-08-27 13:55:12 +0000 | [diff] [blame] | 3322 | if (!pkt_dev->skb || (pkt_dev->last_ok && |
| 3323 | ++pkt_dev->clone_count >= pkt_dev->clone_skb)) { |
| 3324 | /* build a new pkt */ |
| 3325 | kfree_skb(pkt_dev->skb); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3326 | |
Stephen Hemminger | 7d7bb1c | 2009-08-27 13:55:12 +0000 | [diff] [blame] | 3327 | pkt_dev->skb = fill_packet(odev, pkt_dev); |
| 3328 | if (pkt_dev->skb == NULL) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3329 | pr_err("ERROR: couldn't allocate skb in fill_packet\n"); |
Stephen Hemminger | 7d7bb1c | 2009-08-27 13:55:12 +0000 | [diff] [blame] | 3330 | schedule(); |
| 3331 | pkt_dev->clone_count--; /* back out increment, OOM */ |
| 3332 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3333 | } |
Eric Dumazet | baac856 | 2009-11-05 21:04:32 -0800 | [diff] [blame] | 3334 | pkt_dev->last_pkt_size = pkt_dev->skb->len; |
Stephen Hemminger | 7d7bb1c | 2009-08-27 13:55:12 +0000 | [diff] [blame] | 3335 | pkt_dev->clone_count = 0; /* reset counter */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3336 | } |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3337 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3338 | if (pkt_dev->delay && pkt_dev->last_ok) |
| 3339 | spin(pkt_dev, pkt_dev->next_tx); |
| 3340 | |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3341 | if (pkt_dev->xmit_mode == M_NETIF_RECEIVE) { |
| 3342 | skb = pkt_dev->skb; |
| 3343 | skb->protocol = eth_type_trans(skb, skb->dev); |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3344 | refcount_add(burst, &skb->users); |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3345 | local_bh_disable(); |
| 3346 | do { |
| 3347 | ret = netif_receive_skb(skb); |
| 3348 | if (ret == NET_RX_DROP) |
| 3349 | pkt_dev->errors++; |
| 3350 | pkt_dev->sofar++; |
| 3351 | pkt_dev->seq_num++; |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3352 | if (refcount_read(&skb->users) != burst) { |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3353 | /* skb was queued by rps/rfs or taps, |
| 3354 | * so cannot reuse this skb |
| 3355 | */ |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3356 | WARN_ON(refcount_sub_and_test(burst - 1, &skb->users)); |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3357 | /* get out of the loop and wait |
| 3358 | * until skb is consumed |
| 3359 | */ |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3360 | break; |
| 3361 | } |
| 3362 | /* skb was 'freed' by stack, so clean few |
| 3363 | * bits and reuse it |
| 3364 | */ |
Willem de Bruijn | a5135bc | 2017-01-07 17:06:36 -0500 | [diff] [blame] | 3365 | skb_reset_tc(skb); |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3366 | } while (--burst > 0); |
| 3367 | goto out; /* Skips xmit_mode M_START_XMIT */ |
John Fastabend | 0967f24 | 2016-07-02 14:12:54 -0700 | [diff] [blame] | 3368 | } else if (pkt_dev->xmit_mode == M_QUEUE_XMIT) { |
| 3369 | local_bh_disable(); |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3370 | refcount_inc(&pkt_dev->skb->users); |
John Fastabend | 0967f24 | 2016-07-02 14:12:54 -0700 | [diff] [blame] | 3371 | |
| 3372 | ret = dev_queue_xmit(pkt_dev->skb); |
| 3373 | switch (ret) { |
| 3374 | case NET_XMIT_SUCCESS: |
| 3375 | pkt_dev->sofar++; |
| 3376 | pkt_dev->seq_num++; |
| 3377 | pkt_dev->tx_bytes += pkt_dev->last_pkt_size; |
| 3378 | break; |
| 3379 | case NET_XMIT_DROP: |
| 3380 | case NET_XMIT_CN: |
| 3381 | /* These are all valid return codes for a qdisc but |
| 3382 | * indicate packets are being dropped or will likely |
| 3383 | * be dropped soon. |
| 3384 | */ |
| 3385 | case NETDEV_TX_BUSY: |
| 3386 | /* qdisc may call dev_hard_start_xmit directly in cases |
| 3387 | * where no queues exist e.g. loopback device, virtual |
| 3388 | * devices, etc. In this case we need to handle |
| 3389 | * NETDEV_TX_ codes. |
| 3390 | */ |
| 3391 | default: |
| 3392 | pkt_dev->errors++; |
| 3393 | net_info_ratelimited("%s xmit error: %d\n", |
| 3394 | pkt_dev->odevname, ret); |
| 3395 | break; |
| 3396 | } |
| 3397 | goto out; |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3398 | } |
| 3399 | |
Daniel Borkmann | 10c51b5623 | 2014-08-27 11:11:27 +0200 | [diff] [blame] | 3400 | txq = skb_get_tx_queue(odev, pkt_dev->skb); |
David S. Miller | fd2ea0a | 2008-07-17 01:56:23 -0700 | [diff] [blame] | 3401 | |
Daniel Borkmann | 0f2eea4 | 2014-04-11 13:22:00 +0200 | [diff] [blame] | 3402 | local_bh_disable(); |
| 3403 | |
| 3404 | HARD_TX_LOCK(odev, txq, smp_processor_id()); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3405 | |
Daniel Borkmann | 6f25cd4 | 2014-04-07 17:18:30 +0200 | [diff] [blame] | 3406 | if (unlikely(netif_xmit_frozen_or_drv_stopped(txq))) { |
Eric Dumazet | 0835acf | 2009-09-30 13:03:33 +0000 | [diff] [blame] | 3407 | pkt_dev->last_ok = 0; |
| 3408 | goto unlock; |
| 3409 | } |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3410 | refcount_add(burst, &pkt_dev->skb->users); |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 3411 | |
| 3412 | xmit_more: |
| 3413 | ret = netdev_start_xmit(pkt_dev->skb, odev, txq, --burst > 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3414 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3415 | switch (ret) { |
| 3416 | case NETDEV_TX_OK: |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3417 | pkt_dev->last_ok = 1; |
| 3418 | pkt_dev->sofar++; |
| 3419 | pkt_dev->seq_num++; |
Eric Dumazet | baac856 | 2009-11-05 21:04:32 -0800 | [diff] [blame] | 3420 | pkt_dev->tx_bytes += pkt_dev->last_pkt_size; |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 3421 | if (burst > 0 && !netif_xmit_frozen_or_drv_stopped(txq)) |
| 3422 | goto xmit_more; |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3423 | break; |
John Fastabend | f466dba | 2009-12-23 22:02:57 -0800 | [diff] [blame] | 3424 | case NET_XMIT_DROP: |
| 3425 | case NET_XMIT_CN: |
John Fastabend | f466dba | 2009-12-23 22:02:57 -0800 | [diff] [blame] | 3426 | /* skb has been consumed */ |
| 3427 | pkt_dev->errors++; |
| 3428 | break; |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3429 | default: /* Drivers are not supposed to return other values! */ |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 3430 | net_info_ratelimited("%s xmit error: %d\n", |
| 3431 | pkt_dev->odevname, ret); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3432 | pkt_dev->errors++; |
Gustavo A. R. Silva | f91845d | 2018-09-13 14:03:20 -0500 | [diff] [blame] | 3433 | /* fall through */ |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3434 | case NETDEV_TX_BUSY: |
| 3435 | /* Retry it next time */ |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3436 | refcount_dec(&(pkt_dev->skb->users)); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3437 | pkt_dev->last_ok = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3438 | } |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 3439 | if (unlikely(burst)) |
Reshetova, Elena | 6335479 | 2017-06-30 13:07:58 +0300 | [diff] [blame] | 3440 | WARN_ON(refcount_sub_and_test(burst, &pkt_dev->skb->users)); |
Eric Dumazet | 0835acf | 2009-09-30 13:03:33 +0000 | [diff] [blame] | 3441 | unlock: |
Daniel Borkmann | 0f2eea4 | 2014-04-11 13:22:00 +0200 | [diff] [blame] | 3442 | HARD_TX_UNLOCK(odev, txq); |
| 3443 | |
Alexei Starovoitov | 62f64ae | 2015-05-07 16:35:32 +0200 | [diff] [blame] | 3444 | out: |
Daniel Borkmann | 0f2eea4 | 2014-04-11 13:22:00 +0200 | [diff] [blame] | 3445 | local_bh_enable(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3447 | /* If pkt_dev->count is zero, then run forever */ |
| 3448 | if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) { |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3449 | pktgen_wait_for_skb(pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3451 | /* Done with this */ |
| 3452 | pktgen_stop_device(pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3453 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3454 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3455 | |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 3456 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3457 | * Main loop of the thread goes here |
| 3458 | */ |
| 3459 | |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3460 | static int pktgen_thread_worker(void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3461 | { |
| 3462 | DEFINE_WAIT(wait); |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3463 | struct pktgen_thread *t = arg; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3464 | struct pktgen_dev *pkt_dev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3465 | int cpu = t->cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3466 | |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3467 | BUG_ON(smp_processor_id() != cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3468 | |
| 3469 | init_waitqueue_head(&t->queue); |
Denis V. Lunev | d3ede32 | 2008-05-20 15:12:44 -0700 | [diff] [blame] | 3470 | complete(&t->start_done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3471 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3472 | pr_debug("starting pktgen/%d: pid=%d\n", cpu, task_pid_nr(current)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3473 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 3474 | set_freezable(); |
| 3475 | |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3476 | while (!kthread_should_stop()) { |
| 3477 | pkt_dev = next_to_run(t); |
| 3478 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3479 | if (unlikely(!pkt_dev && t->control == 0)) { |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3480 | if (t->net->pktgen_exiting) |
Eric Dumazet | 551eaff | 2010-11-21 10:26:44 -0800 | [diff] [blame] | 3481 | break; |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3482 | wait_event_interruptible_timeout(t->queue, |
| 3483 | t->control != 0, |
| 3484 | HZ/10); |
Rafael J. Wysocki | 1b3f720 | 2010-02-04 14:00:41 -0800 | [diff] [blame] | 3485 | try_to_freeze(); |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3486 | continue; |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3487 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3488 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3489 | if (likely(pkt_dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3490 | pktgen_xmit(pkt_dev); |
| 3491 | |
Stephen Hemminger | ef87979 | 2009-09-22 19:41:43 +0000 | [diff] [blame] | 3492 | if (need_resched()) |
| 3493 | pktgen_resched(pkt_dev); |
| 3494 | else |
| 3495 | cpu_relax(); |
| 3496 | } |
| 3497 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3498 | if (t->control & T_STOP) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3499 | pktgen_stop(t); |
| 3500 | t->control &= ~(T_STOP); |
| 3501 | } |
| 3502 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3503 | if (t->control & T_RUN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3504 | pktgen_run(t); |
| 3505 | t->control &= ~(T_RUN); |
| 3506 | } |
| 3507 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3508 | if (t->control & T_REMDEVALL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3509 | pktgen_rem_all_ifs(t); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3510 | t->control &= ~(T_REMDEVALL); |
| 3511 | } |
| 3512 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3513 | if (t->control & T_REMDEV) { |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3514 | pktgen_rem_one_if(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3515 | t->control &= ~(T_REMDEV); |
| 3516 | } |
| 3517 | |
Andrew Morton | 09fe3ef | 2007-04-12 14:45:32 -0700 | [diff] [blame] | 3518 | try_to_freeze(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3519 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3520 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3521 | pr_debug("%s stopping all device\n", t->tsk->comm); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3522 | pktgen_stop(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3524 | pr_debug("%s removing all device\n", t->tsk->comm); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3525 | pktgen_rem_all_ifs(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3526 | |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3527 | pr_debug("%s removing thread\n", t->tsk->comm); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3528 | pktgen_rem_thread(t); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3529 | |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3530 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3531 | } |
| 3532 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3533 | static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t, |
Eric Dumazet | 3e98484 | 2009-11-24 14:50:53 -0800 | [diff] [blame] | 3534 | const char *ifname, bool exact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3535 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3536 | struct pktgen_dev *p, *pkt_dev = NULL; |
Eric Dumazet | 3e98484 | 2009-11-24 14:50:53 -0800 | [diff] [blame] | 3537 | size_t len = strlen(ifname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3538 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3539 | rcu_read_lock(); |
| 3540 | list_for_each_entry_rcu(p, &t->if_list, list) |
Eric Dumazet | 3e98484 | 2009-11-24 14:50:53 -0800 | [diff] [blame] | 3541 | if (strncmp(p->odevname, ifname, len) == 0) { |
| 3542 | if (p->odevname[len]) { |
| 3543 | if (exact || p->odevname[len] != '@') |
| 3544 | continue; |
| 3545 | } |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3546 | pkt_dev = p; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3547 | break; |
| 3548 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3549 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3550 | rcu_read_unlock(); |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3551 | pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3552 | return pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3553 | } |
| 3554 | |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 3555 | /* |
| 3556 | * Adds a dev at front of if_list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3557 | */ |
| 3558 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3559 | static int add_dev_to_thread(struct pktgen_thread *t, |
| 3560 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3561 | { |
| 3562 | int rv = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3563 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3564 | /* This function cannot be called concurrently, as its called |
| 3565 | * under pktgen_thread_lock mutex, but it can run from |
| 3566 | * userspace on another CPU than the kthread. The if_lock() |
| 3567 | * is used here to sync with concurrent instances of |
| 3568 | * _rem_dev_from_if_list() invoked via kthread, which is also |
| 3569 | * updating the if_list */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3570 | if_lock(t); |
| 3571 | |
| 3572 | if (pkt_dev->pg_thread) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3573 | pr_err("ERROR: already assigned to a thread\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3574 | rv = -EBUSY; |
| 3575 | goto out; |
| 3576 | } |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3577 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | pkt_dev->running = 0; |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3579 | pkt_dev->pg_thread = t; |
| 3580 | list_add_rcu(&pkt_dev->list, &t->if_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3581 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3582 | out: |
| 3583 | if_unlock(t); |
| 3584 | return rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3585 | } |
| 3586 | |
| 3587 | /* Called under thread lock */ |
| 3588 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3589 | static int pktgen_add_device(struct pktgen_thread *t, const char *ifname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3590 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3591 | struct pktgen_dev *pkt_dev; |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 3592 | int err; |
Eric Dumazet | 3291b9d | 2009-11-29 00:44:33 -0800 | [diff] [blame] | 3593 | int node = cpu_to_node(t->cpu); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3595 | /* We don't allow a device to be on several threads */ |
| 3596 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3597 | pkt_dev = __pktgen_NN_threads(t->net, ifname, FIND); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3598 | if (pkt_dev) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3599 | pr_err("ERROR: interface already used\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3600 | return -EBUSY; |
| 3601 | } |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3602 | |
Eric Dumazet | 3291b9d | 2009-11-29 00:44:33 -0800 | [diff] [blame] | 3603 | pkt_dev = kzalloc_node(sizeof(struct pktgen_dev), GFP_KERNEL, node); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3604 | if (!pkt_dev) |
| 3605 | return -ENOMEM; |
| 3606 | |
Eric Dumazet | 593f63b | 2009-11-23 01:44:37 +0000 | [diff] [blame] | 3607 | strcpy(pkt_dev->odevname, ifname); |
Kees Cook | fd7bece | 2018-06-12 14:27:52 -0700 | [diff] [blame] | 3608 | pkt_dev->flows = vzalloc_node(array_size(MAX_CFLOWS, |
| 3609 | sizeof(struct flow_state)), |
Eric Dumazet | 3291b9d | 2009-11-29 00:44:33 -0800 | [diff] [blame] | 3610 | node); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3611 | if (pkt_dev->flows == NULL) { |
| 3612 | kfree(pkt_dev); |
| 3613 | return -ENOMEM; |
| 3614 | } |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3615 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3616 | pkt_dev->removal_mark = 0; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3617 | pkt_dev->nfrags = 0; |
Stephen Hemminger | fd29cf7 | 2009-08-27 13:55:16 +0000 | [diff] [blame] | 3618 | pkt_dev->delay = pg_delay_d; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3619 | pkt_dev->count = pg_count_d; |
| 3620 | pkt_dev->sofar = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3621 | pkt_dev->udp_src_min = 9; /* sink port */ |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3622 | pkt_dev->udp_src_max = 9; |
| 3623 | pkt_dev->udp_dst_min = 9; |
| 3624 | pkt_dev->udp_dst_max = 9; |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 3625 | pkt_dev->vlan_p = 0; |
| 3626 | pkt_dev->vlan_cfi = 0; |
| 3627 | pkt_dev->vlan_id = 0xffff; |
| 3628 | pkt_dev->svlan_p = 0; |
| 3629 | pkt_dev->svlan_cfi = 0; |
| 3630 | pkt_dev->svlan_id = 0xffff; |
Alexei Starovoitov | 38b2cf2 | 2014-09-30 17:53:21 -0700 | [diff] [blame] | 3631 | pkt_dev->burst = 1; |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 3632 | pkt_dev->node = NUMA_NO_NODE; |
Francesco Fondelli | 34954dd | 2006-09-27 16:30:44 -0700 | [diff] [blame] | 3633 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3634 | err = pktgen_setup_dev(t->net, pkt_dev, ifname); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 3635 | if (err) |
| 3636 | goto out1; |
Neil Horman | d887331 | 2011-07-26 06:05:37 +0000 | [diff] [blame] | 3637 | if (pkt_dev->odev->priv_flags & IFF_TX_SKB_SHARING) |
| 3638 | pkt_dev->clone_skb = pg_clone_skb_d; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3639 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3640 | pkt_dev->entry = proc_create_data(ifname, 0600, t->net->proc_dir, |
Denis V. Lunev | 5efdccb | 2008-05-02 02:46:22 -0700 | [diff] [blame] | 3641 | &pktgen_if_fops, pkt_dev); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 3642 | if (!pkt_dev->entry) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3643 | pr_err("cannot create %s/%s procfs entry\n", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3644 | PG_PROC_DIR, ifname); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 3645 | err = -EINVAL; |
| 3646 | goto out2; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3647 | } |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 3648 | #ifdef CONFIG_XFRM |
| 3649 | pkt_dev->ipsmode = XFRM_MODE_TRANSPORT; |
| 3650 | pkt_dev->ipsproto = IPPROTO_ESP; |
Fan Du | cf93d47e | 2014-01-03 11:18:31 +0800 | [diff] [blame] | 3651 | |
| 3652 | /* xfrm tunnel mode needs additional dst to extract outter |
| 3653 | * ip header protocol/ttl/id field, here creat a phony one. |
| 3654 | * instead of looking for a valid rt, which definitely hurting |
| 3655 | * performance under such circumstance. |
| 3656 | */ |
| 3657 | pkt_dev->dstops.family = AF_INET; |
David Miller | b6ca8bd | 2017-11-28 15:45:44 -0500 | [diff] [blame] | 3658 | pkt_dev->xdst.u.dst.dev = pkt_dev->odev; |
| 3659 | dst_init_metrics(&pkt_dev->xdst.u.dst, pktgen_dst_metrics, false); |
| 3660 | pkt_dev->xdst.child = &pkt_dev->xdst.u.dst; |
| 3661 | pkt_dev->xdst.u.dst.ops = &pkt_dev->dstops; |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 3662 | #endif |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3663 | |
| 3664 | return add_dev_to_thread(t, pkt_dev); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 3665 | out2: |
| 3666 | dev_put(pkt_dev->odev); |
| 3667 | out1: |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 3668 | #ifdef CONFIG_XFRM |
| 3669 | free_SAs(pkt_dev); |
| 3670 | #endif |
Figo.zhang | 1d0ebfe | 2009-06-08 00:40:35 -0700 | [diff] [blame] | 3671 | vfree(pkt_dev->flows); |
Stephen Hemminger | 39df232 | 2007-03-04 16:11:51 -0800 | [diff] [blame] | 3672 | kfree(pkt_dev); |
| 3673 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | } |
| 3675 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3676 | static int __net_init pktgen_create_thread(int cpu, struct pktgen_net *pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3677 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3678 | struct pktgen_thread *t; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3679 | struct proc_dir_entry *pe; |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3680 | struct task_struct *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3681 | |
Eric Dumazet | 3291b9d | 2009-11-29 00:44:33 -0800 | [diff] [blame] | 3682 | t = kzalloc_node(sizeof(struct pktgen_thread), GFP_KERNEL, |
| 3683 | cpu_to_node(cpu)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3684 | if (!t) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3685 | pr_err("ERROR: out of memory, can't create new thread\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3686 | return -ENOMEM; |
| 3687 | } |
| 3688 | |
Eric Dumazet | 9a0b1e8 | 2016-10-15 17:50:49 +0200 | [diff] [blame] | 3689 | mutex_init(&t->if_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3690 | t->cpu = cpu; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3691 | |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3692 | INIT_LIST_HEAD(&t->if_list); |
| 3693 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3694 | list_add_tail(&t->th_list, &pn->pktgen_threads); |
Denis V. Lunev | d3ede32 | 2008-05-20 15:12:44 -0700 | [diff] [blame] | 3695 | init_completion(&t->start_done); |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3696 | |
Eric Dumazet | 94dcf29 | 2011-03-22 16:30:45 -0700 | [diff] [blame] | 3697 | p = kthread_create_on_node(pktgen_thread_worker, |
| 3698 | t, |
| 3699 | cpu_to_node(cpu), |
| 3700 | "kpktgend_%d", cpu); |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3701 | if (IS_ERR(p)) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3702 | pr_err("kernel_thread() failed for cpu %d\n", t->cpu); |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3703 | list_del(&t->th_list); |
| 3704 | kfree(t); |
| 3705 | return PTR_ERR(p); |
| 3706 | } |
| 3707 | kthread_bind(p, cpu); |
| 3708 | t->tsk = p; |
| 3709 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3710 | pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir, |
Denis V. Lunev | 5efdccb | 2008-05-02 02:46:22 -0700 | [diff] [blame] | 3711 | &pktgen_thread_fops, t); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3712 | if (!pe) { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3713 | pr_err("cannot create %s/%s procfs entry\n", |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3714 | PG_PROC_DIR, t->tsk->comm); |
| 3715 | kthread_stop(p); |
| 3716 | list_del(&t->th_list); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3717 | kfree(t); |
| 3718 | return -EINVAL; |
| 3719 | } |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3720 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3721 | t->net = pn; |
Oleg Nesterov | 1fbe4b46 | 2015-07-08 21:42:13 +0200 | [diff] [blame] | 3722 | get_task_struct(p); |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3723 | wake_up_process(p); |
Denis V. Lunev | d3ede32 | 2008-05-20 15:12:44 -0700 | [diff] [blame] | 3724 | wait_for_completion(&t->start_done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | |
| 3726 | return 0; |
| 3727 | } |
| 3728 | |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 3729 | /* |
| 3730 | * Removes a device from the thread if_list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3731 | */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3732 | static void _rem_dev_from_if_list(struct pktgen_thread *t, |
| 3733 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3734 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3735 | struct list_head *q, *n; |
| 3736 | struct pktgen_dev *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3738 | if_lock(t); |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame] | 3739 | list_for_each_safe(q, n, &t->if_list) { |
| 3740 | p = list_entry(q, struct pktgen_dev, list); |
| 3741 | if (p == pkt_dev) |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3742 | list_del_rcu(&p->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3743 | } |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3744 | if_unlock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3745 | } |
| 3746 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3747 | static int pktgen_remove_device(struct pktgen_thread *t, |
| 3748 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3749 | { |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3750 | pr_debug("remove_device pkt_dev=%p\n", pkt_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3751 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3752 | if (pkt_dev->running) { |
Joe Perches | 294a0b7f | 2014-09-09 21:17:30 -0700 | [diff] [blame] | 3753 | pr_warn("WARNING: trying to remove a running interface, stopping it now\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3754 | pktgen_stop_device(pkt_dev); |
| 3755 | } |
| 3756 | |
| 3757 | /* Dis-associate from the interface */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3758 | |
| 3759 | if (pkt_dev->odev) { |
| 3760 | dev_put(pkt_dev->odev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3761 | pkt_dev->odev = NULL; |
| 3762 | } |
| 3763 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3764 | /* Remove proc before if_list entry, because add_device uses |
| 3765 | * list to determine if interface already exist, avoid race |
| 3766 | * with proc_create_data() */ |
Markus Elfring | ef87c5d | 2014-11-18 20:10:34 +0100 | [diff] [blame] | 3767 | proc_remove(pkt_dev->entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3769 | /* And update the thread if_list */ |
| 3770 | _rem_dev_from_if_list(t, pkt_dev); |
| 3771 | |
Jamal Hadi Salim | a553e4a | 2007-07-02 22:41:59 -0700 | [diff] [blame] | 3772 | #ifdef CONFIG_XFRM |
| 3773 | free_SAs(pkt_dev); |
| 3774 | #endif |
Figo.zhang | 1d0ebfe | 2009-06-08 00:40:35 -0700 | [diff] [blame] | 3775 | vfree(pkt_dev->flows); |
Eric Dumazet | 26ad787 | 2011-01-25 13:26:05 -0800 | [diff] [blame] | 3776 | if (pkt_dev->page) |
| 3777 | put_page(pkt_dev->page); |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3778 | kfree_rcu(pkt_dev, rcu); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3779 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3780 | } |
| 3781 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3782 | static int __net_init pg_net_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3783 | { |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3784 | struct pktgen_net *pn = net_generic(net, pg_net_id); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3785 | struct proc_dir_entry *pe; |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3786 | int cpu, ret = 0; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3787 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3788 | pn->net = net; |
| 3789 | INIT_LIST_HEAD(&pn->pktgen_threads); |
| 3790 | pn->pktgen_exiting = false; |
| 3791 | pn->proc_dir = proc_mkdir(PG_PROC_DIR, pn->net->proc_net); |
| 3792 | if (!pn->proc_dir) { |
| 3793 | pr_warn("cannot create /proc/net/%s\n", PG_PROC_DIR); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3794 | return -ENODEV; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3795 | } |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3796 | pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops); |
| 3797 | if (pe == NULL) { |
| 3798 | pr_err("cannot create %s procfs entry\n", PGCTRL); |
| 3799 | ret = -EINVAL; |
| 3800 | goto remove; |
| 3801 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3802 | |
John Hawkes | 670c02c | 2005-10-13 09:30:31 -0700 | [diff] [blame] | 3803 | for_each_online_cpu(cpu) { |
Luiz Capitulino | 8024bb2 | 2006-03-20 22:17:55 -0800 | [diff] [blame] | 3804 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3806 | err = pktgen_create_thread(cpu, pn); |
Luiz Capitulino | 8024bb2 | 2006-03-20 22:17:55 -0800 | [diff] [blame] | 3807 | if (err) |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3808 | pr_warn("Cannot create thread for cpu %d (%d)\n", |
Joe Perches | f9467ea | 2010-06-21 12:29:14 +0000 | [diff] [blame] | 3809 | cpu, err); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3810 | } |
Luiz Capitulino | 8024bb2 | 2006-03-20 22:17:55 -0800 | [diff] [blame] | 3811 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3812 | if (list_empty(&pn->pktgen_threads)) { |
| 3813 | pr_err("Initialization failed for all threads\n"); |
WANG Cong | ce14f89 | 2011-05-22 00:52:08 +0000 | [diff] [blame] | 3814 | ret = -ENODEV; |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3815 | goto remove_entry; |
Luiz Capitulino | 8024bb2 | 2006-03-20 22:17:55 -0800 | [diff] [blame] | 3816 | } |
| 3817 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3818 | return 0; |
WANG Cong | ce14f89 | 2011-05-22 00:52:08 +0000 | [diff] [blame] | 3819 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3820 | remove_entry: |
| 3821 | remove_proc_entry(PGCTRL, pn->proc_dir); |
| 3822 | remove: |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 3823 | remove_proc_entry(PG_PROC_DIR, pn->net->proc_net); |
WANG Cong | ce14f89 | 2011-05-22 00:52:08 +0000 | [diff] [blame] | 3824 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3825 | } |
| 3826 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3827 | static void __net_exit pg_net_exit(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3828 | { |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3829 | struct pktgen_net *pn = net_generic(net, pg_net_id); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3830 | struct pktgen_thread *t; |
| 3831 | struct list_head *q, *n; |
Eric Dumazet | d4b1133 | 2012-05-17 23:52:26 +0000 | [diff] [blame] | 3832 | LIST_HEAD(list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3833 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3834 | /* Stop all interfaces & threads */ |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3835 | pn->pktgen_exiting = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3836 | |
Eric Dumazet | c57b546 | 2012-05-09 13:29:51 +0000 | [diff] [blame] | 3837 | mutex_lock(&pktgen_thread_lock); |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3838 | list_splice_init(&pn->pktgen_threads, &list); |
Eric Dumazet | c57b546 | 2012-05-09 13:29:51 +0000 | [diff] [blame] | 3839 | mutex_unlock(&pktgen_thread_lock); |
| 3840 | |
| 3841 | list_for_each_safe(q, n, &list) { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3842 | t = list_entry(q, struct pktgen_thread, th_list); |
Eric Dumazet | c57b546 | 2012-05-09 13:29:51 +0000 | [diff] [blame] | 3843 | list_del(&t->th_list); |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3844 | kthread_stop(t->tsk); |
Oleg Nesterov | 1fbe4b46 | 2015-07-08 21:42:13 +0200 | [diff] [blame] | 3845 | put_task_struct(t->tsk); |
David S. Miller | ee74baa | 2007-01-01 20:51:53 -0800 | [diff] [blame] | 3846 | kfree(t); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3848 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3849 | remove_proc_entry(PGCTRL, pn->proc_dir); |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 3850 | remove_proc_entry(PG_PROC_DIR, pn->net->proc_net); |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3851 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3852 | |
Cong Wang | 4e58a02 | 2013-01-28 19:55:53 +0000 | [diff] [blame] | 3853 | static struct pernet_operations pg_net_ops = { |
| 3854 | .init = pg_net_init, |
| 3855 | .exit = pg_net_exit, |
| 3856 | .id = &pg_net_id, |
| 3857 | .size = sizeof(struct pktgen_net), |
| 3858 | }; |
| 3859 | |
| 3860 | static int __init pg_init(void) |
| 3861 | { |
| 3862 | int ret = 0; |
| 3863 | |
| 3864 | pr_info("%s", version); |
| 3865 | ret = register_pernet_subsys(&pg_net_ops); |
| 3866 | if (ret) |
| 3867 | return ret; |
| 3868 | ret = register_netdevice_notifier(&pktgen_notifier_block); |
| 3869 | if (ret) |
| 3870 | unregister_pernet_subsys(&pg_net_ops); |
| 3871 | |
| 3872 | return ret; |
| 3873 | } |
| 3874 | |
| 3875 | static void __exit pg_cleanup(void) |
| 3876 | { |
| 3877 | unregister_netdevice_notifier(&pktgen_notifier_block); |
| 3878 | unregister_pernet_subsys(&pg_net_ops); |
Jesper Dangaard Brouer | 8788370 | 2014-06-26 13:16:59 +0200 | [diff] [blame] | 3879 | /* Don't need rcu_barrier() due to use of kfree_rcu() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3880 | } |
| 3881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3882 | module_init(pg_init); |
| 3883 | module_exit(pg_cleanup); |
| 3884 | |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 3885 | MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3886 | MODULE_DESCRIPTION("Packet Generator tool"); |
| 3887 | MODULE_LICENSE("GPL"); |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 3888 | MODULE_VERSION(VERSION); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3889 | module_param(pg_count_d, int, 0); |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 3890 | MODULE_PARM_DESC(pg_count_d, "Default number of packets to inject"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3891 | module_param(pg_delay_d, int, 0); |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 3892 | MODULE_PARM_DESC(pg_delay_d, "Default delay between packets (nanoseconds)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3893 | module_param(pg_clone_skb_d, int, 0); |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 3894 | MODULE_PARM_DESC(pg_clone_skb_d, "Default number of copies of the same packet"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3895 | module_param(debug, int, 0); |
Stephen Hemminger | c3d2f52 | 2009-08-27 13:55:20 +0000 | [diff] [blame] | 3896 | MODULE_PARM_DESC(debug, "Enable debugging of pktgen module"); |