rconn: Add functions for reporting connection statistics.
[sliver-openvswitch.git] / include / openflow.h
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  * 
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  * 
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 /* OpenFlow: protocol between controller and datapath. */
35
36 #ifndef OPENFLOW_H
37 #define OPENFLOW_H 1
38
39 #ifdef __KERNEL__
40 #include <linux/types.h>
41 #else
42 #include <stdint.h>
43 #endif
44
45 #ifdef SWIG
46 #define OFP_ASSERT(EXPR)        /* SWIG can't handle OFP_ASSERT. */
47 #elif !defined(__cplusplus)
48 /* Build-time assertion for use in a declaration context. */
49 #define OFP_ASSERT(EXPR)                                                \
50         extern int (*build_assert(void))[ sizeof(struct {               \
51                     unsigned int build_assert_failed : (EXPR) ? 1 : -1; })]
52 #else /* __cplusplus */
53 #include <boost/static_assert.hpp>
54 #define OFP_ASSERT BOOST_STATIC_ASSERT
55 #endif /* __cplusplus */
56
57 #ifndef SWIG
58 #define OFP_PACKED __attribute__((packed))
59 #else
60 #define OFP_PACKED              /* SWIG doesn't understand __attribute. */
61 #endif
62
63 /* Maximum length of a OpenFlow packet. */
64 #define OFP_MAXLEN (sizeof(struct ofp_switch_features) \
65         + (sizeof(struct ofp_phy_port) * OFPP_MAX) + 200)
66
67
68 /* The most significant bit being set in the version field indicates an
69  * experimental OpenFlow version.  
70  */
71 #define OFP_VERSION   0x89
72
73 #define OFP_MAX_TABLE_NAME_LEN 32
74 #define OFP_MAX_PORT_NAME_LEN  16
75
76 #define OFP_TCP_PORT  975
77 #define OFP_SSL_PORT  976
78
79 #define OFP_ETH_ALEN 6          /* Bytes in an Ethernet address. */
80
81 /* Port numbering.  Physical ports are numbered starting from 0. */
82 enum ofp_port {
83     /* Maximum number of physical switch ports. */
84     OFPP_MAX = 0x100,
85
86     /* Fake output "ports". */
87     OFPP_IN_PORT    = 0xfff8,  /* Send the packet out the input port.  This 
88                                   virtual port must be explicitly used 
89                                   in order to send back out of the input 
90                                   port. */
91     OFPP_TABLE      = 0xfff9,  /* Perform actions in flow table.  
92                                   NB: This can only be the destination
93                                   port for packet-out messages. */
94     OFPP_NORMAL     = 0xfffa,  /* Process with normal L2/L3 switching. */
95     OFPP_FLOOD      = 0xfffb,  /* All physical ports except input port and 
96                                   those disabled by STP. */
97     OFPP_ALL        = 0xfffc,  /* All physical ports except input port. */
98     OFPP_CONTROLLER = 0xfffd,  /* Send to controller. */ 
99     OFPP_LOCAL      = 0xfffe,  /* Local openflow "port". */
100     OFPP_NONE       = 0xffff   /* Not associated with a physical port. */
101 };
102
103 enum ofp_type {
104     OFPT_FEATURES_REQUEST,    /*  0 Controller/switch message */
105     OFPT_FEATURES_REPLY,      /*  1 Controller/switch message */
106     OFPT_GET_CONFIG_REQUEST,  /*  2 Controller/switch message */
107     OFPT_GET_CONFIG_REPLY,    /*  3 Controller/switch message */
108     OFPT_SET_CONFIG,          /*  4 Controller/switch message */
109     OFPT_PACKET_IN,           /*  5 Async message */
110     OFPT_PACKET_OUT,          /*  6 Controller/switch message */
111     OFPT_FLOW_MOD,            /*  7 Controller/switch message */
112     OFPT_FLOW_EXPIRED,        /*  8 Async message */
113     OFPT_TABLE,               /*  9 Controller/switch message */
114     OFPT_PORT_MOD,            /* 10 Controller/switch message */
115     OFPT_PORT_STATUS,         /* 11 Async message */
116     OFPT_ERROR_MSG,           /* 12 Async message */
117     OFPT_STATS_REQUEST,       /* 13 Controller/switch message */
118     OFPT_STATS_REPLY,         /* 14 Controller/switch message */
119     OFPT_ECHO_REQUEST,        /* 15 Symmetric message */
120     OFPT_ECHO_REPLY           /* 16 Symmetric message */
121 };
122
123 /* Header on all OpenFlow packets. */
124 struct ofp_header {
125     uint8_t version;    /* OFP_VERSION. */
126     uint8_t type;       /* One of the OFPT_ constants. */
127     uint16_t length;    /* Length including this ofp_header. */
128     uint32_t xid;       /* Transactin id associated with this packet.
129                            Replies use the same id as was in the request
130                            to facilitate pairing. */
131 };
132 OFP_ASSERT(sizeof(struct ofp_header) == 8);
133
134 #define OFP_DEFAULT_MISS_SEND_LEN   128
135
136 enum ofp_config_flags {
137     /* Tells datapath to notify the controller of expired flow entries. */
138     OFPC_SEND_FLOW_EXP = 1 << 0,
139
140     /* Handling of IP fragments. */
141     OFPC_FRAG_NORMAL   = 0 << 1,  /* No special handling for fragments. */
142     OFPC_FRAG_DROP     = 1 << 1,    /* Drop fragments. */
143     OFPC_FRAG_REASM    = 2 << 1,   /* Reassemble (only if OFPC_IP_REASM set). */
144     OFPC_FRAG_MASK     = 3 << 1
145 };
146
147 /* Switch configuration. */
148 struct ofp_switch_config {
149     struct ofp_header header;
150     uint16_t flags;             /* OFPC_* flags. */
151     uint16_t miss_send_len;     /* Max bytes of new flow that datapath should
152                                    send to the controller. */
153 };
154 OFP_ASSERT(sizeof(struct ofp_switch_config) == 12);
155
156 /* Capabilities supported by the datapath. */
157 enum ofp_capabilities {
158     OFPC_FLOW_STATS   = 1 << 0, /* Flow statistics. */
159     OFPC_TABLE_STATS  = 1 << 1, /* Table statistics. */
160     OFPC_PORT_STATS   = 1 << 2, /* Port statistics. */
161     OFPC_STP          = 1 << 3, /* 802.11d spanning tree. */
162     OFPC_MULTI_PHY_TX = 1 << 4, /* Supports transmitting through multiple
163                                    physical interfaces */
164     OFPC_IP_REASM     = 1 << 5  /* Can reassemble IP fragments. */
165 };
166
167 /* Flags to indicate behavior of the physical port */
168 enum ofp_port_flags {
169     OFPPFL_NO_FLOOD  = 1 << 0, /* Do not include this port when flooding. */
170     OFPPFL_PORT_DOWN = 1 << 1, /* Port is configured down. */
171     OFPPFL_LINK_DOWN = 1 << 2, /* No physical link on interface.  
172                                   NOTE: Non-settable field */
173 };
174
175 /* Features of physical ports available in a datapath. */
176 enum ofp_port_features {
177     OFPPF_10MB_HD    = 1 << 0, /* 10 Mb half-duplex rate support. */
178     OFPPF_10MB_FD    = 1 << 1, /* 10 Mb full-duplex rate support. */
179     OFPPF_100MB_HD   = 1 << 2, /* 100 Mb half-duplex rate support. */
180     OFPPF_100MB_FD   = 1 << 3, /* 100 Mb full-duplex rate support. */
181     OFPPF_1GB_HD     = 1 << 4, /* 1 Gb half-duplex rate support. */
182     OFPPF_1GB_FD     = 1 << 5, /* 1 Gb full-duplex rate support. */
183     OFPPF_10GB_FD    = 1 << 6, /* 10 Gb full-duplex rate support. */
184 };
185
186
187 /* Description of a physical port */
188 struct ofp_phy_port {
189     uint16_t port_no;
190     uint8_t hw_addr[OFP_ETH_ALEN];
191     uint8_t name[OFP_MAX_PORT_NAME_LEN]; /* Null-terminated */
192     uint32_t flags;         /* Bitmap of "ofp_port_flags". */
193     uint32_t speed;         /* Current speed in Mbps */
194     uint32_t features;      /* Bitmap of supported "ofp_port_features"s. */
195 };
196 OFP_ASSERT(sizeof(struct ofp_phy_port) == 36);
197
198 /* Switch features. */
199 struct ofp_switch_features {
200     struct ofp_header header;
201     uint64_t datapath_id;   /* Datapath unique ID.  Only the lower 48-bits
202                                are meaningful. */
203
204     /* Table info. */
205     uint32_t n_exact;       /* Max exact-match table entries. */
206     uint32_t n_compression; /* Max entries compressed on service port. */
207     uint32_t n_general;     /* Max entries of arbitrary form. */
208
209     /* Buffer limits.  A datapath that cannot buffer reports 0.*/
210     uint32_t buffer_mb;     /* Space for buffering packets, in MB. */
211     uint32_t n_buffers;     /* Max packets buffered at once. */
212
213     /* Features. */
214     uint32_t capabilities;  /* Bitmap of support "ofp_capabilities". */
215     uint32_t actions;       /* Bitmap of supported "ofp_action_type"s. */
216     uint8_t pad[4];         /* Align to 64-bits. */
217
218     /* Port info.*/
219     struct ofp_phy_port ports[0];  /* Port definitions.  The number of ports
220                                       is inferred from the length field in
221                                       the header. */
222 };
223 OFP_ASSERT(sizeof(struct ofp_switch_features) == 48);
224
225 /* What changed about the physical port */
226 enum ofp_port_reason {
227     OFPPR_ADD,              /* The port was added */
228     OFPPR_DELETE,           /* The port was removed */
229     OFPPR_MOD               /* Some attribute of the port has changed */
230 };
231
232 /* A physical port has changed in the datapath */
233 struct ofp_port_status {
234     struct ofp_header header;
235     uint8_t reason;          /* One of OFPPR_* */
236     uint8_t pad[3];          /* Align to 32-bits */
237     struct ofp_phy_port desc;
238 };
239 OFP_ASSERT(sizeof(struct ofp_port_status) == 48);
240
241 /* Modify behavior of the physical port */
242 struct ofp_port_mod {
243     struct ofp_header header;
244     uint32_t mask;         /* Bitmap of "ofp_port_flags" that should be 
245                               changed. */
246     struct ofp_phy_port desc;
247 };
248 OFP_ASSERT(sizeof(struct ofp_port_mod) == 48);
249
250 /* Why is this packet being sent to the controller? */
251 enum ofp_packet_in_reason {
252     OFPR_NO_MATCH,          /* No matching flow. */
253     OFPR_ACTION             /* Action explicitly output to controller. */
254 };
255
256 /* Packet received on port (datapath -> controller). */
257 struct ofp_packet_in {
258     struct ofp_header header;
259     uint32_t buffer_id;     /* ID assigned by datapath. */
260     uint16_t total_len;     /* Full length of frame. */
261     uint16_t in_port;       /* Port on which frame was received. */
262     uint8_t reason;         /* Reason packet is being sent (one of OFPR_*) */
263     uint8_t pad;
264     uint8_t data[0];        /* Ethernet frame, halfway through 32-bit word,
265                                so the IP header is 32-bit aligned.  The 
266                                amount of data is inferred from the length
267                                field in the header.  Because of padding,
268                                offsetof(struct ofp_packet_in, data) ==
269                                sizeof(struct ofp_packet_in) - 2. */
270 };
271 OFP_ASSERT(sizeof(struct ofp_packet_in) == 20);
272
273 enum ofp_action_type {
274     OFPAT_OUTPUT,           /* Output to switch port. */
275     OFPAT_SET_DL_VLAN,      /* VLAN. */
276     OFPAT_SET_DL_SRC,       /* Ethernet source address. */
277     OFPAT_SET_DL_DST,       /* Ethernet destination address. */
278     OFPAT_SET_NW_SRC,       /* IP source address. */
279     OFPAT_SET_NW_DST,       /* IP destination address. */
280     OFPAT_SET_TP_SRC,       /* TCP/UDP source port. */
281     OFPAT_SET_TP_DST        /* TCP/UDP destination port. */
282 };
283
284 /* An output action sends packets out 'port'.  When the 'port' is the
285  * OFPP_CONTROLLER, 'max_len' indicates the max number of bytes to
286  * send.  A 'max_len' of zero means the entire packet should be sent. */
287 struct ofp_action_output {
288     uint16_t max_len;
289     uint16_t port;
290 };
291 OFP_ASSERT(sizeof(struct ofp_action_output) == 4);
292
293 /* The VLAN id is 12-bits, so we'll use the entire 16 bits to indicate
294  * special conditions.  All ones is used to indicate that no VLAN id was
295  * set, or if used as an action, that the VLAN header should be
296  * stripped.
297  */
298 #define OFP_VLAN_NONE      0xffff
299
300 struct ofp_action {
301     uint16_t type;                       /* One of OFPAT_* */
302     union {
303         struct ofp_action_output output; /* OFPAT_OUTPUT: output struct. */
304         uint16_t vlan_id;                /* OFPAT_SET_DL_VLAN: VLAN id. */
305         uint8_t  dl_addr[OFP_ETH_ALEN];  /* OFPAT_SET_DL_SRC/DST */
306         uint32_t nw_addr OFP_PACKED;     /* OFPAT_SET_NW_SRC/DST */
307         uint16_t tp;                     /* OFPAT_SET_TP_SRC/DST */
308     } arg;
309 };
310 OFP_ASSERT(sizeof(struct ofp_action) == 8);
311
312 /* Send packet (controller -> datapath). */
313 struct ofp_packet_out {
314     struct ofp_header header;
315     uint32_t buffer_id;           /* ID assigned by datapath (-1 if none). */
316     uint16_t in_port;             /* Packet's input port (OFPP_NONE if none). */
317     uint16_t n_actions;           /* Number of actions. */
318     struct ofp_action actions[0]; /* Actions. */
319     /* uint8_t data[0]; */        /* Packet data.  The length is inferred 
320                                      from the length field in the header.  
321                                      (Only meaningful if buffer_id == -1.) */
322 };
323 OFP_ASSERT(sizeof(struct ofp_packet_out) == 16);
324
325 enum ofp_flow_mod_command {
326     OFPFC_ADD,              /* New flow. */
327     OFPFC_DELETE,           /* Delete all matching flows. */
328     OFPFC_DELETE_STRICT     /* Strictly match wildcards and priority. */
329 };
330
331 /* Flow wildcards. */
332 enum ofp_flow_wildcards {
333     OFPFW_IN_PORT  = 1 << 0,  /* Switch input port. */
334     OFPFW_DL_VLAN  = 1 << 1,  /* VLAN. */
335     OFPFW_DL_SRC   = 1 << 2,  /* Ethernet source address. */
336     OFPFW_DL_DST   = 1 << 3,  /* Ethernet destination address. */
337     OFPFW_DL_TYPE  = 1 << 4,  /* Ethernet frame type. */
338     OFPFW_NW_PROTO = 1 << 5,  /* IP protocol. */
339     OFPFW_TP_SRC   = 1 << 6,  /* TCP/UDP source port. */
340     OFPFW_TP_DST   = 1 << 7,  /* TCP/UDP destination port. */
341
342     /* IP source address wildcard bit count.  0 is exact match, 1 ignores the
343      * LSB, 2 ignores the 2 least-significant bits, ..., 32 and higher wildcard
344      * the entire field.  This is the *opposite* of the usual convention where
345      * e.g. /24 indicates that 8 bits (not 24 bits) are wildcarded. */
346     OFPFW_NW_SRC_SHIFT = 8,
347     OFPFW_NW_SRC_BITS = 6,
348     OFPFW_NW_SRC_MASK = ((1 << OFPFW_NW_SRC_BITS) - 1) << OFPFW_NW_SRC_SHIFT,
349     OFPFW_NW_SRC_ALL = 32 << OFPFW_NW_SRC_SHIFT,
350
351     /* IP destination address wildcard bit count.  Same format as source. */
352     OFPFW_NW_DST_SHIFT = 14,
353     OFPFW_NW_DST_BITS = 6,
354     OFPFW_NW_DST_MASK = ((1 << OFPFW_NW_DST_BITS) - 1) << OFPFW_NW_DST_SHIFT,
355     OFPFW_NW_DST_ALL = 32 << OFPFW_NW_DST_SHIFT,
356
357     /* Wildcard all fields. */
358     OFPFW_ALL = ((1 << 20) - 1)
359 };
360
361 /* Values below this cutoff are 802.3 packets and the two bytes
362  * following MAC addresses are used as a frame length.  Otherwise, the
363  * two bytes are used as the Ethernet type.
364  */
365 #define OFP_DL_TYPE_ETH2_CUTOFF   0x0600
366
367 /* Value of dl_type to indicate that the frame does not include an
368  * Ethernet type.
369  */
370 #define OFP_DL_TYPE_NOT_ETH_TYPE  0x05ff
371
372 /* Fields to match against flows */
373 struct ofp_match {
374     uint32_t wildcards;        /* Wildcard fields. */
375     uint16_t in_port;          /* Input switch port. */
376     uint8_t dl_src[OFP_ETH_ALEN]; /* Ethernet source address. */
377     uint8_t dl_dst[OFP_ETH_ALEN]; /* Ethernet destination address. */
378     uint16_t dl_vlan;          /* Input VLAN. */
379     uint16_t dl_type;          /* Ethernet frame type. */
380     uint8_t nw_proto;          /* IP protocol. */
381     uint8_t pad;               /* Align to 32-bits. */
382     uint32_t nw_src;           /* IP source address. */
383     uint32_t nw_dst;           /* IP destination address. */
384     uint16_t tp_src;           /* TCP/UDP source port. */
385     uint16_t tp_dst;           /* TCP/UDP destination port. */
386 };
387 OFP_ASSERT(sizeof(struct ofp_match) == 36);
388
389 /* Value used in "idle_timeout" and "hard_timeout" to indicate that the entry
390  * is permanent. */
391 #define OFP_FLOW_PERMANENT 0
392
393 /* By default, choose a priority in the middle */
394 #define OFP_DEFAULT_PRIORITY 0x8000
395
396 /* Flow setup and teardown (controller -> datapath). */
397 struct ofp_flow_mod {
398     struct ofp_header header;
399     struct ofp_match match;      /* Fields to match */
400
401     /* Flow actions. */
402     uint16_t command;             /* One of OFPFC_*. */
403     uint16_t idle_timeout;        /* Idle time before discarding (seconds). */
404     uint16_t hard_timeout;        /* Max time before discarding (seconds). */
405     uint16_t priority;            /* Priority level of flow entry. */
406     uint32_t buffer_id;           /* Buffered packet to apply to (or -1). */
407     uint32_t reserved;            /* Reserved for future use. */
408     struct ofp_action actions[0]; /* The number of actions is inferred from
409                                     the length field in the header. */
410 };
411 OFP_ASSERT(sizeof(struct ofp_flow_mod) == 60);
412
413 /* Why did this flow expire? */
414 enum ofp_flow_expired_reason {
415     OFPER_IDLE_TIMEOUT,         /* Flow idle time exceeded idle_timeout. */
416     OFPER_HARD_TIMEOUT          /* Time exceeded hard_timeout. */
417 };
418
419 /* Flow expiration (datapath -> controller). */
420 struct ofp_flow_expired {
421     struct ofp_header header;
422     struct ofp_match match;   /* Description of fields */
423
424     uint16_t priority;        /* Priority level of flow entry. */
425     uint8_t reason;           /* One of OFPER_*. */
426     uint8_t pad[1];           /* Align to 32-bits. */
427
428     uint32_t duration;        /* Time flow was alive in seconds. */
429     uint8_t pad2[4];          /* Align to 64-bits. */
430     uint64_t packet_count;    
431     uint64_t byte_count;
432 };
433 OFP_ASSERT(sizeof(struct ofp_flow_expired) == 72);
434
435 /* Error message (datapath -> controller). */
436 struct ofp_error_msg {
437     struct ofp_header header;
438
439     uint16_t type;
440     uint16_t code;
441     uint8_t data[0];          /* Variable-length data.  Interpreted based 
442                                  on the type and code. */
443 };
444 OFP_ASSERT(sizeof(struct ofp_error_msg) == 12);
445
446 enum ofp_stats_types {
447     /* Description of this OpenFlow switch. 
448      * The request body is empty.
449      * The reply body is struct ofp_version_stats. */
450     OFPST_VERSION,
451
452     /* Individual flow statistics.
453      * The request body is struct ofp_flow_stats_request.
454      * The reply body is an array of struct ofp_flow_stats. */
455     OFPST_FLOW,
456
457     /* Aggregate flow statistics.
458      * The request body is struct ofp_aggregate_stats_request.
459      * The reply body is struct ofp_aggregate_stats_reply. */
460     OFPST_AGGREGATE,
461
462     /* Flow table statistics.
463      * The request body is empty.
464      * The reply body is an array of struct ofp_table_stats. */
465     OFPST_TABLE,
466
467     /* Physical port statistics.
468      * The request body is empty.
469      * The reply body is an array of struct ofp_port_stats. */
470     OFPST_PORT
471 };
472
473 struct ofp_stats_request {
474     struct ofp_header header;
475     uint16_t type;              /* One of the OFPST_* constants. */
476     uint16_t flags;             /* OFPSF_REQ_* flags (none yet defined). */
477     uint8_t body[0];            /* Body of the request. */
478 };
479 OFP_ASSERT(sizeof(struct ofp_stats_request) == 12);
480
481 enum ofp_stats_reply_flags {
482     OFPSF_REPLY_MORE  = 1 << 0, /* More replies to follow */
483 };
484
485 struct ofp_stats_reply {
486     struct ofp_header header;
487     uint16_t type;              /* One of the OFPST_* constants. */
488     uint16_t flags;             /* OFPSF_REPLY_* flags. */
489     uint8_t body[0];            /* Body of the reply. */
490 };
491 OFP_ASSERT(sizeof(struct ofp_stats_reply) == 12);
492
493 #define VERSION_STR_LEN 256
494 /* Body of reply to OFPST_VERSION request.  Each entry is a NULL-terminated 
495  * ASCII string. */
496 struct ofp_version_stats {
497     char mfr_desc[VERSION_STR_LEN];  /* Manufacturer description. */
498     char hw_desc[VERSION_STR_LEN];   /* Hardware description. */
499     char sw_desc[VERSION_STR_LEN];   /* Software description. */
500 };
501 OFP_ASSERT(sizeof(struct ofp_version_stats) == 768);
502
503 /* Body for ofp_stats_request of type OFPST_FLOW. */
504 struct ofp_flow_stats_request {
505     struct ofp_match match;   /* Fields to match */
506     uint8_t table_id;         /* ID of table to read (from ofp_table_stats)
507                                  or 0xff for all tables. */
508     uint8_t pad[3];           /* Align to 32 bits. */
509 };
510 OFP_ASSERT(sizeof(struct ofp_flow_stats_request) == 40);
511
512 /* Body of reply to OFPST_FLOW request. */
513 struct ofp_flow_stats {
514     uint16_t length;          /* Length of this entry. */
515     uint8_t table_id;         /* ID of table flow came from. */
516     uint8_t pad;
517     struct ofp_match match;   /* Description of fields. */
518     uint32_t duration;        /* Time flow has been alive in seconds. */
519     uint16_t priority;        /* Priority of the entry. Only meaningful
520                                  when this is not an exact-match entry. */
521     uint16_t idle_timeout;    /* Number of seconds idle before expiration. */
522     uint16_t hard_timeout;    /* Number of seconds before expiration. */
523     uint16_t pad2[3];         /* Pad to 64 bits. */
524     uint64_t packet_count;    /* Number of packets in flow. */
525     uint64_t byte_count;      /* Number of bytes in flow. */
526     struct ofp_action actions[0]; /* Actions. */
527 };
528 OFP_ASSERT(sizeof(struct ofp_flow_stats) == 72);
529
530 /* Body for ofp_stats_request of type OFPST_AGGREGATE. */
531 struct ofp_aggregate_stats_request {
532     struct ofp_match match;   /* Fields to match */
533     uint8_t table_id;         /* ID of table to read (from ofp_table_stats)
534                                  or 0xff for all tables. */
535     uint8_t pad[3];           /* Align to 32 bits. */
536 };
537 OFP_ASSERT(sizeof(struct ofp_aggregate_stats_request) == 40);
538
539 /* Body of reply to OFPST_AGGREGATE request. */
540 struct ofp_aggregate_stats_reply {
541     uint64_t packet_count;    /* Number of packets in flows. */
542     uint64_t byte_count;      /* Number of bytes in flows. */
543     uint32_t flow_count;      /* Number of flows. */
544     uint8_t pad[4];           /* Align to 64 bits. */
545 };
546 OFP_ASSERT(sizeof(struct ofp_aggregate_stats_reply) == 24);
547
548 /* Body of reply to OFPST_TABLE request. */
549 struct ofp_table_stats {
550     uint8_t table_id;
551     uint8_t pad[3];          /* Align to 32-bits */
552     char name[OFP_MAX_TABLE_NAME_LEN];
553     uint32_t max_entries;    /* Max number of entries supported */
554     uint32_t active_count;   /* Number of active entries */
555     uint8_t pad2[4];         /* Align to 64 bits. */
556     uint64_t matched_count;  /* Number of packets that hit table */
557 };
558 OFP_ASSERT(sizeof(struct ofp_table_stats) == 56);
559
560 /* Body of reply to OFPST_PORT request. If a counter is unsupported, set
561  * the field to all ones. */
562 struct ofp_port_stats {
563     uint16_t port_no;
564     uint8_t pad[6];          /* Align to 64-bits. */
565     uint64_t rx_packets;     /* Number of received packets. */
566     uint64_t tx_packets;     /* Number of transmitted packets. */
567     uint64_t rx_bytes;       /* Number of received bytes. */
568     uint64_t tx_bytes;       /* Number of transmitted bytes. */
569     uint64_t rx_dropped;     /* Number of packets dropped by RX. */ 
570     uint64_t tx_dropped;     /* Number of packets dropped by TX. */ 
571     uint64_t rx_errors;      /* Number of receive errors.  This is a super-set
572                                 of receive errors and should be great than or
573                                 equal to the sum of al rx_*_err values. */
574     uint64_t tx_errors;      /* Number of transmit errors.  This is a super-set
575                                 of transmit errors. */
576     uint64_t rx_frame_err;   /* Number of frame alignment errors. */ 
577     uint64_t rx_over_err;    /* Number of packets with RX overrun. */ 
578     uint64_t rx_crc_err;     /* Number of CRC errors. */ 
579     uint64_t collisions;     /* Number of collisions. */ 
580 };
581 OFP_ASSERT(sizeof(struct ofp_port_stats) == 104);
582
583 #endif /* openflow.h */