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