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