blob: c0d066def228fddd64ff1b0a0c8195e5992ec642 [file] [log] [blame]
Pravin B Shelare6445712013-10-03 18:16:47 -07001/*
Andy Zhou971427f32014-09-15 19:37:25 -07002 * Copyright (c) 2007-2014 Nicira, Inc.
Pravin B Shelare6445712013-10-03 18:16:47 -07003 *
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
Joe Perches2235ad12014-02-03 17:18:21 -080019#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
Pravin B Shelare6445712013-10-03 18:16:47 -070021#include "flow.h"
22#include "datapath.h"
23#include <linux/uaccess.h>
24#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
26#include <linux/if_ether.h>
27#include <linux/if_vlan.h>
28#include <net/llc_pdu.h>
29#include <linux/kernel.h>
30#include <linux/jhash.h>
31#include <linux/jiffies.h>
32#include <linux/llc.h>
33#include <linux/module.h>
34#include <linux/in.h>
35#include <linux/rcupdate.h>
36#include <linux/if_arp.h>
37#include <linux/ip.h>
38#include <linux/ipv6.h>
39#include <linux/sctp.h>
40#include <linux/tcp.h>
41#include <linux/udp.h>
42#include <linux/icmp.h>
43#include <linux/icmpv6.h>
44#include <linux/rculist.h>
Jesse Grossf5796682014-10-03 15:35:33 -070045#include <net/geneve.h>
Pravin B Shelare6445712013-10-03 18:16:47 -070046#include <net/ip.h>
47#include <net/ipv6.h>
48#include <net/ndisc.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -070049#include <net/mpls.h>
Pravin B Shelare6445712013-10-03 18:16:47 -070050
51#include "flow_netlink.h"
52
Pravin B Shelara85311b2014-10-19 12:03:40 -070053static void update_range(struct sw_flow_match *match,
54 size_t offset, size_t size, bool is_mask)
Pravin B Shelare6445712013-10-03 18:16:47 -070055{
Pravin B Shelara85311b2014-10-19 12:03:40 -070056 struct sw_flow_key_range *range;
Pravin B Shelare6445712013-10-03 18:16:47 -070057 size_t start = rounddown(offset, sizeof(long));
58 size_t end = roundup(offset + size, sizeof(long));
59
60 if (!is_mask)
61 range = &match->range;
Pravin B Shelara85311b2014-10-19 12:03:40 -070062 else
Pravin B Shelare6445712013-10-03 18:16:47 -070063 range = &match->mask->range;
64
Pravin B Shelare6445712013-10-03 18:16:47 -070065 if (range->start == range->end) {
66 range->start = start;
67 range->end = end;
68 return;
69 }
70
71 if (range->start > start)
72 range->start = start;
73
74 if (range->end < end)
75 range->end = end;
76}
77
78#define SW_FLOW_KEY_PUT(match, field, value, is_mask) \
79 do { \
Pravin B Shelara85311b2014-10-19 12:03:40 -070080 update_range(match, offsetof(struct sw_flow_key, field), \
81 sizeof((match)->key->field), is_mask); \
82 if (is_mask) \
83 (match)->mask->key.field = value; \
84 else \
Pravin B Shelare6445712013-10-03 18:16:47 -070085 (match)->key->field = value; \
Pravin B Shelare6445712013-10-03 18:16:47 -070086 } while (0)
87
Jesse Grossf5796682014-10-03 15:35:33 -070088#define SW_FLOW_KEY_MEMCPY_OFFSET(match, offset, value_p, len, is_mask) \
89 do { \
Pravin B Shelara85311b2014-10-19 12:03:40 -070090 update_range(match, offset, len, is_mask); \
Jesse Grossf5796682014-10-03 15:35:33 -070091 if (is_mask) \
92 memcpy((u8 *)&(match)->mask->key + offset, value_p, \
Pravin B Shelara85311b2014-10-19 12:03:40 -070093 len); \
Jesse Grossf5796682014-10-03 15:35:33 -070094 else \
95 memcpy((u8 *)(match)->key + offset, value_p, len); \
Pravin B Shelare6445712013-10-03 18:16:47 -070096 } while (0)
97
Jesse Grossf5796682014-10-03 15:35:33 -070098#define SW_FLOW_KEY_MEMCPY(match, field, value_p, len, is_mask) \
99 SW_FLOW_KEY_MEMCPY_OFFSET(match, offsetof(struct sw_flow_key, field), \
100 value_p, len, is_mask)
101
Pravin B Shelara85311b2014-10-19 12:03:40 -0700102#define SW_FLOW_KEY_MEMSET_FIELD(match, field, value, is_mask) \
103 do { \
104 update_range(match, offsetof(struct sw_flow_key, field), \
105 sizeof((match)->key->field), is_mask); \
106 if (is_mask) \
107 memset((u8 *)&(match)->mask->key.field, value, \
108 sizeof((match)->mask->key.field)); \
109 else \
Pravin B Shelarf47de062014-10-16 21:55:45 -0700110 memset((u8 *)&(match)->key->field, value, \
111 sizeof((match)->key->field)); \
Pravin B Shelarf47de062014-10-16 21:55:45 -0700112 } while (0)
Pravin B Shelare6445712013-10-03 18:16:47 -0700113
114static bool match_validate(const struct sw_flow_match *match,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800115 u64 key_attrs, u64 mask_attrs, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -0700116{
117 u64 key_expected = 1 << OVS_KEY_ATTR_ETHERNET;
118 u64 mask_allowed = key_attrs; /* At most allow all key attributes */
119
120 /* The following mask attributes allowed only if they
121 * pass the validation tests. */
122 mask_allowed &= ~((1 << OVS_KEY_ATTR_IPV4)
123 | (1 << OVS_KEY_ATTR_IPV6)
124 | (1 << OVS_KEY_ATTR_TCP)
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700125 | (1 << OVS_KEY_ATTR_TCP_FLAGS)
Pravin B Shelare6445712013-10-03 18:16:47 -0700126 | (1 << OVS_KEY_ATTR_UDP)
127 | (1 << OVS_KEY_ATTR_SCTP)
128 | (1 << OVS_KEY_ATTR_ICMP)
129 | (1 << OVS_KEY_ATTR_ICMPV6)
130 | (1 << OVS_KEY_ATTR_ARP)
Simon Horman25cd9ba2014-10-06 05:05:13 -0700131 | (1 << OVS_KEY_ATTR_ND)
132 | (1 << OVS_KEY_ATTR_MPLS));
Pravin B Shelare6445712013-10-03 18:16:47 -0700133
134 /* Always allowed mask fields. */
135 mask_allowed |= ((1 << OVS_KEY_ATTR_TUNNEL)
136 | (1 << OVS_KEY_ATTR_IN_PORT)
137 | (1 << OVS_KEY_ATTR_ETHERTYPE));
138
139 /* Check key attributes. */
140 if (match->key->eth.type == htons(ETH_P_ARP)
141 || match->key->eth.type == htons(ETH_P_RARP)) {
142 key_expected |= 1 << OVS_KEY_ATTR_ARP;
143 if (match->mask && (match->mask->key.eth.type == htons(0xffff)))
144 mask_allowed |= 1 << OVS_KEY_ATTR_ARP;
145 }
146
Simon Horman25cd9ba2014-10-06 05:05:13 -0700147 if (eth_p_mpls(match->key->eth.type)) {
148 key_expected |= 1 << OVS_KEY_ATTR_MPLS;
149 if (match->mask && (match->mask->key.eth.type == htons(0xffff)))
150 mask_allowed |= 1 << OVS_KEY_ATTR_MPLS;
151 }
152
Pravin B Shelare6445712013-10-03 18:16:47 -0700153 if (match->key->eth.type == htons(ETH_P_IP)) {
154 key_expected |= 1 << OVS_KEY_ATTR_IPV4;
155 if (match->mask && (match->mask->key.eth.type == htons(0xffff)))
156 mask_allowed |= 1 << OVS_KEY_ATTR_IPV4;
157
158 if (match->key->ip.frag != OVS_FRAG_TYPE_LATER) {
159 if (match->key->ip.proto == IPPROTO_UDP) {
160 key_expected |= 1 << OVS_KEY_ATTR_UDP;
161 if (match->mask && (match->mask->key.ip.proto == 0xff))
162 mask_allowed |= 1 << OVS_KEY_ATTR_UDP;
163 }
164
165 if (match->key->ip.proto == IPPROTO_SCTP) {
166 key_expected |= 1 << OVS_KEY_ATTR_SCTP;
167 if (match->mask && (match->mask->key.ip.proto == 0xff))
168 mask_allowed |= 1 << OVS_KEY_ATTR_SCTP;
169 }
170
171 if (match->key->ip.proto == IPPROTO_TCP) {
172 key_expected |= 1 << OVS_KEY_ATTR_TCP;
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700173 key_expected |= 1 << OVS_KEY_ATTR_TCP_FLAGS;
174 if (match->mask && (match->mask->key.ip.proto == 0xff)) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700175 mask_allowed |= 1 << OVS_KEY_ATTR_TCP;
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700176 mask_allowed |= 1 << OVS_KEY_ATTR_TCP_FLAGS;
177 }
Pravin B Shelare6445712013-10-03 18:16:47 -0700178 }
179
180 if (match->key->ip.proto == IPPROTO_ICMP) {
181 key_expected |= 1 << OVS_KEY_ATTR_ICMP;
182 if (match->mask && (match->mask->key.ip.proto == 0xff))
183 mask_allowed |= 1 << OVS_KEY_ATTR_ICMP;
184 }
185 }
186 }
187
188 if (match->key->eth.type == htons(ETH_P_IPV6)) {
189 key_expected |= 1 << OVS_KEY_ATTR_IPV6;
190 if (match->mask && (match->mask->key.eth.type == htons(0xffff)))
191 mask_allowed |= 1 << OVS_KEY_ATTR_IPV6;
192
193 if (match->key->ip.frag != OVS_FRAG_TYPE_LATER) {
194 if (match->key->ip.proto == IPPROTO_UDP) {
195 key_expected |= 1 << OVS_KEY_ATTR_UDP;
196 if (match->mask && (match->mask->key.ip.proto == 0xff))
197 mask_allowed |= 1 << OVS_KEY_ATTR_UDP;
198 }
199
200 if (match->key->ip.proto == IPPROTO_SCTP) {
201 key_expected |= 1 << OVS_KEY_ATTR_SCTP;
202 if (match->mask && (match->mask->key.ip.proto == 0xff))
203 mask_allowed |= 1 << OVS_KEY_ATTR_SCTP;
204 }
205
206 if (match->key->ip.proto == IPPROTO_TCP) {
207 key_expected |= 1 << OVS_KEY_ATTR_TCP;
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700208 key_expected |= 1 << OVS_KEY_ATTR_TCP_FLAGS;
209 if (match->mask && (match->mask->key.ip.proto == 0xff)) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700210 mask_allowed |= 1 << OVS_KEY_ATTR_TCP;
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700211 mask_allowed |= 1 << OVS_KEY_ATTR_TCP_FLAGS;
212 }
Pravin B Shelare6445712013-10-03 18:16:47 -0700213 }
214
215 if (match->key->ip.proto == IPPROTO_ICMPV6) {
216 key_expected |= 1 << OVS_KEY_ATTR_ICMPV6;
217 if (match->mask && (match->mask->key.ip.proto == 0xff))
218 mask_allowed |= 1 << OVS_KEY_ATTR_ICMPV6;
219
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700220 if (match->key->tp.src ==
Pravin B Shelare6445712013-10-03 18:16:47 -0700221 htons(NDISC_NEIGHBOUR_SOLICITATION) ||
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700222 match->key->tp.src == htons(NDISC_NEIGHBOUR_ADVERTISEMENT)) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700223 key_expected |= 1 << OVS_KEY_ATTR_ND;
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700224 if (match->mask && (match->mask->key.tp.src == htons(0xffff)))
Pravin B Shelare6445712013-10-03 18:16:47 -0700225 mask_allowed |= 1 << OVS_KEY_ATTR_ND;
226 }
227 }
228 }
229 }
230
231 if ((key_attrs & key_expected) != key_expected) {
232 /* Key attributes check failed. */
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800233 OVS_NLERR(log, "Missing key (keys=%llx, expected=%llx)",
234 (unsigned long long)key_attrs,
235 (unsigned long long)key_expected);
Pravin B Shelare6445712013-10-03 18:16:47 -0700236 return false;
237 }
238
239 if ((mask_attrs & mask_allowed) != mask_attrs) {
240 /* Mask attributes check failed. */
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800241 OVS_NLERR(log, "Unexpected mask (mask=%llx, allowed=%llx)",
242 (unsigned long long)mask_attrs,
243 (unsigned long long)mask_allowed);
Pravin B Shelare6445712013-10-03 18:16:47 -0700244 return false;
245 }
246
247 return true;
248}
249
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800250size_t ovs_tun_key_attr_size(void)
251{
252 /* Whenever adding new OVS_TUNNEL_KEY_ FIELDS, we should consider
253 * updating this function.
254 */
255 return nla_total_size(8) /* OVS_TUNNEL_KEY_ATTR_ID */
256 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_SRC */
257 + nla_total_size(4) /* OVS_TUNNEL_KEY_ATTR_IPV4_DST */
258 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TOS */
259 + nla_total_size(1) /* OVS_TUNNEL_KEY_ATTR_TTL */
260 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT */
261 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_CSUM */
262 + nla_total_size(0) /* OVS_TUNNEL_KEY_ATTR_OAM */
263 + nla_total_size(256) /* OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS */
264 + nla_total_size(2) /* OVS_TUNNEL_KEY_ATTR_TP_SRC */
265 + nla_total_size(2); /* OVS_TUNNEL_KEY_ATTR_TP_DST */
266}
267
Joe Stringer41af73e2014-10-18 16:14:14 -0700268size_t ovs_key_attr_size(void)
269{
270 /* Whenever adding new OVS_KEY_ FIELDS, we should consider
271 * updating this function.
272 */
273 BUILD_BUG_ON(OVS_KEY_ATTR_TUNNEL_INFO != 22);
274
275 return nla_total_size(4) /* OVS_KEY_ATTR_PRIORITY */
276 + nla_total_size(0) /* OVS_KEY_ATTR_TUNNEL */
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800277 + ovs_tun_key_attr_size()
Joe Stringer41af73e2014-10-18 16:14:14 -0700278 + nla_total_size(4) /* OVS_KEY_ATTR_IN_PORT */
279 + nla_total_size(4) /* OVS_KEY_ATTR_SKB_MARK */
280 + nla_total_size(4) /* OVS_KEY_ATTR_DP_HASH */
281 + nla_total_size(4) /* OVS_KEY_ATTR_RECIRC_ID */
282 + nla_total_size(12) /* OVS_KEY_ATTR_ETHERNET */
283 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
284 + nla_total_size(4) /* OVS_KEY_ATTR_VLAN */
285 + nla_total_size(0) /* OVS_KEY_ATTR_ENCAP */
286 + nla_total_size(2) /* OVS_KEY_ATTR_ETHERTYPE */
287 + nla_total_size(40) /* OVS_KEY_ATTR_IPV6 */
288 + nla_total_size(2) /* OVS_KEY_ATTR_ICMPV6 */
289 + nla_total_size(28); /* OVS_KEY_ATTR_ND */
290}
291
Pravin B Shelare6445712013-10-03 18:16:47 -0700292/* The size of the argument for each %OVS_KEY_ATTR_* Netlink attribute. */
293static const int ovs_key_lens[OVS_KEY_ATTR_MAX + 1] = {
294 [OVS_KEY_ATTR_ENCAP] = -1,
295 [OVS_KEY_ATTR_PRIORITY] = sizeof(u32),
296 [OVS_KEY_ATTR_IN_PORT] = sizeof(u32),
297 [OVS_KEY_ATTR_SKB_MARK] = sizeof(u32),
298 [OVS_KEY_ATTR_ETHERNET] = sizeof(struct ovs_key_ethernet),
299 [OVS_KEY_ATTR_VLAN] = sizeof(__be16),
300 [OVS_KEY_ATTR_ETHERTYPE] = sizeof(__be16),
301 [OVS_KEY_ATTR_IPV4] = sizeof(struct ovs_key_ipv4),
302 [OVS_KEY_ATTR_IPV6] = sizeof(struct ovs_key_ipv6),
303 [OVS_KEY_ATTR_TCP] = sizeof(struct ovs_key_tcp),
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700304 [OVS_KEY_ATTR_TCP_FLAGS] = sizeof(__be16),
Pravin B Shelare6445712013-10-03 18:16:47 -0700305 [OVS_KEY_ATTR_UDP] = sizeof(struct ovs_key_udp),
306 [OVS_KEY_ATTR_SCTP] = sizeof(struct ovs_key_sctp),
307 [OVS_KEY_ATTR_ICMP] = sizeof(struct ovs_key_icmp),
308 [OVS_KEY_ATTR_ICMPV6] = sizeof(struct ovs_key_icmpv6),
309 [OVS_KEY_ATTR_ARP] = sizeof(struct ovs_key_arp),
310 [OVS_KEY_ATTR_ND] = sizeof(struct ovs_key_nd),
Andy Zhou971427f32014-09-15 19:37:25 -0700311 [OVS_KEY_ATTR_RECIRC_ID] = sizeof(u32),
312 [OVS_KEY_ATTR_DP_HASH] = sizeof(u32),
Pravin B Shelare6445712013-10-03 18:16:47 -0700313 [OVS_KEY_ATTR_TUNNEL] = -1,
Simon Horman25cd9ba2014-10-06 05:05:13 -0700314 [OVS_KEY_ATTR_MPLS] = sizeof(struct ovs_key_mpls),
Pravin B Shelare6445712013-10-03 18:16:47 -0700315};
316
317static bool is_all_zero(const u8 *fp, size_t size)
318{
319 int i;
320
321 if (!fp)
322 return false;
323
324 for (i = 0; i < size; i++)
325 if (fp[i])
326 return false;
327
328 return true;
329}
330
331static int __parse_flow_nlattrs(const struct nlattr *attr,
332 const struct nlattr *a[],
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800333 u64 *attrsp, bool log, bool nz)
Pravin B Shelare6445712013-10-03 18:16:47 -0700334{
335 const struct nlattr *nla;
336 u64 attrs;
337 int rem;
338
339 attrs = *attrsp;
340 nla_for_each_nested(nla, attr, rem) {
341 u16 type = nla_type(nla);
342 int expected_len;
343
344 if (type > OVS_KEY_ATTR_MAX) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800345 OVS_NLERR(log, "Key type %d is out of range max %d",
Pravin B Shelare6445712013-10-03 18:16:47 -0700346 type, OVS_KEY_ATTR_MAX);
347 return -EINVAL;
348 }
349
350 if (attrs & (1 << type)) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800351 OVS_NLERR(log, "Duplicate key (type %d).", type);
Pravin B Shelare6445712013-10-03 18:16:47 -0700352 return -EINVAL;
353 }
354
355 expected_len = ovs_key_lens[type];
356 if (nla_len(nla) != expected_len && expected_len != -1) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800357 OVS_NLERR(log, "Key %d has unexpected len %d expected %d",
358 type, nla_len(nla), expected_len);
Pravin B Shelare6445712013-10-03 18:16:47 -0700359 return -EINVAL;
360 }
361
362 if (!nz || !is_all_zero(nla_data(nla), expected_len)) {
363 attrs |= 1 << type;
364 a[type] = nla;
365 }
366 }
367 if (rem) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800368 OVS_NLERR(log, "Message has %d unknown bytes.", rem);
Pravin B Shelare6445712013-10-03 18:16:47 -0700369 return -EINVAL;
370 }
371
372 *attrsp = attrs;
373 return 0;
374}
375
376static int parse_flow_mask_nlattrs(const struct nlattr *attr,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800377 const struct nlattr *a[], u64 *attrsp,
378 bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -0700379{
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800380 return __parse_flow_nlattrs(attr, a, attrsp, log, true);
Pravin B Shelare6445712013-10-03 18:16:47 -0700381}
382
383static int parse_flow_nlattrs(const struct nlattr *attr,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800384 const struct nlattr *a[], u64 *attrsp,
385 bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -0700386{
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800387 return __parse_flow_nlattrs(attr, a, attrsp, log, false);
388}
389
390static int genev_tun_opt_from_nlattr(const struct nlattr *a,
391 struct sw_flow_match *match, bool is_mask,
392 bool log)
393{
394 unsigned long opt_key_offset;
395
396 if (nla_len(a) > sizeof(match->key->tun_opts)) {
397 OVS_NLERR(log, "Geneve option length err (len %d, max %zu).",
398 nla_len(a), sizeof(match->key->tun_opts));
399 return -EINVAL;
400 }
401
402 if (nla_len(a) % 4 != 0) {
403 OVS_NLERR(log, "Geneve opt len %d is not a multiple of 4.",
404 nla_len(a));
405 return -EINVAL;
406 }
407
408 /* We need to record the length of the options passed
409 * down, otherwise packets with the same format but
410 * additional options will be silently matched.
411 */
412 if (!is_mask) {
413 SW_FLOW_KEY_PUT(match, tun_opts_len, nla_len(a),
414 false);
415 } else {
416 /* This is somewhat unusual because it looks at
417 * both the key and mask while parsing the
418 * attributes (and by extension assumes the key
419 * is parsed first). Normally, we would verify
420 * that each is the correct length and that the
421 * attributes line up in the validate function.
422 * However, that is difficult because this is
423 * variable length and we won't have the
424 * information later.
425 */
426 if (match->key->tun_opts_len != nla_len(a)) {
427 OVS_NLERR(log, "Geneve option len %d != mask len %d",
428 match->key->tun_opts_len, nla_len(a));
429 return -EINVAL;
430 }
431
432 SW_FLOW_KEY_PUT(match, tun_opts_len, 0xff, true);
433 }
434
435 opt_key_offset = (unsigned long)GENEVE_OPTS((struct sw_flow_key *)0,
436 nla_len(a));
437 SW_FLOW_KEY_MEMCPY_OFFSET(match, opt_key_offset, nla_data(a),
438 nla_len(a), is_mask);
439 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700440}
441
442static int ipv4_tun_from_nlattr(const struct nlattr *attr,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800443 struct sw_flow_match *match, bool is_mask,
444 bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -0700445{
446 struct nlattr *a;
447 int rem;
448 bool ttl = false;
449 __be16 tun_flags = 0;
450
451 nla_for_each_nested(a, attr, rem) {
452 int type = nla_type(a);
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800453 int err;
454
Pravin B Shelare6445712013-10-03 18:16:47 -0700455 static const u32 ovs_tunnel_key_lens[OVS_TUNNEL_KEY_ATTR_MAX + 1] = {
456 [OVS_TUNNEL_KEY_ATTR_ID] = sizeof(u64),
457 [OVS_TUNNEL_KEY_ATTR_IPV4_SRC] = sizeof(u32),
458 [OVS_TUNNEL_KEY_ATTR_IPV4_DST] = sizeof(u32),
459 [OVS_TUNNEL_KEY_ATTR_TOS] = 1,
460 [OVS_TUNNEL_KEY_ATTR_TTL] = 1,
461 [OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT] = 0,
462 [OVS_TUNNEL_KEY_ATTR_CSUM] = 0,
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800463 [OVS_TUNNEL_KEY_ATTR_TP_SRC] = sizeof(u16),
464 [OVS_TUNNEL_KEY_ATTR_TP_DST] = sizeof(u16),
Jesse Gross67fa0342014-10-03 15:35:30 -0700465 [OVS_TUNNEL_KEY_ATTR_OAM] = 0,
Jesse Grossf5796682014-10-03 15:35:33 -0700466 [OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS] = -1,
Pravin B Shelare6445712013-10-03 18:16:47 -0700467 };
468
469 if (type > OVS_TUNNEL_KEY_ATTR_MAX) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800470 OVS_NLERR(log, "Tunnel attr %d out of range max %d",
471 type, OVS_TUNNEL_KEY_ATTR_MAX);
Pravin B Shelare6445712013-10-03 18:16:47 -0700472 return -EINVAL;
473 }
474
Jesse Grossf5796682014-10-03 15:35:33 -0700475 if (ovs_tunnel_key_lens[type] != nla_len(a) &&
476 ovs_tunnel_key_lens[type] != -1) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800477 OVS_NLERR(log, "Tunnel attr %d has unexpected len %d expected %d",
Pravin B Shelare6445712013-10-03 18:16:47 -0700478 type, nla_len(a), ovs_tunnel_key_lens[type]);
479 return -EINVAL;
480 }
481
482 switch (type) {
483 case OVS_TUNNEL_KEY_ATTR_ID:
484 SW_FLOW_KEY_PUT(match, tun_key.tun_id,
485 nla_get_be64(a), is_mask);
486 tun_flags |= TUNNEL_KEY;
487 break;
488 case OVS_TUNNEL_KEY_ATTR_IPV4_SRC:
489 SW_FLOW_KEY_PUT(match, tun_key.ipv4_src,
490 nla_get_be32(a), is_mask);
491 break;
492 case OVS_TUNNEL_KEY_ATTR_IPV4_DST:
493 SW_FLOW_KEY_PUT(match, tun_key.ipv4_dst,
494 nla_get_be32(a), is_mask);
495 break;
496 case OVS_TUNNEL_KEY_ATTR_TOS:
497 SW_FLOW_KEY_PUT(match, tun_key.ipv4_tos,
498 nla_get_u8(a), is_mask);
499 break;
500 case OVS_TUNNEL_KEY_ATTR_TTL:
501 SW_FLOW_KEY_PUT(match, tun_key.ipv4_ttl,
502 nla_get_u8(a), is_mask);
503 ttl = true;
504 break;
505 case OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT:
506 tun_flags |= TUNNEL_DONT_FRAGMENT;
507 break;
508 case OVS_TUNNEL_KEY_ATTR_CSUM:
509 tun_flags |= TUNNEL_CSUM;
510 break;
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800511 case OVS_TUNNEL_KEY_ATTR_TP_SRC:
512 SW_FLOW_KEY_PUT(match, tun_key.tp_src,
513 nla_get_be16(a), is_mask);
514 break;
515 case OVS_TUNNEL_KEY_ATTR_TP_DST:
516 SW_FLOW_KEY_PUT(match, tun_key.tp_dst,
517 nla_get_be16(a), is_mask);
518 break;
Jesse Gross67fa0342014-10-03 15:35:30 -0700519 case OVS_TUNNEL_KEY_ATTR_OAM:
520 tun_flags |= TUNNEL_OAM;
521 break;
Jesse Grossf5796682014-10-03 15:35:33 -0700522 case OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS:
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800523 err = genev_tun_opt_from_nlattr(a, match, is_mask, log);
524 if (err)
525 return err;
526
Jesse Grossf5796682014-10-03 15:35:33 -0700527 tun_flags |= TUNNEL_OPTIONS_PRESENT;
Jesse Grossf5796682014-10-03 15:35:33 -0700528 break;
Pravin B Shelare6445712013-10-03 18:16:47 -0700529 default:
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800530 OVS_NLERR(log, "Unknown IPv4 tunnel attribute %d",
Jesse Grossf5796682014-10-03 15:35:33 -0700531 type);
Pravin B Shelare6445712013-10-03 18:16:47 -0700532 return -EINVAL;
533 }
534 }
535
536 SW_FLOW_KEY_PUT(match, tun_key.tun_flags, tun_flags, is_mask);
537
538 if (rem > 0) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800539 OVS_NLERR(log, "IPv4 tunnel attribute has %d unknown bytes.",
540 rem);
Pravin B Shelare6445712013-10-03 18:16:47 -0700541 return -EINVAL;
542 }
543
544 if (!is_mask) {
545 if (!match->key->tun_key.ipv4_dst) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800546 OVS_NLERR(log, "IPv4 tunnel dst address is zero");
Pravin B Shelare6445712013-10-03 18:16:47 -0700547 return -EINVAL;
548 }
549
550 if (!ttl) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800551 OVS_NLERR(log, "IPv4 tunnel TTL not specified.");
Pravin B Shelare6445712013-10-03 18:16:47 -0700552 return -EINVAL;
553 }
554 }
555
556 return 0;
557}
558
Jesse Grossf5796682014-10-03 15:35:33 -0700559static int __ipv4_tun_to_nlattr(struct sk_buff *skb,
560 const struct ovs_key_ipv4_tunnel *output,
561 const struct geneve_opt *tun_opts,
562 int swkey_tun_opts_len)
Pravin B Shelare6445712013-10-03 18:16:47 -0700563{
Pravin B Shelare6445712013-10-03 18:16:47 -0700564 if (output->tun_flags & TUNNEL_KEY &&
565 nla_put_be64(skb, OVS_TUNNEL_KEY_ATTR_ID, output->tun_id))
566 return -EMSGSIZE;
567 if (output->ipv4_src &&
Jesse Gross67fa0342014-10-03 15:35:30 -0700568 nla_put_be32(skb, OVS_TUNNEL_KEY_ATTR_IPV4_SRC, output->ipv4_src))
Pravin B Shelare6445712013-10-03 18:16:47 -0700569 return -EMSGSIZE;
570 if (output->ipv4_dst &&
Jesse Gross67fa0342014-10-03 15:35:30 -0700571 nla_put_be32(skb, OVS_TUNNEL_KEY_ATTR_IPV4_DST, output->ipv4_dst))
Pravin B Shelare6445712013-10-03 18:16:47 -0700572 return -EMSGSIZE;
573 if (output->ipv4_tos &&
Jesse Gross67fa0342014-10-03 15:35:30 -0700574 nla_put_u8(skb, OVS_TUNNEL_KEY_ATTR_TOS, output->ipv4_tos))
Pravin B Shelare6445712013-10-03 18:16:47 -0700575 return -EMSGSIZE;
576 if (nla_put_u8(skb, OVS_TUNNEL_KEY_ATTR_TTL, output->ipv4_ttl))
577 return -EMSGSIZE;
578 if ((output->tun_flags & TUNNEL_DONT_FRAGMENT) &&
Jesse Gross67fa0342014-10-03 15:35:30 -0700579 nla_put_flag(skb, OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT))
Pravin B Shelare6445712013-10-03 18:16:47 -0700580 return -EMSGSIZE;
581 if ((output->tun_flags & TUNNEL_CSUM) &&
Jesse Gross67fa0342014-10-03 15:35:30 -0700582 nla_put_flag(skb, OVS_TUNNEL_KEY_ATTR_CSUM))
583 return -EMSGSIZE;
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800584 if (output->tp_src &&
585 nla_put_be16(skb, OVS_TUNNEL_KEY_ATTR_TP_SRC, output->tp_src))
586 return -EMSGSIZE;
587 if (output->tp_dst &&
588 nla_put_be16(skb, OVS_TUNNEL_KEY_ATTR_TP_DST, output->tp_dst))
589 return -EMSGSIZE;
Jesse Gross67fa0342014-10-03 15:35:30 -0700590 if ((output->tun_flags & TUNNEL_OAM) &&
591 nla_put_flag(skb, OVS_TUNNEL_KEY_ATTR_OAM))
Pravin B Shelare6445712013-10-03 18:16:47 -0700592 return -EMSGSIZE;
Jesse Grossf5796682014-10-03 15:35:33 -0700593 if (tun_opts &&
594 nla_put(skb, OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS,
595 swkey_tun_opts_len, tun_opts))
596 return -EMSGSIZE;
597
598 return 0;
599}
600
Jesse Grossf5796682014-10-03 15:35:33 -0700601static int ipv4_tun_to_nlattr(struct sk_buff *skb,
602 const struct ovs_key_ipv4_tunnel *output,
603 const struct geneve_opt *tun_opts,
604 int swkey_tun_opts_len)
605{
606 struct nlattr *nla;
607 int err;
608
609 nla = nla_nest_start(skb, OVS_KEY_ATTR_TUNNEL);
610 if (!nla)
611 return -EMSGSIZE;
612
613 err = __ipv4_tun_to_nlattr(skb, output, tun_opts, swkey_tun_opts_len);
614 if (err)
615 return err;
Pravin B Shelare6445712013-10-03 18:16:47 -0700616
617 nla_nest_end(skb, nla);
618 return 0;
619}
620
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800621int ovs_nla_put_egress_tunnel_key(struct sk_buff *skb,
622 const struct ovs_tunnel_info *egress_tun_info)
623{
624 return __ipv4_tun_to_nlattr(skb, &egress_tun_info->tunnel,
625 egress_tun_info->options,
626 egress_tun_info->options_len);
627}
628
Pravin B Shelare6445712013-10-03 18:16:47 -0700629static int metadata_from_nlattrs(struct sw_flow_match *match, u64 *attrs,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800630 const struct nlattr **a, bool is_mask,
631 bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -0700632{
Andy Zhou971427f32014-09-15 19:37:25 -0700633 if (*attrs & (1 << OVS_KEY_ATTR_DP_HASH)) {
634 u32 hash_val = nla_get_u32(a[OVS_KEY_ATTR_DP_HASH]);
635
636 SW_FLOW_KEY_PUT(match, ovs_flow_hash, hash_val, is_mask);
637 *attrs &= ~(1 << OVS_KEY_ATTR_DP_HASH);
638 }
639
640 if (*attrs & (1 << OVS_KEY_ATTR_RECIRC_ID)) {
641 u32 recirc_id = nla_get_u32(a[OVS_KEY_ATTR_RECIRC_ID]);
642
643 SW_FLOW_KEY_PUT(match, recirc_id, recirc_id, is_mask);
644 *attrs &= ~(1 << OVS_KEY_ATTR_RECIRC_ID);
645 }
646
Pravin B Shelare6445712013-10-03 18:16:47 -0700647 if (*attrs & (1 << OVS_KEY_ATTR_PRIORITY)) {
648 SW_FLOW_KEY_PUT(match, phy.priority,
649 nla_get_u32(a[OVS_KEY_ATTR_PRIORITY]), is_mask);
650 *attrs &= ~(1 << OVS_KEY_ATTR_PRIORITY);
651 }
652
653 if (*attrs & (1 << OVS_KEY_ATTR_IN_PORT)) {
654 u32 in_port = nla_get_u32(a[OVS_KEY_ATTR_IN_PORT]);
655
Jesse Gross426cda52014-10-06 05:08:38 -0700656 if (is_mask) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700657 in_port = 0xffffffff; /* Always exact match in_port. */
Jesse Gross426cda52014-10-06 05:08:38 -0700658 } else if (in_port >= DP_MAX_PORTS) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800659 OVS_NLERR(log, "Port %d exceeds max allowable %d",
Jesse Gross426cda52014-10-06 05:08:38 -0700660 in_port, DP_MAX_PORTS);
Pravin B Shelare6445712013-10-03 18:16:47 -0700661 return -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700662 }
Pravin B Shelare6445712013-10-03 18:16:47 -0700663
664 SW_FLOW_KEY_PUT(match, phy.in_port, in_port, is_mask);
665 *attrs &= ~(1 << OVS_KEY_ATTR_IN_PORT);
666 } else if (!is_mask) {
667 SW_FLOW_KEY_PUT(match, phy.in_port, DP_MAX_PORTS, is_mask);
668 }
669
670 if (*attrs & (1 << OVS_KEY_ATTR_SKB_MARK)) {
671 uint32_t mark = nla_get_u32(a[OVS_KEY_ATTR_SKB_MARK]);
672
673 SW_FLOW_KEY_PUT(match, phy.skb_mark, mark, is_mask);
674 *attrs &= ~(1 << OVS_KEY_ATTR_SKB_MARK);
675 }
676 if (*attrs & (1 << OVS_KEY_ATTR_TUNNEL)) {
677 if (ipv4_tun_from_nlattr(a[OVS_KEY_ATTR_TUNNEL], match,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800678 is_mask, log))
Pravin B Shelare6445712013-10-03 18:16:47 -0700679 return -EINVAL;
680 *attrs &= ~(1 << OVS_KEY_ATTR_TUNNEL);
681 }
682 return 0;
683}
684
Jarno Rajahalme23dabf82014-03-27 12:35:23 -0700685static int ovs_key_from_nlattrs(struct sw_flow_match *match, u64 attrs,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800686 const struct nlattr **a, bool is_mask,
687 bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -0700688{
689 int err;
Pravin B Shelare6445712013-10-03 18:16:47 -0700690
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800691 err = metadata_from_nlattrs(match, &attrs, a, is_mask, log);
Pravin B Shelare6445712013-10-03 18:16:47 -0700692 if (err)
693 return err;
694
695 if (attrs & (1 << OVS_KEY_ATTR_ETHERNET)) {
696 const struct ovs_key_ethernet *eth_key;
697
698 eth_key = nla_data(a[OVS_KEY_ATTR_ETHERNET]);
699 SW_FLOW_KEY_MEMCPY(match, eth.src,
700 eth_key->eth_src, ETH_ALEN, is_mask);
701 SW_FLOW_KEY_MEMCPY(match, eth.dst,
702 eth_key->eth_dst, ETH_ALEN, is_mask);
703 attrs &= ~(1 << OVS_KEY_ATTR_ETHERNET);
704 }
705
706 if (attrs & (1 << OVS_KEY_ATTR_VLAN)) {
707 __be16 tci;
708
709 tci = nla_get_be16(a[OVS_KEY_ATTR_VLAN]);
710 if (!(tci & htons(VLAN_TAG_PRESENT))) {
711 if (is_mask)
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800712 OVS_NLERR(log, "VLAN TCI mask does not have exact match for VLAN_TAG_PRESENT bit.");
Pravin B Shelare6445712013-10-03 18:16:47 -0700713 else
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800714 OVS_NLERR(log, "VLAN TCI does not have VLAN_TAG_PRESENT bit set.");
Pravin B Shelare6445712013-10-03 18:16:47 -0700715
716 return -EINVAL;
717 }
718
719 SW_FLOW_KEY_PUT(match, eth.tci, tci, is_mask);
720 attrs &= ~(1 << OVS_KEY_ATTR_VLAN);
Pravin B Shelara85311b2014-10-19 12:03:40 -0700721 }
Pravin B Shelare6445712013-10-03 18:16:47 -0700722
723 if (attrs & (1 << OVS_KEY_ATTR_ETHERTYPE)) {
724 __be16 eth_type;
725
726 eth_type = nla_get_be16(a[OVS_KEY_ATTR_ETHERTYPE]);
727 if (is_mask) {
728 /* Always exact match EtherType. */
729 eth_type = htons(0xffff);
730 } else if (ntohs(eth_type) < ETH_P_802_3_MIN) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800731 OVS_NLERR(log, "EtherType %x is less than min %x",
732 ntohs(eth_type), ETH_P_802_3_MIN);
Pravin B Shelare6445712013-10-03 18:16:47 -0700733 return -EINVAL;
734 }
735
736 SW_FLOW_KEY_PUT(match, eth.type, eth_type, is_mask);
737 attrs &= ~(1 << OVS_KEY_ATTR_ETHERTYPE);
738 } else if (!is_mask) {
739 SW_FLOW_KEY_PUT(match, eth.type, htons(ETH_P_802_2), is_mask);
740 }
741
742 if (attrs & (1 << OVS_KEY_ATTR_IPV4)) {
743 const struct ovs_key_ipv4 *ipv4_key;
744
745 ipv4_key = nla_data(a[OVS_KEY_ATTR_IPV4]);
746 if (!is_mask && ipv4_key->ipv4_frag > OVS_FRAG_TYPE_MAX) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800747 OVS_NLERR(log, "IPv4 frag type %d is out of range max %d",
748 ipv4_key->ipv4_frag, OVS_FRAG_TYPE_MAX);
Pravin B Shelare6445712013-10-03 18:16:47 -0700749 return -EINVAL;
750 }
751 SW_FLOW_KEY_PUT(match, ip.proto,
752 ipv4_key->ipv4_proto, is_mask);
753 SW_FLOW_KEY_PUT(match, ip.tos,
754 ipv4_key->ipv4_tos, is_mask);
755 SW_FLOW_KEY_PUT(match, ip.ttl,
756 ipv4_key->ipv4_ttl, is_mask);
757 SW_FLOW_KEY_PUT(match, ip.frag,
758 ipv4_key->ipv4_frag, is_mask);
759 SW_FLOW_KEY_PUT(match, ipv4.addr.src,
760 ipv4_key->ipv4_src, is_mask);
761 SW_FLOW_KEY_PUT(match, ipv4.addr.dst,
762 ipv4_key->ipv4_dst, is_mask);
763 attrs &= ~(1 << OVS_KEY_ATTR_IPV4);
764 }
765
766 if (attrs & (1 << OVS_KEY_ATTR_IPV6)) {
767 const struct ovs_key_ipv6 *ipv6_key;
768
769 ipv6_key = nla_data(a[OVS_KEY_ATTR_IPV6]);
770 if (!is_mask && ipv6_key->ipv6_frag > OVS_FRAG_TYPE_MAX) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800771 OVS_NLERR(log, "IPv6 frag type %d is out of range max %d",
772 ipv6_key->ipv6_frag, OVS_FRAG_TYPE_MAX);
Pravin B Shelare6445712013-10-03 18:16:47 -0700773 return -EINVAL;
774 }
775 SW_FLOW_KEY_PUT(match, ipv6.label,
776 ipv6_key->ipv6_label, is_mask);
777 SW_FLOW_KEY_PUT(match, ip.proto,
778 ipv6_key->ipv6_proto, is_mask);
779 SW_FLOW_KEY_PUT(match, ip.tos,
780 ipv6_key->ipv6_tclass, is_mask);
781 SW_FLOW_KEY_PUT(match, ip.ttl,
782 ipv6_key->ipv6_hlimit, is_mask);
783 SW_FLOW_KEY_PUT(match, ip.frag,
784 ipv6_key->ipv6_frag, is_mask);
785 SW_FLOW_KEY_MEMCPY(match, ipv6.addr.src,
786 ipv6_key->ipv6_src,
787 sizeof(match->key->ipv6.addr.src),
788 is_mask);
789 SW_FLOW_KEY_MEMCPY(match, ipv6.addr.dst,
790 ipv6_key->ipv6_dst,
791 sizeof(match->key->ipv6.addr.dst),
792 is_mask);
793
794 attrs &= ~(1 << OVS_KEY_ATTR_IPV6);
795 }
796
797 if (attrs & (1 << OVS_KEY_ATTR_ARP)) {
798 const struct ovs_key_arp *arp_key;
799
800 arp_key = nla_data(a[OVS_KEY_ATTR_ARP]);
801 if (!is_mask && (arp_key->arp_op & htons(0xff00))) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800802 OVS_NLERR(log, "Unknown ARP opcode (opcode=%d).",
Pravin B Shelare6445712013-10-03 18:16:47 -0700803 arp_key->arp_op);
804 return -EINVAL;
805 }
806
807 SW_FLOW_KEY_PUT(match, ipv4.addr.src,
808 arp_key->arp_sip, is_mask);
809 SW_FLOW_KEY_PUT(match, ipv4.addr.dst,
810 arp_key->arp_tip, is_mask);
811 SW_FLOW_KEY_PUT(match, ip.proto,
812 ntohs(arp_key->arp_op), is_mask);
813 SW_FLOW_KEY_MEMCPY(match, ipv4.arp.sha,
814 arp_key->arp_sha, ETH_ALEN, is_mask);
815 SW_FLOW_KEY_MEMCPY(match, ipv4.arp.tha,
816 arp_key->arp_tha, ETH_ALEN, is_mask);
817
818 attrs &= ~(1 << OVS_KEY_ATTR_ARP);
819 }
820
Simon Horman25cd9ba2014-10-06 05:05:13 -0700821 if (attrs & (1 << OVS_KEY_ATTR_MPLS)) {
822 const struct ovs_key_mpls *mpls_key;
823
824 mpls_key = nla_data(a[OVS_KEY_ATTR_MPLS]);
825 SW_FLOW_KEY_PUT(match, mpls.top_lse,
826 mpls_key->mpls_lse, is_mask);
827
828 attrs &= ~(1 << OVS_KEY_ATTR_MPLS);
829 }
830
Pravin B Shelare6445712013-10-03 18:16:47 -0700831 if (attrs & (1 << OVS_KEY_ATTR_TCP)) {
832 const struct ovs_key_tcp *tcp_key;
833
834 tcp_key = nla_data(a[OVS_KEY_ATTR_TCP]);
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700835 SW_FLOW_KEY_PUT(match, tp.src, tcp_key->tcp_src, is_mask);
836 SW_FLOW_KEY_PUT(match, tp.dst, tcp_key->tcp_dst, is_mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700837 attrs &= ~(1 << OVS_KEY_ATTR_TCP);
838 }
839
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700840 if (attrs & (1 << OVS_KEY_ATTR_TCP_FLAGS)) {
Joe Stringer1b760fb2014-09-07 22:11:08 -0700841 SW_FLOW_KEY_PUT(match, tp.flags,
842 nla_get_be16(a[OVS_KEY_ATTR_TCP_FLAGS]),
843 is_mask);
Jarno Rajahalme5eb26b12013-10-23 01:44:59 -0700844 attrs &= ~(1 << OVS_KEY_ATTR_TCP_FLAGS);
845 }
846
Pravin B Shelare6445712013-10-03 18:16:47 -0700847 if (attrs & (1 << OVS_KEY_ATTR_UDP)) {
848 const struct ovs_key_udp *udp_key;
849
850 udp_key = nla_data(a[OVS_KEY_ATTR_UDP]);
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700851 SW_FLOW_KEY_PUT(match, tp.src, udp_key->udp_src, is_mask);
852 SW_FLOW_KEY_PUT(match, tp.dst, udp_key->udp_dst, is_mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700853 attrs &= ~(1 << OVS_KEY_ATTR_UDP);
854 }
855
856 if (attrs & (1 << OVS_KEY_ATTR_SCTP)) {
857 const struct ovs_key_sctp *sctp_key;
858
859 sctp_key = nla_data(a[OVS_KEY_ATTR_SCTP]);
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700860 SW_FLOW_KEY_PUT(match, tp.src, sctp_key->sctp_src, is_mask);
861 SW_FLOW_KEY_PUT(match, tp.dst, sctp_key->sctp_dst, is_mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700862 attrs &= ~(1 << OVS_KEY_ATTR_SCTP);
863 }
864
865 if (attrs & (1 << OVS_KEY_ATTR_ICMP)) {
866 const struct ovs_key_icmp *icmp_key;
867
868 icmp_key = nla_data(a[OVS_KEY_ATTR_ICMP]);
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700869 SW_FLOW_KEY_PUT(match, tp.src,
Pravin B Shelare6445712013-10-03 18:16:47 -0700870 htons(icmp_key->icmp_type), is_mask);
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700871 SW_FLOW_KEY_PUT(match, tp.dst,
Pravin B Shelare6445712013-10-03 18:16:47 -0700872 htons(icmp_key->icmp_code), is_mask);
873 attrs &= ~(1 << OVS_KEY_ATTR_ICMP);
874 }
875
876 if (attrs & (1 << OVS_KEY_ATTR_ICMPV6)) {
877 const struct ovs_key_icmpv6 *icmpv6_key;
878
879 icmpv6_key = nla_data(a[OVS_KEY_ATTR_ICMPV6]);
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700880 SW_FLOW_KEY_PUT(match, tp.src,
Pravin B Shelare6445712013-10-03 18:16:47 -0700881 htons(icmpv6_key->icmpv6_type), is_mask);
Jarno Rajahalme1139e242014-05-05 09:54:49 -0700882 SW_FLOW_KEY_PUT(match, tp.dst,
Pravin B Shelare6445712013-10-03 18:16:47 -0700883 htons(icmpv6_key->icmpv6_code), is_mask);
884 attrs &= ~(1 << OVS_KEY_ATTR_ICMPV6);
885 }
886
887 if (attrs & (1 << OVS_KEY_ATTR_ND)) {
888 const struct ovs_key_nd *nd_key;
889
890 nd_key = nla_data(a[OVS_KEY_ATTR_ND]);
891 SW_FLOW_KEY_MEMCPY(match, ipv6.nd.target,
892 nd_key->nd_target,
893 sizeof(match->key->ipv6.nd.target),
894 is_mask);
895 SW_FLOW_KEY_MEMCPY(match, ipv6.nd.sll,
896 nd_key->nd_sll, ETH_ALEN, is_mask);
897 SW_FLOW_KEY_MEMCPY(match, ipv6.nd.tll,
898 nd_key->nd_tll, ETH_ALEN, is_mask);
899 attrs &= ~(1 << OVS_KEY_ATTR_ND);
900 }
901
Jesse Gross426cda52014-10-06 05:08:38 -0700902 if (attrs != 0) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800903 OVS_NLERR(log, "Unknown key attributes %llx",
Jesse Gross426cda52014-10-06 05:08:38 -0700904 (unsigned long long)attrs);
Pravin B Shelare6445712013-10-03 18:16:47 -0700905 return -EINVAL;
Jesse Gross426cda52014-10-06 05:08:38 -0700906 }
Pravin B Shelare6445712013-10-03 18:16:47 -0700907
908 return 0;
909}
910
Pravin B Shelarf47de062014-10-16 21:55:45 -0700911static void nlattr_set(struct nlattr *attr, u8 val, bool is_attr_mask_key)
Pravin B Shelare6445712013-10-03 18:16:47 -0700912{
Pravin B Shelarf47de062014-10-16 21:55:45 -0700913 struct nlattr *nla;
914 int rem;
Pravin B Shelare6445712013-10-03 18:16:47 -0700915
Pravin B Shelarf47de062014-10-16 21:55:45 -0700916 /* The nlattr stream should already have been validated */
917 nla_for_each_nested(nla, attr, rem) {
918 /* We assume that ovs_key_lens[type] == -1 means that type is a
919 * nested attribute
920 */
921 if (is_attr_mask_key && ovs_key_lens[nla_type(nla)] == -1)
922 nlattr_set(nla, val, false);
923 else
924 memset(nla_data(nla), val, nla_len(nla));
925 }
926}
927
928static void mask_set_nlattr(struct nlattr *attr, u8 val)
929{
930 nlattr_set(attr, val, true);
Pravin B Shelare6445712013-10-03 18:16:47 -0700931}
932
933/**
934 * ovs_nla_get_match - parses Netlink attributes into a flow key and
935 * mask. In case the 'mask' is NULL, the flow is treated as exact match
936 * flow. Otherwise, it is treated as a wildcarded flow, except the mask
937 * does not include any don't care bit.
938 * @match: receives the extracted flow match information.
939 * @key: Netlink attribute holding nested %OVS_KEY_ATTR_* Netlink attribute
940 * sequence. The fields should of the packet that triggered the creation
941 * of this flow.
942 * @mask: Optional. Netlink attribute holding nested %OVS_KEY_ATTR_* Netlink
943 * attribute specifies the mask field of the wildcarded flow.
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800944 * @log: Boolean to allow kernel error logging. Normally true, but when
945 * probing for feature compatibility this should be passed in as false to
946 * suppress unnecessary error logging.
Pravin B Shelare6445712013-10-03 18:16:47 -0700947 */
948int ovs_nla_get_match(struct sw_flow_match *match,
Pravin B Shelara85311b2014-10-19 12:03:40 -0700949 const struct nlattr *nla_key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800950 const struct nlattr *nla_mask,
951 bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -0700952{
953 const struct nlattr *a[OVS_KEY_ATTR_MAX + 1];
954 const struct nlattr *encap;
Pravin B Shelarf47de062014-10-16 21:55:45 -0700955 struct nlattr *newmask = NULL;
Pravin B Shelare6445712013-10-03 18:16:47 -0700956 u64 key_attrs = 0;
957 u64 mask_attrs = 0;
958 bool encap_valid = false;
959 int err;
960
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800961 err = parse_flow_nlattrs(nla_key, a, &key_attrs, log);
Pravin B Shelare6445712013-10-03 18:16:47 -0700962 if (err)
963 return err;
964
965 if ((key_attrs & (1 << OVS_KEY_ATTR_ETHERNET)) &&
966 (key_attrs & (1 << OVS_KEY_ATTR_ETHERTYPE)) &&
967 (nla_get_be16(a[OVS_KEY_ATTR_ETHERTYPE]) == htons(ETH_P_8021Q))) {
968 __be16 tci;
969
970 if (!((key_attrs & (1 << OVS_KEY_ATTR_VLAN)) &&
971 (key_attrs & (1 << OVS_KEY_ATTR_ENCAP)))) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800972 OVS_NLERR(log, "Invalid Vlan frame.");
Pravin B Shelare6445712013-10-03 18:16:47 -0700973 return -EINVAL;
974 }
975
976 key_attrs &= ~(1 << OVS_KEY_ATTR_ETHERTYPE);
977 tci = nla_get_be16(a[OVS_KEY_ATTR_VLAN]);
978 encap = a[OVS_KEY_ATTR_ENCAP];
979 key_attrs &= ~(1 << OVS_KEY_ATTR_ENCAP);
980 encap_valid = true;
981
982 if (tci & htons(VLAN_TAG_PRESENT)) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800983 err = parse_flow_nlattrs(encap, a, &key_attrs, log);
Pravin B Shelare6445712013-10-03 18:16:47 -0700984 if (err)
985 return err;
986 } else if (!tci) {
987 /* Corner case for truncated 802.1Q header. */
988 if (nla_len(encap)) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800989 OVS_NLERR(log, "Truncated 802.1Q header has non-zero encap attribute.");
Pravin B Shelare6445712013-10-03 18:16:47 -0700990 return -EINVAL;
991 }
992 } else {
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800993 OVS_NLERR(log, "Encap attr is set for non-VLAN frame");
Pravin B Shelare6445712013-10-03 18:16:47 -0700994 return -EINVAL;
995 }
996 }
997
Jarno Rajahalme05da5892014-11-06 07:03:05 -0800998 err = ovs_key_from_nlattrs(match, key_attrs, a, false, log);
Pravin B Shelare6445712013-10-03 18:16:47 -0700999 if (err)
1000 return err;
1001
Pravin B Shelara85311b2014-10-19 12:03:40 -07001002 if (match->mask) {
1003 if (!nla_mask) {
1004 /* Create an exact match mask. We need to set to 0xff
1005 * all the 'match->mask' fields that have been touched
1006 * in 'match->key'. We cannot simply memset
1007 * 'match->mask', because padding bytes and fields not
1008 * specified in 'match->key' should be left to 0.
1009 * Instead, we use a stream of netlink attributes,
1010 * copied from 'key' and set to 0xff.
1011 * ovs_key_from_nlattrs() will take care of filling
1012 * 'match->mask' appropriately.
1013 */
1014 newmask = kmemdup(nla_key,
1015 nla_total_size(nla_len(nla_key)),
1016 GFP_KERNEL);
1017 if (!newmask)
1018 return -ENOMEM;
Pravin B Shelarf47de062014-10-16 21:55:45 -07001019
Pravin B Shelara85311b2014-10-19 12:03:40 -07001020 mask_set_nlattr(newmask, 0xff);
Pravin B Shelarf47de062014-10-16 21:55:45 -07001021
Pravin B Shelara85311b2014-10-19 12:03:40 -07001022 /* The userspace does not send tunnel attributes that
1023 * are 0, but we should not wildcard them nonetheless.
1024 */
1025 if (match->key->tun_key.ipv4_dst)
1026 SW_FLOW_KEY_MEMSET_FIELD(match, tun_key,
1027 0xff, true);
Pravin B Shelarf47de062014-10-16 21:55:45 -07001028
Pravin B Shelara85311b2014-10-19 12:03:40 -07001029 nla_mask = newmask;
1030 }
Pravin B Shelarf47de062014-10-16 21:55:45 -07001031
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001032 err = parse_flow_mask_nlattrs(nla_mask, a, &mask_attrs, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001033 if (err)
Pravin B Shelarf47de062014-10-16 21:55:45 -07001034 goto free_newmask;
Pravin B Shelare6445712013-10-03 18:16:47 -07001035
Pravin B Shelara85311b2014-10-19 12:03:40 -07001036 /* Always match on tci. */
1037 SW_FLOW_KEY_PUT(match, eth.tci, htons(0xffff), true);
1038
Pravin B Shelarf47de062014-10-16 21:55:45 -07001039 if (mask_attrs & 1 << OVS_KEY_ATTR_ENCAP) {
Pravin B Shelare6445712013-10-03 18:16:47 -07001040 __be16 eth_type = 0;
1041 __be16 tci = 0;
1042
1043 if (!encap_valid) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001044 OVS_NLERR(log, "Encap mask attribute is set for non-VLAN frame.");
Pravin B Shelarf47de062014-10-16 21:55:45 -07001045 err = -EINVAL;
1046 goto free_newmask;
Pravin B Shelare6445712013-10-03 18:16:47 -07001047 }
1048
1049 mask_attrs &= ~(1 << OVS_KEY_ATTR_ENCAP);
1050 if (a[OVS_KEY_ATTR_ETHERTYPE])
1051 eth_type = nla_get_be16(a[OVS_KEY_ATTR_ETHERTYPE]);
1052
1053 if (eth_type == htons(0xffff)) {
1054 mask_attrs &= ~(1 << OVS_KEY_ATTR_ETHERTYPE);
1055 encap = a[OVS_KEY_ATTR_ENCAP];
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001056 err = parse_flow_mask_nlattrs(encap, a,
1057 &mask_attrs, log);
Pravin B Shelarf47de062014-10-16 21:55:45 -07001058 if (err)
1059 goto free_newmask;
Pravin B Shelare6445712013-10-03 18:16:47 -07001060 } else {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001061 OVS_NLERR(log, "VLAN frames must have an exact match on the TPID (mask=%x).",
1062 ntohs(eth_type));
Pravin B Shelarf47de062014-10-16 21:55:45 -07001063 err = -EINVAL;
1064 goto free_newmask;
Pravin B Shelare6445712013-10-03 18:16:47 -07001065 }
1066
1067 if (a[OVS_KEY_ATTR_VLAN])
1068 tci = nla_get_be16(a[OVS_KEY_ATTR_VLAN]);
1069
1070 if (!(tci & htons(VLAN_TAG_PRESENT))) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001071 OVS_NLERR(log, "VLAN tag present bit must have an exact match (tci_mask=%x).",
1072 ntohs(tci));
Pravin B Shelarf47de062014-10-16 21:55:45 -07001073 err = -EINVAL;
1074 goto free_newmask;
Pravin B Shelare6445712013-10-03 18:16:47 -07001075 }
1076 }
1077
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001078 err = ovs_key_from_nlattrs(match, mask_attrs, a, true, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001079 if (err)
Pravin B Shelarf47de062014-10-16 21:55:45 -07001080 goto free_newmask;
Pravin B Shelare6445712013-10-03 18:16:47 -07001081 }
1082
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001083 if (!match_validate(match, key_attrs, mask_attrs, log))
Pravin B Shelarf47de062014-10-16 21:55:45 -07001084 err = -EINVAL;
Pravin B Shelare6445712013-10-03 18:16:47 -07001085
Pravin B Shelarf47de062014-10-16 21:55:45 -07001086free_newmask:
1087 kfree(newmask);
1088 return err;
Pravin B Shelare6445712013-10-03 18:16:47 -07001089}
1090
1091/**
1092 * ovs_nla_get_flow_metadata - parses Netlink attributes into a flow key.
Pravin B Shelar83c8df22014-09-15 19:20:31 -07001093 * @key: Receives extracted in_port, priority, tun_key and skb_mark.
Pravin B Shelare6445712013-10-03 18:16:47 -07001094 * @attr: Netlink attribute holding nested %OVS_KEY_ATTR_* Netlink attribute
1095 * sequence.
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001096 * @log: Boolean to allow kernel error logging. Normally true, but when
1097 * probing for feature compatibility this should be passed in as false to
1098 * suppress unnecessary error logging.
Pravin B Shelare6445712013-10-03 18:16:47 -07001099 *
1100 * This parses a series of Netlink attributes that form a flow key, which must
1101 * take the same form accepted by flow_from_nlattrs(), but only enough of it to
1102 * get the metadata, that is, the parts of the flow key that cannot be
1103 * extracted from the packet itself.
1104 */
1105
Pravin B Shelar83c8df22014-09-15 19:20:31 -07001106int ovs_nla_get_flow_metadata(const struct nlattr *attr,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001107 struct sw_flow_key *key,
1108 bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001109{
Pravin B Shelare6445712013-10-03 18:16:47 -07001110 const struct nlattr *a[OVS_KEY_ATTR_MAX + 1];
Pravin B Shelar83c8df22014-09-15 19:20:31 -07001111 struct sw_flow_match match;
Pravin B Shelare6445712013-10-03 18:16:47 -07001112 u64 attrs = 0;
1113 int err;
Pravin B Shelare6445712013-10-03 18:16:47 -07001114
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001115 err = parse_flow_nlattrs(attr, a, &attrs, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001116 if (err)
1117 return -EINVAL;
1118
1119 memset(&match, 0, sizeof(match));
Pravin B Shelar83c8df22014-09-15 19:20:31 -07001120 match.key = key;
Pravin B Shelare6445712013-10-03 18:16:47 -07001121
Pravin B Shelar83c8df22014-09-15 19:20:31 -07001122 key->phy.in_port = DP_MAX_PORTS;
Pravin B Shelare6445712013-10-03 18:16:47 -07001123
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001124 return metadata_from_nlattrs(&match, &attrs, a, false, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001125}
1126
1127int ovs_nla_put_flow(const struct sw_flow_key *swkey,
1128 const struct sw_flow_key *output, struct sk_buff *skb)
1129{
1130 struct ovs_key_ethernet *eth_key;
1131 struct nlattr *nla, *encap;
1132 bool is_mask = (swkey != output);
1133
Andy Zhou971427f32014-09-15 19:37:25 -07001134 if (nla_put_u32(skb, OVS_KEY_ATTR_RECIRC_ID, output->recirc_id))
1135 goto nla_put_failure;
1136
1137 if (nla_put_u32(skb, OVS_KEY_ATTR_DP_HASH, output->ovs_flow_hash))
1138 goto nla_put_failure;
1139
Pravin B Shelare6445712013-10-03 18:16:47 -07001140 if (nla_put_u32(skb, OVS_KEY_ATTR_PRIORITY, output->phy.priority))
1141 goto nla_put_failure;
1142
Jesse Grossf5796682014-10-03 15:35:33 -07001143 if ((swkey->tun_key.ipv4_dst || is_mask)) {
1144 const struct geneve_opt *opts = NULL;
1145
1146 if (output->tun_key.tun_flags & TUNNEL_OPTIONS_PRESENT)
1147 opts = GENEVE_OPTS(output, swkey->tun_opts_len);
1148
1149 if (ipv4_tun_to_nlattr(skb, &output->tun_key, opts,
1150 swkey->tun_opts_len))
1151 goto nla_put_failure;
1152 }
Pravin B Shelare6445712013-10-03 18:16:47 -07001153
1154 if (swkey->phy.in_port == DP_MAX_PORTS) {
1155 if (is_mask && (output->phy.in_port == 0xffff))
1156 if (nla_put_u32(skb, OVS_KEY_ATTR_IN_PORT, 0xffffffff))
1157 goto nla_put_failure;
1158 } else {
1159 u16 upper_u16;
1160 upper_u16 = !is_mask ? 0 : 0xffff;
1161
1162 if (nla_put_u32(skb, OVS_KEY_ATTR_IN_PORT,
1163 (upper_u16 << 16) | output->phy.in_port))
1164 goto nla_put_failure;
1165 }
1166
1167 if (nla_put_u32(skb, OVS_KEY_ATTR_SKB_MARK, output->phy.skb_mark))
1168 goto nla_put_failure;
1169
1170 nla = nla_reserve(skb, OVS_KEY_ATTR_ETHERNET, sizeof(*eth_key));
1171 if (!nla)
1172 goto nla_put_failure;
1173
1174 eth_key = nla_data(nla);
Joe Perches8c63ff02014-02-18 11:15:45 -08001175 ether_addr_copy(eth_key->eth_src, output->eth.src);
1176 ether_addr_copy(eth_key->eth_dst, output->eth.dst);
Pravin B Shelare6445712013-10-03 18:16:47 -07001177
1178 if (swkey->eth.tci || swkey->eth.type == htons(ETH_P_8021Q)) {
1179 __be16 eth_type;
1180 eth_type = !is_mask ? htons(ETH_P_8021Q) : htons(0xffff);
1181 if (nla_put_be16(skb, OVS_KEY_ATTR_ETHERTYPE, eth_type) ||
1182 nla_put_be16(skb, OVS_KEY_ATTR_VLAN, output->eth.tci))
1183 goto nla_put_failure;
1184 encap = nla_nest_start(skb, OVS_KEY_ATTR_ENCAP);
1185 if (!swkey->eth.tci)
1186 goto unencap;
1187 } else
1188 encap = NULL;
1189
1190 if (swkey->eth.type == htons(ETH_P_802_2)) {
1191 /*
1192 * Ethertype 802.2 is represented in the netlink with omitted
1193 * OVS_KEY_ATTR_ETHERTYPE in the flow key attribute, and
1194 * 0xffff in the mask attribute. Ethertype can also
1195 * be wildcarded.
1196 */
1197 if (is_mask && output->eth.type)
1198 if (nla_put_be16(skb, OVS_KEY_ATTR_ETHERTYPE,
1199 output->eth.type))
1200 goto nla_put_failure;
1201 goto unencap;
1202 }
1203
1204 if (nla_put_be16(skb, OVS_KEY_ATTR_ETHERTYPE, output->eth.type))
1205 goto nla_put_failure;
1206
1207 if (swkey->eth.type == htons(ETH_P_IP)) {
1208 struct ovs_key_ipv4 *ipv4_key;
1209
1210 nla = nla_reserve(skb, OVS_KEY_ATTR_IPV4, sizeof(*ipv4_key));
1211 if (!nla)
1212 goto nla_put_failure;
1213 ipv4_key = nla_data(nla);
1214 ipv4_key->ipv4_src = output->ipv4.addr.src;
1215 ipv4_key->ipv4_dst = output->ipv4.addr.dst;
1216 ipv4_key->ipv4_proto = output->ip.proto;
1217 ipv4_key->ipv4_tos = output->ip.tos;
1218 ipv4_key->ipv4_ttl = output->ip.ttl;
1219 ipv4_key->ipv4_frag = output->ip.frag;
1220 } else if (swkey->eth.type == htons(ETH_P_IPV6)) {
1221 struct ovs_key_ipv6 *ipv6_key;
1222
1223 nla = nla_reserve(skb, OVS_KEY_ATTR_IPV6, sizeof(*ipv6_key));
1224 if (!nla)
1225 goto nla_put_failure;
1226 ipv6_key = nla_data(nla);
1227 memcpy(ipv6_key->ipv6_src, &output->ipv6.addr.src,
1228 sizeof(ipv6_key->ipv6_src));
1229 memcpy(ipv6_key->ipv6_dst, &output->ipv6.addr.dst,
1230 sizeof(ipv6_key->ipv6_dst));
1231 ipv6_key->ipv6_label = output->ipv6.label;
1232 ipv6_key->ipv6_proto = output->ip.proto;
1233 ipv6_key->ipv6_tclass = output->ip.tos;
1234 ipv6_key->ipv6_hlimit = output->ip.ttl;
1235 ipv6_key->ipv6_frag = output->ip.frag;
1236 } else if (swkey->eth.type == htons(ETH_P_ARP) ||
1237 swkey->eth.type == htons(ETH_P_RARP)) {
1238 struct ovs_key_arp *arp_key;
1239
1240 nla = nla_reserve(skb, OVS_KEY_ATTR_ARP, sizeof(*arp_key));
1241 if (!nla)
1242 goto nla_put_failure;
1243 arp_key = nla_data(nla);
1244 memset(arp_key, 0, sizeof(struct ovs_key_arp));
1245 arp_key->arp_sip = output->ipv4.addr.src;
1246 arp_key->arp_tip = output->ipv4.addr.dst;
1247 arp_key->arp_op = htons(output->ip.proto);
Joe Perches8c63ff02014-02-18 11:15:45 -08001248 ether_addr_copy(arp_key->arp_sha, output->ipv4.arp.sha);
1249 ether_addr_copy(arp_key->arp_tha, output->ipv4.arp.tha);
Simon Horman25cd9ba2014-10-06 05:05:13 -07001250 } else if (eth_p_mpls(swkey->eth.type)) {
1251 struct ovs_key_mpls *mpls_key;
1252
1253 nla = nla_reserve(skb, OVS_KEY_ATTR_MPLS, sizeof(*mpls_key));
1254 if (!nla)
1255 goto nla_put_failure;
1256 mpls_key = nla_data(nla);
1257 mpls_key->mpls_lse = output->mpls.top_lse;
Pravin B Shelare6445712013-10-03 18:16:47 -07001258 }
1259
1260 if ((swkey->eth.type == htons(ETH_P_IP) ||
1261 swkey->eth.type == htons(ETH_P_IPV6)) &&
1262 swkey->ip.frag != OVS_FRAG_TYPE_LATER) {
1263
1264 if (swkey->ip.proto == IPPROTO_TCP) {
1265 struct ovs_key_tcp *tcp_key;
1266
1267 nla = nla_reserve(skb, OVS_KEY_ATTR_TCP, sizeof(*tcp_key));
1268 if (!nla)
1269 goto nla_put_failure;
1270 tcp_key = nla_data(nla);
Jarno Rajahalme1139e242014-05-05 09:54:49 -07001271 tcp_key->tcp_src = output->tp.src;
1272 tcp_key->tcp_dst = output->tp.dst;
1273 if (nla_put_be16(skb, OVS_KEY_ATTR_TCP_FLAGS,
1274 output->tp.flags))
1275 goto nla_put_failure;
Pravin B Shelare6445712013-10-03 18:16:47 -07001276 } else if (swkey->ip.proto == IPPROTO_UDP) {
1277 struct ovs_key_udp *udp_key;
1278
1279 nla = nla_reserve(skb, OVS_KEY_ATTR_UDP, sizeof(*udp_key));
1280 if (!nla)
1281 goto nla_put_failure;
1282 udp_key = nla_data(nla);
Jarno Rajahalme1139e242014-05-05 09:54:49 -07001283 udp_key->udp_src = output->tp.src;
1284 udp_key->udp_dst = output->tp.dst;
Pravin B Shelare6445712013-10-03 18:16:47 -07001285 } else if (swkey->ip.proto == IPPROTO_SCTP) {
1286 struct ovs_key_sctp *sctp_key;
1287
1288 nla = nla_reserve(skb, OVS_KEY_ATTR_SCTP, sizeof(*sctp_key));
1289 if (!nla)
1290 goto nla_put_failure;
1291 sctp_key = nla_data(nla);
Jarno Rajahalme1139e242014-05-05 09:54:49 -07001292 sctp_key->sctp_src = output->tp.src;
1293 sctp_key->sctp_dst = output->tp.dst;
Pravin B Shelare6445712013-10-03 18:16:47 -07001294 } else if (swkey->eth.type == htons(ETH_P_IP) &&
1295 swkey->ip.proto == IPPROTO_ICMP) {
1296 struct ovs_key_icmp *icmp_key;
1297
1298 nla = nla_reserve(skb, OVS_KEY_ATTR_ICMP, sizeof(*icmp_key));
1299 if (!nla)
1300 goto nla_put_failure;
1301 icmp_key = nla_data(nla);
Jarno Rajahalme1139e242014-05-05 09:54:49 -07001302 icmp_key->icmp_type = ntohs(output->tp.src);
1303 icmp_key->icmp_code = ntohs(output->tp.dst);
Pravin B Shelare6445712013-10-03 18:16:47 -07001304 } else if (swkey->eth.type == htons(ETH_P_IPV6) &&
1305 swkey->ip.proto == IPPROTO_ICMPV6) {
1306 struct ovs_key_icmpv6 *icmpv6_key;
1307
1308 nla = nla_reserve(skb, OVS_KEY_ATTR_ICMPV6,
1309 sizeof(*icmpv6_key));
1310 if (!nla)
1311 goto nla_put_failure;
1312 icmpv6_key = nla_data(nla);
Jarno Rajahalme1139e242014-05-05 09:54:49 -07001313 icmpv6_key->icmpv6_type = ntohs(output->tp.src);
1314 icmpv6_key->icmpv6_code = ntohs(output->tp.dst);
Pravin B Shelare6445712013-10-03 18:16:47 -07001315
1316 if (icmpv6_key->icmpv6_type == NDISC_NEIGHBOUR_SOLICITATION ||
1317 icmpv6_key->icmpv6_type == NDISC_NEIGHBOUR_ADVERTISEMENT) {
1318 struct ovs_key_nd *nd_key;
1319
1320 nla = nla_reserve(skb, OVS_KEY_ATTR_ND, sizeof(*nd_key));
1321 if (!nla)
1322 goto nla_put_failure;
1323 nd_key = nla_data(nla);
1324 memcpy(nd_key->nd_target, &output->ipv6.nd.target,
1325 sizeof(nd_key->nd_target));
Joe Perches8c63ff02014-02-18 11:15:45 -08001326 ether_addr_copy(nd_key->nd_sll, output->ipv6.nd.sll);
1327 ether_addr_copy(nd_key->nd_tll, output->ipv6.nd.tll);
Pravin B Shelare6445712013-10-03 18:16:47 -07001328 }
1329 }
1330 }
1331
1332unencap:
1333 if (encap)
1334 nla_nest_end(skb, encap);
1335
1336 return 0;
1337
1338nla_put_failure:
1339 return -EMSGSIZE;
1340}
1341
1342#define MAX_ACTIONS_BUFSIZE (32 * 1024)
1343
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001344static struct sw_flow_actions *nla_alloc_flow_actions(int size, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001345{
1346 struct sw_flow_actions *sfa;
1347
Jesse Gross426cda52014-10-06 05:08:38 -07001348 if (size > MAX_ACTIONS_BUFSIZE) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001349 OVS_NLERR(log, "Flow action size %u bytes exceeds max", size);
Pravin B Shelare6445712013-10-03 18:16:47 -07001350 return ERR_PTR(-EINVAL);
Jesse Gross426cda52014-10-06 05:08:38 -07001351 }
Pravin B Shelare6445712013-10-03 18:16:47 -07001352
1353 sfa = kmalloc(sizeof(*sfa) + size, GFP_KERNEL);
1354 if (!sfa)
1355 return ERR_PTR(-ENOMEM);
1356
1357 sfa->actions_len = 0;
1358 return sfa;
1359}
1360
Pravin B Shelare6445712013-10-03 18:16:47 -07001361/* Schedules 'sf_acts' to be freed after the next RCU grace period.
1362 * The caller must hold rcu_read_lock for this to be sensible. */
1363void ovs_nla_free_flow_actions(struct sw_flow_actions *sf_acts)
1364{
Daniel Borkmann11d6c4612013-12-10 12:02:03 +01001365 kfree_rcu(sf_acts, rcu);
Pravin B Shelare6445712013-10-03 18:16:47 -07001366}
1367
1368static struct nlattr *reserve_sfa_size(struct sw_flow_actions **sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001369 int attr_len, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001370{
1371
1372 struct sw_flow_actions *acts;
1373 int new_acts_size;
1374 int req_size = NLA_ALIGN(attr_len);
1375 int next_offset = offsetof(struct sw_flow_actions, actions) +
1376 (*sfa)->actions_len;
1377
1378 if (req_size <= (ksize(*sfa) - next_offset))
1379 goto out;
1380
1381 new_acts_size = ksize(*sfa) * 2;
1382
1383 if (new_acts_size > MAX_ACTIONS_BUFSIZE) {
1384 if ((MAX_ACTIONS_BUFSIZE - next_offset) < req_size)
1385 return ERR_PTR(-EMSGSIZE);
1386 new_acts_size = MAX_ACTIONS_BUFSIZE;
1387 }
1388
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001389 acts = nla_alloc_flow_actions(new_acts_size, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001390 if (IS_ERR(acts))
1391 return (void *)acts;
1392
1393 memcpy(acts->actions, (*sfa)->actions, (*sfa)->actions_len);
1394 acts->actions_len = (*sfa)->actions_len;
1395 kfree(*sfa);
1396 *sfa = acts;
1397
1398out:
1399 (*sfa)->actions_len += req_size;
1400 return (struct nlattr *) ((unsigned char *)(*sfa) + next_offset);
1401}
1402
Jesse Grossf0b128c2014-10-03 15:35:31 -07001403static struct nlattr *__add_action(struct sw_flow_actions **sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001404 int attrtype, void *data, int len, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001405{
1406 struct nlattr *a;
1407
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001408 a = reserve_sfa_size(sfa, nla_attr_size(len), log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001409 if (IS_ERR(a))
Jesse Grossf0b128c2014-10-03 15:35:31 -07001410 return a;
Pravin B Shelare6445712013-10-03 18:16:47 -07001411
1412 a->nla_type = attrtype;
1413 a->nla_len = nla_attr_size(len);
1414
1415 if (data)
1416 memcpy(nla_data(a), data, len);
1417 memset((unsigned char *) a + a->nla_len, 0, nla_padlen(len));
1418
Jesse Grossf0b128c2014-10-03 15:35:31 -07001419 return a;
1420}
1421
1422static int add_action(struct sw_flow_actions **sfa, int attrtype,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001423 void *data, int len, bool log)
Jesse Grossf0b128c2014-10-03 15:35:31 -07001424{
1425 struct nlattr *a;
1426
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001427 a = __add_action(sfa, attrtype, data, len, log);
Jesse Grossf0b128c2014-10-03 15:35:31 -07001428 if (IS_ERR(a))
1429 return PTR_ERR(a);
1430
Pravin B Shelare6445712013-10-03 18:16:47 -07001431 return 0;
1432}
1433
1434static inline int add_nested_action_start(struct sw_flow_actions **sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001435 int attrtype, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001436{
1437 int used = (*sfa)->actions_len;
1438 int err;
1439
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001440 err = add_action(sfa, attrtype, NULL, 0, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001441 if (err)
1442 return err;
1443
1444 return used;
1445}
1446
1447static inline void add_nested_action_end(struct sw_flow_actions *sfa,
1448 int st_offset)
1449{
1450 struct nlattr *a = (struct nlattr *) ((unsigned char *)sfa->actions +
1451 st_offset);
1452
1453 a->nla_len = sfa->actions_len - st_offset;
1454}
1455
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001456static int __ovs_nla_copy_actions(const struct nlattr *attr,
Simon Horman25cd9ba2014-10-06 05:05:13 -07001457 const struct sw_flow_key *key,
1458 int depth, struct sw_flow_actions **sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001459 __be16 eth_type, __be16 vlan_tci, bool log);
Simon Horman25cd9ba2014-10-06 05:05:13 -07001460
Pravin B Shelare6445712013-10-03 18:16:47 -07001461static int validate_and_copy_sample(const struct nlattr *attr,
1462 const struct sw_flow_key *key, int depth,
Simon Horman25cd9ba2014-10-06 05:05:13 -07001463 struct sw_flow_actions **sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001464 __be16 eth_type, __be16 vlan_tci, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001465{
1466 const struct nlattr *attrs[OVS_SAMPLE_ATTR_MAX + 1];
1467 const struct nlattr *probability, *actions;
1468 const struct nlattr *a;
1469 int rem, start, err, st_acts;
1470
1471 memset(attrs, 0, sizeof(attrs));
1472 nla_for_each_nested(a, attr, rem) {
1473 int type = nla_type(a);
1474 if (!type || type > OVS_SAMPLE_ATTR_MAX || attrs[type])
1475 return -EINVAL;
1476 attrs[type] = a;
1477 }
1478 if (rem)
1479 return -EINVAL;
1480
1481 probability = attrs[OVS_SAMPLE_ATTR_PROBABILITY];
1482 if (!probability || nla_len(probability) != sizeof(u32))
1483 return -EINVAL;
1484
1485 actions = attrs[OVS_SAMPLE_ATTR_ACTIONS];
1486 if (!actions || (nla_len(actions) && nla_len(actions) < NLA_HDRLEN))
1487 return -EINVAL;
1488
1489 /* validation done, copy sample action. */
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001490 start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SAMPLE, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001491 if (start < 0)
1492 return start;
1493 err = add_action(sfa, OVS_SAMPLE_ATTR_PROBABILITY,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001494 nla_data(probability), sizeof(u32), log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001495 if (err)
1496 return err;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001497 st_acts = add_nested_action_start(sfa, OVS_SAMPLE_ATTR_ACTIONS, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001498 if (st_acts < 0)
1499 return st_acts;
1500
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001501 err = __ovs_nla_copy_actions(actions, key, depth + 1, sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001502 eth_type, vlan_tci, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001503 if (err)
1504 return err;
1505
1506 add_nested_action_end(*sfa, st_acts);
1507 add_nested_action_end(*sfa, start);
1508
1509 return 0;
1510}
1511
Simon Horman25cd9ba2014-10-06 05:05:13 -07001512static int validate_tp_port(const struct sw_flow_key *flow_key,
1513 __be16 eth_type)
Pravin B Shelare6445712013-10-03 18:16:47 -07001514{
Simon Horman25cd9ba2014-10-06 05:05:13 -07001515 if ((eth_type == htons(ETH_P_IP) || eth_type == htons(ETH_P_IPV6)) &&
Jarno Rajahalme1139e242014-05-05 09:54:49 -07001516 (flow_key->tp.src || flow_key->tp.dst))
1517 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -07001518
1519 return -EINVAL;
1520}
1521
1522void ovs_match_init(struct sw_flow_match *match,
1523 struct sw_flow_key *key,
1524 struct sw_flow_mask *mask)
1525{
1526 memset(match, 0, sizeof(*match));
1527 match->key = key;
1528 match->mask = mask;
1529
1530 memset(key, 0, sizeof(*key));
1531
1532 if (mask) {
1533 memset(&mask->key, 0, sizeof(mask->key));
1534 mask->range.start = mask->range.end = 0;
1535 }
1536}
1537
1538static int validate_and_copy_set_tun(const struct nlattr *attr,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001539 struct sw_flow_actions **sfa, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001540{
1541 struct sw_flow_match match;
1542 struct sw_flow_key key;
Jesse Grossf0b128c2014-10-03 15:35:31 -07001543 struct ovs_tunnel_info *tun_info;
1544 struct nlattr *a;
Pravin B Shelare6445712013-10-03 18:16:47 -07001545 int err, start;
1546
1547 ovs_match_init(&match, &key, NULL);
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001548 err = ipv4_tun_from_nlattr(nla_data(attr), &match, false, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001549 if (err)
1550 return err;
1551
Jesse Grossf5796682014-10-03 15:35:33 -07001552 if (key.tun_opts_len) {
1553 struct geneve_opt *option = GENEVE_OPTS(&key,
1554 key.tun_opts_len);
1555 int opts_len = key.tun_opts_len;
1556 bool crit_opt = false;
1557
1558 while (opts_len > 0) {
1559 int len;
1560
1561 if (opts_len < sizeof(*option))
1562 return -EINVAL;
1563
1564 len = sizeof(*option) + option->length * 4;
1565 if (len > opts_len)
1566 return -EINVAL;
1567
1568 crit_opt |= !!(option->type & GENEVE_CRIT_OPT_TYPE);
1569
1570 option = (struct geneve_opt *)((u8 *)option + len);
1571 opts_len -= len;
1572 };
1573
1574 key.tun_key.tun_flags |= crit_opt ? TUNNEL_CRIT_OPT : 0;
1575 };
1576
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001577 start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SET, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001578 if (start < 0)
1579 return start;
1580
Jesse Grossf0b128c2014-10-03 15:35:31 -07001581 a = __add_action(sfa, OVS_KEY_ATTR_TUNNEL_INFO, NULL,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001582 sizeof(*tun_info) + key.tun_opts_len, log);
Jesse Grossf0b128c2014-10-03 15:35:31 -07001583 if (IS_ERR(a))
1584 return PTR_ERR(a);
1585
1586 tun_info = nla_data(a);
1587 tun_info->tunnel = key.tun_key;
Jesse Grossf5796682014-10-03 15:35:33 -07001588 tun_info->options_len = key.tun_opts_len;
1589
1590 if (tun_info->options_len) {
1591 /* We need to store the options in the action itself since
1592 * everything else will go away after flow setup. We can append
1593 * it to tun_info and then point there.
1594 */
1595 memcpy((tun_info + 1), GENEVE_OPTS(&key, key.tun_opts_len),
1596 key.tun_opts_len);
1597 tun_info->options = (struct geneve_opt *)(tun_info + 1);
1598 } else {
1599 tun_info->options = NULL;
1600 }
Jesse Grossf0b128c2014-10-03 15:35:31 -07001601
Pravin B Shelare6445712013-10-03 18:16:47 -07001602 add_nested_action_end(*sfa, start);
1603
1604 return err;
1605}
1606
1607static int validate_set(const struct nlattr *a,
1608 const struct sw_flow_key *flow_key,
1609 struct sw_flow_actions **sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001610 bool *set_tun, __be16 eth_type, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001611{
1612 const struct nlattr *ovs_key = nla_data(a);
1613 int key_type = nla_type(ovs_key);
1614
1615 /* There can be only one key in a action */
1616 if (nla_total_size(nla_len(ovs_key)) != nla_len(a))
1617 return -EINVAL;
1618
1619 if (key_type > OVS_KEY_ATTR_MAX ||
1620 (ovs_key_lens[key_type] != nla_len(ovs_key) &&
1621 ovs_key_lens[key_type] != -1))
1622 return -EINVAL;
1623
1624 switch (key_type) {
1625 const struct ovs_key_ipv4 *ipv4_key;
1626 const struct ovs_key_ipv6 *ipv6_key;
1627 int err;
1628
1629 case OVS_KEY_ATTR_PRIORITY:
1630 case OVS_KEY_ATTR_SKB_MARK:
1631 case OVS_KEY_ATTR_ETHERNET:
1632 break;
1633
1634 case OVS_KEY_ATTR_TUNNEL:
Simon Horman25cd9ba2014-10-06 05:05:13 -07001635 if (eth_p_mpls(eth_type))
1636 return -EINVAL;
1637
Pravin B Shelare6445712013-10-03 18:16:47 -07001638 *set_tun = true;
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001639 err = validate_and_copy_set_tun(a, sfa, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001640 if (err)
1641 return err;
1642 break;
1643
1644 case OVS_KEY_ATTR_IPV4:
Simon Horman25cd9ba2014-10-06 05:05:13 -07001645 if (eth_type != htons(ETH_P_IP))
Pravin B Shelare6445712013-10-03 18:16:47 -07001646 return -EINVAL;
1647
1648 if (!flow_key->ip.proto)
1649 return -EINVAL;
1650
1651 ipv4_key = nla_data(ovs_key);
1652 if (ipv4_key->ipv4_proto != flow_key->ip.proto)
1653 return -EINVAL;
1654
1655 if (ipv4_key->ipv4_frag != flow_key->ip.frag)
1656 return -EINVAL;
1657
1658 break;
1659
1660 case OVS_KEY_ATTR_IPV6:
Simon Horman25cd9ba2014-10-06 05:05:13 -07001661 if (eth_type != htons(ETH_P_IPV6))
Pravin B Shelare6445712013-10-03 18:16:47 -07001662 return -EINVAL;
1663
1664 if (!flow_key->ip.proto)
1665 return -EINVAL;
1666
1667 ipv6_key = nla_data(ovs_key);
1668 if (ipv6_key->ipv6_proto != flow_key->ip.proto)
1669 return -EINVAL;
1670
1671 if (ipv6_key->ipv6_frag != flow_key->ip.frag)
1672 return -EINVAL;
1673
1674 if (ntohl(ipv6_key->ipv6_label) & 0xFFF00000)
1675 return -EINVAL;
1676
1677 break;
1678
1679 case OVS_KEY_ATTR_TCP:
1680 if (flow_key->ip.proto != IPPROTO_TCP)
1681 return -EINVAL;
1682
Simon Horman25cd9ba2014-10-06 05:05:13 -07001683 return validate_tp_port(flow_key, eth_type);
Pravin B Shelare6445712013-10-03 18:16:47 -07001684
1685 case OVS_KEY_ATTR_UDP:
1686 if (flow_key->ip.proto != IPPROTO_UDP)
1687 return -EINVAL;
1688
Simon Horman25cd9ba2014-10-06 05:05:13 -07001689 return validate_tp_port(flow_key, eth_type);
1690
1691 case OVS_KEY_ATTR_MPLS:
1692 if (!eth_p_mpls(eth_type))
1693 return -EINVAL;
1694 break;
Pravin B Shelare6445712013-10-03 18:16:47 -07001695
1696 case OVS_KEY_ATTR_SCTP:
1697 if (flow_key->ip.proto != IPPROTO_SCTP)
1698 return -EINVAL;
1699
Simon Horman25cd9ba2014-10-06 05:05:13 -07001700 return validate_tp_port(flow_key, eth_type);
Pravin B Shelare6445712013-10-03 18:16:47 -07001701
1702 default:
1703 return -EINVAL;
1704 }
1705
1706 return 0;
1707}
1708
1709static int validate_userspace(const struct nlattr *attr)
1710{
1711 static const struct nla_policy userspace_policy[OVS_USERSPACE_ATTR_MAX + 1] = {
1712 [OVS_USERSPACE_ATTR_PID] = {.type = NLA_U32 },
1713 [OVS_USERSPACE_ATTR_USERDATA] = {.type = NLA_UNSPEC },
Wenyu Zhang8f0aad62014-11-06 06:51:24 -08001714 [OVS_USERSPACE_ATTR_EGRESS_TUN_PORT] = {.type = NLA_U32 },
Pravin B Shelare6445712013-10-03 18:16:47 -07001715 };
1716 struct nlattr *a[OVS_USERSPACE_ATTR_MAX + 1];
1717 int error;
1718
1719 error = nla_parse_nested(a, OVS_USERSPACE_ATTR_MAX,
1720 attr, userspace_policy);
1721 if (error)
1722 return error;
1723
1724 if (!a[OVS_USERSPACE_ATTR_PID] ||
1725 !nla_get_u32(a[OVS_USERSPACE_ATTR_PID]))
1726 return -EINVAL;
1727
1728 return 0;
1729}
1730
1731static int copy_action(const struct nlattr *from,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001732 struct sw_flow_actions **sfa, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001733{
1734 int totlen = NLA_ALIGN(from->nla_len);
1735 struct nlattr *to;
1736
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001737 to = reserve_sfa_size(sfa, from->nla_len, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001738 if (IS_ERR(to))
1739 return PTR_ERR(to);
1740
1741 memcpy(to, from, totlen);
1742 return 0;
1743}
1744
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001745static int __ovs_nla_copy_actions(const struct nlattr *attr,
Simon Horman25cd9ba2014-10-06 05:05:13 -07001746 const struct sw_flow_key *key,
1747 int depth, struct sw_flow_actions **sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001748 __be16 eth_type, __be16 vlan_tci, bool log)
Pravin B Shelare6445712013-10-03 18:16:47 -07001749{
1750 const struct nlattr *a;
Simon Horman25cd9ba2014-10-06 05:05:13 -07001751 bool out_tnl_port = false;
Pravin B Shelare6445712013-10-03 18:16:47 -07001752 int rem, err;
1753
1754 if (depth >= SAMPLE_ACTION_DEPTH)
1755 return -EOVERFLOW;
1756
1757 nla_for_each_nested(a, attr, rem) {
1758 /* Expected argument lengths, (u32)-1 for variable length. */
1759 static const u32 action_lens[OVS_ACTION_ATTR_MAX + 1] = {
1760 [OVS_ACTION_ATTR_OUTPUT] = sizeof(u32),
Andy Zhou971427f32014-09-15 19:37:25 -07001761 [OVS_ACTION_ATTR_RECIRC] = sizeof(u32),
Pravin B Shelare6445712013-10-03 18:16:47 -07001762 [OVS_ACTION_ATTR_USERSPACE] = (u32)-1,
Simon Horman25cd9ba2014-10-06 05:05:13 -07001763 [OVS_ACTION_ATTR_PUSH_MPLS] = sizeof(struct ovs_action_push_mpls),
1764 [OVS_ACTION_ATTR_POP_MPLS] = sizeof(__be16),
Pravin B Shelare6445712013-10-03 18:16:47 -07001765 [OVS_ACTION_ATTR_PUSH_VLAN] = sizeof(struct ovs_action_push_vlan),
1766 [OVS_ACTION_ATTR_POP_VLAN] = 0,
1767 [OVS_ACTION_ATTR_SET] = (u32)-1,
Andy Zhou971427f32014-09-15 19:37:25 -07001768 [OVS_ACTION_ATTR_SAMPLE] = (u32)-1,
1769 [OVS_ACTION_ATTR_HASH] = sizeof(struct ovs_action_hash)
Pravin B Shelare6445712013-10-03 18:16:47 -07001770 };
1771 const struct ovs_action_push_vlan *vlan;
1772 int type = nla_type(a);
1773 bool skip_copy;
1774
1775 if (type > OVS_ACTION_ATTR_MAX ||
1776 (action_lens[type] != nla_len(a) &&
1777 action_lens[type] != (u32)-1))
1778 return -EINVAL;
1779
1780 skip_copy = false;
1781 switch (type) {
1782 case OVS_ACTION_ATTR_UNSPEC:
1783 return -EINVAL;
1784
1785 case OVS_ACTION_ATTR_USERSPACE:
1786 err = validate_userspace(a);
1787 if (err)
1788 return err;
1789 break;
1790
1791 case OVS_ACTION_ATTR_OUTPUT:
1792 if (nla_get_u32(a) >= DP_MAX_PORTS)
1793 return -EINVAL;
Simon Horman25cd9ba2014-10-06 05:05:13 -07001794 out_tnl_port = false;
1795
Pravin B Shelare6445712013-10-03 18:16:47 -07001796 break;
1797
Andy Zhou971427f32014-09-15 19:37:25 -07001798 case OVS_ACTION_ATTR_HASH: {
1799 const struct ovs_action_hash *act_hash = nla_data(a);
1800
1801 switch (act_hash->hash_alg) {
1802 case OVS_HASH_ALG_L4:
1803 break;
1804 default:
1805 return -EINVAL;
1806 }
1807
1808 break;
1809 }
Pravin B Shelare6445712013-10-03 18:16:47 -07001810
1811 case OVS_ACTION_ATTR_POP_VLAN:
Simon Horman25cd9ba2014-10-06 05:05:13 -07001812 vlan_tci = htons(0);
Pravin B Shelare6445712013-10-03 18:16:47 -07001813 break;
1814
1815 case OVS_ACTION_ATTR_PUSH_VLAN:
1816 vlan = nla_data(a);
1817 if (vlan->vlan_tpid != htons(ETH_P_8021Q))
1818 return -EINVAL;
1819 if (!(vlan->vlan_tci & htons(VLAN_TAG_PRESENT)))
1820 return -EINVAL;
Simon Horman25cd9ba2014-10-06 05:05:13 -07001821 vlan_tci = vlan->vlan_tci;
Pravin B Shelare6445712013-10-03 18:16:47 -07001822 break;
1823
Andy Zhou971427f32014-09-15 19:37:25 -07001824 case OVS_ACTION_ATTR_RECIRC:
1825 break;
1826
Simon Horman25cd9ba2014-10-06 05:05:13 -07001827 case OVS_ACTION_ATTR_PUSH_MPLS: {
1828 const struct ovs_action_push_mpls *mpls = nla_data(a);
1829
1830 /* Networking stack do not allow simultaneous Tunnel
1831 * and MPLS GSO.
1832 */
1833 if (out_tnl_port)
1834 return -EINVAL;
1835
1836 if (!eth_p_mpls(mpls->mpls_ethertype))
1837 return -EINVAL;
1838 /* Prohibit push MPLS other than to a white list
1839 * for packets that have a known tag order.
1840 */
1841 if (vlan_tci & htons(VLAN_TAG_PRESENT) ||
1842 (eth_type != htons(ETH_P_IP) &&
1843 eth_type != htons(ETH_P_IPV6) &&
1844 eth_type != htons(ETH_P_ARP) &&
1845 eth_type != htons(ETH_P_RARP) &&
1846 !eth_p_mpls(eth_type)))
1847 return -EINVAL;
1848 eth_type = mpls->mpls_ethertype;
1849 break;
1850 }
1851
1852 case OVS_ACTION_ATTR_POP_MPLS:
1853 if (vlan_tci & htons(VLAN_TAG_PRESENT) ||
1854 !eth_p_mpls(eth_type))
1855 return -EINVAL;
1856
1857 /* Disallow subsequent L2.5+ set and mpls_pop actions
1858 * as there is no check here to ensure that the new
1859 * eth_type is valid and thus set actions could
1860 * write off the end of the packet or otherwise
1861 * corrupt it.
1862 *
1863 * Support for these actions is planned using packet
1864 * recirculation.
1865 */
1866 eth_type = htons(0);
1867 break;
1868
Pravin B Shelare6445712013-10-03 18:16:47 -07001869 case OVS_ACTION_ATTR_SET:
Simon Horman25cd9ba2014-10-06 05:05:13 -07001870 err = validate_set(a, key, sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001871 &out_tnl_port, eth_type, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001872 if (err)
1873 return err;
Simon Horman25cd9ba2014-10-06 05:05:13 -07001874
1875 skip_copy = out_tnl_port;
Pravin B Shelare6445712013-10-03 18:16:47 -07001876 break;
1877
1878 case OVS_ACTION_ATTR_SAMPLE:
Simon Horman25cd9ba2014-10-06 05:05:13 -07001879 err = validate_and_copy_sample(a, key, depth, sfa,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001880 eth_type, vlan_tci, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001881 if (err)
1882 return err;
1883 skip_copy = true;
1884 break;
1885
1886 default:
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001887 OVS_NLERR(log, "Unknown Action type %d", type);
Pravin B Shelare6445712013-10-03 18:16:47 -07001888 return -EINVAL;
1889 }
1890 if (!skip_copy) {
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001891 err = copy_action(a, sfa, log);
Pravin B Shelare6445712013-10-03 18:16:47 -07001892 if (err)
1893 return err;
1894 }
1895 }
1896
1897 if (rem > 0)
1898 return -EINVAL;
1899
1900 return 0;
1901}
1902
Simon Horman25cd9ba2014-10-06 05:05:13 -07001903int ovs_nla_copy_actions(const struct nlattr *attr,
1904 const struct sw_flow_key *key,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001905 struct sw_flow_actions **sfa, bool log)
Simon Horman25cd9ba2014-10-06 05:05:13 -07001906{
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001907 int err;
1908
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001909 *sfa = nla_alloc_flow_actions(nla_len(attr), log);
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001910 if (IS_ERR(*sfa))
1911 return PTR_ERR(*sfa);
1912
1913 err = __ovs_nla_copy_actions(attr, key, 0, sfa, key->eth.type,
Jarno Rajahalme05da5892014-11-06 07:03:05 -08001914 key->eth.tci, log);
Pravin B Shelar2fdb9572014-10-19 11:19:51 -07001915 if (err)
1916 kfree(*sfa);
1917
1918 return err;
Simon Horman25cd9ba2014-10-06 05:05:13 -07001919}
1920
Pravin B Shelare6445712013-10-03 18:16:47 -07001921static int sample_action_to_attr(const struct nlattr *attr, struct sk_buff *skb)
1922{
1923 const struct nlattr *a;
1924 struct nlattr *start;
1925 int err = 0, rem;
1926
1927 start = nla_nest_start(skb, OVS_ACTION_ATTR_SAMPLE);
1928 if (!start)
1929 return -EMSGSIZE;
1930
1931 nla_for_each_nested(a, attr, rem) {
1932 int type = nla_type(a);
1933 struct nlattr *st_sample;
1934
1935 switch (type) {
1936 case OVS_SAMPLE_ATTR_PROBABILITY:
1937 if (nla_put(skb, OVS_SAMPLE_ATTR_PROBABILITY,
1938 sizeof(u32), nla_data(a)))
1939 return -EMSGSIZE;
1940 break;
1941 case OVS_SAMPLE_ATTR_ACTIONS:
1942 st_sample = nla_nest_start(skb, OVS_SAMPLE_ATTR_ACTIONS);
1943 if (!st_sample)
1944 return -EMSGSIZE;
1945 err = ovs_nla_put_actions(nla_data(a), nla_len(a), skb);
1946 if (err)
1947 return err;
1948 nla_nest_end(skb, st_sample);
1949 break;
1950 }
1951 }
1952
1953 nla_nest_end(skb, start);
1954 return err;
1955}
1956
1957static int set_action_to_attr(const struct nlattr *a, struct sk_buff *skb)
1958{
1959 const struct nlattr *ovs_key = nla_data(a);
1960 int key_type = nla_type(ovs_key);
1961 struct nlattr *start;
1962 int err;
1963
1964 switch (key_type) {
Jesse Grossf0b128c2014-10-03 15:35:31 -07001965 case OVS_KEY_ATTR_TUNNEL_INFO: {
1966 struct ovs_tunnel_info *tun_info = nla_data(ovs_key);
1967
Pravin B Shelare6445712013-10-03 18:16:47 -07001968 start = nla_nest_start(skb, OVS_ACTION_ATTR_SET);
1969 if (!start)
1970 return -EMSGSIZE;
1971
Jesse Grossf0b128c2014-10-03 15:35:31 -07001972 err = ipv4_tun_to_nlattr(skb, &tun_info->tunnel,
Jesse Grossf5796682014-10-03 15:35:33 -07001973 tun_info->options_len ?
1974 tun_info->options : NULL,
1975 tun_info->options_len);
Pravin B Shelare6445712013-10-03 18:16:47 -07001976 if (err)
1977 return err;
1978 nla_nest_end(skb, start);
1979 break;
Jesse Grossf0b128c2014-10-03 15:35:31 -07001980 }
Pravin B Shelare6445712013-10-03 18:16:47 -07001981 default:
1982 if (nla_put(skb, OVS_ACTION_ATTR_SET, nla_len(a), ovs_key))
1983 return -EMSGSIZE;
1984 break;
1985 }
1986
1987 return 0;
1988}
1989
1990int ovs_nla_put_actions(const struct nlattr *attr, int len, struct sk_buff *skb)
1991{
1992 const struct nlattr *a;
1993 int rem, err;
1994
1995 nla_for_each_attr(a, attr, len, rem) {
1996 int type = nla_type(a);
1997
1998 switch (type) {
1999 case OVS_ACTION_ATTR_SET:
2000 err = set_action_to_attr(a, skb);
2001 if (err)
2002 return err;
2003 break;
2004
2005 case OVS_ACTION_ATTR_SAMPLE:
2006 err = sample_action_to_attr(a, skb);
2007 if (err)
2008 return err;
2009 break;
2010 default:
2011 if (nla_put(skb, type, nla_len(a), nla_data(a)))
2012 return -EMSGSIZE;
2013 break;
2014 }
2015 }
2016
2017 return 0;
2018}