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