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