datapath: Allow user space to announce ability to accept unaligned Netlink messages
[sliver-openvswitch.git] / datapath / datapath.c
1 /*
2  * Copyright (c) 2007-2013 Nicira, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA
17  */
18
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21 #include <linux/init.h>
22 #include <linux/module.h>
23 #include <linux/if_arp.h>
24 #include <linux/if_vlan.h>
25 #include <linux/in.h>
26 #include <linux/ip.h>
27 #include <linux/jhash.h>
28 #include <linux/delay.h>
29 #include <linux/time.h>
30 #include <linux/etherdevice.h>
31 #include <linux/genetlink.h>
32 #include <linux/kernel.h>
33 #include <linux/kthread.h>
34 #include <linux/mutex.h>
35 #include <linux/percpu.h>
36 #include <linux/rcupdate.h>
37 #include <linux/tcp.h>
38 #include <linux/udp.h>
39 #include <linux/version.h>
40 #include <linux/ethtool.h>
41 #include <linux/wait.h>
42 #include <asm/div64.h>
43 #include <linux/highmem.h>
44 #include <linux/netfilter_bridge.h>
45 #include <linux/netfilter_ipv4.h>
46 #include <linux/inetdevice.h>
47 #include <linux/list.h>
48 #include <linux/openvswitch.h>
49 #include <linux/rculist.h>
50 #include <linux/dmi.h>
51 #include <linux/genetlink.h>
52 #include <net/genetlink.h>
53 #include <net/genetlink.h>
54 #include <net/net_namespace.h>
55 #include <net/netns/generic.h>
56
57 #include "datapath.h"
58 #include "flow.h"
59 #include "flow_netlink.h"
60 #include "vlan.h"
61 #include "vport-internal_dev.h"
62 #include "vport-netdev.h"
63
64 int ovs_net_id __read_mostly;
65
66 static void ovs_notify(struct sk_buff *skb, struct genl_info *info,
67                        struct genl_multicast_group *grp)
68 {
69         genl_notify(skb, genl_info_net(info), info->snd_portid,
70                     grp->id, info->nlhdr, GFP_KERNEL);
71 }
72
73 /**
74  * DOC: Locking:
75  *
76  * All writes e.g. Writes to device state (add/remove datapath, port, set
77  * operations on vports, etc.), Writes to other state (flow table
78  * modifications, set miscellaneous datapath parameters, etc.) are protected
79  * by ovs_lock.
80  *
81  * Reads are protected by RCU.
82  *
83  * There are a few special cases (mostly stats) that have their own
84  * synchronization but they nest under all of above and don't interact with
85  * each other.
86  *
87  * The RTNL lock nests inside ovs_mutex.
88  */
89
90 static DEFINE_MUTEX(ovs_mutex);
91
92 void ovs_lock(void)
93 {
94         mutex_lock(&ovs_mutex);
95 }
96
97 void ovs_unlock(void)
98 {
99         mutex_unlock(&ovs_mutex);
100 }
101
102 #ifdef CONFIG_LOCKDEP
103 int lockdep_ovsl_is_held(void)
104 {
105         if (debug_locks)
106                 return lockdep_is_held(&ovs_mutex);
107         else
108                 return 1;
109 }
110 #endif
111
112 static struct vport *new_vport(const struct vport_parms *);
113 static int queue_gso_packets(struct net *, int dp_ifindex, struct sk_buff *,
114                              const struct dp_upcall_info *);
115 static int queue_userspace_packet(struct net *, int dp_ifindex,
116                                   struct sk_buff *,
117                                   const struct dp_upcall_info *);
118
119 /* Must be called with rcu_read_lock or ovs_mutex. */
120 static struct datapath *get_dp(struct net *net, int dp_ifindex)
121 {
122         struct datapath *dp = NULL;
123         struct net_device *dev;
124
125         rcu_read_lock();
126         dev = dev_get_by_index_rcu(net, dp_ifindex);
127         if (dev) {
128                 struct vport *vport = ovs_internal_dev_get_vport(dev);
129                 if (vport)
130                         dp = vport->dp;
131         }
132         rcu_read_unlock();
133
134         return dp;
135 }
136
137 /* Must be called with rcu_read_lock or ovs_mutex. */
138 const char *ovs_dp_name(const struct datapath *dp)
139 {
140         struct vport *vport = ovs_vport_ovsl_rcu(dp, OVSP_LOCAL);
141         return vport->ops->get_name(vport);
142 }
143
144 static int get_dpifindex(struct datapath *dp)
145 {
146         struct vport *local;
147         int ifindex;
148
149         rcu_read_lock();
150
151         local = ovs_vport_rcu(dp, OVSP_LOCAL);
152         if (local)
153                 ifindex = netdev_vport_priv(local)->dev->ifindex;
154         else
155                 ifindex = 0;
156
157         rcu_read_unlock();
158
159         return ifindex;
160 }
161
162 static void destroy_dp_rcu(struct rcu_head *rcu)
163 {
164         struct datapath *dp = container_of(rcu, struct datapath, rcu);
165
166         ovs_flow_tbl_destroy(&dp->table);
167         free_percpu(dp->stats_percpu);
168         release_net(ovs_dp_get_net(dp));
169         kfree(dp->ports);
170         kfree(dp);
171 }
172
173 static struct hlist_head *vport_hash_bucket(const struct datapath *dp,
174                                             u16 port_no)
175 {
176         return &dp->ports[port_no & (DP_VPORT_HASH_BUCKETS - 1)];
177 }
178
179 struct vport *ovs_lookup_vport(const struct datapath *dp, u16 port_no)
180 {
181         struct vport *vport;
182         struct hlist_head *head;
183
184         head = vport_hash_bucket(dp, port_no);
185         hlist_for_each_entry_rcu(vport, head, dp_hash_node) {
186                 if (vport->port_no == port_no)
187                         return vport;
188         }
189         return NULL;
190 }
191
192 /* Called with ovs_mutex. */
193 static struct vport *new_vport(const struct vport_parms *parms)
194 {
195         struct vport *vport;
196
197         vport = ovs_vport_add(parms);
198         if (!IS_ERR(vport)) {
199                 struct datapath *dp = parms->dp;
200                 struct hlist_head *head = vport_hash_bucket(dp, vport->port_no);
201
202                 hlist_add_head_rcu(&vport->dp_hash_node, head);
203         }
204         return vport;
205 }
206
207 void ovs_dp_detach_port(struct vport *p)
208 {
209         ASSERT_OVSL();
210
211         /* First drop references to device. */
212         hlist_del_rcu(&p->dp_hash_node);
213
214         /* Then destroy it. */
215         ovs_vport_del(p);
216 }
217
218 /* Must be called with rcu_read_lock. */
219 void ovs_dp_process_received_packet(struct vport *p, struct sk_buff *skb)
220 {
221         struct datapath *dp = p->dp;
222         struct sw_flow *flow;
223         struct dp_stats_percpu *stats;
224         struct sw_flow_key key;
225         u64 *stats_counter;
226         u32 n_mask_hit;
227         int error;
228
229         stats = this_cpu_ptr(dp->stats_percpu);
230
231         /* Extract flow from 'skb' into 'key'. */
232         error = ovs_flow_extract(skb, p->port_no, &key);
233         if (unlikely(error)) {
234                 kfree_skb(skb);
235                 return;
236         }
237
238         /* Look up flow. */
239         flow = ovs_flow_tbl_lookup_stats(&dp->table, &key, &n_mask_hit);
240         if (unlikely(!flow)) {
241                 struct dp_upcall_info upcall;
242
243                 upcall.cmd = OVS_PACKET_CMD_MISS;
244                 upcall.key = &key;
245                 upcall.userdata = NULL;
246                 upcall.portid = p->upcall_portid;
247                 ovs_dp_upcall(dp, skb, &upcall);
248                 consume_skb(skb);
249                 stats_counter = &stats->n_missed;
250                 goto out;
251         }
252
253         OVS_CB(skb)->flow = flow;
254         OVS_CB(skb)->pkt_key = &key;
255
256         ovs_flow_stats_update(OVS_CB(skb)->flow, skb);
257         ovs_execute_actions(dp, skb);
258         stats_counter = &stats->n_hit;
259
260 out:
261         /* Update datapath statistics. */
262         u64_stats_update_begin(&stats->sync);
263         (*stats_counter)++;
264         stats->n_mask_hit += n_mask_hit;
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          SET_PARALLEL_OPS
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         struct genl_info info = {
408 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0)
409                 .dst_sk = net->genl_sock,
410 #endif
411                 .snd_portid = upcall_info->portid,
412         };
413         size_t len;
414         int err;
415
416         if (vlan_tx_tag_present(skb)) {
417                 nskb = skb_clone(skb, GFP_ATOMIC);
418                 if (!nskb)
419                         return -ENOMEM;
420
421                 nskb = __vlan_put_tag(nskb, nskb->vlan_proto, vlan_tx_tag_get(nskb));
422                 if (!nskb)
423                         return -ENOMEM;
424
425                 vlan_set_tci(nskb, 0);
426
427                 skb = nskb;
428         }
429
430         if (nla_attr_size(skb->len) > USHRT_MAX) {
431                 err = -EFBIG;
432                 goto out;
433         }
434
435         len = upcall_msg_size(skb, upcall_info->userdata);
436         user_skb = genlmsg_new_unicast(len, &info, GFP_ATOMIC);
437         if (!user_skb) {
438                 err = -ENOMEM;
439                 goto out;
440         }
441
442         upcall = genlmsg_put(user_skb, 0, 0, &dp_packet_genl_family,
443                              0, upcall_info->cmd);
444         upcall->dp_ifindex = dp_ifindex;
445
446         nla = nla_nest_start(user_skb, OVS_PACKET_ATTR_KEY);
447         ovs_nla_put_flow(upcall_info->key, upcall_info->key, user_skb);
448         nla_nest_end(user_skb, nla);
449
450         if (upcall_info->userdata)
451                 __nla_put(user_skb, OVS_PACKET_ATTR_USERDATA,
452                           nla_len(upcall_info->userdata),
453                           nla_data(upcall_info->userdata));
454
455         nla = __nla_reserve(user_skb, OVS_PACKET_ATTR_PACKET, skb->len);
456
457         skb_copy_and_csum_dev(skb, nla_data(nla));
458
459         genlmsg_end(user_skb, upcall);
460         err = genlmsg_unicast(net, user_skb, upcall_info->portid);
461
462 out:
463         kfree_skb(nskb);
464         return err;
465 }
466
467 static int ovs_packet_cmd_execute(struct sk_buff *skb, struct genl_info *info)
468 {
469         struct ovs_header *ovs_header = info->userhdr;
470         struct nlattr **a = info->attrs;
471         struct sw_flow_actions *acts;
472         struct sk_buff *packet;
473         struct sw_flow *flow;
474         struct datapath *dp;
475         struct ethhdr *eth;
476         int len;
477         int err;
478
479         err = -EINVAL;
480         if (!a[OVS_PACKET_ATTR_PACKET] || !a[OVS_PACKET_ATTR_KEY] ||
481             !a[OVS_PACKET_ATTR_ACTIONS])
482                 goto err;
483
484         len = nla_len(a[OVS_PACKET_ATTR_PACKET]);
485         packet = __dev_alloc_skb(NET_IP_ALIGN + len, GFP_KERNEL);
486         err = -ENOMEM;
487         if (!packet)
488                 goto err;
489         skb_reserve(packet, NET_IP_ALIGN);
490
491         nla_memcpy(__skb_put(packet, len), a[OVS_PACKET_ATTR_PACKET], len);
492
493         skb_reset_mac_header(packet);
494         eth = eth_hdr(packet);
495
496         /* Normally, setting the skb 'protocol' field would be handled by a
497          * call to eth_type_trans(), but it assumes there's a sending
498          * device, which we may not have. */
499         if (ntohs(eth->h_proto) >= ETH_P_802_3_MIN)
500                 packet->protocol = eth->h_proto;
501         else
502                 packet->protocol = htons(ETH_P_802_2);
503
504         /* Build an sw_flow for sending this packet. */
505         flow = ovs_flow_alloc(false);
506         err = PTR_ERR(flow);
507         if (IS_ERR(flow))
508                 goto err_kfree_skb;
509
510         err = ovs_flow_extract(packet, -1, &flow->key);
511         if (err)
512                 goto err_flow_free;
513
514         err = ovs_nla_get_flow_metadata(flow, a[OVS_PACKET_ATTR_KEY]);
515         if (err)
516                 goto err_flow_free;
517         acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_PACKET_ATTR_ACTIONS]));
518         err = PTR_ERR(acts);
519         if (IS_ERR(acts))
520                 goto err_flow_free;
521
522         err = ovs_nla_copy_actions(a[OVS_PACKET_ATTR_ACTIONS],
523                                    &flow->key, 0, &acts);
524         rcu_assign_pointer(flow->sf_acts, acts);
525         if (err)
526                 goto err_flow_free;
527
528         OVS_CB(packet)->flow = flow;
529         OVS_CB(packet)->pkt_key = &flow->key;
530         packet->priority = flow->key.phy.priority;
531         packet->mark = flow->key.phy.skb_mark;
532
533         rcu_read_lock();
534         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
535         err = -ENODEV;
536         if (!dp)
537                 goto err_unlock;
538
539         local_bh_disable();
540         err = ovs_execute_actions(dp, packet);
541         local_bh_enable();
542         rcu_read_unlock();
543
544         ovs_flow_free(flow, false);
545         return err;
546
547 err_unlock:
548         rcu_read_unlock();
549 err_flow_free:
550         ovs_flow_free(flow, false);
551 err_kfree_skb:
552         kfree_skb(packet);
553 err:
554         return err;
555 }
556
557 static const struct nla_policy packet_policy[OVS_PACKET_ATTR_MAX + 1] = {
558         [OVS_PACKET_ATTR_PACKET] = { .len = ETH_HLEN },
559         [OVS_PACKET_ATTR_KEY] = { .type = NLA_NESTED },
560         [OVS_PACKET_ATTR_ACTIONS] = { .type = NLA_NESTED },
561 };
562
563 static struct genl_ops dp_packet_genl_ops[] = {
564         { .cmd = OVS_PACKET_CMD_EXECUTE,
565           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
566           .policy = packet_policy,
567           .doit = ovs_packet_cmd_execute
568         }
569 };
570
571 static void get_dp_stats(struct datapath *dp, struct ovs_dp_stats *stats,
572                          struct ovs_dp_megaflow_stats *mega_stats)
573 {
574         int i;
575
576         memset(mega_stats, 0, sizeof(*mega_stats));
577
578         stats->n_flows = ovs_flow_tbl_count(&dp->table);
579         mega_stats->n_masks = ovs_flow_tbl_num_masks(&dp->table);
580
581         stats->n_hit = stats->n_missed = stats->n_lost = 0;
582
583         for_each_possible_cpu(i) {
584                 const struct dp_stats_percpu *percpu_stats;
585                 struct dp_stats_percpu local_stats;
586                 unsigned int start;
587
588                 percpu_stats = per_cpu_ptr(dp->stats_percpu, i);
589
590                 do {
591                         start = u64_stats_fetch_begin_bh(&percpu_stats->sync);
592                         local_stats = *percpu_stats;
593                 } while (u64_stats_fetch_retry_bh(&percpu_stats->sync, start));
594
595                 stats->n_hit += local_stats.n_hit;
596                 stats->n_missed += local_stats.n_missed;
597                 stats->n_lost += local_stats.n_lost;
598                 mega_stats->n_mask_hit += local_stats.n_mask_hit;
599         }
600 }
601
602 static const struct nla_policy flow_policy[OVS_FLOW_ATTR_MAX + 1] = {
603         [OVS_FLOW_ATTR_KEY] = { .type = NLA_NESTED },
604         [OVS_FLOW_ATTR_ACTIONS] = { .type = NLA_NESTED },
605         [OVS_FLOW_ATTR_CLEAR] = { .type = NLA_FLAG },
606 };
607
608 static struct genl_family dp_flow_genl_family = {
609         .id = GENL_ID_GENERATE,
610         .hdrsize = sizeof(struct ovs_header),
611         .name = OVS_FLOW_FAMILY,
612         .version = OVS_FLOW_VERSION,
613         .maxattr = OVS_FLOW_ATTR_MAX,
614         .netnsok = true,
615          SET_PARALLEL_OPS
616 };
617
618 static struct genl_multicast_group ovs_dp_flow_multicast_group = {
619         .name = OVS_FLOW_MCGROUP
620 };
621
622 static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts)
623 {
624         return NLMSG_ALIGN(sizeof(struct ovs_header))
625                 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_KEY */
626                 + nla_total_size(key_attr_size()) /* OVS_FLOW_ATTR_MASK */
627                 + nla_total_size(sizeof(struct ovs_flow_stats)) /* OVS_FLOW_ATTR_STATS */
628                 + nla_total_size(1) /* OVS_FLOW_ATTR_TCP_FLAGS */
629                 + nla_total_size(8) /* OVS_FLOW_ATTR_USED */
630                 + nla_total_size(acts->actions_len); /* OVS_FLOW_ATTR_ACTIONS */
631 }
632
633 /* Called with ovs_mutex. */
634 static int ovs_flow_cmd_fill_info(struct sw_flow *flow, struct datapath *dp,
635                                   struct sk_buff *skb, u32 portid,
636                                   u32 seq, u32 flags, u8 cmd)
637 {
638         const int skb_orig_len = skb->len;
639         struct nlattr *start;
640         struct ovs_flow_stats stats;
641         __be16 tcp_flags;
642         unsigned long used;
643         struct ovs_header *ovs_header;
644         struct nlattr *nla;
645         int err;
646
647         ovs_header = genlmsg_put(skb, portid, seq, &dp_flow_genl_family, flags, cmd);
648         if (!ovs_header)
649                 return -EMSGSIZE;
650
651         ovs_header->dp_ifindex = get_dpifindex(dp);
652
653         /* Fill flow key. */
654         nla = nla_nest_start(skb, OVS_FLOW_ATTR_KEY);
655         if (!nla)
656                 goto nla_put_failure;
657
658         err = ovs_nla_put_flow(&flow->unmasked_key, &flow->unmasked_key, skb);
659         if (err)
660                 goto error;
661         nla_nest_end(skb, nla);
662
663         nla = nla_nest_start(skb, OVS_FLOW_ATTR_MASK);
664         if (!nla)
665                 goto nla_put_failure;
666
667         err = ovs_nla_put_flow(&flow->key, &flow->mask->key, skb);
668         if (err)
669                 goto error;
670
671         nla_nest_end(skb, nla);
672
673         ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
674         if (used &&
675             nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used)))
676                 goto nla_put_failure;
677
678         if (stats.n_packets &&
679             nla_put(skb, OVS_FLOW_ATTR_STATS, sizeof(struct ovs_flow_stats), &stats))
680                 goto nla_put_failure;
681
682         if ((u8)ntohs(tcp_flags) &&
683              nla_put_u8(skb, OVS_FLOW_ATTR_TCP_FLAGS, (u8)ntohs(tcp_flags)))
684                 goto nla_put_failure;
685
686         /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
687          * this is the first flow to be dumped into 'skb'.  This is unusual for
688          * Netlink but individual action lists can be longer than
689          * NLMSG_GOODSIZE and thus entirely undumpable if we didn't do this.
690          * The userspace caller can always fetch the actions separately if it
691          * really wants them.  (Most userspace callers in fact don't care.)
692          *
693          * This can only fail for dump operations because the skb is always
694          * properly sized for single flows.
695          */
696         start = nla_nest_start(skb, OVS_FLOW_ATTR_ACTIONS);
697         if (start) {
698                 const struct sw_flow_actions *sf_acts;
699
700                 sf_acts = rcu_dereference_ovsl(flow->sf_acts);
701
702                 err = ovs_nla_put_actions(sf_acts->actions,
703                                           sf_acts->actions_len, skb);
704                 if (!err)
705                         nla_nest_end(skb, start);
706                 else {
707                         if (skb_orig_len)
708                                 goto error;
709
710                         nla_nest_cancel(skb, start);
711                 }
712         } else if (skb_orig_len)
713                 goto nla_put_failure;
714
715         return genlmsg_end(skb, ovs_header);
716
717 nla_put_failure:
718         err = -EMSGSIZE;
719 error:
720         genlmsg_cancel(skb, ovs_header);
721         return err;
722 }
723
724 static struct sk_buff *ovs_flow_cmd_alloc_info(struct sw_flow *flow,
725                                                struct genl_info *info)
726 {
727         size_t len;
728
729         len = ovs_flow_cmd_msg_size(ovsl_dereference(flow->sf_acts));
730
731         return genlmsg_new_unicast(len, info, GFP_KERNEL);
732 }
733
734 static struct sk_buff *ovs_flow_cmd_build_info(struct sw_flow *flow,
735                                                struct datapath *dp,
736                                                struct genl_info *info,
737                                                u8 cmd)
738 {
739         struct sk_buff *skb;
740         int retval;
741
742         skb = ovs_flow_cmd_alloc_info(flow, info);
743         if (!skb)
744                 return ERR_PTR(-ENOMEM);
745
746         retval = ovs_flow_cmd_fill_info(flow, dp, skb, info->snd_portid,
747                                         info->snd_seq, 0, cmd);
748         BUG_ON(retval < 0);
749         return skb;
750 }
751
752 static int ovs_flow_cmd_new_or_set(struct sk_buff *skb, struct genl_info *info)
753 {
754         struct nlattr **a = info->attrs;
755         struct ovs_header *ovs_header = info->userhdr;
756         struct sw_flow_key key, masked_key;
757         struct sw_flow *flow = NULL;
758         struct sw_flow_mask mask;
759         struct sk_buff *reply;
760         struct datapath *dp;
761         struct sw_flow_actions *acts = NULL;
762         struct sw_flow_match match;
763         bool exact_5tuple;
764         int error;
765
766         /* Extract key. */
767         error = -EINVAL;
768         if (!a[OVS_FLOW_ATTR_KEY])
769                 goto error;
770
771         ovs_match_init(&match, &key, &mask);
772         error = ovs_nla_get_match(&match, &exact_5tuple,
773                                   a[OVS_FLOW_ATTR_KEY], a[OVS_FLOW_ATTR_MASK]);
774         if (error)
775                 goto error;
776
777         /* Validate actions. */
778         if (a[OVS_FLOW_ATTR_ACTIONS]) {
779                 acts = ovs_nla_alloc_flow_actions(nla_len(a[OVS_FLOW_ATTR_ACTIONS]));
780                 error = PTR_ERR(acts);
781                 if (IS_ERR(acts))
782                         goto error;
783
784                 ovs_flow_mask_key(&masked_key, &key, &mask);
785                 error = ovs_nla_copy_actions(a[OVS_FLOW_ATTR_ACTIONS],
786                                              &masked_key, 0, &acts);
787                 if (error) {
788                         OVS_NLERR("Flow actions may not be safe on all matching packets.\n");
789                         goto err_kfree;
790                 }
791         } else if (info->genlhdr->cmd == OVS_FLOW_CMD_NEW) {
792                 error = -EINVAL;
793                 goto error;
794         }
795
796         ovs_lock();
797         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
798         error = -ENODEV;
799         if (!dp)
800                 goto err_unlock_ovs;
801
802         /* Check if this is a duplicate flow */
803         flow = ovs_flow_tbl_lookup(&dp->table, &key);
804         if (!flow) {
805                 /* Bail out if we're not allowed to create a new flow. */
806                 error = -ENOENT;
807                 if (info->genlhdr->cmd == OVS_FLOW_CMD_SET)
808                         goto err_unlock_ovs;
809
810                 /* Allocate flow. */
811                 flow = ovs_flow_alloc(!exact_5tuple);
812                 if (IS_ERR(flow)) {
813                         error = PTR_ERR(flow);
814                         goto err_unlock_ovs;
815                 }
816
817                 flow->key = masked_key;
818                 flow->unmasked_key = key;
819                 rcu_assign_pointer(flow->sf_acts, acts);
820
821                 /* Put flow in bucket. */
822                 error = ovs_flow_tbl_insert(&dp->table, flow, &mask);
823                 if (error) {
824                         acts = NULL;
825                         goto err_flow_free;
826                 }
827
828                 reply = ovs_flow_cmd_build_info(flow, dp, info, OVS_FLOW_CMD_NEW);
829         } else {
830                 /* We found a matching flow. */
831                 struct sw_flow_actions *old_acts;
832
833                 /* Bail out if we're not allowed to modify an existing flow.
834                  * We accept NLM_F_CREATE in place of the intended NLM_F_EXCL
835                  * because Generic Netlink treats the latter as a dump
836                  * request.  We also accept NLM_F_EXCL in case that bug ever
837                  * gets fixed.
838                  */
839                 error = -EEXIST;
840                 if (info->genlhdr->cmd == OVS_FLOW_CMD_NEW &&
841                     info->nlhdr->nlmsg_flags & (NLM_F_CREATE | NLM_F_EXCL))
842                         goto err_unlock_ovs;
843
844                 /* The unmasked key has to be the same for flow updates. */
845                 error = -EINVAL;
846                 if (!ovs_flow_cmp_unmasked_key(flow, &match)) {
847                         OVS_NLERR("Flow modification message rejected, unmasked key does not match.\n");
848                         goto err_unlock_ovs;
849                 }
850
851                 /* Update actions. */
852                 old_acts = ovsl_dereference(flow->sf_acts);
853                 rcu_assign_pointer(flow->sf_acts, acts);
854                 ovs_nla_free_flow_actions(old_acts);
855
856                 reply = ovs_flow_cmd_build_info(flow, dp, info, OVS_FLOW_CMD_NEW);
857
858                 /* Clear stats. */
859                 if (a[OVS_FLOW_ATTR_CLEAR])
860                         ovs_flow_stats_clear(flow);
861         }
862         ovs_unlock();
863
864         if (!IS_ERR(reply))
865                 ovs_notify(reply, info, &ovs_dp_flow_multicast_group);
866         else
867                 netlink_set_err(sock_net(skb->sk)->genl_sock, 0,
868                                 ovs_dp_flow_multicast_group.id, PTR_ERR(reply));
869         return 0;
870
871 err_flow_free:
872         ovs_flow_free(flow, false);
873 err_unlock_ovs:
874         ovs_unlock();
875 err_kfree:
876         kfree(acts);
877 error:
878         return error;
879 }
880
881 static int ovs_flow_cmd_get(struct sk_buff *skb, struct genl_info *info)
882 {
883         struct nlattr **a = info->attrs;
884         struct ovs_header *ovs_header = info->userhdr;
885         struct sw_flow_key key;
886         struct sk_buff *reply;
887         struct sw_flow *flow;
888         struct datapath *dp;
889         struct sw_flow_match match;
890         int err;
891
892         if (!a[OVS_FLOW_ATTR_KEY]) {
893                 OVS_NLERR("Flow get message rejected, Key attribute missing.\n");
894                 return -EINVAL;
895         }
896
897         ovs_match_init(&match, &key, NULL);
898         err = ovs_nla_get_match(&match, NULL, a[OVS_FLOW_ATTR_KEY], NULL);
899         if (err)
900                 return err;
901
902         ovs_lock();
903         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
904         if (!dp) {
905                 err = -ENODEV;
906                 goto unlock;
907         }
908
909         flow = ovs_flow_tbl_lookup(&dp->table, &key);
910         if (!flow || !ovs_flow_cmp_unmasked_key(flow, &match)) {
911                 err = -ENOENT;
912                 goto unlock;
913         }
914
915         reply = ovs_flow_cmd_build_info(flow, dp, info, OVS_FLOW_CMD_NEW);
916         if (IS_ERR(reply)) {
917                 err = PTR_ERR(reply);
918                 goto unlock;
919         }
920
921         ovs_unlock();
922         return genlmsg_reply(reply, info);
923 unlock:
924         ovs_unlock();
925         return err;
926 }
927
928 static int ovs_flow_cmd_del(struct sk_buff *skb, struct genl_info *info)
929 {
930         struct nlattr **a = info->attrs;
931         struct ovs_header *ovs_header = info->userhdr;
932         struct sw_flow_key key;
933         struct sk_buff *reply;
934         struct sw_flow *flow;
935         struct datapath *dp;
936         struct sw_flow_match match;
937         int err;
938
939         ovs_lock();
940         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
941         if (!dp) {
942                 err = -ENODEV;
943                 goto unlock;
944         }
945
946         if (!a[OVS_FLOW_ATTR_KEY]) {
947                 err = ovs_flow_tbl_flush(&dp->table);
948                 goto unlock;
949         }
950
951         ovs_match_init(&match, &key, NULL);
952         err = ovs_nla_get_match(&match, NULL, a[OVS_FLOW_ATTR_KEY], NULL);
953         if (err)
954                 goto unlock;
955
956         flow = ovs_flow_tbl_lookup(&dp->table, &key);
957         if (!flow || !ovs_flow_cmp_unmasked_key(flow, &match)) {
958                 err = -ENOENT;
959                 goto unlock;
960         }
961
962         reply = ovs_flow_cmd_alloc_info(flow, info);
963         if (!reply) {
964                 err = -ENOMEM;
965                 goto unlock;
966         }
967
968         ovs_flow_tbl_remove(&dp->table, flow);
969
970         err = ovs_flow_cmd_fill_info(flow, dp, reply, info->snd_portid,
971                                      info->snd_seq, 0, OVS_FLOW_CMD_DEL);
972         BUG_ON(err < 0);
973
974         ovs_flow_free(flow, true);
975         ovs_unlock();
976
977         ovs_notify(reply, info, &ovs_dp_flow_multicast_group);
978         return 0;
979 unlock:
980         ovs_unlock();
981         return err;
982 }
983
984 static int ovs_flow_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
985 {
986         struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
987         struct table_instance *ti;
988         struct datapath *dp;
989
990         rcu_read_lock();
991         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
992         if (!dp) {
993                 rcu_read_unlock();
994                 return -ENODEV;
995         }
996
997         ti = rcu_dereference(dp->table.ti);
998         for (;;) {
999                 struct sw_flow *flow;
1000                 u32 bucket, obj;
1001
1002                 bucket = cb->args[0];
1003                 obj = cb->args[1];
1004                 flow = ovs_flow_tbl_dump_next(ti, &bucket, &obj);
1005                 if (!flow)
1006                         break;
1007
1008                 if (ovs_flow_cmd_fill_info(flow, dp, skb,
1009                                            NETLINK_CB(cb->skb).portid,
1010                                            cb->nlh->nlmsg_seq, NLM_F_MULTI,
1011                                            OVS_FLOW_CMD_NEW) < 0)
1012                         break;
1013
1014                 cb->args[0] = bucket;
1015                 cb->args[1] = obj;
1016         }
1017         rcu_read_unlock();
1018         return skb->len;
1019 }
1020
1021 static struct genl_ops dp_flow_genl_ops[] = {
1022         { .cmd = OVS_FLOW_CMD_NEW,
1023           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1024           .policy = flow_policy,
1025           .doit = ovs_flow_cmd_new_or_set
1026         },
1027         { .cmd = OVS_FLOW_CMD_DEL,
1028           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1029           .policy = flow_policy,
1030           .doit = ovs_flow_cmd_del
1031         },
1032         { .cmd = OVS_FLOW_CMD_GET,
1033           .flags = 0,               /* OK for unprivileged users. */
1034           .policy = flow_policy,
1035           .doit = ovs_flow_cmd_get,
1036           .dumpit = ovs_flow_cmd_dump
1037         },
1038         { .cmd = OVS_FLOW_CMD_SET,
1039           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1040           .policy = flow_policy,
1041           .doit = ovs_flow_cmd_new_or_set,
1042         },
1043 };
1044
1045 static const struct nla_policy datapath_policy[OVS_DP_ATTR_MAX + 1] = {
1046         [OVS_DP_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1047         [OVS_DP_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1048         [OVS_DP_ATTR_USER_FEATURES] = { .type = NLA_U32 },
1049 };
1050
1051 static struct genl_family dp_datapath_genl_family = {
1052         .id = GENL_ID_GENERATE,
1053         .hdrsize = sizeof(struct ovs_header),
1054         .name = OVS_DATAPATH_FAMILY,
1055         .version = OVS_DATAPATH_VERSION,
1056         .maxattr = OVS_DP_ATTR_MAX,
1057         .netnsok = true,
1058          SET_PARALLEL_OPS
1059 };
1060
1061 static struct genl_multicast_group ovs_dp_datapath_multicast_group = {
1062         .name = OVS_DATAPATH_MCGROUP
1063 };
1064
1065 static size_t ovs_dp_cmd_msg_size(void)
1066 {
1067         size_t msgsize = NLMSG_ALIGN(sizeof(struct ovs_header));
1068
1069         msgsize += nla_total_size(IFNAMSIZ);
1070         msgsize += nla_total_size(sizeof(struct ovs_dp_stats));
1071         msgsize += nla_total_size(sizeof(struct ovs_dp_megaflow_stats));
1072
1073         return msgsize;
1074 }
1075
1076 static int ovs_dp_cmd_fill_info(struct datapath *dp, struct sk_buff *skb,
1077                                 u32 portid, u32 seq, u32 flags, u8 cmd)
1078 {
1079         struct ovs_header *ovs_header;
1080         struct ovs_dp_stats dp_stats;
1081         struct ovs_dp_megaflow_stats dp_megaflow_stats;
1082         int err;
1083
1084         ovs_header = genlmsg_put(skb, portid, seq, &dp_datapath_genl_family,
1085                                    flags, cmd);
1086         if (!ovs_header)
1087                 goto error;
1088
1089         ovs_header->dp_ifindex = get_dpifindex(dp);
1090
1091         rcu_read_lock();
1092         err = nla_put_string(skb, OVS_DP_ATTR_NAME, ovs_dp_name(dp));
1093         rcu_read_unlock();
1094         if (err)
1095                 goto nla_put_failure;
1096
1097         get_dp_stats(dp, &dp_stats, &dp_megaflow_stats);
1098         if (nla_put(skb, OVS_DP_ATTR_STATS, sizeof(struct ovs_dp_stats),
1099                         &dp_stats))
1100                 goto nla_put_failure;
1101
1102         if (nla_put(skb, OVS_DP_ATTR_MEGAFLOW_STATS,
1103                         sizeof(struct ovs_dp_megaflow_stats),
1104                         &dp_megaflow_stats))
1105                 goto nla_put_failure;
1106
1107         if (nla_put_u32(skb, OVS_DP_ATTR_USER_FEATURES, dp->user_features))
1108                 goto nla_put_failure;
1109
1110         return genlmsg_end(skb, ovs_header);
1111
1112 nla_put_failure:
1113         genlmsg_cancel(skb, ovs_header);
1114 error:
1115         return -EMSGSIZE;
1116 }
1117
1118 static struct sk_buff *ovs_dp_cmd_build_info(struct datapath *dp,
1119                                              struct genl_info *info, u8 cmd)
1120 {
1121         struct sk_buff *skb;
1122         int retval;
1123
1124         skb = genlmsg_new_unicast(ovs_dp_cmd_msg_size(), info, GFP_KERNEL);
1125         if (!skb)
1126                 return ERR_PTR(-ENOMEM);
1127
1128         retval = ovs_dp_cmd_fill_info(dp, skb, info->snd_portid, info->snd_seq, 0, cmd);
1129         if (retval < 0) {
1130                 kfree_skb(skb);
1131                 return ERR_PTR(retval);
1132         }
1133         return skb;
1134 }
1135
1136 /* Called with ovs_mutex. */
1137 static struct datapath *lookup_datapath(struct net *net,
1138                                         struct ovs_header *ovs_header,
1139                                         struct nlattr *a[OVS_DP_ATTR_MAX + 1])
1140 {
1141         struct datapath *dp;
1142
1143         if (!a[OVS_DP_ATTR_NAME])
1144                 dp = get_dp(net, ovs_header->dp_ifindex);
1145         else {
1146                 struct vport *vport;
1147
1148                 rcu_read_lock();
1149                 vport = ovs_vport_locate(net, nla_data(a[OVS_DP_ATTR_NAME]));
1150                 dp = vport && vport->port_no == OVSP_LOCAL ? vport->dp : NULL;
1151                 rcu_read_unlock();
1152         }
1153         return dp ? dp : ERR_PTR(-ENODEV);
1154 }
1155
1156 static void ovs_dp_change(struct datapath *dp, struct nlattr **a)
1157 {
1158         if (a[OVS_DP_ATTR_USER_FEATURES])
1159                 dp->user_features = nla_get_u32(a[OVS_DP_ATTR_USER_FEATURES]);
1160 }
1161
1162 static int ovs_dp_cmd_new(struct sk_buff *skb, struct genl_info *info)
1163 {
1164         struct nlattr **a = info->attrs;
1165         struct vport_parms parms;
1166         struct sk_buff *reply;
1167         struct datapath *dp;
1168         struct vport *vport;
1169         struct ovs_net *ovs_net;
1170         int err, i;
1171
1172         err = -EINVAL;
1173         if (!a[OVS_DP_ATTR_NAME] || !a[OVS_DP_ATTR_UPCALL_PID])
1174                 goto err;
1175
1176         ovs_lock();
1177
1178         err = -ENOMEM;
1179         dp = kzalloc(sizeof(*dp), GFP_KERNEL);
1180         if (dp == NULL)
1181                 goto err_unlock_ovs;
1182
1183         ovs_dp_set_net(dp, hold_net(sock_net(skb->sk)));
1184
1185         /* Allocate table. */
1186         err = ovs_flow_tbl_init(&dp->table);
1187         if (err)
1188                 goto err_free_dp;
1189
1190         dp->stats_percpu = alloc_percpu(struct dp_stats_percpu);
1191         if (!dp->stats_percpu) {
1192                 err = -ENOMEM;
1193                 goto err_destroy_table;
1194         }
1195
1196         dp->ports = kmalloc(DP_VPORT_HASH_BUCKETS * sizeof(struct hlist_head),
1197                             GFP_KERNEL);
1198         if (!dp->ports) {
1199                 err = -ENOMEM;
1200                 goto err_destroy_percpu;
1201         }
1202
1203         for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++)
1204                 INIT_HLIST_HEAD(&dp->ports[i]);
1205
1206         /* Set up our datapath device. */
1207         parms.name = nla_data(a[OVS_DP_ATTR_NAME]);
1208         parms.type = OVS_VPORT_TYPE_INTERNAL;
1209         parms.options = NULL;
1210         parms.dp = dp;
1211         parms.port_no = OVSP_LOCAL;
1212         parms.upcall_portid = nla_get_u32(a[OVS_DP_ATTR_UPCALL_PID]);
1213
1214         ovs_dp_change(dp, a);
1215
1216         vport = new_vport(&parms);
1217         if (IS_ERR(vport)) {
1218                 err = PTR_ERR(vport);
1219                 if (err == -EBUSY)
1220                         err = -EEXIST;
1221
1222                 goto err_destroy_ports_array;
1223         }
1224
1225         reply = ovs_dp_cmd_build_info(dp, info, OVS_DP_CMD_NEW);
1226         err = PTR_ERR(reply);
1227         if (IS_ERR(reply))
1228                 goto err_destroy_local_port;
1229
1230         ovs_net = net_generic(ovs_dp_get_net(dp), ovs_net_id);
1231         list_add_tail_rcu(&dp->list_node, &ovs_net->dps);
1232
1233         ovs_unlock();
1234
1235         ovs_notify(reply, info, &ovs_dp_datapath_multicast_group);
1236         return 0;
1237
1238 err_destroy_local_port:
1239         ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
1240 err_destroy_ports_array:
1241         kfree(dp->ports);
1242 err_destroy_percpu:
1243         free_percpu(dp->stats_percpu);
1244 err_destroy_table:
1245         ovs_flow_tbl_destroy(&dp->table);
1246 err_free_dp:
1247         release_net(ovs_dp_get_net(dp));
1248         kfree(dp);
1249 err_unlock_ovs:
1250         ovs_unlock();
1251 err:
1252         return err;
1253 }
1254
1255 /* Called with ovs_mutex. */
1256 static void __dp_destroy(struct datapath *dp)
1257 {
1258         int i;
1259
1260         for (i = 0; i < DP_VPORT_HASH_BUCKETS; i++) {
1261                 struct vport *vport;
1262                 struct hlist_node *n;
1263
1264                 hlist_for_each_entry_safe(vport, n, &dp->ports[i], dp_hash_node)
1265                         if (vport->port_no != OVSP_LOCAL)
1266                                 ovs_dp_detach_port(vport);
1267         }
1268
1269         list_del_rcu(&dp->list_node);
1270
1271         /* OVSP_LOCAL is datapath internal port. We need to make sure that
1272          * all port in datapath are destroyed first before freeing datapath.
1273          */
1274         ovs_dp_detach_port(ovs_vport_ovsl(dp, OVSP_LOCAL));
1275
1276         call_rcu(&dp->rcu, destroy_dp_rcu);
1277 }
1278
1279 static int ovs_dp_cmd_del(struct sk_buff *skb, struct genl_info *info)
1280 {
1281         struct sk_buff *reply;
1282         struct datapath *dp;
1283         int err;
1284
1285         ovs_lock();
1286         dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1287         err = PTR_ERR(dp);
1288         if (IS_ERR(dp))
1289                 goto unlock;
1290
1291         reply = ovs_dp_cmd_build_info(dp, info, OVS_DP_CMD_DEL);
1292         err = PTR_ERR(reply);
1293         if (IS_ERR(reply))
1294                 goto unlock;
1295
1296         __dp_destroy(dp);
1297         ovs_unlock();
1298
1299         ovs_notify(reply, info, &ovs_dp_datapath_multicast_group);
1300
1301         return 0;
1302 unlock:
1303         ovs_unlock();
1304         return err;
1305 }
1306
1307 static int ovs_dp_cmd_set(struct sk_buff *skb, struct genl_info *info)
1308 {
1309         struct sk_buff *reply;
1310         struct datapath *dp;
1311         int err;
1312
1313         ovs_lock();
1314         dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1315         err = PTR_ERR(dp);
1316         if (IS_ERR(dp))
1317                 goto unlock;
1318
1319         ovs_dp_change(dp, info->attrs);
1320
1321         reply = ovs_dp_cmd_build_info(dp, info, OVS_DP_CMD_NEW);
1322         if (IS_ERR(reply)) {
1323                 err = PTR_ERR(reply);
1324                 netlink_set_err(sock_net(skb->sk)->genl_sock, 0,
1325                                 ovs_dp_datapath_multicast_group.id, err);
1326                 err = 0;
1327                 goto unlock;
1328         }
1329
1330         ovs_unlock();
1331         ovs_notify(reply, info, &ovs_dp_datapath_multicast_group);
1332
1333         return 0;
1334 unlock:
1335         ovs_unlock();
1336         return err;
1337 }
1338
1339 static int ovs_dp_cmd_get(struct sk_buff *skb, struct genl_info *info)
1340 {
1341         struct sk_buff *reply;
1342         struct datapath *dp;
1343         int err;
1344
1345         ovs_lock();
1346         dp = lookup_datapath(sock_net(skb->sk), info->userhdr, info->attrs);
1347         if (IS_ERR(dp)) {
1348                 err = PTR_ERR(dp);
1349                 goto unlock;
1350         }
1351
1352         reply = ovs_dp_cmd_build_info(dp, info, OVS_DP_CMD_NEW);
1353         if (IS_ERR(reply)) {
1354                 err = PTR_ERR(reply);
1355                 goto unlock;
1356         }
1357
1358         ovs_unlock();
1359         return genlmsg_reply(reply, info);
1360
1361 unlock:
1362         ovs_unlock();
1363         return err;
1364 }
1365
1366 static int ovs_dp_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1367 {
1368         struct ovs_net *ovs_net = net_generic(sock_net(skb->sk), ovs_net_id);
1369         struct datapath *dp;
1370         int skip = cb->args[0];
1371         int i = 0;
1372
1373         rcu_read_lock();
1374         list_for_each_entry_rcu(dp, &ovs_net->dps, list_node) {
1375                 if (i >= skip &&
1376                     ovs_dp_cmd_fill_info(dp, skb, NETLINK_CB(cb->skb).portid,
1377                                          cb->nlh->nlmsg_seq, NLM_F_MULTI,
1378                                          OVS_DP_CMD_NEW) < 0)
1379                         break;
1380                 i++;
1381         }
1382         rcu_read_unlock();
1383
1384         cb->args[0] = i;
1385
1386         return skb->len;
1387 }
1388
1389 static struct genl_ops dp_datapath_genl_ops[] = {
1390         { .cmd = OVS_DP_CMD_NEW,
1391           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1392           .policy = datapath_policy,
1393           .doit = ovs_dp_cmd_new
1394         },
1395         { .cmd = OVS_DP_CMD_DEL,
1396           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1397           .policy = datapath_policy,
1398           .doit = ovs_dp_cmd_del
1399         },
1400         { .cmd = OVS_DP_CMD_GET,
1401           .flags = 0,               /* OK for unprivileged users. */
1402           .policy = datapath_policy,
1403           .doit = ovs_dp_cmd_get,
1404           .dumpit = ovs_dp_cmd_dump
1405         },
1406         { .cmd = OVS_DP_CMD_SET,
1407           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1408           .policy = datapath_policy,
1409           .doit = ovs_dp_cmd_set,
1410         },
1411 };
1412
1413 static const struct nla_policy vport_policy[OVS_VPORT_ATTR_MAX + 1] = {
1414         [OVS_VPORT_ATTR_NAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ - 1 },
1415         [OVS_VPORT_ATTR_STATS] = { .len = sizeof(struct ovs_vport_stats) },
1416         [OVS_VPORT_ATTR_PORT_NO] = { .type = NLA_U32 },
1417         [OVS_VPORT_ATTR_TYPE] = { .type = NLA_U32 },
1418         [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NLA_U32 },
1419         [OVS_VPORT_ATTR_OPTIONS] = { .type = NLA_NESTED },
1420 };
1421
1422 static struct genl_family dp_vport_genl_family = {
1423         .id = GENL_ID_GENERATE,
1424         .hdrsize = sizeof(struct ovs_header),
1425         .name = OVS_VPORT_FAMILY,
1426         .version = OVS_VPORT_VERSION,
1427         .maxattr = OVS_VPORT_ATTR_MAX,
1428         .netnsok = true,
1429          SET_PARALLEL_OPS
1430 };
1431
1432 struct genl_multicast_group ovs_dp_vport_multicast_group = {
1433         .name = OVS_VPORT_MCGROUP
1434 };
1435
1436 /* Called with ovs_mutex or RCU read lock. */
1437 static int ovs_vport_cmd_fill_info(struct vport *vport, struct sk_buff *skb,
1438                                    u32 portid, u32 seq, u32 flags, u8 cmd)
1439 {
1440         struct ovs_header *ovs_header;
1441         struct ovs_vport_stats vport_stats;
1442         int err;
1443
1444         ovs_header = genlmsg_put(skb, portid, seq, &dp_vport_genl_family,
1445                                  flags, cmd);
1446         if (!ovs_header)
1447                 return -EMSGSIZE;
1448
1449         ovs_header->dp_ifindex = get_dpifindex(vport->dp);
1450
1451         if (nla_put_u32(skb, OVS_VPORT_ATTR_PORT_NO, vport->port_no) ||
1452             nla_put_u32(skb, OVS_VPORT_ATTR_TYPE, vport->ops->type) ||
1453             nla_put_string(skb, OVS_VPORT_ATTR_NAME, vport->ops->get_name(vport)) ||
1454             nla_put_u32(skb, OVS_VPORT_ATTR_UPCALL_PID, vport->upcall_portid))
1455                 goto nla_put_failure;
1456
1457         ovs_vport_get_stats(vport, &vport_stats);
1458         if (nla_put(skb, OVS_VPORT_ATTR_STATS, sizeof(struct ovs_vport_stats),
1459                     &vport_stats))
1460                 goto nla_put_failure;
1461
1462         err = ovs_vport_get_options(vport, skb);
1463         if (err == -EMSGSIZE)
1464                 goto error;
1465
1466         return genlmsg_end(skb, ovs_header);
1467
1468 nla_put_failure:
1469         err = -EMSGSIZE;
1470 error:
1471         genlmsg_cancel(skb, ovs_header);
1472         return err;
1473 }
1474
1475 /* Called with ovs_mutex or RCU read lock. */
1476 struct sk_buff *ovs_vport_cmd_build_info(struct vport *vport, u32 portid,
1477                                          u32 seq, u8 cmd)
1478 {
1479         struct sk_buff *skb;
1480         int retval;
1481
1482         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1483         if (!skb)
1484                 return ERR_PTR(-ENOMEM);
1485
1486         retval = ovs_vport_cmd_fill_info(vport, skb, portid, seq, 0, cmd);
1487         BUG_ON(retval < 0);
1488
1489         return skb;
1490 }
1491
1492 /* Called with ovs_mutex or RCU read lock. */
1493 static struct vport *lookup_vport(struct net *net,
1494                                   struct ovs_header *ovs_header,
1495                                   struct nlattr *a[OVS_VPORT_ATTR_MAX + 1])
1496 {
1497         struct datapath *dp;
1498         struct vport *vport;
1499
1500         if (a[OVS_VPORT_ATTR_NAME]) {
1501                 vport = ovs_vport_locate(net, nla_data(a[OVS_VPORT_ATTR_NAME]));
1502                 if (!vport)
1503                         return ERR_PTR(-ENODEV);
1504                 if (ovs_header->dp_ifindex &&
1505                     ovs_header->dp_ifindex != get_dpifindex(vport->dp))
1506                         return ERR_PTR(-ENODEV);
1507                 return vport;
1508         } else if (a[OVS_VPORT_ATTR_PORT_NO]) {
1509                 u32 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1510
1511                 if (port_no >= DP_MAX_PORTS)
1512                         return ERR_PTR(-EFBIG);
1513
1514                 dp = get_dp(net, ovs_header->dp_ifindex);
1515                 if (!dp)
1516                         return ERR_PTR(-ENODEV);
1517
1518                 vport = ovs_vport_ovsl_rcu(dp, port_no);
1519                 if (!vport)
1520                         return ERR_PTR(-ENODEV);
1521                 return vport;
1522         } else
1523                 return ERR_PTR(-EINVAL);
1524 }
1525
1526 static int ovs_vport_cmd_new(struct sk_buff *skb, struct genl_info *info)
1527 {
1528         struct nlattr **a = info->attrs;
1529         struct ovs_header *ovs_header = info->userhdr;
1530         struct vport_parms parms;
1531         struct sk_buff *reply;
1532         struct vport *vport;
1533         struct datapath *dp;
1534         u32 port_no;
1535         int err;
1536
1537         err = -EINVAL;
1538         if (!a[OVS_VPORT_ATTR_NAME] || !a[OVS_VPORT_ATTR_TYPE] ||
1539             !a[OVS_VPORT_ATTR_UPCALL_PID])
1540                 goto exit;
1541
1542         ovs_lock();
1543         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1544         err = -ENODEV;
1545         if (!dp)
1546                 goto exit_unlock;
1547
1548         if (a[OVS_VPORT_ATTR_PORT_NO]) {
1549                 port_no = nla_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1550
1551                 err = -EFBIG;
1552                 if (port_no >= DP_MAX_PORTS)
1553                         goto exit_unlock;
1554
1555                 vport = ovs_vport_ovsl(dp, port_no);
1556                 err = -EBUSY;
1557                 if (vport)
1558                         goto exit_unlock;
1559         } else {
1560                 for (port_no = 1; ; port_no++) {
1561                         if (port_no >= DP_MAX_PORTS) {
1562                                 err = -EFBIG;
1563                                 goto exit_unlock;
1564                         }
1565                         vport = ovs_vport_ovsl(dp, port_no);
1566                         if (!vport)
1567                                 break;
1568                 }
1569         }
1570
1571         parms.name = nla_data(a[OVS_VPORT_ATTR_NAME]);
1572         parms.type = nla_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1573         parms.options = a[OVS_VPORT_ATTR_OPTIONS];
1574         parms.dp = dp;
1575         parms.port_no = port_no;
1576         parms.upcall_portid = nla_get_u32(a[OVS_VPORT_ATTR_UPCALL_PID]);
1577
1578         vport = new_vport(&parms);
1579         err = PTR_ERR(vport);
1580         if (IS_ERR(vport))
1581                 goto exit_unlock;
1582
1583         err = 0;
1584         if (a[OVS_VPORT_ATTR_STATS])
1585                 ovs_vport_set_stats(vport, nla_data(a[OVS_VPORT_ATTR_STATS]));
1586
1587         reply = ovs_vport_cmd_build_info(vport, info->snd_portid, info->snd_seq,
1588                                          OVS_VPORT_CMD_NEW);
1589         if (IS_ERR(reply)) {
1590                 err = PTR_ERR(reply);
1591                 ovs_dp_detach_port(vport);
1592                 goto exit_unlock;
1593         }
1594
1595         ovs_notify(reply, info, &ovs_dp_vport_multicast_group);
1596
1597 exit_unlock:
1598         ovs_unlock();
1599 exit:
1600         return err;
1601 }
1602
1603 static int ovs_vport_cmd_set(struct sk_buff *skb, struct genl_info *info)
1604 {
1605         struct nlattr **a = info->attrs;
1606         struct sk_buff *reply;
1607         struct vport *vport;
1608         int err;
1609
1610         ovs_lock();
1611         vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
1612         err = PTR_ERR(vport);
1613         if (IS_ERR(vport))
1614                 goto exit_unlock;
1615
1616         if (a[OVS_VPORT_ATTR_TYPE] &&
1617             nla_get_u32(a[OVS_VPORT_ATTR_TYPE]) != vport->ops->type) {
1618                 err = -EINVAL;
1619                 goto exit_unlock;
1620         }
1621
1622         reply = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1623         if (!reply) {
1624                 err = -ENOMEM;
1625                 goto exit_unlock;
1626         }
1627
1628         if (a[OVS_VPORT_ATTR_OPTIONS]) {
1629                 err = ovs_vport_set_options(vport, a[OVS_VPORT_ATTR_OPTIONS]);
1630                 if (err)
1631                         goto exit_free;
1632         }
1633
1634         if (a[OVS_VPORT_ATTR_STATS])
1635                 ovs_vport_set_stats(vport, nla_data(a[OVS_VPORT_ATTR_STATS]));
1636
1637         if (a[OVS_VPORT_ATTR_UPCALL_PID])
1638                 vport->upcall_portid = nla_get_u32(a[OVS_VPORT_ATTR_UPCALL_PID]);
1639
1640         err = ovs_vport_cmd_fill_info(vport, reply, info->snd_portid,
1641                                       info->snd_seq, 0, OVS_VPORT_CMD_NEW);
1642         BUG_ON(err < 0);
1643
1644         ovs_unlock();
1645         ovs_notify(reply, info, &ovs_dp_vport_multicast_group);
1646         return 0;
1647
1648 exit_free:
1649         kfree_skb(reply);
1650 exit_unlock:
1651         ovs_unlock();
1652         return err;
1653 }
1654
1655 static int ovs_vport_cmd_del(struct sk_buff *skb, struct genl_info *info)
1656 {
1657         struct nlattr **a = info->attrs;
1658         struct sk_buff *reply;
1659         struct vport *vport;
1660         int err;
1661
1662         ovs_lock();
1663         vport = lookup_vport(sock_net(skb->sk), info->userhdr, a);
1664         err = PTR_ERR(vport);
1665         if (IS_ERR(vport))
1666                 goto exit_unlock;
1667
1668         if (vport->port_no == OVSP_LOCAL) {
1669                 err = -EINVAL;
1670                 goto exit_unlock;
1671         }
1672
1673         reply = ovs_vport_cmd_build_info(vport, info->snd_portid,
1674                                          info->snd_seq, OVS_VPORT_CMD_DEL);
1675         err = PTR_ERR(reply);
1676         if (IS_ERR(reply))
1677                 goto exit_unlock;
1678
1679         err = 0;
1680         ovs_dp_detach_port(vport);
1681
1682         ovs_notify(reply, info, &ovs_dp_vport_multicast_group);
1683
1684 exit_unlock:
1685         ovs_unlock();
1686         return err;
1687 }
1688
1689 static int ovs_vport_cmd_get(struct sk_buff *skb, struct genl_info *info)
1690 {
1691         struct nlattr **a = info->attrs;
1692         struct ovs_header *ovs_header = info->userhdr;
1693         struct sk_buff *reply;
1694         struct vport *vport;
1695         int err;
1696
1697         rcu_read_lock();
1698         vport = lookup_vport(sock_net(skb->sk), ovs_header, a);
1699         err = PTR_ERR(vport);
1700         if (IS_ERR(vport))
1701                 goto exit_unlock;
1702
1703         reply = ovs_vport_cmd_build_info(vport, info->snd_portid,
1704                                          info->snd_seq, OVS_VPORT_CMD_NEW);
1705         err = PTR_ERR(reply);
1706         if (IS_ERR(reply))
1707                 goto exit_unlock;
1708
1709         rcu_read_unlock();
1710
1711         return genlmsg_reply(reply, info);
1712
1713 exit_unlock:
1714         rcu_read_unlock();
1715         return err;
1716 }
1717
1718 static int ovs_vport_cmd_dump(struct sk_buff *skb, struct netlink_callback *cb)
1719 {
1720         struct ovs_header *ovs_header = genlmsg_data(nlmsg_data(cb->nlh));
1721         struct datapath *dp;
1722         int bucket = cb->args[0], skip = cb->args[1];
1723         int i, j = 0;
1724
1725         dp = get_dp(sock_net(skb->sk), ovs_header->dp_ifindex);
1726         if (!dp)
1727                 return -ENODEV;
1728
1729         rcu_read_lock();
1730         for (i = bucket; i < DP_VPORT_HASH_BUCKETS; i++) {
1731                 struct vport *vport;
1732
1733                 j = 0;
1734                 hlist_for_each_entry_rcu(vport, &dp->ports[i], dp_hash_node) {
1735                         if (j >= skip &&
1736                             ovs_vport_cmd_fill_info(vport, skb,
1737                                                     NETLINK_CB(cb->skb).portid,
1738                                                     cb->nlh->nlmsg_seq,
1739                                                     NLM_F_MULTI,
1740                                                     OVS_VPORT_CMD_NEW) < 0)
1741                                 goto out;
1742
1743                         j++;
1744                 }
1745                 skip = 0;
1746         }
1747 out:
1748         rcu_read_unlock();
1749
1750         cb->args[0] = i;
1751         cb->args[1] = j;
1752
1753         return skb->len;
1754 }
1755
1756 static struct genl_ops dp_vport_genl_ops[] = {
1757         { .cmd = OVS_VPORT_CMD_NEW,
1758           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1759           .policy = vport_policy,
1760           .doit = ovs_vport_cmd_new
1761         },
1762         { .cmd = OVS_VPORT_CMD_DEL,
1763           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1764           .policy = vport_policy,
1765           .doit = ovs_vport_cmd_del
1766         },
1767         { .cmd = OVS_VPORT_CMD_GET,
1768           .flags = 0,               /* OK for unprivileged users. */
1769           .policy = vport_policy,
1770           .doit = ovs_vport_cmd_get,
1771           .dumpit = ovs_vport_cmd_dump
1772         },
1773         { .cmd = OVS_VPORT_CMD_SET,
1774           .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1775           .policy = vport_policy,
1776           .doit = ovs_vport_cmd_set,
1777         },
1778 };
1779
1780 struct genl_family_and_ops {
1781         struct genl_family *family;
1782         struct genl_ops *ops;
1783         int n_ops;
1784         struct genl_multicast_group *group;
1785 };
1786
1787 static const struct genl_family_and_ops dp_genl_families[] = {
1788         { &dp_datapath_genl_family,
1789           dp_datapath_genl_ops, ARRAY_SIZE(dp_datapath_genl_ops),
1790           &ovs_dp_datapath_multicast_group },
1791         { &dp_vport_genl_family,
1792           dp_vport_genl_ops, ARRAY_SIZE(dp_vport_genl_ops),
1793           &ovs_dp_vport_multicast_group },
1794         { &dp_flow_genl_family,
1795           dp_flow_genl_ops, ARRAY_SIZE(dp_flow_genl_ops),
1796           &ovs_dp_flow_multicast_group },
1797         { &dp_packet_genl_family,
1798           dp_packet_genl_ops, ARRAY_SIZE(dp_packet_genl_ops),
1799           NULL },
1800 };
1801
1802 static void dp_unregister_genl(int n_families)
1803 {
1804         int i;
1805
1806         for (i = 0; i < n_families; i++)
1807                 genl_unregister_family(dp_genl_families[i].family);
1808 }
1809
1810 static int dp_register_genl(void)
1811 {
1812         int n_registered;
1813         int err;
1814         int i;
1815
1816         n_registered = 0;
1817         for (i = 0; i < ARRAY_SIZE(dp_genl_families); i++) {
1818                 const struct genl_family_and_ops *f = &dp_genl_families[i];
1819
1820                 err = genl_register_family_with_ops(f->family, f->ops,
1821                                                     f->n_ops);
1822                 if (err)
1823                         goto error;
1824                 n_registered++;
1825
1826                 if (f->group) {
1827                         err = genl_register_mc_group(f->family, f->group);
1828                         if (err)
1829                                 goto error;
1830                 }
1831         }
1832
1833         return 0;
1834
1835 error:
1836         dp_unregister_genl(n_registered);
1837         return err;
1838 }
1839
1840 static int __net_init ovs_init_net(struct net *net)
1841 {
1842         struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
1843
1844         INIT_LIST_HEAD(&ovs_net->dps);
1845         INIT_WORK(&ovs_net->dp_notify_work, ovs_dp_notify_wq);
1846         return 0;
1847 }
1848
1849 static void __net_exit ovs_exit_net(struct net *net)
1850 {
1851         struct datapath *dp, *dp_next;
1852         struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
1853
1854         ovs_lock();
1855         list_for_each_entry_safe(dp, dp_next, &ovs_net->dps, list_node)
1856                 __dp_destroy(dp);
1857         ovs_unlock();
1858
1859         cancel_work_sync(&ovs_net->dp_notify_work);
1860 }
1861
1862 static struct pernet_operations ovs_net_ops = {
1863         .init = ovs_init_net,
1864         .exit = ovs_exit_net,
1865         .id   = &ovs_net_id,
1866         .size = sizeof(struct ovs_net),
1867 };
1868
1869 DEFINE_COMPAT_PNET_REG_FUNC(device);
1870
1871 static int __init dp_init(void)
1872 {
1873         int err;
1874
1875         BUILD_BUG_ON(sizeof(struct ovs_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
1876
1877         pr_info("Open vSwitch switching datapath %s, built "__DATE__" "__TIME__"\n",
1878                 VERSION);
1879
1880         err = ovs_flow_init();
1881         if (err)
1882                 goto error;
1883
1884         err = ovs_vport_init();
1885         if (err)
1886                 goto error_flow_exit;
1887
1888         err = register_pernet_device(&ovs_net_ops);
1889         if (err)
1890                 goto error_vport_exit;
1891
1892         err = register_netdevice_notifier(&ovs_dp_device_notifier);
1893         if (err)
1894                 goto error_netns_exit;
1895
1896         err = dp_register_genl();
1897         if (err < 0)
1898                 goto error_unreg_notifier;
1899
1900         return 0;
1901
1902 error_unreg_notifier:
1903         unregister_netdevice_notifier(&ovs_dp_device_notifier);
1904 error_netns_exit:
1905         unregister_pernet_device(&ovs_net_ops);
1906 error_vport_exit:
1907         ovs_vport_exit();
1908 error_flow_exit:
1909         ovs_flow_exit();
1910 error:
1911         return err;
1912 }
1913
1914 static void dp_cleanup(void)
1915 {
1916         dp_unregister_genl(ARRAY_SIZE(dp_genl_families));
1917         unregister_netdevice_notifier(&ovs_dp_device_notifier);
1918         unregister_pernet_device(&ovs_net_ops);
1919         rcu_barrier();
1920         ovs_vport_exit();
1921         ovs_flow_exit();
1922 }
1923
1924 module_init(dp_init);
1925 module_exit(dp_cleanup);
1926
1927 MODULE_DESCRIPTION("Open vSwitch switching datapath");
1928 MODULE_LICENSE("GPL");
1929 MODULE_VERSION(VERSION);