]> git.proxmox.com Git - mirror_ovs.git/blame - lib/nx-match.c
ovs-vswitchd: Better document that ovs-vswitchd manages its own datapaths.
[mirror_ovs.git] / lib / nx-match.c
CommitLineData
09246b99 1/*
2d9b49dd 2 * Copyright (c) 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Nicira, Inc.
09246b99
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <config.h>
18
19#include "nx-match.h"
20
685a51a5
JP
21#include <netinet/icmp6.h>
22
09246b99 23#include "classifier.h"
b1c5bf1f 24#include "colors.h"
ee89ea7b 25#include "openvswitch/hmap.h"
b598f214
BW
26#include "openflow/nicira-ext.h"
27#include "openvswitch/dynamic-string.h"
064d7f84 28#include "openvswitch/meta-flow.h"
b598f214
BW
29#include "openvswitch/ofp-actions.h"
30#include "openvswitch/ofp-errors.h"
0d71302e
BP
31#include "openvswitch/ofp-match.h"
32#include "openvswitch/ofp-port.h"
64c96779 33#include "openvswitch/ofpbuf.h"
b598f214 34#include "openvswitch/vlog.h"
09246b99 35#include "packets.h"
ee89ea7b 36#include "openvswitch/shash.h"
9558d2a5 37#include "tun-metadata.h"
09246b99 38#include "unaligned.h"
ddc4f8e2 39#include "util.h"
aafee638 40#include "vl-mff-map.h"
09246b99
BP
41
42VLOG_DEFINE_THIS_MODULE(nx_match);
43
508a9338
BP
44/* OXM headers.
45 *
46 *
47 * Standard OXM/NXM
48 * ================
49 *
50 * The header is 32 bits long. It looks like this:
51 *
52 * |31 16 15 9| 8 7 0
53 * +----------------------------------+---------------+--+------------------+
54 * | oxm_class | oxm_field |hm| oxm_length |
55 * +----------------------------------+---------------+--+------------------+
56 *
57 * where hm stands for oxm_hasmask. It is followed by oxm_length bytes of
58 * payload. When oxm_hasmask is 0, the payload is the value of the field
59 * identified by the header; when oxm_hasmask is 1, the payload is a value for
60 * the field followed by a mask of equal length.
61 *
62 * Internally, we represent a standard OXM header as a 64-bit integer with the
63 * above information in the most-significant bits.
64 *
65 *
66 * Experimenter OXM
67 * ================
68 *
69 * The header is 64 bits long. It looks like the diagram above except that a
70 * 32-bit experimenter ID, which we call oxm_vendor and which identifies a
71 * vendor, is inserted just before the payload. Experimenter OXMs are
72 * identified by an all-1-bits oxm_class (OFPXMC12_EXPERIMENTER). The
73 * oxm_length value *includes* the experimenter ID, so that the real payload is
74 * only oxm_length - 4 bytes long.
75 *
76 * Internally, we represent an experimenter OXM header as a 64-bit integer with
77 * the standard header in the upper 32 bits and the experimenter ID in the
78 * lower 32 bits. (It would be more convenient to swap the positions of the
79 * two 32-bit words, but this would be more error-prone because experimenter
80 * OXMs are very rarely used, so accidentally passing one through a 32-bit type
81 * somewhere in the OVS code would be hard to find.)
82 */
83
178742f9
BP
84/*
85 * OXM Class IDs.
86 * The high order bit differentiate reserved classes from member classes.
87 * Classes 0x0000 to 0x7FFF are member classes, allocated by ONF.
88 * Classes 0x8000 to 0xFFFE are reserved classes, reserved for standardisation.
89 */
90enum ofp12_oxm_class {
91 OFPXMC12_NXM_0 = 0x0000, /* Backward compatibility with NXM */
92 OFPXMC12_NXM_1 = 0x0001, /* Backward compatibility with NXM */
93 OFPXMC12_OPENFLOW_BASIC = 0x8000, /* Basic class for OpenFlow */
94 OFPXMC15_PACKET_REGS = 0x8001, /* Packet registers (pipeline fields). */
95 OFPXMC12_EXPERIMENTER = 0xffff, /* Experimenter class */
96};
97
508a9338
BP
98/* Functions for extracting raw field values from OXM/NXM headers. */
99static uint32_t nxm_vendor(uint64_t header) { return header; }
100static int nxm_class(uint64_t header) { return header >> 48; }
101static int nxm_field(uint64_t header) { return (header >> 41) & 0x7f; }
102static bool nxm_hasmask(uint64_t header) { return (header >> 40) & 1; }
103static int nxm_length(uint64_t header) { return (header >> 32) & 0xff; }
899bb63d 104static uint64_t nxm_no_len(uint64_t header) { return header & 0xffffff80ffffffffULL; }
508a9338
BP
105
106static bool
107is_experimenter_oxm(uint64_t header)
108{
109 return nxm_class(header) == OFPXMC12_EXPERIMENTER;
110}
111
112/* The OXM header "length" field is somewhat tricky:
113 *
114 * - For a standard OXM header, the length is the number of bytes of the
115 * payload, and the payload consists of just the value (and mask, if
116 * present).
117 *
118 * - For an experimenter OXM header, the length is the number of bytes in
119 * the payload plus 4 (the length of the experimenter ID). That is, the
120 * experimenter ID is included in oxm_length.
121 *
122 * This function returns the length of the experimenter ID field in 'header'.
123 * That is, for an experimenter OXM (when an experimenter ID is present), it
124 * returns 4, and for a standard OXM (when no experimenter ID is present), it
125 * returns 0. */
126static int
127nxm_experimenter_len(uint64_t header)
128{
129 return is_experimenter_oxm(header) ? 4 : 0;
130}
131
132/* Returns the number of bytes that follow the header for an NXM/OXM entry
133 * with the given 'header'. */
134static int
135nxm_payload_len(uint64_t header)
136{
137 return nxm_length(header) - nxm_experimenter_len(header);
138}
139
140/* Returns the number of bytes in the header for an NXM/OXM entry with the
141 * given 'header'. */
142static int
143nxm_header_len(uint64_t header)
144{
145 return 4 + nxm_experimenter_len(header);
146}
178742f9 147
508a9338
BP
148#define NXM_HEADER(VENDOR, CLASS, FIELD, HASMASK, LENGTH) \
149 (((uint64_t) (CLASS) << 48) | \
150 ((uint64_t) (FIELD) << 41) | \
151 ((uint64_t) (HASMASK) << 40) | \
152 ((uint64_t) (LENGTH) << 32) | \
153 (VENDOR))
178742f9 154
508a9338
BP
155#define NXM_HEADER_FMT "%#"PRIx32":%d:%d:%d:%d"
156#define NXM_HEADER_ARGS(HEADER) \
157 nxm_vendor(HEADER), nxm_class(HEADER), nxm_field(HEADER), \
178742f9
BP
158 nxm_hasmask(HEADER), nxm_length(HEADER)
159
160/* Functions for turning the "hasmask" bit on or off. (This also requires
161 * adjusting the length.) */
508a9338
BP
162static uint64_t
163nxm_make_exact_header(uint64_t header)
178742f9 164{
508a9338
BP
165 int new_len = nxm_payload_len(header) / 2 + nxm_experimenter_len(header);
166 return NXM_HEADER(nxm_vendor(header), nxm_class(header),
167 nxm_field(header), 0, new_len);
178742f9 168}
508a9338
BP
169static uint64_t
170nxm_make_wild_header(uint64_t header)
178742f9 171{
508a9338
BP
172 int new_len = nxm_payload_len(header) * 2 + nxm_experimenter_len(header);
173 return NXM_HEADER(nxm_vendor(header), nxm_class(header),
174 nxm_field(header), 1, new_len);
178742f9
BP
175}
176
177/* Flow cookie.
178 *
179 * This may be used to gain the OpenFlow 1.1-like ability to restrict
180 * certain NXM-based Flow Mod and Flow Stats Request messages to flows
181 * with specific cookies. See the "nx_flow_mod" and "nx_flow_stats_request"
182 * structure definitions for more details. This match is otherwise not
183 * allowed. */
508a9338 184#define NXM_NX_COOKIE NXM_HEADER (0, 0x0001, 30, 0, 8)
178742f9
BP
185#define NXM_NX_COOKIE_W nxm_make_wild_header(NXM_NX_COOKIE)
186
187struct nxm_field {
508a9338 188 uint64_t header;
178742f9
BP
189 enum ofp_version version;
190 const char *name; /* e.g. "NXM_OF_IN_PORT". */
191
192 enum mf_field_id id;
193};
194
508a9338 195static const struct nxm_field *nxm_field_by_header(uint64_t header);
178742f9 196static const struct nxm_field *nxm_field_by_name(const char *name, size_t len);
e6556fe3
BP
197static const struct nxm_field *nxm_field_by_mf_id(enum mf_field_id,
198 enum ofp_version);
178742f9 199
508a9338 200static void nx_put_header__(struct ofpbuf *, uint64_t header, bool masked);
dc3eb953
JG
201static void nx_put_header_len(struct ofpbuf *, enum mf_field_id field,
202 enum ofp_version version, bool masked,
203 size_t n_bytes);
f8047558 204
09246b99
BP
205/* Rate limit for nx_match parse errors. These always indicate a bug in the
206 * peer and so there's not much point in showing a lot of them. */
207static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
208
178742f9
BP
209static const struct nxm_field *
210mf_parse_subfield_name(const char *name, int name_len, bool *wild);
211
178742f9
BP
212/* Returns the preferred OXM header to use for field 'id' in OpenFlow version
213 * 'version'. Specify 0 for 'version' if an NXM legacy header should be
214 * preferred over any standardized OXM header. Returns 0 if field 'id' cannot
215 * be expressed in NXM or OXM. */
508a9338 216static uint64_t
178742f9
BP
217mf_oxm_header(enum mf_field_id id, enum ofp_version version)
218{
e6556fe3 219 const struct nxm_field *f = nxm_field_by_mf_id(id, version);
178742f9
BP
220 return f ? f->header : 0;
221}
222
508a9338
BP
223/* Returns the 32-bit OXM or NXM header to use for field 'id', preferring an
224 * NXM legacy header over any standardized OXM header. Returns 0 if field 'id'
225 * cannot be expressed with a 32-bit NXM or OXM header.
226 *
227 * Whenever possible, use nx_pull_header() instead of this function, because
228 * this function cannot support 64-bit experimenter OXM headers. */
229uint32_t
230mf_nxm_header(enum mf_field_id id)
231{
232 uint64_t oxm = mf_oxm_header(id, 0);
233 return is_experimenter_oxm(oxm) ? 0 : oxm >> 32;
234}
235
04f48a68
YHW
236/* Returns the 32-bit OXM or NXM header to use for field 'mff'. If 'mff' is
237 * a mapped variable length mf_field, update the header with the configured
238 * length of 'mff'. Returns 0 if 'mff' cannot be expressed with a 32-bit NXM
239 * or OXM header.*/
240uint32_t
241nxm_header_from_mff(const struct mf_field *mff)
242{
243 uint64_t oxm = mf_oxm_header(mff->id, 0);
244
245 if (mff->mapped) {
246 oxm = nxm_no_len(oxm) | ((uint64_t) mff->n_bytes << 32);
247 }
248
249 return is_experimenter_oxm(oxm) ? 0 : oxm >> 32;
250}
251
508a9338 252static const struct mf_field *
04f48a68 253mf_from_oxm_header(uint64_t header, const struct vl_mff_map *vl_mff_map)
508a9338
BP
254{
255 const struct nxm_field *f = nxm_field_by_header(header);
04f48a68
YHW
256
257 if (f) {
258 const struct mf_field *mff = mf_from_id(f->id);
259 const struct mf_field *vl_mff = mf_get_vl_mff(mff, vl_mff_map);
260 return vl_mff ? vl_mff : mff;
261 } else {
262 return NULL;
263 }
508a9338
BP
264}
265
178742f9
BP
266/* Returns the "struct mf_field" that corresponds to NXM or OXM header
267 * 'header', or NULL if 'header' doesn't correspond to any known field. */
268const struct mf_field *
04f48a68 269mf_from_nxm_header(uint32_t header, const struct vl_mff_map *vl_mff_map)
178742f9 270{
04f48a68 271 return mf_from_oxm_header((uint64_t) header << 32, vl_mff_map);
178742f9
BP
272}
273
09246b99
BP
274/* Returns the width of the data for a field with the given 'header', in
275 * bytes. */
178742f9 276static int
508a9338 277nxm_field_bytes(uint64_t header)
09246b99 278{
508a9338 279 unsigned int length = nxm_payload_len(header);
178742f9 280 return nxm_hasmask(header) ? length / 2 : length;
09246b99 281}
e6556fe3 282\f
6a885fd0 283/* nx_pull_match() and helpers. */
09246b99 284
178742f9
BP
285/* Given NXM/OXM value 'value' and mask 'mask' associated with 'header', checks
286 * for any 1-bit in the value where there is a 0-bit in the mask. Returns 0 if
287 * none, otherwise an error code. */
288static bool
508a9338 289is_mask_consistent(uint64_t header, const uint8_t *value, const uint8_t *mask)
09246b99 290{
178742f9
BP
291 unsigned int width = nxm_field_bytes(header);
292 unsigned int i;
09246b99 293
178742f9
BP
294 for (i = 0; i < width; i++) {
295 if (value[i] & ~mask[i]) {
296 if (!VLOG_DROP_WARN(&rl)) {
297 VLOG_WARN_RL(&rl, "Rejecting NXM/OXM entry "NXM_HEADER_FMT " "
298 "with 1-bits in value for bits wildcarded by the "
299 "mask.", NXM_HEADER_ARGS(header));
300 }
301 return false;
09246b99 302 }
09246b99 303 }
178742f9
BP
304 return true;
305}
09246b99 306
178742f9 307static bool
508a9338 308is_cookie_pseudoheader(uint64_t header)
178742f9
BP
309{
310 return header == NXM_NX_COOKIE || header == NXM_NX_COOKIE_W;
311}
312
313static enum ofperr
04f48a68
YHW
314nx_pull_header__(struct ofpbuf *b, bool allow_cookie,
315 const struct vl_mff_map *vl_mff_map, uint64_t *header,
178742f9
BP
316 const struct mf_field **field)
317{
6fd6ed71 318 if (b->size < 4) {
508a9338 319 goto bad_len;
09246b99 320 }
508a9338 321
6fd6ed71 322 *header = ((uint64_t) ntohl(get_unaligned_be32(b->data))) << 32;
508a9338 323 if (is_experimenter_oxm(*header)) {
6fd6ed71 324 if (b->size < 8) {
508a9338
BP
325 goto bad_len;
326 }
6fd6ed71 327 *header = ntohll(get_unaligned_be64(b->data));
508a9338 328 }
1cb20095 329 if (nxm_length(*header) < nxm_experimenter_len(*header)) {
508a9338
BP
330 VLOG_WARN_RL(&rl, "OXM header "NXM_HEADER_FMT" has invalid length %d "
331 "(minimum is %d)",
332 NXM_HEADER_ARGS(*header), nxm_length(*header),
1cb20095 333 nxm_header_len(*header));
178742f9
BP
334 goto error;
335 }
508a9338
BP
336 ofpbuf_pull(b, nxm_header_len(*header));
337
178742f9 338 if (field) {
04f48a68 339 *field = mf_from_oxm_header(*header, vl_mff_map);
178742f9
BP
340 if (!*field && !(allow_cookie && is_cookie_pseudoheader(*header))) {
341 VLOG_DBG_RL(&rl, "OXM header "NXM_HEADER_FMT" is unknown",
342 NXM_HEADER_ARGS(*header));
343 return OFPERR_OFPBMC_BAD_FIELD;
04f48a68
YHW
344 } else if (mf_vl_mff_invalid(*field, vl_mff_map)) {
345 return OFPERR_NXFMFC_INVALID_TLV_FIELD;
178742f9 346 }
09246b99
BP
347 }
348
178742f9
BP
349 return 0;
350
508a9338
BP
351bad_len:
352 VLOG_DBG_RL(&rl, "encountered partial (%"PRIu32"-byte) OXM entry",
6fd6ed71 353 b->size);
178742f9
BP
354error:
355 *header = 0;
38221f4e
BP
356 if (field) {
357 *field = NULL;
358 }
178742f9 359 return OFPERR_OFPBMC_BAD_LEN;
09246b99
BP
360}
361
11b8d049
JG
362static void
363copy_entry_value(const struct mf_field *field, union mf_value *value,
364 const uint8_t *payload, int width)
365{
366 int copy_len;
367 void *copy_dst;
368
369 copy_dst = value;
370 copy_len = MIN(width, field ? field->n_bytes : sizeof *value);
371
372 if (field && field->variable_len) {
373 memset(value, 0, field->n_bytes);
374 copy_dst = &value->u8 + field->n_bytes - copy_len;
375 }
376
377 memcpy(copy_dst, payload, copy_len);
378}
379
3947cc76 380static enum ofperr
04f48a68
YHW
381nx_pull_entry__(struct ofpbuf *b, bool allow_cookie,
382 const struct vl_mff_map *vl_mff_map, uint64_t *header,
11b8d049 383 const struct mf_field **field_,
178742f9 384 union mf_value *value, union mf_value *mask)
e1cfc4e4 385{
11b8d049 386 const struct mf_field *field;
178742f9
BP
387 enum ofperr header_error;
388 unsigned int payload_len;
389 const uint8_t *payload;
390 int width;
e1cfc4e4 391
04f48a68
YHW
392 header_error = nx_pull_header__(b, allow_cookie, vl_mff_map, header,
393 &field);
178742f9
BP
394 if (header_error && header_error != OFPERR_OFPBMC_BAD_FIELD) {
395 return header_error;
396 }
397
508a9338 398 payload_len = nxm_payload_len(*header);
178742f9
BP
399 payload = ofpbuf_try_pull(b, payload_len);
400 if (!payload) {
401 VLOG_DBG_RL(&rl, "OXM header "NXM_HEADER_FMT" calls for %u-byte "
402 "payload but only %"PRIu32" bytes follow OXM header",
6fd6ed71 403 NXM_HEADER_ARGS(*header), payload_len, b->size);
178742f9
BP
404 return OFPERR_OFPBMC_BAD_LEN;
405 }
406
407 width = nxm_field_bytes(*header);
408 if (nxm_hasmask(*header)
409 && !is_mask_consistent(*header, payload, payload + width)) {
410 return OFPERR_OFPBMC_BAD_WILDCARDS;
411 }
412
11b8d049
JG
413 copy_entry_value(field, value, payload, width);
414
178742f9
BP
415 if (mask) {
416 if (nxm_hasmask(*header)) {
11b8d049 417 copy_entry_value(field, mask, payload + width, width);
178742f9 418 } else {
11b8d049 419 memset(mask, 0xff, sizeof *mask);
178742f9
BP
420 }
421 } else if (nxm_hasmask(*header)) {
422 VLOG_DBG_RL(&rl, "OXM header "NXM_HEADER_FMT" includes mask but "
423 "masked OXMs are not allowed here",
424 NXM_HEADER_ARGS(*header));
425 return OFPERR_OFPBMC_BAD_MASK;
426 }
427
11b8d049
JG
428 if (field_) {
429 *field_ = field;
430 return header_error;
431 }
432
433 return 0;
178742f9
BP
434}
435
436/* Attempts to pull an NXM or OXM header, value, and mask (if present) from the
437 * beginning of 'b'. If successful, stores a pointer to the "struct mf_field"
438 * corresponding to the pulled header in '*field', the value into '*value',
439 * and the mask into '*mask', and returns 0. On error, returns an OpenFlow
440 * error; in this case, some bytes might have been pulled off 'b' anyhow, and
441 * the output parameters might have been modified.
442 *
443 * If a NULL 'mask' is supplied, masked OXM or NXM entries are treated as
444 * errors (with OFPERR_OFPBMC_BAD_MASK).
445 */
446enum ofperr
04f48a68
YHW
447nx_pull_entry(struct ofpbuf *b, const struct vl_mff_map *vl_mff_map,
448 const struct mf_field **field, union mf_value *value,
449 union mf_value *mask)
178742f9 450{
508a9338 451 uint64_t header;
178742f9 452
04f48a68 453 return nx_pull_entry__(b, false, vl_mff_map, &header, field, value, mask);
178742f9
BP
454}
455
456/* Attempts to pull an NXM or OXM header from the beginning of 'b'. If
457 * successful, stores a pointer to the "struct mf_field" corresponding to the
458 * pulled header in '*field', stores the header's hasmask bit in '*masked'
459 * (true if hasmask=1, false if hasmask=0), and returns 0. On error, returns
460 * an OpenFlow error; in this case, some bytes might have been pulled off 'b'
461 * anyhow, and the output parameters might have been modified.
462 *
463 * If NULL 'masked' is supplied, masked OXM or NXM headers are treated as
464 * errors (with OFPERR_OFPBMC_BAD_MASK).
465 */
466enum ofperr
04f48a68
YHW
467nx_pull_header(struct ofpbuf *b, const struct vl_mff_map *vl_mff_map,
468 const struct mf_field **field, bool *masked)
178742f9
BP
469{
470 enum ofperr error;
508a9338 471 uint64_t header;
178742f9 472
04f48a68 473 error = nx_pull_header__(b, false, vl_mff_map, &header, field);
178742f9
BP
474 if (masked) {
475 *masked = !error && nxm_hasmask(header);
476 } else if (!error && nxm_hasmask(header)) {
477 error = OFPERR_OFPBMC_BAD_MASK;
478 }
479 return error;
480}
481
482static enum ofperr
483nx_pull_match_entry(struct ofpbuf *b, bool allow_cookie,
3cddeff0 484 const struct vl_mff_map *vl_mff_map,
178742f9
BP
485 const struct mf_field **field,
486 union mf_value *value, union mf_value *mask)
487{
488 enum ofperr error;
508a9338 489 uint64_t header;
178742f9 490
3cddeff0 491 error = nx_pull_entry__(b, allow_cookie, vl_mff_map, &header, field, value,
04f48a68 492 mask);
178742f9
BP
493 if (error) {
494 return error;
495 }
496 if (field && *field) {
497 if (!mf_is_mask_valid(*field, mask)) {
498 VLOG_DBG_RL(&rl, "bad mask for field %s", (*field)->name);
499 return OFPERR_OFPBMC_BAD_MASK;
500 }
501 if (!mf_is_value_valid(*field, value)) {
502 VLOG_DBG_RL(&rl, "bad value for field %s", (*field)->name);
503 return OFPERR_OFPBMC_BAD_VALUE;
e1cfc4e4
BP
504 }
505 }
3947cc76 506 return 0;
e1cfc4e4
BP
507}
508
7befb20d
JR
509/* Prerequisites will only be checked when 'strict' is 'true'. This allows
510 * decoding conntrack original direction 5-tuple IP addresses without the
511 * ethertype being present, when decoding metadata only. */
90bf1e07 512static enum ofperr
7623f4dd 513nx_pull_raw(const uint8_t *p, unsigned int match_len, bool strict,
d7892c81
YHW
514 bool pipeline_fields_only, struct match *match, ovs_be64 *cookie,
515 ovs_be64 *cookie_mask, const struct tun_table *tun_table,
3cddeff0 516 const struct vl_mff_map *vl_mff_map)
09246b99 517{
cb22974d 518 ovs_assert((cookie != NULL) == (cookie_mask != NULL));
e729e793 519
81a76618 520 match_init_catchall(match);
8d8ab6c2 521 match->flow.tunnel.metadata.tab = tun_table;
a3a0c29e
BP
522 if (cookie) {
523 *cookie = *cookie_mask = htonll(0);
524 }
a3a0c29e 525
0a2869d5 526 struct ofpbuf b = ofpbuf_const_initializer(p, match_len);
6fd6ed71
PS
527 while (b.size) {
528 const uint8_t *pos = b.data;
178742f9
BP
529 const struct mf_field *field;
530 union mf_value value;
531 union mf_value mask;
90bf1e07 532 enum ofperr error;
09246b99 533
3cddeff0
YHW
534 error = nx_pull_match_entry(&b, cookie != NULL, vl_mff_map, &field,
535 &value, &mask);
178742f9
BP
536 if (error) {
537 if (error == OFPERR_OFPBMC_BAD_FIELD && !strict) {
538 continue;
539 }
540 } else if (!field) {
541 if (!cookie) {
2e0525bc 542 error = OFPERR_OFPBMC_BAD_FIELD;
178742f9
BP
543 } else if (*cookie_mask) {
544 error = OFPERR_OFPBMC_DUP_FIELD;
102ce766 545 } else {
178742f9
BP
546 *cookie = value.be64;
547 *cookie_mask = mask.be64;
102ce766 548 }
7befb20d 549 } else if (strict && !mf_are_match_prereqs_ok(field, match)) {
2e0525bc 550 error = OFPERR_OFPBMC_BAD_PREREQ;
178742f9 551 } else if (!mf_is_all_wild(field, &match->wc)) {
2e0525bc 552 error = OFPERR_OFPBMC_DUP_FIELD;
d7892c81
YHW
553 } else if (pipeline_fields_only && !mf_is_pipeline_field(field)) {
554 error = OFPERR_OFPBRC_PIPELINE_FIELDS_ONLY;
72333065 555 } else {
4f7b100c
JG
556 char *err_str;
557
558 mf_set(field, &value, &mask, match, &err_str);
559 if (err_str) {
560 VLOG_DBG_RL(&rl, "error parsing OXM at offset %"PRIdPTR" "
561 "within match (%s)", pos - p, err_str);
562 free(err_str);
563 return OFPERR_OFPBMC_BAD_VALUE;
564 }
3d4b2e6e
JS
565
566 match_add_ethernet_prereq(match, field);
e729e793
JP
567 }
568
09246b99 569 if (error) {
178742f9
BP
570 VLOG_DBG_RL(&rl, "error parsing OXM at offset %"PRIdPTR" "
571 "within match (%s)", pos -
572 p, ofperr_to_string(error));
09246b99
BP
573 return error;
574 }
09246b99
BP
575 }
576
8d8ab6c2 577 match->flow.tunnel.metadata.tab = NULL;
178742f9 578 return 0;
09246b99 579}
102ce766 580
7623f4dd
SH
581static enum ofperr
582nx_pull_match__(struct ofpbuf *b, unsigned int match_len, bool strict,
d7892c81 583 bool pipeline_fields_only, struct match *match,
8d8ab6c2 584 ovs_be64 *cookie, ovs_be64 *cookie_mask,
3cddeff0
YHW
585 const struct tun_table *tun_table,
586 const struct vl_mff_map *vl_mff_map)
7623f4dd
SH
587{
588 uint8_t *p = NULL;
589
590 if (match_len) {
591 p = ofpbuf_try_pull(b, ROUND_UP(match_len, 8));
592 if (!p) {
593 VLOG_DBG_RL(&rl, "nx_match length %u, rounded up to a "
594 "multiple of 8, is longer than space in message (max "
6fd6ed71 595 "length %"PRIu32")", match_len, b->size);
7623f4dd
SH
596 return OFPERR_OFPBMC_BAD_LEN;
597 }
598 }
599
d7892c81
YHW
600 return nx_pull_raw(p, match_len, strict, pipeline_fields_only, match,
601 cookie, cookie_mask, tun_table, vl_mff_map);
7623f4dd
SH
602}
603
102ce766 604/* Parses the nx_match formatted match description in 'b' with length
81a76618
BP
605 * 'match_len'. Stores the results in 'match'. If 'cookie' and 'cookie_mask'
606 * are valid pointers, then stores the cookie and mask in them if 'b' contains
607 * a "NXM_NX_COOKIE*" match. Otherwise, stores 0 in both.
d7892c81
YHW
608 * If 'pipeline_fields_only' is true, this function returns
609 * OFPERR_OFPBRC_PIPELINE_FIELDS_ONLY if there is any non pipeline fields
610 * in 'b'.
102ce766 611 *
3cddeff0
YHW
612 * 'vl_mff_map" is an optional parameter that is used to validate the length
613 * of variable length mf_fields in 'match'. If it is not provided, the
614 * default mf_fields with maximum length will be used.
615 *
81a76618 616 * Fails with an error upon encountering an unknown NXM header.
102ce766
EJ
617 *
618 * Returns 0 if successful, otherwise an OpenFlow error code. */
90bf1e07 619enum ofperr
81a76618 620nx_pull_match(struct ofpbuf *b, unsigned int match_len, struct match *match,
8d8ab6c2 621 ovs_be64 *cookie, ovs_be64 *cookie_mask,
d7892c81 622 bool pipeline_fields_only, const struct tun_table *tun_table,
3cddeff0 623 const struct vl_mff_map *vl_mff_map)
102ce766 624{
d7892c81
YHW
625 return nx_pull_match__(b, match_len, true, pipeline_fields_only, match,
626 cookie, cookie_mask, tun_table, vl_mff_map);
102ce766
EJ
627}
628
81a76618 629/* Behaves the same as nx_pull_match(), but skips over unknown NXM headers,
7befb20d 630 * instead of failing with an error, and does not check for field
5bcd4754 631 * prerequisites. */
90bf1e07 632enum ofperr
102ce766 633nx_pull_match_loose(struct ofpbuf *b, unsigned int match_len,
d7892c81
YHW
634 struct match *match, ovs_be64 *cookie,
635 ovs_be64 *cookie_mask, bool pipeline_fields_only,
8d8ab6c2 636 const struct tun_table *tun_table)
102ce766 637{
d7892c81
YHW
638 return nx_pull_match__(b, match_len, false, pipeline_fields_only, match,
639 cookie, cookie_mask, tun_table, NULL);
102ce766 640}
7623f4dd
SH
641
642static enum ofperr
d7892c81 643oxm_pull_match__(struct ofpbuf *b, bool strict, bool pipeline_fields_only,
3cddeff0
YHW
644 const struct tun_table *tun_table,
645 const struct vl_mff_map *vl_mff_map, struct match *match)
7623f4dd 646{
6fd6ed71 647 struct ofp11_match_header *omh = b->data;
7623f4dd
SH
648 uint8_t *p;
649 uint16_t match_len;
650
6fd6ed71 651 if (b->size < sizeof *omh) {
7623f4dd
SH
652 return OFPERR_OFPBMC_BAD_LEN;
653 }
654
655 match_len = ntohs(omh->length);
656 if (match_len < sizeof *omh) {
657 return OFPERR_OFPBMC_BAD_LEN;
658 }
659
660 if (omh->type != htons(OFPMT_OXM)) {
661 return OFPERR_OFPBMC_BAD_TYPE;
662 }
663
664 p = ofpbuf_try_pull(b, ROUND_UP(match_len, 8));
665 if (!p) {
666 VLOG_DBG_RL(&rl, "oxm length %u, rounded up to a "
667 "multiple of 8, is longer than space in message (max "
6fd6ed71 668 "length %"PRIu32")", match_len, b->size);
7623f4dd
SH
669 return OFPERR_OFPBMC_BAD_LEN;
670 }
671
672 return nx_pull_raw(p + sizeof *omh, match_len - sizeof *omh,
d7892c81
YHW
673 strict, pipeline_fields_only, match, NULL, NULL,
674 tun_table, vl_mff_map);
7623f4dd
SH
675}
676
aa0667bc
YT
677/* Parses the oxm formatted match description preceded by a struct
678 * ofp11_match_header in 'b'. Stores the result in 'match'.
d7892c81
YHW
679 * If 'pipeline_fields_only' is true, this function returns
680 * OFPERR_OFPBRC_PIPELINE_FIELDS_ONLY if there is any non pipeline fields
681 * in 'b'.
7623f4dd 682 *
3cddeff0
YHW
683 * 'vl_mff_map' is an optional parameter that is used to validate the length
684 * of variable length mf_fields in 'match'. If it is not provided, the
685 * default mf_fields with maximum length will be used.
686 *
7623f4dd
SH
687 * Fails with an error when encountering unknown OXM headers.
688 *
689 * Returns 0 if successful, otherwise an OpenFlow error code. */
690enum ofperr
d7892c81
YHW
691oxm_pull_match(struct ofpbuf *b, bool pipeline_fields_only,
692 const struct tun_table *tun_table,
3cddeff0 693 const struct vl_mff_map *vl_mff_map, struct match *match)
7623f4dd 694{
d7892c81
YHW
695 return oxm_pull_match__(b, true, pipeline_fields_only, tun_table,
696 vl_mff_map, match);
7623f4dd
SH
697}
698
7befb20d
JR
699/* Behaves the same as oxm_pull_match() with two exceptions. Skips over
700 * unknown OXM headers instead of failing with an error when they are
5bcd4754 701 * encountered, and does not check for field prerequisites. */
7623f4dd 702enum ofperr
d7892c81
YHW
703oxm_pull_match_loose(struct ofpbuf *b, bool pipeline_fields_only,
704 const struct tun_table *tun_table, struct match *match)
7623f4dd 705{
d7892c81
YHW
706 return oxm_pull_match__(b, false, pipeline_fields_only, tun_table, NULL,
707 match);
7623f4dd 708}
bc65c25a 709
9f6e20b7
BP
710/* Parses the OXM match description in the 'oxm_len' bytes in 'oxm'. Stores
711 * the result in 'match'.
712 *
7befb20d 713 * Returns 0 if successful, otherwise an OpenFlow error code.
9f6e20b7 714 *
87450a4e
YHW
715 * If 'loose' is true, encountering unknown OXM headers or missing field
716 * prerequisites are not considered as error conditions.
7befb20d 717 */
9f6e20b7 718enum ofperr
87450a4e 719oxm_decode_match(const void *oxm, size_t oxm_len, bool loose,
3cddeff0
YHW
720 const struct tun_table *tun_table,
721 const struct vl_mff_map *vl_mff_map, struct match *match)
9f6e20b7 722{
d7892c81
YHW
723 return nx_pull_raw(oxm, oxm_len, !loose, false, match, NULL, NULL,
724 tun_table, vl_mff_map);
9f6e20b7
BP
725}
726
bc65c25a
SH
727/* Verify an array of OXM TLVs treating value of each TLV as a mask,
728 * disallowing masks in each TLV and ignoring pre-requisites. */
729enum ofperr
730oxm_pull_field_array(const void *fields_data, size_t fields_len,
731 struct field_array *fa)
732{
0a2869d5 733 struct ofpbuf b = ofpbuf_const_initializer(fields_data, fields_len);
bc65c25a
SH
734 while (b.size) {
735 const uint8_t *pos = b.data;
736 const struct mf_field *field;
737 union mf_value value;
738 enum ofperr error;
739 uint64_t header;
740
04f48a68
YHW
741 error = nx_pull_entry__(&b, false, NULL, &header, &field, &value,
742 NULL);
bc65c25a
SH
743 if (error) {
744 VLOG_DBG_RL(&rl, "error pulling field array field");
745 return error;
746 } else if (!field) {
747 VLOG_DBG_RL(&rl, "unknown field array field");
748 error = OFPERR_OFPBMC_BAD_FIELD;
749 } else if (bitmap_is_set(fa->used.bm, field->id)) {
750 VLOG_DBG_RL(&rl, "duplicate field array field '%s'", field->name);
751 error = OFPERR_OFPBMC_DUP_FIELD;
752 } else if (!mf_is_mask_valid(field, &value)) {
753 VLOG_DBG_RL(&rl, "bad mask in field array field '%s'", field->name);
754 return OFPERR_OFPBMC_BAD_MASK;
755 } else {
756 field_array_set(field->id, &value, fa);
757 }
758
759 if (error) {
760 const uint8_t *start = fields_data;
761
762 VLOG_DBG_RL(&rl, "error parsing OXM at offset %"PRIdPTR" "
763 "within field array (%s)", pos - start,
764 ofperr_to_string(error));
765 return error;
766 }
767 }
768
769 return 0;
770}
09246b99
BP
771\f
772/* nx_put_match() and helpers.
773 *
774 * 'put' functions whose names end in 'w' add a wildcarded field.
775 * 'put' functions whose names end in 'm' add a field that might be wildcarded.
776 * Other 'put' functions add exact-match fields.
777 */
be7ac2f3
BP
778
779struct nxm_put_ctx {
780 struct ofpbuf *output;
3d4b2e6e 781 bool implied_ethernet;
be7ac2f3
BP
782};
783
1cb20095 784void
be7ac2f3
BP
785nxm_put_entry_raw(struct ofpbuf *b,
786 enum mf_field_id field, enum ofp_version version,
787 const void *value, const void *mask, size_t n_bytes)
09246b99 788{
1cb20095 789 nx_put_header_len(b, field, version, !!mask, n_bytes);
f8047558 790 ofpbuf_put(b, value, n_bytes);
1cb20095
JG
791 if (mask) {
792 ofpbuf_put(b, mask, n_bytes);
793 }
be7ac2f3 794}
1cb20095 795
be7ac2f3
BP
796static void
797nxm_put__(struct nxm_put_ctx *ctx,
798 enum mf_field_id field, enum ofp_version version,
799 const void *value, const void *mask, size_t n_bytes)
800{
801 nxm_put_entry_raw(ctx->output, field, version, value, mask, n_bytes);
3d4b2e6e
JS
802 if (!ctx->implied_ethernet && mf_from_id(field)->prereqs != MFP_NONE) {
803 ctx->implied_ethernet = true;
804 }
09246b99
BP
805}
806
1cb20095 807static void
be7ac2f3
BP
808nxm_put(struct nxm_put_ctx *ctx,
809 enum mf_field_id field, enum ofp_version version,
f8047558 810 const void *value, const void *mask, size_t n_bytes)
66642cb4 811{
f8047558
BP
812 if (!is_all_zeros(mask, n_bytes)) {
813 bool masked = !is_all_ones(mask, n_bytes);
be7ac2f3 814 nxm_put__(ctx, field, version, value, masked ? mask : NULL, n_bytes);
66642cb4
BP
815 }
816}
817
09246b99 818static void
be7ac2f3
BP
819nxm_put_8m(struct nxm_put_ctx *ctx,
820 enum mf_field_id field, enum ofp_version version,
f8047558 821 uint8_t value, uint8_t mask)
09246b99 822{
be7ac2f3 823 nxm_put(ctx, field, version, &value, &mask, sizeof value);
09246b99
BP
824}
825
826static void
be7ac2f3
BP
827nxm_put_8(struct nxm_put_ctx *ctx,
828 enum mf_field_id field, enum ofp_version version, uint8_t value)
09246b99 829{
be7ac2f3 830 nxm_put__(ctx, field, version, &value, NULL, sizeof value);
09246b99
BP
831}
832
833static void
be7ac2f3
BP
834nxm_put_16m(struct nxm_put_ctx *ctx,
835 enum mf_field_id field, enum ofp_version version,
f8047558 836 ovs_be16 value, ovs_be16 mask)
09246b99 837{
be7ac2f3 838 nxm_put(ctx, field, version, &value, &mask, sizeof value);
09246b99
BP
839}
840
841static void
be7ac2f3
BP
842nxm_put_16(struct nxm_put_ctx *ctx,
843 enum mf_field_id field, enum ofp_version version, ovs_be16 value)
09246b99 844{
be7ac2f3 845 nxm_put__(ctx, field, version, &value, NULL, sizeof value);
09246b99
BP
846}
847
8368c090 848static void
be7ac2f3
BP
849nxm_put_32m(struct nxm_put_ctx *ctx,
850 enum mf_field_id field, enum ofp_version version,
f8047558 851 ovs_be32 value, ovs_be32 mask)
8368c090 852{
be7ac2f3 853 nxm_put(ctx, field, version, &value, &mask, sizeof value);
8368c090
BP
854}
855
856static void
be7ac2f3
BP
857nxm_put_32(struct nxm_put_ctx *ctx,
858 enum mf_field_id field, enum ofp_version version, ovs_be32 value)
8368c090 859{
be7ac2f3 860 nxm_put__(ctx, field, version, &value, NULL, sizeof value);
8368c090
BP
861}
862
09246b99 863static void
be7ac2f3
BP
864nxm_put_64m(struct nxm_put_ctx *ctx,
865 enum mf_field_id field, enum ofp_version version,
f8047558 866 ovs_be64 value, ovs_be64 mask)
09246b99 867{
be7ac2f3 868 nxm_put(ctx, field, version, &value, &mask, sizeof value);
09246b99
BP
869}
870
8ff10dd5 871static void
be7ac2f3 872nxm_put_128m(struct nxm_put_ctx *ctx,
8ff10dd5
JP
873 enum mf_field_id field, enum ofp_version version,
874 const ovs_be128 value, const ovs_be128 mask)
875{
be7ac2f3 876 nxm_put(ctx, field, version, &value, &mask, sizeof(value));
8ff10dd5
JP
877}
878
1e37a2d7 879static void
be7ac2f3 880nxm_put_eth_masked(struct nxm_put_ctx *ctx,
f8047558 881 enum mf_field_id field, enum ofp_version version,
74ff3298 882 const struct eth_addr value, const struct eth_addr mask)
1e37a2d7 883{
be7ac2f3 884 nxm_put(ctx, field, version, value.ea, mask.ea, ETH_ADDR_LEN);
1e37a2d7
BP
885}
886
d31f1109 887static void
be7ac2f3 888nxm_put_ipv6(struct nxm_put_ctx *ctx,
f8047558 889 enum mf_field_id field, enum ofp_version version,
d31f1109
JP
890 const struct in6_addr *value, const struct in6_addr *mask)
891{
be7ac2f3 892 nxm_put(ctx, field, version, value->s6_addr, mask->s6_addr,
f8047558 893 sizeof value->s6_addr);
d31f1109
JP
894}
895
7257b535 896static void
be7ac2f3 897nxm_put_frag(struct nxm_put_ctx *ctx, const struct match *match,
f8047558 898 enum ofp_version version)
7257b535 899{
f8047558
BP
900 uint8_t nw_frag = match->flow.nw_frag & FLOW_NW_FRAG_MASK;
901 uint8_t nw_frag_mask = match->wc.masks.nw_frag & FLOW_NW_FRAG_MASK;
7257b535 902
be7ac2f3 903 nxm_put_8m(ctx, MFF_IP_FRAG, version, nw_frag,
f8047558 904 nw_frag_mask == FLOW_NW_FRAG_MASK ? UINT8_MAX : nw_frag_mask);
7257b535
BP
905}
906
5e10215d
BP
907/* Appends to 'b' a set of OXM or NXM matches for the IPv4 or IPv6 fields in
908 * 'match'. */
8e7082b0 909static void
be7ac2f3
BP
910nxm_put_ip(struct nxm_put_ctx *ctx,
911 const struct match *match, enum ofp_version oxm)
8e7082b0 912{
81a76618 913 const struct flow *flow = &match->flow;
3d4b2e6e 914 ovs_be16 dl_type = get_dl_type(flow);
8e7082b0 915
3d4b2e6e 916 if (dl_type == htons(ETH_TYPE_IP)) {
be7ac2f3 917 nxm_put_32m(ctx, MFF_IPV4_SRC, oxm,
5e10215d 918 flow->nw_src, match->wc.masks.nw_src);
be7ac2f3 919 nxm_put_32m(ctx, MFF_IPV4_DST, oxm,
5e10215d
BP
920 flow->nw_dst, match->wc.masks.nw_dst);
921 } else {
be7ac2f3 922 nxm_put_ipv6(ctx, MFF_IPV6_SRC, oxm,
5e10215d 923 &flow->ipv6_src, &match->wc.masks.ipv6_src);
be7ac2f3 924 nxm_put_ipv6(ctx, MFF_IPV6_DST, oxm,
5e10215d
BP
925 &flow->ipv6_dst, &match->wc.masks.ipv6_dst);
926 }
927
be7ac2f3 928 nxm_put_frag(ctx, match, oxm);
8e7082b0 929
81a76618 930 if (match->wc.masks.nw_tos & IP_DSCP_MASK) {
1638b906 931 if (oxm) {
be7ac2f3 932 nxm_put_8(ctx, MFF_IP_DSCP_SHIFTED, oxm,
9d84066c 933 flow->nw_tos >> 2);
1638b906 934 } else {
be7ac2f3 935 nxm_put_8(ctx, MFF_IP_DSCP, oxm,
9d84066c 936 flow->nw_tos & IP_DSCP_MASK);
1638b906 937 }
8e7082b0
BP
938 }
939
81a76618 940 if (match->wc.masks.nw_tos & IP_ECN_MASK) {
be7ac2f3 941 nxm_put_8(ctx, MFF_IP_ECN, oxm,
b5ae8913 942 flow->nw_tos & IP_ECN_MASK);
8e7082b0
BP
943 }
944
5a21d9c2 945 if (match->wc.masks.nw_ttl) {
be7ac2f3 946 nxm_put_8(ctx, MFF_IP_TTL, oxm, flow->nw_ttl);
8e7082b0
BP
947 }
948
be7ac2f3 949 nxm_put_32m(ctx, MFF_IPV6_LABEL, oxm,
5e10215d
BP
950 flow->ipv6_label, match->wc.masks.ipv6_label);
951
81a76618 952 if (match->wc.masks.nw_proto) {
be7ac2f3 953 nxm_put_8(ctx, MFF_IP_PROTO, oxm, flow->nw_proto);
8e7082b0
BP
954
955 if (flow->nw_proto == IPPROTO_TCP) {
be7ac2f3 956 nxm_put_16m(ctx, MFF_TCP_SRC, oxm,
81a76618 957 flow->tp_src, match->wc.masks.tp_src);
be7ac2f3 958 nxm_put_16m(ctx, MFF_TCP_DST, oxm,
81a76618 959 flow->tp_dst, match->wc.masks.tp_dst);
be7ac2f3 960 nxm_put_16m(ctx, MFF_TCP_FLAGS, oxm,
dc235f7f 961 flow->tcp_flags, match->wc.masks.tcp_flags);
8e7082b0 962 } else if (flow->nw_proto == IPPROTO_UDP) {
be7ac2f3 963 nxm_put_16m(ctx, MFF_UDP_SRC, oxm,
81a76618 964 flow->tp_src, match->wc.masks.tp_src);
be7ac2f3 965 nxm_put_16m(ctx, MFF_UDP_DST, oxm,
81a76618 966 flow->tp_dst, match->wc.masks.tp_dst);
0d56eaf2 967 } else if (flow->nw_proto == IPPROTO_SCTP) {
be7ac2f3 968 nxm_put_16m(ctx, MFF_SCTP_SRC, oxm, flow->tp_src,
0d56eaf2 969 match->wc.masks.tp_src);
be7ac2f3 970 nxm_put_16m(ctx, MFF_SCTP_DST, oxm, flow->tp_dst,
0d56eaf2 971 match->wc.masks.tp_dst);
a75636c8 972 } else if (is_icmpv4(flow, NULL)) {
5e10215d 973 if (match->wc.masks.tp_src) {
be7ac2f3 974 nxm_put_8(ctx, MFF_ICMPV4_TYPE, oxm,
5e10215d
BP
975 ntohs(flow->tp_src));
976 }
977 if (match->wc.masks.tp_dst) {
be7ac2f3 978 nxm_put_8(ctx, MFF_ICMPV4_CODE, oxm,
5e10215d
BP
979 ntohs(flow->tp_dst));
980 }
a75636c8 981 } else if (is_icmpv6(flow, NULL)) {
81a76618 982 if (match->wc.masks.tp_src) {
be7ac2f3 983 nxm_put_8(ctx, MFF_ICMPV6_TYPE, oxm,
5e10215d 984 ntohs(flow->tp_src));
8e7082b0 985 }
81a76618 986 if (match->wc.masks.tp_dst) {
be7ac2f3 987 nxm_put_8(ctx, MFF_ICMPV6_CODE, oxm,
5e10215d
BP
988 ntohs(flow->tp_dst));
989 }
c17fcc0a 990 if (is_nd(flow, NULL)) {
be7ac2f3 991 nxm_put_ipv6(ctx, MFF_ND_TARGET, oxm,
5e10215d
BP
992 &flow->nd_target, &match->wc.masks.nd_target);
993 if (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
be7ac2f3 994 nxm_put_eth_masked(ctx, MFF_ND_SLL, oxm,
5e10215d
BP
995 flow->arp_sha, match->wc.masks.arp_sha);
996 }
997 if (flow->tp_src == htons(ND_NEIGHBOR_ADVERT)) {
be7ac2f3 998 nxm_put_eth_masked(ctx, MFF_ND_TLL, oxm,
5e10215d
BP
999 flow->arp_tha, match->wc.masks.arp_tha);
1000 }
8e7082b0
BP
1001 }
1002 }
1003 }
1004}
1005
81a76618 1006/* Appends to 'b' the nx_match format that expresses 'match'. For Flow Mod and
7623f4dd
SH
1007 * Flow Stats Requests messages, a 'cookie' and 'cookie_mask' may be supplied.
1008 * Otherwise, 'cookie_mask' should be zero.
4d0ed519 1009 *
9d84066c
BP
1010 * Specify 'oxm' as 0 to express the match in NXM format; otherwise, specify
1011 * 'oxm' as the OpenFlow version number for the OXM format to use.
1012 *
4d0ed519
BP
1013 * This function can cause 'b''s data to be reallocated.
1014 *
1015 * Returns the number of bytes appended to 'b', excluding padding.
1016 *
81a76618 1017 * If 'match' is a catch-all rule that matches every packet, then this function
4d0ed519 1018 * appends nothing to 'b' and returns 0. */
7623f4dd 1019static int
9d84066c 1020nx_put_raw(struct ofpbuf *b, enum ofp_version oxm, const struct match *match,
7623f4dd 1021 ovs_be64 cookie, ovs_be64 cookie_mask)
09246b99 1022{
81a76618 1023 const struct flow *flow = &match->flow;
6fd6ed71 1024 const size_t start_len = b->size;
3d4b2e6e 1025 ovs_be16 dl_type = get_dl_type(flow);
17553f27 1026 ovs_be32 spi_mask;
09246b99
BP
1027 int match_len;
1028
3d2fbd70 1029 BUILD_ASSERT_DECL(FLOW_WC_SEQ == 40);
a877206f 1030
3d4b2e6e
JS
1031 struct nxm_put_ctx ctx = { .output = b, .implied_ethernet = false };
1032
1033 /* OpenFlow Packet Type. Must be first. */
1034 if (match->wc.masks.packet_type && !match_has_default_packet_type(match)) {
1035 nxm_put_32m(&ctx, MFF_PACKET_TYPE, oxm, flow->packet_type,
1036 match->wc.masks.packet_type);
1037 }
be7ac2f3 1038
09246b99 1039 /* Metadata. */
a79f29f2 1040 if (match->wc.masks.dp_hash) {
be7ac2f3 1041 nxm_put_32m(&ctx, MFF_DP_HASH, oxm,
447b6582 1042 htonl(flow->dp_hash), htonl(match->wc.masks.dp_hash));
a79f29f2
AZ
1043 }
1044
1045 if (match->wc.masks.recirc_id) {
be7ac2f3 1046 nxm_put_32(&ctx, MFF_RECIRC_ID, oxm, htonl(flow->recirc_id));
a79f29f2
AZ
1047 }
1048
18080541 1049 if (match->wc.masks.conj_id) {
be7ac2f3 1050 nxm_put_32(&ctx, MFF_CONJ_ID, oxm, htonl(flow->conj_id));
18080541
BP
1051 }
1052
4e022ec0
AW
1053 if (match->wc.masks.in_port.ofp_port) {
1054 ofp_port_t in_port = flow->in_port.ofp_port;
b5ae8913 1055 if (oxm) {
be7ac2f3 1056 nxm_put_32(&ctx, MFF_IN_PORT_OXM, oxm,
9d84066c 1057 ofputil_port_to_ofp11(in_port));
b5ae8913 1058 } else {
be7ac2f3 1059 nxm_put_16(&ctx, MFF_IN_PORT, oxm,
9d84066c 1060 htons(ofp_to_u16(in_port)));
b5ae8913 1061 }
09246b99 1062 }
c61f3870 1063 if (match->wc.masks.actset_output) {
be7ac2f3 1064 nxm_put_32(&ctx, MFF_ACTSET_OUTPUT, oxm,
c61f3870
BP
1065 ofputil_port_to_ofp11(flow->actset_output));
1066 }
09246b99
BP
1067
1068 /* Ethernet. */
be7ac2f3 1069 nxm_put_eth_masked(&ctx, MFF_ETH_SRC, oxm,
81a76618 1070 flow->dl_src, match->wc.masks.dl_src);
be7ac2f3 1071 nxm_put_eth_masked(&ctx, MFF_ETH_DST, oxm,
81a76618 1072 flow->dl_dst, match->wc.masks.dl_dst);
be7ac2f3 1073 nxm_put_16m(&ctx, MFF_ETH_TYPE, oxm,
e2170cff 1074 ofputil_dl_type_to_openflow(flow->dl_type),
81a76618 1075 match->wc.masks.dl_type);
09246b99 1076
95f61ba8
SH
1077 /* 802.1Q. */
1078 if (oxm) {
26720e24 1079 ovs_be16 VID_CFI_MASK = htons(VLAN_VID_MASK | VLAN_CFI);
f0fb825a
EG
1080 ovs_be16 vid = flow->vlans[0].tci & VID_CFI_MASK;
1081 ovs_be16 mask = match->wc.masks.vlans[0].tci & VID_CFI_MASK;
95f61ba8
SH
1082
1083 if (mask == htons(VLAN_VID_MASK | VLAN_CFI)) {
be7ac2f3 1084 nxm_put_16(&ctx, MFF_VLAN_VID, oxm, vid);
95f61ba8 1085 } else if (mask) {
be7ac2f3 1086 nxm_put_16m(&ctx, MFF_VLAN_VID, oxm, vid, mask);
95f61ba8
SH
1087 }
1088
f0fb825a 1089 if (vid && vlan_tci_to_pcp(match->wc.masks.vlans[0].tci)) {
be7ac2f3 1090 nxm_put_8(&ctx, MFF_VLAN_PCP, oxm,
f0fb825a 1091 vlan_tci_to_pcp(flow->vlans[0].tci));
95f61ba8
SH
1092 }
1093
1094 } else {
be7ac2f3 1095 nxm_put_16m(&ctx, MFF_VLAN_TCI, oxm, flow->vlans[0].tci,
f0fb825a 1096 match->wc.masks.vlans[0].tci);
95f61ba8 1097 }
09246b99 1098
b02475c5 1099 /* MPLS. */
3d4b2e6e 1100 if (eth_type_mpls(dl_type)) {
8bfd0fda 1101 if (match->wc.masks.mpls_lse[0] & htonl(MPLS_TC_MASK)) {
be7ac2f3 1102 nxm_put_8(&ctx, MFF_MPLS_TC, oxm,
9d84066c 1103 mpls_lse_to_tc(flow->mpls_lse[0]));
b02475c5
SH
1104 }
1105
8bfd0fda 1106 if (match->wc.masks.mpls_lse[0] & htonl(MPLS_BOS_MASK)) {
be7ac2f3 1107 nxm_put_8(&ctx, MFF_MPLS_BOS, oxm,
9d84066c 1108 mpls_lse_to_bos(flow->mpls_lse[0]));
b02475c5
SH
1109 }
1110
8bfd0fda 1111 if (match->wc.masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK)) {
be7ac2f3 1112 nxm_put_32(&ctx, MFF_MPLS_LABEL, oxm,
8bfd0fda 1113 htonl(mpls_lse_to_label(flow->mpls_lse[0])));
b02475c5
SH
1114 }
1115 }
1116
66642cb4 1117 /* L3. */
5e10215d 1118 if (is_ip_any(flow)) {
be7ac2f3 1119 nxm_put_ip(&ctx, match, oxm);
3d4b2e6e
JS
1120 } else if (dl_type == htons(ETH_TYPE_ARP) ||
1121 dl_type == htons(ETH_TYPE_RARP)) {
09246b99 1122 /* ARP. */
81a76618 1123 if (match->wc.masks.nw_proto) {
be7ac2f3 1124 nxm_put_16(&ctx, MFF_ARP_OP, oxm,
b5ae8913 1125 htons(flow->nw_proto));
09246b99 1126 }
be7ac2f3 1127 nxm_put_32m(&ctx, MFF_ARP_SPA, oxm,
81a76618 1128 flow->nw_src, match->wc.masks.nw_src);
be7ac2f3 1129 nxm_put_32m(&ctx, MFF_ARP_TPA, oxm,
81a76618 1130 flow->nw_dst, match->wc.masks.nw_dst);
be7ac2f3 1131 nxm_put_eth_masked(&ctx, MFF_ARP_SHA, oxm,
81a76618 1132 flow->arp_sha, match->wc.masks.arp_sha);
be7ac2f3 1133 nxm_put_eth_masked(&ctx, MFF_ARP_THA, oxm,
81a76618 1134 flow->arp_tha, match->wc.masks.arp_tha);
09246b99
BP
1135 }
1136
1137 /* Tunnel ID. */
be7ac2f3 1138 nxm_put_64m(&ctx, MFF_TUN_ID, oxm,
0ad90c84
JR
1139 flow->tunnel.tun_id, match->wc.masks.tunnel.tun_id);
1140
1141 /* Other tunnel metadata. */
be7ac2f3 1142 nxm_put_16m(&ctx, MFF_TUN_FLAGS, oxm,
b666962b 1143 htons(flow->tunnel.flags), htons(match->wc.masks.tunnel.flags));
be7ac2f3 1144 nxm_put_32m(&ctx, MFF_TUN_SRC, oxm,
0ad90c84 1145 flow->tunnel.ip_src, match->wc.masks.tunnel.ip_src);
be7ac2f3 1146 nxm_put_32m(&ctx, MFF_TUN_DST, oxm,
0ad90c84 1147 flow->tunnel.ip_dst, match->wc.masks.tunnel.ip_dst);
be7ac2f3 1148 nxm_put_ipv6(&ctx, MFF_TUN_IPV6_SRC, oxm,
7dad8e9a 1149 &flow->tunnel.ipv6_src, &match->wc.masks.tunnel.ipv6_src);
be7ac2f3 1150 nxm_put_ipv6(&ctx, MFF_TUN_IPV6_DST, oxm,
7dad8e9a 1151 &flow->tunnel.ipv6_dst, &match->wc.masks.tunnel.ipv6_dst);
be7ac2f3 1152 nxm_put_16m(&ctx, MFF_TUN_GBP_ID, oxm,
ac6073e3 1153 flow->tunnel.gbp_id, match->wc.masks.tunnel.gbp_id);
be7ac2f3 1154 nxm_put_8m(&ctx, MFF_TUN_GBP_FLAGS, oxm,
ac6073e3 1155 flow->tunnel.gbp_flags, match->wc.masks.tunnel.gbp_flags);
9558d2a5 1156 tun_metadata_to_nx_match(b, oxm, match);
09246b99 1157
3d2fbd70
JS
1158 /* Network Service Header */
1159 nxm_put_8m(&ctx, MFF_NSH_FLAGS, oxm, flow->nsh.flags,
1160 match->wc.masks.nsh.flags);
17553f27
YY
1161 nxm_put_8m(&ctx, MFF_NSH_TTL, oxm, flow->nsh.ttl,
1162 match->wc.masks.nsh.ttl);
3d2fbd70
JS
1163 nxm_put_8m(&ctx, MFF_NSH_MDTYPE, oxm, flow->nsh.mdtype,
1164 match->wc.masks.nsh.mdtype);
1165 nxm_put_8m(&ctx, MFF_NSH_NP, oxm, flow->nsh.np,
1166 match->wc.masks.nsh.np);
17553f27
YY
1167 spi_mask = nsh_path_hdr_to_spi(match->wc.masks.nsh.path_hdr);
1168 if (spi_mask == htonl(NSH_SPI_MASK >> NSH_SPI_SHIFT)) {
1169 spi_mask = OVS_BE32_MAX;
1170 }
1171 nxm_put_32m(&ctx, MFF_NSH_SPI, oxm,
1172 nsh_path_hdr_to_spi(flow->nsh.path_hdr),
1173 spi_mask);
1174 nxm_put_8m(&ctx, MFF_NSH_SI, oxm,
1175 nsh_path_hdr_to_si(flow->nsh.path_hdr),
1176 nsh_path_hdr_to_si(match->wc.masks.nsh.path_hdr));
3d2fbd70 1177 for (int i = 0; i < 4; i++) {
f59cb331
YY
1178 nxm_put_32m(&ctx, MFF_NSH_C1 + i, oxm, flow->nsh.context[i],
1179 match->wc.masks.nsh.context[i]);
3d2fbd70
JS
1180 }
1181
b6c9e612 1182 /* Registers. */
a678b23e 1183 if (oxm < OFP15_VERSION) {
97bf8f47 1184 for (int i = 0; i < FLOW_N_REGS; i++) {
be7ac2f3 1185 nxm_put_32m(&ctx, MFF_REG0 + i, oxm,
a678b23e
BP
1186 htonl(flow->regs[i]), htonl(match->wc.masks.regs[i]));
1187 }
1188 } else {
97bf8f47 1189 for (int i = 0; i < FLOW_N_XREGS; i++) {
be7ac2f3 1190 nxm_put_64m(&ctx, MFF_XREG0 + i, oxm,
a678b23e
BP
1191 htonll(flow_get_xreg(flow, i)),
1192 htonll(flow_get_xreg(&match->wc.masks, i)));
1193 }
b6c9e612
BP
1194 }
1195
8e53fe8c 1196 /* Packet mark. */
be7ac2f3 1197 nxm_put_32m(&ctx, MFF_PKT_MARK, oxm, htonl(flow->pkt_mark),
ac923e91
JG
1198 htonl(match->wc.masks.pkt_mark));
1199
07659514 1200 /* Connection tracking. */
be7ac2f3 1201 nxm_put_32m(&ctx, MFF_CT_STATE, oxm, htonl(flow->ct_state),
07659514 1202 htonl(match->wc.masks.ct_state));
be7ac2f3 1203 nxm_put_16m(&ctx, MFF_CT_ZONE, oxm, htons(flow->ct_zone),
07659514 1204 htons(match->wc.masks.ct_zone));
be7ac2f3 1205 nxm_put_32m(&ctx, MFF_CT_MARK, oxm, htonl(flow->ct_mark),
8e53fe8c 1206 htonl(match->wc.masks.ct_mark));
be7ac2f3 1207 nxm_put_128m(&ctx, MFF_CT_LABEL, oxm, hton128(flow->ct_label),
8ff10dd5 1208 hton128(match->wc.masks.ct_label));
be7ac2f3 1209 nxm_put_32m(&ctx, MFF_CT_NW_SRC, oxm,
daf4d3c1 1210 flow->ct_nw_src, match->wc.masks.ct_nw_src);
be7ac2f3 1211 nxm_put_ipv6(&ctx, MFF_CT_IPV6_SRC, oxm,
daf4d3c1 1212 &flow->ct_ipv6_src, &match->wc.masks.ct_ipv6_src);
be7ac2f3 1213 nxm_put_32m(&ctx, MFF_CT_NW_DST, oxm,
daf4d3c1 1214 flow->ct_nw_dst, match->wc.masks.ct_nw_dst);
be7ac2f3 1215 nxm_put_ipv6(&ctx, MFF_CT_IPV6_DST, oxm,
daf4d3c1
JR
1216 &flow->ct_ipv6_dst, &match->wc.masks.ct_ipv6_dst);
1217 if (flow->ct_nw_proto) {
e4713f24
JP
1218 nxm_put_8m(&ctx, MFF_CT_NW_PROTO, oxm, flow->ct_nw_proto,
1219 match->wc.masks.ct_nw_proto);
be7ac2f3 1220 nxm_put_16m(&ctx, MFF_CT_TP_SRC, oxm,
daf4d3c1 1221 flow->ct_tp_src, match->wc.masks.ct_tp_src);
be7ac2f3 1222 nxm_put_16m(&ctx, MFF_CT_TP_DST, oxm,
daf4d3c1
JR
1223 flow->ct_tp_dst, match->wc.masks.ct_tp_dst);
1224 }
969fc56c 1225 /* OpenFlow 1.1+ Metadata. */
be7ac2f3 1226 nxm_put_64m(&ctx, MFF_METADATA, oxm,
9d84066c 1227 flow->metadata, match->wc.masks.metadata);
969fc56c 1228
e729e793 1229 /* Cookie. */
f8047558
BP
1230 if (cookie_mask) {
1231 bool masked = cookie_mask != OVS_BE64_MAX;
1232
1233 cookie &= cookie_mask;
1234 nx_put_header__(b, NXM_NX_COOKIE, masked);
1235 ofpbuf_put(b, &cookie, sizeof cookie);
1236 if (masked) {
1237 ofpbuf_put(b, &cookie_mask, sizeof cookie_mask);
1238 }
1239 }
e729e793 1240
3d4b2e6e
JS
1241 if (match_has_default_packet_type(match) && !ctx.implied_ethernet) {
1242 uint64_t pt_stub[16 / 8];
1243 struct ofpbuf pt;
1244 ofpbuf_use_stack(&pt, pt_stub, sizeof pt_stub);
1245 nxm_put_entry_raw(&pt, MFF_PACKET_TYPE, oxm, &flow->packet_type,
1246 NULL, sizeof flow->packet_type);
1247
1248 ofpbuf_insert(b, start_len, pt.data, pt.size);
1249 }
1250
6fd6ed71 1251 match_len = b->size - start_len;
7623f4dd
SH
1252 return match_len;
1253}
1254
81a76618 1255/* Appends to 'b' the nx_match format that expresses 'match', plus enough zero
7623f4dd
SH
1256 * bytes to pad the nx_match out to a multiple of 8. For Flow Mod and Flow
1257 * Stats Requests messages, a 'cookie' and 'cookie_mask' may be supplied.
1258 * Otherwise, 'cookie_mask' should be zero.
1259 *
1260 * This function can cause 'b''s data to be reallocated.
1261 *
1262 * Returns the number of bytes appended to 'b', excluding padding. The return
1263 * value can be zero if it appended nothing at all to 'b' (which happens if
1264 * 'cr' is a catch-all rule that matches every packet). */
1265int
81a76618 1266nx_put_match(struct ofpbuf *b, const struct match *match,
7623f4dd
SH
1267 ovs_be64 cookie, ovs_be64 cookie_mask)
1268{
9d84066c 1269 int match_len = nx_put_raw(b, 0, match, cookie, cookie_mask);
7623f4dd 1270
f6e984d7 1271 ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
7623f4dd
SH
1272 return match_len;
1273}
1274
9d84066c 1275/* Appends to 'b' an struct ofp11_match_header followed by the OXM format that
9f6e20b7 1276 * expresses 'match', plus enough zero bytes to pad the data appended out to a
81a76618 1277 * multiple of 8.
7623f4dd 1278 *
9d84066c
BP
1279 * OXM differs slightly among versions of OpenFlow. Specify the OpenFlow
1280 * version in use as 'version'.
1281 *
7623f4dd
SH
1282 * This function can cause 'b''s data to be reallocated.
1283 *
1284 * Returns the number of bytes appended to 'b', excluding the padding. Never
1285 * returns zero. */
1286int
9d84066c
BP
1287oxm_put_match(struct ofpbuf *b, const struct match *match,
1288 enum ofp_version version)
7623f4dd
SH
1289{
1290 int match_len;
1291 struct ofp11_match_header *omh;
6fd6ed71 1292 size_t start_len = b->size;
7623f4dd
SH
1293 ovs_be64 cookie = htonll(0), cookie_mask = htonll(0);
1294
1295 ofpbuf_put_uninit(b, sizeof *omh);
9d84066c
BP
1296 match_len = (nx_put_raw(b, version, match, cookie, cookie_mask)
1297 + sizeof *omh);
f6e984d7 1298 ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
7623f4dd 1299
db5a1019 1300 omh = ofpbuf_at(b, start_len, sizeof *omh);
7623f4dd
SH
1301 omh->type = htons(OFPMT_OXM);
1302 omh->length = htons(match_len);
1303
09246b99
BP
1304 return match_len;
1305}
178742f9 1306
9f6e20b7
BP
1307/* Appends to 'b' the OXM formats that expresses 'match', without header or
1308 * padding.
1309 *
1310 * OXM differs slightly among versions of OpenFlow. Specify the OpenFlow
1311 * version in use as 'version'.
1312 *
1313 * This function can cause 'b''s data to be reallocated. */
1314void
1315oxm_put_raw(struct ofpbuf *b, const struct match *match,
1316 enum ofp_version version)
1317{
1318 nx_put_raw(b, version, match, 0, 0);
1319}
1320
53eb84a5
SH
1321/* Appends to 'b' the nx_match format that expresses the tlv corresponding
1322 * to 'id'. If mask is not all-ones then it is also formated as the value
1323 * of the tlv. */
1324static void
1325nx_format_mask_tlv(struct ds *ds, enum mf_field_id id,
1326 const union mf_value *mask)
1327{
1328 const struct mf_field *mf = mf_from_id(id);
1329
1330 ds_put_format(ds, "%s", mf->name);
1331
1332 if (!is_all_ones(mask, mf->n_bytes)) {
1333 ds_put_char(ds, '=');
50f96b10 1334 mf_format(mf, mask, NULL, NULL, ds);
53eb84a5
SH
1335 }
1336
1337 ds_put_char(ds, ',');
1338}
1339
1340/* Appends a string representation of 'fa_' to 'ds'.
1341 * The TLVS value of 'fa_' is treated as a mask and
1342 * only the name of fields is formated if it is all ones. */
1343void
1344oxm_format_field_array(struct ds *ds, const struct field_array *fa)
1345{
1346 size_t start_len = ds->length;
e8dba719 1347 size_t i, offset = 0;
53eb84a5 1348
e8dba719
JR
1349 BITMAP_FOR_EACH_1 (i, MFF_N_IDS, fa->used.bm) {
1350 const struct mf_field *mf = mf_from_id(i);
1351 union mf_value value;
1352
1353 memcpy(&value, fa->values + offset, mf->n_bytes);
1354 nx_format_mask_tlv(ds, i, &value);
1355 offset += mf->n_bytes;
53eb84a5
SH
1356 }
1357
1358 if (ds->length > start_len) {
1359 ds_chomp(ds, ',');
1360 }
1361}
1362
1363/* Appends to 'b' a series of OXM TLVs corresponding to the series
1364 * of enum mf_field_id and value tuples in 'fa_'.
1365 *
1366 * OXM differs slightly among versions of OpenFlow. Specify the OpenFlow
1367 * version in use as 'version'.
1368 *
1369 * This function can cause 'b''s data to be reallocated.
1370 *
1371 * Returns the number of bytes appended to 'b'. May return zero. */
1372int
1373oxm_put_field_array(struct ofpbuf *b, const struct field_array *fa,
1374 enum ofp_version version)
1375{
1376 size_t start_len = b->size;
53eb84a5
SH
1377
1378 /* Field arrays are only used with the group selection method
d5651b84 1379 * property and group properties are only available in OpenFlow 1.5+.
53eb84a5
SH
1380 * So the following assertion should never fail.
1381 *
1382 * If support for older OpenFlow versions is desired then some care
1383 * will need to be taken of different TLVs that handle the same
1384 * flow fields. In particular:
1385 * - VLAN_TCI, VLAN_VID and MFF_VLAN_PCP
1386 * - IP_DSCP_MASK and DSCP_SHIFTED
1387 * - REGS and XREGS
1388 */
1389 ovs_assert(version >= OFP15_VERSION);
1390
e8dba719
JR
1391 size_t i, offset = 0;
1392
1393 BITMAP_FOR_EACH_1 (i, MFF_N_IDS, fa->used.bm) {
1394 const struct mf_field *mf = mf_from_id(i);
1395 union mf_value value;
1396
1397 memcpy(&value, fa->values + offset, mf->n_bytes);
1398
1399 int len = mf_field_len(mf, &value, NULL, NULL);
be7ac2f3
BP
1400 nxm_put_entry_raw(b, i, version,
1401 &value + mf->n_bytes - len, NULL, len);
e8dba719 1402 offset += mf->n_bytes;
53eb84a5
SH
1403 }
1404
1405 return b->size - start_len;
1406}
1407
f8047558 1408static void
508a9338 1409nx_put_header__(struct ofpbuf *b, uint64_t header, bool masked)
f8047558 1410{
508a9338
BP
1411 uint64_t masked_header = masked ? nxm_make_wild_header(header) : header;
1412 ovs_be64 network_header = htonll(masked_header);
f8047558 1413
508a9338 1414 ofpbuf_put(b, &network_header, nxm_header_len(header));
f8047558
BP
1415}
1416
178742f9
BP
1417void
1418nx_put_header(struct ofpbuf *b, enum mf_field_id field,
1419 enum ofp_version version, bool masked)
1420{
f8047558 1421 nx_put_header__(b, mf_oxm_header(field, version), masked);
178742f9
BP
1422}
1423
04f48a68
YHW
1424void nx_put_mff_header(struct ofpbuf *b, const struct mf_field *mff,
1425 enum ofp_version version, bool masked)
1426{
1427 if (mff->mapped) {
1428 nx_put_header_len(b, mff->id, version, masked, mff->n_bytes);
1429 } else {
1430 nx_put_header(b, mff->id, version, masked);
1431 }
1432}
1433
dc3eb953
JG
1434static void
1435nx_put_header_len(struct ofpbuf *b, enum mf_field_id field,
1436 enum ofp_version version, bool masked, size_t n_bytes)
1437{
1438 uint64_t header = mf_oxm_header(field, version);
1439
1440 header = NXM_HEADER(nxm_vendor(header), nxm_class(header),
1441 nxm_field(header), false,
1442 nxm_experimenter_len(header) + n_bytes);
1443
1444 nx_put_header__(b, header, masked);
1445}
1446
178742f9 1447void
04f48a68
YHW
1448nx_put_entry(struct ofpbuf *b, const struct mf_field *mff,
1449 enum ofp_version version, const union mf_value *value,
1450 const union mf_value *mask)
178742f9 1451{
1cb20095 1452 bool masked;
4ede8c79 1453 int len, offset;
178742f9 1454
04f48a68
YHW
1455 len = mf_field_len(mff, value, mask, &masked);
1456 offset = mff->n_bytes - len;
4ede8c79 1457
be7ac2f3
BP
1458 nxm_put_entry_raw(b, mff->id, version,
1459 &value->u8 + offset, masked ? &mask->u8 + offset : NULL,
1460 len);
178742f9 1461}
09246b99
BP
1462\f
1463/* nx_match_to_string() and helpers. */
1464
508a9338 1465static void format_nxm_field_name(struct ds *, uint64_t header);
f393f81e 1466
09246b99
BP
1467char *
1468nx_match_to_string(const uint8_t *p, unsigned int match_len)
1469{
09246b99
BP
1470 if (!match_len) {
1471 return xstrdup("<any>");
1472 }
1473
0a2869d5
BP
1474 struct ofpbuf b = ofpbuf_const_initializer(p, match_len);
1475 struct ds s = DS_EMPTY_INITIALIZER;
6fd6ed71 1476 while (b.size) {
178742f9
BP
1477 union mf_value value;
1478 union mf_value mask;
1479 enum ofperr error;
508a9338 1480 uint64_t header;
178742f9
BP
1481 int value_len;
1482
04f48a68 1483 error = nx_pull_entry__(&b, true, NULL, &header, NULL, &value, &mask);
178742f9
BP
1484 if (error) {
1485 break;
1486 }
1487 value_len = MIN(sizeof value, nxm_field_bytes(header));
09246b99
BP
1488
1489 if (s.length) {
1490 ds_put_cstr(&s, ", ");
1491 }
1492
f393f81e 1493 format_nxm_field_name(&s, header);
09246b99
BP
1494 ds_put_char(&s, '(');
1495
178742f9
BP
1496 for (int i = 0; i < value_len; i++) {
1497 ds_put_format(&s, "%02x", ((const uint8_t *) &value)[i]);
09246b99 1498 }
178742f9 1499 if (nxm_hasmask(header)) {
09246b99 1500 ds_put_char(&s, '/');
178742f9
BP
1501 for (int i = 0; i < value_len; i++) {
1502 ds_put_format(&s, "%02x", ((const uint8_t *) &mask)[i]);
09246b99
BP
1503 }
1504 }
1505 ds_put_char(&s, ')');
09246b99
BP
1506 }
1507
6fd6ed71 1508 if (b.size) {
09246b99
BP
1509 if (s.length) {
1510 ds_put_cstr(&s, ", ");
1511 }
1512
6fd6ed71 1513 ds_put_format(&s, "<%u invalid bytes>", b.size);
09246b99
BP
1514 }
1515
1516 return ds_steal_cstr(&s);
1517}
1518
7623f4dd 1519char *
db5a1019 1520oxm_match_to_string(const struct ofpbuf *p, unsigned int match_len)
7623f4dd 1521{
6fd6ed71 1522 const struct ofp11_match_header *omh = p->data;
7623f4dd
SH
1523 uint16_t match_len_;
1524 struct ds s;
1525
1526 ds_init(&s);
1527
1528 if (match_len < sizeof *omh) {
1529 ds_put_format(&s, "<match too short: %u>", match_len);
1530 goto err;
1531 }
1532
1533 if (omh->type != htons(OFPMT_OXM)) {
1534 ds_put_format(&s, "<bad match type field: %u>", ntohs(omh->type));
1535 goto err;
1536 }
1537
1538 match_len_ = ntohs(omh->length);
1539 if (match_len_ < sizeof *omh) {
1540 ds_put_format(&s, "<match length field too short: %u>", match_len_);
1541 goto err;
1542 }
1543
1544 if (match_len_ != match_len) {
1545 ds_put_format(&s, "<match length field incorrect: %u != %u>",
1546 match_len_, match_len);
1547 goto err;
1548 }
1549
db5a1019
AW
1550 return nx_match_to_string(ofpbuf_at(p, sizeof *omh, 0),
1551 match_len - sizeof *omh);
7623f4dd
SH
1552
1553err:
1554 return ds_steal_cstr(&s);
1555}
1556
178742f9
BP
1557void
1558nx_format_field_name(enum mf_field_id id, enum ofp_version version,
1559 struct ds *s)
1560{
1561 format_nxm_field_name(s, mf_oxm_header(id, version));
1562}
1563
f393f81e 1564static void
508a9338 1565format_nxm_field_name(struct ds *s, uint64_t header)
f393f81e 1566{
178742f9
BP
1567 const struct nxm_field *f = nxm_field_by_header(header);
1568 if (f) {
1569 ds_put_cstr(s, f->name);
1570 if (nxm_hasmask(header)) {
28da1f8f
BP
1571 ds_put_cstr(s, "_W");
1572 }
e729e793
JP
1573 } else if (header == NXM_NX_COOKIE) {
1574 ds_put_cstr(s, "NXM_NX_COOKIE");
1575 } else if (header == NXM_NX_COOKIE_W) {
1576 ds_put_cstr(s, "NXM_NX_COOKIE_W");
f393f81e 1577 } else {
c8058af7 1578 ds_put_format(s, "%d:%d", nxm_class(header), nxm_field(header));
f393f81e
BP
1579 }
1580}
1581
178742f9
BP
1582static bool
1583streq_len(const char *a, size_t a_len, const char *b)
1584{
1585 return strlen(b) == a_len && !memcmp(a, b, a_len);
1586}
1587
508a9338 1588static uint64_t
558d80cb 1589parse_nxm_field_name(const char *name, int name_len)
09246b99 1590{
178742f9 1591 const struct nxm_field *f;
28da1f8f 1592 bool wild;
28da1f8f 1593
178742f9
BP
1594 f = mf_parse_subfield_name(name, name_len, &wild);
1595 if (f) {
b5ae8913 1596 if (!wild) {
178742f9
BP
1597 return f->header;
1598 } else if (mf_from_id(f->id)->maskable != MFM_NONE) {
1599 return nxm_make_wild_header(f->header);
09246b99
BP
1600 }
1601 }
1602
178742f9
BP
1603 if (streq_len(name, name_len, "NXM_NX_COOKIE")) {
1604 return NXM_NX_COOKIE;
1605 } else if (streq_len(name, name_len, "NXM_NX_COOKIE_W")) {
1606 return NXM_NX_COOKIE_W;
e729e793
JP
1607 }
1608
508a9338 1609 /* Check whether it's a field header value as hex.
558d80cb
BP
1610 * (This isn't ordinarily useful except for testing error behavior.) */
1611 if (name_len == 8) {
508a9338 1612 uint64_t header;
0429d959
BP
1613 bool ok;
1614
508a9338 1615 header = hexits_value(name, name_len, &ok) << 32;
0429d959 1616 if (ok) {
558d80cb
BP
1617 return header;
1618 }
508a9338
BP
1619 } else if (name_len == 16) {
1620 uint64_t header;
1621 bool ok;
1622
1623 header = hexits_value(name, name_len, &ok);
1624 if (ok && is_experimenter_oxm(header)) {
1625 return header;
1626 }
558d80cb
BP
1627 }
1628
1629 return 0;
09246b99 1630}
09246b99
BP
1631\f
1632/* nx_match_from_string(). */
1633
7623f4dd
SH
1634static int
1635nx_match_from_string_raw(const char *s, struct ofpbuf *b)
09246b99
BP
1636{
1637 const char *full_s = s;
6fd6ed71 1638 const size_t start_len = b->size;
09246b99
BP
1639
1640 if (!strcmp(s, "<any>")) {
6fd6ed71 1641 /* Ensure that 'b->data' isn't actually null. */
09246b99
BP
1642 ofpbuf_prealloc_tailroom(b, 1);
1643 return 0;
1644 }
1645
1646 for (s += strspn(s, ", "); *s; s += strspn(s, ", ")) {
558d80cb 1647 const char *name;
508a9338 1648 uint64_t header;
00fe22f8 1649 ovs_be64 nw_header;
09246b99 1650 int name_len;
78090f63 1651 size_t n;
09246b99 1652
558d80cb 1653 name = s;
09246b99
BP
1654 name_len = strcspn(s, "(");
1655 if (s[name_len] != '(') {
1656 ovs_fatal(0, "%s: missing ( at end of nx_match", full_s);
1657 }
1658
558d80cb
BP
1659 header = parse_nxm_field_name(name, name_len);
1660 if (!header) {
09246b99
BP
1661 ovs_fatal(0, "%s: unknown field `%.*s'", full_s, name_len, s);
1662 }
1663
1664 s += name_len + 1;
1665
e659c96b 1666 b->header = ofpbuf_put_uninit(b, nxm_header_len(header));
78090f63
BP
1667 s = ofpbuf_put_hex(b, s, &n);
1668 if (n != nxm_field_bytes(header)) {
04f48a68 1669 const struct mf_field *field = mf_from_oxm_header(header, NULL);
00fe22f8
JG
1670
1671 if (field && field->variable_len) {
1672 if (n <= field->n_bytes) {
1673 int len = (nxm_hasmask(header) ? n * 2 : n) +
1674 nxm_experimenter_len(header);
1675
1676 header = NXM_HEADER(nxm_vendor(header), nxm_class(header),
1677 nxm_field(header),
1678 nxm_hasmask(header) ? 1 : 0, len);
1679 } else {
1680 ovs_fatal(0, "expected to read at most %d bytes but got "
1681 "%"PRIuSIZE, field->n_bytes, n);
1682 }
1683 } else {
1684 ovs_fatal(0, "expected to read %d bytes but got %"PRIuSIZE,
1685 nxm_field_bytes(header), n);
1686 }
78090f63 1687 }
00fe22f8 1688 nw_header = htonll(header);
e659c96b 1689 memcpy(b->header, &nw_header, nxm_header_len(header));
00fe22f8 1690
178742f9 1691 if (nxm_hasmask(header)) {
09246b99
BP
1692 s += strspn(s, " ");
1693 if (*s != '/') {
558d80cb
BP
1694 ovs_fatal(0, "%s: missing / in masked field %.*s",
1695 full_s, name_len, name);
09246b99 1696 }
78090f63
BP
1697 s = ofpbuf_put_hex(b, s + 1, &n);
1698 if (n != nxm_field_bytes(header)) {
1699 ovs_fatal(0, "%.2s: hex digits expected", s);
1700 }
09246b99
BP
1701 }
1702
1703 s += strspn(s, " ");
1704 if (*s != ')') {
558d80cb
BP
1705 ovs_fatal(0, "%s: missing ) following field %.*s",
1706 full_s, name_len, name);
09246b99
BP
1707 }
1708 s++;
1709 }
1710
6fd6ed71 1711 return b->size - start_len;
7623f4dd
SH
1712}
1713
1714int
1715nx_match_from_string(const char *s, struct ofpbuf *b)
1716{
1717 int match_len = nx_match_from_string_raw(s, b);
f6e984d7 1718 ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
7623f4dd
SH
1719 return match_len;
1720}
1721
1722int
1723oxm_match_from_string(const char *s, struct ofpbuf *b)
1724{
1725 int match_len;
1726 struct ofp11_match_header *omh;
6fd6ed71 1727 size_t start_len = b->size;
7623f4dd
SH
1728
1729 ofpbuf_put_uninit(b, sizeof *omh);
1730 match_len = nx_match_from_string_raw(s, b) + sizeof *omh;
f6e984d7 1731 ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
7623f4dd 1732
db5a1019 1733 omh = ofpbuf_at(b, start_len, sizeof *omh);
7623f4dd
SH
1734 omh->type = htons(OFPMT_OXM);
1735 omh->length = htons(match_len);
1736
09246b99
BP
1737 return match_len;
1738}
b6c9e612 1739\f
bdda5aca
BP
1740/* Parses 's' as a "move" action, in the form described in ovs-ofctl(8), into
1741 * '*move'.
1742 *
1743 * Returns NULL if successful, otherwise a malloc()'d string describing the
1744 * error. The caller is responsible for freeing the returned string. */
cab50449 1745char * OVS_WARN_UNUSED_RESULT
f25d0cf3 1746nxm_parse_reg_move(struct ofpact_reg_move *move, const char *s)
f393f81e
BP
1747{
1748 const char *full_s = s;
bdda5aca 1749 char *error;
f393f81e 1750
bdda5aca
BP
1751 error = mf_parse_subfield__(&move->src, &s);
1752 if (error) {
1753 return error;
1754 }
f393f81e 1755 if (strncmp(s, "->", 2)) {
bdda5aca 1756 return xasprintf("%s: missing `->' following source", full_s);
f393f81e
BP
1757 }
1758 s += 2;
bdda5aca
BP
1759 error = mf_parse_subfield(&move->dst, s);
1760 if (error) {
1761 return error;
f393f81e
BP
1762 }
1763
f25d0cf3 1764 if (move->src.n_bits != move->dst.n_bits) {
bdda5aca
BP
1765 return xasprintf("%s: source field is %d bits wide but destination is "
1766 "%d bits wide", full_s,
1767 move->src.n_bits, move->dst.n_bits);
f393f81e 1768 }
bdda5aca 1769 return NULL;
f393f81e 1770}
f393f81e 1771\f
7eb4b1f1 1772/* nxm_format_reg_move(). */
f393f81e 1773
f393f81e 1774void
f25d0cf3 1775nxm_format_reg_move(const struct ofpact_reg_move *move, struct ds *s)
f393f81e 1776{
b1c5bf1f 1777 ds_put_format(s, "%smove:%s", colors.special, colors.end);
f25d0cf3 1778 mf_format_subfield(&move->src, s);
b1c5bf1f 1779 ds_put_format(s, "%s->%s", colors.special, colors.end);
f25d0cf3 1780 mf_format_subfield(&move->dst, s);
f393f81e
BP
1781}
1782
f25d0cf3
BP
1783\f
1784enum ofperr
67210a55
JR
1785nxm_reg_move_check(const struct ofpact_reg_move *move,
1786 const struct match *match)
43edca57 1787{
90bf1e07 1788 enum ofperr error;
43edca57 1789
67210a55 1790 error = mf_check_src(&move->src, match);
43edca57
EJ
1791 if (error) {
1792 return error;
b6c9e612
BP
1793 }
1794
67210a55 1795 return mf_check_dst(&move->dst, match);
f25d0cf3 1796}
f25d0cf3 1797\f
7eb4b1f1 1798/* nxm_execute_reg_move(). */
b6c9e612 1799
816fd533 1800void
f25d0cf3 1801nxm_reg_load(const struct mf_subfield *dst, uint64_t src_data,
f74e7df7 1802 struct flow *flow, struct flow_wildcards *wc)
816fd533 1803{
9bab681f 1804 union mf_subvalue src_subvalue;
f74e7df7 1805 union mf_subvalue mask_value;
9bab681f 1806 ovs_be64 src_data_be = htonll(src_data);
f25d0cf3 1807
f74e7df7
JP
1808 memset(&mask_value, 0xff, sizeof mask_value);
1809 mf_write_subfield_flow(dst, &mask_value, &wc->masks);
1810
9bab681f
IY
1811 bitwise_copy(&src_data_be, sizeof src_data_be, 0,
1812 &src_subvalue, sizeof src_subvalue, 0,
1813 sizeof src_data_be * 8);
1814 mf_write_subfield_flow(dst, &src_subvalue, flow);
b6c9e612 1815}
bd85dac1
AZ
1816\f
1817/* nxm_parse_stack_action, works for both push() and pop(). */
bdda5aca
BP
1818
1819/* Parses 's' as a "push" or "pop" action, in the form described in
1820 * ovs-ofctl(8), into '*stack_action'.
1821 *
1822 * Returns NULL if successful, otherwise a malloc()'d string describing the
1823 * error. The caller is responsible for freeing the returned string. */
cab50449 1824char * OVS_WARN_UNUSED_RESULT
bd85dac1
AZ
1825nxm_parse_stack_action(struct ofpact_stack *stack_action, const char *s)
1826{
bdda5aca
BP
1827 char *error;
1828
1829 error = mf_parse_subfield__(&stack_action->subfield, &s);
1830 if (error) {
1831 return error;
1832 }
1833
bd85dac1 1834 if (*s != '\0') {
bdda5aca 1835 return xasprintf("%s: trailing garbage following push or pop", s);
bd85dac1 1836 }
bdda5aca
BP
1837
1838 return NULL;
bd85dac1
AZ
1839}
1840
1841void
1842nxm_format_stack_push(const struct ofpact_stack *push, struct ds *s)
1843{
b1c5bf1f 1844 ds_put_format(s, "%spush:%s", colors.param, colors.end);
bd85dac1
AZ
1845 mf_format_subfield(&push->subfield, s);
1846}
1847
1848void
1849nxm_format_stack_pop(const struct ofpact_stack *pop, struct ds *s)
1850{
b1c5bf1f 1851 ds_put_format(s, "%spop:%s", colors.param, colors.end);
bd85dac1
AZ
1852 mf_format_subfield(&pop->subfield, s);
1853}
1854
bd85dac1
AZ
1855enum ofperr
1856nxm_stack_push_check(const struct ofpact_stack *push,
67210a55 1857 const struct match *match)
bd85dac1 1858{
67210a55 1859 return mf_check_src(&push->subfield, match);
bd85dac1
AZ
1860}
1861
1862enum ofperr
1863nxm_stack_pop_check(const struct ofpact_stack *pop,
67210a55 1864 const struct match *match)
bd85dac1 1865{
67210a55 1866 return mf_check_dst(&pop->subfield, match);
bd85dac1
AZ
1867}
1868
84cf3c1f
JR
1869/* nxm_execute_stack_push(), nxm_execute_stack_pop().
1870 *
1871 * A stack is an ofpbuf with 'data' pointing to the bottom of the stack and
1872 * 'size' indexing the top of the stack. Each value of some byte length is
1873 * stored to the stack immediately followed by the length of the value as an
1874 * unsigned byte. This way a POP operation can first read the length byte, and
1875 * then the appropriate number of bytes from the stack. This also means that
1876 * it is only possible to traverse the stack from top to bottom. It is
1877 * possible, however, to push values also to the bottom of the stack, which is
1878 * useful when a stack has been serialized to a wire format in reverse order
1879 * (topmost value first).
1880 */
1881
1882/* Push value 'v' of length 'bytes' to the top of 'stack'. */
1883void
1884nx_stack_push(struct ofpbuf *stack, const void *v, uint8_t bytes)
bd85dac1 1885{
84cf3c1f
JR
1886 ofpbuf_put(stack, v, bytes);
1887 ofpbuf_put(stack, &bytes, sizeof bytes);
bd85dac1
AZ
1888}
1889
84cf3c1f
JR
1890/* Push value 'v' of length 'bytes' to the bottom of 'stack'. */
1891void
1892nx_stack_push_bottom(struct ofpbuf *stack, const void *v, uint8_t bytes)
bd85dac1 1893{
84cf3c1f
JR
1894 ofpbuf_push(stack, &bytes, sizeof bytes);
1895 ofpbuf_push(stack, v, bytes);
1896}
1f317cb5 1897
84cf3c1f
JR
1898/* Pop the topmost value from 'stack', returning a pointer to the value in the
1899 * stack and the length of the value in '*bytes'. In case of underflow a NULL
1900 * is returned and length is returned as zero via '*bytes'. */
1901void *
1902nx_stack_pop(struct ofpbuf *stack, uint8_t *bytes)
1903{
1904 if (!stack->size) {
1905 *bytes = 0;
1906 return NULL;
bd85dac1
AZ
1907 }
1908
84cf3c1f
JR
1909 stack->size -= sizeof *bytes;
1910 memcpy(bytes, ofpbuf_tail(stack), sizeof *bytes);
1911
1912 ovs_assert(stack->size >= *bytes);
1913 stack->size -= *bytes;
1914 return ofpbuf_tail(stack);
bd85dac1
AZ
1915}
1916
1917void
1918nxm_execute_stack_push(const struct ofpact_stack *push,
bcd2633a
JP
1919 const struct flow *flow, struct flow_wildcards *wc,
1920 struct ofpbuf *stack)
bd85dac1
AZ
1921{
1922 union mf_subvalue dst_value;
1923
84cf3c1f
JR
1924 mf_write_subfield_flow(&push->subfield,
1925 (union mf_subvalue *)&exact_match_mask,
1926 &wc->masks);
bcd2633a 1927
bd85dac1 1928 mf_read_subfield(&push->subfield, flow, &dst_value);
84cf3c1f
JR
1929 uint8_t bytes = DIV_ROUND_UP(push->subfield.n_bits, 8);
1930 nx_stack_push(stack, &dst_value.u8[sizeof dst_value - bytes], bytes);
bd85dac1
AZ
1931}
1932
2d9b49dd 1933bool
bd85dac1 1934nxm_execute_stack_pop(const struct ofpact_stack *pop,
f74e7df7
JP
1935 struct flow *flow, struct flow_wildcards *wc,
1936 struct ofpbuf *stack)
bd85dac1 1937{
84cf3c1f
JR
1938 uint8_t src_bytes;
1939 const void *src = nx_stack_pop(stack, &src_bytes);
84cf3c1f
JR
1940 if (src) {
1941 union mf_subvalue src_value;
1942 uint8_t dst_bytes = DIV_ROUND_UP(pop->subfield.n_bits, 8);
f74e7df7 1943
84cf3c1f
JR
1944 if (src_bytes < dst_bytes) {
1945 memset(&src_value.u8[sizeof src_value - dst_bytes], 0,
1946 dst_bytes - src_bytes);
1947 }
1948 memcpy(&src_value.u8[sizeof src_value - src_bytes], src, src_bytes);
1949 mf_write_subfield_flow(&pop->subfield,
1950 (union mf_subvalue *)&exact_match_mask,
1951 &wc->masks);
1952 mf_write_subfield_flow(&pop->subfield, &src_value, flow);
2d9b49dd 1953 return true;
bd85dac1 1954 } else {
2d9b49dd
BP
1955 /* Attempted to pop from an empty stack. */
1956 return false;
bd85dac1
AZ
1957 }
1958}
178742f9
BP
1959\f
1960/* Formats 'sf' into 's' in a format normally acceptable to
1961 * mf_parse_subfield(). (It won't be acceptable if sf->field is NULL or if
1962 * sf->field has no NXM name.) */
1963void
1964mf_format_subfield(const struct mf_subfield *sf, struct ds *s)
1965{
1966 if (!sf->field) {
1967 ds_put_cstr(s, "<unknown>");
1968 } else {
e6556fe3 1969 const struct nxm_field *f = nxm_field_by_mf_id(sf->field->id, 0);
178742f9
BP
1970 ds_put_cstr(s, f ? f->name : sf->field->name);
1971 }
1972
1973 if (sf->field && sf->ofs == 0 && sf->n_bits == sf->field->n_bits) {
1974 ds_put_cstr(s, "[]");
1975 } else if (sf->n_bits == 1) {
1976 ds_put_format(s, "[%d]", sf->ofs);
1977 } else {
1978 ds_put_format(s, "[%d..%d]", sf->ofs, sf->ofs + sf->n_bits - 1);
1979 }
1980}
1981
1982static const struct nxm_field *
1983mf_parse_subfield_name(const char *name, int name_len, bool *wild)
1984{
1985 *wild = name_len > 2 && !memcmp(&name[name_len - 2], "_W", 2);
1986 if (*wild) {
1987 name_len -= 2;
1988 }
1989
1990 return nxm_field_by_name(name, name_len);
1991}
1992
1993/* Parses a subfield from the beginning of '*sp' into 'sf'. If successful,
1994 * returns NULL and advances '*sp' to the first byte following the parsed
1995 * string. On failure, returns a malloc()'d error message, does not modify
1996 * '*sp', and does not properly initialize 'sf'.
1997 *
1998 * The syntax parsed from '*sp' takes the form "header[start..end]" where
1999 * 'header' is the name of an NXM field and 'start' and 'end' are (inclusive)
2000 * bit indexes. "..end" may be omitted to indicate a single bit. "start..end"
2001 * may both be omitted (the [] are still required) to indicate an entire
2002 * field. */
cab50449 2003char * OVS_WARN_UNUSED_RESULT
178742f9
BP
2004mf_parse_subfield__(struct mf_subfield *sf, const char **sp)
2005{
21b2fa61 2006 const struct mf_field *field = NULL;
178742f9
BP
2007 const struct nxm_field *f;
2008 const char *name;
2009 int start, end;
2010 const char *s;
2011 int name_len;
2012 bool wild;
2013
2014 s = *sp;
2015 name = s;
21b2fa61 2016 name_len = strcspn(s, "[-");
178742f9
BP
2017
2018 f = mf_parse_subfield_name(name, name_len, &wild);
21b2fa61
JR
2019 field = f ? mf_from_id(f->id) : mf_from_name_len(name, name_len);
2020 if (!field) {
178742f9
BP
2021 return xasprintf("%s: unknown field `%.*s'", *sp, name_len, s);
2022 }
178742f9
BP
2023
2024 s += name_len;
21b2fa61
JR
2025 /* Assume full field. */
2026 start = 0;
2027 end = field->n_bits - 1;
2028 if (*s == '[') {
2029 if (!strncmp(s, "[]", 2)) {
2030 /* Nothing to do. */
2031 } else if (ovs_scan(s, "[%d..%d]", &start, &end)) {
2032 /* Nothing to do. */
2033 } else if (ovs_scan(s, "[%d]", &start)) {
2034 end = start;
2035 } else {
2036 return xasprintf("%s: syntax error expecting [] or [<bit>] or "
2037 "[<start>..<end>]", *sp);
2038 }
2039 s = strchr(s, ']') + 1;
178742f9 2040 }
178742f9
BP
2041
2042 if (start > end) {
2043 return xasprintf("%s: starting bit %d is after ending bit %d",
2044 *sp, start, end);
2045 } else if (start >= field->n_bits) {
2046 return xasprintf("%s: starting bit %d is not valid because field is "
2047 "only %d bits wide", *sp, start, field->n_bits);
2048 } else if (end >= field->n_bits){
2049 return xasprintf("%s: ending bit %d is not valid because field is "
2050 "only %d bits wide", *sp, end, field->n_bits);
2051 }
2052
2053 sf->field = field;
2054 sf->ofs = start;
2055 sf->n_bits = end - start + 1;
2056
2057 *sp = s;
2058 return NULL;
2059}
2060
2061/* Parses a subfield from the entirety of 's' into 'sf'. Returns NULL if
2062 * successful, otherwise a malloc()'d string describing the error. The caller
2063 * is responsible for freeing the returned string.
2064 *
2065 * The syntax parsed from 's' takes the form "header[start..end]" where
2066 * 'header' is the name of an NXM field and 'start' and 'end' are (inclusive)
2067 * bit indexes. "..end" may be omitted to indicate a single bit. "start..end"
2068 * may both be omitted (the [] are still required) to indicate an entire
2069 * field. */
cab50449 2070char * OVS_WARN_UNUSED_RESULT
178742f9
BP
2071mf_parse_subfield(struct mf_subfield *sf, const char *s)
2072{
2073 char *error = mf_parse_subfield__(sf, &s);
2074 if (!error && s[0]) {
2075 error = xstrdup("unexpected input following field syntax");
2076 }
2077 return error;
2078}
2079\f
2080/* Returns an bitmap in which each bit corresponds to the like-numbered field
2081 * in the OFPXMC12_OPENFLOW_BASIC OXM class, in which the bit values are taken
2082 * from the 'fields' bitmap. Only fields defined in OpenFlow 'version' are
2083 * considered.
2084 *
2085 * This is useful for encoding OpenFlow 1.2 table stats messages. */
2086ovs_be64
2087oxm_bitmap_from_mf_bitmap(const struct mf_bitmap *fields,
2088 enum ofp_version version)
2089{
2090 uint64_t oxm_bitmap = 0;
2091 int i;
2092
2093 BITMAP_FOR_EACH_1 (i, MFF_N_IDS, fields->bm) {
508a9338 2094 uint64_t oxm = mf_oxm_header(i, version);
c8058af7 2095 uint32_t class = nxm_class(oxm);
178742f9
BP
2096 int field = nxm_field(oxm);
2097
c8058af7 2098 if (class == OFPXMC12_OPENFLOW_BASIC && field < 64) {
178742f9
BP
2099 oxm_bitmap |= UINT64_C(1) << field;
2100 }
2101 }
2102 return htonll(oxm_bitmap);
2103}
2104
2105/* Opposite conversion from oxm_bitmap_from_mf_bitmap().
2106 *
2107 * This is useful for decoding OpenFlow 1.2 table stats messages. */
2108struct mf_bitmap
2109oxm_bitmap_to_mf_bitmap(ovs_be64 oxm_bitmap, enum ofp_version version)
2110{
2111 struct mf_bitmap fields = MF_BITMAP_INITIALIZER;
2112
2113 for (enum mf_field_id id = 0; id < MFF_N_IDS; id++) {
e6556fe3
BP
2114 uint64_t oxm = mf_oxm_header(id, version);
2115 if (oxm && version >= nxm_field_by_header(oxm)->version) {
c8058af7 2116 uint32_t class = nxm_class(oxm);
178742f9
BP
2117 int field = nxm_field(oxm);
2118
c8058af7 2119 if (class == OFPXMC12_OPENFLOW_BASIC
178742f9
BP
2120 && field < 64
2121 && oxm_bitmap & htonll(UINT64_C(1) << field)) {
2122 bitmap_set1(fields.bm, id);
2123 }
2124 }
2125 }
2126 return fields;
2127}
2128
2129/* Returns a bitmap of fields that can be encoded in OXM and that can be
2130 * modified with a "set_field" action. */
2131struct mf_bitmap
2132oxm_writable_fields(void)
2133{
2134 struct mf_bitmap b = MF_BITMAP_INITIALIZER;
2135 int i;
2136
2137 for (i = 0; i < MFF_N_IDS; i++) {
2138 if (mf_oxm_header(i, 0) && mf_from_id(i)->writable) {
2139 bitmap_set1(b.bm, i);
2140 }
2141 }
2142 return b;
2143}
2144
2145/* Returns a bitmap of fields that can be encoded in OXM and that can be
2146 * matched in a flow table. */
2147struct mf_bitmap
2148oxm_matchable_fields(void)
2149{
2150 struct mf_bitmap b = MF_BITMAP_INITIALIZER;
2151 int i;
2152
2153 for (i = 0; i < MFF_N_IDS; i++) {
2154 if (mf_oxm_header(i, 0)) {
2155 bitmap_set1(b.bm, i);
2156 }
2157 }
2158 return b;
2159}
2160
2161/* Returns a bitmap of fields that can be encoded in OXM and that can be
2162 * matched in a flow table with an arbitrary bitmask. */
2163struct mf_bitmap
2164oxm_maskable_fields(void)
2165{
2166 struct mf_bitmap b = MF_BITMAP_INITIALIZER;
2167 int i;
2168
2169 for (i = 0; i < MFF_N_IDS; i++) {
2170 if (mf_oxm_header(i, 0) && mf_from_id(i)->maskable == MFM_FULLY) {
2171 bitmap_set1(b.bm, i);
2172 }
2173 }
2174 return b;
2175}
2176\f
2177struct nxm_field_index {
e6556fe3
BP
2178 struct hmap_node header_node; /* In nxm_header_map. */
2179 struct hmap_node name_node; /* In nxm_name_map. */
ca6ba700 2180 struct ovs_list mf_node; /* In mf_mf_map[nf.id]. */
e6556fe3 2181 const struct nxm_field nf;
178742f9
BP
2182};
2183
2184#include "nx-match.inc"
2185
2186static struct hmap nxm_header_map;
2187static struct hmap nxm_name_map;
ca6ba700 2188static struct ovs_list nxm_mf_map[MFF_N_IDS];
178742f9
BP
2189
2190static void
2191nxm_init(void)
2192{
2193 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
2194 if (ovsthread_once_start(&once)) {
2195 hmap_init(&nxm_header_map);
2196 hmap_init(&nxm_name_map);
e6556fe3 2197 for (int i = 0; i < MFF_N_IDS; i++) {
417e7e66 2198 ovs_list_init(&nxm_mf_map[i]);
e6556fe3 2199 }
178742f9
BP
2200 for (struct nxm_field_index *nfi = all_nxm_fields;
2201 nfi < &all_nxm_fields[ARRAY_SIZE(all_nxm_fields)]; nfi++) {
2202 hmap_insert(&nxm_header_map, &nfi->header_node,
899bb63d 2203 hash_uint64(nxm_no_len(nfi->nf.header)));
178742f9
BP
2204 hmap_insert(&nxm_name_map, &nfi->name_node,
2205 hash_string(nfi->nf.name, 0));
417e7e66 2206 ovs_list_push_back(&nxm_mf_map[nfi->nf.id], &nfi->mf_node);
178742f9
BP
2207 }
2208 ovsthread_once_done(&once);
2209 }
2210}
2211
2212static const struct nxm_field *
508a9338 2213nxm_field_by_header(uint64_t header)
178742f9
BP
2214{
2215 const struct nxm_field_index *nfi;
899bb63d 2216 uint64_t header_no_len;
178742f9
BP
2217
2218 nxm_init();
2219 if (nxm_hasmask(header)) {
2220 header = nxm_make_exact_header(header);
2221 }
2222
899bb63d
JG
2223 header_no_len = nxm_no_len(header);
2224
2225 HMAP_FOR_EACH_IN_BUCKET (nfi, header_node, hash_uint64(header_no_len),
178742f9 2226 &nxm_header_map) {
899bb63d
JG
2227 if (header_no_len == nxm_no_len(nfi->nf.header)) {
2228 if (nxm_length(header) == nxm_length(nfi->nf.header) ||
2229 mf_from_id(nfi->nf.id)->variable_len) {
2230 return &nfi->nf;
2231 } else {
2232 return NULL;
2233 }
178742f9
BP
2234 }
2235 }
2236 return NULL;
2237}
2238
2239static const struct nxm_field *
2240nxm_field_by_name(const char *name, size_t len)
2241{
2242 const struct nxm_field_index *nfi;
2243
2244 nxm_init();
2245 HMAP_FOR_EACH_WITH_HASH (nfi, name_node, hash_bytes(name, len, 0),
2246 &nxm_name_map) {
2247 if (strlen(nfi->nf.name) == len && !memcmp(nfi->nf.name, name, len)) {
2248 return &nfi->nf;
2249 }
2250 }
2251 return NULL;
2252}
2253
2254static const struct nxm_field *
e6556fe3 2255nxm_field_by_mf_id(enum mf_field_id id, enum ofp_version version)
178742f9 2256{
e6556fe3
BP
2257 const struct nxm_field_index *nfi;
2258 const struct nxm_field *f;
178742f9 2259
178742f9 2260 nxm_init();
178742f9 2261
e6556fe3
BP
2262 f = NULL;
2263 LIST_FOR_EACH (nfi, mf_node, &nxm_mf_map[id]) {
2264 if (!f || version >= nfi->nf.version) {
2265 f = &nfi->nf;
2266 }
2267 }
2268 return f;
2269}