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