datapath: Fix unaligned access when storing stats.
[sliver-openvswitch.git] / datapath / datapath.c
1 /*
2  * Copyright (c) 2007-2011 Nicira Networks.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA
17  */
18
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21 #include <linux/init.h>
22 #include <linux/module.h>
23 #include <linux/if_arp.h>
24 #include <linux/if_vlan.h>
25 #include <linux/in.h>
26 #include <linux/ip.h>
27 #include <linux/jhash.h>
28 #include <linux/delay.h>
29 #include <linux/time.h>
30 #include <linux/etherdevice.h>
31 #include <linux/genetlink.h>
32 #include <linux/kernel.h>
33 #include <linux/kthread.h>
34 #include <linux/mutex.h>
35 #include <linux/percpu.h>
36 #include <linux/rcupdate.h>
37 #include <linux/tcp.h>
38 #include <linux/udp.h>
39 #include <linux/version.h>
40 #include <linux/ethtool.h>
41 #include <linux/wait.h>
42 #include <asm/system.h>
43 #include <asm/div64.h>
44 #include <linux/highmem.h>
45 #include <linux/netfilter_bridge.h>
46 #include <linux/netfilter_ipv4.h>
47 #include <linux/inetdevice.h>
48 #include <linux/list.h>
49 #include <linux/openvswitch.h>
50 #include <linux/rculist.h>
51 #include <linux/dmi.h>
52 #include <net/genetlink.h>
53
54 #include "checksum.h"
55 #include "datapath.h"
56 #include "flow.h"
57 #include "vlan.h"
58 #include "tunnel.h"
59 #include "vport-internal_dev.h"
60
61 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) || \
62     LINUX_VERSION_CODE > KERNEL_VERSION(3,2,0)
63 #error Kernels before 2.6.18 or after 3.2 are not supported by this version of Open vSwitch.
64 #endif
65
66 int (*dp_ioctl_hook)(struct net_device *dev, struct ifreq *rq, int cmd);
67 EXPORT_SYMBOL(dp_ioctl_hook);
68
69 /**
70  * DOC: Locking:
71  *
72  * Writes to device state (add/remove datapath, port, set operations on vports,
73  * etc.) are protected by RTNL.
74  *
75  * Writes to other state (flow table modifications, set miscellaneous datapath
76  * parameters, etc.) are protected by genl_mutex.  The RTNL lock nests inside
77  * genl_mutex.
78  *
79  * Reads are protected by RCU.
80  *
81  * There are a few special cases (mostly stats) that have their own
82  * synchronization but they nest under all of above and don't interact with
83  * each other.
84  */
85
86 /* Global list of datapaths to enable dumping them all out.
87  * Protected by genl_mutex.
88  */
89 static LIST_HEAD(dps);
90
91 static struct vport *new_vport(const struct vport_parms *);
92 static int queue_gso_packets(int dp_ifindex, struct sk_buff *,
93                              const struct dp_upcall_info *);
94 static int queue_userspace_packet(int dp_ifindex, struct sk_buff *,
95                                   const struct dp_upcall_info *);
96
97 /* Must be called with rcu_read_lock, genl_mutex, or RTNL lock. */
98 static struct datapath *get_dp(int dp_ifindex)
99 {
100         struct datapath *dp = NULL;
101         struct net_device *dev;
102
103         rcu_read_lock();
104         dev = dev_get_by_index_rcu(&init_net, dp_ifindex);
105         if (dev) {
106                 struct vport *vport = internal_dev_get_vport(dev);
107                 if (vport)
108                         dp = vport->dp;
109         }
110         rcu_read_unlock();
111
112         return dp;
113 }
114
115 /* Must be called with genl_mutex. */
116 static struct flow_table *get_table_protected(struct datapath *dp)
117 {
118         return rcu_dereference_protected(dp->table, lockdep_genl_is_held());
119 }
120
121 /* Must be called with rcu_read_lock or RTNL lock. */
122 static struct vport *get_vport_protected(struct datapath *dp, u16 port_no)
123 {
124         return rcu_dereference_rtnl(dp->ports[port_no]);
125 }
126
127 /* Must be called with rcu_read_lock or RTNL lock. */
128 const char *dp_name(const struct datapath *dp)
129 {
130         struct vport *vport = rcu_dereference_rtnl(dp->ports[OVSP_LOCAL]);
131         return vport->ops->get_name(vport);
132 }
133
134 static int get_dpifindex(struct datapath *dp)
135 {
136         struct vport *local;
137         int ifindex;
138
139         rcu_read_lock();
140
141         local = get_vport_protected(dp, OVSP_LOCAL);
142         if (local)
143                 ifindex = local->ops->get_ifindex(local);
144         else
145                 ifindex = 0;
146
147         rcu_read_unlock();
148
149         return ifindex;
150 }
151
152 static size_t br_nlmsg_size(void)
153 {
154         return NLMSG_ALIGN(sizeof(struct ifinfomsg))
155                + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
156                + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
157                + nla_total_size(4) /* IFLA_MASTER */
158                + nla_total_size(4) /* IFLA_MTU */
159                + nla_total_size(1); /* IFLA_OPERSTATE */
160 }
161
162 /* Caller must hold RTNL lock. */
163 static int dp_fill_ifinfo(struct sk_buff *skb,
164                           const struct vport *port,
165                           int event, unsigned int flags)
166 {
167         struct datapath *dp = port->dp;
168         struct ifinfomsg *hdr;
169         struct nlmsghdr *nlh;
170
171         if (!port->ops->get_ifindex)
172                 return -ENODEV;
173
174         nlh = nlmsg_put(skb, 0, 0, event, sizeof(*hdr), flags);
175         if (nlh == NULL)
176                 return -EMSGSIZE;
177
178         hdr = nlmsg_data(nlh);
179         hdr->ifi_family = AF_BRIDGE;
180         hdr->__ifi_pad = 0;
181         hdr->ifi_type = ARPHRD_ETHER;
182         hdr->ifi_index = port->ops->get_ifindex(port);
183         hdr->ifi_flags = port->ops->get_dev_flags(port);
184         hdr->ifi_change = 0;
185
186         NLA_PUT_STRING(skb, IFLA_IFNAME, port->ops->get_name(port));
187         NLA_PUT_U32(skb, IFLA_MASTER, get_dpifindex(dp));
188         NLA_PUT_U32(skb, IFLA_MTU, port->ops->get_mtu(port));
189 #ifdef IFLA_OPERSTATE
190         NLA_PUT_U8(skb, IFLA_OPERSTATE,
191                    port->ops->is_running(port)
192                         ? port->ops->get_operstate(port)
193                         : IF_OPER_DOWN);
194 #endif
195
196         NLA_PUT(skb, IFLA_ADDRESS, ETH_ALEN, port->ops->get_addr(port));
197
198         return nlmsg_end(skb, nlh);
199
200 nla_put_failure:
201         nlmsg_cancel(skb, nlh);
202         return -EMSGSIZE;
203 }
204
205 /* Caller must hold RTNL lock. */
206 static void dp_ifinfo_notify(int event, struct vport *port)
207 {
208         struct sk_buff *skb;
209         int err;
210
211         skb = nlmsg_new(br_nlmsg_size(), GFP_KERNEL);
212         if (!skb) {
213                 err = -ENOBUFS;
214                 goto err;
215         }
216
217         err = dp_fill_ifinfo(skb, port, event, 0);
218         if (err < 0) {
219                 if (err == -ENODEV) {
220                         goto out;
221                 } else {
222                         /* -EMSGSIZE implies BUG in br_nlmsg_size() */
223                         WARN_ON(err == -EMSGSIZE);
224                         goto err;
225                 }
226         }
227
228         rtnl_notify(skb, &init_net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL);
229
230         return;
231 err:
232         rtnl_set_sk_err(&init_net, RTNLGRP_LINK, err);
233 out:
234         kfree_skb(skb);
235 }
236
237 static void release_dp(struct kobject *kobj)
238 {
239         struct datapath *dp = container_of(kobj, struct datapath, ifobj);
240         kfree(dp);
241 }
242
243 static struct kobj_type dp_ktype = {
244         .release = release_dp
245 };
246
247 static void destroy_dp_rcu(struct rcu_head *rcu)
248 {
249         struct datapath *dp = container_of(rcu, struct datapath, rcu);
250
251         flow_tbl_destroy((__force struct flow_table *)dp->table);
252         free_percpu(dp->stats_percpu);
253         kobject_put(&dp->ifobj);
254 }
255
256 /* Called with RTNL lock and genl_lock. */
257 static struct vport *new_vport(const struct vport_parms *parms)
258 {
259         struct vport *vport;
260
261         vport = vport_add(parms);
262         if (!IS_ERR(vport)) {
263                 struct datapath *dp = parms->dp;
264
265                 rcu_assign_pointer(dp->ports[parms->port_no], vport);
266                 list_add(&vport->node, &dp->port_list);
267
268                 dp_ifinfo_notify(RTM_NEWLINK, vport);
269         }
270
271         return vport;
272 }
273
274 /* Called with RTNL lock. */
275 void dp_detach_port(struct vport *p)
276 {
277         ASSERT_RTNL();
278
279         if (p->port_no != OVSP_LOCAL)
280                 dp_sysfs_del_if(p);
281         dp_ifinfo_notify(RTM_DELLINK, p);
282
283         /* First drop references to device. */
284         list_del(&p->node);
285         rcu_assign_pointer(p->dp->ports[p->port_no], NULL);
286
287         /* Then destroy it. */
288         vport_del(p);
289 }
290
291 /* Must be called with rcu_read_lock. */
292 void dp_process_received_packet(struct vport *p, struct sk_buff *skb)
293 {
294         struct datapath *dp = p->dp;
295         struct sw_flow *flow;
296         struct dp_stats_percpu *stats;
297         u64 *stats_counter;
298         int error;
299
300         stats = per_cpu_ptr(dp->stats_percpu, smp_processor_id());
301
302         if (!OVS_CB(skb)->flow) {
303                 struct sw_flow_key key;
304                 int key_len;
305
306                 /* Extract flow from 'skb' into 'key'. */
307                 error = flow_extract(skb, p->port_no, &key, &key_len);
308                 if (unlikely(error)) {
309                         kfree_skb(skb);
310                         return;
311                 }
312
313                 /* Look up flow. */
314                 flow = flow_tbl_lookup(rcu_dereference(dp->table),
315                                        &key, key_len);
316                 if (unlikely(!flow)) {
317                         struct dp_upcall_info upcall;
318
319                         upcall.cmd = OVS_PACKET_CMD_MISS;
320                         upcall.key = &key;
321                         upcall.userdata = NULL;
322                         upcall.pid = p->upcall_pid;
323                         dp_upcall(dp, skb, &upcall);
324                         consume_skb(skb);
325                         stats_counter = &stats->n_missed;
326                         goto out;
327                 }
328
329                 OVS_CB(skb)->flow = flow;
330         }
331
332         stats_counter = &stats->n_hit;
333         flow_used(OVS_CB(skb)->flow, skb);
334         execute_actions(dp, skb);
335
336 out:
337         /* Update datapath statistics. */
338
339         write_seqcount_begin(&stats->seqlock);
340         (*stats_counter)++;
341         write_seqcount_end(&stats->seqlock);
342 }
343
344 static struct genl_family dp_packet_genl_family = {
345         .id = GENL_ID_GENERATE,
346         .hdrsize = sizeof(struct ovs_header),
347         .name = OVS_PACKET_FAMILY,
348         .version = OVS_PACKET_VERSION,
349         .maxattr = OVS_PACKET_ATTR_MAX
350 };
351
352 int dp_upcall(struct datapath *dp, struct sk_buff *skb,
353               const struct dp_upcall_info *upcall_info)
354 {
355         struct dp_stats_percpu *stats;
356         int dp_ifindex;
357         int err;
358
359         if (upcall_info->pid == 0) {
360                 err = -ENOTCONN;
361                 goto err;
362         }
363
364         dp_ifindex = get_dpifindex(dp);
365         if (!dp_ifindex) {
366                 err = -ENODEV;
367                 goto err;
368         }
369
370         forward_ip_summed(skb, true);
371
372         if (!skb_is_gso(skb))
373                 err = queue_userspace_packet(dp_ifindex, skb, upcall_info);
374         else
375                 err = queue_gso_packets(dp_ifindex, skb, upcall_info);
376         if (err)
377                 goto err;
378
379         return 0;
380
381 err:
382         stats = per_cpu_ptr(dp->stats_percpu, smp_processor_id());
383
384         write_seqcount_begin(&stats->seqlock);
385         stats->n_lost++;
386         write_seqcount_end(&stats->seqlock);
387
388         return err;
389 }
390
391 static int queue_gso_packets(int dp_ifindex, struct sk_buff *skb,
392                              const struct dp_upcall_info *upcall_info)
393 {
394         struct dp_upcall_info later_info;
395         struct sw_flow_key later_key;
396         struct sk_buff *segs, *nskb;
397         int err;
398
399         segs = skb_gso_segment(skb, NETIF_F_SG | NETIF_F_HW_CSUM);
400         if (IS_ERR(skb))
401                 return PTR_ERR(skb);
402
403         /* Queue all of the segments. */
404         skb = segs;
405         do {
406                 err = queue_userspace_packet(dp_ifindex, skb, upcall_info);
407                 if (err)
408                         break;
409
410                 if (skb == segs && skb_shinfo(skb)->gso_type & SKB_GSO_UDP) {
411                         /* The initial flow key extracted by flow_extract() in
412                          * this case is for a first fragment, so we need to
413                          * properly mark later fragments.
414                          */
415                         later_key = *upcall_info->key;
416                         later_key.ip.frag = OVS_FRAG_TYPE_LATER;
417
418                         later_info = *upcall_info;
419                         later_info.key = &later_key;
420                         upcall_info = &later_info;
421                 }
422         } while ((skb = skb->next));
423
424         /* Free all of the segments. */
425         skb = segs;
426         do {
427                 nskb = skb->next;
428                 if (err)
429                         kfree_skb(skb);
430                 else
431                         consume_skb(skb);
432         } while ((skb = nskb));
433         return err;
434 }
435
436 static int queue_userspace_packet(int dp_ifindex, struct sk_buff *skb,
437                                   const struct dp_upcall_info *upcall_info)
438 {
439         struct ovs_header *upcall;
440         struct sk_buff *user_skb; /* to be queued to userspace */
441         struct nlattr *nla;
442         unsigned int len;
443         int err;
444
445         err = vlan_deaccel_tag(skb);
446         if (unlikely(err))
447                 return err;
448
449         if (nla_attr_size(skb->len) > USHRT_MAX)
450                 return -EFBIG;
451
452         len = sizeof(struct ovs_header);
453         len += nla_total_size(skb->len);
454         len += nla_total_size(FLOW_BUFSIZE);
455         if (upcall_info->cmd == OVS_PACKET_CMD_ACTION)
456                 len += nla_total_size(8);
457
458         user_skb = genlmsg_new(len, GFP_ATOMIC);
459         if (!user_skb)
460                 return -ENOMEM;
461
462         upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
463                              0, upcall_info->cmd);
464         upcall->dp_ifindex = dp_ifindex;
465
466         nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_KEY);
467         flow_to_nlattrs(upcall_info->key, user_skb);
468         nla_nest_end(user_skb, nla);
469
470         if (upcall_info->userdata)
471                 nla_put_u64(user_skb, OVS_PACKET_ATTR_USERDATA,
472                             nla_get_u64(upcall_info->userdata));
473
474         nla = __nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, skb->len);
475
476         skb_copy_and_csum_dev(skb, nla_data(nla));
477
478         return genlmsg_unicast(&init_net, user_skb, upcall_info->pid);
479 }
480
481 /* Called with genl_mutex. */
482 static int flush_flows(int dp_ifindex)
483 {
484         struct flow_table *old_table;
485         struct flow_table *new_table;
486         struct datapath *dp;
487
488         dp = get_dp(dp_ifindex);
489         if (!dp)
490                 return -ENODEV;
491
492         old_table = get_table_protected(dp);
493         new_table = flow_tbl_alloc(TBL_MIN_BUCKETS);
494         if (!new_table)
495                 return -ENOMEM;
496
497         rcu_assign_pointer(dp->table, new_table);
498
499         flow_tbl_deferred_destroy(old_table);
500         return 0;
501 }
502
503 static int validate_actions(const struct nlattr *attr,
504                                 const struct sw_flow_key *key, int depth);
505
506 static int validate_sample(const struct nlattr *attr,
507                                 const struct sw_flow_key *key, int depth)
508 {
509         const struct nlattr *attrs[OVS_SAMPLE_ATTR_MAX + 1];
510         const struct nlattr *probability, *actions;
511         const struct nlattr *a;
512         int rem;
513
514         memset(attrs, 0, sizeof(attrs));
515         nla_for_each_nested(a, attr, rem) {
516                 int type = nla_type(a);
517                 if (!type || type > OVS_SAMPLE_ATTR_MAX || attrs[type])
518                         return -EINVAL;
519                 attrs[type] = a;
520         }
521         if (rem)
522                 return -EINVAL;
523
524         probability = attrs[OVS_SAMPLE_ATTR_PROBABILITY];
525         if (!probability || nla_len(probability) != sizeof(u32))
526                 return -EINVAL;
527
528         actions = attrs[OVS_SAMPLE_ATTR_ACTIONS];
529         if (!actions || (nla_len(actions) && nla_len(actions) < NLA_HDRLEN))
530                 return -EINVAL;
531         return validate_actions(actions, key, depth + 1);
532 }
533
534 static int validate_set(const struct nlattr *a,
535                         const struct sw_flow_key *flow_key)
536 {
537         const struct nlattr *ovs_key = nla_data(a);
538         int key_type = nla_type(ovs_key);
539
540         /* There can be only one key in a action */
541         if (nla_total_size(nla_len(ovs_key)) != nla_len(a))
542                 return -EINVAL;
543
544         if (key_type > OVS_KEY_ATTR_MAX ||
545             nla_len(ovs_key) != ovs_key_lens[key_type])
546                 return -EINVAL;
547
548         switch (key_type) {
549         const struct ovs_key_ipv4 *ipv4_key;
550
551         case OVS_KEY_ATTR_PRIORITY:
552         case OVS_KEY_ATTR_TUN_ID:
553         case OVS_KEY_ATTR_ETHERNET:
554                 break;
555
556         case OVS_KEY_ATTR_IPV4:
557                 if (flow_key->eth.type != htons(ETH_P_IP))
558                         return -EINVAL;
559
560                 if (!flow_key->ipv4.addr.src || !flow_key->ipv4.addr.dst)
561                         return -EINVAL;
562
563                 ipv4_key = nla_data(ovs_key);
564                 if (ipv4_key->ipv4_proto != flow_key->ip.proto)
565                         return -EINVAL;
566
567                 if (ipv4_key->ipv4_frag != flow_key->ip.frag)
568                         return -EINVAL;
569
570                 break;
571
572         case OVS_KEY_ATTR_TCP:
573                 if (flow_key->ip.proto != IPPROTO_TCP)
574                         return -EINVAL;
575
576                 if (!flow_key->ipv4.tp.src || !flow_key->ipv4.tp.dst)
577                         return -EINVAL;
578
579                 break;
580
581         case OVS_KEY_ATTR_UDP:
582                 if (flow_key->ip.proto != IPPROTO_UDP)
583                         return -EINVAL;
584
585                 if (!flow_key->ipv4.tp.src || !flow_key->ipv4.tp.dst)
586                         return -EINVAL;
587                 break;
588
589         default:
590                 return -EINVAL;
591         }
592
593         return 0;
594 }
595
596 static int validate_userspace(const struct nlattr *attr)
597 {
598         static const struct nla_policy userspace_policy[OVS_USERSPACE_ATTR_MAX + 1] =   {
599                 [OVS_USERSPACE_ATTR_PID] = {.type = NLA_U32 },
600                 [OVS_USERSPACE_ATTR_USERDATA] = {.type = NLA_U64 },
601         };
602         struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1];
603         int error;
604
605         error = nla_parse_nested(a, OVS_USERSPACE_ATTR_MAX,
606                                  attr, userspace_policy);
607         if (error)
608                 return error;
609
610         if (!a[OVS_USERSPACE_ATTR_PID] ||
611             !nla_get_u32(a[OVS_USERSPACE_ATTR_PID]))
612                 return -EINVAL;
613
614         return 0;
615 }
616
617 static int validate_actions(const struct nlattr *attr,
618                                 const struct sw_flow_key *key,  int depth)
619 {
620         const struct nlattr *a;
621         int rem, err;
622
623         if (depth >= SAMPLE_ACTION_DEPTH)
624                 return -EOVERFLOW;
625
626         nla_for_each_nested(a, attr, rem) {
627                 /* Expected argument lengths, (u32)-1 for variable length. */
628                 static const u32 action_lens[OVS_ACTION_ATTR_MAX + 1] = {
629                         [OVS_ACTION_ATTR_OUTPUT] = sizeof(u32),
630                         [OVS_ACTION_ATTR_USERSPACE] = (u32)-1,
631                         [OVS_ACTION_ATTR_PUSH_VLAN] = sizeof(struct ovs_action_push_vlan),
632                         [OVS_ACTION_ATTR_POP_VLAN] = 0,
633                         [OVS_ACTION_ATTR_SET] = (u32)-1,
634                         [OVS_ACTION_ATTR_SAMPLE] = (u32)-1
635                 };
636                 const struct ovs_action_push_vlan *vlan;
637                 int type = nla_type(a);
638
639                 if (type > OVS_ACTION_ATTR_MAX ||
640                     (action_lens[type] != nla_len(a) &&
641                      action_lens[type] != (u32)-1))
642                         return -EINVAL;
643
644                 switch (type) {
645                 case OVS_ACTION_ATTR_UNSPEC:
646                         return -EINVAL;
647
648                 case OVS_ACTION_ATTR_USERSPACE:
649                         err = validate_userspace(a);
650                         if (err)
651                                 return err;
652                         break;
653
654                 case OVS_ACTION_ATTR_OUTPUT:
655                         if (nla_get_u32(a) >= DP_MAX_PORTS)
656                                 return -EINVAL;
657                         break;
658
659
660                 case OVS_ACTION_ATTR_POP_VLAN:
661                         break;
662
663                 case OVS_ACTION_ATTR_PUSH_VLAN:
664                         vlan = nla_data(a);
665                         if (vlan->vlan_tpid != htons(ETH_P_8021Q))
666                                 return -EINVAL;
667                         if (!(vlan->vlan_tci & htons(VLAN_TAG_PRESENT)))
668                                 return -EINVAL;
669                         break;
670
671                 case OVS_ACTION_ATTR_SET:
672                         err = validate_set(a, key);
673                         if (err)
674                                 return err;
675                         break;
676
677                 case OVS_ACTION_ATTR_SAMPLE:
678                         err = validate_sample(a, key, depth);
679                         if (err)
680                                 return err;
681                         break;
682
683                 default:
684                         return -EINVAL;
685                 }
686         }
687
688         if (rem > 0)
689                 return -EINVAL;
690
691         return 0;
692 }
693
694 static void clear_stats(struct sw_flow *flow)
695 {
696         flow->used = 0;
697         flow->tcp_flags = 0;
698         flow->packet_count = 0;
699         flow->byte_count = 0;
700 }
701
702 static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
703 {
704         struct ovs_header *ovs_header = info->userhdr;
705         struct nlattr **a = info->attrs;
706         struct sw_flow_actions *acts;
707         struct sk_buff *packet;
708         struct sw_flow *flow;
709         struct datapath *dp;
710         struct ethhdr *eth;
711         int len;
712         int err;
713         int key_len;
714
715         err = -EINVAL;
716         if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
717             !a[OVS_PACKET_ATTR_ACTIONS] ||
718             nla_len(a[OVS_PACKET_ATTR_PACKET]) < ETH_HLEN)
719                 goto err;
720
721         len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
722         packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
723         err = -ENOMEM;
724         if (!packet)
725                 goto err;
726         skb_reserve(packet, NET_IP_ALIGN);
727
728         memcpy(__skb_put(packet, len), nla_data(a[OVS_PACKET_ATTR_PACKET]), len);
729
730         skb_reset_mac_header(packet);
731         eth = eth_hdr(packet);
732
733         /* Normally, setting the skb 'protocol' field would be handled by a
734          * call to eth_type_trans(), but it assumes there's a sending
735          * device, which we may not have. */
736         if (ntohs(eth->h_proto) >= 1536)
737                 packet->protocol = eth->h_proto;
738         else
739                 packet->protocol = htons(ETH_P_802_2);
740
741         /* Build an sw_flow for sending this packet. */
742         flow = flow_alloc();
743         err = PTR_ERR(flow);
744         if (IS_ERR(flow))
745                 goto err_kfree_skb;
746
747         err = flow_extract(packet, -1, &flow->key, &key_len);
748         if (err)
749                 goto err_flow_put;
750
751         err = flow_metadata_from_nlattrs(&flow->key.phy.priority,
752                                          &flow->key.phy.in_port,
753                                          &flow->key.phy.tun_id,
754                                          a[OVS_PACKET_ATTR_KEY]);
755         if (err)
756                 goto err_flow_put;
757
758         err = validate_actions(a[OVS_PACKET_ATTR_ACTIONS], &flow->key, 0);
759         if (err)
760                 goto err_flow_put;
761
762         flow->hash = flow_hash(&flow->key, key_len);
763
764         acts = flow_actions_alloc(a[OVS_PACKET_ATTR_ACTIONS]);
765         err = PTR_ERR(acts);
766         if (IS_ERR(acts))
767                 goto err_flow_put;
768         rcu_assign_pointer(flow->sf_acts, acts);
769
770         OVS_CB(packet)->flow = flow;
771         packet->priority = flow->key.phy.priority;
772
773         rcu_read_lock();
774         dp = get_dp(ovs_header->dp_ifindex);
775         err = -ENODEV;
776         if (!dp)
777                 goto err_unlock;
778
779         local_bh_disable();
780         err = execute_actions(dp, packet);
781         local_bh_enable();
782         rcu_read_unlock();
783
784         flow_put(flow);
785         return err;
786
787 err_unlock:
788         rcu_read_unlock();
789 err_flow_put:
790         flow_put(flow);
791 err_kfree_skb:
792         kfree_skb(packet);
793 err:
794         return err;
795 }
796
797 static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
798         [OVS_PACKET_ATTR_PACKET] = { .type = NLA_UNSPEC },
799         [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
800         [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
801 };
802
803 static struct genl_ops dp_packet_genl_ops[] = {
804         { .cmd = OVS_PACKET_CMD_EXECUTE,
805           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
806           .policy = packet_policy,
807           .doit = ovs_packet_cmd_execute
808         }
809 };
810
811 static void get_dp_stats(struct datapath *dp, struct ovs_dp_stats *stats)
812 {
813         int i;
814         struct flow_table *table = get_table_protected(dp);
815
816         stats->n_flows = flow_tbl_count(table);
817
818         stats->n_hit = stats->n_missed = stats->n_lost = 0;
819         for_each_possible_cpu(i) {
820                 const struct dp_stats_percpu *percpu_stats;
821                 struct dp_stats_percpu local_stats;
822                 unsigned seqcount;
823
824                 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
825
826                 do {
827                         seqcount = read_seqcount_begin(&percpu_stats->seqlock);
828                         local_stats = *percpu_stats;
829                 } while (read_seqcount_retry(&percpu_stats->seqlock, seqcount));
830
831                 stats->n_hit += local_stats.n_hit;
832                 stats->n_missed += local_stats.n_missed;
833                 stats->n_lost += local_stats.n_lost;
834         }
835 }
836
837 static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
838         [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
839         [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
840         [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
841 };
842
843 static struct genl_family dp_flow_genl_family = {
844         .id = GENL_ID_GENERATE,
845         .hdrsize = sizeof(struct ovs_header),
846         .name = OVS_FLOW_FAMILY,
847         .version = OVS_FLOW_VERSION,
848         .maxattr = OVS_FLOW_ATTR_MAX
849 };
850
851 static struct genl_multicast_group dp_flow_multicast_group = {
852         .name = OVS_FLOW_MCGROUP
853 };
854
855 /* Called with genl_lock. */
856 static int ovs_flow_cmd_fill_info(struct sw_flow *flow, struct datapath *dp,
857                                   struct sk_buff *skb, u32 pid,
858                                   u32 seq, u32 flags, u8 cmd)
859 {
860         const int skb_orig_len = skb->len;
861         const struct sw_flow_actions *sf_acts;
862         struct ovs_flow_stats stats;
863         struct ovs_header *ovs_header;
864         struct nlattr *nla;
865         unsigned long used;
866         u8 tcp_flags;
867         int err;
868
869         sf_acts = rcu_dereference_protected(flow->sf_acts,
870                                             lockdep_genl_is_held());
871
872         ovs_header = genlmsg_put(skb, pid, seq, &dp_flow_genl_family, flags, cmd);
873         if (!ovs_header)
874                 return -EMSGSIZE;
875
876         ovs_header->dp_ifindex = get_dpifindex(dp);
877
878         nla = nla_nest_start(skb, OVS_FLOW_ATTR_KEY);
879         if (!nla)
880                 goto nla_put_failure;
881         err = flow_to_nlattrs(&flow->key, skb);
882         if (err)
883                 goto error;
884         nla_nest_end(skb, nla);
885
886         spin_lock_bh(&flow->lock);
887         used = flow->used;
888         stats.n_packets = flow->packet_count;
889         stats.n_bytes = flow->byte_count;
890         tcp_flags = flow->tcp_flags;
891         spin_unlock_bh(&flow->lock);
892
893         if (used)
894                 NLA_PUT_U64(skb, OVS_FLOW_ATTR_USED, flow_used_time(used));
895
896         if (stats.n_packets)
897                 NLA_PUT(skb, OVS_FLOW_ATTR_STATS,
898                         sizeof(struct ovs_flow_stats), &stats);
899
900         if (tcp_flags)
901                 NLA_PUT_U8(skb, OVS_FLOW_ATTR_TCP_FLAGS, tcp_flags);
902
903         /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
904          * this is the first flow to be dumped into 'skb'.  This is unusual for
905          * Netlink but individual action lists can be longer than
906          * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
907          * The userspace caller can always fetch the actions separately if it
908          * really wants them.  (Most userspace callers in fact don't care.)
909          *
910          * This can only fail for dump operations because the skb is always
911          * properly sized for single flows.
912          */
913         err = nla_put(skb, OVS_FLOW_ATTR_ACTIONS, sf_acts->actions_len,
914                       sf_acts->actions);
915         if (err < 0 && skb_orig_len)
916                 goto error;
917
918         return genlmsg_end(skb, ovs_header);
919
920 nla_put_failure:
921         err = -EMSGSIZE;
922 error:
923         genlmsg_cancel(skb, ovs_header);
924         return err;
925 }
926
927 static struct sk_buff *ovs_flow_cmd_alloc_info(struct sw_flow *flow)
928 {
929         const struct sw_flow_actions *sf_acts;
930         int len;
931
932         sf_acts = rcu_dereference_protected(flow->sf_acts,
933                                             lockdep_genl_is_held());
934
935         /* OVS_FLOW_ATTR_KEY */
936         len = nla_total_size(FLOW_BUFSIZE);
937         /* OVS_FLOW_ATTR_ACTIONS */
938         len += nla_total_size(sf_acts->actions_len);
939         /* OVS_FLOW_ATTR_STATS */
940         len += nla_total_size(sizeof(struct ovs_flow_stats));
941         /* OVS_FLOW_ATTR_TCP_FLAGS */
942         len += nla_total_size(1);
943         /* OVS_FLOW_ATTR_USED */
944         len += nla_total_size(8);
945
946         len += NLMSG_ALIGN(sizeof(struct ovs_header));
947
948         return genlmsg_new(len, GFP_KERNEL);
949 }
950
951 static struct sk_buff *ovs_flow_cmd_build_info(struct sw_flow *flow,
952                                                struct datapath *dp,
953                                                u32 pid, u32 seq, u8 cmd)
954 {
955         struct sk_buff *skb;
956         int retval;
957
958         skb = ovs_flow_cmd_alloc_info(flow);
959         if (!skb)
960                 return ERR_PTR(-ENOMEM);
961
962         retval = ovs_flow_cmd_fill_info(flow, dp, skb, pid, seq, 0, cmd);
963         BUG_ON(retval < 0);
964         return skb;
965 }
966
967 static int ovs_flow_cmd_new_or_set(struct sk_buff *skb, struct genl_info *info)
968 {
969         struct nlattr **a = info->attrs;
970         struct ovs_header *ovs_header = info->userhdr;
971         struct sw_flow_key key;
972         struct sw_flow *flow;
973         struct sk_buff *reply;
974         struct datapath *dp;
975         struct flow_table *table;
976         int error;
977         int key_len;
978
979         /* Extract key. */
980         error = -EINVAL;
981         if (!a[OVS_FLOW_ATTR_KEY])
982                 goto error;
983         error = flow_from_nlattrs(&key, &key_len, a[OVS_FLOW_ATTR_KEY]);
984         if (error)
985                 goto error;
986
987         /* Validate actions. */
988         if (a[OVS_FLOW_ATTR_ACTIONS]) {
989                 error = validate_actions(a[OVS_FLOW_ATTR_ACTIONS], &key,  0);
990                 if (error)
991                         goto error;
992         } else if (info->genlhdr->cmd == OVS_FLOW_CMD_NEW) {
993                 error = -EINVAL;
994                 goto error;
995         }
996
997         dp = get_dp(ovs_header->dp_ifindex);
998         error = -ENODEV;
999         if (!dp)
1000                 goto error;
1001
1002         table = get_table_protected(dp);
1003         flow = flow_tbl_lookup(table, &key, key_len);
1004         if (!flow) {
1005                 struct sw_flow_actions *acts;
1006
1007                 /* Bail out if we're not allowed to create a new flow. */
1008                 error = -ENOENT;
1009                 if (info->genlhdr->cmd == OVS_FLOW_CMD_SET)
1010                         goto error;
1011
1012                 /* Expand table, if necessary, to make room. */
1013                 if (flow_tbl_need_to_expand(table)) {
1014                         struct flow_table *new_table;
1015
1016                         new_table = flow_tbl_expand(table);
1017                         if (!IS_ERR(new_table)) {
1018                                 rcu_assign_pointer(dp->table, new_table);
1019                                 flow_tbl_deferred_destroy(table);
1020                                 table = get_table_protected(dp);
1021                         }
1022                 }
1023
1024                 /* Allocate flow. */
1025                 flow = flow_alloc();
1026                 if (IS_ERR(flow)) {
1027                         error = PTR_ERR(flow);
1028                         goto error;
1029                 }
1030                 flow->key = key;
1031                 clear_stats(flow);
1032
1033                 /* Obtain actions. */
1034                 acts = flow_actions_alloc(a[OVS_FLOW_ATTR_ACTIONS]);
1035                 error = PTR_ERR(acts);
1036                 if (IS_ERR(acts))
1037                         goto error_free_flow;
1038                 rcu_assign_pointer(flow->sf_acts, acts);
1039
1040                 /* Put flow in bucket. */
1041                 flow->hash = flow_hash(&key, key_len);
1042                 flow_tbl_insert(table, flow);
1043
1044                 reply = ovs_flow_cmd_build_info(flow, dp, info->snd_pid,
1045                                                 info->snd_seq,
1046                                                 OVS_FLOW_CMD_NEW);
1047         } else {
1048                 /* We found a matching flow. */
1049                 struct sw_flow_actions *old_acts;
1050                 struct nlattr *acts_attrs;
1051
1052                 /* Bail out if we're not allowed to modify an existing flow.
1053                  * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1054                  * because Generic Netlink treats the latter as a dump
1055                  * request.  We also accept NLM_F_EXCL in case that bug ever
1056                  * gets fixed.
1057                  */
1058                 error = -EEXIST;
1059                 if (info->genlhdr->cmd == OVS_FLOW_CMD_NEW &&
1060                     info->nlhdr->nlmsg_flags & (NLM_F_CREATE | NLM_F_EXCL))
1061                         goto error;
1062
1063                 /* Update actions. */
1064                 old_acts = rcu_dereference_protected(flow->sf_acts,
1065                                                      lockdep_genl_is_held());
1066                 acts_attrs = a[OVS_FLOW_ATTR_ACTIONS];
1067                 if (acts_attrs &&
1068                    (old_acts->actions_len != nla_len(acts_attrs) ||
1069                    memcmp(old_acts->actions, nla_data(acts_attrs),
1070                           old_acts->actions_len))) {
1071                         struct sw_flow_actions *new_acts;
1072
1073                         new_acts = flow_actions_alloc(acts_attrs);
1074                         error = PTR_ERR(new_acts);
1075                         if (IS_ERR(new_acts))
1076                                 goto error;
1077
1078                         rcu_assign_pointer(flow->sf_acts, new_acts);
1079                         flow_deferred_free_acts(old_acts);
1080                 }
1081
1082                 reply = ovs_flow_cmd_build_info(flow, dp, info->snd_pid,
1083                                                info->snd_seq, OVS_FLOW_CMD_NEW);
1084
1085                 /* Clear stats. */
1086                 if (a[OVS_FLOW_ATTR_CLEAR]) {
1087                         spin_lock_bh(&flow->lock);
1088                         clear_stats(flow);
1089                         spin_unlock_bh(&flow->lock);
1090                 }
1091         }
1092
1093         if (!IS_ERR(reply))
1094                 genl_notify(reply, genl_info_net(info), info->snd_pid,
1095                            dp_flow_multicast_group.id, info->nlhdr, GFP_KERNEL);
1096         else
1097                 netlink_set_err(INIT_NET_GENL_SOCK, 0,
1098                                 dp_flow_multicast_group.id, PTR_ERR(reply));
1099         return 0;
1100
1101 error_free_flow:
1102         flow_put(flow);
1103 error:
1104         return error;
1105 }
1106
1107 static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1108 {
1109         struct nlattr **a = info->attrs;
1110         struct ovs_header *ovs_header = info->userhdr;
1111         struct sw_flow_key key;
1112         struct sk_buff *reply;
1113         struct sw_flow *flow;
1114         struct datapath *dp;
1115         struct flow_table *table;
1116         int err;
1117         int key_len;
1118
1119         if (!a[OVS_FLOW_ATTR_KEY])
1120                 return -EINVAL;
1121         err = flow_from_nlattrs(&key, &key_len, a[OVS_FLOW_ATTR_KEY]);
1122         if (err)
1123                 return err;
1124
1125         dp = get_dp(ovs_header->dp_ifindex);
1126         if (!dp)
1127                 return -ENODEV;
1128
1129         table = get_table_protected(dp);
1130         flow = flow_tbl_lookup(table, &key, key_len);
1131         if (!flow)
1132                 return -ENOENT;
1133
1134         reply = ovs_flow_cmd_build_info(flow, dp, info->snd_pid,
1135                                         info->snd_seq, OVS_FLOW_CMD_NEW);
1136         if (IS_ERR(reply))
1137                 return PTR_ERR(reply);
1138
1139         return genlmsg_reply(reply, info);
1140 }
1141
1142 static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1143 {
1144         struct nlattr **a = info->attrs;
1145         struct ovs_header *ovs_header = info->userhdr;
1146         struct sw_flow_key key;
1147         struct sk_buff *reply;
1148         struct sw_flow *flow;
1149         struct datapath *dp;
1150         struct flow_table *table;
1151         int err;
1152         int key_len;
1153
1154         if (!a[OVS_FLOW_ATTR_KEY])
1155                 return flush_flows(ovs_header->dp_ifindex);
1156         err = flow_from_nlattrs(&key, &key_len, a[OVS_FLOW_ATTR_KEY]);
1157         if (err)
1158                 return err;
1159
1160         dp = get_dp(ovs_header->dp_ifindex);
1161         if (!dp)
1162                 return -ENODEV;
1163
1164         table = get_table_protected(dp);
1165         flow = flow_tbl_lookup(table, &key, key_len);
1166         if (!flow)
1167                 return -ENOENT;
1168
1169         reply = ovs_flow_cmd_alloc_info(flow);
1170         if (!reply)
1171                 return -ENOMEM;
1172
1173         flow_tbl_remove(table, flow);
1174
1175         err = ovs_flow_cmd_fill_info(flow, dp, reply, info->snd_pid,
1176                                      info->snd_seq, 0, OVS_FLOW_CMD_DEL);
1177         BUG_ON(err < 0);
1178
1179         flow_deferred_free(flow);
1180
1181         genl_notify(reply, genl_info_net(info), info->snd_pid,
1182                     dp_flow_multicast_group.id, info->nlhdr, GFP_KERNEL);
1183         return 0;
1184 }
1185
1186 static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1187 {
1188         struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
1189         struct datapath *dp;
1190
1191         dp = get_dp(ovs_header->dp_ifindex);
1192         if (!dp)
1193                 return -ENODEV;
1194
1195         for (;;) {
1196                 struct sw_flow *flow;
1197                 u32 bucket, obj;
1198
1199                 bucket = cb->args[0];
1200                 obj = cb->args[1];
1201                 flow = flow_tbl_next(get_table_protected(dp), &bucket, &obj);
1202                 if (!flow)
1203                         break;
1204
1205                 if (ovs_flow_cmd_fill_info(flow, dp, skb,
1206                                            NETLINK_CB(cb->skb).pid,
1207                                            cb->nlh->nlmsg_seq, NLM_F_MULTI,
1208                                            OVS_FLOW_CMD_NEW) < 0)
1209                         break;
1210
1211                 cb->args[0] = bucket;
1212                 cb->args[1] = obj;
1213         }
1214         return skb->len;
1215 }
1216
1217 static struct genl_ops dp_flow_genl_ops[] = {
1218         { .cmd = OVS_FLOW_CMD_NEW,
1219           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1220           .policy = flow_policy,
1221           .doit = ovs_flow_cmd_new_or_set
1222         },
1223         { .cmd = OVS_FLOW_CMD_DEL,
1224           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1225           .policy = flow_policy,
1226           .doit = ovs_flow_cmd_del
1227         },
1228         { .cmd = OVS_FLOW_CMD_GET,
1229           .flags = 0,               /* OK for unprivileged users. */
1230           .policy = flow_policy,
1231           .doit = ovs_flow_cmd_get,
1232           .dumpit = ovs_flow_cmd_dump
1233         },
1234         { .cmd = OVS_FLOW_CMD_SET,
1235           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1236           .policy = flow_policy,
1237           .doit = ovs_flow_cmd_new_or_set,
1238         },
1239 };
1240
1241 static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1242 #ifdef HAVE_NLA_NUL_STRING
1243         [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1244 #endif
1245         [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1246 };
1247
1248 static struct genl_family dp_datapath_genl_family = {
1249         .id = GENL_ID_GENERATE,
1250         .hdrsize = sizeof(struct ovs_header),
1251         .name = OVS_DATAPATH_FAMILY,
1252         .version = OVS_DATAPATH_VERSION,
1253         .maxattr = OVS_DP_ATTR_MAX
1254 };
1255
1256 static struct genl_multicast_group dp_datapath_multicast_group = {
1257         .name = OVS_DATAPATH_MCGROUP
1258 };
1259
1260 static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
1261                                 u32 pid, u32 seq, u32 flags, u8 cmd)
1262 {
1263         struct ovs_header *ovs_header;
1264         struct ovs_dp_stats dp_stats;
1265         int err;
1266
1267         ovs_header = genlmsg_put(skb, pid, seq, &dp_datapath_genl_family,
1268                                    flags, cmd);
1269         if (!ovs_header)
1270                 goto error;
1271
1272         ovs_header->dp_ifindex = get_dpifindex(dp);
1273
1274         rcu_read_lock();
1275         err = nla_put_string(skb, OVS_DP_ATTR_NAME, dp_name(dp));
1276         rcu_read_unlock();
1277         if (err)
1278                 goto nla_put_failure;
1279
1280         get_dp_stats(dp, &dp_stats);
1281         NLA_PUT(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats), &dp_stats);
1282
1283         return genlmsg_end(skb, ovs_header);
1284
1285 nla_put_failure:
1286         genlmsg_cancel(skb, ovs_header);
1287 error:
1288         return -EMSGSIZE;
1289 }
1290
1291 static struct sk_buff *ovs_dp_cmd_build_info(struct datapath *dp, u32 pid,
1292                                              u32 seq, u8 cmd)
1293 {
1294         struct sk_buff *skb;
1295         int retval;
1296
1297         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1298         if (!skb)
1299                 return ERR_PTR(-ENOMEM);
1300
1301         retval = ovs_dp_cmd_fill_info(dp, skb, pid, seq, 0, cmd);
1302         if (retval < 0) {
1303                 kfree_skb(skb);
1304                 return ERR_PTR(retval);
1305         }
1306         return skb;
1307 }
1308
1309 static int ovs_dp_cmd_validate(struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1310 {
1311         return CHECK_NUL_STRING(a[OVS_DP_ATTR_NAME], IFNAMSIZ - 1);
1312 }
1313
1314 /* Called with genl_mutex and optionally with RTNL lock also. */
1315 static struct datapath *lookup_datapath(struct ovs_header *ovs_header,
1316                                         struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1317 {
1318         struct datapath *dp;
1319
1320         if (!a[OVS_DP_ATTR_NAME])
1321                 dp = get_dp(ovs_header->dp_ifindex);
1322         else {
1323                 struct vport *vport;
1324
1325                 rcu_read_lock();
1326                 vport = vport_locate(nla_data(a[OVS_DP_ATTR_NAME]));
1327                 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
1328                 rcu_read_unlock();
1329         }
1330         return dp ? dp : ERR_PTR(-ENODEV);
1331 }
1332
1333 static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1334 {
1335         struct nlattr **a = info->attrs;
1336         struct vport_parms parms;
1337         struct sk_buff *reply;
1338         struct datapath *dp;
1339         struct vport *vport;
1340         int err;
1341
1342         err = -EINVAL;
1343         if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1344                 goto err;
1345
1346         err = ovs_dp_cmd_validate(a);
1347         if (err)
1348                 goto err;
1349
1350         rtnl_lock();
1351         err = -ENODEV;
1352         if (!try_module_get(THIS_MODULE))
1353                 goto err_unlock_rtnl;
1354
1355         err = -ENOMEM;
1356         dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1357         if (dp == NULL)
1358                 goto err_put_module;
1359         INIT_LIST_HEAD(&dp->port_list);
1360
1361         /* Initialize kobject for bridge.  This will be added as
1362          * /sys/class/net/<devname>/brif later, if sysfs is enabled. */
1363         dp->ifobj.kset = NULL;
1364         kobject_init(&dp->ifobj, &dp_ktype);
1365
1366         /* Allocate table. */
1367         err = -ENOMEM;
1368         rcu_assign_pointer(dp->table, flow_tbl_alloc(TBL_MIN_BUCKETS));
1369         if (!dp->table)
1370                 goto err_free_dp;
1371
1372         dp->stats_percpu = alloc_percpu(struct dp_stats_percpu);
1373         if (!dp->stats_percpu) {
1374                 err = -ENOMEM;
1375                 goto err_destroy_table;
1376         }
1377
1378         /* Set up our datapath device. */
1379         parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1380         parms.type = OVS_VPORT_TYPE_INTERNAL;
1381         parms.options = NULL;
1382         parms.dp = dp;
1383         parms.port_no = OVSP_LOCAL;
1384         parms.upcall_pid = nla_get_u32(a[OVS_DP_ATTR_UPCALL_PID]);
1385
1386         vport = new_vport(&parms);
1387         if (IS_ERR(vport)) {
1388                 err = PTR_ERR(vport);
1389                 if (err == -EBUSY)
1390                         err = -EEXIST;
1391
1392                 goto err_destroy_percpu;
1393         }
1394
1395         reply = ovs_dp_cmd_build_info(dp, info->snd_pid,
1396                                       info->snd_seq, OVS_DP_CMD_NEW);
1397         err = PTR_ERR(reply);
1398         if (IS_ERR(reply))
1399                 goto err_destroy_local_port;
1400
1401         list_add_tail(&dp->list_node, &dps);
1402         dp_sysfs_add_dp(dp);
1403
1404         rtnl_unlock();
1405
1406         genl_notify(reply, genl_info_net(info), info->snd_pid,
1407                     dp_datapath_multicast_group.id, info->nlhdr, GFP_KERNEL);
1408         return 0;
1409
1410 err_destroy_local_port:
1411         dp_detach_port(get_vport_protected(dp, OVSP_LOCAL));
1412 err_destroy_percpu:
1413         free_percpu(dp->stats_percpu);
1414 err_destroy_table:
1415         flow_tbl_destroy(get_table_protected(dp));
1416 err_free_dp:
1417         kfree(dp);
1418 err_put_module:
1419         module_put(THIS_MODULE);
1420 err_unlock_rtnl:
1421         rtnl_unlock();
1422 err:
1423         return err;
1424 }
1425
1426 static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1427 {
1428         struct vport *vport, *next_vport;
1429         struct sk_buff *reply;
1430         struct datapath *dp;
1431         int err;
1432
1433         err = ovs_dp_cmd_validate(info->attrs);
1434         if (err)
1435                 goto exit;
1436
1437         rtnl_lock();
1438         dp = lookup_datapath(info->userhdr, info->attrs);
1439         err = PTR_ERR(dp);
1440         if (IS_ERR(dp))
1441                 goto exit_unlock;
1442
1443         reply = ovs_dp_cmd_build_info(dp, info->snd_pid,
1444                                       info->snd_seq, OVS_DP_CMD_DEL);
1445         err = PTR_ERR(reply);
1446         if (IS_ERR(reply))
1447                 goto exit_unlock;
1448
1449         list_for_each_entry_safe(vport, next_vport, &dp->port_list, node)
1450                 if (vport->port_no != OVSP_LOCAL)
1451                         dp_detach_port(vport);
1452
1453         dp_sysfs_del_dp(dp);
1454         list_del(&dp->list_node);
1455         dp_detach_port(get_vport_protected(dp, OVSP_LOCAL));
1456
1457         /* rtnl_unlock() will wait until all the references to devices that
1458          * are pending unregistration have been dropped.  We do it here to
1459          * ensure that any internal devices (which contain DP pointers) are
1460          * fully destroyed before freeing the datapath.
1461          */
1462         rtnl_unlock();
1463
1464         call_rcu(&dp->rcu, destroy_dp_rcu);
1465         module_put(THIS_MODULE);
1466
1467         genl_notify(reply, genl_info_net(info), info->snd_pid,
1468                     dp_datapath_multicast_group.id, info->nlhdr, GFP_KERNEL);
1469
1470         return 0;
1471
1472 exit_unlock:
1473         rtnl_unlock();
1474 exit:
1475         return err;
1476 }
1477
1478 static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1479 {
1480         struct sk_buff *reply;
1481         struct datapath *dp;
1482         int err;
1483
1484         err = ovs_dp_cmd_validate(info->attrs);
1485         if (err)
1486                 return err;
1487
1488         dp = lookup_datapath(info->userhdr, info->attrs);
1489         if (IS_ERR(dp))
1490                 return PTR_ERR(dp);
1491
1492         reply = ovs_dp_cmd_build_info(dp, info->snd_pid,
1493                                       info->snd_seq, OVS_DP_CMD_NEW);
1494         if (IS_ERR(reply)) {
1495                 err = PTR_ERR(reply);
1496                 netlink_set_err(INIT_NET_GENL_SOCK, 0,
1497                                 dp_datapath_multicast_group.id, err);
1498                 return 0;
1499         }
1500
1501         genl_notify(reply, genl_info_net(info), info->snd_pid,
1502                     dp_datapath_multicast_group.id, info->nlhdr, GFP_KERNEL);
1503         return 0;
1504 }
1505
1506 static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1507 {
1508         struct sk_buff *reply;
1509         struct datapath *dp;
1510         int err;
1511
1512         err = ovs_dp_cmd_validate(info->attrs);
1513         if (err)
1514                 return err;
1515
1516         dp = lookup_datapath(info->userhdr, info->attrs);
1517         if (IS_ERR(dp))
1518                 return PTR_ERR(dp);
1519
1520         reply = ovs_dp_cmd_build_info(dp, info->snd_pid,
1521                                       info->snd_seq, OVS_DP_CMD_NEW);
1522         if (IS_ERR(reply))
1523                 return PTR_ERR(reply);
1524
1525         return genlmsg_reply(reply, info);
1526 }
1527
1528 static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1529 {
1530         struct datapath *dp;
1531         int skip = cb->args[0];
1532         int i = 0;
1533
1534         list_for_each_entry(dp, &dps, list_node) {
1535                 if (i < skip)
1536                         continue;
1537                 if (ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).pid,
1538                                          cb->nlh->nlmsg_seq, NLM_F_MULTI,
1539                                          OVS_DP_CMD_NEW) < 0)
1540                         break;
1541                 i++;
1542         }
1543
1544         cb->args[0] = i;
1545
1546         return skb->len;
1547 }
1548
1549 static struct genl_ops dp_datapath_genl_ops[] = {
1550         { .cmd = OVS_DP_CMD_NEW,
1551           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1552           .policy = datapath_policy,
1553           .doit = ovs_dp_cmd_new
1554         },
1555         { .cmd = OVS_DP_CMD_DEL,
1556           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1557           .policy = datapath_policy,
1558           .doit = ovs_dp_cmd_del
1559         },
1560         { .cmd = OVS_DP_CMD_GET,
1561           .flags = 0,               /* OK for unprivileged users. */
1562           .policy = datapath_policy,
1563           .doit = ovs_dp_cmd_get,
1564           .dumpit = ovs_dp_cmd_dump
1565         },
1566         { .cmd = OVS_DP_CMD_SET,
1567           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1568           .policy = datapath_policy,
1569           .doit = ovs_dp_cmd_set,
1570         },
1571 };
1572
1573 static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
1574 #ifdef HAVE_NLA_NUL_STRING
1575         [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1576         [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
1577         [OVS_VPORT_ATTR_ADDRESS] = { .len = ETH_ALEN },
1578 #else
1579         [OVS_VPORT_ATTR_STATS] = { .minlen = sizeof(struct ovs_vport_stats) },
1580         [OVS_VPORT_ATTR_ADDRESS] = { .minlen = ETH_ALEN },
1581 #endif
1582         [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
1583         [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
1584         [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1585         [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
1586 };
1587
1588 static struct genl_family dp_vport_genl_family = {
1589         .id = GENL_ID_GENERATE,
1590         .hdrsize = sizeof(struct ovs_header),
1591         .name = OVS_VPORT_FAMILY,
1592         .version = OVS_VPORT_VERSION,
1593         .maxattr = OVS_VPORT_ATTR_MAX
1594 };
1595
1596 struct genl_multicast_group dp_vport_multicast_group = {
1597         .name = OVS_VPORT_MCGROUP
1598 };
1599
1600 /* Called with RTNL lock or RCU read lock. */
1601 static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
1602                                    u32 pid, u32 seq, u32 flags, u8 cmd)
1603 {
1604         struct ovs_header *ovs_header;
1605         struct ovs_vport_stats vport_stats;
1606         int err;
1607
1608         ovs_header = genlmsg_put(skb, pid, seq, &dp_vport_genl_family,
1609                                  flags, cmd);
1610         if (!ovs_header)
1611                 return -EMSGSIZE;
1612
1613         ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1614
1615         NLA_PUT_U32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no);
1616         NLA_PUT_U32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type);
1617         NLA_PUT_STRING(skb, OVS_VPORT_ATTR_NAME, vport->ops->get_name(vport));
1618         NLA_PUT_U32(skb, OVS_VPORT_ATTR_UPCALL_PID, vport->upcall_pid);
1619
1620         vport_get_stats(vport, &vport_stats);
1621         NLA_PUT(skb, OVS_VPORT_ATTR_STATS, sizeof(struct ovs_vport_stats),
1622                 &vport_stats);
1623
1624         NLA_PUT(skb, OVS_VPORT_ATTR_ADDRESS, ETH_ALEN,
1625                 vport->ops->get_addr(vport));
1626
1627         err = vport_get_options(vport, skb);
1628         if (err == -EMSGSIZE)
1629                 goto error;
1630
1631         return genlmsg_end(skb, ovs_header);
1632
1633 nla_put_failure:
1634         err = -EMSGSIZE;
1635 error:
1636         genlmsg_cancel(skb, ovs_header);
1637         return err;
1638 }
1639
1640 /* Called with RTNL lock or RCU read lock. */
1641 struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 pid,
1642                                          u32 seq, u8 cmd)
1643 {
1644         struct sk_buff *skb;
1645         int retval;
1646
1647         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1648         if (!skb)
1649                 return ERR_PTR(-ENOMEM);
1650
1651         retval = ovs_vport_cmd_fill_info(vport, skb, pid, seq, 0, cmd);
1652         if (retval < 0) {
1653                 kfree_skb(skb);
1654                 return ERR_PTR(retval);
1655         }
1656         return skb;
1657 }
1658
1659 static int ovs_vport_cmd_validate(struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1660 {
1661         return CHECK_NUL_STRING(a[OVS_VPORT_ATTR_NAME], IFNAMSIZ - 1);
1662 }
1663
1664 /* Called with RTNL lock or RCU read lock. */
1665 static struct vport *lookup_vport(struct ovs_header *ovs_header,
1666                                   struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1667 {
1668         struct datapath *dp;
1669         struct vport *vport;
1670
1671         if (a[OVS_VPORT_ATTR_NAME]) {
1672                 vport = vport_locate(nla_data(a[OVS_VPORT_ATTR_NAME]));
1673                 if (!vport)
1674                         return ERR_PTR(-ENODEV);
1675                 return vport;
1676         } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1677                 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1678
1679                 if (port_no >= DP_MAX_PORTS)
1680                         return ERR_PTR(-EFBIG);
1681
1682                 dp = get_dp(ovs_header->dp_ifindex);
1683                 if (!dp)
1684                         return ERR_PTR(-ENODEV);
1685
1686                 vport = get_vport_protected(dp, port_no);
1687                 if (!vport)
1688                         return ERR_PTR(-ENOENT);
1689                 return vport;
1690         } else
1691                 return ERR_PTR(-EINVAL);
1692 }
1693
1694 /* Called with RTNL lock. */
1695 static int change_vport(struct vport *vport,
1696                         struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1697 {
1698         int err = 0;
1699
1700         if (a[OVS_VPORT_ATTR_STATS])
1701                 vport_set_stats(vport, nla_data(a[OVS_VPORT_ATTR_STATS]));
1702
1703         if (a[OVS_VPORT_ATTR_ADDRESS])
1704                 err = vport_set_addr(vport, nla_data(a[OVS_VPORT_ATTR_ADDRESS]));
1705
1706         return err;
1707 }
1708
1709 static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1710 {
1711         struct nlattr **a = info->attrs;
1712         struct ovs_header *ovs_header = info->userhdr;
1713         struct vport_parms parms;
1714         struct sk_buff *reply;
1715         struct vport *vport;
1716         struct datapath *dp;
1717         u32 port_no;
1718         int err;
1719
1720         err = -EINVAL;
1721         if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1722             !a[OVS_VPORT_ATTR_UPCALL_PID])
1723                 goto exit;
1724
1725         err = ovs_vport_cmd_validate(a);
1726         if (err)
1727                 goto exit;
1728
1729         rtnl_lock();
1730         dp = get_dp(ovs_header->dp_ifindex);
1731         err = -ENODEV;
1732         if (!dp)
1733                 goto exit_unlock;
1734
1735         if (a[OVS_VPORT_ATTR_PORT_NO]) {
1736                 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1737
1738                 err = -EFBIG;
1739                 if (port_no >= DP_MAX_PORTS)
1740                         goto exit_unlock;
1741
1742                 vport = get_vport_protected(dp, port_no);
1743                 err = -EBUSY;
1744                 if (vport)
1745                         goto exit_unlock;
1746         } else {
1747                 for (port_no = 1; ; port_no++) {
1748                         if (port_no >= DP_MAX_PORTS) {
1749                                 err = -EFBIG;
1750                                 goto exit_unlock;
1751                         }
1752                         vport = get_vport_protected(dp, port_no);
1753                         if (!vport)
1754                                 break;
1755                 }
1756         }
1757
1758         parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
1759         parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1760         parms.options = a[OVS_VPORT_ATTR_OPTIONS];
1761         parms.dp = dp;
1762         parms.port_no = port_no;
1763         parms.upcall_pid = nla_get_u32(a[OVS_VPORT_ATTR_UPCALL_PID]);
1764
1765         vport = new_vport(&parms);
1766         err = PTR_ERR(vport);
1767         if (IS_ERR(vport))
1768                 goto exit_unlock;
1769
1770         dp_sysfs_add_if(vport);
1771
1772         err = change_vport(vport, a);
1773         if (!err) {
1774                 reply = ovs_vport_cmd_build_info(vport, info->snd_pid,
1775                                                  info->snd_seq,
1776                                                  OVS_VPORT_CMD_NEW);
1777                 if (IS_ERR(reply))
1778                         err = PTR_ERR(reply);
1779         }
1780         if (err) {
1781                 dp_detach_port(vport);
1782                 goto exit_unlock;
1783         }
1784         genl_notify(reply, genl_info_net(info), info->snd_pid,
1785                     dp_vport_multicast_group.id, info->nlhdr, GFP_KERNEL);
1786
1787
1788 exit_unlock:
1789         rtnl_unlock();
1790 exit:
1791         return err;
1792 }
1793
1794 static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
1795 {
1796         struct nlattr **a = info->attrs;
1797         struct sk_buff *reply;
1798         struct vport *vport;
1799         int err;
1800
1801         err = ovs_vport_cmd_validate(a);
1802         if (err)
1803                 goto exit;
1804
1805         rtnl_lock();
1806         vport = lookup_vport(info->userhdr, a);
1807         err = PTR_ERR(vport);
1808         if (IS_ERR(vport))
1809                 goto exit_unlock;
1810
1811         err = 0;
1812         if (a[OVS_VPORT_ATTR_TYPE] &&
1813             nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type)
1814                 err = -EINVAL;
1815
1816         if (!err && a[OVS_VPORT_ATTR_OPTIONS])
1817                 err = vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
1818         if (!err)
1819                 err = change_vport(vport, a);
1820         if (!err && a[OVS_VPORT_ATTR_UPCALL_PID])
1821                 vport->upcall_pid = nla_get_u32(a[OVS_VPORT_ATTR_UPCALL_PID]);
1822
1823         reply = ovs_vport_cmd_build_info(vport, info->snd_pid, info->snd_seq,
1824                                          OVS_VPORT_CMD_NEW);
1825         if (IS_ERR(reply)) {
1826                 err = PTR_ERR(reply);
1827                 netlink_set_err(INIT_NET_GENL_SOCK, 0,
1828                                 dp_vport_multicast_group.id, err);
1829                 return 0;
1830         }
1831
1832         genl_notify(reply, genl_info_net(info), info->snd_pid,
1833                     dp_vport_multicast_group.id, info->nlhdr, GFP_KERNEL);
1834
1835 exit_unlock:
1836         rtnl_unlock();
1837 exit:
1838         return err;
1839 }
1840
1841 static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
1842 {
1843         struct nlattr **a = info->attrs;
1844         struct sk_buff *reply;
1845         struct vport *vport;
1846         int err;
1847
1848         err = ovs_vport_cmd_validate(a);
1849         if (err)
1850                 goto exit;
1851
1852         rtnl_lock();
1853         vport = lookup_vport(info->userhdr, a);
1854         err = PTR_ERR(vport);
1855         if (IS_ERR(vport))
1856                 goto exit_unlock;
1857
1858         if (vport->port_no == OVSP_LOCAL) {
1859                 err = -EINVAL;
1860                 goto exit_unlock;
1861         }
1862
1863         reply = ovs_vport_cmd_build_info(vport, info->snd_pid, info->snd_seq,
1864                                          OVS_VPORT_CMD_DEL);
1865         err = PTR_ERR(reply);
1866         if (IS_ERR(reply))
1867                 goto exit_unlock;
1868
1869         dp_detach_port(vport);
1870
1871         genl_notify(reply, genl_info_net(info), info->snd_pid,
1872                     dp_vport_multicast_group.id, info->nlhdr, GFP_KERNEL);
1873
1874 exit_unlock:
1875         rtnl_unlock();
1876 exit:
1877         return err;
1878 }
1879
1880 static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
1881 {
1882         struct nlattr **a = info->attrs;
1883         struct ovs_header *ovs_header = info->userhdr;
1884         struct sk_buff *reply;
1885         struct vport *vport;
1886         int err;
1887
1888         err = ovs_vport_cmd_validate(a);
1889         if (err)
1890                 goto exit;
1891
1892         rcu_read_lock();
1893         vport = lookup_vport(ovs_header, a);
1894         err = PTR_ERR(vport);
1895         if (IS_ERR(vport))
1896                 goto exit_unlock;
1897
1898         reply = ovs_vport_cmd_build_info(vport, info->snd_pid, info->snd_seq,
1899                                          OVS_VPORT_CMD_NEW);
1900         err = PTR_ERR(reply);
1901         if (IS_ERR(reply))
1902                 goto exit_unlock;
1903
1904         rcu_read_unlock();
1905
1906         return genlmsg_reply(reply, info);
1907
1908 exit_unlock:
1909         rcu_read_unlock();
1910 exit:
1911         return err;
1912 }
1913
1914 static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1915 {
1916         struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
1917         struct datapath *dp;
1918         u32 port_no;
1919         int retval;
1920
1921         dp = get_dp(ovs_header->dp_ifindex);
1922         if (!dp)
1923                 return -ENODEV;
1924
1925         rcu_read_lock();
1926         for (port_no = cb->args[0]; port_no < DP_MAX_PORTS; port_no++) {
1927                 struct vport *vport;
1928
1929                 vport = get_vport_protected(dp, port_no);
1930                 if (!vport)
1931                         continue;
1932
1933                 if (ovs_vport_cmd_fill_info(vport, skb, NETLINK_CB(cb->skb).pid,
1934                                             cb->nlh->nlmsg_seq, NLM_F_MULTI,
1935                                             OVS_VPORT_CMD_NEW) < 0)
1936                         break;
1937         }
1938         rcu_read_unlock();
1939
1940         cb->args[0] = port_no;
1941         retval = skb->len;
1942
1943         return retval;
1944 }
1945
1946 static struct genl_ops dp_vport_genl_ops[] = {
1947         { .cmd = OVS_VPORT_CMD_NEW,
1948           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1949           .policy = vport_policy,
1950           .doit = ovs_vport_cmd_new
1951         },
1952         { .cmd = OVS_VPORT_CMD_DEL,
1953           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1954           .policy = vport_policy,
1955           .doit = ovs_vport_cmd_del
1956         },
1957         { .cmd = OVS_VPORT_CMD_GET,
1958           .flags = 0,               /* OK for unprivileged users. */
1959           .policy = vport_policy,
1960           .doit = ovs_vport_cmd_get,
1961           .dumpit = ovs_vport_cmd_dump
1962         },
1963         { .cmd = OVS_VPORT_CMD_SET,
1964           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1965           .policy = vport_policy,
1966           .doit = ovs_vport_cmd_set,
1967         },
1968 };
1969
1970 struct genl_family_and_ops {
1971         struct genl_family *family;
1972         struct genl_ops *ops;
1973         int n_ops;
1974         struct genl_multicast_group *group;
1975 };
1976
1977 static const struct genl_family_and_ops dp_genl_families[] = {
1978         { &dp_datapath_genl_family,
1979           dp_datapath_genl_ops, ARRAY_SIZE(dp_datapath_genl_ops),
1980           &dp_datapath_multicast_group },
1981         { &dp_vport_genl_family,
1982           dp_vport_genl_ops, ARRAY_SIZE(dp_vport_genl_ops),
1983           &dp_vport_multicast_group },
1984         { &dp_flow_genl_family,
1985           dp_flow_genl_ops, ARRAY_SIZE(dp_flow_genl_ops),
1986           &dp_flow_multicast_group },
1987         { &dp_packet_genl_family,
1988           dp_packet_genl_ops, ARRAY_SIZE(dp_packet_genl_ops),
1989           NULL },
1990 };
1991
1992 static void dp_unregister_genl(int n_families)
1993 {
1994         int i;
1995
1996         for (i = 0; i < n_families; i++)
1997                 genl_unregister_family(dp_genl_families[i].family);
1998 }
1999
2000 static int dp_register_genl(void)
2001 {
2002         int n_registered;
2003         int err;
2004         int i;
2005
2006         n_registered = 0;
2007         for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
2008                 const struct genl_family_and_ops *f = &dp_genl_families[i];
2009
2010                 err = genl_register_family_with_ops(f->family, f->ops,
2011                                                     f->n_ops);
2012                 if (err)
2013                         goto error;
2014                 n_registered++;
2015
2016                 if (f->group) {
2017                         err = genl_register_mc_group(f->family, f->group);
2018                         if (err)
2019                                 goto error;
2020                 }
2021         }
2022
2023         return 0;
2024
2025 error:
2026         dp_unregister_genl(n_registered);
2027         return err;
2028 }
2029
2030 static int __init dp_init(void)
2031 {
2032         struct sk_buff *dummy_skb;
2033         int err;
2034
2035         BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > sizeof(dummy_skb->cb));
2036
2037         pr_info("Open vSwitch switching datapath %s, built "__DATE__" "__TIME__"\n",
2038                 VERSION BUILDNR);
2039
2040         err = tnl_init();
2041         if (err)
2042                 goto error;
2043
2044         err = flow_init();
2045         if (err)
2046                 goto error_tnl_exit;
2047
2048         err = vport_init();
2049         if (err)
2050                 goto error_flow_exit;
2051
2052         err = register_netdevice_notifier(&dp_device_notifier);
2053         if (err)
2054                 goto error_vport_exit;
2055
2056         err = dp_register_genl();
2057         if (err < 0)
2058                 goto error_unreg_notifier;
2059
2060         return 0;
2061
2062 error_unreg_notifier:
2063         unregister_netdevice_notifier(&dp_device_notifier);
2064 error_vport_exit:
2065         vport_exit();
2066 error_flow_exit:
2067         flow_exit();
2068 error_tnl_exit:
2069         tnl_exit();
2070 error:
2071         return err;
2072 }
2073
2074 static void dp_cleanup(void)
2075 {
2076         rcu_barrier();
2077         dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
2078         unregister_netdevice_notifier(&dp_device_notifier);
2079         vport_exit();
2080         flow_exit();
2081         tnl_exit();
2082 }
2083
2084 module_init(dp_init);
2085 module_exit(dp_cleanup);
2086
2087 MODULE_DESCRIPTION("Open vSwitch switching datapath");
2088 MODULE_LICENSE("GPL");