]> git.proxmox.com Git - mirror_ovs.git/blame - lib/nx-match.h
Document OVN support in ovs-sandbox.
[mirror_ovs.git] / lib / nx-match.h
CommitLineData
09246b99 1/*
04f48a68 2 * Copyright (c) 2010-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#ifndef NX_MATCH_H
18#define NX_MATCH_H 1
19
20#include <stdint.h>
c979df05
BP
21#include <sys/types.h>
22#include <netinet/in.h>
bdda5aca 23#include "compiler.h"
e9358af6 24#include "flow.h"
064d7f84 25#include "openvswitch/meta-flow.h"
e03c096d 26#include "openvswitch/ofp-errors.h"
c979df05 27#include "openvswitch/types.h"
09246b99 28
f393f81e 29struct ds;
81a76618 30struct match;
f25d0cf3
BP
31struct ofpact_reg_move;
32struct ofpact_reg_load;
bd85dac1 33struct ofpact_stack;
09246b99 34struct ofpbuf;
b6c9e612
BP
35struct nx_action_reg_load;
36struct nx_action_reg_move;
aafee638 37struct vl_mff_map;
09246b99 38
bd85dac1 39
09246b99
BP
40/* Nicira Extended Match (NXM) flexible flow match helper functions.
41 *
42 * See include/openflow/nicira-ext.h for NXM specification.
43 */
44
178742f9
BP
45void mf_format_subfield(const struct mf_subfield *, struct ds *);
46char *mf_parse_subfield__(struct mf_subfield *sf, const char **s)
cab50449 47 OVS_WARN_UNUSED_RESULT;
178742f9 48char *mf_parse_subfield(struct mf_subfield *, const char *s)
cab50449 49 OVS_WARN_UNUSED_RESULT;
178742f9 50
9f6e20b7 51/* Decoding matches. */
90bf1e07 52enum ofperr nx_pull_match(struct ofpbuf *, unsigned int match_len,
81a76618 53 struct match *,
8d8ab6c2
JG
54 ovs_be64 *cookie, ovs_be64 *cookie_mask,
55 const struct tun_table *);
90bf1e07 56enum ofperr nx_pull_match_loose(struct ofpbuf *, unsigned int match_len,
81a76618 57 struct match *, ovs_be64 *cookie,
8d8ab6c2
JG
58 ovs_be64 *cookie_mask,
59 const struct tun_table *);
60enum ofperr oxm_pull_match(struct ofpbuf *, const struct tun_table *,
61 struct match *);
62enum ofperr oxm_pull_match_loose(struct ofpbuf *, const struct tun_table *,
63 struct match *);
7befb20d
JR
64enum ofperr oxm_decode_match_loose(const void *, size_t,
65 const struct tun_table *, struct match *);
bc65c25a
SH
66enum ofperr oxm_pull_field_array(const void *, size_t fields_len,
67 struct field_array *);
9f6e20b7
BP
68
69/* Encoding matches. */
81a76618 70int nx_put_match(struct ofpbuf *, const struct match *,
e729e793 71 ovs_be64 cookie, ovs_be64 cookie_mask);
9d84066c 72int oxm_put_match(struct ofpbuf *, const struct match *, enum ofp_version);
9f6e20b7 73void oxm_put_raw(struct ofpbuf *, const struct match *, enum ofp_version);
53eb84a5
SH
74void oxm_format_field_array(struct ds *, const struct field_array *);
75int oxm_put_field_array(struct ofpbuf *, const struct field_array *,
76 enum ofp_version version);
09246b99 77
178742f9
BP
78/* Decoding and encoding OXM/NXM headers (just a field ID) or entries (a field
79 * ID followed by a value and possibly a mask). */
04f48a68
YHW
80enum ofperr nx_pull_entry(struct ofpbuf *, const struct vl_mff_map *,
81 const struct mf_field **, union mf_value *value,
82 union mf_value *mask);
83enum ofperr nx_pull_header(struct ofpbuf *, const struct vl_mff_map *,
84 const struct mf_field **, bool *masked);
1cb20095
JG
85void nxm_put__(struct ofpbuf *b, enum mf_field_id field,
86 enum ofp_version version, const void *value,
87 const void *mask, size_t n_bytes);
04f48a68 88void nx_put_entry(struct ofpbuf *, const struct mf_field *, enum ofp_version,
178742f9
BP
89 const union mf_value *value, const union mf_value *mask);
90void nx_put_header(struct ofpbuf *, enum mf_field_id, enum ofp_version,
91 bool masked);
04f48a68
YHW
92void nx_put_mff_header(struct ofpbuf *, const struct mf_field *,
93 enum ofp_version, bool);
178742f9
BP
94
95/* NXM and OXM protocol headers values.
96 *
97 * These are often alternatives to nx_pull_entry/header() and
98 * nx_put_entry/header() for decoding and encoding OXM/NXM. In those cases,
99 * the nx_*() functions should be preferred because they can support the 64-bit
100 * "experimenter" OXM format (even though it is not yet implemented). */
508a9338 101uint32_t mf_nxm_header(enum mf_field_id);
04f48a68
YHW
102uint32_t nxm_header_from_mff(const struct mf_field *);
103const struct mf_field *mf_from_nxm_header(uint32_t nxm_header,
104 const struct vl_mff_map *);
178742f9 105
09246b99 106char *nx_match_to_string(const uint8_t *, unsigned int match_len);
db5a1019 107char *oxm_match_to_string(const struct ofpbuf *, unsigned int match_len);
09246b99 108int nx_match_from_string(const char *, struct ofpbuf *);
7623f4dd 109int oxm_match_from_string(const char *, struct ofpbuf *);
09246b99 110
178742f9
BP
111void nx_format_field_name(enum mf_field_id, enum ofp_version, struct ds *);
112
bdda5aca 113char *nxm_parse_reg_move(struct ofpact_reg_move *, const char *)
cab50449 114 OVS_WARN_UNUSED_RESULT;
f25d0cf3
BP
115
116void nxm_format_reg_move(const struct ofpact_reg_move *, struct ds *);
f393f81e 117
f25d0cf3 118enum ofperr nxm_reg_move_check(const struct ofpact_reg_move *,
67210a55 119 const struct match *);
b6c9e612 120
f25d0cf3 121void nxm_reg_load(const struct mf_subfield *, uint64_t src_data,
f74e7df7 122 struct flow *, struct flow_wildcards *);
b6c9e612 123
bdda5aca 124char *nxm_parse_stack_action(struct ofpact_stack *, const char *)
cab50449 125 OVS_WARN_UNUSED_RESULT;
bd85dac1
AZ
126
127void nxm_format_stack_push(const struct ofpact_stack *, struct ds *);
128void nxm_format_stack_pop(const struct ofpact_stack *, struct ds *);
129
bd85dac1 130enum ofperr nxm_stack_push_check(const struct ofpact_stack *,
67210a55 131 const struct match *);
bd85dac1 132enum ofperr nxm_stack_pop_check(const struct ofpact_stack *,
67210a55 133 const struct match *);
84cf3c1f
JR
134void nx_stack_push(struct ofpbuf *stack, const void *v, uint8_t bytes);
135void nx_stack_push_bottom(struct ofpbuf *stack, const void *v, uint8_t bytes);
136void *nx_stack_pop(struct ofpbuf *stack, uint8_t *bytes);
bd85dac1 137
bd85dac1 138void nxm_execute_stack_push(const struct ofpact_stack *,
bcd2633a
JP
139 const struct flow *, struct flow_wildcards *,
140 struct ofpbuf *);
2d9b49dd
BP
141bool nxm_execute_stack_pop(const struct ofpact_stack *,
142 struct flow *, struct flow_wildcards *,
143 struct ofpbuf *);
bd85dac1 144
178742f9
BP
145ovs_be64 oxm_bitmap_from_mf_bitmap(const struct mf_bitmap *, enum ofp_version);
146struct mf_bitmap oxm_bitmap_to_mf_bitmap(ovs_be64 oxm_bitmap,
147 enum ofp_version);
148struct mf_bitmap oxm_writable_fields(void);
149struct mf_bitmap oxm_matchable_fields(void);
150struct mf_bitmap oxm_maskable_fields(void);
4291acd2 151
816fd533 152/* Dealing with the 'ofs_nbits' members in several Nicira extensions. */
c979df05
BP
153
154static inline ovs_be16
155nxm_encode_ofs_nbits(int ofs, int n_bits)
156{
157 return htons((ofs << 6) | (n_bits - 1));
158}
159
160static inline int
161nxm_decode_ofs(ovs_be16 ofs_nbits)
162{
163 return ntohs(ofs_nbits) >> 6;
164}
165
166static inline int
167nxm_decode_n_bits(ovs_be16 ofs_nbits)
168{
169 return (ntohs(ofs_nbits) & 0x3f) + 1;
170}
171\f
2e4f5fcf
BP
172/* This is my guess at the length of a "typical" nx_match, for use in
173 * predicting space requirements. */
174#define NXM_TYPICAL_LEN 64
175
09246b99 176#endif /* nx-match.h */