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