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> |
| 9 | * Jens Låås <jens.laas@data.slu.se> |
| 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. |
| 18 | * The tool is implemented as a linux module. Parameters are output |
| 19 | * device, delay (to hard_xmit), number of packets, and whether |
| 20 | * to use multiple SKBs or just the same one. |
| 21 | * pktgen uses the installed interface's output routine. |
| 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 | * |
| 47 | * Renamed multiskb to clone_skb and cleaned up sending core for two distinct |
| 48 | * skb modes. A clone_skb=0 mode for Ben "ranges" work and a clone_skb != 0 |
| 49 | * as a "fastpath" with a configurable number of clones after alloc's. |
| 50 | * clone_skb=0 means all packets are allocated this also means ranges time |
| 51 | * stamps etc can be used. clone_skb=100 means 1 malloc is followed by 100 |
| 52 | * clones. |
| 53 | * |
| 54 | * Also moved to /proc/net/pktgen/ |
| 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 | * |
| 63 | * |
| 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: |
| 68 | * For each CPU one thread/process is created at start. This process checks |
| 69 | * for running devices in the if_list and sends packets until count is 0 it |
| 70 | * also the thread checks the thread->control which is used for inter-process |
| 71 | * communication. controlling process "posts" operations to the threads this |
| 72 | * way. The if_lock should be possible to remove when add/rem_device is merged |
| 73 | * into this too. |
| 74 | * |
| 75 | * By design there should only be *one* "controlling" process. In practice |
| 76 | * multiple write accesses gives unpredictable result. Understood by "write" |
| 77 | * to /proc gives result code thats should be read be the "writer". |
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 | * |
| 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. |
| 82 | * --ro |
| 83 | * |
| 84 | * Fix refcount off by one if first packet fails, potential null deref, |
| 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> |
| 92 | * |
| 93 | * Remove if fix from added Harald Welte <laforge@netfilter.org> 040419 |
| 94 | * ia64 compilation fix from Aron Griffis <aron@hp.com> 040604 |
| 95 | * |
| 96 | * New xmit() return, do_div and misc clean up by Stephen Hemminger |
| 97 | * <shemminger@osdl.org> 040923 |
| 98 | * |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [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 | * |
| 104 | * Corrections from Nikolai Malykh (nmalykh@bilim.com) |
| 105 | * Removed unused flags F_SET_SRCMAC & F_SET_SRCIP 041230 |
| 106 | * |
| 107 | * interruptible_sleep_on_timeout() replaced Nishanth Aravamudan <nacc@us.ibm.com> |
| 108 | * 050103 |
| 109 | */ |
| 110 | #include <linux/sys.h> |
| 111 | #include <linux/types.h> |
| 112 | #include <linux/module.h> |
| 113 | #include <linux/moduleparam.h> |
| 114 | #include <linux/kernel.h> |
| 115 | #include <linux/smp_lock.h> |
| 116 | #include <linux/sched.h> |
| 117 | #include <linux/slab.h> |
| 118 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | #include <linux/unistd.h> |
| 120 | #include <linux/string.h> |
| 121 | #include <linux/ptrace.h> |
| 122 | #include <linux/errno.h> |
| 123 | #include <linux/ioport.h> |
| 124 | #include <linux/interrupt.h> |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 125 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | #include <linux/delay.h> |
| 127 | #include <linux/timer.h> |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 128 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | #include <linux/init.h> |
| 130 | #include <linux/skbuff.h> |
| 131 | #include <linux/netdevice.h> |
| 132 | #include <linux/inet.h> |
| 133 | #include <linux/inetdevice.h> |
| 134 | #include <linux/rtnetlink.h> |
| 135 | #include <linux/if_arp.h> |
| 136 | #include <linux/in.h> |
| 137 | #include <linux/ip.h> |
| 138 | #include <linux/ipv6.h> |
| 139 | #include <linux/udp.h> |
| 140 | #include <linux/proc_fs.h> |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 141 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | #include <linux/wait.h> |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 143 | #include <linux/etherdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | #include <net/checksum.h> |
| 145 | #include <net/ipv6.h> |
| 146 | #include <net/addrconf.h> |
| 147 | #include <asm/byteorder.h> |
| 148 | #include <linux/rcupdate.h> |
| 149 | #include <asm/bitops.h> |
| 150 | #include <asm/io.h> |
| 151 | #include <asm/dma.h> |
| 152 | #include <asm/uaccess.h> |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 153 | #include <asm/div64.h> /* do_div */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | #include <asm/timex.h> |
| 155 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 156 | #define VERSION "pktgen v2.64: Packet Generator for packet performance testing.\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | /* #define PG_DEBUG(a) a */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 159 | #define PG_DEBUG(a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | /* The buckets are exponential in 'width' */ |
| 162 | #define LAT_BUCKETS_MAX 32 |
| 163 | #define IP_NAME_SZ 32 |
| 164 | |
| 165 | /* Device flag bits */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 166 | #define F_IPSRC_RND (1<<0) /* IP-Src Random */ |
| 167 | #define F_IPDST_RND (1<<1) /* IP-Dst Random */ |
| 168 | #define F_UDPSRC_RND (1<<2) /* UDP-Src Random */ |
| 169 | #define F_UDPDST_RND (1<<3) /* UDP-Dst Random */ |
| 170 | #define F_MACSRC_RND (1<<4) /* MAC-Src Random */ |
| 171 | #define F_MACDST_RND (1<<5) /* MAC-Dst Random */ |
| 172 | #define F_TXSIZE_RND (1<<6) /* Transmit size is random */ |
| 173 | #define F_IPV6 (1<<7) /* Interface in IPV6 Mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | /* Thread control flag bits */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 176 | #define T_TERMINATE (1<<0) |
| 177 | #define T_STOP (1<<1) /* Stop run */ |
| 178 | #define T_RUN (1<<2) /* Start run */ |
| 179 | #define T_REMDEVALL (1<<3) /* Remove all devs */ |
| 180 | #define T_REMDEV (1<<4) /* Remove one dev */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | /* Locks */ |
Stephen Hemminger | b7c8921 | 2005-10-14 15:26:34 -0700 | [diff] [blame] | 183 | #define thread_lock() down(&pktgen_sem) |
| 184 | #define thread_unlock() up(&pktgen_sem) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | /* If lock -- can be removed after some work */ |
| 187 | #define if_lock(t) spin_lock(&(t->if_lock)); |
| 188 | #define if_unlock(t) spin_unlock(&(t->if_lock)); |
| 189 | |
| 190 | /* Used to help with determining the pkts on receive */ |
| 191 | #define PKTGEN_MAGIC 0xbe9be955 |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 192 | #define PG_PROC_DIR "pktgen" |
| 193 | #define PGCTRL "pgctrl" |
| 194 | static struct proc_dir_entry *pg_proc_dir = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
| 196 | #define MAX_CFLOWS 65536 |
| 197 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 198 | struct flow_state { |
| 199 | __u32 cur_daddr; |
| 200 | int count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | }; |
| 202 | |
| 203 | struct pktgen_dev { |
| 204 | |
| 205 | /* |
| 206 | * Try to keep frequent/infrequent used vars. separated. |
| 207 | */ |
| 208 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 209 | char ifname[IFNAMSIZ]; |
| 210 | char result[512]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 212 | struct pktgen_thread *pg_thread; /* the owner */ |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 213 | struct list_head list; /* Used for chaining in the thread's run-queue */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 215 | int running; /* if this changes to false, the test will stop */ |
| 216 | |
| 217 | /* If min != max, then we will either do a linear iteration, or |
| 218 | * we will do a random selection from within the range. |
| 219 | */ |
| 220 | __u32 flags; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 221 | int removal_mark; /* non-zero => the device is marked for |
| 222 | * removal by worker thread */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 224 | int min_pkt_size; /* = ETH_ZLEN; */ |
| 225 | int max_pkt_size; /* = ETH_ZLEN; */ |
| 226 | int nfrags; |
| 227 | __u32 delay_us; /* Default delay */ |
| 228 | __u32 delay_ns; |
| 229 | __u64 count; /* Default No packets to send */ |
| 230 | __u64 sofar; /* How many pkts we've sent so far */ |
| 231 | __u64 tx_bytes; /* How many bytes we've transmitted */ |
| 232 | __u64 errors; /* Errors when trying to transmit, pkts will be re-sent */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 234 | /* runtime counters relating to clone_skb */ |
| 235 | __u64 next_tx_us; /* timestamp of when to tx next */ |
| 236 | __u32 next_tx_ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 238 | __u64 allocated_skbs; |
| 239 | __u32 clone_count; |
| 240 | int last_ok; /* Was last skb sent? |
| 241 | * Or a failed transmit of some sort? This will keep |
| 242 | * sequence numbers in order, for example. |
| 243 | */ |
| 244 | __u64 started_at; /* micro-seconds */ |
| 245 | __u64 stopped_at; /* micro-seconds */ |
| 246 | __u64 idle_acc; /* micro-seconds */ |
| 247 | __u32 seq_num; |
| 248 | |
| 249 | int clone_skb; /* Use multiple SKBs during packet gen. If this number |
| 250 | * is greater than 1, then that many copies of the same |
| 251 | * packet will be sent before a new packet is allocated. |
| 252 | * For instance, if you want to send 1024 identical packets |
| 253 | * before creating a new packet, set clone_skb to 1024. |
| 254 | */ |
| 255 | |
| 256 | char dst_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 257 | char dst_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 258 | char src_min[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 259 | char src_max[IP_NAME_SZ]; /* IP, ie 1.2.3.4 */ |
| 260 | |
| 261 | struct in6_addr in6_saddr; |
| 262 | struct in6_addr in6_daddr; |
| 263 | struct in6_addr cur_in6_daddr; |
| 264 | struct in6_addr cur_in6_saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | /* For ranges */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 266 | struct in6_addr min_in6_daddr; |
| 267 | struct in6_addr max_in6_daddr; |
| 268 | struct in6_addr min_in6_saddr; |
| 269 | struct in6_addr max_in6_saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 271 | /* If we're doing ranges, random or incremental, then this |
| 272 | * defines the min/max for those ranges. |
| 273 | */ |
| 274 | __u32 saddr_min; /* inclusive, source IP address */ |
| 275 | __u32 saddr_max; /* exclusive, source IP address */ |
| 276 | __u32 daddr_min; /* inclusive, dest IP address */ |
| 277 | __u32 daddr_max; /* exclusive, dest IP address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 279 | __u16 udp_src_min; /* inclusive, source UDP port */ |
| 280 | __u16 udp_src_max; /* exclusive, source UDP port */ |
| 281 | __u16 udp_dst_min; /* inclusive, dest UDP port */ |
| 282 | __u16 udp_dst_max; /* exclusive, dest UDP port */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 284 | __u32 src_mac_count; /* How many MACs to iterate through */ |
| 285 | __u32 dst_mac_count; /* How many MACs to iterate through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 287 | unsigned char dst_mac[ETH_ALEN]; |
| 288 | unsigned char src_mac[ETH_ALEN]; |
| 289 | |
| 290 | __u32 cur_dst_mac_offset; |
| 291 | __u32 cur_src_mac_offset; |
| 292 | __u32 cur_saddr; |
| 293 | __u32 cur_daddr; |
| 294 | __u16 cur_udp_dst; |
| 295 | __u16 cur_udp_src; |
| 296 | __u32 cur_pkt_size; |
| 297 | |
| 298 | __u8 hh[14]; |
| 299 | /* = { |
| 300 | 0x00, 0x80, 0xC8, 0x79, 0xB3, 0xCB, |
| 301 | |
| 302 | We fill in SRC address later |
| 303 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 304 | 0x08, 0x00 |
| 305 | }; |
| 306 | */ |
| 307 | __u16 pad; /* pad out the hh struct to an even 16 bytes */ |
| 308 | |
| 309 | struct sk_buff *skb; /* skb we are to transmit next, mainly used for when we |
| 310 | * are transmitting the same one multiple times |
| 311 | */ |
| 312 | struct net_device *odev; /* The out-going device. Note that the device should |
| 313 | * have it's pg_info pointer pointing back to this |
| 314 | * device. This will be set when the user specifies |
| 315 | * the out-going device name (not when the inject is |
| 316 | * started as it used to do.) |
| 317 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | struct flow_state *flows; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 319 | unsigned cflows; /* Concurrent flows (config) */ |
| 320 | unsigned lflow; /* Flow length (config) */ |
| 321 | unsigned nflows; /* accumulated flows (stats) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | }; |
| 323 | |
| 324 | struct pktgen_hdr { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 325 | __u32 pgh_magic; |
| 326 | __u32 seq_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | __u32 tv_sec; |
| 328 | __u32 tv_usec; |
| 329 | }; |
| 330 | |
| 331 | struct pktgen_thread { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 332 | spinlock_t if_lock; |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 333 | struct list_head if_list; /* All device here */ |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 334 | struct list_head th_list; |
| 335 | int removed; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 336 | char name[32]; |
| 337 | char result[512]; |
| 338 | u32 max_before_softirq; /* We'll call do_softirq to prevent starvation. */ |
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 | /* Field for thread to receive "posted" events terminate, stop ifs etc. */ |
| 341 | |
| 342 | u32 control; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | int pid; |
| 344 | int cpu; |
| 345 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 346 | wait_queue_head_t queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | }; |
| 348 | |
| 349 | #define REMOVE 1 |
| 350 | #define FIND 0 |
| 351 | |
| 352 | /* This code works around the fact that do_div cannot handle two 64-bit |
| 353 | numbers, and regular 64-bit division doesn't work on x86 kernels. |
| 354 | --Ben |
| 355 | */ |
| 356 | |
| 357 | #define PG_DIV 0 |
| 358 | |
| 359 | /* This was emailed to LMKL by: Chris Caputo <ccaputo@alt.net> |
| 360 | * Function copied/adapted/optimized from: |
| 361 | * |
| 362 | * nemesis.sourceforge.net/browse/lib/static/intmath/ix86/intmath.c.html |
| 363 | * |
| 364 | * Copyright 1994, University of Cambridge Computer Laboratory |
| 365 | * All Rights Reserved. |
| 366 | * |
| 367 | */ |
Jesper Juhl | 77933d7 | 2005-07-27 11:46:09 -0700 | [diff] [blame] | 368 | static inline s64 divremdi3(s64 x, s64 y, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 370 | u64 a = (x < 0) ? -x : x; |
| 371 | u64 b = (y < 0) ? -y : y; |
| 372 | u64 res = 0, d = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 374 | if (b > 0) { |
| 375 | while (b < a) { |
| 376 | b <<= 1; |
| 377 | d <<= 1; |
| 378 | } |
| 379 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 381 | do { |
| 382 | if (a >= b) { |
| 383 | a -= b; |
| 384 | res += d; |
| 385 | } |
| 386 | b >>= 1; |
| 387 | d >>= 1; |
| 388 | } |
| 389 | while (d); |
| 390 | |
| 391 | if (PG_DIV == type) { |
| 392 | return (((x ^ y) & (1ll << 63)) == 0) ? res : -(s64) res; |
| 393 | } else { |
| 394 | return ((x & (1ll << 63)) == 0) ? a : -(s64) a; |
| 395 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | /* End of hacks to deal with 64-bit math on x86 */ |
| 399 | |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 400 | /** Convert to milliseconds */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 401 | static inline __u64 tv_to_ms(const struct timeval *tv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 403 | __u64 ms = tv->tv_usec / 1000; |
| 404 | ms += (__u64) tv->tv_sec * (__u64) 1000; |
| 405 | return ms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | } |
| 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | /** Convert to micro-seconds */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 409 | static inline __u64 tv_to_us(const struct timeval *tv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 411 | __u64 us = tv->tv_usec; |
| 412 | us += (__u64) tv->tv_sec * (__u64) 1000000; |
| 413 | return us; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 416 | static inline __u64 pg_div(__u64 n, __u32 base) |
| 417 | { |
| 418 | __u64 tmp = n; |
| 419 | do_div(tmp, base); |
| 420 | /* printk("pktgen: pg_div, n: %llu base: %d rv: %llu\n", |
| 421 | n, base, tmp); */ |
| 422 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 425 | static inline __u64 pg_div64(__u64 n, __u64 base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 427 | __u64 tmp = n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | /* |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 429 | * How do we know if the architecture we are running on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | * supports division with 64 bit base? |
| 431 | * |
| 432 | */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 433 | #if defined(__sparc_v9__) || defined(__powerpc64__) || defined(__alpha__) || defined(__x86_64__) || defined(__ia64__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 435 | do_div(tmp, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | #else |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 437 | tmp = divremdi3(n, base, PG_DIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | #endif |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 439 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | static inline u32 pktgen_random(void) |
| 443 | { |
| 444 | #if 0 |
| 445 | __u32 n; |
| 446 | get_random_bytes(&n, 4); |
| 447 | return n; |
| 448 | #else |
| 449 | return net_random(); |
| 450 | #endif |
| 451 | } |
| 452 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 453 | static inline __u64 getCurMs(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 455 | struct timeval tv; |
| 456 | do_gettimeofday(&tv); |
| 457 | return tv_to_ms(&tv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 460 | static inline __u64 getCurUs(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 462 | struct timeval tv; |
| 463 | do_gettimeofday(&tv); |
| 464 | return tv_to_us(&tv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 467 | static inline __u64 tv_diff(const struct timeval *a, const struct timeval *b) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 469 | return tv_to_us(a) - tv_to_us(b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } |
| 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | /* old include end */ |
| 473 | |
| 474 | static char version[] __initdata = VERSION; |
| 475 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 476 | static int pktgen_remove_device(struct pktgen_thread *t, struct pktgen_dev *i); |
| 477 | static int pktgen_add_device(struct pktgen_thread *t, const char *ifname); |
| 478 | static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t, |
| 479 | const char *ifname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | static int pktgen_device_event(struct notifier_block *, unsigned long, void *); |
| 481 | static void pktgen_run_all_threads(void); |
| 482 | static void pktgen_stop_all_threads_ifs(void); |
| 483 | static int pktgen_stop_device(struct pktgen_dev *pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 484 | static void pktgen_stop(struct pktgen_thread *t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | static void pktgen_clear_counters(struct pktgen_dev *pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 486 | static int pktgen_mark_device(const char *ifname); |
| 487 | static unsigned int scan_ip6(const char *s, char ip[16]); |
| 488 | static unsigned int fmt_ip6(char *s, const char ip[16]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
| 490 | /* Module parameters, defaults. */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 491 | static int pg_count_d = 1000; /* 1000 pkts by default */ |
Jaco Kroon | f34fbb9 | 2005-12-22 12:51:46 -0800 | [diff] [blame] | 492 | static int pg_delay_d; |
| 493 | static int pg_clone_skb_d; |
| 494 | static int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Stephen Hemminger | b7c8921 | 2005-10-14 15:26:34 -0700 | [diff] [blame] | 496 | static DECLARE_MUTEX(pktgen_sem); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 497 | static LIST_HEAD(pktgen_threads); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | static struct notifier_block pktgen_notifier_block = { |
| 500 | .notifier_call = pktgen_device_event, |
| 501 | }; |
| 502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | /* |
| 504 | * /proc handling functions |
| 505 | * |
| 506 | */ |
| 507 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 508 | static int pgctrl_show(struct seq_file *seq, void *v) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 509 | { |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 510 | seq_puts(seq, VERSION); |
| 511 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 514 | static ssize_t pgctrl_write(struct file *file, const char __user * buf, |
| 515 | size_t count, loff_t * ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | int err = 0; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 518 | char data[128]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 520 | if (!capable(CAP_NET_ADMIN)) { |
| 521 | err = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | goto out; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 523 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 525 | if (count > sizeof(data)) |
| 526 | count = sizeof(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | if (copy_from_user(data, buf, count)) { |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 529 | err = -EFAULT; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 530 | goto out; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 531 | } |
| 532 | data[count - 1] = 0; /* Make string */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 534 | if (!strcmp(data, "stop")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | pktgen_stop_all_threads_ifs(); |
| 536 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 537 | else if (!strcmp(data, "start")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | pktgen_run_all_threads(); |
| 539 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 540 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | printk("pktgen: Unknown command: %s\n", data); |
| 542 | |
| 543 | err = count; |
| 544 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 545 | out: |
| 546 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 549 | static int pgctrl_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | { |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 551 | return single_open(file, pgctrl_show, PDE(inode)->data); |
| 552 | } |
| 553 | |
| 554 | static struct file_operations pktgen_fops = { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 555 | .owner = THIS_MODULE, |
| 556 | .open = pgctrl_open, |
| 557 | .read = seq_read, |
| 558 | .llseek = seq_lseek, |
| 559 | .write = pgctrl_write, |
| 560 | .release = single_release, |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 561 | }; |
| 562 | |
| 563 | static int pktgen_if_show(struct seq_file *seq, void *v) |
| 564 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | int i; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 566 | struct pktgen_dev *pkt_dev = seq->private; |
| 567 | __u64 sa; |
| 568 | __u64 stopped; |
| 569 | __u64 now = getCurUs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 571 | seq_printf(seq, |
| 572 | "Params: count %llu min_pkt_size: %u max_pkt_size: %u\n", |
| 573 | (unsigned long long)pkt_dev->count, pkt_dev->min_pkt_size, |
| 574 | pkt_dev->max_pkt_size); |
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, |
| 577 | " frags: %d delay: %u clone_skb: %d ifname: %s\n", |
| 578 | pkt_dev->nfrags, |
| 579 | 1000 * pkt_dev->delay_us + pkt_dev->delay_ns, |
| 580 | pkt_dev->clone_skb, pkt_dev->ifname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 582 | seq_printf(seq, " flows: %u flowlen: %u\n", pkt_dev->cflows, |
| 583 | pkt_dev->lflow); |
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 | if (pkt_dev->flags & F_IPV6) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | char b1[128], b2[128], b3[128]; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 587 | fmt_ip6(b1, pkt_dev->in6_saddr.s6_addr); |
| 588 | fmt_ip6(b2, pkt_dev->min_in6_saddr.s6_addr); |
| 589 | fmt_ip6(b3, pkt_dev->max_in6_saddr.s6_addr); |
| 590 | seq_printf(seq, |
| 591 | " saddr: %s min_saddr: %s max_saddr: %s\n", b1, |
| 592 | b2, b3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 594 | fmt_ip6(b1, pkt_dev->in6_daddr.s6_addr); |
| 595 | fmt_ip6(b2, pkt_dev->min_in6_daddr.s6_addr); |
| 596 | fmt_ip6(b3, pkt_dev->max_in6_daddr.s6_addr); |
| 597 | seq_printf(seq, |
| 598 | " daddr: %s min_daddr: %s max_daddr: %s\n", b1, |
| 599 | b2, b3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 601 | } else |
| 602 | seq_printf(seq, |
| 603 | " dst_min: %s dst_max: %s\n src_min: %s src_max: %s\n", |
| 604 | pkt_dev->dst_min, pkt_dev->dst_max, pkt_dev->src_min, |
| 605 | pkt_dev->src_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 607 | seq_puts(seq, " src_mac: "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 609 | if (is_zero_ether_addr(pkt_dev->src_mac)) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 610 | for (i = 0; i < 6; i++) |
| 611 | seq_printf(seq, "%02X%s", pkt_dev->odev->dev_addr[i], |
| 612 | i == 5 ? " " : ":"); |
| 613 | else |
| 614 | for (i = 0; i < 6; i++) |
| 615 | seq_printf(seq, "%02X%s", pkt_dev->src_mac[i], |
| 616 | i == 5 ? " " : ":"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 618 | seq_printf(seq, "dst_mac: "); |
| 619 | for (i = 0; i < 6; i++) |
| 620 | seq_printf(seq, "%02X%s", pkt_dev->dst_mac[i], |
| 621 | i == 5 ? "\n" : ":"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 623 | seq_printf(seq, |
| 624 | " udp_src_min: %d udp_src_max: %d udp_dst_min: %d udp_dst_max: %d\n", |
| 625 | pkt_dev->udp_src_min, pkt_dev->udp_src_max, |
| 626 | pkt_dev->udp_dst_min, pkt_dev->udp_dst_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 628 | seq_printf(seq, |
| 629 | " src_mac_count: %d dst_mac_count: %d \n Flags: ", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 630 | pkt_dev->src_mac_count, pkt_dev->dst_mac_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 632 | if (pkt_dev->flags & F_IPV6) |
| 633 | seq_printf(seq, "IPV6 "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 635 | if (pkt_dev->flags & F_IPSRC_RND) |
| 636 | seq_printf(seq, "IPSRC_RND "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 638 | if (pkt_dev->flags & F_IPDST_RND) |
| 639 | seq_printf(seq, "IPDST_RND "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 641 | if (pkt_dev->flags & F_TXSIZE_RND) |
| 642 | seq_printf(seq, "TXSIZE_RND "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 644 | if (pkt_dev->flags & F_UDPSRC_RND) |
| 645 | seq_printf(seq, "UDPSRC_RND "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 647 | if (pkt_dev->flags & F_UDPDST_RND) |
| 648 | seq_printf(seq, "UDPDST_RND "); |
| 649 | |
| 650 | if (pkt_dev->flags & F_MACSRC_RND) |
| 651 | seq_printf(seq, "MACSRC_RND "); |
| 652 | |
| 653 | if (pkt_dev->flags & F_MACDST_RND) |
| 654 | seq_printf(seq, "MACDST_RND "); |
| 655 | |
| 656 | seq_puts(seq, "\n"); |
| 657 | |
| 658 | sa = pkt_dev->started_at; |
| 659 | stopped = pkt_dev->stopped_at; |
| 660 | if (pkt_dev->running) |
| 661 | stopped = now; /* not really stopped, more like last-running-at */ |
| 662 | |
| 663 | seq_printf(seq, |
| 664 | "Current:\n pkts-sofar: %llu errors: %llu\n started: %lluus stopped: %lluus idle: %lluus\n", |
| 665 | (unsigned long long)pkt_dev->sofar, |
| 666 | (unsigned long long)pkt_dev->errors, (unsigned long long)sa, |
| 667 | (unsigned long long)stopped, |
| 668 | (unsigned long long)pkt_dev->idle_acc); |
| 669 | |
| 670 | seq_printf(seq, |
| 671 | " 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] | 672 | pkt_dev->seq_num, pkt_dev->cur_dst_mac_offset, |
| 673 | pkt_dev->cur_src_mac_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 675 | if (pkt_dev->flags & F_IPV6) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | char b1[128], b2[128]; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 677 | fmt_ip6(b1, pkt_dev->cur_in6_daddr.s6_addr); |
| 678 | fmt_ip6(b2, pkt_dev->cur_in6_saddr.s6_addr); |
| 679 | seq_printf(seq, " cur_saddr: %s cur_daddr: %s\n", b2, b1); |
| 680 | } else |
| 681 | seq_printf(seq, " cur_saddr: 0x%x cur_daddr: 0x%x\n", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 682 | pkt_dev->cur_saddr, pkt_dev->cur_daddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 684 | seq_printf(seq, " cur_udp_dst: %d cur_udp_src: %d\n", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 685 | pkt_dev->cur_udp_dst, pkt_dev->cur_udp_src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 687 | seq_printf(seq, " flows: %u\n", pkt_dev->nflows); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
| 689 | if (pkt_dev->result[0]) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 690 | seq_printf(seq, "Result: %s\n", pkt_dev->result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | else |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 692 | seq_printf(seq, "Result: Idle\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 694 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | } |
| 696 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 697 | static int count_trail_chars(const char __user * user_buffer, |
| 698 | unsigned int maxlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | { |
| 700 | int i; |
| 701 | |
| 702 | for (i = 0; i < maxlen; i++) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 703 | char c; |
| 704 | if (get_user(c, &user_buffer[i])) |
| 705 | return -EFAULT; |
| 706 | switch (c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | case '\"': |
| 708 | case '\n': |
| 709 | case '\r': |
| 710 | case '\t': |
| 711 | case ' ': |
| 712 | case '=': |
| 713 | break; |
| 714 | default: |
| 715 | goto done; |
| 716 | }; |
| 717 | } |
| 718 | done: |
| 719 | return i; |
| 720 | } |
| 721 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 722 | static unsigned long num_arg(const char __user * user_buffer, |
| 723 | unsigned long maxlen, unsigned long *num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { |
| 725 | int i = 0; |
| 726 | *num = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 727 | |
| 728 | for (; i < maxlen; i++) { |
| 729 | char c; |
| 730 | if (get_user(c, &user_buffer[i])) |
| 731 | return -EFAULT; |
| 732 | if ((c >= '0') && (c <= '9')) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | *num *= 10; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 734 | *num += c - '0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } else |
| 736 | break; |
| 737 | } |
| 738 | return i; |
| 739 | } |
| 740 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 741 | static int strn_len(const char __user * user_buffer, unsigned int maxlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { |
| 743 | int i = 0; |
| 744 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 745 | for (; i < maxlen; i++) { |
| 746 | char c; |
| 747 | if (get_user(c, &user_buffer[i])) |
| 748 | return -EFAULT; |
| 749 | switch (c) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | case '\"': |
| 751 | case '\n': |
| 752 | case '\r': |
| 753 | case '\t': |
| 754 | case ' ': |
| 755 | goto done_str; |
| 756 | break; |
| 757 | default: |
| 758 | break; |
| 759 | }; |
| 760 | } |
| 761 | done_str: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | return i; |
| 763 | } |
| 764 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 765 | static ssize_t pktgen_if_write(struct file *file, |
| 766 | const char __user * user_buffer, size_t count, |
| 767 | loff_t * offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 769 | struct seq_file *seq = (struct seq_file *)file->private_data; |
| 770 | struct pktgen_dev *pkt_dev = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | int i = 0, max, len; |
| 772 | char name[16], valstr[32]; |
| 773 | unsigned long value = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 774 | char *pg_result = NULL; |
| 775 | int tmp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | char buf[128]; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 777 | |
| 778 | pg_result = &(pkt_dev->result[0]); |
| 779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | if (count < 1) { |
| 781 | printk("pktgen: wrong command format\n"); |
| 782 | return -EINVAL; |
| 783 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | max = count - i; |
| 786 | tmp = count_trail_chars(&user_buffer[i], max); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 787 | if (tmp < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | printk("pktgen: illegal format\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 789 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 791 | i += tmp; |
| 792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | /* Read variable name */ |
| 794 | |
| 795 | len = strn_len(&user_buffer[i], sizeof(name) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 796 | if (len < 0) { |
| 797 | return len; |
| 798 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | memset(name, 0, sizeof(name)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 800 | if (copy_from_user(name, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | return -EFAULT; |
| 802 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 803 | |
| 804 | max = count - i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | len = count_trail_chars(&user_buffer[i], max); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 806 | if (len < 0) |
| 807 | return len; |
| 808 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | i += len; |
| 810 | |
| 811 | if (debug) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 812 | char tb[count + 1]; |
| 813 | if (copy_from_user(tb, user_buffer, count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 815 | tb[count] = 0; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 816 | printk("pktgen: %s,%lu buffer -:%s:-\n", name, |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 817 | (unsigned long)count, tb); |
| 818 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
| 820 | if (!strcmp(name, "min_pkt_size")) { |
| 821 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 822 | if (len < 0) { |
| 823 | return len; |
| 824 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 826 | if (value < 14 + 20 + 8) |
| 827 | value = 14 + 20 + 8; |
| 828 | if (value != pkt_dev->min_pkt_size) { |
| 829 | pkt_dev->min_pkt_size = value; |
| 830 | pkt_dev->cur_pkt_size = value; |
| 831 | } |
| 832 | sprintf(pg_result, "OK: min_pkt_size=%u", |
| 833 | pkt_dev->min_pkt_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | return count; |
| 835 | } |
| 836 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 837 | if (!strcmp(name, "max_pkt_size")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 839 | if (len < 0) { |
| 840 | return len; |
| 841 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 843 | if (value < 14 + 20 + 8) |
| 844 | value = 14 + 20 + 8; |
| 845 | if (value != pkt_dev->max_pkt_size) { |
| 846 | pkt_dev->max_pkt_size = value; |
| 847 | pkt_dev->cur_pkt_size = value; |
| 848 | } |
| 849 | sprintf(pg_result, "OK: max_pkt_size=%u", |
| 850 | pkt_dev->max_pkt_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | return count; |
| 852 | } |
| 853 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 854 | /* Shortcut for min = max */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
| 856 | if (!strcmp(name, "pkt_size")) { |
| 857 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 858 | if (len < 0) { |
| 859 | return len; |
| 860 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 862 | if (value < 14 + 20 + 8) |
| 863 | value = 14 + 20 + 8; |
| 864 | if (value != pkt_dev->min_pkt_size) { |
| 865 | pkt_dev->min_pkt_size = value; |
| 866 | pkt_dev->max_pkt_size = value; |
| 867 | pkt_dev->cur_pkt_size = value; |
| 868 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | sprintf(pg_result, "OK: pkt_size=%u", pkt_dev->min_pkt_size); |
| 870 | return count; |
| 871 | } |
| 872 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 873 | if (!strcmp(name, "debug")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 875 | if (len < 0) { |
| 876 | return len; |
| 877 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 879 | debug = value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | sprintf(pg_result, "OK: debug=%u", debug); |
| 881 | return count; |
| 882 | } |
| 883 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 884 | if (!strcmp(name, "frags")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 886 | if (len < 0) { |
| 887 | return len; |
| 888 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | i += len; |
| 890 | pkt_dev->nfrags = value; |
| 891 | sprintf(pg_result, "OK: frags=%u", pkt_dev->nfrags); |
| 892 | return count; |
| 893 | } |
| 894 | if (!strcmp(name, "delay")) { |
| 895 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 896 | if (len < 0) { |
| 897 | return len; |
| 898 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | i += len; |
| 900 | if (value == 0x7FFFFFFF) { |
| 901 | pkt_dev->delay_us = 0x7FFFFFFF; |
| 902 | pkt_dev->delay_ns = 0; |
| 903 | } else { |
| 904 | pkt_dev->delay_us = value / 1000; |
| 905 | pkt_dev->delay_ns = value % 1000; |
| 906 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 907 | sprintf(pg_result, "OK: delay=%u", |
| 908 | 1000 * pkt_dev->delay_us + pkt_dev->delay_ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | return count; |
| 910 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 911 | if (!strcmp(name, "udp_src_min")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 913 | if (len < 0) { |
| 914 | return len; |
| 915 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 917 | if (value != pkt_dev->udp_src_min) { |
| 918 | pkt_dev->udp_src_min = value; |
| 919 | pkt_dev->cur_udp_src = value; |
| 920 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | sprintf(pg_result, "OK: udp_src_min=%u", pkt_dev->udp_src_min); |
| 922 | return count; |
| 923 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 924 | if (!strcmp(name, "udp_dst_min")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 926 | if (len < 0) { |
| 927 | return len; |
| 928 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 930 | if (value != pkt_dev->udp_dst_min) { |
| 931 | pkt_dev->udp_dst_min = value; |
| 932 | pkt_dev->cur_udp_dst = value; |
| 933 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | sprintf(pg_result, "OK: udp_dst_min=%u", pkt_dev->udp_dst_min); |
| 935 | return count; |
| 936 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 937 | if (!strcmp(name, "udp_src_max")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 939 | if (len < 0) { |
| 940 | return len; |
| 941 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 943 | if (value != pkt_dev->udp_src_max) { |
| 944 | pkt_dev->udp_src_max = value; |
| 945 | pkt_dev->cur_udp_src = value; |
| 946 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | sprintf(pg_result, "OK: udp_src_max=%u", pkt_dev->udp_src_max); |
| 948 | return count; |
| 949 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 950 | if (!strcmp(name, "udp_dst_max")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 952 | if (len < 0) { |
| 953 | return len; |
| 954 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 956 | if (value != pkt_dev->udp_dst_max) { |
| 957 | pkt_dev->udp_dst_max = value; |
| 958 | pkt_dev->cur_udp_dst = value; |
| 959 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | sprintf(pg_result, "OK: udp_dst_max=%u", pkt_dev->udp_dst_max); |
| 961 | return count; |
| 962 | } |
| 963 | if (!strcmp(name, "clone_skb")) { |
| 964 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 965 | if (len < 0) { |
| 966 | return len; |
| 967 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 969 | pkt_dev->clone_skb = value; |
| 970 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | sprintf(pg_result, "OK: clone_skb=%d", pkt_dev->clone_skb); |
| 972 | return count; |
| 973 | } |
| 974 | if (!strcmp(name, "count")) { |
| 975 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 976 | if (len < 0) { |
| 977 | return len; |
| 978 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | i += len; |
| 980 | pkt_dev->count = value; |
| 981 | sprintf(pg_result, "OK: count=%llu", |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 982 | (unsigned long long)pkt_dev->count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | return count; |
| 984 | } |
| 985 | if (!strcmp(name, "src_mac_count")) { |
| 986 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 987 | if (len < 0) { |
| 988 | return len; |
| 989 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | i += len; |
| 991 | if (pkt_dev->src_mac_count != value) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 992 | pkt_dev->src_mac_count = value; |
| 993 | pkt_dev->cur_src_mac_offset = 0; |
| 994 | } |
| 995 | sprintf(pg_result, "OK: src_mac_count=%d", |
| 996 | pkt_dev->src_mac_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | return count; |
| 998 | } |
| 999 | if (!strcmp(name, "dst_mac_count")) { |
| 1000 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1001 | if (len < 0) { |
| 1002 | return len; |
| 1003 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | i += len; |
| 1005 | if (pkt_dev->dst_mac_count != value) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1006 | pkt_dev->dst_mac_count = value; |
| 1007 | pkt_dev->cur_dst_mac_offset = 0; |
| 1008 | } |
| 1009 | sprintf(pg_result, "OK: dst_mac_count=%d", |
| 1010 | pkt_dev->dst_mac_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | return count; |
| 1012 | } |
| 1013 | if (!strcmp(name, "flag")) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1014 | char f[32]; |
| 1015 | memset(f, 0, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | len = strn_len(&user_buffer[i], sizeof(f) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1017 | if (len < 0) { |
| 1018 | return len; |
| 1019 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | if (copy_from_user(f, &user_buffer[i], len)) |
| 1021 | return -EFAULT; |
| 1022 | i += len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1023 | if (strcmp(f, "IPSRC_RND") == 0) |
| 1024 | pkt_dev->flags |= F_IPSRC_RND; |
| 1025 | |
| 1026 | else if (strcmp(f, "!IPSRC_RND") == 0) |
| 1027 | pkt_dev->flags &= ~F_IPSRC_RND; |
| 1028 | |
| 1029 | else if (strcmp(f, "TXSIZE_RND") == 0) |
| 1030 | pkt_dev->flags |= F_TXSIZE_RND; |
| 1031 | |
| 1032 | else if (strcmp(f, "!TXSIZE_RND") == 0) |
| 1033 | pkt_dev->flags &= ~F_TXSIZE_RND; |
| 1034 | |
| 1035 | else if (strcmp(f, "IPDST_RND") == 0) |
| 1036 | pkt_dev->flags |= F_IPDST_RND; |
| 1037 | |
| 1038 | else if (strcmp(f, "!IPDST_RND") == 0) |
| 1039 | pkt_dev->flags &= ~F_IPDST_RND; |
| 1040 | |
| 1041 | else if (strcmp(f, "UDPSRC_RND") == 0) |
| 1042 | pkt_dev->flags |= F_UDPSRC_RND; |
| 1043 | |
| 1044 | else if (strcmp(f, "!UDPSRC_RND") == 0) |
| 1045 | pkt_dev->flags &= ~F_UDPSRC_RND; |
| 1046 | |
| 1047 | else if (strcmp(f, "UDPDST_RND") == 0) |
| 1048 | pkt_dev->flags |= F_UDPDST_RND; |
| 1049 | |
| 1050 | else if (strcmp(f, "!UDPDST_RND") == 0) |
| 1051 | pkt_dev->flags &= ~F_UDPDST_RND; |
| 1052 | |
| 1053 | else if (strcmp(f, "MACSRC_RND") == 0) |
| 1054 | pkt_dev->flags |= F_MACSRC_RND; |
| 1055 | |
| 1056 | else if (strcmp(f, "!MACSRC_RND") == 0) |
| 1057 | pkt_dev->flags &= ~F_MACSRC_RND; |
| 1058 | |
| 1059 | else if (strcmp(f, "MACDST_RND") == 0) |
| 1060 | pkt_dev->flags |= F_MACDST_RND; |
| 1061 | |
| 1062 | else if (strcmp(f, "!MACDST_RND") == 0) |
| 1063 | pkt_dev->flags &= ~F_MACDST_RND; |
| 1064 | |
| 1065 | else { |
| 1066 | sprintf(pg_result, |
| 1067 | "Flag -:%s:- unknown\nAvailable flags, (prepend ! to un-set flag):\n%s", |
| 1068 | f, |
| 1069 | "IPSRC_RND, IPDST_RND, TXSIZE_RND, UDPSRC_RND, UDPDST_RND, MACSRC_RND, MACDST_RND\n"); |
| 1070 | return count; |
| 1071 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | sprintf(pg_result, "OK: flags=0x%x", pkt_dev->flags); |
| 1073 | return count; |
| 1074 | } |
| 1075 | if (!strcmp(name, "dst_min") || !strcmp(name, "dst")) { |
| 1076 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_min) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1077 | if (len < 0) { |
| 1078 | return len; |
| 1079 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1081 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1083 | buf[len] = 0; |
| 1084 | if (strcmp(buf, pkt_dev->dst_min) != 0) { |
| 1085 | memset(pkt_dev->dst_min, 0, sizeof(pkt_dev->dst_min)); |
| 1086 | strncpy(pkt_dev->dst_min, buf, len); |
| 1087 | pkt_dev->daddr_min = in_aton(pkt_dev->dst_min); |
| 1088 | pkt_dev->cur_daddr = pkt_dev->daddr_min; |
| 1089 | } |
| 1090 | if (debug) |
| 1091 | printk("pktgen: dst_min set to: %s\n", |
| 1092 | pkt_dev->dst_min); |
| 1093 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | sprintf(pg_result, "OK: dst_min=%s", pkt_dev->dst_min); |
| 1095 | return count; |
| 1096 | } |
| 1097 | if (!strcmp(name, "dst_max")) { |
| 1098 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->dst_max) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1099 | if (len < 0) { |
| 1100 | return len; |
| 1101 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1103 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | return -EFAULT; |
| 1105 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1106 | buf[len] = 0; |
| 1107 | if (strcmp(buf, pkt_dev->dst_max) != 0) { |
| 1108 | memset(pkt_dev->dst_max, 0, sizeof(pkt_dev->dst_max)); |
| 1109 | strncpy(pkt_dev->dst_max, buf, len); |
| 1110 | pkt_dev->daddr_max = in_aton(pkt_dev->dst_max); |
| 1111 | pkt_dev->cur_daddr = pkt_dev->daddr_max; |
| 1112 | } |
| 1113 | if (debug) |
| 1114 | printk("pktgen: dst_max set to: %s\n", |
| 1115 | pkt_dev->dst_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | i += len; |
| 1117 | sprintf(pg_result, "OK: dst_max=%s", pkt_dev->dst_max); |
| 1118 | return count; |
| 1119 | } |
| 1120 | if (!strcmp(name, "dst6")) { |
| 1121 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1122 | if (len < 0) |
| 1123 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
| 1125 | pkt_dev->flags |= F_IPV6; |
| 1126 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1127 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1129 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
| 1131 | scan_ip6(buf, pkt_dev->in6_daddr.s6_addr); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1132 | fmt_ip6(buf, pkt_dev->in6_daddr.s6_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | |
| 1134 | ipv6_addr_copy(&pkt_dev->cur_in6_daddr, &pkt_dev->in6_daddr); |
| 1135 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1136 | if (debug) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | printk("pktgen: dst6 set to: %s\n", buf); |
| 1138 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1139 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | sprintf(pg_result, "OK: dst6=%s", buf); |
| 1141 | return count; |
| 1142 | } |
| 1143 | if (!strcmp(name, "dst6_min")) { |
| 1144 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1145 | if (len < 0) |
| 1146 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | |
| 1148 | pkt_dev->flags |= F_IPV6; |
| 1149 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1150 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1152 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | |
| 1154 | scan_ip6(buf, pkt_dev->min_in6_daddr.s6_addr); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1155 | fmt_ip6(buf, pkt_dev->min_in6_daddr.s6_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1157 | ipv6_addr_copy(&pkt_dev->cur_in6_daddr, |
| 1158 | &pkt_dev->min_in6_daddr); |
| 1159 | if (debug) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | printk("pktgen: dst6_min set to: %s\n", buf); |
| 1161 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1162 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | sprintf(pg_result, "OK: dst6_min=%s", buf); |
| 1164 | return count; |
| 1165 | } |
| 1166 | if (!strcmp(name, "dst6_max")) { |
| 1167 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1168 | if (len < 0) |
| 1169 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | |
| 1171 | pkt_dev->flags |= F_IPV6; |
| 1172 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1173 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1175 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | |
| 1177 | scan_ip6(buf, pkt_dev->max_in6_daddr.s6_addr); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1178 | fmt_ip6(buf, pkt_dev->max_in6_daddr.s6_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1180 | if (debug) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | printk("pktgen: dst6_max set to: %s\n", buf); |
| 1182 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1183 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | sprintf(pg_result, "OK: dst6_max=%s", buf); |
| 1185 | return count; |
| 1186 | } |
| 1187 | if (!strcmp(name, "src6")) { |
| 1188 | len = strn_len(&user_buffer[i], sizeof(buf) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1189 | if (len < 0) |
| 1190 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | |
| 1192 | pkt_dev->flags |= F_IPV6; |
| 1193 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1194 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1196 | buf[len] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | |
| 1198 | scan_ip6(buf, pkt_dev->in6_saddr.s6_addr); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1199 | fmt_ip6(buf, pkt_dev->in6_saddr.s6_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
| 1201 | ipv6_addr_copy(&pkt_dev->cur_in6_saddr, &pkt_dev->in6_saddr); |
| 1202 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1203 | if (debug) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | printk("pktgen: src6 set to: %s\n", buf); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1205 | |
| 1206 | i += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | sprintf(pg_result, "OK: src6=%s", buf); |
| 1208 | return count; |
| 1209 | } |
| 1210 | if (!strcmp(name, "src_min")) { |
| 1211 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_min) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1212 | if (len < 0) { |
| 1213 | return len; |
| 1214 | } |
| 1215 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1217 | buf[len] = 0; |
| 1218 | if (strcmp(buf, pkt_dev->src_min) != 0) { |
| 1219 | memset(pkt_dev->src_min, 0, sizeof(pkt_dev->src_min)); |
| 1220 | strncpy(pkt_dev->src_min, buf, len); |
| 1221 | pkt_dev->saddr_min = in_aton(pkt_dev->src_min); |
| 1222 | pkt_dev->cur_saddr = pkt_dev->saddr_min; |
| 1223 | } |
| 1224 | if (debug) |
| 1225 | printk("pktgen: src_min set to: %s\n", |
| 1226 | pkt_dev->src_min); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | i += len; |
| 1228 | sprintf(pg_result, "OK: src_min=%s", pkt_dev->src_min); |
| 1229 | return count; |
| 1230 | } |
| 1231 | if (!strcmp(name, "src_max")) { |
| 1232 | len = strn_len(&user_buffer[i], sizeof(pkt_dev->src_max) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1233 | if (len < 0) { |
| 1234 | return len; |
| 1235 | } |
| 1236 | if (copy_from_user(buf, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | return -EFAULT; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1238 | buf[len] = 0; |
| 1239 | if (strcmp(buf, pkt_dev->src_max) != 0) { |
| 1240 | memset(pkt_dev->src_max, 0, sizeof(pkt_dev->src_max)); |
| 1241 | strncpy(pkt_dev->src_max, buf, len); |
| 1242 | pkt_dev->saddr_max = in_aton(pkt_dev->src_max); |
| 1243 | pkt_dev->cur_saddr = pkt_dev->saddr_max; |
| 1244 | } |
| 1245 | if (debug) |
| 1246 | printk("pktgen: src_max set to: %s\n", |
| 1247 | pkt_dev->src_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | i += len; |
| 1249 | sprintf(pg_result, "OK: src_max=%s", pkt_dev->src_max); |
| 1250 | return count; |
| 1251 | } |
| 1252 | if (!strcmp(name, "dst_mac")) { |
| 1253 | char *v = valstr; |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 1254 | unsigned char old_dmac[ETH_ALEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | unsigned char *m = pkt_dev->dst_mac; |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 1256 | memcpy(old_dmac, pkt_dev->dst_mac, ETH_ALEN); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | len = strn_len(&user_buffer[i], sizeof(valstr) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1259 | if (len < 0) { |
| 1260 | return len; |
| 1261 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | memset(valstr, 0, sizeof(valstr)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1263 | if (copy_from_user(valstr, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | return -EFAULT; |
| 1265 | i += len; |
| 1266 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1267 | for (*m = 0; *v && m < pkt_dev->dst_mac + 6; v++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | if (*v >= '0' && *v <= '9') { |
| 1269 | *m *= 16; |
| 1270 | *m += *v - '0'; |
| 1271 | } |
| 1272 | if (*v >= 'A' && *v <= 'F') { |
| 1273 | *m *= 16; |
| 1274 | *m += *v - 'A' + 10; |
| 1275 | } |
| 1276 | if (*v >= 'a' && *v <= 'f') { |
| 1277 | *m *= 16; |
| 1278 | *m += *v - 'a' + 10; |
| 1279 | } |
| 1280 | if (*v == ':') { |
| 1281 | m++; |
| 1282 | *m = 0; |
| 1283 | } |
| 1284 | } |
| 1285 | |
| 1286 | /* Set up Dest MAC */ |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 1287 | if (compare_ether_addr(old_dmac, pkt_dev->dst_mac)) |
| 1288 | memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | sprintf(pg_result, "OK: dstmac"); |
| 1291 | return count; |
| 1292 | } |
| 1293 | if (!strcmp(name, "src_mac")) { |
| 1294 | char *v = valstr; |
| 1295 | unsigned char *m = pkt_dev->src_mac; |
| 1296 | |
| 1297 | len = strn_len(&user_buffer[i], sizeof(valstr) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1298 | if (len < 0) { |
| 1299 | return len; |
| 1300 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | memset(valstr, 0, sizeof(valstr)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1302 | if (copy_from_user(valstr, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | return -EFAULT; |
| 1304 | i += len; |
| 1305 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1306 | for (*m = 0; *v && m < pkt_dev->src_mac + 6; v++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | if (*v >= '0' && *v <= '9') { |
| 1308 | *m *= 16; |
| 1309 | *m += *v - '0'; |
| 1310 | } |
| 1311 | if (*v >= 'A' && *v <= 'F') { |
| 1312 | *m *= 16; |
| 1313 | *m += *v - 'A' + 10; |
| 1314 | } |
| 1315 | if (*v >= 'a' && *v <= 'f') { |
| 1316 | *m *= 16; |
| 1317 | *m += *v - 'a' + 10; |
| 1318 | } |
| 1319 | if (*v == ':') { |
| 1320 | m++; |
| 1321 | *m = 0; |
| 1322 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1323 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1325 | sprintf(pg_result, "OK: srcmac"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | return count; |
| 1327 | } |
| 1328 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1329 | if (!strcmp(name, "clear_counters")) { |
| 1330 | pktgen_clear_counters(pkt_dev); |
| 1331 | sprintf(pg_result, "OK: Clearing counters.\n"); |
| 1332 | return count; |
| 1333 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | |
| 1335 | if (!strcmp(name, "flows")) { |
| 1336 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1337 | if (len < 0) { |
| 1338 | return len; |
| 1339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | i += len; |
| 1341 | if (value > MAX_CFLOWS) |
| 1342 | value = MAX_CFLOWS; |
| 1343 | |
| 1344 | pkt_dev->cflows = value; |
| 1345 | sprintf(pg_result, "OK: flows=%u", pkt_dev->cflows); |
| 1346 | return count; |
| 1347 | } |
| 1348 | |
| 1349 | if (!strcmp(name, "flowlen")) { |
| 1350 | len = num_arg(&user_buffer[i], 10, &value); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1351 | if (len < 0) { |
| 1352 | return len; |
| 1353 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | i += len; |
| 1355 | pkt_dev->lflow = value; |
| 1356 | sprintf(pg_result, "OK: flowlen=%u", pkt_dev->lflow); |
| 1357 | return count; |
| 1358 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | sprintf(pkt_dev->result, "No such parameter \"%s\"", name); |
| 1361 | return -EINVAL; |
| 1362 | } |
| 1363 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1364 | static int pktgen_if_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | { |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1366 | return single_open(file, pktgen_if_show, PDE(inode)->data); |
| 1367 | } |
| 1368 | |
| 1369 | static struct file_operations pktgen_if_fops = { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1370 | .owner = THIS_MODULE, |
| 1371 | .open = pktgen_if_open, |
| 1372 | .read = seq_read, |
| 1373 | .llseek = seq_lseek, |
| 1374 | .write = pktgen_if_write, |
| 1375 | .release = single_release, |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1376 | }; |
| 1377 | |
| 1378 | static int pktgen_thread_show(struct seq_file *seq, void *v) |
| 1379 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1380 | struct pktgen_thread *t = seq->private; |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 1381 | struct pktgen_dev *pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1383 | BUG_ON(!t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1385 | seq_printf(seq, "Name: %s max_before_softirq: %d\n", |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1386 | t->name, t->max_before_softirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1388 | seq_printf(seq, "Running: "); |
| 1389 | |
| 1390 | if_lock(t); |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 1391 | list_for_each_entry(pkt_dev, &t->if_list, list) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1392 | if (pkt_dev->running) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1393 | seq_printf(seq, "%s ", pkt_dev->ifname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1395 | seq_printf(seq, "\nStopped: "); |
| 1396 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 1397 | list_for_each_entry(pkt_dev, &t->if_list, list) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1398 | if (!pkt_dev->running) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1399 | seq_printf(seq, "%s ", pkt_dev->ifname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
| 1401 | if (t->result[0]) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1402 | seq_printf(seq, "\nResult: %s\n", t->result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | else |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1404 | seq_printf(seq, "\nResult: NA\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1406 | if_unlock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1408 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | } |
| 1410 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1411 | static ssize_t pktgen_thread_write(struct file *file, |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1412 | const char __user * user_buffer, |
| 1413 | size_t count, loff_t * offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1415 | struct seq_file *seq = (struct seq_file *)file->private_data; |
| 1416 | struct pktgen_thread *t = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | int i = 0, max, len, ret; |
| 1418 | char name[40]; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1419 | char *pg_result; |
| 1420 | unsigned long value = 0; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | if (count < 1) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1423 | // sprintf(pg_result, "Wrong command format"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | return -EINVAL; |
| 1425 | } |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | max = count - i; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1428 | len = count_trail_chars(&user_buffer[i], max); |
| 1429 | if (len < 0) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1430 | return len; |
| 1431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | i += len; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | /* Read variable name */ |
| 1435 | |
| 1436 | len = strn_len(&user_buffer[i], sizeof(name) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1437 | if (len < 0) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1438 | return len; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | memset(name, 0, sizeof(name)); |
| 1441 | if (copy_from_user(name, &user_buffer[i], len)) |
| 1442 | return -EFAULT; |
| 1443 | i += len; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1444 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1445 | max = count - i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | len = count_trail_chars(&user_buffer[i], max); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1447 | if (len < 0) |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1448 | return len; |
| 1449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | i += len; |
| 1451 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1452 | if (debug) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1453 | printk("pktgen: t=%s, count=%lu\n", name, (unsigned long)count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1455 | if (!t) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | printk("pktgen: ERROR: No thread\n"); |
| 1457 | ret = -EINVAL; |
| 1458 | goto out; |
| 1459 | } |
| 1460 | |
| 1461 | pg_result = &(t->result[0]); |
| 1462 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1463 | if (!strcmp(name, "add_device")) { |
| 1464 | char f[32]; |
| 1465 | memset(f, 0, 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | len = strn_len(&user_buffer[i], sizeof(f) - 1); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1467 | if (len < 0) { |
| 1468 | ret = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | goto out; |
| 1470 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1471 | if (copy_from_user(f, &user_buffer[i], len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | return -EFAULT; |
| 1473 | i += len; |
| 1474 | thread_lock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1475 | pktgen_add_device(t, f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | thread_unlock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1477 | ret = count; |
| 1478 | sprintf(pg_result, "OK: add_device=%s", f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | goto out; |
| 1480 | } |
| 1481 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1482 | if (!strcmp(name, "rem_device_all")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | thread_lock(); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1484 | t->control |= T_REMDEVALL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | thread_unlock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1486 | schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | ret = count; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1488 | sprintf(pg_result, "OK: rem_device_all"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | goto out; |
| 1490 | } |
| 1491 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1492 | if (!strcmp(name, "max_before_softirq")) { |
| 1493 | len = num_arg(&user_buffer[i], 10, &value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | thread_lock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1495 | t->max_before_softirq = value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | thread_unlock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1497 | ret = count; |
| 1498 | sprintf(pg_result, "OK: max_before_softirq=%lu", value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | goto out; |
| 1500 | } |
| 1501 | |
| 1502 | ret = -EINVAL; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1503 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | return ret; |
| 1505 | } |
| 1506 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1507 | static int pktgen_thread_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | { |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1509 | return single_open(file, pktgen_thread_show, PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | } |
| 1511 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1512 | static struct file_operations pktgen_thread_fops = { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1513 | .owner = THIS_MODULE, |
| 1514 | .open = pktgen_thread_open, |
| 1515 | .read = seq_read, |
| 1516 | .llseek = seq_lseek, |
| 1517 | .write = pktgen_thread_write, |
| 1518 | .release = single_release, |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 1519 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | |
| 1521 | /* Think find or remove for NN */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1522 | static struct pktgen_dev *__pktgen_NN_threads(const char *ifname, int remove) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | { |
| 1524 | struct pktgen_thread *t; |
| 1525 | struct pktgen_dev *pkt_dev = NULL; |
| 1526 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 1527 | list_for_each_entry(t, &pktgen_threads, th_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | pkt_dev = pktgen_find_dev(t, ifname); |
| 1529 | if (pkt_dev) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1530 | if (remove) { |
| 1531 | if_lock(t); |
| 1532 | pkt_dev->removal_mark = 1; |
| 1533 | t->control |= T_REMDEV; |
| 1534 | if_unlock(t); |
| 1535 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | break; |
| 1537 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1539 | return pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | } |
| 1541 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1542 | /* |
| 1543 | * mark a device for removal |
| 1544 | */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1545 | static int pktgen_mark_device(const char *ifname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | { |
| 1547 | struct pktgen_dev *pkt_dev = NULL; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1548 | const int max_tries = 10, msec_per_try = 125; |
| 1549 | int i = 0; |
| 1550 | int ret = 0; |
| 1551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | thread_lock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1553 | PG_DEBUG(printk("pktgen: pktgen_mark_device marking %s for removal\n", |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1554 | ifname)); |
| 1555 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1556 | while (1) { |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1557 | |
| 1558 | pkt_dev = __pktgen_NN_threads(ifname, REMOVE); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1559 | if (pkt_dev == NULL) |
| 1560 | break; /* success */ |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1561 | |
| 1562 | thread_unlock(); |
| 1563 | PG_DEBUG(printk("pktgen: pktgen_mark_device waiting for %s " |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1564 | "to disappear....\n", ifname)); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1565 | schedule_timeout_interruptible(msecs_to_jiffies(msec_per_try)); |
| 1566 | thread_lock(); |
| 1567 | |
| 1568 | if (++i >= max_tries) { |
| 1569 | printk("pktgen_mark_device: timed out after waiting " |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1570 | "%d msec for device %s to be removed\n", |
| 1571 | msec_per_try * i, ifname); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 1572 | ret = 1; |
| 1573 | break; |
| 1574 | } |
| 1575 | |
| 1576 | } |
| 1577 | |
| 1578 | thread_unlock(); |
| 1579 | |
| 1580 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | } |
| 1582 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1583 | static int pktgen_device_event(struct notifier_block *unused, |
| 1584 | unsigned long event, void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | { |
| 1586 | struct net_device *dev = (struct net_device *)(ptr); |
| 1587 | |
| 1588 | /* It is OK that we do not hold the group lock right now, |
| 1589 | * as we run under the RTNL lock. |
| 1590 | */ |
| 1591 | |
| 1592 | switch (event) { |
| 1593 | case NETDEV_CHANGEADDR: |
| 1594 | case NETDEV_GOING_DOWN: |
| 1595 | case NETDEV_DOWN: |
| 1596 | case NETDEV_UP: |
| 1597 | /* Ignore for now */ |
| 1598 | break; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | case NETDEV_UNREGISTER: |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1601 | pktgen_mark_device(dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | break; |
| 1603 | }; |
| 1604 | |
| 1605 | return NOTIFY_DONE; |
| 1606 | } |
| 1607 | |
| 1608 | /* Associate pktgen_dev with a device. */ |
| 1609 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1610 | static struct net_device *pktgen_setup_dev(struct pktgen_dev *pkt_dev) |
| 1611 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | struct net_device *odev; |
| 1613 | |
| 1614 | /* Clean old setups */ |
| 1615 | |
| 1616 | if (pkt_dev->odev) { |
| 1617 | dev_put(pkt_dev->odev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1618 | pkt_dev->odev = NULL; |
| 1619 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | |
| 1621 | odev = dev_get_by_name(pkt_dev->ifname); |
| 1622 | |
| 1623 | if (!odev) { |
| 1624 | printk("pktgen: no such netdevice: \"%s\"\n", pkt_dev->ifname); |
| 1625 | goto out; |
| 1626 | } |
| 1627 | if (odev->type != ARPHRD_ETHER) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1628 | printk("pktgen: not an ethernet device: \"%s\"\n", |
| 1629 | pkt_dev->ifname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | goto out_put; |
| 1631 | } |
| 1632 | if (!netif_running(odev)) { |
| 1633 | printk("pktgen: device is down: \"%s\"\n", pkt_dev->ifname); |
| 1634 | goto out_put; |
| 1635 | } |
| 1636 | pkt_dev->odev = odev; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1637 | |
| 1638 | return pkt_dev->odev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | |
| 1640 | out_put: |
| 1641 | dev_put(odev); |
| 1642 | out: |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1643 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | |
| 1645 | } |
| 1646 | |
| 1647 | /* Read pkt_dev from the interface and set up internal pktgen_dev |
| 1648 | * structure to have the right information to create/send packets |
| 1649 | */ |
| 1650 | static void pktgen_setup_inject(struct pktgen_dev *pkt_dev) |
| 1651 | { |
| 1652 | /* Try once more, just in case it works now. */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1653 | if (!pkt_dev->odev) |
| 1654 | pktgen_setup_dev(pkt_dev); |
| 1655 | |
| 1656 | if (!pkt_dev->odev) { |
| 1657 | printk("pktgen: ERROR: pkt_dev->odev == NULL in setup_inject.\n"); |
| 1658 | sprintf(pkt_dev->result, |
| 1659 | "ERROR: pkt_dev->odev == NULL in setup_inject.\n"); |
| 1660 | return; |
| 1661 | } |
| 1662 | |
| 1663 | /* Default to the interface's mac if not explicitly set. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 1665 | if (is_zero_ether_addr(pkt_dev->src_mac)) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1666 | memcpy(&(pkt_dev->hh[6]), pkt_dev->odev->dev_addr, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1668 | /* Set up Dest MAC */ |
Kris Katterjohn | f404e9a | 2006-01-17 13:04:57 -0800 | [diff] [blame] | 1669 | memcpy(&(pkt_dev->hh[0]), pkt_dev->dst_mac, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1671 | /* Set up pkt size */ |
| 1672 | pkt_dev->cur_pkt_size = pkt_dev->min_pkt_size; |
| 1673 | |
| 1674 | if (pkt_dev->flags & F_IPV6) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | /* |
| 1676 | * Skip this automatic address setting until locks or functions |
| 1677 | * gets exported |
| 1678 | */ |
| 1679 | |
| 1680 | #ifdef NOTNOW |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1681 | int i, set = 0, err = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | struct inet6_dev *idev; |
| 1683 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1684 | for (i = 0; i < IN6_ADDR_HSIZE; i++) |
| 1685 | if (pkt_dev->cur_in6_saddr.s6_addr[i]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | set = 1; |
| 1687 | break; |
| 1688 | } |
| 1689 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1690 | if (!set) { |
| 1691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | /* |
| 1693 | * Use linklevel address if unconfigured. |
| 1694 | * |
| 1695 | * use ipv6_get_lladdr if/when it's get exported |
| 1696 | */ |
| 1697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | read_lock(&addrconf_lock); |
| 1699 | if ((idev = __in6_dev_get(pkt_dev->odev)) != NULL) { |
| 1700 | struct inet6_ifaddr *ifp; |
| 1701 | |
| 1702 | read_lock_bh(&idev->lock); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1703 | for (ifp = idev->addr_list; ifp; |
| 1704 | ifp = ifp->if_next) { |
| 1705 | if (ifp->scope == IFA_LINK |
| 1706 | && !(ifp-> |
| 1707 | flags & IFA_F_TENTATIVE)) { |
| 1708 | ipv6_addr_copy(&pkt_dev-> |
| 1709 | cur_in6_saddr, |
| 1710 | &ifp->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | err = 0; |
| 1712 | break; |
| 1713 | } |
| 1714 | } |
| 1715 | read_unlock_bh(&idev->lock); |
| 1716 | } |
| 1717 | read_unlock(&addrconf_lock); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1718 | if (err) |
| 1719 | printk("pktgen: ERROR: IPv6 link address not availble.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | } |
| 1721 | #endif |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1722 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | pkt_dev->saddr_min = 0; |
| 1724 | pkt_dev->saddr_max = 0; |
| 1725 | if (strlen(pkt_dev->src_min) == 0) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1726 | |
| 1727 | struct in_device *in_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | |
| 1729 | rcu_read_lock(); |
Herbert Xu | e5ed639 | 2005-10-03 14:35:55 -0700 | [diff] [blame] | 1730 | in_dev = __in_dev_get_rcu(pkt_dev->odev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | if (in_dev) { |
| 1732 | if (in_dev->ifa_list) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1733 | pkt_dev->saddr_min = |
| 1734 | in_dev->ifa_list->ifa_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | pkt_dev->saddr_max = pkt_dev->saddr_min; |
| 1736 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | } |
| 1738 | rcu_read_unlock(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1739 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | pkt_dev->saddr_min = in_aton(pkt_dev->src_min); |
| 1741 | pkt_dev->saddr_max = in_aton(pkt_dev->src_max); |
| 1742 | } |
| 1743 | |
| 1744 | pkt_dev->daddr_min = in_aton(pkt_dev->dst_min); |
| 1745 | pkt_dev->daddr_max = in_aton(pkt_dev->dst_max); |
| 1746 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1747 | /* Initialize current values. */ |
| 1748 | pkt_dev->cur_dst_mac_offset = 0; |
| 1749 | pkt_dev->cur_src_mac_offset = 0; |
| 1750 | pkt_dev->cur_saddr = pkt_dev->saddr_min; |
| 1751 | pkt_dev->cur_daddr = pkt_dev->daddr_min; |
| 1752 | pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min; |
| 1753 | pkt_dev->cur_udp_src = pkt_dev->udp_src_min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | pkt_dev->nflows = 0; |
| 1755 | } |
| 1756 | |
| 1757 | static void spin(struct pktgen_dev *pkt_dev, __u64 spin_until_us) |
| 1758 | { |
| 1759 | __u64 start; |
| 1760 | __u64 now; |
| 1761 | |
| 1762 | start = now = getCurUs(); |
| 1763 | printk(KERN_INFO "sleeping for %d\n", (int)(spin_until_us - now)); |
| 1764 | while (now < spin_until_us) { |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 1765 | /* TODO: optimize sleeping behavior */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1766 | if (spin_until_us - now > jiffies_to_usecs(1) + 1) |
Nishanth Aravamudan | 121caf5 | 2005-09-12 14:15:34 -0700 | [diff] [blame] | 1767 | schedule_timeout_interruptible(1); |
| 1768 | else if (spin_until_us - now > 100) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | do_softirq(); |
| 1770 | if (!pkt_dev->running) |
| 1771 | return; |
| 1772 | if (need_resched()) |
| 1773 | schedule(); |
| 1774 | } |
| 1775 | |
| 1776 | now = getCurUs(); |
| 1777 | } |
| 1778 | |
| 1779 | pkt_dev->idle_acc += now - start; |
| 1780 | } |
| 1781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | /* Increment/randomize headers according to flags and current values |
| 1783 | * for IP src/dest, UDP src/dst port, MAC-Addr src/dst |
| 1784 | */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1785 | static void mod_cur_headers(struct pktgen_dev *pkt_dev) |
| 1786 | { |
| 1787 | __u32 imn; |
| 1788 | __u32 imx; |
| 1789 | int flow = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1791 | if (pkt_dev->cflows) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | flow = pktgen_random() % pkt_dev->cflows; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | if (pkt_dev->flows[flow].count > pkt_dev->lflow) |
| 1795 | pkt_dev->flows[flow].count = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1796 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | |
| 1798 | /* Deal with source MAC */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1799 | if (pkt_dev->src_mac_count > 1) { |
| 1800 | __u32 mc; |
| 1801 | __u32 tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1803 | if (pkt_dev->flags & F_MACSRC_RND) |
| 1804 | mc = pktgen_random() % (pkt_dev->src_mac_count); |
| 1805 | else { |
| 1806 | mc = pkt_dev->cur_src_mac_offset++; |
| 1807 | if (pkt_dev->cur_src_mac_offset > |
| 1808 | pkt_dev->src_mac_count) |
| 1809 | pkt_dev->cur_src_mac_offset = 0; |
| 1810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1812 | tmp = pkt_dev->src_mac[5] + (mc & 0xFF); |
| 1813 | pkt_dev->hh[11] = tmp; |
| 1814 | tmp = (pkt_dev->src_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8)); |
| 1815 | pkt_dev->hh[10] = tmp; |
| 1816 | tmp = (pkt_dev->src_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8)); |
| 1817 | pkt_dev->hh[9] = tmp; |
| 1818 | tmp = (pkt_dev->src_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8)); |
| 1819 | pkt_dev->hh[8] = tmp; |
| 1820 | tmp = (pkt_dev->src_mac[1] + (tmp >> 8)); |
| 1821 | pkt_dev->hh[7] = tmp; |
| 1822 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1824 | /* Deal with Destination MAC */ |
| 1825 | if (pkt_dev->dst_mac_count > 1) { |
| 1826 | __u32 mc; |
| 1827 | __u32 tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1829 | if (pkt_dev->flags & F_MACDST_RND) |
| 1830 | mc = pktgen_random() % (pkt_dev->dst_mac_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1832 | else { |
| 1833 | mc = pkt_dev->cur_dst_mac_offset++; |
| 1834 | if (pkt_dev->cur_dst_mac_offset > |
| 1835 | pkt_dev->dst_mac_count) { |
| 1836 | pkt_dev->cur_dst_mac_offset = 0; |
| 1837 | } |
| 1838 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1840 | tmp = pkt_dev->dst_mac[5] + (mc & 0xFF); |
| 1841 | pkt_dev->hh[5] = tmp; |
| 1842 | tmp = (pkt_dev->dst_mac[4] + ((mc >> 8) & 0xFF) + (tmp >> 8)); |
| 1843 | pkt_dev->hh[4] = tmp; |
| 1844 | tmp = (pkt_dev->dst_mac[3] + ((mc >> 16) & 0xFF) + (tmp >> 8)); |
| 1845 | pkt_dev->hh[3] = tmp; |
| 1846 | tmp = (pkt_dev->dst_mac[2] + ((mc >> 24) & 0xFF) + (tmp >> 8)); |
| 1847 | pkt_dev->hh[2] = tmp; |
| 1848 | tmp = (pkt_dev->dst_mac[1] + (tmp >> 8)); |
| 1849 | pkt_dev->hh[1] = tmp; |
| 1850 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1852 | if (pkt_dev->udp_src_min < pkt_dev->udp_src_max) { |
| 1853 | if (pkt_dev->flags & F_UDPSRC_RND) |
| 1854 | pkt_dev->cur_udp_src = |
| 1855 | ((pktgen_random() % |
| 1856 | (pkt_dev->udp_src_max - pkt_dev->udp_src_min)) + |
| 1857 | pkt_dev->udp_src_min); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1859 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | pkt_dev->cur_udp_src++; |
| 1861 | if (pkt_dev->cur_udp_src >= pkt_dev->udp_src_max) |
| 1862 | pkt_dev->cur_udp_src = pkt_dev->udp_src_min; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1863 | } |
| 1864 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1866 | if (pkt_dev->udp_dst_min < pkt_dev->udp_dst_max) { |
| 1867 | if (pkt_dev->flags & F_UDPDST_RND) { |
| 1868 | pkt_dev->cur_udp_dst = |
| 1869 | ((pktgen_random() % |
| 1870 | (pkt_dev->udp_dst_max - pkt_dev->udp_dst_min)) + |
| 1871 | pkt_dev->udp_dst_min); |
| 1872 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | pkt_dev->cur_udp_dst++; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1874 | if (pkt_dev->cur_udp_dst >= pkt_dev->udp_dst_max) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | pkt_dev->cur_udp_dst = pkt_dev->udp_dst_min; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1876 | } |
| 1877 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | |
| 1879 | if (!(pkt_dev->flags & F_IPV6)) { |
| 1880 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1881 | if ((imn = ntohl(pkt_dev->saddr_min)) < (imx = |
| 1882 | ntohl(pkt_dev-> |
| 1883 | saddr_max))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | __u32 t; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1885 | if (pkt_dev->flags & F_IPSRC_RND) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | t = ((pktgen_random() % (imx - imn)) + imn); |
| 1887 | else { |
| 1888 | t = ntohl(pkt_dev->cur_saddr); |
| 1889 | t++; |
| 1890 | if (t > imx) { |
| 1891 | t = imn; |
| 1892 | } |
| 1893 | } |
| 1894 | pkt_dev->cur_saddr = htonl(t); |
| 1895 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1896 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | if (pkt_dev->cflows && pkt_dev->flows[flow].count != 0) { |
| 1898 | pkt_dev->cur_daddr = pkt_dev->flows[flow].cur_daddr; |
| 1899 | } else { |
| 1900 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1901 | if ((imn = ntohl(pkt_dev->daddr_min)) < (imx = |
| 1902 | ntohl(pkt_dev-> |
| 1903 | daddr_max))) |
| 1904 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | __u32 t; |
| 1906 | if (pkt_dev->flags & F_IPDST_RND) { |
| 1907 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1908 | t = ((pktgen_random() % (imx - imn)) + |
| 1909 | imn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | t = htonl(t); |
| 1911 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1912 | while (LOOPBACK(t) || MULTICAST(t) |
| 1913 | || BADCLASS(t) || ZERONET(t) |
| 1914 | || LOCAL_MCAST(t)) { |
| 1915 | t = ((pktgen_random() % |
| 1916 | (imx - imn)) + imn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | t = htonl(t); |
| 1918 | } |
| 1919 | pkt_dev->cur_daddr = t; |
| 1920 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | else { |
| 1923 | t = ntohl(pkt_dev->cur_daddr); |
| 1924 | t++; |
| 1925 | if (t > imx) { |
| 1926 | t = imn; |
| 1927 | } |
| 1928 | pkt_dev->cur_daddr = htonl(t); |
| 1929 | } |
| 1930 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1931 | if (pkt_dev->cflows) { |
| 1932 | pkt_dev->flows[flow].cur_daddr = |
| 1933 | pkt_dev->cur_daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | pkt_dev->nflows++; |
| 1935 | } |
| 1936 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1937 | } else { /* IPV6 * */ |
| 1938 | |
| 1939 | if (pkt_dev->min_in6_daddr.s6_addr32[0] == 0 && |
| 1940 | pkt_dev->min_in6_daddr.s6_addr32[1] == 0 && |
| 1941 | pkt_dev->min_in6_daddr.s6_addr32[2] == 0 && |
| 1942 | pkt_dev->min_in6_daddr.s6_addr32[3] == 0) ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | else { |
| 1944 | int i; |
| 1945 | |
| 1946 | /* Only random destinations yet */ |
| 1947 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1948 | for (i = 0; i < 4; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | pkt_dev->cur_in6_daddr.s6_addr32[i] = |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1950 | ((pktgen_random() | |
| 1951 | pkt_dev->min_in6_daddr.s6_addr32[i]) & |
| 1952 | pkt_dev->max_in6_daddr.s6_addr32[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1954 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | } |
| 1956 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1957 | if (pkt_dev->min_pkt_size < pkt_dev->max_pkt_size) { |
| 1958 | __u32 t; |
| 1959 | if (pkt_dev->flags & F_TXSIZE_RND) { |
| 1960 | t = ((pktgen_random() % |
| 1961 | (pkt_dev->max_pkt_size - pkt_dev->min_pkt_size)) |
| 1962 | + pkt_dev->min_pkt_size); |
| 1963 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | t = pkt_dev->cur_pkt_size + 1; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1965 | if (t > pkt_dev->max_pkt_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | t = pkt_dev->min_pkt_size; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1967 | } |
| 1968 | pkt_dev->cur_pkt_size = t; |
| 1969 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | |
| 1971 | pkt_dev->flows[flow].count++; |
| 1972 | } |
| 1973 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1974 | static struct sk_buff *fill_packet_ipv4(struct net_device *odev, |
| 1975 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | { |
| 1977 | struct sk_buff *skb = NULL; |
| 1978 | __u8 *eth; |
| 1979 | struct udphdr *udph; |
| 1980 | int datalen, iplen; |
| 1981 | struct iphdr *iph; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 1982 | struct pktgen_hdr *pgh = NULL; |
| 1983 | |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 1984 | /* Update any of the values, used when we're incrementing various |
| 1985 | * fields. |
| 1986 | */ |
| 1987 | mod_cur_headers(pkt_dev); |
| 1988 | |
David S. Miller | 7ac5459 | 2006-01-18 14:19:10 -0800 | [diff] [blame] | 1989 | datalen = (odev->hard_header_len + 16) & ~0xf; |
| 1990 | skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + datalen, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | if (!skb) { |
| 1992 | sprintf(pkt_dev->result, "No memory"); |
| 1993 | return NULL; |
| 1994 | } |
| 1995 | |
David S. Miller | 7ac5459 | 2006-01-18 14:19:10 -0800 | [diff] [blame] | 1996 | skb_reserve(skb, datalen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | |
| 1998 | /* Reserve for ethernet and IP header */ |
| 1999 | eth = (__u8 *) skb_push(skb, 14); |
| 2000 | iph = (struct iphdr *)skb_put(skb, sizeof(struct iphdr)); |
| 2001 | udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr)); |
| 2002 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | memcpy(eth, pkt_dev->hh, 12); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2004 | *(u16 *) & eth[12] = __constant_htons(ETH_P_IP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2006 | datalen = pkt_dev->cur_pkt_size - 14 - 20 - 8; /* Eth + IPh + UDPh */ |
| 2007 | if (datalen < sizeof(struct pktgen_hdr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | datalen = sizeof(struct pktgen_hdr); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2009 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | udph->source = htons(pkt_dev->cur_udp_src); |
| 2011 | udph->dest = htons(pkt_dev->cur_udp_dst); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2012 | udph->len = htons(datalen + 8); /* DATA + udphdr */ |
| 2013 | udph->check = 0; /* No checksum */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | |
| 2015 | iph->ihl = 5; |
| 2016 | iph->version = 4; |
| 2017 | iph->ttl = 32; |
| 2018 | iph->tos = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2019 | iph->protocol = IPPROTO_UDP; /* UDP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | iph->saddr = pkt_dev->cur_saddr; |
| 2021 | iph->daddr = pkt_dev->cur_daddr; |
| 2022 | iph->frag_off = 0; |
| 2023 | iplen = 20 + 8 + datalen; |
| 2024 | iph->tot_len = htons(iplen); |
| 2025 | iph->check = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2026 | iph->check = ip_fast_csum((void *)iph, iph->ihl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | skb->protocol = __constant_htons(ETH_P_IP); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2028 | skb->mac.raw = ((u8 *) iph) - 14; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | skb->dev = odev; |
| 2030 | skb->pkt_type = PACKET_HOST; |
| 2031 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2032 | if (pkt_dev->nfrags <= 0) |
| 2033 | pgh = (struct pktgen_hdr *)skb_put(skb, datalen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | else { |
| 2035 | int frags = pkt_dev->nfrags; |
| 2036 | int i; |
| 2037 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2038 | pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8); |
| 2039 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | if (frags > MAX_SKB_FRAGS) |
| 2041 | frags = MAX_SKB_FRAGS; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2042 | if (datalen > frags * PAGE_SIZE) { |
| 2043 | skb_put(skb, datalen - frags * PAGE_SIZE); |
| 2044 | datalen = frags * PAGE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | } |
| 2046 | |
| 2047 | i = 0; |
| 2048 | while (datalen > 0) { |
| 2049 | struct page *page = alloc_pages(GFP_KERNEL, 0); |
| 2050 | skb_shinfo(skb)->frags[i].page = page; |
| 2051 | skb_shinfo(skb)->frags[i].page_offset = 0; |
| 2052 | skb_shinfo(skb)->frags[i].size = |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2053 | (datalen < PAGE_SIZE ? datalen : PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | datalen -= skb_shinfo(skb)->frags[i].size; |
| 2055 | skb->len += skb_shinfo(skb)->frags[i].size; |
| 2056 | skb->data_len += skb_shinfo(skb)->frags[i].size; |
| 2057 | i++; |
| 2058 | skb_shinfo(skb)->nr_frags = i; |
| 2059 | } |
| 2060 | |
| 2061 | while (i < frags) { |
| 2062 | int rem; |
| 2063 | |
| 2064 | if (i == 0) |
| 2065 | break; |
| 2066 | |
| 2067 | rem = skb_shinfo(skb)->frags[i - 1].size / 2; |
| 2068 | if (rem == 0) |
| 2069 | break; |
| 2070 | |
| 2071 | skb_shinfo(skb)->frags[i - 1].size -= rem; |
| 2072 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2073 | skb_shinfo(skb)->frags[i] = |
| 2074 | skb_shinfo(skb)->frags[i - 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | get_page(skb_shinfo(skb)->frags[i].page); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2076 | skb_shinfo(skb)->frags[i].page = |
| 2077 | skb_shinfo(skb)->frags[i - 1].page; |
| 2078 | skb_shinfo(skb)->frags[i].page_offset += |
| 2079 | skb_shinfo(skb)->frags[i - 1].size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | skb_shinfo(skb)->frags[i].size = rem; |
| 2081 | i++; |
| 2082 | skb_shinfo(skb)->nr_frags = i; |
| 2083 | } |
| 2084 | } |
| 2085 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2086 | /* Stamp the time, and sequence number, convert them to network byte order */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2088 | if (pgh) { |
| 2089 | struct timeval timestamp; |
| 2090 | |
| 2091 | pgh->pgh_magic = htonl(PKTGEN_MAGIC); |
| 2092 | pgh->seq_num = htonl(pkt_dev->seq_num); |
| 2093 | |
| 2094 | do_gettimeofday(×tamp); |
| 2095 | pgh->tv_sec = htonl(timestamp.tv_sec); |
| 2096 | pgh->tv_usec = htonl(timestamp.tv_usec); |
| 2097 | } |
| 2098 | pkt_dev->seq_num++; |
| 2099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | return skb; |
| 2101 | } |
| 2102 | |
| 2103 | /* |
| 2104 | * scan_ip6, fmt_ip taken from dietlibc-0.21 |
| 2105 | * Author Felix von Leitner <felix-dietlibc@fefe.de> |
| 2106 | * |
| 2107 | * Slightly modified for kernel. |
| 2108 | * Should be candidate for net/ipv4/utils.c |
| 2109 | * --ro |
| 2110 | */ |
| 2111 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2112 | static unsigned int scan_ip6(const char *s, char ip[16]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | { |
| 2114 | unsigned int i; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2115 | unsigned int len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | unsigned long u; |
| 2117 | char suffix[16]; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2118 | unsigned int prefixlen = 0; |
| 2119 | unsigned int suffixlen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | __u32 tmp; |
| 2121 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2122 | for (i = 0; i < 16; i++) |
| 2123 | ip[i] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | |
| 2125 | for (;;) { |
| 2126 | if (*s == ':') { |
| 2127 | len++; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2128 | if (s[1] == ':') { /* Found "::", skip to part 2 */ |
| 2129 | s += 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | len++; |
| 2131 | break; |
| 2132 | } |
| 2133 | s++; |
| 2134 | } |
| 2135 | { |
| 2136 | char *tmp; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2137 | u = simple_strtoul(s, &tmp, 16); |
| 2138 | i = tmp - s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | } |
| 2140 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2141 | if (!i) |
| 2142 | return 0; |
| 2143 | if (prefixlen == 12 && s[i] == '.') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | |
| 2145 | /* the last 4 bytes may be written as IPv4 address */ |
| 2146 | |
| 2147 | tmp = in_aton(s); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2148 | memcpy((struct in_addr *)(ip + 12), &tmp, sizeof(tmp)); |
| 2149 | return i + len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | } |
| 2151 | ip[prefixlen++] = (u >> 8); |
| 2152 | ip[prefixlen++] = (u & 255); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2153 | s += i; |
| 2154 | len += i; |
| 2155 | if (prefixlen == 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | return len; |
| 2157 | } |
| 2158 | |
| 2159 | /* part 2, after "::" */ |
| 2160 | for (;;) { |
| 2161 | if (*s == ':') { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2162 | if (suffixlen == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | break; |
| 2164 | s++; |
| 2165 | len++; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2166 | } else if (suffixlen != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | break; |
| 2168 | { |
| 2169 | char *tmp; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2170 | u = simple_strtol(s, &tmp, 16); |
| 2171 | i = tmp - s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | } |
| 2173 | if (!i) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2174 | if (*s) |
| 2175 | len--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | break; |
| 2177 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2178 | if (suffixlen + prefixlen <= 12 && s[i] == '.') { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | tmp = in_aton(s); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2180 | memcpy((struct in_addr *)(suffix + suffixlen), &tmp, |
| 2181 | sizeof(tmp)); |
| 2182 | suffixlen += 4; |
| 2183 | len += strlen(s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | break; |
| 2185 | } |
| 2186 | suffix[suffixlen++] = (u >> 8); |
| 2187 | suffix[suffixlen++] = (u & 255); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2188 | s += i; |
| 2189 | len += i; |
| 2190 | if (prefixlen + suffixlen == 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | break; |
| 2192 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2193 | for (i = 0; i < suffixlen; i++) |
| 2194 | ip[16 - suffixlen + i] = suffix[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | return len; |
| 2196 | } |
| 2197 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2198 | static char tohex(char hexdigit) |
| 2199 | { |
| 2200 | return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | } |
| 2202 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2203 | static int fmt_xlong(char *s, unsigned int i) |
| 2204 | { |
| 2205 | char *bak = s; |
| 2206 | *s = tohex((i >> 12) & 0xf); |
| 2207 | if (s != bak || *s != '0') |
| 2208 | ++s; |
| 2209 | *s = tohex((i >> 8) & 0xf); |
| 2210 | if (s != bak || *s != '0') |
| 2211 | ++s; |
| 2212 | *s = tohex((i >> 4) & 0xf); |
| 2213 | if (s != bak || *s != '0') |
| 2214 | ++s; |
| 2215 | *s = tohex(i & 0xf); |
| 2216 | return s - bak + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | } |
| 2218 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2219 | static unsigned int fmt_ip6(char *s, const char ip[16]) |
| 2220 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | unsigned int len; |
| 2222 | unsigned int i; |
| 2223 | unsigned int temp; |
| 2224 | unsigned int compressing; |
| 2225 | int j; |
| 2226 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2227 | len = 0; |
| 2228 | compressing = 0; |
| 2229 | for (j = 0; j < 16; j += 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | |
| 2231 | #ifdef V4MAPPEDPREFIX |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2232 | if (j == 12 && !memcmp(ip, V4mappedprefix, 12)) { |
| 2233 | inet_ntoa_r(*(struct in_addr *)(ip + 12), s); |
| 2234 | temp = strlen(s); |
| 2235 | return len + temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | } |
| 2237 | #endif |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2238 | temp = ((unsigned long)(unsigned char)ip[j] << 8) + |
| 2239 | (unsigned long)(unsigned char)ip[j + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | if (temp == 0) { |
| 2241 | if (!compressing) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2242 | compressing = 1; |
| 2243 | if (j == 0) { |
| 2244 | *s++ = ':'; |
| 2245 | ++len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | } |
| 2247 | } |
| 2248 | } else { |
| 2249 | if (compressing) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2250 | compressing = 0; |
| 2251 | *s++ = ':'; |
| 2252 | ++len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2253 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2254 | i = fmt_xlong(s, temp); |
| 2255 | len += i; |
| 2256 | s += i; |
| 2257 | if (j < 14) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | *s++ = ':'; |
| 2259 | ++len; |
| 2260 | } |
| 2261 | } |
| 2262 | } |
| 2263 | if (compressing) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2264 | *s++ = ':'; |
| 2265 | ++len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2267 | *s = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | return len; |
| 2269 | } |
| 2270 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2271 | static struct sk_buff *fill_packet_ipv6(struct net_device *odev, |
| 2272 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | { |
| 2274 | struct sk_buff *skb = NULL; |
| 2275 | __u8 *eth; |
| 2276 | struct udphdr *udph; |
| 2277 | int datalen; |
| 2278 | struct ipv6hdr *iph; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2279 | struct pktgen_hdr *pgh = NULL; |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2280 | |
| 2281 | /* Update any of the values, used when we're incrementing various |
| 2282 | * fields. |
| 2283 | */ |
| 2284 | mod_cur_headers(pkt_dev); |
| 2285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | skb = alloc_skb(pkt_dev->cur_pkt_size + 64 + 16, GFP_ATOMIC); |
| 2287 | if (!skb) { |
| 2288 | sprintf(pkt_dev->result, "No memory"); |
| 2289 | return NULL; |
| 2290 | } |
| 2291 | |
| 2292 | skb_reserve(skb, 16); |
| 2293 | |
| 2294 | /* Reserve for ethernet and IP header */ |
| 2295 | eth = (__u8 *) skb_push(skb, 14); |
| 2296 | iph = (struct ipv6hdr *)skb_put(skb, sizeof(struct ipv6hdr)); |
| 2297 | udph = (struct udphdr *)skb_put(skb, sizeof(struct udphdr)); |
| 2298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | memcpy(eth, pkt_dev->hh, 12); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2300 | *(u16 *) & eth[12] = __constant_htons(ETH_P_IPV6); |
Robert Olsson | 64053be | 2005-06-26 15:27:10 -0700 | [diff] [blame] | 2301 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2302 | datalen = pkt_dev->cur_pkt_size - 14 - sizeof(struct ipv6hdr) - sizeof(struct udphdr); /* Eth + IPh + UDPh */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2303 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2304 | if (datalen < sizeof(struct pktgen_hdr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | datalen = sizeof(struct pktgen_hdr); |
| 2306 | if (net_ratelimit()) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2307 | printk(KERN_INFO "pktgen: increased datalen to %d\n", |
| 2308 | datalen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | udph->source = htons(pkt_dev->cur_udp_src); |
| 2312 | udph->dest = htons(pkt_dev->cur_udp_dst); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2313 | udph->len = htons(datalen + sizeof(struct udphdr)); |
| 2314 | udph->check = 0; /* No checksum */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2316 | *(u32 *) iph = __constant_htonl(0x60000000); /* Version + flow */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | |
| 2318 | iph->hop_limit = 32; |
| 2319 | |
| 2320 | iph->payload_len = htons(sizeof(struct udphdr) + datalen); |
| 2321 | iph->nexthdr = IPPROTO_UDP; |
| 2322 | |
| 2323 | ipv6_addr_copy(&iph->daddr, &pkt_dev->cur_in6_daddr); |
| 2324 | ipv6_addr_copy(&iph->saddr, &pkt_dev->cur_in6_saddr); |
| 2325 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2326 | skb->mac.raw = ((u8 *) iph) - 14; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | skb->protocol = __constant_htons(ETH_P_IPV6); |
| 2328 | skb->dev = odev; |
| 2329 | skb->pkt_type = PACKET_HOST; |
| 2330 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2331 | if (pkt_dev->nfrags <= 0) |
| 2332 | pgh = (struct pktgen_hdr *)skb_put(skb, datalen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | else { |
| 2334 | int frags = pkt_dev->nfrags; |
| 2335 | int i; |
| 2336 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2337 | pgh = (struct pktgen_hdr *)(((char *)(udph)) + 8); |
| 2338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | if (frags > MAX_SKB_FRAGS) |
| 2340 | frags = MAX_SKB_FRAGS; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2341 | if (datalen > frags * PAGE_SIZE) { |
| 2342 | skb_put(skb, datalen - frags * PAGE_SIZE); |
| 2343 | datalen = frags * PAGE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2344 | } |
| 2345 | |
| 2346 | i = 0; |
| 2347 | while (datalen > 0) { |
| 2348 | struct page *page = alloc_pages(GFP_KERNEL, 0); |
| 2349 | skb_shinfo(skb)->frags[i].page = page; |
| 2350 | skb_shinfo(skb)->frags[i].page_offset = 0; |
| 2351 | skb_shinfo(skb)->frags[i].size = |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2352 | (datalen < PAGE_SIZE ? datalen : PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | datalen -= skb_shinfo(skb)->frags[i].size; |
| 2354 | skb->len += skb_shinfo(skb)->frags[i].size; |
| 2355 | skb->data_len += skb_shinfo(skb)->frags[i].size; |
| 2356 | i++; |
| 2357 | skb_shinfo(skb)->nr_frags = i; |
| 2358 | } |
| 2359 | |
| 2360 | while (i < frags) { |
| 2361 | int rem; |
| 2362 | |
| 2363 | if (i == 0) |
| 2364 | break; |
| 2365 | |
| 2366 | rem = skb_shinfo(skb)->frags[i - 1].size / 2; |
| 2367 | if (rem == 0) |
| 2368 | break; |
| 2369 | |
| 2370 | skb_shinfo(skb)->frags[i - 1].size -= rem; |
| 2371 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2372 | skb_shinfo(skb)->frags[i] = |
| 2373 | skb_shinfo(skb)->frags[i - 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | get_page(skb_shinfo(skb)->frags[i].page); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2375 | skb_shinfo(skb)->frags[i].page = |
| 2376 | skb_shinfo(skb)->frags[i - 1].page; |
| 2377 | skb_shinfo(skb)->frags[i].page_offset += |
| 2378 | skb_shinfo(skb)->frags[i - 1].size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | skb_shinfo(skb)->frags[i].size = rem; |
| 2380 | i++; |
| 2381 | skb_shinfo(skb)->nr_frags = i; |
| 2382 | } |
| 2383 | } |
| 2384 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2385 | /* Stamp the time, and sequence number, convert them to network byte order */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | /* should we update cloned packets too ? */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2387 | if (pgh) { |
| 2388 | struct timeval timestamp; |
| 2389 | |
| 2390 | pgh->pgh_magic = htonl(PKTGEN_MAGIC); |
| 2391 | pgh->seq_num = htonl(pkt_dev->seq_num); |
| 2392 | |
| 2393 | do_gettimeofday(×tamp); |
| 2394 | pgh->tv_sec = htonl(timestamp.tv_sec); |
| 2395 | pgh->tv_usec = htonl(timestamp.tv_usec); |
| 2396 | } |
| 2397 | pkt_dev->seq_num++; |
| 2398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | return skb; |
| 2400 | } |
| 2401 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2402 | static inline struct sk_buff *fill_packet(struct net_device *odev, |
| 2403 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2405 | if (pkt_dev->flags & F_IPV6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | return fill_packet_ipv6(odev, pkt_dev); |
| 2407 | else |
| 2408 | return fill_packet_ipv4(odev, pkt_dev); |
| 2409 | } |
| 2410 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2411 | static void pktgen_clear_counters(struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2412 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2413 | pkt_dev->seq_num = 1; |
| 2414 | pkt_dev->idle_acc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | pkt_dev->sofar = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2416 | pkt_dev->tx_bytes = 0; |
| 2417 | pkt_dev->errors = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | } |
| 2419 | |
| 2420 | /* Set up structure for sending pkts, clear counters */ |
| 2421 | |
| 2422 | static void pktgen_run(struct pktgen_thread *t) |
| 2423 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2424 | struct pktgen_dev *pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | int started = 0; |
| 2426 | |
| 2427 | PG_DEBUG(printk("pktgen: entering pktgen_run. %p\n", t)); |
| 2428 | |
| 2429 | if_lock(t); |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2430 | list_for_each_entry(pkt_dev, &t->if_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | |
| 2432 | /* |
| 2433 | * setup odev and create initial packet. |
| 2434 | */ |
| 2435 | pktgen_setup_inject(pkt_dev); |
| 2436 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2437 | if (pkt_dev->odev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | pktgen_clear_counters(pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2439 | pkt_dev->running = 1; /* Cranke yeself! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | pkt_dev->skb = NULL; |
| 2441 | pkt_dev->started_at = getCurUs(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2442 | pkt_dev->next_tx_us = getCurUs(); /* Transmit immediately */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | pkt_dev->next_tx_ns = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | strcpy(pkt_dev->result, "Starting"); |
| 2446 | started++; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2447 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | strcpy(pkt_dev->result, "Error starting"); |
| 2449 | } |
| 2450 | if_unlock(t); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2451 | if (started) |
| 2452 | t->control &= ~(T_STOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | } |
| 2454 | |
| 2455 | static void pktgen_stop_all_threads_ifs(void) |
| 2456 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2457 | struct pktgen_thread *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2458 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2459 | PG_DEBUG(printk("pktgen: entering pktgen_stop_all_threads_ifs.\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | |
| 2461 | thread_lock(); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2462 | |
| 2463 | list_for_each_entry(t, &pktgen_threads, th_list) |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2464 | t->control |= T_STOP; |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2465 | |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 2466 | thread_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | } |
| 2468 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2469 | static int thread_is_running(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2471 | struct pktgen_dev *pkt_dev; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2472 | int res = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2474 | list_for_each_entry(pkt_dev, &t->if_list, list) |
| 2475 | if (pkt_dev->running) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | res = 1; |
| 2477 | break; |
| 2478 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2479 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | } |
| 2481 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2482 | static int pktgen_wait_thread_run(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2483 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2484 | if_lock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2485 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2486 | while (thread_is_running(t)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2487 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2488 | if_unlock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2490 | msleep_interruptible(100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2491 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2492 | if (signal_pending(current)) |
| 2493 | goto signal; |
| 2494 | if_lock(t); |
| 2495 | } |
| 2496 | if_unlock(t); |
| 2497 | return 1; |
| 2498 | signal: |
| 2499 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | } |
| 2501 | |
| 2502 | static int pktgen_wait_all_threads_run(void) |
| 2503 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2504 | struct pktgen_thread *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | int sig = 1; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2506 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2507 | thread_lock(); |
| 2508 | |
| 2509 | list_for_each_entry(t, &pktgen_threads, th_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | sig = pktgen_wait_thread_run(t); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2511 | if (sig == 0) |
| 2512 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2513 | } |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2514 | |
| 2515 | if (sig == 0) |
| 2516 | list_for_each_entry(t, &pktgen_threads, th_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | t->control |= (T_STOP); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2518 | |
| 2519 | thread_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | return sig; |
| 2521 | } |
| 2522 | |
| 2523 | static void pktgen_run_all_threads(void) |
| 2524 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2525 | struct pktgen_thread *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | |
| 2527 | PG_DEBUG(printk("pktgen: entering pktgen_run_all_threads.\n")); |
| 2528 | |
| 2529 | thread_lock(); |
| 2530 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2531 | list_for_each_entry(t, &pktgen_threads, th_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | t->control |= (T_RUN); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | thread_unlock(); |
| 2535 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2536 | schedule_timeout_interruptible(msecs_to_jiffies(125)); /* Propagate thread->control */ |
| 2537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2538 | pktgen_wait_all_threads_run(); |
| 2539 | } |
| 2540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2541 | static void show_results(struct pktgen_dev *pkt_dev, int nr_frags) |
| 2542 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2543 | __u64 total_us, bps, mbps, pps, idle; |
| 2544 | char *p = pkt_dev->result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2545 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2546 | total_us = pkt_dev->stopped_at - pkt_dev->started_at; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2547 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2548 | idle = pkt_dev->idle_acc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2549 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2550 | p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n", |
| 2551 | (unsigned long long)total_us, |
| 2552 | (unsigned long long)(total_us - idle), |
| 2553 | (unsigned long long)idle, |
| 2554 | (unsigned long long)pkt_dev->sofar, |
| 2555 | pkt_dev->cur_pkt_size, nr_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2557 | pps = pkt_dev->sofar * USEC_PER_SEC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2559 | while ((total_us >> 32) != 0) { |
| 2560 | pps >>= 1; |
| 2561 | total_us >>= 1; |
| 2562 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2564 | do_div(pps, total_us); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2566 | bps = pps * 8 * pkt_dev->cur_pkt_size; |
| 2567 | |
| 2568 | mbps = bps; |
| 2569 | do_div(mbps, 1000000); |
| 2570 | p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu", |
| 2571 | (unsigned long long)pps, |
| 2572 | (unsigned long long)mbps, |
| 2573 | (unsigned long long)bps, |
| 2574 | (unsigned long long)pkt_dev->errors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2576 | |
| 2577 | /* Set stopped-at timer, remove from running list, do counters & statistics */ |
| 2578 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2579 | static int pktgen_stop_device(struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2581 | 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] | 2582 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2583 | if (!pkt_dev->running) { |
| 2584 | printk("pktgen: interface: %s is already stopped\n", |
| 2585 | pkt_dev->ifname); |
| 2586 | return -EINVAL; |
| 2587 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2589 | pkt_dev->stopped_at = getCurUs(); |
| 2590 | pkt_dev->running = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2591 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2592 | show_results(pkt_dev, nr_frags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2593 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2594 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | } |
| 2596 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2597 | static struct pktgen_dev *next_to_run(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2599 | struct pktgen_dev *pkt_dev, *best = NULL; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2601 | if_lock(t); |
| 2602 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2603 | list_for_each_entry(pkt_dev, &t->if_list, list) { |
| 2604 | if (!pkt_dev->running) |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2605 | continue; |
| 2606 | if (best == NULL) |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2607 | best = pkt_dev; |
| 2608 | else if (pkt_dev->next_tx_us < best->next_tx_us) |
| 2609 | best = pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2610 | } |
| 2611 | if_unlock(t); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2612 | return best; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | } |
| 2614 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2615 | static void pktgen_stop(struct pktgen_thread *t) |
| 2616 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2617 | struct pktgen_dev *pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2619 | PG_DEBUG(printk("pktgen: entering pktgen_stop\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2620 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2621 | if_lock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2623 | list_for_each_entry(pkt_dev, &t->if_list, list) { |
| 2624 | pktgen_stop_device(pkt_dev); |
| 2625 | if (pkt_dev->skb) |
| 2626 | kfree_skb(pkt_dev->skb); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2627 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2628 | pkt_dev->skb = NULL; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2629 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2631 | if_unlock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | } |
| 2633 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2634 | /* |
| 2635 | * one of our devices needs to be removed - find it |
| 2636 | * and remove it |
| 2637 | */ |
| 2638 | static void pktgen_rem_one_if(struct pktgen_thread *t) |
| 2639 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2640 | struct list_head *q, *n; |
| 2641 | struct pktgen_dev *cur; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2642 | |
| 2643 | PG_DEBUG(printk("pktgen: entering pktgen_rem_one_if\n")); |
| 2644 | |
| 2645 | if_lock(t); |
| 2646 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2647 | list_for_each_safe(q, n, &t->if_list) { |
| 2648 | cur = list_entry(q, struct pktgen_dev, list); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2649 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2650 | if (!cur->removal_mark) |
| 2651 | continue; |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2652 | |
| 2653 | if (cur->skb) |
| 2654 | kfree_skb(cur->skb); |
| 2655 | cur->skb = NULL; |
| 2656 | |
| 2657 | pktgen_remove_device(t, cur); |
| 2658 | |
| 2659 | break; |
| 2660 | } |
| 2661 | |
| 2662 | if_unlock(t); |
| 2663 | } |
| 2664 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2665 | static void pktgen_rem_all_ifs(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2667 | struct list_head *q, *n; |
| 2668 | struct pktgen_dev *cur; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2669 | |
| 2670 | /* Remove all devices, free mem */ |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2671 | |
| 2672 | PG_DEBUG(printk("pktgen: entering pktgen_rem_all_ifs\n")); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2673 | if_lock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2675 | list_for_each_safe(q, n, &t->if_list) { |
| 2676 | cur = list_entry(q, struct pktgen_dev, list); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2677 | |
| 2678 | if (cur->skb) |
| 2679 | kfree_skb(cur->skb); |
| 2680 | cur->skb = NULL; |
| 2681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | pktgen_remove_device(t, cur); |
| 2683 | } |
| 2684 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2685 | if_unlock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2686 | } |
| 2687 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2688 | static void pktgen_rem_thread(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2689 | { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2690 | /* Remove from the thread list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 2692 | remove_proc_entry(t->name, pg_proc_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 2694 | thread_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2696 | list_del(&t->th_list); |
| 2697 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2698 | thread_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2699 | } |
| 2700 | |
| 2701 | static __inline__ void pktgen_xmit(struct pktgen_dev *pkt_dev) |
| 2702 | { |
| 2703 | struct net_device *odev = NULL; |
| 2704 | __u64 idle_start = 0; |
| 2705 | int ret; |
| 2706 | |
| 2707 | odev = pkt_dev->odev; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2709 | if (pkt_dev->delay_us || pkt_dev->delay_ns) { |
| 2710 | u64 now; |
| 2711 | |
| 2712 | now = getCurUs(); |
| 2713 | if (now < pkt_dev->next_tx_us) |
| 2714 | spin(pkt_dev, pkt_dev->next_tx_us); |
| 2715 | |
| 2716 | /* This is max DELAY, this has special meaning of |
| 2717 | * "never transmit" |
| 2718 | */ |
| 2719 | if (pkt_dev->delay_us == 0x7FFFFFFF) { |
| 2720 | pkt_dev->next_tx_us = getCurUs() + pkt_dev->delay_us; |
| 2721 | pkt_dev->next_tx_ns = pkt_dev->delay_ns; |
| 2722 | goto out; |
| 2723 | } |
| 2724 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2725 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2726 | if (netif_queue_stopped(odev) || need_resched()) { |
| 2727 | idle_start = getCurUs(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | if (!netif_running(odev)) { |
| 2730 | pktgen_stop_device(pkt_dev); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2731 | if (pkt_dev->skb) |
| 2732 | kfree_skb(pkt_dev->skb); |
| 2733 | pkt_dev->skb = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | goto out; |
| 2735 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2736 | if (need_resched()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | schedule(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | pkt_dev->idle_acc += getCurUs() - idle_start; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2740 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | if (netif_queue_stopped(odev)) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2742 | pkt_dev->next_tx_us = getCurUs(); /* TODO */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | pkt_dev->next_tx_ns = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2744 | goto out; /* Try the next interface */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | } |
| 2746 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | if (pkt_dev->last_ok || !pkt_dev->skb) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2749 | if ((++pkt_dev->clone_count >= pkt_dev->clone_skb) |
| 2750 | || (!pkt_dev->skb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | /* build a new pkt */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2752 | if (pkt_dev->skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2753 | kfree_skb(pkt_dev->skb); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | pkt_dev->skb = fill_packet(odev, pkt_dev); |
| 2756 | if (pkt_dev->skb == NULL) { |
| 2757 | printk("pktgen: ERROR: couldn't allocate skb in fill_packet.\n"); |
| 2758 | schedule(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2759 | pkt_dev->clone_count--; /* back out increment, OOM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | goto out; |
| 2761 | } |
| 2762 | pkt_dev->allocated_skbs++; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2763 | pkt_dev->clone_count = 0; /* reset counter */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | } |
| 2765 | } |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | spin_lock_bh(&odev->xmit_lock); |
| 2768 | if (!netif_queue_stopped(odev)) { |
| 2769 | |
| 2770 | atomic_inc(&(pkt_dev->skb->users)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2771 | retry_now: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | ret = odev->hard_start_xmit(pkt_dev->skb, odev); |
| 2773 | if (likely(ret == NETDEV_TX_OK)) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2774 | pkt_dev->last_ok = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | pkt_dev->sofar++; |
| 2776 | pkt_dev->seq_num++; |
| 2777 | pkt_dev->tx_bytes += pkt_dev->cur_pkt_size; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2778 | |
| 2779 | } else if (ret == NETDEV_TX_LOCKED |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | && (odev->features & NETIF_F_LLTX)) { |
| 2781 | cpu_relax(); |
| 2782 | goto retry_now; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2783 | } else { /* Retry it next time */ |
| 2784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2785 | atomic_dec(&(pkt_dev->skb->users)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2786 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | if (debug && net_ratelimit()) |
| 2788 | printk(KERN_INFO "pktgen: Hard xmit error\n"); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2790 | pkt_dev->errors++; |
| 2791 | pkt_dev->last_ok = 0; |
| 2792 | } |
| 2793 | |
| 2794 | pkt_dev->next_tx_us = getCurUs(); |
| 2795 | pkt_dev->next_tx_ns = 0; |
| 2796 | |
| 2797 | pkt_dev->next_tx_us += pkt_dev->delay_us; |
| 2798 | pkt_dev->next_tx_ns += pkt_dev->delay_ns; |
| 2799 | |
| 2800 | if (pkt_dev->next_tx_ns > 1000) { |
| 2801 | pkt_dev->next_tx_us++; |
| 2802 | pkt_dev->next_tx_ns -= 1000; |
| 2803 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2804 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2806 | else { /* Retry it next time */ |
| 2807 | pkt_dev->last_ok = 0; |
| 2808 | pkt_dev->next_tx_us = getCurUs(); /* TODO */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2809 | pkt_dev->next_tx_ns = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | |
| 2812 | spin_unlock_bh(&odev->xmit_lock); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | /* If pkt_dev->count is zero, then run forever */ |
| 2815 | if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) { |
| 2816 | if (atomic_read(&(pkt_dev->skb->users)) != 1) { |
| 2817 | idle_start = getCurUs(); |
| 2818 | while (atomic_read(&(pkt_dev->skb->users)) != 1) { |
| 2819 | if (signal_pending(current)) { |
| 2820 | break; |
| 2821 | } |
| 2822 | schedule(); |
| 2823 | } |
| 2824 | pkt_dev->idle_acc += getCurUs() - idle_start; |
| 2825 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2827 | /* Done with this */ |
| 2828 | pktgen_stop_device(pkt_dev); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2829 | if (pkt_dev->skb) |
| 2830 | kfree_skb(pkt_dev->skb); |
| 2831 | pkt_dev->skb = NULL; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2832 | } |
| 2833 | out:; |
| 2834 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | |
| 2836 | /* |
| 2837 | * Main loop of the thread goes here |
| 2838 | */ |
| 2839 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2840 | static void pktgen_thread_worker(struct pktgen_thread *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | { |
| 2842 | DEFINE_WAIT(wait); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2843 | struct pktgen_dev *pkt_dev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 | int cpu = t->cpu; |
| 2845 | sigset_t tmpsig; |
| 2846 | u32 max_before_softirq; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2847 | u32 tx_since_softirq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | |
| 2849 | daemonize("pktgen/%d", cpu); |
| 2850 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2851 | /* Block all signals except SIGKILL, SIGSTOP and SIGTERM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2853 | spin_lock_irq(¤t->sighand->siglock); |
| 2854 | tmpsig = current->blocked; |
| 2855 | siginitsetinv(¤t->blocked, |
| 2856 | sigmask(SIGKILL) | sigmask(SIGSTOP) | sigmask(SIGTERM)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2858 | recalc_sigpending(); |
| 2859 | spin_unlock_irq(¤t->sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | |
| 2861 | /* Migrate to the right CPU */ |
| 2862 | set_cpus_allowed(current, cpumask_of_cpu(cpu)); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2863 | if (smp_processor_id() != cpu) |
| 2864 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | |
| 2866 | init_waitqueue_head(&t->queue); |
| 2867 | |
| 2868 | t->control &= ~(T_TERMINATE); |
| 2869 | t->control &= ~(T_RUN); |
| 2870 | t->control &= ~(T_STOP); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2871 | t->control &= ~(T_REMDEVALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | t->control &= ~(T_REMDEV); |
| 2873 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2874 | t->pid = current->pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2876 | PG_DEBUG(printk("pktgen: starting pktgen/%d: pid=%d\n", cpu, current->pid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | |
| 2878 | max_before_softirq = t->max_before_softirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2880 | __set_current_state(TASK_INTERRUPTIBLE); |
| 2881 | mb(); |
| 2882 | |
| 2883 | while (1) { |
| 2884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | __set_current_state(TASK_RUNNING); |
| 2886 | |
| 2887 | /* |
| 2888 | * Get next dev to xmit -- if any. |
| 2889 | */ |
| 2890 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2891 | pkt_dev = next_to_run(t); |
| 2892 | |
| 2893 | if (pkt_dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | |
| 2895 | pktgen_xmit(pkt_dev); |
| 2896 | |
| 2897 | /* |
| 2898 | * We like to stay RUNNING but must also give |
| 2899 | * others fair share. |
| 2900 | */ |
| 2901 | |
| 2902 | tx_since_softirq += pkt_dev->last_ok; |
| 2903 | |
| 2904 | if (tx_since_softirq > max_before_softirq) { |
| 2905 | if (local_softirq_pending()) |
| 2906 | do_softirq(); |
| 2907 | tx_since_softirq = 0; |
| 2908 | } |
| 2909 | } else { |
| 2910 | prepare_to_wait(&(t->queue), &wait, TASK_INTERRUPTIBLE); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2911 | schedule_timeout(HZ / 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2912 | finish_wait(&(t->queue), &wait); |
| 2913 | } |
| 2914 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2915 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | * Back from sleep, either due to the timeout or signal. |
| 2917 | * We check if we have any "posted" work for us. |
| 2918 | */ |
| 2919 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2920 | if (t->control & T_TERMINATE || signal_pending(current)) |
| 2921 | /* we received a request to terminate ourself */ |
| 2922 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2924 | if (t->control & T_STOP) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | pktgen_stop(t); |
| 2926 | t->control &= ~(T_STOP); |
| 2927 | } |
| 2928 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2929 | if (t->control & T_RUN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2930 | pktgen_run(t); |
| 2931 | t->control &= ~(T_RUN); |
| 2932 | } |
| 2933 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2934 | if (t->control & T_REMDEVALL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | pktgen_rem_all_ifs(t); |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2936 | t->control &= ~(T_REMDEVALL); |
| 2937 | } |
| 2938 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2939 | if (t->control & T_REMDEV) { |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 2940 | pktgen_rem_one_if(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | t->control &= ~(T_REMDEV); |
| 2942 | } |
| 2943 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2944 | if (need_resched()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | schedule(); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2946 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2948 | PG_DEBUG(printk("pktgen: %s stopping all device\n", t->name)); |
| 2949 | pktgen_stop(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2951 | PG_DEBUG(printk("pktgen: %s removing all device\n", t->name)); |
| 2952 | pktgen_rem_all_ifs(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2953 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2954 | PG_DEBUG(printk("pktgen: %s removing thread.\n", t->name)); |
| 2955 | pktgen_rem_thread(t); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 2956 | |
| 2957 | t->removed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 | } |
| 2959 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2960 | static struct pktgen_dev *pktgen_find_dev(struct pktgen_thread *t, |
| 2961 | const char *ifname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2962 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2963 | struct pktgen_dev *p, *pkt_dev = NULL; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2964 | if_lock(t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2966 | list_for_each_entry(p, &t->if_list, list) |
| 2967 | if (strncmp(p->ifname, ifname, IFNAMSIZ) == 0) { |
| 2968 | pkt_dev = p; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2969 | break; |
| 2970 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2971 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2972 | if_unlock(t); |
| 2973 | PG_DEBUG(printk("pktgen: find_dev(%s) returning %p\n", ifname, pkt_dev)); |
| 2974 | return pkt_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2975 | } |
| 2976 | |
| 2977 | /* |
| 2978 | * Adds a dev at front of if_list. |
| 2979 | */ |
| 2980 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2981 | static int add_dev_to_thread(struct pktgen_thread *t, |
| 2982 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | { |
| 2984 | int rv = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2986 | if_lock(t); |
| 2987 | |
| 2988 | if (pkt_dev->pg_thread) { |
| 2989 | printk("pktgen: ERROR: already assigned to a thread.\n"); |
| 2990 | rv = -EBUSY; |
| 2991 | goto out; |
| 2992 | } |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 2993 | |
| 2994 | list_add(&pkt_dev->list, &t->if_list); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2995 | pkt_dev->pg_thread = t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2996 | pkt_dev->running = 0; |
| 2997 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 2998 | out: |
| 2999 | if_unlock(t); |
| 3000 | return rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3001 | } |
| 3002 | |
| 3003 | /* Called under thread lock */ |
| 3004 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3005 | static int pktgen_add_device(struct pktgen_thread *t, const char *ifname) |
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 | struct pktgen_dev *pkt_dev; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3008 | struct proc_dir_entry *pe; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3009 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3010 | /* We don't allow a device to be on several threads */ |
| 3011 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3012 | pkt_dev = __pktgen_NN_threads(ifname, FIND); |
| 3013 | if (pkt_dev) { |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3014 | printk("pktgen: ERROR: interface already used.\n"); |
| 3015 | return -EBUSY; |
| 3016 | } |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3017 | |
| 3018 | pkt_dev = kzalloc(sizeof(struct pktgen_dev), GFP_KERNEL); |
| 3019 | if (!pkt_dev) |
| 3020 | return -ENOMEM; |
| 3021 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3022 | pkt_dev->flows = vmalloc(MAX_CFLOWS * sizeof(struct flow_state)); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3023 | if (pkt_dev->flows == NULL) { |
| 3024 | kfree(pkt_dev); |
| 3025 | return -ENOMEM; |
| 3026 | } |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3027 | memset(pkt_dev->flows, 0, MAX_CFLOWS * sizeof(struct flow_state)); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3028 | |
Arthur Kepner | 95ed63f | 2006-03-20 21:26:56 -0800 | [diff] [blame] | 3029 | pkt_dev->removal_mark = 0; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3030 | pkt_dev->min_pkt_size = ETH_ZLEN; |
| 3031 | pkt_dev->max_pkt_size = ETH_ZLEN; |
| 3032 | pkt_dev->nfrags = 0; |
| 3033 | pkt_dev->clone_skb = pg_clone_skb_d; |
| 3034 | pkt_dev->delay_us = pg_delay_d / 1000; |
| 3035 | pkt_dev->delay_ns = pg_delay_d % 1000; |
| 3036 | pkt_dev->count = pg_count_d; |
| 3037 | pkt_dev->sofar = 0; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3038 | pkt_dev->udp_src_min = 9; /* sink port */ |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3039 | pkt_dev->udp_src_max = 9; |
| 3040 | pkt_dev->udp_dst_min = 9; |
| 3041 | pkt_dev->udp_dst_max = 9; |
| 3042 | |
| 3043 | strncpy(pkt_dev->ifname, ifname, IFNAMSIZ); |
| 3044 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3045 | if (!pktgen_setup_dev(pkt_dev)) { |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3046 | printk("pktgen: ERROR: pktgen_setup_dev failed.\n"); |
| 3047 | if (pkt_dev->flows) |
| 3048 | vfree(pkt_dev->flows); |
| 3049 | kfree(pkt_dev); |
| 3050 | return -ENODEV; |
| 3051 | } |
| 3052 | |
| 3053 | pe = create_proc_entry(ifname, 0600, pg_proc_dir); |
| 3054 | if (!pe) { |
| 3055 | printk("pktgen: cannot create %s/%s procfs entry.\n", |
| 3056 | PG_PROC_DIR, ifname); |
| 3057 | if (pkt_dev->flows) |
| 3058 | vfree(pkt_dev->flows); |
| 3059 | kfree(pkt_dev); |
| 3060 | return -EINVAL; |
| 3061 | } |
| 3062 | pe->proc_fops = &pktgen_if_fops; |
| 3063 | pe->data = pkt_dev; |
| 3064 | |
| 3065 | return add_dev_to_thread(t, pkt_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | } |
| 3067 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3068 | static struct pktgen_thread *__init pktgen_find_thread(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3070 | struct pktgen_thread *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3071 | |
Stephen Hemminger | b4099fa | 2005-10-14 15:32:22 -0700 | [diff] [blame] | 3072 | thread_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3073 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3074 | list_for_each_entry(t, &pktgen_threads, th_list) |
| 3075 | if (strcmp(t->name, name) == 0) { |
| 3076 | thread_unlock(); |
| 3077 | return t; |
| 3078 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3080 | thread_unlock(); |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3081 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | } |
| 3083 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3084 | static int __init pktgen_create_thread(const char *name, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | { |
Luiz Capitulino | 12e1872 | 2006-03-20 22:17:00 -0800 | [diff] [blame] | 3086 | int err; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3087 | struct pktgen_thread *t = NULL; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3088 | struct proc_dir_entry *pe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3090 | if (strlen(name) > 31) { |
| 3091 | printk("pktgen: ERROR: Thread name cannot be more than 31 characters.\n"); |
| 3092 | return -EINVAL; |
| 3093 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3094 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3095 | if (pktgen_find_thread(name)) { |
| 3096 | printk("pktgen: ERROR: thread: %s already exists\n", name); |
| 3097 | return -EINVAL; |
| 3098 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3099 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3100 | t = kzalloc(sizeof(struct pktgen_thread), GFP_KERNEL); |
| 3101 | if (!t) { |
| 3102 | printk("pktgen: ERROR: out of memory, can't create new thread.\n"); |
| 3103 | return -ENOMEM; |
| 3104 | } |
| 3105 | |
| 3106 | strcpy(t->name, name); |
| 3107 | spin_lock_init(&t->if_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3108 | t->cpu = cpu; |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3109 | |
| 3110 | pe = create_proc_entry(t->name, 0600, pg_proc_dir); |
| 3111 | if (!pe) { |
| 3112 | printk("pktgen: cannot create %s/%s procfs entry.\n", |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3113 | PG_PROC_DIR, t->name); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3114 | kfree(t); |
| 3115 | return -EINVAL; |
| 3116 | } |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3117 | |
| 3118 | pe->proc_fops = &pktgen_thread_fops; |
| 3119 | pe->data = t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 3121 | INIT_LIST_HEAD(&t->if_list); |
| 3122 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3123 | list_add_tail(&t->th_list, &pktgen_threads); |
| 3124 | |
| 3125 | t->removed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3126 | |
Luiz Capitulino | 12e1872 | 2006-03-20 22:17:00 -0800 | [diff] [blame] | 3127 | err = kernel_thread((void *)pktgen_thread_worker, (void *)t, |
| 3128 | CLONE_FS | CLONE_FILES | CLONE_SIGHAND); |
| 3129 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3130 | printk("pktgen: kernel_thread() failed for cpu %d\n", t->cpu); |
Luiz Capitulino | 12e1872 | 2006-03-20 22:17:00 -0800 | [diff] [blame] | 3131 | remove_proc_entry(t->name, pg_proc_dir); |
| 3132 | list_del(&t->th_list); |
| 3133 | kfree(t); |
| 3134 | return err; |
| 3135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | |
| 3137 | return 0; |
| 3138 | } |
| 3139 | |
| 3140 | /* |
| 3141 | * Removes a device from the thread if_list. |
| 3142 | */ |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3143 | static void _rem_dev_from_if_list(struct pktgen_thread *t, |
| 3144 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3145 | { |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 3146 | struct list_head *q, *n; |
| 3147 | struct pktgen_dev *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3148 | |
Luiz Capitulino | c26a801 | 2006-03-20 22:18:16 -0800 | [diff] [blame^] | 3149 | list_for_each_safe(q, n, &t->if_list) { |
| 3150 | p = list_entry(q, struct pktgen_dev, list); |
| 3151 | if (p == pkt_dev) |
| 3152 | list_del(&p->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3153 | } |
| 3154 | } |
| 3155 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3156 | static int pktgen_remove_device(struct pktgen_thread *t, |
| 3157 | struct pktgen_dev *pkt_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3158 | { |
| 3159 | |
| 3160 | PG_DEBUG(printk("pktgen: remove_device pkt_dev=%p\n", pkt_dev)); |
| 3161 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3162 | if (pkt_dev->running) { |
| 3163 | printk("pktgen:WARNING: trying to remove a running interface, stopping it now.\n"); |
| 3164 | pktgen_stop_device(pkt_dev); |
| 3165 | } |
| 3166 | |
| 3167 | /* Dis-associate from the interface */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3168 | |
| 3169 | if (pkt_dev->odev) { |
| 3170 | dev_put(pkt_dev->odev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3171 | pkt_dev->odev = NULL; |
| 3172 | } |
| 3173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3174 | /* And update the thread if_list */ |
| 3175 | |
| 3176 | _rem_dev_from_if_list(t, pkt_dev); |
| 3177 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3178 | /* Clean up proc file system */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3180 | remove_proc_entry(pkt_dev->ifname, pg_proc_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | |
| 3182 | if (pkt_dev->flows) |
| 3183 | vfree(pkt_dev->flows); |
| 3184 | kfree(pkt_dev); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3185 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3186 | } |
| 3187 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3188 | static int __init pg_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | { |
| 3190 | int cpu; |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3191 | struct proc_dir_entry *pe; |
| 3192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3193 | printk(version); |
| 3194 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3195 | pg_proc_dir = proc_mkdir(PG_PROC_DIR, proc_net); |
| 3196 | if (!pg_proc_dir) |
| 3197 | return -ENODEV; |
| 3198 | pg_proc_dir->owner = THIS_MODULE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3199 | |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3200 | pe = create_proc_entry(PGCTRL, 0600, pg_proc_dir); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3201 | if (pe == NULL) { |
| 3202 | printk("pktgen: ERROR: cannot create %s procfs entry.\n", |
| 3203 | PGCTRL); |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3204 | proc_net_remove(PG_PROC_DIR); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3205 | return -EINVAL; |
| 3206 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3208 | pe->proc_fops = &pktgen_fops; |
| 3209 | pe->data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | |
| 3211 | /* Register us to receive netdevice events */ |
| 3212 | register_netdevice_notifier(&pktgen_notifier_block); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3213 | |
John Hawkes | 670c02c | 2005-10-13 09:30:31 -0700 | [diff] [blame] | 3214 | for_each_online_cpu(cpu) { |
Luiz Capitulino | 8024bb2 | 2006-03-20 22:17:55 -0800 | [diff] [blame] | 3215 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3216 | char buf[30]; |
| 3217 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3218 | sprintf(buf, "kpktgend_%i", cpu); |
Luiz Capitulino | 8024bb2 | 2006-03-20 22:17:55 -0800 | [diff] [blame] | 3219 | err = pktgen_create_thread(buf, cpu); |
| 3220 | if (err) |
| 3221 | printk("pktgen: WARNING: Cannot create thread for cpu %d (%d)\n", |
| 3222 | cpu, err); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3223 | } |
Luiz Capitulino | 8024bb2 | 2006-03-20 22:17:55 -0800 | [diff] [blame] | 3224 | |
| 3225 | if (list_empty(&pktgen_threads)) { |
| 3226 | printk("pktgen: ERROR: Initialization failed for all threads\n"); |
| 3227 | unregister_netdevice_notifier(&pktgen_notifier_block); |
| 3228 | remove_proc_entry(PGCTRL, pg_proc_dir); |
| 3229 | proc_net_remove(PG_PROC_DIR); |
| 3230 | return -ENODEV; |
| 3231 | } |
| 3232 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3233 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3234 | } |
| 3235 | |
| 3236 | static void __exit pg_cleanup(void) |
| 3237 | { |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3238 | struct pktgen_thread *t; |
| 3239 | struct list_head *q, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | wait_queue_head_t queue; |
| 3241 | init_waitqueue_head(&queue); |
| 3242 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3243 | /* Stop all interfaces & threads */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3245 | list_for_each_safe(q, n, &pktgen_threads) { |
| 3246 | t = list_entry(q, struct pktgen_thread, th_list); |
| 3247 | t->control |= (T_TERMINATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3248 | |
Luiz Capitulino | cdcdbe0 | 2006-03-20 22:16:40 -0800 | [diff] [blame] | 3249 | wait_event_interruptible_timeout(queue, (t->removed == 1), HZ); |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3251 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3252 | /* Un-register us from receiving netdevice events */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | unregister_netdevice_notifier(&pktgen_notifier_block); |
| 3254 | |
Luiz Capitulino | 222f180 | 2006-03-20 22:16:13 -0800 | [diff] [blame] | 3255 | /* Clean up proc file system */ |
Stephen Hemminger | d50a6b56 | 2005-10-14 15:42:33 -0700 | [diff] [blame] | 3256 | remove_proc_entry(PGCTRL, pg_proc_dir); |
| 3257 | proc_net_remove(PG_PROC_DIR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3258 | } |
| 3259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | module_init(pg_init); |
| 3261 | module_exit(pg_cleanup); |
| 3262 | |
| 3263 | MODULE_AUTHOR("Robert Olsson <robert.olsson@its.uu.se"); |
| 3264 | MODULE_DESCRIPTION("Packet Generator tool"); |
| 3265 | MODULE_LICENSE("GPL"); |
| 3266 | module_param(pg_count_d, int, 0); |
| 3267 | module_param(pg_delay_d, int, 0); |
| 3268 | module_param(pg_clone_skb_d, int, 0); |
| 3269 | module_param(debug, int, 0); |