nicira-ext: Add Nicira actions NXAST_STACK_PUSH and NXAST_STACK_POP.
[sliver-openvswitch.git] / lib / nx-match.h
1 /*
2  * Copyright (c) 2010, 2011, 2012 Nicira, Inc.
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>
21 #include <sys/types.h>
22 #include <netinet/in.h>
23 #include "flow.h"
24 #include "ofp-errors.h"
25 #include "openvswitch/types.h"
26
27 struct ds;
28 struct match;
29 struct mf_subfield;
30 struct ofpact_reg_move;
31 struct ofpact_reg_load;
32 struct ofpact_stack;
33 struct ofpbuf;
34 struct nx_action_reg_load;
35 struct nx_action_reg_move;
36
37
38 /* Nicira Extended Match (NXM) flexible flow match helper functions.
39  *
40  * See include/openflow/nicira-ext.h for NXM specification.
41  */
42
43 enum ofperr nx_pull_match(struct ofpbuf *, unsigned int match_len,
44                           struct match *,
45                           ovs_be64 *cookie, ovs_be64 *cookie_mask);
46 enum ofperr nx_pull_match_loose(struct ofpbuf *, unsigned int match_len,
47                                 struct match *, ovs_be64 *cookie,
48                                 ovs_be64 *cookie_mask);
49 enum ofperr oxm_pull_match(struct ofpbuf *, struct match *);
50 enum ofperr oxm_pull_match_loose(struct ofpbuf *, struct match *);
51 int nx_put_match(struct ofpbuf *, const struct match *,
52                  ovs_be64 cookie, ovs_be64 cookie_mask);
53 int oxm_put_match(struct ofpbuf *, const struct match *);
54
55 char *nx_match_to_string(const uint8_t *, unsigned int match_len);
56 char *oxm_match_to_string(const uint8_t *, unsigned int match_len);
57 int nx_match_from_string(const char *, struct ofpbuf *);
58 int oxm_match_from_string(const char *, struct ofpbuf *);
59
60 void nxm_parse_reg_move(struct ofpact_reg_move *, const char *);
61 void nxm_parse_reg_load(struct ofpact_reg_load *, const char *);
62
63 void nxm_format_reg_move(const struct ofpact_reg_move *, struct ds *);
64 void nxm_format_reg_load(const struct ofpact_reg_load *, struct ds *);
65
66 enum ofperr nxm_reg_move_from_openflow(const struct nx_action_reg_move *,
67                                        struct ofpbuf *ofpacts);
68 enum ofperr nxm_reg_load_from_openflow(const struct nx_action_reg_load *,
69                                        struct ofpbuf *ofpacts);
70 enum ofperr nxm_reg_load_from_openflow12_set_field(
71     const struct ofp12_action_set_field * oasf, struct ofpbuf *ofpacts);
72
73 enum ofperr nxm_reg_move_check(const struct ofpact_reg_move *,
74                                const struct flow *);
75 enum ofperr nxm_reg_load_check(const struct ofpact_reg_load *,
76                                const struct flow *);
77
78 void nxm_reg_move_to_nxast(const struct ofpact_reg_move *,
79                            struct ofpbuf *openflow);
80 void nxm_reg_load_to_nxast(const struct ofpact_reg_load *,
81                            struct ofpbuf *openflow);
82
83 void nxm_execute_reg_move(const struct ofpact_reg_move *, struct flow *);
84 void nxm_execute_reg_load(const struct ofpact_reg_load *, struct flow *);
85 void nxm_reg_load(const struct mf_subfield *, uint64_t src_data,
86                   struct flow *);
87
88 void nxm_parse_stack_action(struct ofpact_stack *, const char *);
89
90 void nxm_format_stack_push(const struct ofpact_stack *, struct ds *);
91 void nxm_format_stack_pop(const struct ofpact_stack *, struct ds *);
92
93 enum ofperr nxm_stack_push_from_openflow(const struct nx_action_stack *,
94                                        struct ofpbuf *ofpacts);
95 enum ofperr nxm_stack_pop_from_openflow(const struct nx_action_stack *,
96                                        struct ofpbuf *ofpacts);
97 enum ofperr nxm_stack_push_check(const struct ofpact_stack *,
98                                  const  struct flow *);
99 enum ofperr nxm_stack_pop_check(const struct ofpact_stack *,
100                                const struct flow *);
101
102 void nxm_stack_push_to_nxast(const struct ofpact_stack *,
103                            struct ofpbuf *openflow);
104 void nxm_stack_pop_to_nxast(const struct ofpact_stack *,
105                            struct ofpbuf *openflow);
106
107 void nxm_execute_stack_push(const struct ofpact_stack *,
108                             const struct flow *, struct ofpbuf *);
109 void nxm_execute_stack_pop(const struct ofpact_stack *,
110                             struct flow *, struct ofpbuf *);
111
112 int nxm_field_bytes(uint32_t header);
113 int nxm_field_bits(uint32_t header);
114
115 /* Dealing with the 'ofs_nbits' members in several Nicira extensions. */
116
117 static inline ovs_be16
118 nxm_encode_ofs_nbits(int ofs, int n_bits)
119 {
120     return htons((ofs << 6) | (n_bits - 1));
121 }
122
123 static inline int
124 nxm_decode_ofs(ovs_be16 ofs_nbits)
125 {
126     return ntohs(ofs_nbits) >> 6;
127 }
128
129 static inline int
130 nxm_decode_n_bits(ovs_be16 ofs_nbits)
131 {
132     return (ntohs(ofs_nbits) & 0x3f) + 1;
133 }
134 \f
135 /* This is my guess at the length of a "typical" nx_match, for use in
136  * predicting space requirements. */
137 #define NXM_TYPICAL_LEN 64
138
139 #endif /* nx-match.h */