ovs-ofctl: Adding support for table ID.
[sliver-openvswitch.git] / datapath / datapath.c
1 /*
2  * Copyright (c) 2007, 2008, 2009, 2010 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 /* Functions for managing the dp interface/device. */
10
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/fs.h>
14 #include <linux/if_arp.h>
15 #include <linux/if_vlan.h>
16 #include <linux/in.h>
17 #include <linux/ip.h>
18 #include <linux/delay.h>
19 #include <linux/time.h>
20 #include <linux/etherdevice.h>
21 #include <linux/kernel.h>
22 #include <linux/kthread.h>
23 #include <linux/mutex.h>
24 #include <linux/percpu.h>
25 #include <linux/rcupdate.h>
26 #include <linux/tcp.h>
27 #include <linux/udp.h>
28 #include <linux/version.h>
29 #include <linux/ethtool.h>
30 #include <linux/random.h>
31 #include <linux/wait.h>
32 #include <asm/system.h>
33 #include <asm/div64.h>
34 #include <asm/bug.h>
35 #include <linux/highmem.h>
36 #include <linux/netfilter_bridge.h>
37 #include <linux/netfilter_ipv4.h>
38 #include <linux/inetdevice.h>
39 #include <linux/list.h>
40 #include <linux/rculist.h>
41 #include <linux/workqueue.h>
42 #include <linux/dmi.h>
43 #include <net/inet_ecn.h>
44 #include <linux/compat.h>
45
46 #include "openvswitch/xflow.h"
47 #include "datapath.h"
48 #include "actions.h"
49 #include "flow.h"
50 #include "xflow-compat.h"
51 #include "table.h"
52 #include "vport-internal_dev.h"
53
54 #include "compat.h"
55
56
57 int (*dp_ioctl_hook)(struct net_device *dev, struct ifreq *rq, int cmd);
58 EXPORT_SYMBOL(dp_ioctl_hook);
59
60 /* Datapaths.  Protected on the read side by rcu_read_lock, on the write side
61  * by dp_mutex.
62  *
63  * dp_mutex nests inside the RTNL lock: if you need both you must take the RTNL
64  * lock first.
65  *
66  * It is safe to access the datapath and dp_port structures with just
67  * dp_mutex.
68  */
69 static struct datapath *dps[XFLOW_MAX];
70 static DEFINE_MUTEX(dp_mutex);
71
72 /* Number of milliseconds between runs of the maintenance thread. */
73 #define MAINT_SLEEP_MSECS 1000
74
75 static int new_dp_port(struct datapath *, struct xflow_port *, int port_no);
76
77 /* Must be called with rcu_read_lock or dp_mutex. */
78 struct datapath *get_dp(int dp_idx)
79 {
80         if (dp_idx < 0 || dp_idx >= XFLOW_MAX)
81                 return NULL;
82         return rcu_dereference(dps[dp_idx]);
83 }
84 EXPORT_SYMBOL_GPL(get_dp);
85
86 static struct datapath *get_dp_locked(int dp_idx)
87 {
88         struct datapath *dp;
89
90         mutex_lock(&dp_mutex);
91         dp = get_dp(dp_idx);
92         if (dp)
93                 mutex_lock(&dp->mutex);
94         mutex_unlock(&dp_mutex);
95         return dp;
96 }
97
98 /* Must be called with rcu_read_lock or RTNL lock. */
99 const char *dp_name(const struct datapath *dp)
100 {
101         return vport_get_name(dp->ports[XFLOWP_LOCAL]->vport);
102 }
103
104 static inline size_t br_nlmsg_size(void)
105 {
106         return NLMSG_ALIGN(sizeof(struct ifinfomsg))
107                + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
108                + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
109                + nla_total_size(4) /* IFLA_MASTER */
110                + nla_total_size(4) /* IFLA_MTU */
111                + nla_total_size(4) /* IFLA_LINK */
112                + nla_total_size(1); /* IFLA_OPERSTATE */
113 }
114
115 static int dp_fill_ifinfo(struct sk_buff *skb,
116                           const struct dp_port *port,
117                           int event, unsigned int flags)
118 {
119         const struct datapath *dp = port->dp;
120         int ifindex = vport_get_ifindex(port->vport);
121         int iflink = vport_get_iflink(port->vport);
122         struct ifinfomsg *hdr;
123         struct nlmsghdr *nlh;
124
125         if (ifindex < 0)
126                 return ifindex;
127
128         if (iflink < 0)
129                 return iflink;
130
131         nlh = nlmsg_put(skb, 0, 0, event, sizeof(*hdr), flags);
132         if (nlh == NULL)
133                 return -EMSGSIZE;
134
135         hdr = nlmsg_data(nlh);
136         hdr->ifi_family = AF_BRIDGE;
137         hdr->__ifi_pad = 0;
138         hdr->ifi_type = ARPHRD_ETHER;
139         hdr->ifi_index = ifindex;
140         hdr->ifi_flags = vport_get_flags(port->vport);
141         hdr->ifi_change = 0;
142
143         NLA_PUT_STRING(skb, IFLA_IFNAME, vport_get_name(port->vport));
144         NLA_PUT_U32(skb, IFLA_MASTER, vport_get_ifindex(dp->ports[XFLOWP_LOCAL]->vport));
145         NLA_PUT_U32(skb, IFLA_MTU, vport_get_mtu(port->vport));
146 #ifdef IFLA_OPERSTATE
147         NLA_PUT_U8(skb, IFLA_OPERSTATE,
148                    vport_is_running(port->vport)
149                         ? vport_get_operstate(port->vport)
150                         : IF_OPER_DOWN);
151 #endif
152
153         NLA_PUT(skb, IFLA_ADDRESS, ETH_ALEN,
154                                         vport_get_addr(port->vport));
155
156         if (ifindex != iflink)
157                 NLA_PUT_U32(skb, IFLA_LINK,iflink);
158
159         return nlmsg_end(skb, nlh);
160
161 nla_put_failure:
162         nlmsg_cancel(skb, nlh);
163         return -EMSGSIZE;
164 }
165
166 static void dp_ifinfo_notify(int event, struct dp_port *port)
167 {
168         struct sk_buff *skb;
169         int err = -ENOBUFS;
170
171         skb = nlmsg_new(br_nlmsg_size(), GFP_KERNEL);
172         if (skb == NULL)
173                 goto errout;
174
175         err = dp_fill_ifinfo(skb, port, event, 0);
176         if (err < 0) {
177                 /* -EMSGSIZE implies BUG in br_nlmsg_size() */
178                 WARN_ON(err == -EMSGSIZE);
179                 kfree_skb(skb);
180                 goto errout;
181         }
182         rtnl_notify(skb, &init_net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
183         return;
184 errout:
185         if (err < 0)
186                 rtnl_set_sk_err(&init_net, RTNLGRP_LINK, err);
187 }
188
189 static void release_dp(struct kobject *kobj)
190 {
191         struct datapath *dp = container_of(kobj, struct datapath, ifobj);
192         kfree(dp);
193 }
194
195 static struct kobj_type dp_ktype = {
196         .release = release_dp
197 };
198
199 static int create_dp(int dp_idx, const char __user *devnamep)
200 {
201         struct xflow_port internal_dev_port;
202         char devname[IFNAMSIZ];
203         struct datapath *dp;
204         int err;
205         int i;
206
207         if (devnamep) {
208                 int retval = strncpy_from_user(devname, devnamep, IFNAMSIZ);
209                 if (retval < 0) {
210                         err = -EFAULT;
211                         goto err;
212                 } else if (retval >= IFNAMSIZ) {
213                         err = -ENAMETOOLONG;
214                         goto err;
215                 }
216         } else {
217                 snprintf(devname, sizeof devname, "of%d", dp_idx);
218         }
219
220         rtnl_lock();
221         mutex_lock(&dp_mutex);
222         err = -ENODEV;
223         if (!try_module_get(THIS_MODULE))
224                 goto err_unlock;
225
226         /* Exit early if a datapath with that number already exists.
227          * (We don't use -EEXIST because that's ambiguous with 'devname'
228          * conflicting with an existing network device name.) */
229         err = -EBUSY;
230         if (get_dp(dp_idx))
231                 goto err_put_module;
232
233         err = -ENOMEM;
234         dp = kzalloc(sizeof *dp, GFP_KERNEL);
235         if (dp == NULL)
236                 goto err_put_module;
237         INIT_LIST_HEAD(&dp->port_list);
238         mutex_init(&dp->mutex);
239         dp->dp_idx = dp_idx;
240         for (i = 0; i < DP_N_QUEUES; i++)
241                 skb_queue_head_init(&dp->queues[i]);
242         init_waitqueue_head(&dp->waitqueue);
243
244         /* Initialize kobject for bridge.  This will be added as
245          * /sys/class/net/<devname>/brif later, if sysfs is enabled. */
246         dp->ifobj.kset = NULL;
247         kobject_init(&dp->ifobj, &dp_ktype);
248
249         /* Allocate table. */
250         err = -ENOMEM;
251         rcu_assign_pointer(dp->table, tbl_create(0));
252         if (!dp->table)
253                 goto err_free_dp;
254
255         /* Set up our datapath device. */
256         BUILD_BUG_ON(sizeof(internal_dev_port.devname) != sizeof(devname));
257         strcpy(internal_dev_port.devname, devname);
258         internal_dev_port.flags = XFLOW_PORT_INTERNAL;
259         err = new_dp_port(dp, &internal_dev_port, XFLOWP_LOCAL);
260         if (err) {
261                 if (err == -EBUSY)
262                         err = -EEXIST;
263
264                 goto err_destroy_table;
265         }
266
267         dp->drop_frags = 0;
268         dp->stats_percpu = alloc_percpu(struct dp_stats_percpu);
269         if (!dp->stats_percpu)
270                 goto err_destroy_local_port;
271
272         rcu_assign_pointer(dps[dp_idx], dp);
273         mutex_unlock(&dp_mutex);
274         rtnl_unlock();
275
276         dp_sysfs_add_dp(dp);
277
278         return 0;
279
280 err_destroy_local_port:
281         dp_detach_port(dp->ports[XFLOWP_LOCAL], 1);
282 err_destroy_table:
283         tbl_destroy(dp->table, NULL);
284 err_free_dp:
285         kfree(dp);
286 err_put_module:
287         module_put(THIS_MODULE);
288 err_unlock:
289         mutex_unlock(&dp_mutex);
290         rtnl_unlock();
291 err:
292         return err;
293 }
294
295 static void do_destroy_dp(struct datapath *dp)
296 {
297         struct dp_port *p, *n;
298         int i;
299
300         list_for_each_entry_safe (p, n, &dp->port_list, node)
301                 if (p->port_no != XFLOWP_LOCAL)
302                         dp_detach_port(p, 1);
303
304         dp_sysfs_del_dp(dp);
305
306         rcu_assign_pointer(dps[dp->dp_idx], NULL);
307
308         dp_detach_port(dp->ports[XFLOWP_LOCAL], 1);
309
310         tbl_destroy(dp->table, flow_free_tbl);
311
312         for (i = 0; i < DP_N_QUEUES; i++)
313                 skb_queue_purge(&dp->queues[i]);
314         for (i = 0; i < DP_MAX_GROUPS; i++)
315                 kfree(dp->groups[i]);
316         free_percpu(dp->stats_percpu);
317         kobject_put(&dp->ifobj);
318         module_put(THIS_MODULE);
319 }
320
321 static int destroy_dp(int dp_idx)
322 {
323         struct datapath *dp;
324         int err;
325
326         rtnl_lock();
327         mutex_lock(&dp_mutex);
328         dp = get_dp(dp_idx);
329         err = -ENODEV;
330         if (!dp)
331                 goto err_unlock;
332
333         do_destroy_dp(dp);
334         err = 0;
335
336 err_unlock:
337         mutex_unlock(&dp_mutex);
338         rtnl_unlock();
339         return err;
340 }
341
342 static void release_dp_port(struct kobject *kobj)
343 {
344         struct dp_port *p = container_of(kobj, struct dp_port, kobj);
345         kfree(p);
346 }
347
348 static struct kobj_type brport_ktype = {
349 #ifdef CONFIG_SYSFS
350         .sysfs_ops = &brport_sysfs_ops,
351 #endif
352         .release = release_dp_port
353 };
354
355 /* Called with RTNL lock and dp_mutex. */
356 static int new_dp_port(struct datapath *dp, struct xflow_port *xflow_port, int port_no)
357 {
358         struct vport *vport;
359         struct dp_port *p;
360         int err;
361
362         vport = vport_locate(xflow_port->devname);
363         if (!vport) {
364                 vport_lock();
365
366                 if (xflow_port->flags & XFLOW_PORT_INTERNAL)
367                         vport = vport_add(xflow_port->devname, "internal", NULL);
368                 else
369                         vport = vport_add(xflow_port->devname, "netdev", NULL);
370
371                 vport_unlock();
372
373                 if (IS_ERR(vport))
374                         return PTR_ERR(vport);
375         }
376
377         p = kzalloc(sizeof(*p), GFP_KERNEL);
378         if (!p)
379                 return -ENOMEM;
380
381         p->port_no = port_no;
382         p->dp = dp;
383         atomic_set(&p->sflow_pool, 0);
384
385         err = vport_attach(vport, p);
386         if (err) {
387                 kfree(p);
388                 return err;
389         }
390
391         rcu_assign_pointer(dp->ports[port_no], p);
392         list_add_rcu(&p->node, &dp->port_list);
393         dp->n_ports++;
394
395         /* Initialize kobject for bridge.  This will be added as
396          * /sys/class/net/<devname>/brport later, if sysfs is enabled. */
397         p->kobj.kset = NULL;
398         kobject_init(&p->kobj, &brport_ktype);
399
400         dp_ifinfo_notify(RTM_NEWLINK, p);
401
402         return 0;
403 }
404
405 static int attach_port(int dp_idx, struct xflow_port __user *portp)
406 {
407         struct datapath *dp;
408         struct xflow_port port;
409         int port_no;
410         int err;
411
412         err = -EFAULT;
413         if (copy_from_user(&port, portp, sizeof port))
414                 goto out;
415         port.devname[IFNAMSIZ - 1] = '\0';
416
417         rtnl_lock();
418         dp = get_dp_locked(dp_idx);
419         err = -ENODEV;
420         if (!dp)
421                 goto out_unlock_rtnl;
422
423         for (port_no = 1; port_no < DP_MAX_PORTS; port_no++)
424                 if (!dp->ports[port_no])
425                         goto got_port_no;
426         err = -EFBIG;
427         goto out_unlock_dp;
428
429 got_port_no:
430         err = new_dp_port(dp, &port, port_no);
431         if (err)
432                 goto out_unlock_dp;
433
434         set_internal_devs_mtu(dp);
435         dp_sysfs_add_if(dp->ports[port_no]);
436
437         err = put_user(port_no, &portp->port);
438
439 out_unlock_dp:
440         mutex_unlock(&dp->mutex);
441 out_unlock_rtnl:
442         rtnl_unlock();
443 out:
444         return err;
445 }
446
447 int dp_detach_port(struct dp_port *p, int may_delete)
448 {
449         struct vport *vport = p->vport;
450         int err;
451
452         ASSERT_RTNL();
453
454         if (p->port_no != XFLOWP_LOCAL)
455                 dp_sysfs_del_if(p);
456         dp_ifinfo_notify(RTM_DELLINK, p);
457
458         /* First drop references to device. */
459         p->dp->n_ports--;
460         list_del_rcu(&p->node);
461         rcu_assign_pointer(p->dp->ports[p->port_no], NULL);
462
463         err = vport_detach(vport);
464         if (err)
465                 return err;
466
467         /* Then wait until no one is still using it, and destroy it. */
468         synchronize_rcu();
469
470         if (may_delete) {
471                 const char *port_type = vport_get_type(vport);
472
473                 if (!strcmp(port_type, "netdev") || !strcmp(port_type, "internal")) {
474                         vport_lock();
475                         vport_del(vport);
476                         vport_unlock();
477                 }
478         }
479
480         kobject_put(&p->kobj);
481
482         return 0;
483 }
484
485 static int detach_port(int dp_idx, int port_no)
486 {
487         struct dp_port *p;
488         struct datapath *dp;
489         int err;
490
491         err = -EINVAL;
492         if (port_no < 0 || port_no >= DP_MAX_PORTS || port_no == XFLOWP_LOCAL)
493                 goto out;
494
495         rtnl_lock();
496         dp = get_dp_locked(dp_idx);
497         err = -ENODEV;
498         if (!dp)
499                 goto out_unlock_rtnl;
500
501         p = dp->ports[port_no];
502         err = -ENOENT;
503         if (!p)
504                 goto out_unlock_dp;
505
506         err = dp_detach_port(p, 1);
507
508 out_unlock_dp:
509         mutex_unlock(&dp->mutex);
510 out_unlock_rtnl:
511         rtnl_unlock();
512 out:
513         return err;
514 }
515
516 /* Must be called with rcu_read_lock. */
517 void dp_process_received_packet(struct dp_port *p, struct sk_buff *skb)
518 {
519         struct datapath *dp = p->dp;
520         struct dp_stats_percpu *stats;
521         int stats_counter_off;
522         struct xflow_key key;
523         struct tbl_node *flow_node;
524
525         WARN_ON_ONCE(skb_shared(skb));
526         skb_warn_if_lro(skb);
527
528         OVS_CB(skb)->dp_port = p;
529
530         if (flow_extract(skb, p ? p->port_no : XFLOWP_NONE, &key)) {
531                 if (dp->drop_frags) {
532                         kfree_skb(skb);
533                         stats_counter_off = offsetof(struct dp_stats_percpu, n_frags);
534                         goto out;
535                 }
536         }
537
538         flow_node = tbl_lookup(rcu_dereference(dp->table), &key, flow_hash(&key), flow_cmp);
539         if (flow_node) {
540                 struct sw_flow *flow = flow_cast(flow_node);
541                 struct sw_flow_actions *acts = rcu_dereference(flow->sf_acts);
542                 flow_used(flow, skb);
543                 execute_actions(dp, skb, &key, acts->actions, acts->n_actions,
544                                 GFP_ATOMIC);
545                 stats_counter_off = offsetof(struct dp_stats_percpu, n_hit);
546         } else {
547                 stats_counter_off = offsetof(struct dp_stats_percpu, n_missed);
548                 dp_output_control(dp, skb, _XFLOWL_MISS_NR, OVS_CB(skb)->tun_id);
549         }
550
551 out:
552         local_bh_disable();
553         stats = per_cpu_ptr(dp->stats_percpu, smp_processor_id());
554         (*(u64 *)((u8 *)stats + stats_counter_off))++;
555         local_bh_enable();
556 }
557
558 #if defined(CONFIG_XEN) && defined(HAVE_PROTO_DATA_VALID)
559 /* This code is based on skb_checksum_setup() from Xen's net/dev/core.c.  We
560  * can't call this function directly because it isn't exported in all
561  * versions. */
562 int vswitch_skb_checksum_setup(struct sk_buff *skb)
563 {
564         struct iphdr *iph;
565         unsigned char *th;
566         int err = -EPROTO;
567         __u16 csum_start, csum_offset;
568
569         if (!skb->proto_csum_blank)
570                 return 0;
571
572         if (skb->protocol != htons(ETH_P_IP))
573                 goto out;
574
575         if (!pskb_may_pull(skb, skb_network_header(skb) + sizeof(struct iphdr) - skb->data))
576                 goto out;
577
578         iph = ip_hdr(skb);
579         th = skb_network_header(skb) + 4 * iph->ihl;
580
581         csum_start = th - skb->head;
582         switch (iph->protocol) {
583         case IPPROTO_TCP:
584                 csum_offset = offsetof(struct tcphdr, check);
585                 break;
586         case IPPROTO_UDP:
587                 csum_offset = offsetof(struct udphdr, check);
588                 break;
589         default:
590                 if (net_ratelimit())
591                         printk(KERN_ERR "Attempting to checksum a non-"
592                                "TCP/UDP packet, dropping a protocol"
593                                " %d packet", iph->protocol);
594                 goto out;
595         }
596
597         if (!pskb_may_pull(skb, th + csum_offset + 2 - skb->data))
598                 goto out;
599
600         skb->ip_summed = CHECKSUM_PARTIAL;
601         skb->proto_csum_blank = 0;
602
603 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
604         skb->csum_start = csum_start;
605         skb->csum_offset = csum_offset;
606 #else
607         skb_set_transport_header(skb, csum_start - skb_headroom(skb));
608         skb->csum = csum_offset;
609 #endif
610
611         err = 0;
612
613 out:
614         return err;
615 }
616 #endif /* CONFIG_XEN && HAVE_PROTO_DATA_VALID */
617
618  /* Types of checksums that we can receive (these all refer to L4 checksums):
619  * 1. CHECKSUM_NONE: Device that did not compute checksum, contains full
620  *      (though not verified) checksum in packet but not in skb->csum.  Packets
621  *      from the bridge local port will also have this type.
622  * 2. CHECKSUM_COMPLETE (CHECKSUM_HW): Good device that computes checksums,
623  *      also the GRE module.  This is the same as CHECKSUM_NONE, except it has
624  *      a valid skb->csum.  Importantly, both contain a full checksum (not
625  *      verified) in the packet itself.  The only difference is that if the
626  *      packet gets to L4 processing on this machine (not in DomU) we won't
627  *      have to recompute the checksum to verify.  Most hardware devices do not
628  *      produce packets with this type, even if they support receive checksum
629  *      offloading (they produce type #5).
630  * 3. CHECKSUM_PARTIAL (CHECKSUM_HW): Packet without full checksum and needs to
631  *      be computed if it is sent off box.  Unfortunately on earlier kernels,
632  *      this case is impossible to distinguish from #2, despite having opposite
633  *      meanings.  Xen adds an extra field on earlier kernels (see #4) in order
634  *      to distinguish the different states.
635  * 4. CHECKSUM_UNNECESSARY (with proto_csum_blank true): This packet was
636  *      generated locally by a Xen DomU and has a partial checksum.  If it is
637  *      handled on this machine (Dom0 or DomU), then the checksum will not be
638  *      computed.  If it goes off box, the checksum in the packet needs to be
639  *      completed.  Calling skb_checksum_setup converts this to CHECKSUM_HW
640  *      (CHECKSUM_PARTIAL) so that the checksum can be completed.  In later
641  *      kernels, this combination is replaced with CHECKSUM_PARTIAL.
642  * 5. CHECKSUM_UNNECESSARY (with proto_csum_blank false): Packet with a correct
643  *      full checksum or using a protocol without a checksum.  skb->csum is
644  *      undefined.  This is common from devices with receive checksum
645  *      offloading.  This is somewhat similar to CHECKSUM_NONE, except that
646  *      nobody will try to verify the checksum with CHECKSUM_UNNECESSARY.
647  *
648  * Note that on earlier kernels, CHECKSUM_COMPLETE and CHECKSUM_PARTIAL are
649  * both defined as CHECKSUM_HW.  Normally the meaning of CHECKSUM_HW is clear
650  * based on whether it is on the transmit or receive path.  After the datapath
651  * it will be intepreted as CHECKSUM_PARTIAL.  If the packet already has a
652  * checksum, we will panic.  Since we can receive packets with checksums, we
653  * assume that all CHECKSUM_HW packets have checksums and map them to
654  * CHECKSUM_NONE, which has a similar meaning (the it is only different if the
655  * packet is processed by the local IP stack, in which case it will need to
656  * be reverified).  If we receive a packet with CHECKSUM_HW that really means
657  * CHECKSUM_PARTIAL, it will be sent with the wrong checksum.  However, there
658  * shouldn't be any devices that do this with bridging. */
659 void compute_ip_summed(struct sk_buff *skb, bool xmit)
660 {
661         /* For our convenience these defines change repeatedly between kernel
662          * versions, so we can't just copy them over... */
663         switch (skb->ip_summed) {
664         case CHECKSUM_NONE:
665                 OVS_CB(skb)->ip_summed = OVS_CSUM_NONE;
666                 break;
667         case CHECKSUM_UNNECESSARY:
668                 OVS_CB(skb)->ip_summed = OVS_CSUM_UNNECESSARY;
669                 break;
670 #ifdef CHECKSUM_HW
671         /* In theory this could be either CHECKSUM_PARTIAL or CHECKSUM_COMPLETE.
672          * However, on the receive side we should only get CHECKSUM_PARTIAL
673          * packets from Xen, which uses some special fields to represent this
674          * (see below).  Since we can only make one type work, pick the one
675          * that actually happens in practice.
676          *
677          * On the transmit side (basically after skb_checksum_setup()
678          * has been run or on internal dev transmit), packets with
679          * CHECKSUM_COMPLETE aren't generated, so assume CHECKSUM_PARTIAL. */
680         case CHECKSUM_HW:
681                 if (!xmit)
682                         OVS_CB(skb)->ip_summed = OVS_CSUM_COMPLETE;
683                 else
684                         OVS_CB(skb)->ip_summed = OVS_CSUM_PARTIAL;
685
686                 break;
687 #else
688         case CHECKSUM_COMPLETE:
689                 OVS_CB(skb)->ip_summed = OVS_CSUM_COMPLETE;
690                 break;
691         case CHECKSUM_PARTIAL:
692                 OVS_CB(skb)->ip_summed = OVS_CSUM_PARTIAL;
693                 break;
694 #endif
695         default:
696                 printk(KERN_ERR "openvswitch: unknown checksum type %d\n",
697                        skb->ip_summed);
698                 /* None seems the safest... */
699                 OVS_CB(skb)->ip_summed = OVS_CSUM_NONE;
700         }       
701
702 #if defined(CONFIG_XEN) && defined(HAVE_PROTO_DATA_VALID)
703         /* Xen has a special way of representing CHECKSUM_PARTIAL on older
704          * kernels. It should not be set on the transmit path though. */
705         if (skb->proto_csum_blank)
706                 OVS_CB(skb)->ip_summed = OVS_CSUM_PARTIAL;
707
708         WARN_ON_ONCE(skb->proto_csum_blank && xmit);
709 #endif
710 }
711
712 /* This function closely resembles skb_forward_csum() used by the bridge.  It
713  * is slightly different because we are only concerned with bridging and not
714  * other types of forwarding and can get away with slightly more optimal
715  * behavior.*/
716 void forward_ip_summed(struct sk_buff *skb)
717 {
718 #ifdef CHECKSUM_HW
719         if (OVS_CB(skb)->ip_summed == OVS_CSUM_COMPLETE)
720                 skb->ip_summed = CHECKSUM_NONE;
721 #endif
722 }
723
724 /* Append each packet in 'skb' list to 'queue'.  There will be only one packet
725  * unless we broke up a GSO packet. */
726 static int queue_control_packets(struct sk_buff *skb, struct sk_buff_head *queue,
727                                  int queue_no, u32 arg)
728 {
729         struct sk_buff *nskb;
730         int port_no;
731         int err;
732
733         if (OVS_CB(skb)->dp_port)
734                 port_no = OVS_CB(skb)->dp_port->port_no;
735         else
736                 port_no = XFLOWP_LOCAL;
737
738         do {
739                 struct xflow_msg *header;
740
741                 nskb = skb->next;
742                 skb->next = NULL;
743
744                 err = skb_cow(skb, sizeof *header);
745                 if (err)
746                         goto err_kfree_skbs;
747
748                 header = (struct xflow_msg*)__skb_push(skb, sizeof *header);
749                 header->type = queue_no;
750                 header->length = skb->len;
751                 header->port = port_no;
752                 header->reserved = 0;
753                 header->arg = arg;
754                 skb_queue_tail(queue, skb);
755
756                 skb = nskb;
757         } while (skb);
758         return 0;
759
760 err_kfree_skbs:
761         kfree_skb(skb);
762         while ((skb = nskb) != NULL) {
763                 nskb = skb->next;
764                 kfree_skb(skb);
765         }
766         return err;
767 }
768
769 int dp_output_control(struct datapath *dp, struct sk_buff *skb, int queue_no,
770                       u32 arg)
771 {
772         struct dp_stats_percpu *stats;
773         struct sk_buff_head *queue;
774         int err;
775
776         WARN_ON_ONCE(skb_shared(skb));
777         BUG_ON(queue_no != _XFLOWL_MISS_NR && queue_no != _XFLOWL_ACTION_NR && queue_no != _XFLOWL_SFLOW_NR);
778         queue = &dp->queues[queue_no];
779         err = -ENOBUFS;
780         if (skb_queue_len(queue) >= DP_MAX_QUEUE_LEN)
781                 goto err_kfree_skb;
782
783         forward_ip_summed(skb);
784
785         err = vswitch_skb_checksum_setup(skb);
786         if (err)
787                 goto err_kfree_skb;
788
789         /* Break apart GSO packets into their component pieces.  Otherwise
790          * userspace may try to stuff a 64kB packet into a 1500-byte MTU. */
791         if (skb_is_gso(skb)) {
792                 struct sk_buff *nskb = skb_gso_segment(skb, NETIF_F_SG | NETIF_F_HW_CSUM);
793                 if (nskb) {
794                         kfree_skb(skb);
795                         skb = nskb;
796                         if (unlikely(IS_ERR(skb))) {
797                                 err = PTR_ERR(skb);
798                                 goto err;
799                         }
800                 } else {
801                         /* XXX This case might not be possible.  It's hard to
802                          * tell from the skb_gso_segment() code and comment. */
803                 }
804         }
805
806         err = queue_control_packets(skb, queue, queue_no, arg);
807         wake_up_interruptible(&dp->waitqueue);
808         return err;
809
810 err_kfree_skb:
811         kfree_skb(skb);
812 err:
813         local_bh_disable();
814         stats = per_cpu_ptr(dp->stats_percpu, smp_processor_id());
815         stats->n_lost++;
816         local_bh_enable();
817
818         return err;
819 }
820
821 static int flush_flows(struct datapath *dp)
822 {
823         struct tbl *old_table = rcu_dereference(dp->table);
824         struct tbl *new_table;
825
826         new_table = tbl_create(0);
827         if (!new_table)
828                 return -ENOMEM;
829
830         rcu_assign_pointer(dp->table, new_table);
831
832         tbl_deferred_destroy(old_table, flow_free_tbl);
833
834         return 0;
835 }
836
837 static int validate_actions(const struct sw_flow_actions *actions)
838 {
839         unsigned int i;
840
841         for (i = 0; i < actions->n_actions; i++) {
842                 const union xflow_action *a = &actions->actions[i];
843                 __be16 mask;
844
845                 switch (a->type) {
846                 case XFLOWAT_OUTPUT:
847                         if (a->output.port >= DP_MAX_PORTS)
848                                 return -EINVAL;
849                         break;
850
851                 case XFLOWAT_OUTPUT_GROUP:
852                         if (a->output_group.group >= DP_MAX_GROUPS)
853                                 return -EINVAL;
854                         break;
855
856                 case XFLOWAT_SET_DL_TCI:
857                         mask = a->dl_tci.mask;
858                         if (mask != htons(VLAN_VID_MASK) &&
859                             mask != htons(VLAN_PCP_MASK) &&
860                             mask != htons(VLAN_VID_MASK | VLAN_PCP_MASK))
861                                 return -EINVAL;
862                         if (a->dl_tci.tci & ~mask)
863                                 return -EINVAL;
864                         break;
865
866                 case XFLOWAT_SET_NW_TOS:
867                         if (a->nw_tos.nw_tos & INET_ECN_MASK)
868                                 return -EINVAL;
869                         break;
870
871                 default:
872                         if (a->type >= XFLOWAT_N_ACTIONS)
873                                 return -EOPNOTSUPP;
874                         break;
875                 }
876         }
877
878         return 0;
879 }
880
881 static struct sw_flow_actions *get_actions(const struct xflow_flow *flow)
882 {
883         struct sw_flow_actions *actions;
884         int error;
885
886         actions = flow_actions_alloc(flow->n_actions);
887         error = PTR_ERR(actions);
888         if (IS_ERR(actions))
889                 goto error;
890
891         error = -EFAULT;
892         if (copy_from_user(actions->actions, flow->actions,
893                            flow->n_actions * sizeof(union xflow_action)))
894                 goto error_free_actions;
895         error = validate_actions(actions);
896         if (error)
897                 goto error_free_actions;
898
899         return actions;
900
901 error_free_actions:
902         kfree(actions);
903 error:
904         return ERR_PTR(error);
905 }
906
907 static void get_stats(struct sw_flow *flow, struct xflow_flow_stats *stats)
908 {
909         if (flow->used.tv_sec) {
910                 stats->used_sec = flow->used.tv_sec;
911                 stats->used_nsec = flow->used.tv_nsec;
912         } else {
913                 stats->used_sec = 0;
914                 stats->used_nsec = 0;
915         }
916         stats->n_packets = flow->packet_count;
917         stats->n_bytes = flow->byte_count;
918         stats->ip_tos = flow->ip_tos;
919         stats->tcp_flags = flow->tcp_flags;
920         stats->error = 0;
921 }
922
923 static void clear_stats(struct sw_flow *flow)
924 {
925         flow->used.tv_sec = flow->used.tv_nsec = 0;
926         flow->tcp_flags = 0;
927         flow->ip_tos = 0;
928         flow->packet_count = 0;
929         flow->byte_count = 0;
930 }
931
932 static int expand_table(struct datapath *dp)
933 {
934         struct tbl *old_table = rcu_dereference(dp->table);
935         struct tbl *new_table;
936
937         new_table = tbl_expand(old_table);
938         if (IS_ERR(new_table))
939                 return PTR_ERR(new_table);
940
941         rcu_assign_pointer(dp->table, new_table);
942         tbl_deferred_destroy(old_table, NULL);
943
944         return 0;
945 }
946
947 static int do_put_flow(struct datapath *dp, struct xflow_flow_put *uf,
948                        struct xflow_flow_stats *stats)
949 {
950         struct tbl_node *flow_node;
951         struct sw_flow *flow;
952         struct tbl *table;
953         int error;
954
955         table = rcu_dereference(dp->table);
956         flow_node = tbl_lookup(table, &uf->flow.key, flow_hash(&uf->flow.key), flow_cmp);
957         if (!flow_node) {
958                 /* No such flow. */
959                 struct sw_flow_actions *acts;
960
961                 error = -ENOENT;
962                 if (!(uf->flags & XFLOWPF_CREATE))
963                         goto error;
964
965                 /* Expand table, if necessary, to make room. */
966                 if (tbl_count(table) >= tbl_n_buckets(table)) {
967                         error = expand_table(dp);
968                         if (error)
969                                 goto error;
970                         table = rcu_dereference(dp->table);
971                 }
972
973                 /* Allocate flow. */
974                 error = -ENOMEM;
975                 flow = kmem_cache_alloc(flow_cache, GFP_KERNEL);
976                 if (flow == NULL)
977                         goto error;
978                 flow->key = uf->flow.key;
979                 spin_lock_init(&flow->lock);
980                 clear_stats(flow);
981
982                 /* Obtain actions. */
983                 acts = get_actions(&uf->flow);
984                 error = PTR_ERR(acts);
985                 if (IS_ERR(acts))
986                         goto error_free_flow;
987                 rcu_assign_pointer(flow->sf_acts, acts);
988
989                 /* Put flow in bucket. */
990                 error = tbl_insert(table, &flow->tbl_node, flow_hash(&flow->key));
991                 if (error)
992                         goto error_free_flow_acts;
993
994                 memset(stats, 0, sizeof(struct xflow_flow_stats));
995         } else {
996                 /* We found a matching flow. */
997                 struct sw_flow_actions *old_acts, *new_acts;
998
999                 flow = flow_cast(flow_node);
1000
1001                 /* Bail out if we're not allowed to modify an existing flow. */
1002                 error = -EEXIST;
1003                 if (!(uf->flags & XFLOWPF_MODIFY))
1004                         goto error;
1005
1006                 /* Swap actions. */
1007                 new_acts = get_actions(&uf->flow);
1008                 error = PTR_ERR(new_acts);
1009                 if (IS_ERR(new_acts))
1010                         goto error;
1011                 old_acts = rcu_dereference(flow->sf_acts);
1012                 if (old_acts->n_actions != new_acts->n_actions ||
1013                     memcmp(old_acts->actions, new_acts->actions,
1014                            sizeof(union xflow_action) * old_acts->n_actions)) {
1015                         rcu_assign_pointer(flow->sf_acts, new_acts);
1016                         flow_deferred_free_acts(old_acts);
1017                 } else {
1018                         kfree(new_acts);
1019                 }
1020
1021                 /* Fetch stats, then clear them if necessary. */
1022                 spin_lock_bh(&flow->lock);
1023                 get_stats(flow, stats);
1024                 if (uf->flags & XFLOWPF_ZERO_STATS)
1025                         clear_stats(flow);
1026                 spin_unlock_bh(&flow->lock);
1027         }
1028
1029         return 0;
1030
1031 error_free_flow_acts:
1032         kfree(flow->sf_acts);
1033 error_free_flow:
1034         kmem_cache_free(flow_cache, flow);
1035 error:
1036         return error;
1037 }
1038
1039 static int put_flow(struct datapath *dp, struct xflow_flow_put __user *ufp)
1040 {
1041         struct xflow_flow_stats stats;
1042         struct xflow_flow_put uf;
1043         int error;
1044
1045         if (copy_from_user(&uf, ufp, sizeof(struct xflow_flow_put)))
1046                 return -EFAULT;
1047
1048         error = do_put_flow(dp, &uf, &stats);
1049         if (error)
1050                 return error;
1051
1052         if (copy_to_user(&ufp->flow.stats, &stats,
1053                          sizeof(struct xflow_flow_stats)))
1054                 return -EFAULT;
1055
1056         return 0;
1057 }
1058
1059 static int do_answer_query(struct sw_flow *flow, u32 query_flags,
1060                            struct xflow_flow_stats __user *ustats,
1061                            union xflow_action __user *actions,
1062                            u32 __user *n_actionsp)
1063 {
1064         struct sw_flow_actions *sf_acts;
1065         struct xflow_flow_stats stats;
1066         u32 n_actions;
1067
1068         spin_lock_bh(&flow->lock);
1069         get_stats(flow, &stats);
1070         if (query_flags & XFLOWFF_ZERO_TCP_FLAGS)
1071                 flow->tcp_flags = 0;
1072
1073         spin_unlock_bh(&flow->lock);
1074
1075         if (copy_to_user(ustats, &stats, sizeof(struct xflow_flow_stats)) ||
1076             get_user(n_actions, n_actionsp))
1077                 return -EFAULT;
1078
1079         if (!n_actions)
1080                 return 0;
1081
1082         sf_acts = rcu_dereference(flow->sf_acts);
1083         if (put_user(sf_acts->n_actions, n_actionsp) ||
1084             (actions && copy_to_user(actions, sf_acts->actions,
1085                                      sizeof(union xflow_action) *
1086                                      min(sf_acts->n_actions, n_actions))))
1087                 return -EFAULT;
1088
1089         return 0;
1090 }
1091
1092 static int answer_query(struct sw_flow *flow, u32 query_flags,
1093                         struct xflow_flow __user *ufp)
1094 {
1095         union xflow_action *actions;
1096
1097         if (get_user(actions, &ufp->actions))
1098                 return -EFAULT;
1099
1100         return do_answer_query(flow, query_flags,
1101                                &ufp->stats, actions, &ufp->n_actions);
1102 }
1103
1104 static struct sw_flow *do_del_flow(struct datapath *dp, struct xflow_key *key)
1105 {
1106         struct tbl *table = rcu_dereference(dp->table);
1107         struct tbl_node *flow_node;
1108         int error;
1109
1110         flow_node = tbl_lookup(table, key, flow_hash(key), flow_cmp);
1111         if (!flow_node)
1112                 return ERR_PTR(-ENOENT);
1113
1114         error = tbl_remove(table, flow_node);
1115         if (error)
1116                 return ERR_PTR(error);
1117
1118         /* XXX Returned flow_node's statistics might lose a few packets, since
1119          * other CPUs can be using this flow.  We used to synchronize_rcu() to
1120          * make sure that we get completely accurate stats, but that blows our
1121          * performance, badly. */
1122         return flow_cast(flow_node);
1123 }
1124
1125 static int del_flow(struct datapath *dp, struct xflow_flow __user *ufp)
1126 {
1127         struct sw_flow *flow;
1128         struct xflow_flow uf;
1129         int error;
1130
1131         if (copy_from_user(&uf, ufp, sizeof uf))
1132                 return -EFAULT;
1133
1134         flow = do_del_flow(dp, &uf.key);
1135         if (IS_ERR(flow))
1136                 return PTR_ERR(flow);
1137
1138         error = answer_query(flow, 0, ufp);
1139         flow_deferred_free(flow);
1140         return error;
1141 }
1142
1143 static int do_query_flows(struct datapath *dp, const struct xflow_flowvec *flowvec)
1144 {
1145         struct tbl *table = rcu_dereference(dp->table);
1146         u32 i;
1147
1148         for (i = 0; i < flowvec->n_flows; i++) {
1149                 struct xflow_flow __user *ufp = &flowvec->flows[i];
1150                 struct xflow_flow uf;
1151                 struct tbl_node *flow_node;
1152                 int error;
1153
1154                 if (copy_from_user(&uf, ufp, sizeof uf))
1155                         return -EFAULT;
1156
1157                 flow_node = tbl_lookup(table, &uf.key, flow_hash(&uf.key), flow_cmp);
1158                 if (!flow_node)
1159                         error = put_user(ENOENT, &ufp->stats.error);
1160                 else
1161                         error = answer_query(flow_cast(flow_node), uf.flags, ufp);
1162                 if (error)
1163                         return -EFAULT;
1164         }
1165         return flowvec->n_flows;
1166 }
1167
1168 struct list_flows_cbdata {
1169         struct xflow_flow __user *uflows;
1170         u32 n_flows;
1171         u32 listed_flows;
1172 };
1173
1174 static int list_flow(struct tbl_node *node, void *cbdata_)
1175 {
1176         struct sw_flow *flow = flow_cast(node);
1177         struct list_flows_cbdata *cbdata = cbdata_;
1178         struct xflow_flow __user *ufp = &cbdata->uflows[cbdata->listed_flows++];
1179         int error;
1180
1181         if (copy_to_user(&ufp->key, &flow->key, sizeof flow->key))
1182                 return -EFAULT;
1183         error = answer_query(flow, 0, ufp);
1184         if (error)
1185                 return error;
1186
1187         if (cbdata->listed_flows >= cbdata->n_flows)
1188                 return cbdata->listed_flows;
1189         return 0;
1190 }
1191
1192 static int do_list_flows(struct datapath *dp, const struct xflow_flowvec *flowvec)
1193 {
1194         struct list_flows_cbdata cbdata;
1195         int error;
1196
1197         if (!flowvec->n_flows)
1198                 return 0;
1199
1200         cbdata.uflows = flowvec->flows;
1201         cbdata.n_flows = flowvec->n_flows;
1202         cbdata.listed_flows = 0;
1203         error = tbl_foreach(rcu_dereference(dp->table), list_flow, &cbdata);
1204         return error ? error : cbdata.listed_flows;
1205 }
1206
1207 static int do_flowvec_ioctl(struct datapath *dp, unsigned long argp,
1208                             int (*function)(struct datapath *,
1209                                             const struct xflow_flowvec *))
1210 {
1211         struct xflow_flowvec __user *uflowvec;
1212         struct xflow_flowvec flowvec;
1213         int retval;
1214
1215         uflowvec = (struct xflow_flowvec __user *)argp;
1216         if (copy_from_user(&flowvec, uflowvec, sizeof flowvec))
1217                 return -EFAULT;
1218
1219         if (flowvec.n_flows > INT_MAX / sizeof(struct xflow_flow))
1220                 return -EINVAL;
1221
1222         retval = function(dp, &flowvec);
1223         return (retval < 0 ? retval
1224                 : retval == flowvec.n_flows ? 0
1225                 : put_user(retval, &uflowvec->n_flows));
1226 }
1227
1228 static int do_execute(struct datapath *dp, const struct xflow_execute *execute)
1229 {
1230         struct xflow_key key;
1231         struct sk_buff *skb;
1232         struct sw_flow_actions *actions;
1233         struct ethhdr *eth;
1234         int err;
1235
1236         err = -EINVAL;
1237         if (execute->length < ETH_HLEN || execute->length > 65535)
1238                 goto error;
1239
1240         err = -ENOMEM;
1241         actions = flow_actions_alloc(execute->n_actions);
1242         if (!actions)
1243                 goto error;
1244
1245         err = -EFAULT;
1246         if (copy_from_user(actions->actions, execute->actions,
1247                            execute->n_actions * sizeof *execute->actions))
1248                 goto error_free_actions;
1249
1250         err = validate_actions(actions);
1251         if (err)
1252                 goto error_free_actions;
1253
1254         err = -ENOMEM;
1255         skb = alloc_skb(execute->length, GFP_KERNEL);
1256         if (!skb)
1257                 goto error_free_actions;
1258
1259         if (execute->in_port < DP_MAX_PORTS)
1260                 OVS_CB(skb)->dp_port = dp->ports[execute->in_port];
1261         else
1262                 OVS_CB(skb)->dp_port = NULL;
1263
1264         err = -EFAULT;
1265         if (copy_from_user(skb_put(skb, execute->length), execute->data,
1266                            execute->length))
1267                 goto error_free_skb;
1268
1269         skb_reset_mac_header(skb);
1270         eth = eth_hdr(skb);
1271
1272         /* Normally, setting the skb 'protocol' field would be handled by a
1273          * call to eth_type_trans(), but it assumes there's a sending
1274          * device, which we may not have. */
1275         if (ntohs(eth->h_proto) >= 1536)
1276                 skb->protocol = eth->h_proto;
1277         else
1278                 skb->protocol = htons(ETH_P_802_2);
1279
1280         flow_extract(skb, execute->in_port, &key);
1281
1282         rcu_read_lock();
1283         err = execute_actions(dp, skb, &key, actions->actions,
1284                               actions->n_actions, GFP_KERNEL);
1285         rcu_read_unlock();
1286
1287         kfree(actions);
1288         return err;
1289
1290 error_free_skb:
1291         kfree_skb(skb);
1292 error_free_actions:
1293         kfree(actions);
1294 error:
1295         return err;
1296 }
1297
1298 static int execute_packet(struct datapath *dp, const struct xflow_execute __user *executep)
1299 {
1300         struct xflow_execute execute;
1301
1302         if (copy_from_user(&execute, executep, sizeof execute))
1303                 return -EFAULT;
1304
1305         return do_execute(dp, &execute);
1306 }
1307
1308 static int get_dp_stats(struct datapath *dp, struct xflow_stats __user *statsp)
1309 {
1310         struct tbl *table = rcu_dereference(dp->table);
1311         struct xflow_stats stats;
1312         int i;
1313
1314         stats.n_flows = tbl_count(table);
1315         stats.cur_capacity = tbl_n_buckets(table);
1316         stats.max_capacity = TBL_MAX_BUCKETS;
1317         stats.n_ports = dp->n_ports;
1318         stats.max_ports = DP_MAX_PORTS;
1319         stats.max_groups = DP_MAX_GROUPS;
1320         stats.n_frags = stats.n_hit = stats.n_missed = stats.n_lost = 0;
1321         for_each_possible_cpu(i) {
1322                 const struct dp_stats_percpu *s;
1323                 s = per_cpu_ptr(dp->stats_percpu, i);
1324                 stats.n_frags += s->n_frags;
1325                 stats.n_hit += s->n_hit;
1326                 stats.n_missed += s->n_missed;
1327                 stats.n_lost += s->n_lost;
1328         }
1329         stats.max_miss_queue = DP_MAX_QUEUE_LEN;
1330         stats.max_action_queue = DP_MAX_QUEUE_LEN;
1331         return copy_to_user(statsp, &stats, sizeof stats) ? -EFAULT : 0;
1332 }
1333
1334 /* MTU of the dp pseudo-device: ETH_DATA_LEN or the minimum of the ports */
1335 int dp_min_mtu(const struct datapath *dp)
1336 {
1337         struct dp_port *p;
1338         int mtu = 0;
1339
1340         ASSERT_RTNL();
1341
1342         list_for_each_entry_rcu (p, &dp->port_list, node) {
1343                 int dev_mtu;
1344
1345                 /* Skip any internal ports, since that's what we're trying to
1346                  * set. */
1347                 if (is_internal_vport(p->vport))
1348                         continue;
1349
1350                 dev_mtu = vport_get_mtu(p->vport);
1351                 if (!mtu || dev_mtu < mtu)
1352                         mtu = dev_mtu;
1353         }
1354
1355         return mtu ? mtu : ETH_DATA_LEN;
1356 }
1357
1358 /* Sets the MTU of all datapath devices to the minimum of the ports.  Must
1359  * be called with RTNL lock. */
1360 void set_internal_devs_mtu(const struct datapath *dp)
1361 {
1362         struct dp_port *p;
1363         int mtu;
1364
1365         ASSERT_RTNL();
1366
1367         mtu = dp_min_mtu(dp);
1368
1369         list_for_each_entry_rcu (p, &dp->port_list, node) {
1370                 if (is_internal_vport(p->vport))
1371                         vport_set_mtu(p->vport, mtu);
1372         }
1373 }
1374
1375 static int put_port(const struct dp_port *p, struct xflow_port __user *uop)
1376 {
1377         struct xflow_port op;
1378
1379         memset(&op, 0, sizeof op);
1380
1381         rcu_read_lock();
1382         strncpy(op.devname, vport_get_name(p->vport), sizeof op.devname);
1383         rcu_read_unlock();
1384
1385         op.port = p->port_no;
1386         op.flags = is_internal_vport(p->vport) ? XFLOW_PORT_INTERNAL : 0;
1387
1388         return copy_to_user(uop, &op, sizeof op) ? -EFAULT : 0;
1389 }
1390
1391 static int query_port(struct datapath *dp, struct xflow_port __user *uport)
1392 {
1393         struct xflow_port port;
1394
1395         if (copy_from_user(&port, uport, sizeof port))
1396                 return -EFAULT;
1397
1398         if (port.devname[0]) {
1399                 struct vport *vport;
1400                 struct dp_port *dp_port;
1401                 int err = 0;
1402
1403                 port.devname[IFNAMSIZ - 1] = '\0';
1404
1405                 vport_lock();
1406                 rcu_read_lock();
1407
1408                 vport = vport_locate(port.devname);
1409                 if (!vport) {
1410                         err = -ENODEV;
1411                         goto error_unlock;
1412                 }
1413
1414                 dp_port = vport_get_dp_port(vport);
1415                 if (!dp_port || dp_port->dp != dp) {
1416                         err = -ENOENT;
1417                         goto error_unlock;
1418                 }
1419
1420                 port.port = dp_port->port_no;
1421
1422 error_unlock:
1423                 rcu_read_unlock();
1424                 vport_unlock();
1425
1426                 if (err)
1427                         return err;
1428         } else {
1429                 if (port.port >= DP_MAX_PORTS)
1430                         return -EINVAL;
1431                 if (!dp->ports[port.port])
1432                         return -ENOENT;
1433         }
1434
1435         return put_port(dp->ports[port.port], uport);
1436 }
1437
1438 static int do_list_ports(struct datapath *dp, struct xflow_port __user *uports,
1439                          int n_ports)
1440 {
1441         int idx = 0;
1442         if (n_ports) {
1443                 struct dp_port *p;
1444
1445                 list_for_each_entry_rcu (p, &dp->port_list, node) {
1446                         if (put_port(p, &uports[idx]))
1447                                 return -EFAULT;
1448                         if (idx++ >= n_ports)
1449                                 break;
1450                 }
1451         }
1452         return idx;
1453 }
1454
1455 static int list_ports(struct datapath *dp, struct xflow_portvec __user *upv)
1456 {
1457         struct xflow_portvec pv;
1458         int retval;
1459
1460         if (copy_from_user(&pv, upv, sizeof pv))
1461                 return -EFAULT;
1462
1463         retval = do_list_ports(dp, pv.ports, pv.n_ports);
1464         if (retval < 0)
1465                 return retval;
1466
1467         return put_user(retval, &upv->n_ports);
1468 }
1469
1470 /* RCU callback for freeing a dp_port_group */
1471 static void free_port_group(struct rcu_head *rcu)
1472 {
1473         struct dp_port_group *g = container_of(rcu, struct dp_port_group, rcu);
1474         kfree(g);
1475 }
1476
1477 static int do_set_port_group(struct datapath *dp, u16 __user *ports,
1478                              int n_ports, int group)
1479 {
1480         struct dp_port_group *new_group, *old_group;
1481         int error;
1482
1483         error = -EINVAL;
1484         if (n_ports > DP_MAX_PORTS || group >= DP_MAX_GROUPS)
1485                 goto error;
1486
1487         error = -ENOMEM;
1488         new_group = kmalloc(sizeof *new_group + sizeof(u16) * n_ports, GFP_KERNEL);
1489         if (!new_group)
1490                 goto error;
1491
1492         new_group->n_ports = n_ports;
1493         error = -EFAULT;
1494         if (copy_from_user(new_group->ports, ports, sizeof(u16) * n_ports))
1495                 goto error_free;
1496
1497         old_group = rcu_dereference(dp->groups[group]);
1498         rcu_assign_pointer(dp->groups[group], new_group);
1499         if (old_group)
1500                 call_rcu(&old_group->rcu, free_port_group);
1501         return 0;
1502
1503 error_free:
1504         kfree(new_group);
1505 error:
1506         return error;
1507 }
1508
1509 static int set_port_group(struct datapath *dp,
1510                           const struct xflow_port_group __user *upg)
1511 {
1512         struct xflow_port_group pg;
1513
1514         if (copy_from_user(&pg, upg, sizeof pg))
1515                 return -EFAULT;
1516
1517         return do_set_port_group(dp, pg.ports, pg.n_ports, pg.group);
1518 }
1519
1520 static int do_get_port_group(struct datapath *dp,
1521                              u16 __user *ports, int n_ports, int group,
1522                              u16 __user *n_portsp)
1523 {
1524         struct dp_port_group *g;
1525         u16 n_copy;
1526
1527         if (group >= DP_MAX_GROUPS)
1528                 return -EINVAL;
1529
1530         g = dp->groups[group];
1531         n_copy = g ? min_t(int, g->n_ports, n_ports) : 0;
1532         if (n_copy && copy_to_user(ports, g->ports, n_copy * sizeof(u16)))
1533                 return -EFAULT;
1534
1535         if (put_user(g ? g->n_ports : 0, n_portsp))
1536                 return -EFAULT;
1537
1538         return 0;
1539 }
1540
1541 static int get_port_group(struct datapath *dp, struct xflow_port_group __user *upg)
1542 {
1543         struct xflow_port_group pg;
1544
1545         if (copy_from_user(&pg, upg, sizeof pg))
1546                 return -EFAULT;
1547
1548         return do_get_port_group(dp, pg.ports, pg.n_ports, pg.group, &upg->n_ports);
1549 }
1550
1551 static int get_listen_mask(const struct file *f)
1552 {
1553         return (long)f->private_data;
1554 }
1555
1556 static void set_listen_mask(struct file *f, int listen_mask)
1557 {
1558         f->private_data = (void*)(long)listen_mask;
1559 }
1560
1561 static long openvswitch_ioctl(struct file *f, unsigned int cmd,
1562                            unsigned long argp)
1563 {
1564         int dp_idx = iminor(f->f_dentry->d_inode);
1565         struct datapath *dp;
1566         int drop_frags, listeners, port_no;
1567         unsigned int sflow_probability;
1568         int err;
1569
1570         /* Handle commands with special locking requirements up front. */
1571         switch (cmd) {
1572         case XFLOW_DP_CREATE:
1573                 err = create_dp(dp_idx, (char __user *)argp);
1574                 goto exit;
1575
1576         case XFLOW_DP_DESTROY:
1577                 err = destroy_dp(dp_idx);
1578                 goto exit;
1579
1580         case XFLOW_PORT_ATTACH:
1581                 err = attach_port(dp_idx, (struct xflow_port __user *)argp);
1582                 goto exit;
1583
1584         case XFLOW_PORT_DETACH:
1585                 err = get_user(port_no, (int __user *)argp);
1586                 if (!err)
1587                         err = detach_port(dp_idx, port_no);
1588                 goto exit;
1589
1590         case XFLOW_VPORT_ADD:
1591                 err = vport_user_add((struct xflow_vport_add __user *)argp);
1592                 goto exit;
1593
1594         case XFLOW_VPORT_MOD:
1595                 err = vport_user_mod((struct xflow_vport_mod __user *)argp);
1596                 goto exit;
1597
1598         case XFLOW_VPORT_DEL:
1599                 err = vport_user_del((char __user *)argp);
1600                 goto exit;
1601
1602         case XFLOW_VPORT_STATS_GET:
1603                 err = vport_user_stats_get((struct xflow_vport_stats_req __user *)argp);
1604                 goto exit;
1605
1606         case XFLOW_VPORT_STATS_SET:
1607                 err = vport_user_stats_set((struct xflow_vport_stats_req __user *)argp);
1608                 goto exit;
1609
1610         case XFLOW_VPORT_ETHER_GET:
1611                 err = vport_user_ether_get((struct xflow_vport_ether __user *)argp);
1612                 goto exit;
1613
1614         case XFLOW_VPORT_ETHER_SET:
1615                 err = vport_user_ether_set((struct xflow_vport_ether __user *)argp);
1616                 goto exit;
1617
1618         case XFLOW_VPORT_MTU_GET:
1619                 err = vport_user_mtu_get((struct xflow_vport_mtu __user *)argp);
1620                 goto exit;
1621
1622         case XFLOW_VPORT_MTU_SET:
1623                 err = vport_user_mtu_set((struct xflow_vport_mtu __user *)argp);
1624                 goto exit;
1625         }
1626
1627         dp = get_dp_locked(dp_idx);
1628         err = -ENODEV;
1629         if (!dp)
1630                 goto exit;
1631
1632         switch (cmd) {
1633         case XFLOW_DP_STATS:
1634                 err = get_dp_stats(dp, (struct xflow_stats __user *)argp);
1635                 break;
1636
1637         case XFLOW_GET_DROP_FRAGS:
1638                 err = put_user(dp->drop_frags, (int __user *)argp);
1639                 break;
1640
1641         case XFLOW_SET_DROP_FRAGS:
1642                 err = get_user(drop_frags, (int __user *)argp);
1643                 if (err)
1644                         break;
1645                 err = -EINVAL;
1646                 if (drop_frags != 0 && drop_frags != 1)
1647                         break;
1648                 dp->drop_frags = drop_frags;
1649                 err = 0;
1650                 break;
1651
1652         case XFLOW_GET_LISTEN_MASK:
1653                 err = put_user(get_listen_mask(f), (int __user *)argp);
1654                 break;
1655
1656         case XFLOW_SET_LISTEN_MASK:
1657                 err = get_user(listeners, (int __user *)argp);
1658                 if (err)
1659                         break;
1660                 err = -EINVAL;
1661                 if (listeners & ~XFLOWL_ALL)
1662                         break;
1663                 err = 0;
1664                 set_listen_mask(f, listeners);
1665                 break;
1666
1667         case XFLOW_GET_SFLOW_PROBABILITY:
1668                 err = put_user(dp->sflow_probability, (unsigned int __user *)argp);
1669                 break;
1670
1671         case XFLOW_SET_SFLOW_PROBABILITY:
1672                 err = get_user(sflow_probability, (unsigned int __user *)argp);
1673                 if (!err)
1674                         dp->sflow_probability = sflow_probability;
1675                 break;
1676
1677         case XFLOW_PORT_QUERY:
1678                 err = query_port(dp, (struct xflow_port __user *)argp);
1679                 break;
1680
1681         case XFLOW_PORT_LIST:
1682                 err = list_ports(dp, (struct xflow_portvec __user *)argp);
1683                 break;
1684
1685         case XFLOW_PORT_GROUP_SET:
1686                 err = set_port_group(dp, (struct xflow_port_group __user *)argp);
1687                 break;
1688
1689         case XFLOW_PORT_GROUP_GET:
1690                 err = get_port_group(dp, (struct xflow_port_group __user *)argp);
1691                 break;
1692
1693         case XFLOW_FLOW_FLUSH:
1694                 err = flush_flows(dp);
1695                 break;
1696
1697         case XFLOW_FLOW_PUT:
1698                 err = put_flow(dp, (struct xflow_flow_put __user *)argp);
1699                 break;
1700
1701         case XFLOW_FLOW_DEL:
1702                 err = del_flow(dp, (struct xflow_flow __user *)argp);
1703                 break;
1704
1705         case XFLOW_FLOW_GET:
1706                 err = do_flowvec_ioctl(dp, argp, do_query_flows);
1707                 break;
1708
1709         case XFLOW_FLOW_LIST:
1710                 err = do_flowvec_ioctl(dp, argp, do_list_flows);
1711                 break;
1712
1713         case XFLOW_EXECUTE:
1714                 err = execute_packet(dp, (struct xflow_execute __user *)argp);
1715                 break;
1716
1717         default:
1718                 err = -ENOIOCTLCMD;
1719                 break;
1720         }
1721         mutex_unlock(&dp->mutex);
1722 exit:
1723         return err;
1724 }
1725
1726 static int dp_has_packet_of_interest(struct datapath *dp, int listeners)
1727 {
1728         int i;
1729         for (i = 0; i < DP_N_QUEUES; i++) {
1730                 if (listeners & (1 << i) && !skb_queue_empty(&dp->queues[i]))
1731                         return 1;
1732         }
1733         return 0;
1734 }
1735
1736 #ifdef CONFIG_COMPAT
1737 static int compat_list_ports(struct datapath *dp, struct compat_xflow_portvec __user *upv)
1738 {
1739         struct compat_xflow_portvec pv;
1740         int retval;
1741
1742         if (copy_from_user(&pv, upv, sizeof pv))
1743                 return -EFAULT;
1744
1745         retval = do_list_ports(dp, compat_ptr(pv.ports), pv.n_ports);
1746         if (retval < 0)
1747                 return retval;
1748
1749         return put_user(retval, &upv->n_ports);
1750 }
1751
1752 static int compat_set_port_group(struct datapath *dp, const struct compat_xflow_port_group __user *upg)
1753 {
1754         struct compat_xflow_port_group pg;
1755
1756         if (copy_from_user(&pg, upg, sizeof pg))
1757                 return -EFAULT;
1758
1759         return do_set_port_group(dp, compat_ptr(pg.ports), pg.n_ports, pg.group);
1760 }
1761
1762 static int compat_get_port_group(struct datapath *dp, struct compat_xflow_port_group __user *upg)
1763 {
1764         struct compat_xflow_port_group pg;
1765
1766         if (copy_from_user(&pg, upg, sizeof pg))
1767                 return -EFAULT;
1768
1769         return do_get_port_group(dp, compat_ptr(pg.ports), pg.n_ports,
1770                                  pg.group, &upg->n_ports);
1771 }
1772
1773 static int compat_get_flow(struct xflow_flow *flow, const struct compat_xflow_flow __user *compat)
1774 {
1775         compat_uptr_t actions;
1776
1777         if (!access_ok(VERIFY_READ, compat, sizeof(struct compat_xflow_flow)) ||
1778             __copy_from_user(&flow->stats, &compat->stats, sizeof(struct xflow_flow_stats)) ||
1779             __copy_from_user(&flow->key, &compat->key, sizeof(struct xflow_key)) ||
1780             __get_user(actions, &compat->actions) ||
1781             __get_user(flow->n_actions, &compat->n_actions) ||
1782             __get_user(flow->flags, &compat->flags))
1783                 return -EFAULT;
1784
1785         flow->actions = compat_ptr(actions);
1786         return 0;
1787 }
1788
1789 static int compat_put_flow(struct datapath *dp, struct compat_xflow_flow_put __user *ufp)
1790 {
1791         struct xflow_flow_stats stats;
1792         struct xflow_flow_put fp;
1793         int error;
1794
1795         if (compat_get_flow(&fp.flow, &ufp->flow) ||
1796             get_user(fp.flags, &ufp->flags))
1797                 return -EFAULT;
1798
1799         error = do_put_flow(dp, &fp, &stats);
1800         if (error)
1801                 return error;
1802
1803         if (copy_to_user(&ufp->flow.stats, &stats,
1804                          sizeof(struct xflow_flow_stats)))
1805                 return -EFAULT;
1806
1807         return 0;
1808 }
1809
1810 static int compat_answer_query(struct sw_flow *flow, u32 query_flags,
1811                                struct compat_xflow_flow __user *ufp)
1812 {
1813         compat_uptr_t actions;
1814
1815         if (get_user(actions, &ufp->actions))
1816                 return -EFAULT;
1817
1818         return do_answer_query(flow, query_flags, &ufp->stats,
1819                                compat_ptr(actions), &ufp->n_actions);
1820 }
1821
1822 static int compat_del_flow(struct datapath *dp, struct compat_xflow_flow __user *ufp)
1823 {
1824         struct sw_flow *flow;
1825         struct xflow_flow uf;
1826         int error;
1827
1828         if (compat_get_flow(&uf, ufp))
1829                 return -EFAULT;
1830
1831         flow = do_del_flow(dp, &uf.key);
1832         if (IS_ERR(flow))
1833                 return PTR_ERR(flow);
1834
1835         error = compat_answer_query(flow, 0, ufp);
1836         flow_deferred_free(flow);
1837         return error;
1838 }
1839
1840 static int compat_query_flows(struct datapath *dp, struct compat_xflow_flow *flows, u32 n_flows)
1841 {
1842         struct tbl *table = rcu_dereference(dp->table);
1843         u32 i;
1844
1845         for (i = 0; i < n_flows; i++) {
1846                 struct compat_xflow_flow __user *ufp = &flows[i];
1847                 struct xflow_flow uf;
1848                 struct tbl_node *flow_node;
1849                 int error;
1850
1851                 if (compat_get_flow(&uf, ufp))
1852                         return -EFAULT;
1853
1854                 flow_node = tbl_lookup(table, &uf.key, flow_hash(&uf.key), flow_cmp);
1855                 if (!flow_node)
1856                         error = put_user(ENOENT, &ufp->stats.error);
1857                 else
1858                         error = compat_answer_query(flow_cast(flow_node), uf.flags, ufp);
1859                 if (error)
1860                         return -EFAULT;
1861         }
1862         return n_flows;
1863 }
1864
1865 struct compat_list_flows_cbdata {
1866         struct compat_xflow_flow __user *uflows;
1867         u32 n_flows;
1868         u32 listed_flows;
1869 };
1870
1871 static int compat_list_flow(struct tbl_node *node, void *cbdata_)
1872 {
1873         struct sw_flow *flow = flow_cast(node);
1874         struct compat_list_flows_cbdata *cbdata = cbdata_;
1875         struct compat_xflow_flow __user *ufp = &cbdata->uflows[cbdata->listed_flows++];
1876         int error;
1877
1878         if (copy_to_user(&ufp->key, &flow->key, sizeof flow->key))
1879                 return -EFAULT;
1880         error = compat_answer_query(flow, 0, ufp);
1881         if (error)
1882                 return error;
1883
1884         if (cbdata->listed_flows >= cbdata->n_flows)
1885                 return cbdata->listed_flows;
1886         return 0;
1887 }
1888
1889 static int compat_list_flows(struct datapath *dp, struct compat_xflow_flow *flows, u32 n_flows)
1890 {
1891         struct compat_list_flows_cbdata cbdata;
1892         int error;
1893
1894         if (!n_flows)
1895                 return 0;
1896
1897         cbdata.uflows = flows;
1898         cbdata.n_flows = n_flows;
1899         cbdata.listed_flows = 0;
1900         error = tbl_foreach(rcu_dereference(dp->table), compat_list_flow, &cbdata);
1901         return error ? error : cbdata.listed_flows;
1902 }
1903
1904 static int compat_flowvec_ioctl(struct datapath *dp, unsigned long argp,
1905                                 int (*function)(struct datapath *,
1906                                                 struct compat_xflow_flow *,
1907                                                 u32 n_flows))
1908 {
1909         struct compat_xflow_flowvec __user *uflowvec;
1910         struct compat_xflow_flow __user *flows;
1911         struct compat_xflow_flowvec flowvec;
1912         int retval;
1913
1914         uflowvec = compat_ptr(argp);
1915         if (!access_ok(VERIFY_WRITE, uflowvec, sizeof *uflowvec) ||
1916             copy_from_user(&flowvec, uflowvec, sizeof flowvec))
1917                 return -EFAULT;
1918
1919         if (flowvec.n_flows > INT_MAX / sizeof(struct compat_xflow_flow))
1920                 return -EINVAL;
1921
1922         flows = compat_ptr(flowvec.flows);
1923         if (!access_ok(VERIFY_WRITE, flows,
1924                        flowvec.n_flows * sizeof(struct compat_xflow_flow)))
1925                 return -EFAULT;
1926
1927         retval = function(dp, flows, flowvec.n_flows);
1928         return (retval < 0 ? retval
1929                 : retval == flowvec.n_flows ? 0
1930                 : put_user(retval, &uflowvec->n_flows));
1931 }
1932
1933 static int compat_execute(struct datapath *dp, const struct compat_xflow_execute __user *uexecute)
1934 {
1935         struct xflow_execute execute;
1936         compat_uptr_t actions;
1937         compat_uptr_t data;
1938
1939         if (!access_ok(VERIFY_READ, uexecute, sizeof(struct compat_xflow_execute)) ||
1940             __get_user(execute.in_port, &uexecute->in_port) ||
1941             __get_user(actions, &uexecute->actions) ||
1942             __get_user(execute.n_actions, &uexecute->n_actions) ||
1943             __get_user(data, &uexecute->data) ||
1944             __get_user(execute.length, &uexecute->length))
1945                 return -EFAULT;
1946
1947         execute.actions = compat_ptr(actions);
1948         execute.data = compat_ptr(data);
1949
1950         return do_execute(dp, &execute);
1951 }
1952
1953 static long openvswitch_compat_ioctl(struct file *f, unsigned int cmd, unsigned long argp)
1954 {
1955         int dp_idx = iminor(f->f_dentry->d_inode);
1956         struct datapath *dp;
1957         int err;
1958
1959         switch (cmd) {
1960         case XFLOW_DP_DESTROY:
1961         case XFLOW_FLOW_FLUSH:
1962                 /* Ioctls that don't need any translation at all. */
1963                 return openvswitch_ioctl(f, cmd, argp);
1964
1965         case XFLOW_DP_CREATE:
1966         case XFLOW_PORT_ATTACH:
1967         case XFLOW_PORT_DETACH:
1968         case XFLOW_VPORT_DEL:
1969         case XFLOW_VPORT_MTU_SET:
1970         case XFLOW_VPORT_MTU_GET:
1971         case XFLOW_VPORT_ETHER_SET:
1972         case XFLOW_VPORT_ETHER_GET:
1973         case XFLOW_VPORT_STATS_SET:
1974         case XFLOW_VPORT_STATS_GET:
1975         case XFLOW_DP_STATS:
1976         case XFLOW_GET_DROP_FRAGS:
1977         case XFLOW_SET_DROP_FRAGS:
1978         case XFLOW_SET_LISTEN_MASK:
1979         case XFLOW_GET_LISTEN_MASK:
1980         case XFLOW_SET_SFLOW_PROBABILITY:
1981         case XFLOW_GET_SFLOW_PROBABILITY:
1982         case XFLOW_PORT_QUERY:
1983                 /* Ioctls that just need their pointer argument extended. */
1984                 return openvswitch_ioctl(f, cmd, (unsigned long)compat_ptr(argp));
1985
1986         case XFLOW_VPORT_ADD32:
1987                 return compat_vport_user_add(compat_ptr(argp));
1988
1989         case XFLOW_VPORT_MOD32:
1990                 return compat_vport_user_mod(compat_ptr(argp));
1991         }
1992
1993         dp = get_dp_locked(dp_idx);
1994         err = -ENODEV;
1995         if (!dp)
1996                 goto exit;
1997
1998         switch (cmd) {
1999         case XFLOW_PORT_LIST32:
2000                 err = compat_list_ports(dp, compat_ptr(argp));
2001                 break;
2002
2003         case XFLOW_PORT_GROUP_SET32:
2004                 err = compat_set_port_group(dp, compat_ptr(argp));
2005                 break;
2006
2007         case XFLOW_PORT_GROUP_GET32:
2008                 err = compat_get_port_group(dp, compat_ptr(argp));
2009                 break;
2010
2011         case XFLOW_FLOW_PUT32:
2012                 err = compat_put_flow(dp, compat_ptr(argp));
2013                 break;
2014
2015         case XFLOW_FLOW_DEL32:
2016                 err = compat_del_flow(dp, compat_ptr(argp));
2017                 break;
2018
2019         case XFLOW_FLOW_GET32:
2020                 err = compat_flowvec_ioctl(dp, argp, compat_query_flows);
2021                 break;
2022
2023         case XFLOW_FLOW_LIST32:
2024                 err = compat_flowvec_ioctl(dp, argp, compat_list_flows);
2025                 break;
2026
2027         case XFLOW_EXECUTE32:
2028                 err = compat_execute(dp, compat_ptr(argp));
2029                 break;
2030
2031         default:
2032                 err = -ENOIOCTLCMD;
2033                 break;
2034         }
2035         mutex_unlock(&dp->mutex);
2036 exit:
2037         return err;
2038 }
2039 #endif
2040
2041 /* Unfortunately this function is not exported so this is a verbatim copy
2042  * from net/core/datagram.c in 2.6.30. */
2043 static int skb_copy_and_csum_datagram(const struct sk_buff *skb, int offset,
2044                                       u8 __user *to, int len,
2045                                       __wsum *csump)
2046 {
2047         int start = skb_headlen(skb);
2048         int pos = 0;
2049         int i, copy = start - offset;
2050
2051         /* Copy header. */
2052         if (copy > 0) {
2053                 int err = 0;
2054                 if (copy > len)
2055                         copy = len;
2056                 *csump = csum_and_copy_to_user(skb->data + offset, to, copy,
2057                                                *csump, &err);
2058                 if (err)
2059                         goto fault;
2060                 if ((len -= copy) == 0)
2061                         return 0;
2062                 offset += copy;
2063                 to += copy;
2064                 pos = copy;
2065         }
2066
2067         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2068                 int end;
2069
2070                 WARN_ON(start > offset + len);
2071
2072                 end = start + skb_shinfo(skb)->frags[i].size;
2073                 if ((copy = end - offset) > 0) {
2074                         __wsum csum2;
2075                         int err = 0;
2076                         u8  *vaddr;
2077                         skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2078                         struct page *page = frag->page;
2079
2080                         if (copy > len)
2081                                 copy = len;
2082                         vaddr = kmap(page);
2083                         csum2 = csum_and_copy_to_user(vaddr +
2084                                                         frag->page_offset +
2085                                                         offset - start,
2086                                                       to, copy, 0, &err);
2087                         kunmap(page);
2088                         if (err)
2089                                 goto fault;
2090                         *csump = csum_block_add(*csump, csum2, pos);
2091                         if (!(len -= copy))
2092                                 return 0;
2093                         offset += copy;
2094                         to += copy;
2095                         pos += copy;
2096                 }
2097                 start = end;
2098         }
2099
2100         if (skb_shinfo(skb)->frag_list) {
2101                 struct sk_buff *list = skb_shinfo(skb)->frag_list;
2102
2103                 for (; list; list=list->next) {
2104                         int end;
2105
2106                         WARN_ON(start > offset + len);
2107
2108                         end = start + list->len;
2109                         if ((copy = end - offset) > 0) {
2110                                 __wsum csum2 = 0;
2111                                 if (copy > len)
2112                                         copy = len;
2113                                 if (skb_copy_and_csum_datagram(list,
2114                                                                offset - start,
2115                                                                to, copy,
2116                                                                &csum2))
2117                                         goto fault;
2118                                 *csump = csum_block_add(*csump, csum2, pos);
2119                                 if ((len -= copy) == 0)
2120                                         return 0;
2121                                 offset += copy;
2122                                 to += copy;
2123                                 pos += copy;
2124                         }
2125                         start = end;
2126                 }
2127         }
2128         if (!len)
2129                 return 0;
2130
2131 fault:
2132         return -EFAULT;
2133 }
2134
2135 ssize_t openvswitch_read(struct file *f, char __user *buf, size_t nbytes,
2136                       loff_t *ppos)
2137 {
2138         /* XXX is there sufficient synchronization here? */
2139         int listeners = get_listen_mask(f);
2140         int dp_idx = iminor(f->f_dentry->d_inode);
2141         struct datapath *dp = get_dp(dp_idx);
2142         struct sk_buff *skb;
2143         size_t copy_bytes, tot_copy_bytes;
2144         int retval;
2145
2146         if (!dp)
2147                 return -ENODEV;
2148
2149         if (nbytes == 0 || !listeners)
2150                 return 0;
2151
2152         for (;;) {
2153                 int i;
2154
2155                 for (i = 0; i < DP_N_QUEUES; i++) {
2156                         if (listeners & (1 << i)) {
2157                                 skb = skb_dequeue(&dp->queues[i]);
2158                                 if (skb)
2159                                         goto success;
2160                         }
2161                 }
2162
2163                 if (f->f_flags & O_NONBLOCK) {
2164                         retval = -EAGAIN;
2165                         goto error;
2166                 }
2167
2168                 wait_event_interruptible(dp->waitqueue,
2169                                          dp_has_packet_of_interest(dp,
2170                                                                    listeners));
2171
2172                 if (signal_pending(current)) {
2173                         retval = -ERESTARTSYS;
2174                         goto error;
2175                 }
2176         }
2177 success:
2178         copy_bytes = tot_copy_bytes = min_t(size_t, skb->len, nbytes);
2179         
2180         retval = 0;
2181         if (skb->ip_summed == CHECKSUM_PARTIAL) {
2182                 if (copy_bytes == skb->len) {
2183                         __wsum csum = 0;
2184                         unsigned int csum_start, csum_offset;
2185
2186 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
2187                         csum_start = skb->csum_start - skb_headroom(skb);
2188                         csum_offset = skb->csum_offset;
2189 #else
2190                         csum_start = skb_transport_header(skb) - skb->data;
2191                         csum_offset = skb->csum;
2192 #endif
2193                         BUG_ON(csum_start >= skb_headlen(skb));
2194                         retval = skb_copy_and_csum_datagram(skb, csum_start, buf + csum_start,
2195                                                             copy_bytes - csum_start, &csum);
2196                         if (!retval) {
2197                                 __sum16 __user *csump;
2198
2199                                 copy_bytes = csum_start;
2200                                 csump = (__sum16 __user *)(buf + csum_start + csum_offset);
2201
2202                                 BUG_ON((char *)csump + sizeof(__sum16) > buf + nbytes);
2203                                 put_user(csum_fold(csum), csump);
2204                         }
2205                 } else
2206                         retval = skb_checksum_help(skb);
2207         }
2208
2209         if (!retval) {
2210                 struct iovec __user iov;
2211
2212                 iov.iov_base = buf;
2213                 iov.iov_len = copy_bytes;
2214                 retval = skb_copy_datagram_iovec(skb, 0, &iov, iov.iov_len);
2215         }
2216
2217         if (!retval)
2218                 retval = tot_copy_bytes;
2219
2220         kfree_skb(skb);
2221
2222 error:
2223         return retval;
2224 }
2225
2226 static unsigned int openvswitch_poll(struct file *file, poll_table *wait)
2227 {
2228         /* XXX is there sufficient synchronization here? */
2229         int dp_idx = iminor(file->f_dentry->d_inode);
2230         struct datapath *dp = get_dp(dp_idx);
2231         unsigned int mask;
2232
2233         if (dp) {
2234                 mask = 0;
2235                 poll_wait(file, &dp->waitqueue, wait);
2236                 if (dp_has_packet_of_interest(dp, get_listen_mask(file)))
2237                         mask |= POLLIN | POLLRDNORM;
2238         } else {
2239                 mask = POLLIN | POLLRDNORM | POLLHUP;
2240         }
2241         return mask;
2242 }
2243
2244 struct file_operations openvswitch_fops = {
2245         /* XXX .aio_read = openvswitch_aio_read, */
2246         .read  = openvswitch_read,
2247         .poll  = openvswitch_poll,
2248         .unlocked_ioctl = openvswitch_ioctl,
2249 #ifdef CONFIG_COMPAT
2250         .compat_ioctl = openvswitch_compat_ioctl,
2251 #endif
2252         /* XXX .fasync = openvswitch_fasync, */
2253 };
2254
2255 static int major;
2256
2257 static int __init dp_init(void)
2258 {
2259         struct sk_buff *dummy_skb;
2260         int err;
2261
2262         BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > sizeof(dummy_skb->cb));
2263
2264         printk("Open vSwitch %s, built "__DATE__" "__TIME__"\n", VERSION BUILDNR);
2265
2266         err = flow_init();
2267         if (err)
2268                 goto error;
2269
2270         err = vport_init();
2271         if (err)
2272                 goto error_flow_exit;
2273
2274         err = register_netdevice_notifier(&dp_device_notifier);
2275         if (err)
2276                 goto error_vport_exit;
2277
2278         major = register_chrdev(0, "openvswitch", &openvswitch_fops);
2279         if (err < 0)
2280                 goto error_unreg_notifier;
2281
2282         return 0;
2283
2284 error_unreg_notifier:
2285         unregister_netdevice_notifier(&dp_device_notifier);
2286 error_vport_exit:
2287         vport_exit();
2288 error_flow_exit:
2289         flow_exit();
2290 error:
2291         return err;
2292 }
2293
2294 static void dp_cleanup(void)
2295 {
2296         rcu_barrier();
2297         unregister_chrdev(major, "openvswitch");
2298         unregister_netdevice_notifier(&dp_device_notifier);
2299         vport_exit();
2300         flow_exit();
2301 }
2302
2303 module_init(dp_init);
2304 module_exit(dp_cleanup);
2305
2306 MODULE_DESCRIPTION("Open vSwitch switching datapath");
2307 MODULE_LICENSE("GPL");