Better abstract OpenFlow error codes.
[sliver-openvswitch.git] / include / openflow / openflow.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 /* OpenFlow: protocol between controller and datapath. */
18
19 #ifndef OPENFLOW_OPENFLOW_H
20 #define OPENFLOW_OPENFLOW_H 1
21
22 #include "openvswitch/types.h"
23
24 #ifdef SWIG
25 #define OFP_ASSERT(EXPR)        /* SWIG can't handle OFP_ASSERT. */
26 #elif !defined(__cplusplus)
27 /* Build-time assertion for use in a declaration context. */
28 #define OFP_ASSERT(EXPR)                                                \
29         extern int (*build_assert(void))[ sizeof(struct {               \
30                     unsigned int build_assert_failed : (EXPR) ? 1 : -1; })]
31 #else /* __cplusplus */
32 #include <boost/static_assert.hpp>
33 #define OFP_ASSERT BOOST_STATIC_ASSERT
34 #endif /* __cplusplus */
35
36 /* Version number:
37  * Non-experimental versions released: 0x01
38  * Experimental versions released: 0x81 -- 0x99
39  */
40 /* The most significant bit being set in the version field indicates an
41  * experimental OpenFlow version.
42  */
43 #define OFP_VERSION   0x01
44 #define OFP10_VERSION 0x01
45
46 #define OFP_MAX_TABLE_NAME_LEN 32
47 #define OFP_MAX_PORT_NAME_LEN  16
48
49 #define OFP_TCP_PORT  6633
50 #define OFP_SSL_PORT  6633
51
52 #define OFP_ETH_ALEN 6          /* Bytes in an Ethernet address. */
53
54 /* Port numbering.  Physical ports are numbered starting from 1. */
55 enum ofp_port {
56     /* Maximum number of physical switch ports. */
57     OFPP_MAX = 0xff00,
58
59     /* Fake output "ports". */
60     OFPP_IN_PORT    = 0xfff8,  /* Send the packet out the input port.  This
61                                   virtual port must be explicitly used
62                                   in order to send back out of the input
63                                   port. */
64     OFPP_TABLE      = 0xfff9,  /* Perform actions in flow table.
65                                   NB: This can only be the destination
66                                   port for packet-out messages. */
67     OFPP_NORMAL     = 0xfffa,  /* Process with normal L2/L3 switching. */
68     OFPP_FLOOD      = 0xfffb,  /* All physical ports except input port and
69                                   those disabled by STP. */
70     OFPP_ALL        = 0xfffc,  /* All physical ports except input port. */
71     OFPP_CONTROLLER = 0xfffd,  /* Send to controller. */
72     OFPP_LOCAL      = 0xfffe,  /* Local openflow "port". */
73     OFPP_NONE       = 0xffff   /* Not associated with a physical port. */
74 };
75
76 enum ofp_type {
77     /* Immutable messages. */
78     OFPT_HELLO,               /* Symmetric message */
79     OFPT_ERROR,               /* Symmetric message */
80     OFPT_ECHO_REQUEST,        /* Symmetric message */
81     OFPT_ECHO_REPLY,          /* Symmetric message */
82     OFPT_VENDOR,              /* Symmetric message */
83
84     /* Switch configuration messages. */
85     OFPT_FEATURES_REQUEST,    /* Controller/switch message */
86     OFPT_FEATURES_REPLY,      /* Controller/switch message */
87     OFPT_GET_CONFIG_REQUEST,  /* Controller/switch message */
88     OFPT_GET_CONFIG_REPLY,    /* Controller/switch message */
89     OFPT_SET_CONFIG,          /* Controller/switch message */
90
91     /* Asynchronous messages. */
92     OFPT_PACKET_IN,           /* Async message */
93     OFPT_FLOW_REMOVED,        /* Async message */
94     OFPT_PORT_STATUS,         /* Async message */
95
96     /* Controller command messages. */
97     OFPT_PACKET_OUT,          /* Controller/switch message */
98     OFPT_FLOW_MOD,            /* Controller/switch message */
99     OFPT_PORT_MOD,            /* Controller/switch message */
100
101     /* Statistics messages. */
102     OFPT_STATS_REQUEST,       /* Controller/switch message */
103     OFPT_STATS_REPLY,         /* Controller/switch message */
104
105     /* Barrier messages. */
106     OFPT_BARRIER_REQUEST,     /* Controller/switch message */
107     OFPT_BARRIER_REPLY,       /* Controller/switch message */
108
109     /* Queue Configuration messages. */
110     OFPT_QUEUE_GET_CONFIG_REQUEST,  /* Controller/switch message */
111     OFPT_QUEUE_GET_CONFIG_REPLY     /* Controller/switch message */
112 };
113
114 /* Header on all OpenFlow packets. */
115 struct ofp_header {
116     uint8_t version;    /* OFP_VERSION. */
117     uint8_t type;       /* One of the OFPT_ constants. */
118     ovs_be16 length;    /* Length including this ofp_header. */
119     ovs_be32 xid;       /* Transaction id associated with this packet.
120                            Replies use the same id as was in the request
121                            to facilitate pairing. */
122 };
123 OFP_ASSERT(sizeof(struct ofp_header) == 8);
124
125 /* OFPT_HELLO.  This message has an empty body, but implementations must
126  * ignore any data included in the body, to allow for future extensions. */
127 struct ofp_hello {
128     struct ofp_header header;
129 };
130
131 #define OFP_DEFAULT_MISS_SEND_LEN   128
132
133 enum ofp_config_flags {
134     /* Handling of IP fragments. */
135     OFPC_FRAG_NORMAL   = 0,  /* No special handling for fragments. */
136     OFPC_FRAG_DROP     = 1,  /* Drop fragments. */
137     OFPC_FRAG_REASM    = 2,  /* Reassemble (only if OFPC_IP_REASM set). */
138     OFPC_FRAG_NX_MATCH = 3,  /* Make first fragments available for matching. */
139     OFPC_FRAG_MASK     = 3
140 };
141
142 /* Switch configuration. */
143 struct ofp_switch_config {
144     struct ofp_header header;
145     ovs_be16 flags;             /* OFPC_* flags. */
146     ovs_be16 miss_send_len;     /* Max bytes of new flow that datapath should
147                                    send to the controller. */
148 };
149 OFP_ASSERT(sizeof(struct ofp_switch_config) == 12);
150
151 /* Capabilities supported by the datapath. */
152 enum ofp_capabilities {
153     OFPC_FLOW_STATS     = 1 << 0,  /* Flow statistics. */
154     OFPC_TABLE_STATS    = 1 << 1,  /* Table statistics. */
155     OFPC_PORT_STATS     = 1 << 2,  /* Port statistics. */
156     OFPC_STP            = 1 << 3,  /* 802.1d spanning tree. */
157     OFPC_RESERVED       = 1 << 4,  /* Reserved, must not be set. */
158     OFPC_IP_REASM       = 1 << 5,  /* Can reassemble IP fragments. */
159     OFPC_QUEUE_STATS    = 1 << 6,  /* Queue statistics. */
160     OFPC_ARP_MATCH_IP   = 1 << 7   /* Match IP addresses in ARP
161                                       pkts. */
162 };
163
164 /* Flags to indicate behavior of the physical port.  These flags are
165  * used in ofp_phy_port to describe the current configuration.  They are
166  * used in the ofp_port_mod message to configure the port's behavior.
167  */
168 enum ofp_port_config {
169     OFPPC_PORT_DOWN    = 1 << 0,  /* Port is administratively down. */
170
171     OFPPC_NO_STP       = 1 << 1,  /* Disable 802.1D spanning tree on port. */
172     OFPPC_NO_RECV      = 1 << 2,  /* Drop all packets except 802.1D
173                                      spanning tree packets. */
174     OFPPC_NO_RECV_STP  = 1 << 3,  /* Drop received 802.1D STP packets. */
175     OFPPC_NO_FLOOD     = 1 << 4,  /* Do not include this port when flooding. */
176     OFPPC_NO_FWD       = 1 << 5,  /* Drop packets forwarded to port. */
177     OFPPC_NO_PACKET_IN = 1 << 6   /* Do not send packet-in msgs for port. */
178 };
179
180 /* Current state of the physical port.  These are not configurable from
181  * the controller.
182  */
183 enum ofp_port_state {
184     OFPPS_LINK_DOWN   = 1 << 0, /* No physical link present. */
185
186     /* The OFPPS_STP_* bits have no effect on switch operation.  The
187      * controller must adjust OFPPC_NO_RECV, OFPPC_NO_FWD, and
188      * OFPPC_NO_PACKET_IN appropriately to fully implement an 802.1D spanning
189      * tree. */
190     OFPPS_STP_LISTEN  = 0 << 8, /* Not learning or relaying frames. */
191     OFPPS_STP_LEARN   = 1 << 8, /* Learning but not relaying frames. */
192     OFPPS_STP_FORWARD = 2 << 8, /* Learning and relaying frames. */
193     OFPPS_STP_BLOCK   = 3 << 8, /* Not part of spanning tree. */
194     OFPPS_STP_MASK    = 3 << 8  /* Bit mask for OFPPS_STP_* values. */
195 };
196
197 /* Features of physical ports available in a datapath. */
198 enum ofp_port_features {
199     OFPPF_10MB_HD    = 1 << 0,  /* 10 Mb half-duplex rate support. */
200     OFPPF_10MB_FD    = 1 << 1,  /* 10 Mb full-duplex rate support. */
201     OFPPF_100MB_HD   = 1 << 2,  /* 100 Mb half-duplex rate support. */
202     OFPPF_100MB_FD   = 1 << 3,  /* 100 Mb full-duplex rate support. */
203     OFPPF_1GB_HD     = 1 << 4,  /* 1 Gb half-duplex rate support. */
204     OFPPF_1GB_FD     = 1 << 5,  /* 1 Gb full-duplex rate support. */
205     OFPPF_10GB_FD    = 1 << 6,  /* 10 Gb full-duplex rate support. */
206     OFPPF_COPPER     = 1 << 7,  /* Copper medium. */
207     OFPPF_FIBER      = 1 << 8,  /* Fiber medium. */
208     OFPPF_AUTONEG    = 1 << 9,  /* Auto-negotiation. */
209     OFPPF_PAUSE      = 1 << 10, /* Pause. */
210     OFPPF_PAUSE_ASYM = 1 << 11  /* Asymmetric pause. */
211 };
212
213 /* Description of a physical port */
214 struct ofp_phy_port {
215     ovs_be16 port_no;
216     uint8_t hw_addr[OFP_ETH_ALEN];
217     char name[OFP_MAX_PORT_NAME_LEN]; /* Null-terminated */
218
219     ovs_be32 config;        /* Bitmap of OFPPC_* flags. */
220     ovs_be32 state;         /* Bitmap of OFPPS_* flags. */
221
222     /* Bitmaps of OFPPF_* that describe features.  All bits zeroed if
223      * unsupported or unavailable. */
224     ovs_be32 curr;          /* Current features. */
225     ovs_be32 advertised;    /* Features being advertised by the port. */
226     ovs_be32 supported;     /* Features supported by the port. */
227     ovs_be32 peer;          /* Features advertised by peer. */
228 };
229 OFP_ASSERT(sizeof(struct ofp_phy_port) == 48);
230
231 /* Switch features. */
232 struct ofp_switch_features {
233     struct ofp_header header;
234     ovs_be64 datapath_id;   /* Datapath unique ID.  The lower 48-bits are for
235                                a MAC address, while the upper 16-bits are
236                                implementer-defined. */
237
238     ovs_be32 n_buffers;     /* Max packets buffered at once. */
239
240     uint8_t n_tables;       /* Number of tables supported by datapath. */
241     uint8_t pad[3];         /* Align to 64-bits. */
242
243     /* Features. */
244     ovs_be32 capabilities;  /* Bitmap of support "ofp_capabilities". */
245     ovs_be32 actions;       /* Bitmap of supported "ofp_action_type"s. */
246
247     /* Port info.*/
248     struct ofp_phy_port ports[0];  /* Port definitions.  The number of ports
249                                       is inferred from the length field in
250                                       the header. */
251 };
252 OFP_ASSERT(sizeof(struct ofp_switch_features) == 32);
253
254 /* What changed about the physical port */
255 enum ofp_port_reason {
256     OFPPR_ADD,              /* The port was added. */
257     OFPPR_DELETE,           /* The port was removed. */
258     OFPPR_MODIFY            /* Some attribute of the port has changed. */
259 };
260
261 /* A physical port has changed in the datapath */
262 struct ofp_port_status {
263     struct ofp_header header;
264     uint8_t reason;          /* One of OFPPR_*. */
265     uint8_t pad[7];          /* Align to 64-bits. */
266     struct ofp_phy_port desc;
267 };
268 OFP_ASSERT(sizeof(struct ofp_port_status) == 64);
269
270 /* Modify behavior of the physical port */
271 struct ofp_port_mod {
272     struct ofp_header header;
273     ovs_be16 port_no;
274     uint8_t hw_addr[OFP_ETH_ALEN]; /* The hardware address is not
275                                       configurable.  This is used to
276                                       sanity-check the request, so it must
277                                       be the same as returned in an
278                                       ofp_phy_port struct. */
279
280     ovs_be32 config;        /* Bitmap of OFPPC_* flags. */
281     ovs_be32 mask;          /* Bitmap of OFPPC_* flags to be changed. */
282
283     ovs_be32 advertise;     /* Bitmap of "ofp_port_features"s.  Zero all
284                                bits to prevent any action taking place. */
285     uint8_t pad[4];         /* Pad to 64-bits. */
286 };
287 OFP_ASSERT(sizeof(struct ofp_port_mod) == 32);
288
289 /* Why is this packet being sent to the controller? */
290 enum ofp_packet_in_reason {
291     OFPR_NO_MATCH,          /* No matching flow. */
292     OFPR_ACTION             /* Action explicitly output to controller. */
293 };
294
295 /* Packet received on port (datapath -> controller). */
296 struct ofp_packet_in {
297     struct ofp_header header;
298     ovs_be32 buffer_id;     /* ID assigned by datapath. */
299     ovs_be16 total_len;     /* Full length of frame. */
300     ovs_be16 in_port;       /* Port on which frame was received. */
301     uint8_t reason;         /* Reason packet is being sent (one of OFPR_*) */
302     uint8_t pad;
303     uint8_t data[0];        /* Ethernet frame, halfway through 32-bit word,
304                                so the IP header is 32-bit aligned.  The
305                                amount of data is inferred from the length
306                                field in the header.  Because of padding,
307                                offsetof(struct ofp_packet_in, data) ==
308                                sizeof(struct ofp_packet_in) - 2. */
309 };
310 OFP_ASSERT(sizeof(struct ofp_packet_in) == 20);
311
312 enum ofp_action_type {
313     OFPAT_OUTPUT,           /* Output to switch port. */
314     OFPAT_SET_VLAN_VID,     /* Set the 802.1q VLAN id. */
315     OFPAT_SET_VLAN_PCP,     /* Set the 802.1q priority. */
316     OFPAT_STRIP_VLAN,       /* Strip the 802.1q header. */
317     OFPAT_SET_DL_SRC,       /* Ethernet source address. */
318     OFPAT_SET_DL_DST,       /* Ethernet destination address. */
319     OFPAT_SET_NW_SRC,       /* IP source address. */
320     OFPAT_SET_NW_DST,       /* IP destination address. */
321     OFPAT_SET_NW_TOS,       /* IP ToS (DSCP field, 6 bits). */
322     OFPAT_SET_TP_SRC,       /* TCP/UDP source port. */
323     OFPAT_SET_TP_DST,       /* TCP/UDP destination port. */
324     OFPAT_ENQUEUE,          /* Output to queue. */
325     OFPAT_VENDOR = 0xffff
326 };
327
328 /* Action structure for OFPAT_OUTPUT, which sends packets out 'port'.
329  * When the 'port' is the OFPP_CONTROLLER, 'max_len' indicates the max
330  * number of bytes to send.  A 'max_len' of zero means no bytes of the
331  * packet should be sent. */
332 struct ofp_action_output {
333     ovs_be16 type;                  /* OFPAT_OUTPUT. */
334     ovs_be16 len;                   /* Length is 8. */
335     ovs_be16 port;                  /* Output port. */
336     ovs_be16 max_len;               /* Max length to send to controller. */
337 };
338 OFP_ASSERT(sizeof(struct ofp_action_output) == 8);
339
340 /* The VLAN id is 12 bits, so we can use the entire 16 bits to indicate
341  * special conditions.  All ones is used to match that no VLAN id was
342  * set. */
343 #define OFP_VLAN_NONE      0xffff
344
345 /* Action structure for OFPAT_SET_VLAN_VID. */
346 struct ofp_action_vlan_vid {
347     ovs_be16 type;                  /* OFPAT_SET_VLAN_VID. */
348     ovs_be16 len;                   /* Length is 8. */
349     ovs_be16 vlan_vid;              /* VLAN id. */
350     uint8_t pad[2];
351 };
352 OFP_ASSERT(sizeof(struct ofp_action_vlan_vid) == 8);
353
354 /* Action structure for OFPAT_SET_VLAN_PCP. */
355 struct ofp_action_vlan_pcp {
356     ovs_be16 type;                  /* OFPAT_SET_VLAN_PCP. */
357     ovs_be16 len;                   /* Length is 8. */
358     uint8_t vlan_pcp;               /* VLAN priority. */
359     uint8_t pad[3];
360 };
361 OFP_ASSERT(sizeof(struct ofp_action_vlan_pcp) == 8);
362
363 /* Action structure for OFPAT_SET_DL_SRC/DST. */
364 struct ofp_action_dl_addr {
365     ovs_be16 type;                  /* OFPAT_SET_DL_SRC/DST. */
366     ovs_be16 len;                   /* Length is 16. */
367     uint8_t dl_addr[OFP_ETH_ALEN];  /* Ethernet address. */
368     uint8_t pad[6];
369 };
370 OFP_ASSERT(sizeof(struct ofp_action_dl_addr) == 16);
371
372 /* Action structure for OFPAT_SET_NW_SRC/DST. */
373 struct ofp_action_nw_addr {
374     ovs_be16 type;                  /* OFPAT_SET_TW_SRC/DST. */
375     ovs_be16 len;                   /* Length is 8. */
376     ovs_be32 nw_addr;               /* IP address. */
377 };
378 OFP_ASSERT(sizeof(struct ofp_action_nw_addr) == 8);
379
380 /* Action structure for OFPAT_SET_NW_TOS. */
381 struct ofp_action_nw_tos {
382     ovs_be16 type;                  /* OFPAT_SET_TW_TOS. */
383     ovs_be16 len;                   /* Length is 8. */
384     uint8_t nw_tos;                 /* IP TOS (DSCP field, 6 bits). */
385     uint8_t pad[3];
386 };
387 OFP_ASSERT(sizeof(struct ofp_action_nw_tos) == 8);
388
389 /* Action structure for OFPAT_SET_TP_SRC/DST. */
390 struct ofp_action_tp_port {
391     ovs_be16 type;                  /* OFPAT_SET_TP_SRC/DST. */
392     ovs_be16 len;                   /* Length is 8. */
393     ovs_be16 tp_port;               /* TCP/UDP port. */
394     uint8_t pad[2];
395 };
396 OFP_ASSERT(sizeof(struct ofp_action_tp_port) == 8);
397
398 /* Action header for OFPAT_VENDOR. The rest of the body is vendor-defined. */
399 struct ofp_action_vendor_header {
400     ovs_be16 type;                  /* OFPAT_VENDOR. */
401     ovs_be16 len;                   /* Length is a multiple of 8. */
402     ovs_be32 vendor;                /* Vendor ID, which takes the same form
403                                        as in "struct ofp_vendor_header". */
404 };
405 OFP_ASSERT(sizeof(struct ofp_action_vendor_header) == 8);
406
407 /* Action header that is common to all actions.  The length includes the
408  * header and any padding used to make the action 64-bit aligned.
409  * NB: The length of an action *must* always be a multiple of eight. */
410 struct ofp_action_header {
411     ovs_be16 type;                  /* One of OFPAT_*. */
412     ovs_be16 len;                   /* Length of action, including this
413                                        header.  This is the length of action,
414                                        including any padding to make it
415                                        64-bit aligned. */
416     uint8_t pad[4];
417 };
418 OFP_ASSERT(sizeof(struct ofp_action_header) == 8);
419
420 /* OFPAT_ENQUEUE action struct: send packets to given queue on port. */
421 struct ofp_action_enqueue {
422     ovs_be16 type;            /* OFPAT_ENQUEUE. */
423     ovs_be16 len;             /* Len is 16. */
424     ovs_be16 port;            /* Port that queue belongs. Should
425                                  refer to a valid physical port
426                                  (i.e. < OFPP_MAX) or OFPP_IN_PORT. */
427     uint8_t pad[6];           /* Pad for 64-bit alignment. */
428     ovs_be32 queue_id;        /* Where to enqueue the packets. */
429 };
430 OFP_ASSERT(sizeof(struct ofp_action_enqueue) == 16);
431
432 union ofp_action {
433     ovs_be16 type;
434     struct ofp_action_header header;
435     struct ofp_action_vendor_header vendor;
436     struct ofp_action_output output;
437     struct ofp_action_vlan_vid vlan_vid;
438     struct ofp_action_vlan_pcp vlan_pcp;
439     struct ofp_action_nw_addr nw_addr;
440     struct ofp_action_nw_tos nw_tos;
441     struct ofp_action_tp_port tp_port;
442 };
443 OFP_ASSERT(sizeof(union ofp_action) == 8);
444
445 /* Send packet (controller -> datapath). */
446 struct ofp_packet_out {
447     struct ofp_header header;
448     ovs_be32 buffer_id;           /* ID assigned by datapath (-1 if none). */
449     ovs_be16 in_port;             /* Packet's input port (OFPP_NONE if none). */
450     ovs_be16 actions_len;         /* Size of action array in bytes. */
451     struct ofp_action_header actions[0]; /* Actions. */
452     /* uint8_t data[0]; */        /* Packet data.  The length is inferred
453                                      from the length field in the header.
454                                      (Only meaningful if buffer_id == -1.) */
455 };
456 OFP_ASSERT(sizeof(struct ofp_packet_out) == 16);
457
458 enum ofp_flow_mod_command {
459     OFPFC_ADD,              /* New flow. */
460     OFPFC_MODIFY,           /* Modify all matching flows. */
461     OFPFC_MODIFY_STRICT,    /* Modify entry strictly matching wildcards */
462     OFPFC_DELETE,           /* Delete all matching flows. */
463     OFPFC_DELETE_STRICT     /* Strictly match wildcards and priority. */
464 };
465
466 /* Flow wildcards. */
467 enum ofp_flow_wildcards {
468     OFPFW_IN_PORT    = 1 << 0,  /* Switch input port. */
469     OFPFW_DL_VLAN    = 1 << 1,  /* VLAN vid. */
470     OFPFW_DL_SRC     = 1 << 2,  /* Ethernet source address. */
471     OFPFW_DL_DST     = 1 << 3,  /* Ethernet destination address. */
472     OFPFW_DL_TYPE    = 1 << 4,  /* Ethernet frame type. */
473     OFPFW_NW_PROTO   = 1 << 5,  /* IP protocol. */
474     OFPFW_TP_SRC     = 1 << 6,  /* TCP/UDP source port. */
475     OFPFW_TP_DST     = 1 << 7,  /* TCP/UDP destination port. */
476
477     /* IP source address wildcard bit count.  0 is exact match, 1 ignores the
478      * LSB, 2 ignores the 2 least-significant bits, ..., 32 and higher wildcard
479      * the entire field.  This is the *opposite* of the usual convention where
480      * e.g. /24 indicates that 8 bits (not 24 bits) are wildcarded. */
481     OFPFW_NW_SRC_SHIFT = 8,
482     OFPFW_NW_SRC_BITS = 6,
483     OFPFW_NW_SRC_MASK = ((1 << OFPFW_NW_SRC_BITS) - 1) << OFPFW_NW_SRC_SHIFT,
484     OFPFW_NW_SRC_ALL = 32 << OFPFW_NW_SRC_SHIFT,
485
486     /* IP destination address wildcard bit count.  Same format as source. */
487     OFPFW_NW_DST_SHIFT = 14,
488     OFPFW_NW_DST_BITS = 6,
489     OFPFW_NW_DST_MASK = ((1 << OFPFW_NW_DST_BITS) - 1) << OFPFW_NW_DST_SHIFT,
490     OFPFW_NW_DST_ALL = 32 << OFPFW_NW_DST_SHIFT,
491
492     OFPFW_DL_VLAN_PCP = 1 << 20, /* VLAN priority. */
493     OFPFW_NW_TOS = 1 << 21, /* IP ToS (DSCP field, 6 bits). */
494
495     /* Wildcard all fields. */
496     OFPFW_ALL = ((1 << 22) - 1)
497 };
498
499 /* The wildcards for ICMP type and code fields use the transport source
500  * and destination port fields, respectively. */
501 #define OFPFW_ICMP_TYPE OFPFW_TP_SRC
502 #define OFPFW_ICMP_CODE OFPFW_TP_DST
503
504 /* Values below this cutoff are 802.3 packets and the two bytes
505  * following MAC addresses are used as a frame length.  Otherwise, the
506  * two bytes are used as the Ethernet type.
507  */
508 #define OFP_DL_TYPE_ETH2_CUTOFF   0x0600
509
510 /* Value of dl_type to indicate that the frame does not include an
511  * Ethernet type.
512  */
513 #define OFP_DL_TYPE_NOT_ETH_TYPE  0x05ff
514
515 /* The VLAN id is 12-bits, so we can use the entire 16 bits to indicate
516  * special conditions.  All ones indicates that no VLAN id was set.
517  */
518 #define OFP_VLAN_NONE      0xffff
519
520 /* Fields to match against flows */
521 struct ofp_match {
522     ovs_be32 wildcards;        /* Wildcard fields. */
523     ovs_be16 in_port;          /* Input switch port. */
524     uint8_t dl_src[OFP_ETH_ALEN]; /* Ethernet source address. */
525     uint8_t dl_dst[OFP_ETH_ALEN]; /* Ethernet destination address. */
526     ovs_be16 dl_vlan;          /* Input VLAN. */
527     uint8_t dl_vlan_pcp;       /* Input VLAN priority. */
528     uint8_t pad1[1];           /* Align to 64-bits. */
529     ovs_be16 dl_type;          /* Ethernet frame type. */
530     uint8_t nw_tos;            /* IP ToS (DSCP field, 6 bits). */
531     uint8_t nw_proto;          /* IP protocol or lower 8 bits of
532                                   ARP opcode. */
533     uint8_t pad2[2];           /* Align to 64-bits. */
534     ovs_be32 nw_src;           /* IP source address. */
535     ovs_be32 nw_dst;           /* IP destination address. */
536     ovs_be16 tp_src;           /* TCP/UDP source port. */
537     ovs_be16 tp_dst;           /* TCP/UDP destination port. */
538 };
539 OFP_ASSERT(sizeof(struct ofp_match) == 40);
540
541 /* Value used in "idle_timeout" and "hard_timeout" to indicate that the entry
542  * is permanent. */
543 #define OFP_FLOW_PERMANENT 0
544
545 /* By default, choose a priority in the middle. */
546 #define OFP_DEFAULT_PRIORITY 0x8000
547
548 enum ofp_flow_mod_flags {
549     OFPFF_SEND_FLOW_REM = 1 << 0,  /* Send flow removed message when flow
550                                     * expires or is deleted. */
551     OFPFF_CHECK_OVERLAP = 1 << 1,  /* Check for overlapping entries first. */
552     OFPFF_EMERG         = 1 << 2   /* Ramark this is for emergency. */
553 };
554
555 /* Flow setup and teardown (controller -> datapath). */
556 struct ofp_flow_mod {
557     struct ofp_header header;
558     struct ofp_match match;      /* Fields to match */
559     ovs_be64 cookie;             /* Opaque controller-issued identifier. */
560
561     /* Flow actions. */
562     ovs_be16 command;             /* One of OFPFC_*. */
563     ovs_be16 idle_timeout;        /* Idle time before discarding (seconds). */
564     ovs_be16 hard_timeout;        /* Max time before discarding (seconds). */
565     ovs_be16 priority;            /* Priority level of flow entry. */
566     ovs_be32 buffer_id;           /* Buffered packet to apply to (or -1).
567                                      Not meaningful for OFPFC_DELETE*. */
568     ovs_be16 out_port;            /* For OFPFC_DELETE* commands, require
569                                      matching entries to include this as an
570                                      output port.  A value of OFPP_NONE
571                                      indicates no restriction. */
572     ovs_be16 flags;               /* One of OFPFF_*. */
573     struct ofp_action_header actions[0]; /* The action length is inferred
574                                             from the length field in the
575                                             header. */
576 };
577 OFP_ASSERT(sizeof(struct ofp_flow_mod) == 72);
578
579 /* Why was this flow removed? */
580 enum ofp_flow_removed_reason {
581     OFPRR_IDLE_TIMEOUT,         /* Flow idle time exceeded idle_timeout. */
582     OFPRR_HARD_TIMEOUT,         /* Time exceeded hard_timeout. */
583     OFPRR_DELETE                /* Evicted by a DELETE flow mod. */
584 };
585
586 /* Flow removed (datapath -> controller). */
587 struct ofp_flow_removed {
588     struct ofp_header header;
589     struct ofp_match match;   /* Description of fields. */
590     ovs_be64 cookie;          /* Opaque controller-issued identifier. */
591
592     ovs_be16 priority;        /* Priority level of flow entry. */
593     uint8_t reason;           /* One of OFPRR_*. */
594     uint8_t pad[1];           /* Align to 32-bits. */
595
596     ovs_be32 duration_sec;    /* Time flow was alive in seconds. */
597     ovs_be32 duration_nsec;   /* Time flow was alive in nanoseconds beyond
598                                  duration_sec. */
599     ovs_be16 idle_timeout;    /* Idle timeout from original flow mod. */
600     uint8_t pad2[2];          /* Align to 64-bits. */
601     ovs_be64 packet_count;
602     ovs_be64 byte_count;
603 };
604 OFP_ASSERT(sizeof(struct ofp_flow_removed) == 88);
605
606 /* OFPT_ERROR: Error message (datapath -> controller). */
607 struct ofp_error_msg {
608     struct ofp_header header;
609
610     ovs_be16 type;
611     ovs_be16 code;
612     uint8_t data[0];          /* Variable-length data.  Interpreted based
613                                  on the type and code. */
614 };
615 OFP_ASSERT(sizeof(struct ofp_error_msg) == 12);
616
617 enum ofp_stats_types {
618     /* Description of this OpenFlow switch.
619      * The request is struct ofp_stats_msg.
620      * The reply is struct ofp_desc_stats. */
621     OFPST_DESC,
622
623     /* Individual flow statistics.
624      * The request is struct ofp_flow_stats_request.
625      * The reply body is an array of struct ofp_flow_stats. */
626     OFPST_FLOW,
627
628     /* Aggregate flow statistics.
629      * The request is struct ofp_flow_stats_request.
630      * The reply is struct ofp_aggregate_stats_reply. */
631     OFPST_AGGREGATE,
632
633     /* Flow table statistics.
634      * The request is struct ofp_stats_msg.
635      * The reply body is an array of struct ofp_table_stats. */
636     OFPST_TABLE,
637
638     /* Physical port statistics.
639      * The request is struct ofp_port_stats_request.
640      * The reply body is an array of struct ofp_port_stats. */
641     OFPST_PORT,
642
643     /* Queue statistics for a port.
644      * The request body is struct ofp_queue_stats_request.
645      * The reply body is an array of struct ofp_queue_stats. */
646     OFPST_QUEUE,
647
648     /* Vendor extension.
649      * The request and reply begin with "struct ofp_vendor_stats". */
650     OFPST_VENDOR = 0xffff
651 };
652
653 /* Statistics request or reply message. */
654 struct ofp_stats_msg {
655     struct ofp_header header;
656     ovs_be16 type;              /* One of the OFPST_* constants. */
657     ovs_be16 flags;             /* Requests: always 0.
658                                  * Replies: 0 or OFPSF_REPLY_MORE. */
659 };
660 OFP_ASSERT(sizeof(struct ofp_stats_msg) == 12);
661
662 enum ofp_stats_reply_flags {
663     OFPSF_REPLY_MORE  = 1 << 0  /* More replies to follow. */
664 };
665
666 #define DESC_STR_LEN   256
667 #define SERIAL_NUM_LEN 32
668 /* Reply to OFPST_DESC request.  Each entry is a NULL-terminated ASCII
669  * string. */
670 struct ofp_desc_stats {
671     struct ofp_stats_msg osm;
672     char mfr_desc[DESC_STR_LEN];       /* Manufacturer description. */
673     char hw_desc[DESC_STR_LEN];        /* Hardware description. */
674     char sw_desc[DESC_STR_LEN];        /* Software description. */
675     char serial_num[SERIAL_NUM_LEN];   /* Serial number. */
676     char dp_desc[DESC_STR_LEN];        /* Human readable description of
677                                           the datapath. */
678 };
679 OFP_ASSERT(sizeof(struct ofp_desc_stats) == 1068);
680
681 /* Stats request of type OFPST_AGGREGATE or OFPST_FLOW. */
682 struct ofp_flow_stats_request {
683     struct ofp_stats_msg osm;
684     struct ofp_match match;   /* Fields to match. */
685     uint8_t table_id;         /* ID of table to read (from ofp_table_stats)
686                                  or 0xff for all tables. */
687     uint8_t pad;              /* Align to 32 bits. */
688     ovs_be16 out_port;        /* Require matching entries to include this
689                                  as an output port.  A value of OFPP_NONE
690                                  indicates no restriction. */
691 };
692 OFP_ASSERT(sizeof(struct ofp_flow_stats_request) == 56);
693
694 /* Body of reply to OFPST_FLOW request. */
695 struct ofp_flow_stats {
696     ovs_be16 length;          /* Length of this entry. */
697     uint8_t table_id;         /* ID of table flow came from. */
698     uint8_t pad;
699     struct ofp_match match;   /* Description of fields. */
700     ovs_be32 duration_sec;    /* Time flow has been alive in seconds. */
701     ovs_be32 duration_nsec;   /* Time flow has been alive in nanoseconds
702                                  beyond duration_sec. */
703     ovs_be16 priority;        /* Priority of the entry. Only meaningful
704                                  when this is not an exact-match entry. */
705     ovs_be16 idle_timeout;    /* Number of seconds idle before expiration. */
706     ovs_be16 hard_timeout;    /* Number of seconds before expiration. */
707     uint8_t pad2[6];          /* Align to 64 bits. */
708     ovs_32aligned_be64 cookie;       /* Opaque controller-issued identifier. */
709     ovs_32aligned_be64 packet_count; /* Number of packets in flow. */
710     ovs_32aligned_be64 byte_count;   /* Number of bytes in flow. */
711     struct ofp_action_header actions[0]; /* Actions. */
712 };
713 OFP_ASSERT(sizeof(struct ofp_flow_stats) == 88);
714
715 /* Reply to OFPST_AGGREGATE request. */
716 struct ofp_aggregate_stats_reply {
717     struct ofp_stats_msg osm;
718     ovs_32aligned_be64 packet_count; /* Number of packets in flows. */
719     ovs_32aligned_be64 byte_count;   /* Number of bytes in flows. */
720     ovs_be32 flow_count;      /* Number of flows. */
721     uint8_t pad[4];           /* Align to 64 bits. */
722 };
723 OFP_ASSERT(sizeof(struct ofp_aggregate_stats_reply) == 36);
724
725 /* Body of reply to OFPST_TABLE request. */
726 struct ofp_table_stats {
727     uint8_t table_id;        /* Identifier of table.  Lower numbered tables
728                                 are consulted first. */
729     uint8_t pad[3];          /* Align to 32-bits. */
730     char name[OFP_MAX_TABLE_NAME_LEN];
731     ovs_be32 wildcards;      /* Bitmap of OFPFW_* wildcards that are
732                                 supported by the table. */
733     ovs_be32 max_entries;    /* Max number of entries supported. */
734     ovs_be32 active_count;   /* Number of active entries. */
735     ovs_32aligned_be64 lookup_count;  /* # of packets looked up in table. */
736     ovs_32aligned_be64 matched_count; /* Number of packets that hit table. */
737 };
738 OFP_ASSERT(sizeof(struct ofp_table_stats) == 64);
739
740 /* Stats request of type OFPST_PORT. */
741 struct ofp_port_stats_request {
742     struct ofp_stats_msg osm;
743     ovs_be16 port_no;        /* OFPST_PORT message may request statistics
744                                 for a single port (specified with port_no)
745                                 or for all ports (port_no == OFPP_NONE). */
746     uint8_t pad[6];
747 };
748 OFP_ASSERT(sizeof(struct ofp_port_stats_request) == 20);
749
750 /* Body of reply to OFPST_PORT request. If a counter is unsupported, set
751  * the field to all ones. */
752 struct ofp_port_stats {
753     ovs_be16 port_no;
754     uint8_t pad[6];          /* Align to 64-bits. */
755     ovs_32aligned_be64 rx_packets;     /* Number of received packets. */
756     ovs_32aligned_be64 tx_packets;     /* Number of transmitted packets. */
757     ovs_32aligned_be64 rx_bytes;       /* Number of received bytes. */
758     ovs_32aligned_be64 tx_bytes;       /* Number of transmitted bytes. */
759     ovs_32aligned_be64 rx_dropped;     /* Number of packets dropped by RX. */
760     ovs_32aligned_be64 tx_dropped;     /* Number of packets dropped by TX. */
761     ovs_32aligned_be64 rx_errors; /* Number of receive errors.  This is a
762                                      super-set of receive errors and should be
763                                      great than or equal to the sum of all
764                                      rx_*_err values. */
765     ovs_32aligned_be64 tx_errors; /* Number of transmit errors.  This is a
766                                      super-set of transmit errors. */
767     ovs_32aligned_be64 rx_frame_err; /* Number of frame alignment errors. */
768     ovs_32aligned_be64 rx_over_err;  /* Number of packets with RX overrun. */
769     ovs_32aligned_be64 rx_crc_err;   /* Number of CRC errors. */
770     ovs_32aligned_be64 collisions;   /* Number of collisions. */
771 };
772 OFP_ASSERT(sizeof(struct ofp_port_stats) == 104);
773
774 /* All ones is used to indicate all queues in a port (for stats retrieval). */
775 #define OFPQ_ALL      0xffffffff
776
777 /* Body for stats request of type OFPST_QUEUE. */
778 struct ofp_queue_stats_request {
779     struct ofp_stats_msg osm;
780     ovs_be16 port_no;        /* All ports if OFPP_ALL. */
781     uint8_t pad[2];          /* Align to 32-bits. */
782     ovs_be32 queue_id;       /* All queues if OFPQ_ALL. */
783 };
784 OFP_ASSERT(sizeof(struct ofp_queue_stats_request) == 20);
785
786 /* Body for stats reply of type OFPST_QUEUE consists of an array of this
787  * structure type. */
788 struct ofp_queue_stats {
789     ovs_be16 port_no;
790     uint8_t pad[2];          /* Align to 32-bits. */
791     ovs_be32 queue_id;       /* Queue id. */
792     ovs_32aligned_be64 tx_bytes;   /* Number of transmitted bytes. */
793     ovs_32aligned_be64 tx_packets; /* Number of transmitted packets. */
794     ovs_32aligned_be64 tx_errors;  /* # of packets dropped due to overrun. */
795 };
796 OFP_ASSERT(sizeof(struct ofp_queue_stats) == 32);
797
798 /* Vendor extension stats message. */
799 struct ofp_vendor_stats_msg {
800     struct ofp_stats_msg osm;   /* Type OFPST_VENDOR. */
801     ovs_be32 vendor;            /* Vendor ID:
802                                  * - MSB 0: low-order bytes are IEEE OUI.
803                                  * - MSB != 0: defined by OpenFlow
804                                  *   consortium. */
805     /* Followed by vendor-defined arbitrary additional data. */
806 };
807 OFP_ASSERT(sizeof(struct ofp_vendor_stats_msg) == 16);
808
809 /* Vendor extension. */
810 struct ofp_vendor_header {
811     struct ofp_header header;   /* Type OFPT_VENDOR. */
812     ovs_be32 vendor;            /* Vendor ID:
813                                  * - MSB 0: low-order bytes are IEEE OUI.
814                                  * - MSB != 0: defined by OpenFlow
815                                  *   consortium. */
816     /* Vendor-defined arbitrary additional data. */
817 };
818 OFP_ASSERT(sizeof(struct ofp_vendor_header) == 12);
819
820 #endif /* openflow/openflow.h */