datapath: Fix ovs_vport_cmd_new return value on success
[sliver-openvswitch.git] / datapath / datapath.c
1 /*
2  * Copyright (c) 2007-2012 Nicira, Inc.
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/div64.h>
43 #include <linux/highmem.h>
44 #include <linux/netfilter_bridge.h>
45 #include <linux/netfilter_ipv4.h>
46 #include <linux/inetdevice.h>
47 #include <linux/list.h>
48 #include <linux/openvswitch.h>
49 #include <linux/rculist.h>
50 #include <linux/dmi.h>
51 #include <net/genetlink.h>
52 #include <net/net_namespace.h>
53 #include <net/netns/generic.h>
54
55 #include "checksum.h"
56 #include "datapath.h"
57 #include "flow.h"
58 #include "genl_exec.h"
59 #include "vlan.h"
60 #include "tunnel.h"
61 #include "vport-internal_dev.h"
62
63 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) || \
64     LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0)
65 #error Kernels before 2.6.18 or after 3.8 are not supported by this version of Open vSwitch.
66 #endif
67
68 #define REHASH_FLOW_INTERVAL (10 * 60 * HZ)
69 static void rehash_flow_table(struct work_struct *work);
70 static DECLARE_DELAYED_WORK(rehash_flow_wq, rehash_flow_table);
71
72 int ovs_net_id __read_mostly;
73
74 /**
75  * DOC: Locking:
76  *
77  * Writes to device state (add/remove datapath, port, set operations on vports,
78  * etc.) are protected by RTNL.
79  *
80  * Writes to other state (flow table modifications, set miscellaneous datapath
81  * parameters, etc.) are protected by genl_mutex.  The RTNL lock nests inside
82  * genl_mutex.
83  *
84  * Reads are protected by RCU.
85  *
86  * There are a few special cases (mostly stats) that have their own
87  * synchronization but they nest under all of above and don't interact with
88  * each other.
89  */
90
91 static struct vport *new_vport(const struct vport_parms *);
92 static int queue_gso_packets(struct net *, int dp_ifindex, struct sk_buff *,
93                              const struct dp_upcall_info *);
94 static int queue_userspace_packet(struct net *, int dp_ifindex,
95                                   struct sk_buff *,
96                                   const struct dp_upcall_info *);
97
98 /* Must be called with rcu_read_lock, genl_mutex, or RTNL lock. */
99 static struct datapath *get_dp(struct net *net, int dp_ifindex)
100 {
101         struct datapath *dp = NULL;
102         struct net_device *dev;
103
104         rcu_read_lock();
105         dev = dev_get_by_index_rcu(net, dp_ifindex);
106         if (dev) {
107                 struct vport *vport = ovs_internal_dev_get_vport(dev);
108                 if (vport)
109                         dp = vport->dp;
110         }
111         rcu_read_unlock();
112
113         return dp;
114 }
115
116 /* Must be called with rcu_read_lock or RTNL lock. */
117 const char *ovs_dp_name(const struct datapath *dp)
118 {
119         struct vport *vport = ovs_vport_rtnl_rcu(dp, OVSP_LOCAL);
120         return vport->ops->get_name(vport);
121 }
122
123 static int get_dpifindex(struct datapath *dp)
124 {
125         struct vport *local;
126         int ifindex;
127
128         rcu_read_lock();
129
130         local = ovs_vport_rcu(dp, OVSP_LOCAL);
131         if (local)
132                 ifindex = local->ops->get_ifindex(local);
133         else
134                 ifindex = 0;
135
136         rcu_read_unlock();
137
138         return ifindex;
139 }
140
141 static void destroy_dp_rcu(struct rcu_head *rcu)
142 {
143         struct datapath *dp = container_of(rcu, struct datapath, rcu);
144
145         ovs_flow_tbl_destroy((__force struct flow_table *)dp->table);
146         free_percpu(dp->stats_percpu);
147         release_net(ovs_dp_get_net(dp));
148         kfree(dp->ports);
149         kfree(dp);
150 }
151
152 static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
153                                             u16 port_no)
154 {
155         return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
156 }
157
158 struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
159 {
160         struct vport *vport;
161         struct hlist_node *n;
162         struct hlist_head *head;
163
164         head = vport_hash_bucket(dp, port_no);
165         hlist_for_each_entry_rcu(vport, n, head, dp_hash_node) {
166                 if (vport->port_no == port_no)
167                         return vport;
168         }
169         return NULL;
170 }
171
172 /* Called with RTNL lock and genl_lock. */
173 static struct vport *new_vport(const struct vport_parms *parms)
174 {
175         struct vport *vport;
176
177         vport = ovs_vport_add(parms);
178         if (!IS_ERR(vport)) {
179                 struct datapath *dp = parms->dp;
180                 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
181
182                 hlist_add_head_rcu(&vport->dp_hash_node, head);
183         }
184         return vport;
185 }
186
187 /* Called with RTNL lock. */
188 void ovs_dp_detach_port(struct vport *p)
189 {
190         ASSERT_RTNL();
191
192         /* First drop references to device. */
193         hlist_del_rcu(&p->dp_hash_node);
194
195         /* Then destroy it. */
196         ovs_vport_del(p);
197 }
198
199 /* Must be called with rcu_read_lock. */
200 void ovs_dp_process_received_packet(struct vport *p, struct sk_buff *skb)
201 {
202         struct datapath *dp = p->dp;
203         struct sw_flow *flow;
204         struct dp_stats_percpu *stats;
205         u64 *stats_counter;
206         int error;
207
208         stats = this_cpu_ptr(dp->stats_percpu);
209
210         if (!OVS_CB(skb)->flow) {
211                 struct sw_flow_key key;
212                 int key_len;
213
214                 /* Extract flow from 'skb' into 'key'. */
215                 error = ovs_flow_extract(skb, p->port_no, &key, &key_len);
216                 if (unlikely(error)) {
217                         kfree_skb(skb);
218                         return;
219                 }
220
221                 /* Look up flow. */
222                 flow = ovs_flow_tbl_lookup(rcu_dereference(dp->table),
223                                            &key, key_len);
224                 if (unlikely(!flow)) {
225                         struct dp_upcall_info upcall;
226
227                         upcall.cmd = OVS_PACKET_CMD_MISS;
228                         upcall.key = &key;
229                         upcall.userdata = NULL;
230                         upcall.portid = p->upcall_portid;
231                         ovs_dp_upcall(dp, skb, &upcall);
232                         consume_skb(skb);
233                         stats_counter = &stats->n_missed;
234                         goto out;
235                 }
236
237                 OVS_CB(skb)->flow = flow;
238         }
239
240         stats_counter = &stats->n_hit;
241         ovs_flow_used(OVS_CB(skb)->flow, skb);
242         ovs_execute_actions(dp, skb);
243
244 out:
245         /* Update datapath statistics. */
246         u64_stats_update_begin(&stats->sync);
247         (*stats_counter)++;
248         u64_stats_update_end(&stats->sync);
249 }
250
251 static struct genl_family dp_packet_genl_family = {
252         .id = GENL_ID_GENERATE,
253         .hdrsize = sizeof(struct ovs_header),
254         .name = OVS_PACKET_FAMILY,
255         .version = OVS_PACKET_VERSION,
256         .maxattr = OVS_PACKET_ATTR_MAX,
257          SET_NETNSOK
258 };
259
260 int ovs_dp_upcall(struct datapath *dp, struct sk_buff *skb,
261                   const struct dp_upcall_info *upcall_info)
262 {
263         struct dp_stats_percpu *stats;
264         int dp_ifindex;
265         int err;
266
267         if (upcall_info->portid == 0) {
268                 err = -ENOTCONN;
269                 goto err;
270         }
271
272         dp_ifindex = get_dpifindex(dp);
273         if (!dp_ifindex) {
274                 err = -ENODEV;
275                 goto err;
276         }
277
278         forward_ip_summed(skb, true);
279
280         if (!skb_is_gso(skb))
281                 err = queue_userspace_packet(ovs_dp_get_net(dp), dp_ifindex, skb, upcall_info);
282         else
283                 err = queue_gso_packets(ovs_dp_get_net(dp), dp_ifindex, skb, upcall_info);
284         if (err)
285                 goto err;
286
287         return 0;
288
289 err:
290         stats = this_cpu_ptr(dp->stats_percpu);
291
292         u64_stats_update_begin(&stats->sync);
293         stats->n_lost++;
294         u64_stats_update_end(&stats->sync);
295
296         return err;
297 }
298
299 static int queue_gso_packets(struct net *net, int dp_ifindex,
300                              struct sk_buff *skb,
301                              const struct dp_upcall_info *upcall_info)
302 {
303         unsigned short gso_type = skb_shinfo(skb)->gso_type;
304         struct dp_upcall_info later_info;
305         struct sw_flow_key later_key;
306         struct sk_buff *segs, *nskb;
307         int err;
308
309         segs = __skb_gso_segment(skb, NETIF_F_SG | NETIF_F_HW_CSUM, false);
310         if (IS_ERR(segs))
311                 return PTR_ERR(segs);
312
313         /* Queue all of the segments. */
314         skb = segs;
315         do {
316                 err = queue_userspace_packet(net, dp_ifindex, skb, upcall_info);
317                 if (err)
318                         break;
319
320                 if (skb == segs && gso_type & SKB_GSO_UDP) {
321                         /* The initial flow key extracted by ovs_flow_extract()
322                          * in this case is for a first fragment, so we need to
323                          * properly mark later fragments.
324                          */
325                         later_key = *upcall_info->key;
326                         later_key.ip.frag = OVS_FRAG_TYPE_LATER;
327
328                         later_info = *upcall_info;
329                         later_info.key = &later_key;
330                         upcall_info = &later_info;
331                 }
332         } while ((skb = skb->next));
333
334         /* Free all of the segments. */
335         skb = segs;
336         do {
337                 nskb = skb->next;
338                 if (err)
339                         kfree_skb(skb);
340                 else
341                         consume_skb(skb);
342         } while ((skb = nskb));
343         return err;
344 }
345
346 static int queue_userspace_packet(struct net *net, int dp_ifindex,
347                                   struct sk_buff *skb,
348                                   const struct dp_upcall_info *upcall_info)
349 {
350         struct ovs_header *upcall;
351         struct sk_buff *nskb = NULL;
352         struct sk_buff *user_skb; /* to be queued to userspace */
353         struct nlattr *nla;
354         unsigned int len;
355         int err;
356
357         if (vlan_tx_tag_present(skb)) {
358                 nskb = skb_clone(skb, GFP_ATOMIC);
359                 if (!nskb)
360                         return -ENOMEM;
361                 
362                 err = vlan_deaccel_tag(nskb);
363                 if (err)
364                         return err;
365
366                 skb = nskb;
367         }
368
369         if (nla_attr_size(skb->len) > USHRT_MAX) {
370                 err = -EFBIG;
371                 goto out;
372         }
373
374         len = sizeof(struct ovs_header);
375         len += nla_total_size(skb->len);
376         len += nla_total_size(FLOW_BUFSIZE);
377         if (upcall_info->cmd == OVS_PACKET_CMD_ACTION)
378                 len += nla_total_size(8);
379
380         user_skb = genlmsg_new(len, GFP_ATOMIC);
381         if (!user_skb) {
382                 err = -ENOMEM;
383                 goto out;
384         }
385
386         upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
387                              0, upcall_info->cmd);
388         upcall->dp_ifindex = dp_ifindex;
389
390         nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_KEY);
391         ovs_flow_to_nlattrs(upcall_info->key, user_skb);
392         nla_nest_end(user_skb, nla);
393
394         if (upcall_info->userdata)
395                 nla_put_u64(user_skb, OVS_PACKET_ATTR_USERDATA,
396                             nla_get_u64(upcall_info->userdata));
397
398         nla = __nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, skb->len);
399
400         skb_copy_and_csum_dev(skb, nla_data(nla));
401
402         err = genlmsg_unicast(net, user_skb, upcall_info->portid);
403
404 out:
405         kfree_skb(nskb);
406         return err;
407 }
408
409 /* Called with genl_mutex. */
410 static int flush_flows(struct datapath *dp)
411 {
412         struct flow_table *old_table;
413         struct flow_table *new_table;
414
415         old_table = genl_dereference(dp->table);
416         new_table = ovs_flow_tbl_alloc(TBL_MIN_BUCKETS);
417         if (!new_table)
418                 return -ENOMEM;
419
420         rcu_assign_pointer(dp->table, new_table);
421
422         ovs_flow_tbl_deferred_destroy(old_table);
423         return 0;
424 }
425
426 static struct nlattr *reserve_sfa_size(struct sw_flow_actions **sfa, int attr_len)
427 {
428
429         struct sw_flow_actions *acts;
430         int new_acts_size;
431         int req_size = NLA_ALIGN(attr_len);
432         int next_offset = offsetof(struct sw_flow_actions, actions) +
433                                         (*sfa)->actions_len;
434
435         if (req_size <= (ksize(*sfa) - next_offset))
436                 goto out;
437
438         new_acts_size = ksize(*sfa) * 2;
439
440         if (new_acts_size > MAX_ACTIONS_BUFSIZE) {
441                 if ((MAX_ACTIONS_BUFSIZE - next_offset) < req_size)
442                         return ERR_PTR(-EMSGSIZE);
443                 new_acts_size = MAX_ACTIONS_BUFSIZE;
444         }
445
446         acts = ovs_flow_actions_alloc(new_acts_size);
447         if (IS_ERR(acts))
448                 return (void *)acts;
449
450         memcpy(acts->actions, (*sfa)->actions, (*sfa)->actions_len);
451         acts->actions_len = (*sfa)->actions_len;
452         kfree(*sfa);
453         *sfa = acts;
454
455 out:
456         (*sfa)->actions_len += req_size;
457         return  (struct nlattr *) ((unsigned char *)(*sfa) + next_offset);
458 }
459
460 static int add_action(struct sw_flow_actions **sfa, int attrtype, void *data, int len)
461 {
462         struct nlattr *a;
463
464         a = reserve_sfa_size(sfa, nla_attr_size(len));
465         if (IS_ERR(a))
466                 return PTR_ERR(a);
467
468         a->nla_type = attrtype;
469         a->nla_len = nla_attr_size(len);
470
471         if (data)
472                 memcpy(nla_data(a), data, len);
473         memset((unsigned char *) a + a->nla_len, 0, nla_padlen(len));
474
475         return 0;
476 }
477
478 static inline int add_nested_action_start(struct sw_flow_actions **sfa, int attrtype)
479 {
480         int used = (*sfa)->actions_len;
481         int err;
482
483         err = add_action(sfa, attrtype, NULL, 0);
484         if (err)
485                 return err;
486
487         return used;
488 }
489
490 static inline void add_nested_action_end(struct sw_flow_actions *sfa, int st_offset)
491 {
492         struct nlattr *a = (struct nlattr *) ((unsigned char *)sfa->actions + st_offset);
493
494         a->nla_len = sfa->actions_len - st_offset;
495 }
496
497 static int validate_and_copy_actions(const struct nlattr *attr,
498                                 const struct sw_flow_key *key, int depth,
499                                 struct sw_flow_actions **sfa);
500
501 static int validate_and_copy_sample(const struct nlattr *attr,
502                            const struct sw_flow_key *key, int depth,
503                            struct sw_flow_actions **sfa)
504 {
505         const struct nlattr *attrs[OVS_SAMPLE_ATTR_MAX + 1];
506         const struct nlattr *probability, *actions;
507         const struct nlattr *a;
508         int rem, start, err, st_acts;
509
510         memset(attrs, 0, sizeof(attrs));
511         nla_for_each_nested(a, attr, rem) {
512                 int type = nla_type(a);
513                 if (!type || type > OVS_SAMPLE_ATTR_MAX || attrs[type])
514                         return -EINVAL;
515                 attrs[type] = a;
516         }
517         if (rem)
518                 return -EINVAL;
519
520         probability = attrs[OVS_SAMPLE_ATTR_PROBABILITY];
521         if (!probability || nla_len(probability) != sizeof(u32))
522                 return -EINVAL;
523
524         actions = attrs[OVS_SAMPLE_ATTR_ACTIONS];
525         if (!actions || (nla_len(actions) && nla_len(actions) < NLA_HDRLEN))
526                 return -EINVAL;
527
528         /* validation done, copy sample action. */
529         start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SAMPLE);
530         if (start < 0)
531                 return start;
532         err = add_action(sfa, OVS_SAMPLE_ATTR_PROBABILITY, nla_data(probability), sizeof(u32));
533         if (err)
534                 return err;
535         st_acts = add_nested_action_start(sfa, OVS_SAMPLE_ATTR_ACTIONS);
536         if (st_acts < 0)
537                 return st_acts;
538
539         err = validate_and_copy_actions(actions, key, depth + 1, sfa);
540         if (err)
541                 return err;
542
543         add_nested_action_end(*sfa, st_acts);
544         add_nested_action_end(*sfa, start);
545
546         return 0;
547 }
548
549 static int validate_tp_port(const struct sw_flow_key *flow_key)
550 {
551         if (flow_key->eth.type == htons(ETH_P_IP)) {
552                 if (flow_key->ipv4.tp.src || flow_key->ipv4.tp.dst)
553                         return 0;
554         } else if (flow_key->eth.type == htons(ETH_P_IPV6)) {
555                 if (flow_key->ipv6.tp.src || flow_key->ipv6.tp.dst)
556                         return 0;
557         }
558
559         return -EINVAL;
560 }
561
562 static int validate_and_copy_set_tun(const struct nlattr *attr,
563                                      struct sw_flow_actions **sfa)
564 {
565         struct ovs_key_ipv4_tunnel tun_key;
566         int err, start;
567
568         err = ipv4_tun_from_nlattr(nla_data(attr), &tun_key);
569         if (err)
570                 return err;
571
572         start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SET);
573         if (start < 0)
574                 return start;
575
576         err = add_action(sfa, OVS_KEY_ATTR_IPV4_TUNNEL, &tun_key, sizeof(tun_key));
577         add_nested_action_end(*sfa, start);
578
579         return err;
580 }
581
582 static int validate_set(const struct nlattr *a,
583                         const struct sw_flow_key *flow_key,
584                         struct sw_flow_actions **sfa,
585                         bool *set_tun)
586 {
587         const struct nlattr *ovs_key = nla_data(a);
588         int key_type = nla_type(ovs_key);
589
590         /* There can be only one key in a action */
591         if (nla_total_size(nla_len(ovs_key)) != nla_len(a))
592                 return -EINVAL;
593
594         if (key_type > OVS_KEY_ATTR_MAX ||
595             (ovs_key_lens[key_type] != nla_len(ovs_key) &&
596              ovs_key_lens[key_type] != -1))
597                 return -EINVAL;
598
599         switch (key_type) {
600         const struct ovs_key_ipv4 *ipv4_key;
601         const struct ovs_key_ipv6 *ipv6_key;
602         int err;
603
604         case OVS_KEY_ATTR_PRIORITY:
605         case OVS_KEY_ATTR_TUN_ID:
606         case OVS_KEY_ATTR_ETHERNET:
607                 break;
608
609         case OVS_KEY_ATTR_SKB_MARK:
610 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20) && !defined(CONFIG_NETFILTER)
611                 if (nla_get_u32(ovs_key) != 0)
612                         return -EINVAL;
613 #endif
614                 break;
615
616         case OVS_KEY_ATTR_TUNNEL:
617                 *set_tun = true;
618                 err = validate_and_copy_set_tun(a, sfa);
619                 if (err)
620                         return err;
621                 break;
622
623         case OVS_KEY_ATTR_IPV4:
624                 if (flow_key->eth.type != htons(ETH_P_IP))
625                         return -EINVAL;
626
627                 if (!flow_key->ip.proto)
628                         return -EINVAL;
629
630                 ipv4_key = nla_data(ovs_key);
631                 if (ipv4_key->ipv4_proto != flow_key->ip.proto)
632                         return -EINVAL;
633
634                 if (ipv4_key->ipv4_frag != flow_key->ip.frag)
635                         return -EINVAL;
636
637                 break;
638
639         case OVS_KEY_ATTR_IPV6:
640                 if (flow_key->eth.type != htons(ETH_P_IPV6))
641                         return -EINVAL;
642
643                 if (!flow_key->ip.proto)
644                         return -EINVAL;
645
646                 ipv6_key = nla_data(ovs_key);
647                 if (ipv6_key->ipv6_proto != flow_key->ip.proto)
648                         return -EINVAL;
649
650                 if (ipv6_key->ipv6_frag != flow_key->ip.frag)
651                         return -EINVAL;
652
653                 if (ntohl(ipv6_key->ipv6_label) & 0xFFF00000)
654                         return -EINVAL;
655
656                 break;
657
658         case OVS_KEY_ATTR_TCP:
659                 if (flow_key->ip.proto != IPPROTO_TCP)
660                         return -EINVAL;
661
662                 return validate_tp_port(flow_key);
663
664         case OVS_KEY_ATTR_UDP:
665                 if (flow_key->ip.proto != IPPROTO_UDP)
666                         return -EINVAL;
667
668                 return validate_tp_port(flow_key);
669
670         default:
671                 return -EINVAL;
672         }
673
674         return 0;
675 }
676
677 static int validate_userspace(const struct nlattr *attr)
678 {
679         static const struct nla_policy userspace_policy[OVS_USERSPACE_ATTR_MAX + 1] =   {
680                 [OVS_USERSPACE_ATTR_PID] = {.type = NLA_U32 },
681                 [OVS_USERSPACE_ATTR_USERDATA] = {.type = NLA_U64 },
682         };
683         struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1];
684         int error;
685
686         error = nla_parse_nested(a, OVS_USERSPACE_ATTR_MAX,
687                                  attr, userspace_policy);
688         if (error)
689                 return error;
690
691         if (!a[OVS_USERSPACE_ATTR_PID] ||
692             !nla_get_u32(a[OVS_USERSPACE_ATTR_PID]))
693                 return -EINVAL;
694
695         return 0;
696 }
697
698 static int copy_action(const struct nlattr *from,
699                       struct sw_flow_actions **sfa)
700 {
701         int totlen = NLA_ALIGN(from->nla_len);
702         struct nlattr *to;
703
704         to = reserve_sfa_size(sfa, from->nla_len);
705         if (IS_ERR(to))
706                 return PTR_ERR(to);
707
708         memcpy(to, from, totlen);
709         return 0;
710 }
711
712 static int validate_and_copy_actions(const struct nlattr *attr,
713                                 const struct sw_flow_key *key,
714                                 int depth,
715                                 struct sw_flow_actions **sfa)
716 {
717         const struct nlattr *a;
718         int rem, err;
719
720         if (depth >= SAMPLE_ACTION_DEPTH)
721                 return -EOVERFLOW;
722
723         nla_for_each_nested(a, attr, rem) {
724                 /* Expected argument lengths, (u32)-1 for variable length. */
725                 static const u32 action_lens[OVS_ACTION_ATTR_MAX + 1] = {
726                         [OVS_ACTION_ATTR_OUTPUT] = sizeof(u32),
727                         [OVS_ACTION_ATTR_USERSPACE] = (u32)-1,
728                         [OVS_ACTION_ATTR_PUSH_VLAN] = sizeof(struct ovs_action_push_vlan),
729                         [OVS_ACTION_ATTR_POP_VLAN] = 0,
730                         [OVS_ACTION_ATTR_SET] = (u32)-1,
731                         [OVS_ACTION_ATTR_SAMPLE] = (u32)-1
732                 };
733                 const struct ovs_action_push_vlan *vlan;
734                 int type = nla_type(a);
735                 bool skip_copy;
736
737                 if (type > OVS_ACTION_ATTR_MAX ||
738                     (action_lens[type] != nla_len(a) &&
739                      action_lens[type] != (u32)-1))
740                         return -EINVAL;
741
742                 skip_copy = false;
743                 switch (type) {
744                 case OVS_ACTION_ATTR_UNSPEC:
745                         return -EINVAL;
746
747                 case OVS_ACTION_ATTR_USERSPACE:
748                         err = validate_userspace(a);
749                         if (err)
750                                 return err;
751                         break;
752
753                 case OVS_ACTION_ATTR_OUTPUT:
754                         if (nla_get_u32(a) >= DP_MAX_PORTS)
755                                 return -EINVAL;
756                         break;
757
758
759                 case OVS_ACTION_ATTR_POP_VLAN:
760                         break;
761
762                 case OVS_ACTION_ATTR_PUSH_VLAN:
763                         vlan = nla_data(a);
764                         if (vlan->vlan_tpid != htons(ETH_P_8021Q))
765                                 return -EINVAL;
766                         if (!(vlan->vlan_tci & htons(VLAN_TAG_PRESENT)))
767                                 return -EINVAL;
768                         break;
769
770                 case OVS_ACTION_ATTR_SET:
771                         err = validate_set(a, key, sfa, &skip_copy);
772                         if (err)
773                                 return err;
774                         break;
775
776                 case OVS_ACTION_ATTR_SAMPLE:
777                         err = validate_and_copy_sample(a, key, depth, sfa);
778                         if (err)
779                                 return err;
780                         skip_copy = true;
781                         break;
782
783                 default:
784                         return -EINVAL;
785                 }
786                 if (!skip_copy) {
787                         err = copy_action(a, sfa);
788                         if (err)
789                                 return err;
790                 }
791         }
792
793         if (rem > 0)
794                 return -EINVAL;
795
796         return 0;
797 }
798
799 static void clear_stats(struct sw_flow *flow)
800 {
801         flow->used = 0;
802         flow->tcp_flags = 0;
803         flow->packet_count = 0;
804         flow->byte_count = 0;
805 }
806
807 static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
808 {
809         struct ovs_header *ovs_header = info->userhdr;
810         struct nlattr **a = info->attrs;
811         struct sw_flow_actions *acts;
812         struct sk_buff *packet;
813         struct sw_flow *flow;
814         struct datapath *dp;
815         struct ethhdr *eth;
816         int len;
817         int err;
818         int key_len;
819
820         err = -EINVAL;
821         if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
822             !a[OVS_PACKET_ATTR_ACTIONS] ||
823             nla_len(a[OVS_PACKET_ATTR_PACKET]) < ETH_HLEN)
824                 goto err;
825
826         len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
827         packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
828         err = -ENOMEM;
829         if (!packet)
830                 goto err;
831         skb_reserve(packet, NET_IP_ALIGN);
832
833         memcpy(__skb_put(packet, len), nla_data(a[OVS_PACKET_ATTR_PACKET]), len);
834
835         skb_reset_mac_header(packet);
836         eth = eth_hdr(packet);
837
838         /* Normally, setting the skb 'protocol' field would be handled by a
839          * call to eth_type_trans(), but it assumes there's a sending
840          * device, which we may not have. */
841         if (ntohs(eth->h_proto) >= 1536)
842                 packet->protocol = eth->h_proto;
843         else
844                 packet->protocol = htons(ETH_P_802_2);
845
846         /* Build an sw_flow for sending this packet. */
847         flow = ovs_flow_alloc();
848         err = PTR_ERR(flow);
849         if (IS_ERR(flow))
850                 goto err_kfree_skb;
851
852         err = ovs_flow_extract(packet, -1, &flow->key, &key_len);
853         if (err)
854                 goto err_flow_free;
855
856         err = ovs_flow_metadata_from_nlattrs(flow, key_len, a[OVS_PACKET_ATTR_KEY]);
857         if (err)
858                 goto err_flow_free;
859         acts = ovs_flow_actions_alloc(nla_len(a[OVS_PACKET_ATTR_ACTIONS]));
860         err = PTR_ERR(acts);
861         if (IS_ERR(acts))
862                 goto err_flow_free;
863
864         err = validate_and_copy_actions(a[OVS_PACKET_ATTR_ACTIONS], &flow->key, 0, &acts);
865         rcu_assign_pointer(flow->sf_acts, acts);
866         if (err)
867                 goto err_flow_free;
868
869         OVS_CB(packet)->flow = flow;
870         packet->priority = flow->key.phy.priority;
871         skb_set_mark(packet, flow->key.phy.skb_mark);
872
873         rcu_read_lock();
874         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
875         err = -ENODEV;
876         if (!dp)
877                 goto err_unlock;
878
879         local_bh_disable();
880         err = ovs_execute_actions(dp, packet);
881         local_bh_enable();
882         rcu_read_unlock();
883
884         ovs_flow_free(flow);
885         return err;
886
887 err_unlock:
888         rcu_read_unlock();
889 err_flow_free:
890         ovs_flow_free(flow);
891 err_kfree_skb:
892         kfree_skb(packet);
893 err:
894         return err;
895 }
896
897 static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
898         [OVS_PACKET_ATTR_PACKET] = { .type = NLA_UNSPEC },
899         [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
900         [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
901 };
902
903 static struct genl_ops dp_packet_genl_ops[] = {
904         { .cmd = OVS_PACKET_CMD_EXECUTE,
905           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
906           .policy = packet_policy,
907           .doit = ovs_packet_cmd_execute
908         }
909 };
910
911 static void get_dp_stats(struct datapath *dp, struct ovs_dp_stats *stats)
912 {
913         int i;
914         struct flow_table *table = genl_dereference(dp->table);
915
916         stats->n_flows = ovs_flow_tbl_count(table);
917
918         stats->n_hit = stats->n_missed = stats->n_lost = 0;
919         for_each_possible_cpu(i) {
920                 const struct dp_stats_percpu *percpu_stats;
921                 struct dp_stats_percpu local_stats;
922                 unsigned int start;
923
924                 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
925
926                 do {
927                         start = u64_stats_fetch_begin_bh(&percpu_stats->sync);
928                         local_stats = *percpu_stats;
929                 } while (u64_stats_fetch_retry_bh(&percpu_stats->sync, start));
930
931                 stats->n_hit += local_stats.n_hit;
932                 stats->n_missed += local_stats.n_missed;
933                 stats->n_lost += local_stats.n_lost;
934         }
935 }
936
937 static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
938         [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
939         [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
940         [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
941 };
942
943 static struct genl_family dp_flow_genl_family = {
944         .id = GENL_ID_GENERATE,
945         .hdrsize = sizeof(struct ovs_header),
946         .name = OVS_FLOW_FAMILY,
947         .version = OVS_FLOW_VERSION,
948         .maxattr = OVS_FLOW_ATTR_MAX,
949          SET_NETNSOK
950 };
951
952 static struct genl_multicast_group ovs_dp_flow_multicast_group = {
953         .name = OVS_FLOW_MCGROUP
954 };
955
956 static int actions_to_attr(const struct nlattr *attr, int len, struct sk_buff *skb);
957 static int sample_action_to_attr(const struct nlattr *attr, struct sk_buff *skb)
958 {
959         const struct nlattr *a;
960         struct nlattr *start;
961         int err = 0, rem;
962
963         start = nla_nest_start(skb, OVS_ACTION_ATTR_SAMPLE);
964         if (!start)
965                 return -EMSGSIZE;
966
967         nla_for_each_nested(a, attr, rem) {
968                 int type = nla_type(a);
969                 struct nlattr *st_sample;
970
971                 switch (type) {
972                 case OVS_SAMPLE_ATTR_PROBABILITY:
973                         if (nla_put(skb, OVS_SAMPLE_ATTR_PROBABILITY, sizeof(u32), nla_data(a)))
974                                 return -EMSGSIZE;
975                         break;
976                 case OVS_SAMPLE_ATTR_ACTIONS:
977                         st_sample = nla_nest_start(skb, OVS_SAMPLE_ATTR_ACTIONS);
978                         if (!st_sample)
979                                 return -EMSGSIZE;
980                         err = actions_to_attr(nla_data(a), nla_len(a), skb);
981                         if (err)
982                                 return err;
983                         nla_nest_end(skb, st_sample);
984                         break;
985                 }
986         }
987
988         nla_nest_end(skb, start);
989         return err;
990 }
991
992 static int set_action_to_attr(const struct nlattr *a, struct sk_buff *skb)
993 {
994         const struct nlattr *ovs_key = nla_data(a);
995         int key_type = nla_type(ovs_key);
996         struct nlattr *start;
997         int err;
998
999         switch (key_type) {
1000         case OVS_KEY_ATTR_IPV4_TUNNEL:
1001                 start = nla_nest_start(skb, OVS_ACTION_ATTR_SET);
1002                 if (!start)
1003                         return -EMSGSIZE;
1004
1005                 err = ipv4_tun_to_nlattr(skb, nla_data(ovs_key));
1006                 if (err)
1007                         return err;
1008                 nla_nest_end(skb, start);
1009                 break;
1010         default:
1011                 if (nla_put(skb, OVS_ACTION_ATTR_SET, nla_len(a), ovs_key))
1012                         return -EMSGSIZE;
1013                 break;
1014         }
1015
1016         return 0;
1017 }
1018
1019 static int actions_to_attr(const struct nlattr *attr, int len, struct sk_buff *skb)
1020 {
1021         const struct nlattr *a;
1022         int rem, err;
1023
1024         nla_for_each_attr(a, attr, len, rem) {
1025                 int type = nla_type(a);
1026
1027                 switch (type) {
1028                 case OVS_ACTION_ATTR_SET:
1029                         err = set_action_to_attr(a, skb);
1030                         if (err)
1031                                 return err;
1032                         break;
1033
1034                 case OVS_ACTION_ATTR_SAMPLE:
1035                         err = sample_action_to_attr(a, skb);
1036                         if (err)
1037                                 return err;
1038                         break;
1039                 default:
1040                         if (nla_put(skb, type, nla_len(a), nla_data(a)))
1041                                 return -EMSGSIZE;
1042                         break;
1043                 }
1044         }
1045
1046         return 0;
1047 }
1048
1049 /* Called with genl_lock. */
1050 static int ovs_flow_cmd_fill_info(struct sw_flow *flow, struct datapath *dp,
1051                                   struct sk_buff *skb, u32 portid,
1052                                   u32 seq, u32 flags, u8 cmd)
1053 {
1054         const int skb_orig_len = skb->len;
1055         const struct sw_flow_actions *sf_acts;
1056         struct nlattr *start;
1057         struct ovs_flow_stats stats;
1058         struct ovs_header *ovs_header;
1059         struct nlattr *nla;
1060         unsigned long used;
1061         u8 tcp_flags;
1062         int err;
1063
1064         sf_acts = rcu_dereference_protected(flow->sf_acts,
1065                                             lockdep_genl_is_held());
1066
1067         ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family, flags, cmd);
1068         if (!ovs_header)
1069                 return -EMSGSIZE;
1070
1071         ovs_header->dp_ifindex = get_dpifindex(dp);
1072
1073         nla = nla_nest_start(skb, OVS_FLOW_ATTR_KEY);
1074         if (!nla)
1075                 goto nla_put_failure;
1076         err = ovs_flow_to_nlattrs(&flow->key, skb);
1077         if (err)
1078                 goto error;
1079         nla_nest_end(skb, nla);
1080
1081         spin_lock_bh(&flow->lock);
1082         used = flow->used;
1083         stats.n_packets = flow->packet_count;
1084         stats.n_bytes = flow->byte_count;
1085         tcp_flags = flow->tcp_flags;
1086         spin_unlock_bh(&flow->lock);
1087
1088         if (used &&
1089             nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used)))
1090                 goto nla_put_failure;
1091
1092         if (stats.n_packets &&
1093             nla_put(skb, OVS_FLOW_ATTR_STATS,
1094                     sizeof(struct ovs_flow_stats), &stats))
1095                 goto nla_put_failure;
1096
1097         if (tcp_flags &&
1098             nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, tcp_flags))
1099                 goto nla_put_failure;
1100
1101         /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
1102          * this is the first flow to be dumped into 'skb'.  This is unusual for
1103          * Netlink but individual action lists can be longer than
1104          * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
1105          * The userspace caller can always fetch the actions separately if it
1106          * really wants them.  (Most userspace callers in fact don't care.)
1107          *
1108          * This can only fail for dump operations because the skb is always
1109          * properly sized for single flows.
1110          */
1111         start = nla_nest_start(skb, OVS_FLOW_ATTR_ACTIONS);
1112         if (start) {
1113                 err = actions_to_attr(sf_acts->actions, sf_acts->actions_len, skb);
1114                 if (!err)
1115                         nla_nest_end(skb, start);
1116                 else {
1117                         if (skb_orig_len)
1118                                 goto error;
1119
1120                         nla_nest_cancel(skb, start);
1121                 }
1122         } else if (skb_orig_len)
1123                 goto nla_put_failure;
1124
1125         return genlmsg_end(skb, ovs_header);
1126
1127 nla_put_failure:
1128         err = -EMSGSIZE;
1129 error:
1130         genlmsg_cancel(skb, ovs_header);
1131         return err;
1132 }
1133
1134 static struct sk_buff *ovs_flow_cmd_alloc_info(struct sw_flow *flow)
1135 {
1136         const struct sw_flow_actions *sf_acts;
1137         int len;
1138
1139         sf_acts = rcu_dereference_protected(flow->sf_acts,
1140                                             lockdep_genl_is_held());
1141
1142         /* OVS_FLOW_ATTR_KEY */
1143         len = nla_total_size(FLOW_BUFSIZE);
1144         /* OVS_FLOW_ATTR_ACTIONS */
1145         len += nla_total_size(sf_acts->actions_len);
1146         /* OVS_FLOW_ATTR_STATS */
1147         len += nla_total_size(sizeof(struct ovs_flow_stats));
1148         /* OVS_FLOW_ATTR_TCP_FLAGS */
1149         len += nla_total_size(1);
1150         /* OVS_FLOW_ATTR_USED */
1151         len += nla_total_size(8);
1152
1153         len += NLMSG_ALIGN(sizeof(struct ovs_header));
1154
1155         return genlmsg_new(len, GFP_KERNEL);
1156 }
1157
1158 static struct sk_buff *ovs_flow_cmd_build_info(struct sw_flow *flow,
1159                                                struct datapath *dp,
1160                                                u32 portid, u32 seq, u8 cmd)
1161 {
1162         struct sk_buff *skb;
1163         int retval;
1164
1165         skb = ovs_flow_cmd_alloc_info(flow);
1166         if (!skb)
1167                 return ERR_PTR(-ENOMEM);
1168
1169         retval = ovs_flow_cmd_fill_info(flow, dp, skb, portid, seq, 0, cmd);
1170         BUG_ON(retval < 0);
1171         return skb;
1172 }
1173
1174 static int ovs_flow_cmd_new_or_set(struct sk_buff *skb, struct genl_info *info)
1175 {
1176         struct nlattr **a = info->attrs;
1177         struct ovs_header *ovs_header = info->userhdr;
1178         struct sw_flow_key key;
1179         struct sw_flow *flow;
1180         struct sk_buff *reply;
1181         struct datapath *dp;
1182         struct flow_table *table;
1183         struct sw_flow_actions *acts = NULL;
1184         int error;
1185         int key_len;
1186
1187         /* Extract key. */
1188         error = -EINVAL;
1189         if (!a[OVS_FLOW_ATTR_KEY])
1190                 goto error;
1191         error = ovs_flow_from_nlattrs(&key, &key_len, a[OVS_FLOW_ATTR_KEY]);
1192         if (error)
1193                 goto error;
1194
1195         /* Validate actions. */
1196         if (a[OVS_FLOW_ATTR_ACTIONS]) {
1197                 acts = ovs_flow_actions_alloc(nla_len(a[OVS_FLOW_ATTR_ACTIONS]));
1198                 error = PTR_ERR(acts);
1199                 if (IS_ERR(acts))
1200                         goto error;
1201
1202                 error = validate_and_copy_actions(a[OVS_FLOW_ATTR_ACTIONS], &key,  0, &acts);
1203                 if (error)
1204                         goto err_kfree;
1205         } else if (info->genlhdr->cmd == OVS_FLOW_CMD_NEW) {
1206                 error = -EINVAL;
1207                 goto error;
1208         }
1209
1210         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1211         error = -ENODEV;
1212         if (!dp)
1213                 goto err_kfree;
1214
1215         table = genl_dereference(dp->table);
1216         flow = ovs_flow_tbl_lookup(table, &key, key_len);
1217         if (!flow) {
1218                 /* Bail out if we're not allowed to create a new flow. */
1219                 error = -ENOENT;
1220                 if (info->genlhdr->cmd == OVS_FLOW_CMD_SET)
1221                         goto err_kfree;
1222
1223                 /* Expand table, if necessary, to make room. */
1224                 if (ovs_flow_tbl_need_to_expand(table)) {
1225                         struct flow_table *new_table;
1226
1227                         new_table = ovs_flow_tbl_expand(table);
1228                         if (!IS_ERR(new_table)) {
1229                                 rcu_assign_pointer(dp->table, new_table);
1230                                 ovs_flow_tbl_deferred_destroy(table);
1231                                 table = genl_dereference(dp->table);
1232                         }
1233                 }
1234
1235                 /* Allocate flow. */
1236                 flow = ovs_flow_alloc();
1237                 if (IS_ERR(flow)) {
1238                         error = PTR_ERR(flow);
1239                         goto err_kfree;
1240                 }
1241                 clear_stats(flow);
1242
1243                 rcu_assign_pointer(flow->sf_acts, acts);
1244
1245                 /* Put flow in bucket. */
1246                 ovs_flow_tbl_insert(table, flow, &key, key_len);
1247
1248                 reply = ovs_flow_cmd_build_info(flow, dp, info->snd_portid,
1249                                                 info->snd_seq,
1250                                                 OVS_FLOW_CMD_NEW);
1251         } else {
1252                 /* We found a matching flow. */
1253                 struct sw_flow_actions *old_acts;
1254
1255                 /* Bail out if we're not allowed to modify an existing flow.
1256                  * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
1257                  * because Generic Netlink treats the latter as a dump
1258                  * request.  We also accept NLM_F_EXCL in case that bug ever
1259                  * gets fixed.
1260                  */
1261                 error = -EEXIST;
1262                 if (info->genlhdr->cmd == OVS_FLOW_CMD_NEW &&
1263                     info->nlhdr->nlmsg_flags & (NLM_F_CREATE | NLM_F_EXCL))
1264                         goto err_kfree;
1265
1266                 /* Update actions. */
1267                 old_acts = rcu_dereference_protected(flow->sf_acts,
1268                                                      lockdep_genl_is_held());
1269                 rcu_assign_pointer(flow->sf_acts, acts);
1270                 ovs_flow_deferred_free_acts(old_acts);
1271
1272                 reply = ovs_flow_cmd_build_info(flow, dp, info->snd_portid,
1273                                                info->snd_seq, OVS_FLOW_CMD_NEW);
1274
1275                 /* Clear stats. */
1276                 if (a[OVS_FLOW_ATTR_CLEAR]) {
1277                         spin_lock_bh(&flow->lock);
1278                         clear_stats(flow);
1279                         spin_unlock_bh(&flow->lock);
1280                 }
1281         }
1282
1283         if (!IS_ERR(reply))
1284                 genl_notify(reply, genl_info_net(info), info->snd_portid,
1285                            ovs_dp_flow_multicast_group.id, info->nlhdr,
1286                            GFP_KERNEL);
1287         else
1288                 netlink_set_err(GENL_SOCK(sock_net(skb->sk)), 0,
1289                                 ovs_dp_flow_multicast_group.id, PTR_ERR(reply));
1290         return 0;
1291
1292 err_kfree:
1293         kfree(acts);
1294 error:
1295         return error;
1296 }
1297
1298 static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
1299 {
1300         struct nlattr **a = info->attrs;
1301         struct ovs_header *ovs_header = info->userhdr;
1302         struct sw_flow_key key;
1303         struct sk_buff *reply;
1304         struct sw_flow *flow;
1305         struct datapath *dp;
1306         struct flow_table *table;
1307         int err;
1308         int key_len;
1309
1310         if (!a[OVS_FLOW_ATTR_KEY])
1311                 return -EINVAL;
1312         err = ovs_flow_from_nlattrs(&key, &key_len, a[OVS_FLOW_ATTR_KEY]);
1313         if (err)
1314                 return err;
1315
1316         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1317         if (!dp)
1318                 return -ENODEV;
1319
1320         table = genl_dereference(dp->table);
1321         flow = ovs_flow_tbl_lookup(table, &key, key_len);
1322         if (!flow)
1323                 return -ENOENT;
1324
1325         reply = ovs_flow_cmd_build_info(flow, dp, info->snd_portid,
1326                                         info->snd_seq, OVS_FLOW_CMD_NEW);
1327         if (IS_ERR(reply))
1328                 return PTR_ERR(reply);
1329
1330         return genlmsg_reply(reply, info);
1331 }
1332
1333 static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
1334 {
1335         struct nlattr **a = info->attrs;
1336         struct ovs_header *ovs_header = info->userhdr;
1337         struct sw_flow_key key;
1338         struct sk_buff *reply;
1339         struct sw_flow *flow;
1340         struct datapath *dp;
1341         struct flow_table *table;
1342         int err;
1343         int key_len;
1344
1345         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1346         if (!dp)
1347                 return -ENODEV;
1348
1349         if (!a[OVS_FLOW_ATTR_KEY])
1350                 return flush_flows(dp);
1351
1352         err = ovs_flow_from_nlattrs(&key, &key_len, a[OVS_FLOW_ATTR_KEY]);
1353         if (err)
1354                 return err;
1355
1356         table = genl_dereference(dp->table);
1357         flow = ovs_flow_tbl_lookup(table, &key, key_len);
1358         if (!flow)
1359                 return -ENOENT;
1360
1361         reply = ovs_flow_cmd_alloc_info(flow);
1362         if (!reply)
1363                 return -ENOMEM;
1364
1365         ovs_flow_tbl_remove(table, flow);
1366
1367         err = ovs_flow_cmd_fill_info(flow, dp, reply, info->snd_portid,
1368                                      info->snd_seq, 0, OVS_FLOW_CMD_DEL);
1369         BUG_ON(err < 0);
1370
1371         ovs_flow_deferred_free(flow);
1372
1373         genl_notify(reply, genl_info_net(info), info->snd_portid,
1374                     ovs_dp_flow_multicast_group.id, info->nlhdr, GFP_KERNEL);
1375         return 0;
1376 }
1377
1378 static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1379 {
1380         struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
1381         struct datapath *dp;
1382         struct flow_table *table;
1383
1384         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1385         if (!dp)
1386                 return -ENODEV;
1387
1388         table = genl_dereference(dp->table);
1389
1390         for (;;) {
1391                 struct sw_flow *flow;
1392                 u32 bucket, obj;
1393
1394                 bucket = cb->args[0];
1395                 obj = cb->args[1];
1396                 flow = ovs_flow_tbl_next(table, &bucket, &obj);
1397                 if (!flow)
1398                         break;
1399
1400                 if (ovs_flow_cmd_fill_info(flow, dp, skb,
1401                                            NETLINK_CB(cb->skb).portid,
1402                                            cb->nlh->nlmsg_seq, NLM_F_MULTI,
1403                                            OVS_FLOW_CMD_NEW) < 0)
1404                         break;
1405
1406                 cb->args[0] = bucket;
1407                 cb->args[1] = obj;
1408         }
1409         return skb->len;
1410 }
1411
1412 static struct genl_ops dp_flow_genl_ops[] = {
1413         { .cmd = OVS_FLOW_CMD_NEW,
1414           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1415           .policy = flow_policy,
1416           .doit = ovs_flow_cmd_new_or_set
1417         },
1418         { .cmd = OVS_FLOW_CMD_DEL,
1419           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1420           .policy = flow_policy,
1421           .doit = ovs_flow_cmd_del
1422         },
1423         { .cmd = OVS_FLOW_CMD_GET,
1424           .flags = 0,               /* OK for unprivileged users. */
1425           .policy = flow_policy,
1426           .doit = ovs_flow_cmd_get,
1427           .dumpit = ovs_flow_cmd_dump
1428         },
1429         { .cmd = OVS_FLOW_CMD_SET,
1430           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1431           .policy = flow_policy,
1432           .doit = ovs_flow_cmd_new_or_set,
1433         },
1434 };
1435
1436 static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1437 #ifdef HAVE_NLA_NUL_STRING
1438         [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1439 #endif
1440         [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1441 };
1442
1443 static struct genl_family dp_datapath_genl_family = {
1444         .id = GENL_ID_GENERATE,
1445         .hdrsize = sizeof(struct ovs_header),
1446         .name = OVS_DATAPATH_FAMILY,
1447         .version = OVS_DATAPATH_VERSION,
1448         .maxattr = OVS_DP_ATTR_MAX,
1449          SET_NETNSOK
1450 };
1451
1452 static struct genl_multicast_group ovs_dp_datapath_multicast_group = {
1453         .name = OVS_DATAPATH_MCGROUP
1454 };
1455
1456 static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
1457                                 u32 portid, u32 seq, u32 flags, u8 cmd)
1458 {
1459         struct ovs_header *ovs_header;
1460         struct ovs_dp_stats dp_stats;
1461         int err;
1462
1463         ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
1464                                    flags, cmd);
1465         if (!ovs_header)
1466                 goto error;
1467
1468         ovs_header->dp_ifindex = get_dpifindex(dp);
1469
1470         rcu_read_lock();
1471         err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
1472         rcu_read_unlock();
1473         if (err)
1474                 goto nla_put_failure;
1475
1476         get_dp_stats(dp, &dp_stats);
1477         if (nla_put(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats), &dp_stats))
1478                 goto nla_put_failure;
1479
1480         return genlmsg_end(skb, ovs_header);
1481
1482 nla_put_failure:
1483         genlmsg_cancel(skb, ovs_header);
1484 error:
1485         return -EMSGSIZE;
1486 }
1487
1488 static struct sk_buff *ovs_dp_cmd_build_info(struct datapath *dp, u32 portid,
1489                                              u32 seq, u8 cmd)
1490 {
1491         struct sk_buff *skb;
1492         int retval;
1493
1494         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1495         if (!skb)
1496                 return ERR_PTR(-ENOMEM);
1497
1498         retval = ovs_dp_cmd_fill_info(dp, skb, portid, seq, 0, cmd);
1499         if (retval < 0) {
1500                 kfree_skb(skb);
1501                 return ERR_PTR(retval);
1502         }
1503         return skb;
1504 }
1505
1506 static int ovs_dp_cmd_validate(struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1507 {
1508         return CHECK_NUL_STRING(a[OVS_DP_ATTR_NAME], IFNAMSIZ - 1);
1509 }
1510
1511 /* Called with genl_mutex and optionally with RTNL lock also. */
1512 static struct datapath *lookup_datapath(struct net *net,
1513                                         struct ovs_header *ovs_header,
1514                                         struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1515 {
1516         struct datapath *dp;
1517
1518         if (!a[OVS_DP_ATTR_NAME])
1519                 dp = get_dp(net, ovs_header->dp_ifindex);
1520         else {
1521                 struct vport *vport;
1522
1523                 rcu_read_lock();
1524                 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
1525                 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
1526                 rcu_read_unlock();
1527         }
1528         return dp ? dp : ERR_PTR(-ENODEV);
1529 }
1530
1531 static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1532 {
1533         struct nlattr **a = info->attrs;
1534         struct vport_parms parms;
1535         struct sk_buff *reply;
1536         struct datapath *dp;
1537         struct vport *vport;
1538         struct ovs_net *ovs_net;
1539         int err, i;
1540
1541         err = -EINVAL;
1542         if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1543                 goto err;
1544
1545         err = ovs_dp_cmd_validate(a);
1546         if (err)
1547                 goto err;
1548
1549         rtnl_lock();
1550
1551         err = -ENOMEM;
1552         dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1553         if (dp == NULL)
1554                 goto err_unlock_rtnl;
1555
1556         ovs_dp_set_net(dp, hold_net(sock_net(skb->sk)));
1557
1558         /* Allocate table. */
1559         err = -ENOMEM;
1560         rcu_assign_pointer(dp->table, ovs_flow_tbl_alloc(TBL_MIN_BUCKETS));
1561         if (!dp->table)
1562                 goto err_free_dp;
1563
1564         dp->stats_percpu = alloc_percpu(struct dp_stats_percpu);
1565         if (!dp->stats_percpu) {
1566                 err = -ENOMEM;
1567                 goto err_destroy_table;
1568         }
1569
1570         dp->ports = kmalloc(DP_VPORT_HASH_BUCKETS * sizeof(struct hlist_head),
1571                             GFP_KERNEL);
1572         if (!dp->ports) {
1573                 err = -ENOMEM;
1574                 goto err_destroy_percpu;
1575         }
1576
1577         for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1578                 INIT_HLIST_HEAD(&dp->ports[i]);
1579
1580         /* Set up our datapath device. */
1581         parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1582         parms.type = OVS_VPORT_TYPE_INTERNAL;
1583         parms.options = NULL;
1584         parms.dp = dp;
1585         parms.port_no = OVSP_LOCAL;
1586         parms.upcall_portid = nla_get_u32(a[OVS_DP_ATTR_UPCALL_PID]);
1587
1588         vport = new_vport(&parms);
1589         if (IS_ERR(vport)) {
1590                 err = PTR_ERR(vport);
1591                 if (err == -EBUSY)
1592                         err = -EEXIST;
1593
1594                 goto err_destroy_ports_array;
1595         }
1596
1597         reply = ovs_dp_cmd_build_info(dp, info->snd_portid,
1598                                       info->snd_seq, OVS_DP_CMD_NEW);
1599         err = PTR_ERR(reply);
1600         if (IS_ERR(reply))
1601                 goto err_destroy_local_port;
1602
1603         ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
1604         list_add_tail(&dp->list_node, &ovs_net->dps);
1605
1606         rtnl_unlock();
1607
1608         genl_notify(reply, genl_info_net(info), info->snd_portid,
1609                     ovs_dp_datapath_multicast_group.id, info->nlhdr,
1610                     GFP_KERNEL);
1611         return 0;
1612
1613 err_destroy_local_port:
1614         ovs_dp_detach_port(ovs_vport_rtnl(dp, OVSP_LOCAL));
1615 err_destroy_ports_array:
1616         kfree(dp->ports);
1617 err_destroy_percpu:
1618         free_percpu(dp->stats_percpu);
1619 err_destroy_table:
1620         ovs_flow_tbl_destroy(genl_dereference(dp->table));
1621 err_free_dp:
1622         release_net(ovs_dp_get_net(dp));
1623         kfree(dp);
1624 err_unlock_rtnl:
1625         rtnl_unlock();
1626 err:
1627         return err;
1628 }
1629
1630 /* Called with genl_mutex. */
1631 static void __dp_destroy(struct datapath *dp)
1632 {
1633         int i;
1634
1635         rtnl_lock();
1636
1637         for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1638                 struct vport *vport;
1639                 struct hlist_node *node, *n;
1640
1641                 hlist_for_each_entry_safe(vport, node, n, &dp->ports[i], dp_hash_node)
1642                         if (vport->port_no != OVSP_LOCAL)
1643                                 ovs_dp_detach_port(vport);
1644         }
1645
1646         list_del(&dp->list_node);
1647         ovs_dp_detach_port(ovs_vport_rtnl(dp, OVSP_LOCAL));
1648
1649         /* rtnl_unlock() will wait until all the references to devices that
1650          * are pending unregistration have been dropped.  We do it here to
1651          * ensure that any internal devices (which contain DP pointers) are
1652          * fully destroyed before freeing the datapath.
1653          */
1654         rtnl_unlock();
1655
1656         call_rcu(&dp->rcu, destroy_dp_rcu);
1657 }
1658
1659 static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1660 {
1661         struct sk_buff *reply;
1662         struct datapath *dp;
1663         int err;
1664
1665         err = ovs_dp_cmd_validate(info->attrs);
1666         if (err)
1667                 return err;
1668
1669         dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1670         err = PTR_ERR(dp);
1671         if (IS_ERR(dp))
1672                 return err;
1673
1674         reply = ovs_dp_cmd_build_info(dp, info->snd_portid,
1675                                       info->snd_seq, OVS_DP_CMD_DEL);
1676         err = PTR_ERR(reply);
1677         if (IS_ERR(reply))
1678                 return err;
1679
1680         __dp_destroy(dp);
1681
1682         genl_notify(reply, genl_info_net(info), info->snd_portid,
1683                     ovs_dp_datapath_multicast_group.id, info->nlhdr,
1684                     GFP_KERNEL);
1685
1686         return 0;
1687 }
1688
1689 static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1690 {
1691         struct sk_buff *reply;
1692         struct datapath *dp;
1693         int err;
1694
1695         err = ovs_dp_cmd_validate(info->attrs);
1696         if (err)
1697                 return err;
1698
1699         dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1700         if (IS_ERR(dp))
1701                 return PTR_ERR(dp);
1702
1703         reply = ovs_dp_cmd_build_info(dp, info->snd_portid,
1704                                       info->snd_seq, OVS_DP_CMD_NEW);
1705         if (IS_ERR(reply)) {
1706                 err = PTR_ERR(reply);
1707                 netlink_set_err(GENL_SOCK(sock_net(skb->sk)), 0,
1708                                 ovs_dp_datapath_multicast_group.id, err);
1709                 return 0;
1710         }
1711
1712         genl_notify(reply, genl_info_net(info), info->snd_portid,
1713                     ovs_dp_datapath_multicast_group.id, info->nlhdr,
1714                     GFP_KERNEL);
1715
1716         return 0;
1717 }
1718
1719 static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1720 {
1721         struct sk_buff *reply;
1722         struct datapath *dp;
1723         int err;
1724
1725         err = ovs_dp_cmd_validate(info->attrs);
1726         if (err)
1727                 return err;
1728
1729         dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1730         if (IS_ERR(dp))
1731                 return PTR_ERR(dp);
1732
1733         reply = ovs_dp_cmd_build_info(dp, info->snd_portid,
1734                                       info->snd_seq, OVS_DP_CMD_NEW);
1735         if (IS_ERR(reply))
1736                 return PTR_ERR(reply);
1737
1738         return genlmsg_reply(reply, info);
1739 }
1740
1741 static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1742 {
1743         struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
1744         struct datapath *dp;
1745         int skip = cb->args[0];
1746         int i = 0;
1747
1748         list_for_each_entry(dp, &ovs_net->dps, list_node) {
1749                 if (i >= skip &&
1750                     ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
1751                                          cb->nlh->nlmsg_seq, NLM_F_MULTI,
1752                                          OVS_DP_CMD_NEW) < 0)
1753                         break;
1754                 i++;
1755         }
1756
1757         cb->args[0] = i;
1758
1759         return skb->len;
1760 }
1761
1762 static struct genl_ops dp_datapath_genl_ops[] = {
1763         { .cmd = OVS_DP_CMD_NEW,
1764           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1765           .policy = datapath_policy,
1766           .doit = ovs_dp_cmd_new
1767         },
1768         { .cmd = OVS_DP_CMD_DEL,
1769           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1770           .policy = datapath_policy,
1771           .doit = ovs_dp_cmd_del
1772         },
1773         { .cmd = OVS_DP_CMD_GET,
1774           .flags = 0,               /* OK for unprivileged users. */
1775           .policy = datapath_policy,
1776           .doit = ovs_dp_cmd_get,
1777           .dumpit = ovs_dp_cmd_dump
1778         },
1779         { .cmd = OVS_DP_CMD_SET,
1780           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1781           .policy = datapath_policy,
1782           .doit = ovs_dp_cmd_set,
1783         },
1784 };
1785
1786 static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
1787 #ifdef HAVE_NLA_NUL_STRING
1788         [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1789         [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
1790 #else
1791         [OVS_VPORT_ATTR_STATS] = { .minlen = sizeof(struct ovs_vport_stats) },
1792 #endif
1793         [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
1794         [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
1795         [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1796         [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
1797 };
1798
1799 static struct genl_family dp_vport_genl_family = {
1800         .id = GENL_ID_GENERATE,
1801         .hdrsize = sizeof(struct ovs_header),
1802         .name = OVS_VPORT_FAMILY,
1803         .version = OVS_VPORT_VERSION,
1804         .maxattr = OVS_VPORT_ATTR_MAX,
1805          SET_NETNSOK
1806 };
1807
1808 struct genl_multicast_group ovs_dp_vport_multicast_group = {
1809         .name = OVS_VPORT_MCGROUP
1810 };
1811
1812 /* Called with RTNL lock or RCU read lock. */
1813 static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
1814                                    u32 portid, u32 seq, u32 flags, u8 cmd)
1815 {
1816         struct ovs_header *ovs_header;
1817         struct ovs_vport_stats vport_stats;
1818         int err;
1819
1820         ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
1821                                  flags, cmd);
1822         if (!ovs_header)
1823                 return -EMSGSIZE;
1824
1825         ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1826
1827         if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1828             nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
1829             nla_put_string(skb, OVS_VPORT_ATTR_NAME, vport->ops->get_name(vport)) ||
1830             nla_put_u32(skb, OVS_VPORT_ATTR_UPCALL_PID, vport->upcall_portid))
1831                 goto nla_put_failure;
1832
1833         ovs_vport_get_stats(vport, &vport_stats);
1834         if (nla_put(skb, OVS_VPORT_ATTR_STATS, sizeof(struct ovs_vport_stats),
1835                     &vport_stats))
1836                 goto nla_put_failure;
1837
1838         err = ovs_vport_get_options(vport, skb);
1839         if (err == -EMSGSIZE)
1840                 goto error;
1841
1842         return genlmsg_end(skb, ovs_header);
1843
1844 nla_put_failure:
1845         err = -EMSGSIZE;
1846 error:
1847         genlmsg_cancel(skb, ovs_header);
1848         return err;
1849 }
1850
1851 /* Called with RTNL lock or RCU read lock. */
1852 struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 portid,
1853                                          u32 seq, u8 cmd)
1854 {
1855         struct sk_buff *skb;
1856         int retval;
1857
1858         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1859         if (!skb)
1860                 return ERR_PTR(-ENOMEM);
1861
1862         retval = ovs_vport_cmd_fill_info(vport, skb, portid, seq, 0, cmd);
1863         if (retval < 0) {
1864                 kfree_skb(skb);
1865                 return ERR_PTR(retval);
1866         }
1867         return skb;
1868 }
1869
1870 static int ovs_vport_cmd_validate(struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1871 {
1872         return CHECK_NUL_STRING(a[OVS_VPORT_ATTR_NAME], IFNAMSIZ - 1);
1873 }
1874
1875 /* Called with RTNL lock or RCU read lock. */
1876 static struct vport *lookup_vport(struct net *net,
1877                                   struct ovs_header *ovs_header,
1878                                   struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1879 {
1880         struct datapath *dp;
1881         struct vport *vport;
1882
1883         if (a[OVS_VPORT_ATTR_NAME]) {
1884                 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
1885                 if (!vport)
1886                         return ERR_PTR(-ENODEV);
1887                 if (ovs_header->dp_ifindex &&
1888                     ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1889                         return ERR_PTR(-ENODEV);
1890                 return vport;
1891         } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1892                 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1893
1894                 if (port_no >= DP_MAX_PORTS)
1895                         return ERR_PTR(-EFBIG);
1896
1897                 dp = get_dp(net, ovs_header->dp_ifindex);
1898                 if (!dp)
1899                         return ERR_PTR(-ENODEV);
1900
1901                 vport = ovs_vport_rtnl_rcu(dp, port_no);
1902                 if (!vport)
1903                         return ERR_PTR(-ENODEV);
1904                 return vport;
1905         } else
1906                 return ERR_PTR(-EINVAL);
1907 }
1908
1909 static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1910 {
1911         struct nlattr **a = info->attrs;
1912         struct ovs_header *ovs_header = info->userhdr;
1913         struct vport_parms parms;
1914         struct sk_buff *reply;
1915         struct vport *vport;
1916         struct datapath *dp;
1917         u32 port_no;
1918         int err;
1919
1920         err = -EINVAL;
1921         if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1922             !a[OVS_VPORT_ATTR_UPCALL_PID])
1923                 goto exit;
1924
1925         err = ovs_vport_cmd_validate(a);
1926         if (err)
1927                 goto exit;
1928
1929         rtnl_lock();
1930         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1931         err = -ENODEV;
1932         if (!dp)
1933                 goto exit_unlock;
1934
1935         if (a[OVS_VPORT_ATTR_PORT_NO]) {
1936                 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1937
1938                 err = -EFBIG;
1939                 if (port_no >= DP_MAX_PORTS)
1940                         goto exit_unlock;
1941
1942                 vport = ovs_vport_rtnl(dp, port_no);
1943                 err = -EBUSY;
1944                 if (vport)
1945                         goto exit_unlock;
1946         } else {
1947                 for (port_no = 1; ; port_no++) {
1948                         if (port_no >= DP_MAX_PORTS) {
1949                                 err = -EFBIG;
1950                                 goto exit_unlock;
1951                         }
1952                         vport = ovs_vport_rtnl(dp, port_no);
1953                         if (!vport)
1954                                 break;
1955                 }
1956         }
1957
1958         parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
1959         parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1960         parms.options = a[OVS_VPORT_ATTR_OPTIONS];
1961         parms.dp = dp;
1962         parms.port_no = port_no;
1963         parms.upcall_portid = nla_get_u32(a[OVS_VPORT_ATTR_UPCALL_PID]);
1964
1965         vport = new_vport(&parms);
1966         err = PTR_ERR(vport);
1967         if (IS_ERR(vport))
1968                 goto exit_unlock;
1969
1970         err = 0;
1971         if (a[OVS_VPORT_ATTR_STATS])
1972                 ovs_vport_set_stats(vport, nla_data(a[OVS_VPORT_ATTR_STATS]));
1973
1974         reply = ovs_vport_cmd_build_info(vport, info->snd_portid, info->snd_seq,
1975                                          OVS_VPORT_CMD_NEW);
1976         if (IS_ERR(reply)) {
1977                 err = PTR_ERR(reply);
1978                 ovs_dp_detach_port(vport);
1979                 goto exit_unlock;
1980         }
1981         genl_notify(reply, genl_info_net(info), info->snd_portid,
1982                     ovs_dp_vport_multicast_group.id, info->nlhdr, GFP_KERNEL);
1983
1984 exit_unlock:
1985         rtnl_unlock();
1986 exit:
1987         return err;
1988 }
1989
1990 static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
1991 {
1992         struct nlattr **a = info->attrs;
1993         struct sk_buff *reply;
1994         struct vport *vport;
1995         int err;
1996
1997         err = ovs_vport_cmd_validate(a);
1998         if (err)
1999                 goto exit;
2000
2001         rtnl_lock();
2002         vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
2003         err = PTR_ERR(vport);
2004         if (IS_ERR(vport))
2005                 goto exit_unlock;
2006
2007         err = 0;
2008         if (a[OVS_VPORT_ATTR_TYPE] &&
2009             nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type)
2010                 err = -EINVAL;
2011
2012         if (!err && a[OVS_VPORT_ATTR_OPTIONS])
2013                 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
2014         if (err)
2015                 goto exit_unlock;
2016
2017         if (a[OVS_VPORT_ATTR_STATS])
2018                 ovs_vport_set_stats(vport, nla_data(a[OVS_VPORT_ATTR_STATS]));
2019
2020         if (a[OVS_VPORT_ATTR_UPCALL_PID])
2021                 vport->upcall_portid = nla_get_u32(a[OVS_VPORT_ATTR_UPCALL_PID]);
2022
2023         reply = ovs_vport_cmd_build_info(vport, info->snd_portid,
2024                                          info->snd_seq, OVS_VPORT_CMD_NEW);
2025         if (IS_ERR(reply)) {
2026                 netlink_set_err(GENL_SOCK(sock_net(skb->sk)), 0,
2027                                 ovs_dp_vport_multicast_group.id, PTR_ERR(reply));
2028                 goto exit_unlock;
2029         }
2030
2031         genl_notify(reply, genl_info_net(info), info->snd_portid,
2032                     ovs_dp_vport_multicast_group.id, info->nlhdr, GFP_KERNEL);
2033
2034 exit_unlock:
2035         rtnl_unlock();
2036 exit:
2037         return err;
2038 }
2039
2040 static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
2041 {
2042         struct nlattr **a = info->attrs;
2043         struct sk_buff *reply;
2044         struct vport *vport;
2045         int err;
2046
2047         err = ovs_vport_cmd_validate(a);
2048         if (err)
2049                 goto exit;
2050
2051         rtnl_lock();
2052         vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
2053         err = PTR_ERR(vport);
2054         if (IS_ERR(vport))
2055                 goto exit_unlock;
2056
2057         if (vport->port_no == OVSP_LOCAL) {
2058                 err = -EINVAL;
2059                 goto exit_unlock;
2060         }
2061
2062         reply = ovs_vport_cmd_build_info(vport, info->snd_portid,
2063                                          info->snd_seq, OVS_VPORT_CMD_DEL);
2064         err = PTR_ERR(reply);
2065         if (IS_ERR(reply))
2066                 goto exit_unlock;
2067
2068         err = 0;
2069         ovs_dp_detach_port(vport);
2070
2071         genl_notify(reply, genl_info_net(info), info->snd_portid,
2072                     ovs_dp_vport_multicast_group.id, info->nlhdr, GFP_KERNEL);
2073
2074 exit_unlock:
2075         rtnl_unlock();
2076 exit:
2077         return err;
2078 }
2079
2080 static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
2081 {
2082         struct nlattr **a = info->attrs;
2083         struct ovs_header *ovs_header = info->userhdr;
2084         struct sk_buff *reply;
2085         struct vport *vport;
2086         int err;
2087
2088         err = ovs_vport_cmd_validate(a);
2089         if (err)
2090                 goto exit;
2091
2092         rcu_read_lock();
2093         vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
2094         err = PTR_ERR(vport);
2095         if (IS_ERR(vport))
2096                 goto exit_unlock;
2097
2098         reply = ovs_vport_cmd_build_info(vport, info->snd_portid,
2099                                          info->snd_seq, OVS_VPORT_CMD_NEW);
2100         err = PTR_ERR(reply);
2101         if (IS_ERR(reply))
2102                 goto exit_unlock;
2103
2104         rcu_read_unlock();
2105
2106         return genlmsg_reply(reply, info);
2107
2108 exit_unlock:
2109         rcu_read_unlock();
2110 exit:
2111         return err;
2112 }
2113
2114 static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
2115 {
2116         struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
2117         struct datapath *dp;
2118         int bucket = cb->args[0], skip = cb->args[1];
2119         int i, j = 0;
2120
2121         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
2122         if (!dp)
2123                 return -ENODEV;
2124
2125         rcu_read_lock();
2126         for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
2127                 struct vport *vport;
2128                 struct hlist_node *n;
2129
2130                 j = 0;
2131                 hlist_for_each_entry_rcu(vport, n, &dp->ports[i], dp_hash_node) {
2132                         if (j >= skip &&
2133                             ovs_vport_cmd_fill_info(vport, skb,
2134                                                     NETLINK_CB(cb->skb).portid,
2135                                                     cb->nlh->nlmsg_seq,
2136                                                     NLM_F_MULTI,
2137                                                     OVS_VPORT_CMD_NEW) < 0)
2138                                 goto out;
2139
2140                         j++;
2141                 }
2142                 skip = 0;
2143         }
2144 out:
2145         rcu_read_unlock();
2146
2147         cb->args[0] = i;
2148         cb->args[1] = j;
2149
2150         return skb->len;
2151 }
2152
2153 static struct genl_ops dp_vport_genl_ops[] = {
2154         { .cmd = OVS_VPORT_CMD_NEW,
2155           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
2156           .policy = vport_policy,
2157           .doit = ovs_vport_cmd_new
2158         },
2159         { .cmd = OVS_VPORT_CMD_DEL,
2160           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
2161           .policy = vport_policy,
2162           .doit = ovs_vport_cmd_del
2163         },
2164         { .cmd = OVS_VPORT_CMD_GET,
2165           .flags = 0,               /* OK for unprivileged users. */
2166           .policy = vport_policy,
2167           .doit = ovs_vport_cmd_get,
2168           .dumpit = ovs_vport_cmd_dump
2169         },
2170         { .cmd = OVS_VPORT_CMD_SET,
2171           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
2172           .policy = vport_policy,
2173           .doit = ovs_vport_cmd_set,
2174         },
2175 };
2176
2177 struct genl_family_and_ops {
2178         struct genl_family *family;
2179         struct genl_ops *ops;
2180         int n_ops;
2181         struct genl_multicast_group *group;
2182 };
2183
2184 static const struct genl_family_and_ops dp_genl_families[] = {
2185         { &dp_datapath_genl_family,
2186           dp_datapath_genl_ops, ARRAY_SIZE(dp_datapath_genl_ops),
2187           &ovs_dp_datapath_multicast_group },
2188         { &dp_vport_genl_family,
2189           dp_vport_genl_ops, ARRAY_SIZE(dp_vport_genl_ops),
2190           &ovs_dp_vport_multicast_group },
2191         { &dp_flow_genl_family,
2192           dp_flow_genl_ops, ARRAY_SIZE(dp_flow_genl_ops),
2193           &ovs_dp_flow_multicast_group },
2194         { &dp_packet_genl_family,
2195           dp_packet_genl_ops, ARRAY_SIZE(dp_packet_genl_ops),
2196           NULL },
2197 };
2198
2199 static void dp_unregister_genl(int n_families)
2200 {
2201         int i;
2202
2203         for (i = 0; i < n_families; i++)
2204                 genl_unregister_family(dp_genl_families[i].family);
2205 }
2206
2207 static int dp_register_genl(void)
2208 {
2209         int n_registered;
2210         int err;
2211         int i;
2212
2213         n_registered = 0;
2214         for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
2215                 const struct genl_family_and_ops *f = &dp_genl_families[i];
2216
2217                 err = genl_register_family_with_ops(f->family, f->ops,
2218                                                     f->n_ops);
2219                 if (err)
2220                         goto error;
2221                 n_registered++;
2222
2223                 if (f->group) {
2224                         err = genl_register_mc_group(f->family, f->group);
2225                         if (err)
2226                                 goto error;
2227                 }
2228         }
2229
2230         return 0;
2231
2232 error:
2233         dp_unregister_genl(n_registered);
2234         return err;
2235 }
2236
2237 static int __rehash_flow_table(void *dummy)
2238 {
2239         struct datapath *dp;
2240         struct net *net;
2241
2242         rtnl_lock();
2243         for_each_net(net) {
2244                 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2245
2246                 list_for_each_entry(dp, &ovs_net->dps, list_node) {
2247                         struct flow_table *old_table = genl_dereference(dp->table);
2248                         struct flow_table *new_table;
2249
2250                         new_table = ovs_flow_tbl_rehash(old_table);
2251                         if (!IS_ERR(new_table)) {
2252                                 rcu_assign_pointer(dp->table, new_table);
2253                                 ovs_flow_tbl_deferred_destroy(old_table);
2254                         }
2255                 }
2256         }
2257         rtnl_unlock();
2258         return 0;
2259 }
2260
2261 static void rehash_flow_table(struct work_struct *work)
2262 {
2263         genl_exec(__rehash_flow_table, NULL);
2264         schedule_delayed_work(&rehash_flow_wq, REHASH_FLOW_INTERVAL);
2265 }
2266
2267 static int dp_destroy_all(void *data)
2268 {
2269         struct datapath *dp, *dp_next;
2270         struct ovs_net *ovs_net = data;
2271
2272         list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
2273                 __dp_destroy(dp);
2274
2275         return 0;
2276 }
2277
2278 static int __net_init ovs_init_net(struct net *net)
2279 {
2280         struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2281
2282         INIT_LIST_HEAD(&ovs_net->dps);
2283         return 0;
2284 }
2285
2286 static void __net_exit ovs_exit_net(struct net *net)
2287 {
2288         struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
2289
2290         genl_exec(dp_destroy_all, ovs_net);
2291 }
2292
2293 static struct pernet_operations ovs_net_ops = {
2294         .init = ovs_init_net,
2295         .exit = ovs_exit_net,
2296         .id   = &ovs_net_id,
2297         .size = sizeof(struct ovs_net),
2298 };
2299
2300 static int __init dp_init(void)
2301 {
2302         int err;
2303
2304         BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
2305
2306         pr_info("Open vSwitch switching datapath %s, built "__DATE__" "__TIME__"\n",
2307                 VERSION);
2308
2309         err = genl_exec_init();
2310         if (err)
2311                 goto error;
2312
2313         err = ovs_workqueues_init();
2314         if (err)
2315                 goto error_genl_exec;
2316
2317         err = ovs_tnl_init();
2318         if (err)
2319                 goto error_wq;
2320
2321         err = ovs_flow_init();
2322         if (err)
2323                 goto error_tnl_exit;
2324
2325         err = ovs_vport_init();
2326         if (err)
2327                 goto error_flow_exit;
2328
2329         err = register_pernet_device(&ovs_net_ops);
2330         if (err)
2331                 goto error_vport_exit;
2332
2333         err = register_netdevice_notifier(&ovs_dp_device_notifier);
2334         if (err)
2335                 goto error_netns_exit;
2336
2337         err = dp_register_genl();
2338         if (err < 0)
2339                 goto error_unreg_notifier;
2340
2341         schedule_delayed_work(&rehash_flow_wq, REHASH_FLOW_INTERVAL);
2342
2343         return 0;
2344
2345 error_unreg_notifier:
2346         unregister_netdevice_notifier(&ovs_dp_device_notifier);
2347 error_netns_exit:
2348         unregister_pernet_device(&ovs_net_ops);
2349 error_vport_exit:
2350         ovs_vport_exit();
2351 error_flow_exit:
2352         ovs_flow_exit();
2353 error_tnl_exit:
2354         ovs_tnl_exit();
2355 error_wq:
2356         ovs_workqueues_exit();
2357 error_genl_exec:
2358         genl_exec_exit();
2359 error:
2360         return err;
2361 }
2362
2363 static void dp_cleanup(void)
2364 {
2365         cancel_delayed_work_sync(&rehash_flow_wq);
2366         dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
2367         unregister_netdevice_notifier(&ovs_dp_device_notifier);
2368         unregister_pernet_device(&ovs_net_ops);
2369         rcu_barrier();
2370         ovs_vport_exit();
2371         ovs_flow_exit();
2372         ovs_tnl_exit();
2373         ovs_workqueues_exit();
2374         genl_exec_exit();
2375 }
2376
2377 module_init(dp_init);
2378 module_exit(dp_cleanup);
2379
2380 MODULE_DESCRIPTION("Open vSwitch switching datapath");
2381 MODULE_LICENSE("GPL");
2382 MODULE_VERSION(VERSION);