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