netdev: Remove monitors and notifiers.
[sliver-openvswitch.git] / lib / ofp-util.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
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 OFP_UTIL_H
18 #define OFP_UTIL_H 1
19
20 #include <assert.h>
21 #include <stdbool.h>
22 #include <stddef.h>
23 #include <stdint.h>
24 #include "classifier.h"
25 #include "flow.h"
26 #include "openflow/nicira-ext.h"
27 #include "openvswitch/types.h"
28
29 struct cls_rule;
30 struct ofpbuf;
31
32 /* Basic decoding and length validation of OpenFlow messages. */
33 enum ofputil_msg_code {
34     OFPUTIL_INVALID,
35
36     /* OFPT_* messages. */
37     OFPUTIL_OFPT_HELLO,
38     OFPUTIL_OFPT_ERROR,
39     OFPUTIL_OFPT_ECHO_REQUEST,
40     OFPUTIL_OFPT_ECHO_REPLY,
41     OFPUTIL_OFPT_FEATURES_REQUEST,
42     OFPUTIL_OFPT_FEATURES_REPLY,
43     OFPUTIL_OFPT_GET_CONFIG_REQUEST,
44     OFPUTIL_OFPT_GET_CONFIG_REPLY,
45     OFPUTIL_OFPT_SET_CONFIG,
46     OFPUTIL_OFPT_PACKET_IN,
47     OFPUTIL_OFPT_FLOW_REMOVED,
48     OFPUTIL_OFPT_PORT_STATUS,
49     OFPUTIL_OFPT_PACKET_OUT,
50     OFPUTIL_OFPT_FLOW_MOD,
51     OFPUTIL_OFPT_PORT_MOD,
52     OFPUTIL_OFPT_BARRIER_REQUEST,
53     OFPUTIL_OFPT_BARRIER_REPLY,
54     OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST,
55     OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY,
56
57     /* OFPST_* stat requests. */
58     OFPUTIL_OFPST_DESC_REQUEST,
59     OFPUTIL_OFPST_FLOW_REQUEST,
60     OFPUTIL_OFPST_AGGREGATE_REQUEST,
61     OFPUTIL_OFPST_TABLE_REQUEST,
62     OFPUTIL_OFPST_PORT_REQUEST,
63     OFPUTIL_OFPST_QUEUE_REQUEST,
64
65     /* OFPST_* stat replies. */
66     OFPUTIL_OFPST_DESC_REPLY,
67     OFPUTIL_OFPST_FLOW_REPLY,
68     OFPUTIL_OFPST_QUEUE_REPLY,
69     OFPUTIL_OFPST_PORT_REPLY,
70     OFPUTIL_OFPST_TABLE_REPLY,
71     OFPUTIL_OFPST_AGGREGATE_REPLY,
72
73     /* NXT_* messages. */
74     OFPUTIL_NXT_ROLE_REQUEST,
75     OFPUTIL_NXT_ROLE_REPLY,
76     OFPUTIL_NXT_SET_FLOW_FORMAT,
77     OFPUTIL_NXT_FLOW_MOD_TABLE_ID,
78     OFPUTIL_NXT_FLOW_MOD,
79     OFPUTIL_NXT_FLOW_REMOVED,
80
81     /* NXST_* stat requests. */
82     OFPUTIL_NXST_FLOW_REQUEST,
83     OFPUTIL_NXST_AGGREGATE_REQUEST,
84
85     /* NXST_* stat replies. */
86     OFPUTIL_NXST_FLOW_REPLY,
87     OFPUTIL_NXST_AGGREGATE_REPLY
88 };
89
90 struct ofputil_msg_type;
91 int ofputil_decode_msg_type(const struct ofp_header *,
92                             const struct ofputil_msg_type **);
93 enum ofputil_msg_code ofputil_msg_type_code(const struct ofputil_msg_type *);
94 const char *ofputil_msg_type_name(const struct ofputil_msg_type *);
95
96 /* Converting OFPFW_NW_SRC_MASK and OFPFW_NW_DST_MASK wildcard bit counts to
97  * and from IP bitmasks. */
98 ovs_be32 ofputil_wcbits_to_netmask(int wcbits);
99 int ofputil_netmask_to_wcbits(ovs_be32 netmask);
100
101 /* Work with OpenFlow 1.0 ofp_match. */
102 void ofputil_cls_rule_from_match(const struct ofp_match *,
103                                  unsigned int priority, struct cls_rule *);
104 void ofputil_normalize_rule(struct cls_rule *, enum nx_flow_format);
105 void ofputil_cls_rule_to_match(const struct cls_rule *, struct ofp_match *);
106
107 /* dl_type translation between OpenFlow and 'struct flow' format. */
108 ovs_be16 ofputil_dl_type_to_openflow(ovs_be16 flow_dl_type);
109 ovs_be16 ofputil_dl_type_from_openflow(ovs_be16 ofp_dl_type);
110
111 /* Flow formats. */
112 bool ofputil_flow_format_is_valid(enum nx_flow_format);
113 const char *ofputil_flow_format_to_string(enum nx_flow_format);
114 int ofputil_flow_format_from_string(const char *);
115 enum nx_flow_format ofputil_min_flow_format(const struct cls_rule *);
116
117 struct ofpbuf *ofputil_make_set_flow_format(enum nx_flow_format);
118
119 /* NXT_FLOW_MOD_TABLE_ID extension. */
120 struct ofpbuf *ofputil_make_flow_mod_table_id(bool flow_mod_table_id);
121
122 /* Flow format independent flow_mod. */
123 struct flow_mod {
124     struct cls_rule cr;
125     ovs_be64 cookie;
126     uint8_t table_id;
127     uint16_t command;
128     uint16_t idle_timeout;
129     uint16_t hard_timeout;
130     uint32_t buffer_id;
131     uint16_t out_port;
132     uint16_t flags;
133     union ofp_action *actions;
134     size_t n_actions;
135 };
136
137 int ofputil_decode_flow_mod(struct flow_mod *, const struct ofp_header *,
138                             bool flow_mod_table_id);
139 struct ofpbuf *ofputil_encode_flow_mod(const struct flow_mod *,
140                                        enum nx_flow_format,
141                                        bool flow_mod_table_id);
142
143 /* Flow stats or aggregate stats request, independent of flow format. */
144 struct flow_stats_request {
145     bool aggregate;             /* Aggregate results? */
146     struct cls_rule match;
147     uint16_t out_port;
148     uint8_t table_id;
149 };
150
151 int ofputil_decode_flow_stats_request(struct flow_stats_request *,
152                                       const struct ofp_header *);
153 struct ofpbuf *ofputil_encode_flow_stats_request(
154     const struct flow_stats_request *, enum nx_flow_format);
155
156 /* Flow stats reply, independent of flow format. */
157 struct ofputil_flow_stats {
158     struct cls_rule rule;
159     ovs_be64 cookie;
160     uint8_t table_id;
161     uint32_t duration_sec;
162     uint32_t duration_nsec;
163     uint16_t idle_timeout;
164     uint16_t hard_timeout;
165     uint64_t packet_count;
166     uint64_t byte_count;
167     union ofp_action *actions;
168     size_t n_actions;
169 };
170
171 int ofputil_decode_flow_stats_reply(struct ofputil_flow_stats *,
172                                     struct ofpbuf *msg);
173
174 /* Flow removed message, independent of flow format. */
175 struct ofputil_flow_removed {
176     struct cls_rule rule;
177     ovs_be64 cookie;
178     uint8_t reason;             /* One of OFPRR_*. */
179     uint32_t duration_sec;
180     uint32_t duration_nsec;
181     uint16_t idle_timeout;
182     uint64_t packet_count;
183     uint64_t byte_count;
184 };
185
186 int ofputil_decode_flow_removed(struct ofputil_flow_removed *,
187                                 const struct ofp_header *);
188 struct ofpbuf *ofputil_encode_flow_removed(const struct ofputil_flow_removed *,
189                                            enum nx_flow_format);
190
191 /* Abstract packet-in message. */
192 struct ofputil_packet_in {
193     struct ofpbuf *packet;
194     uint16_t in_port;
195     uint8_t reason;             /* One of OFPR_*. */
196
197     uint32_t buffer_id;
198     int send_len;
199 };
200
201 struct ofpbuf *ofputil_encode_packet_in(const struct ofputil_packet_in *,
202                                         struct ofpbuf *rw_packet);
203
204 /* OpenFlow protocol utility functions. */
205 void *make_openflow(size_t openflow_len, uint8_t type, struct ofpbuf **);
206 void *make_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf **);
207
208 void *make_openflow_xid(size_t openflow_len, uint8_t type,
209                         ovs_be32 xid, struct ofpbuf **);
210 void *make_nxmsg_xid(size_t openflow_len, uint32_t subtype, ovs_be32 xid,
211                      struct ofpbuf **);
212
213 void *put_openflow(size_t openflow_len, uint8_t type, struct ofpbuf *);
214 void *put_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid,
215                        struct ofpbuf *);
216
217 void *put_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf *);
218 void *put_nxmsg_xid(size_t openflow_len, uint32_t subtype, ovs_be32 xid,
219                     struct ofpbuf *);
220
221 void update_openflow_length(struct ofpbuf *);
222
223 void *ofputil_make_stats_request(size_t body_len, uint16_t type,
224                                  struct ofpbuf **);
225 void *ofputil_make_nxstats_request(size_t openflow_len, uint32_t subtype,
226                                    struct ofpbuf **);
227
228 const void *ofputil_stats_body(const struct ofp_header *);
229 size_t ofputil_stats_body_len(const struct ofp_header *);
230
231 const void *ofputil_nxstats_body(const struct ofp_header *);
232 size_t ofputil_nxstats_body_len(const struct ofp_header *);
233
234 struct ofpbuf *make_flow_mod(uint16_t command, const struct cls_rule *,
235                              size_t actions_len);
236 struct ofpbuf *make_add_flow(const struct cls_rule *, uint32_t buffer_id,
237                              uint16_t max_idle, size_t actions_len);
238 struct ofpbuf *make_del_flow(const struct cls_rule *);
239 struct ofpbuf *make_add_simple_flow(const struct cls_rule *,
240                                     uint32_t buffer_id, uint16_t out_port,
241                                     uint16_t max_idle);
242 struct ofpbuf *make_packet_in(uint32_t buffer_id, uint16_t in_port,
243                               uint8_t reason,
244                               const struct ofpbuf *payload, int max_send_len);
245 struct ofpbuf *make_packet_out(const struct ofpbuf *packet, uint32_t buffer_id,
246                                uint16_t in_port,
247                                const struct ofp_action_header *,
248                                size_t n_actions);
249 struct ofpbuf *make_buffered_packet_out(uint32_t buffer_id,
250                                         uint16_t in_port, uint16_t out_port);
251 struct ofpbuf *make_unbuffered_packet_out(const struct ofpbuf *packet,
252                                           uint16_t in_port, uint16_t out_port);
253 struct ofpbuf *make_echo_request(void);
254 struct ofpbuf *make_echo_reply(const struct ofp_header *rq);
255 \f
256 /* Actions. */
257
258 #define OFP_ACTION_ALIGN 8      /* Alignment of ofp_actions. */
259
260 struct actions_iterator {
261     const union ofp_action *pos, *end;
262 };
263 const union ofp_action *actions_first(struct actions_iterator *,
264                                       const union ofp_action *,
265                                       size_t n_actions);
266 const union ofp_action *actions_next(struct actions_iterator *);
267
268 int validate_actions(const union ofp_action *, size_t n_actions,
269                      const struct flow *, int max_ports);
270 bool action_outputs_to_port(const union ofp_action *, ovs_be16 port);
271
272 int ofputil_pull_actions(struct ofpbuf *, unsigned int actions_len,
273                          union ofp_action **, size_t *);
274 \f
275 /* OpenFlow vendors.
276  *
277  * These functions map OpenFlow 32-bit vendor IDs (as used in struct
278  * ofp_vendor_header) into 4-bit values to embed in an "int".  The 4-bit values
279  * are only used internally in Open vSwitch and never appear on the wire, so
280  * particular codes used are not important.
281  */
282
283 /* Vendor error numbers currently used in Open vSwitch. */
284 #define OFPUTIL_VENDORS                                     \
285     /*             vendor name              vendor value */ \
286     OFPUTIL_VENDOR(OFPUTIL_VENDOR_OPENFLOW, 0x00000000)     \
287     OFPUTIL_VENDOR(OFPUTIL_VENDOR_NICIRA,   NX_VENDOR_ID)
288
289 /* OFPUTIL_VENDOR_* definitions. */
290 enum ofputil_vendor_codes {
291 #define OFPUTIL_VENDOR(NAME, VENDOR_ID) NAME,
292     OFPUTIL_VENDORS
293     OFPUTIL_N_VENDORS
294 #undef OFPUTIL_VENDOR
295 };
296 \f
297 /* Error codes.
298  *
299  * We embed system errno values and OpenFlow standard and vendor extension
300  * error codes into a single 31-bit space using the following encoding.
301  * (Bit 31 is unused and assumed 0 to avoid negative "int" values.)
302  *
303  *   30                                                   0
304  *  +------------------------------------------------------+
305  *  |                           0                          |  success
306  *  +------------------------------------------------------+
307  *
308  *   30 29                                                0
309  *  +--+---------------------------------------------------+
310  *  | 0|                    errno value                    |  errno value
311  *  +--+---------------------------------------------------+
312  *
313  *   30 29   26 25            16 15                       0
314  *  +--+-------+----------------+--------------------------+
315  *  | 1|   0   |      type      |           code           |  standard OpenFlow
316  *  +--+-------+----------------+--------------------------+  error
317  *
318  *   30 29   26 25            16 15                       0
319  *  +--+-------+----------------+--------------------------+  Nicira
320  *  | 1| vendor|      type      |           code           |  NXET_VENDOR
321  *  +--+-------+----------------+--------------------------+  error extension
322  *
323  * C and POSIX say that errno values are positive.  We assume that they are
324  * less than 2**29.  They are actually less than 65536 on at least Linux,
325  * FreeBSD, OpenBSD, and Windows.
326  *
327  * The 'vendor' field holds one of the OFPUTIL_VENDOR_* codes defined above.
328  * It must be nonzero.
329  *
330  * Negative values are not defined.
331  */
332
333 /* Currently 4 bits are allocated to the "vendor" field.  Make sure that all
334  * the vendor codes can fit. */
335 BUILD_ASSERT_DECL(OFPUTIL_N_VENDORS <= 16);
336
337 /* These are macro versions of the functions defined below.  The macro versions
338  * are intended for use in contexts where function calls are not allowed,
339  * e.g. static initializers and case labels. */
340 #define OFP_MKERR(TYPE, CODE) ((1 << 30) | ((TYPE) << 16) | (CODE))
341 #define OFP_MKERR_VENDOR(VENDOR, TYPE, CODE) \
342         ((1 << 30) | ((VENDOR) << 26) | ((TYPE) << 16) | (CODE))
343 #define OFP_MKERR_NICIRA(TYPE, CODE) \
344         OFP_MKERR_VENDOR(OFPUTIL_VENDOR_NICIRA, TYPE, CODE)
345
346 /* Returns the standard OpenFlow error with the specified 'type' and 'code' as
347  * an integer. */
348 static inline int
349 ofp_mkerr(uint16_t type, uint16_t code)
350 {
351     return OFP_MKERR(type, code);
352 }
353
354 /* Returns the OpenFlow vendor error with the specified 'vendor', 'type', and
355  * 'code' as an integer.  'vendor' must be an OFPUTIL_VENDOR_* constant. */
356 static inline int
357 ofp_mkerr_vendor(uint8_t vendor, uint16_t type, uint16_t code)
358 {
359     assert(vendor < OFPUTIL_N_VENDORS);
360     return OFP_MKERR_VENDOR(vendor, type, code);
361 }
362
363 /* Returns the OpenFlow vendor error with Nicira as vendor, with the specific
364  * 'type' and 'code', as an integer. */
365 static inline int
366 ofp_mkerr_nicira(uint16_t type, uint16_t code)
367 {
368     return OFP_MKERR_NICIRA(type, code);
369 }
370
371 /* Returns true if 'error' encodes an OpenFlow standard or vendor extension
372  * error codes as documented above. */
373 static inline bool
374 is_ofp_error(int error)
375 {
376     return (error & (1 << 30)) != 0;
377 }
378
379 /* Returns true if 'error' appears to be a system errno value. */
380 static inline bool
381 is_errno(int error)
382 {
383     return !is_ofp_error(error);
384 }
385
386 /* Returns the "vendor" part of the OpenFlow error code 'error' (which must be
387  * in the format explained above).  This is normally one of the
388  * OFPUTIL_VENDOR_* constants.  Returns OFPUTIL_VENDOR_OPENFLOW (0) for a
389  * standard OpenFlow error. */
390 static inline uint8_t
391 get_ofp_err_vendor(int error)
392 {
393     return (error >> 26) & 0xf;
394 }
395
396 /* Returns the "type" part of the OpenFlow error code 'error' (which must be in
397  * the format explained above). */
398 static inline uint16_t
399 get_ofp_err_type(int error)
400 {
401     return (error >> 16) & 0x3ff;
402 }
403
404 /* Returns the "code" part of the OpenFlow error code 'error' (which must be in
405  * the format explained above). */
406 static inline uint16_t
407 get_ofp_err_code(int error)
408 {
409     return error & 0xffff;
410 }
411
412 struct ofpbuf *ofputil_encode_error_msg(int error, const struct ofp_header *);
413 int ofputil_decode_error_msg(const struct ofp_header *, size_t *payload_ofs);
414
415 /* String versions of errors. */
416 void ofputil_format_error(struct ds *, int error);
417 char *ofputil_error_to_string(int error);
418
419 #endif /* ofp-util.h */