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