49a4f7b515aa49caee1d35f411e30de71f582f51
[cascardo/ovs.git] / include / openflow / openflow-1.4.h
1 /* Copyright (c) 2008, 2014 The Board of Trustees of The Leland Stanford
2 * Junior University
3 * Copyright (c) 2011, 2012 Open Networking Foundation
4 *
5 * We are making the OpenFlow specification and associated documentation
6 * (Software) available for public use and benefit with the expectation
7 * that others will use, modify and enhance the Software and contribute
8 * those enhancements back to the community. However, since we would
9 * like to make the Software available for broadest use, with as few
10 * restrictions as possible permission is hereby granted, free of
11 * charge, to any person obtaining a copy of this Software to deal in
12 * the Software under the copyrights without restriction, including
13 * without limitation the rights to use, copy, modify, merge, publish,
14 * distribute, sublicense, and/or sell copies of the Software, and to
15 * permit persons to whom the Software is furnished to do so, subject to
16 * the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
25 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
26 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
27 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 * SOFTWARE.
29 *
30 * The name and trademarks of copyright holder(s) may NOT be used in
31 * advertising or publicity pertaining to the Software or any
32 * derivatives without specific, written prior permission.
33 */
34
35 /* OpenFlow: protocol between controller and datapath. */
36
37 #ifndef OPENFLOW_14_H
38 #define OPENFLOW_14_H 1
39
40 #include <openflow/openflow-1.3.h>
41
42
43 /* ## ---------- ## */
44 /* ## ofp14_port ## */
45 /* ## ---------- ## */
46
47 /* Port description property types. */
48 enum ofp_port_desc_prop_type {
49     OFPPDPT14_ETHERNET          = 0,      /* Ethernet property. */
50     OFPPDPT14_OPTICAL           = 1,      /* Optical property. */
51     OFPPDPT14_EXPERIMENTER      = 0xFFFF, /* Experimenter property. */
52 };
53
54 /* Ethernet port description property. */
55 struct ofp14_port_desc_prop_ethernet {
56     ovs_be16         type;    /* OFPPDPT14_ETHERNET. */
57     ovs_be16         length;  /* Length in bytes of this property. */
58     uint8_t          pad[4];  /* Align to 64 bits. */
59     /* Bitmaps of OFPPF_* that describe features.  All bits zeroed if
60      * unsupported or unavailable. */
61     ovs_be32 curr;          /* Current features. */
62     ovs_be32 advertised;    /* Features being advertised by the port. */
63     ovs_be32 supported;     /* Features supported by the port. */
64     ovs_be32 peer;          /* Features advertised by peer. */
65
66     ovs_be32 curr_speed;    /* Current port bitrate in kbps. */
67     ovs_be32 max_speed;     /* Max port bitrate in kbps */
68 };
69 OFP_ASSERT(sizeof(struct ofp14_port_desc_prop_ethernet) == 32);
70
71 struct ofp14_port {
72     ovs_be32 port_no;
73     ovs_be16 length;
74     uint8_t pad[2];
75     struct eth_addr hw_addr;
76     uint8_t pad2[2];                  /* Align to 64 bits. */
77     char name[OFP_MAX_PORT_NAME_LEN]; /* Null-terminated */
78
79     ovs_be32 config;        /* Bitmap of OFPPC_* flags. */
80     ovs_be32 state;         /* Bitmap of OFPPS_* flags. */
81
82     /* Followed by 0 or more OFPPDPT14_* properties. */
83 };
84 OFP_ASSERT(sizeof(struct ofp14_port) == 40);
85
86
87 /* ## -------------- ## */
88 /* ## ofp14_port_mod ## */
89 /* ## -------------- ## */
90
91 enum ofp14_port_mod_prop_type {
92     OFPPMPT14_ETHERNET          = 0,      /* Ethernet property. */
93     OFPPMPT14_OPTICAL           = 1,      /* Optical property. */
94     OFPPMPT14_EXPERIMENTER      = 0xFFFF, /* Experimenter property. */
95 };
96
97 struct ofp14_port_mod {
98     ovs_be32 port_no;
99     uint8_t pad[4];
100     struct eth_addr hw_addr;
101     uint8_t pad2[2];
102     ovs_be32 config;        /* Bitmap of OFPPC_* flags. */
103     ovs_be32 mask;          /* Bitmap of OFPPC_* flags to be changed. */
104     /* Followed by 0 or more OFPPMPT14_* properties. */
105 };
106 OFP_ASSERT(sizeof(struct ofp14_port_mod) == 24);
107
108 /* ## --------------- ## */
109 /* ## ofp14_table_mod ## */
110 /* ## --------------- ## */
111
112 enum ofp14_table_mod_prop_type {
113     OFPTMPT14_EVICTION               = 0x2,    /* Eviction property. */
114     OFPTMPT14_VACANCY                = 0x3,    /* Vacancy property. */
115     OFPTMPT14_EXPERIMENTER           = 0xFFFF, /* Experimenter property. */
116 };
117
118 enum ofp14_table_mod_prop_eviction_flag {
119     OFPTMPEF14_OTHER           = 1 << 0,     /* Using other factors. */
120     OFPTMPEF14_IMPORTANCE      = 1 << 1,     /* Using flow entry importance. */
121     OFPTMPEF14_LIFETIME        = 1 << 2,     /* Using flow entry lifetime. */
122 };
123
124 /* What changed about the table */
125 enum ofp14_table_reason {
126     OFPTR_VACANCY_DOWN = 3,    /* Vacancy down threshold event. */
127     OFPTR_VACANCY_UP   = 4,    /* Vacancy up threshold event. */
128 #define OFPTR_BITS ((1u << OFPTR_VACANCY_DOWN) | (1u << OFPTR_VACANCY_UP))
129 };
130
131 struct ofp14_table_mod_prop_vacancy {
132     ovs_be16         type;   /* OFPTMPT14_VACANCY. */
133     ovs_be16         length; /* Length in bytes of this property. */
134     uint8_t vacancy_down;    /* Vacancy threshold when space decreases (%). */
135     uint8_t vacancy_up;      /* Vacancy threshold when space increases (%). */
136     uint8_t vacancy;      /* Current vacancy (%) - only in ofp14_table_desc. */
137     uint8_t pad[1];          /* Align to 64 bits. */
138 };
139 OFP_ASSERT(sizeof(struct ofp14_table_mod_prop_vacancy) == 8);
140
141 struct ofp14_table_mod {
142     uint8_t table_id;     /* ID of the table, OFPTT_ALL indicates all tables */
143     uint8_t pad[3];         /* Pad to 32 bits */
144     ovs_be32 config;        /* Bitmap of OFPTC_* flags */
145     /* Followed by 0 or more OFPTMPT14_* properties. */
146 };
147 OFP_ASSERT(sizeof(struct ofp14_table_mod) == 8);
148
149 /* Body of reply to OFPMP_TABLE_DESC request. */
150 struct ofp14_table_desc {
151     ovs_be16 length;       /* Length is padded to 64 bits. */
152     uint8_t table_id;      /* Identifier of table. Lower numbered tables
153                               are consulted first. */
154     uint8_t pad[1];        /* Align to 32-bits. */
155     ovs_be32 config;       /* Bitmap of OFPTC_* values. */
156     /* Followed by 0 or more OFPTMPT14_* properties. */
157 };
158 OFP_ASSERT(sizeof(struct ofp14_table_desc) == 8);
159
160 /* ## ---------------- ## */
161 /* ## ofp14_port_stats ## */
162 /* ## ---------------- ## */
163
164 enum ofp14_port_stats_prop_type {
165     OFPPSPT14_ETHERNET          = 0,      /* Ethernet property. */
166     OFPPSPT14_OPTICAL           = 1,      /* Optical property. */
167     OFPPSPT14_EXPERIMENTER      = 0xFFFF, /* Experimenter property. */
168 };
169
170 struct ofp14_port_stats_prop_ethernet {
171     ovs_be16         type;    /* OFPPSPT14_ETHERNET. */
172     ovs_be16         length;  /* Length in bytes of this property. */
173     uint8_t          pad[4];  /* Align to 64 bits. */
174
175     ovs_be64 rx_frame_err;   /* Number of frame alignment errors. */
176     ovs_be64 rx_over_err;    /* Number of packets with RX overrun. */
177     ovs_be64 rx_crc_err;     /* Number of CRC errors. */
178     ovs_be64 collisions;     /* Number of collisions. */
179 };
180 OFP_ASSERT(sizeof(struct ofp14_port_stats_prop_ethernet) == 40);
181
182 struct ofp14_port_stats {
183     ovs_be16 length;         /* Length of this entry. */
184     uint8_t pad[2];          /* Align to 64 bits. */
185     ovs_be32 port_no;
186     ovs_be32 duration_sec;   /* Time port has been alive in seconds. */
187     ovs_be32 duration_nsec;  /* Time port has been alive in nanoseconds beyond
188                                 duration_sec. */
189     ovs_be64 rx_packets;     /* Number of received packets. */
190     ovs_be64 tx_packets;     /* Number of transmitted packets. */
191     ovs_be64 rx_bytes;       /* Number of received bytes. */
192     ovs_be64 tx_bytes;       /* Number of transmitted bytes. */
193
194     ovs_be64 rx_dropped;     /* Number of packets dropped by RX. */
195     ovs_be64 tx_dropped;     /* Number of packets dropped by TX. */
196     ovs_be64 rx_errors;      /* Number of receive errors.  This is a super-set
197                                 of more specific receive errors and should be
198                                 greater than or equal to the sum of all
199                                 rx_*_err values in properties. */
200     ovs_be64 tx_errors;      /* Number of transmit errors.  This is a super-set
201                                 of more specific transmit errors and should be
202                                 greater than or equal to the sum of all
203                                 tx_*_err values (none currently defined.) */
204     /* Followed by 0 or more OFPPSPT14_* properties. */
205 };
206 OFP_ASSERT(sizeof(struct ofp14_port_stats) == 80);
207
208
209 /* ## ----------------- ## */
210 /* ## ofp14_queue_stats ## */
211 /* ## ----------------- ## */
212
213 struct ofp14_queue_stats {
214     ovs_be16 length;         /* Length of this entry. */
215     uint8_t pad[6];          /* Align to 64 bits. */
216     struct ofp13_queue_stats qs;
217     /* Followed by 0 or more properties (none yet defined). */
218 };
219 OFP_ASSERT(sizeof(struct ofp14_queue_stats) == 48);
220
221
222 /* ## ---------------- ## */
223 /* ## ofp14_queue_desc ## */
224 /* ## ---------------- ## */
225
226 struct ofp14_queue_desc_request {
227     ovs_be32 port;              /* All ports if OFPP_ANY. */
228     ovs_be32 queue;             /* All queues if OFPQ_ALL. */
229 };
230 OFP_ASSERT(sizeof(struct ofp14_queue_desc_request) == 8);
231
232 /* Body of reply to OFPMP_QUEUE_DESC request. */
233 struct ofp14_queue_desc {
234     ovs_be32 port_no;           /* Port this queue is attached to. */
235     ovs_be32 queue_id;          /* ID for the specific queue. */
236     ovs_be16 len;               /* Length in bytes of this queue desc. */
237     uint8_t pad[6];             /* 64-bit alignment. */
238 };
239 OFP_ASSERT(sizeof(struct ofp14_queue_desc) == 16);
240
241 enum ofp14_queue_desc_prop_type {
242     OFPQDPT14_MIN_RATE = 1,
243     OFPQDPT14_MAX_RATE = 2,
244     OFPQDPT14_EXPERIMENTER = 0xffff
245 };
246
247 /* ## -------------- ## */
248 /* ## Miscellaneous. ## */
249 /* ## -------------- ## */
250
251 /* Request forward reason */
252 enum ofp14_requestforward_reason {
253     OFPRFR_GROUP_MOD = 0,      /* Forward group mod requests. */
254     OFPRFR_METER_MOD = 1,      /* Forward meter mod requests. */
255     OFPRFR_N_REASONS           /* Denotes number of reasons. */
256 };
257
258 /* Role status event message. */
259 struct ofp14_role_status {
260     ovs_be32 role;              /* One of OFPCR_ROLE_*. */
261     uint8_t  reason;            /* One of OFPCRR_*. */
262     uint8_t  pad[3];            /* Align to 64 bits. */
263     ovs_be64 generation_id;     /* Master Election Generation Id */
264
265     /* Followed by a list of struct ofp14_role_prop_header */
266 };
267 OFP_ASSERT(sizeof(struct ofp14_role_status) == 16);
268
269 /* What changed about the controller role */
270 enum ofp14_controller_role_reason {
271     OFPCRR_MASTER_REQUEST = 0,  /* Another controller asked to be master. */
272     OFPCRR_CONFIG         = 1,  /* Configuration changed on the switch. */
273     OFPCRR_EXPERIMENTER   = 2,  /* Experimenter data changed. */
274     OFPCRR_N_REASONS            /* Denotes number of reasons. */
275 };
276
277 /* Role property types.
278 */
279 enum ofp14_role_prop_type {
280     OFPRPT_EXPERIMENTER         = 0xFFFF, /* Experimenter property. */
281 };
282
283 /* Group/Meter request forwarding. */
284 struct ofp14_requestforward {
285     struct ofp_header request;  /* Request being forwarded. */
286 };
287 OFP_ASSERT(sizeof(struct ofp14_requestforward) == 8);
288
289 /* Bundle control message types */
290 enum ofp14_bundle_ctrl_type {
291     OFPBCT_OPEN_REQUEST    = 0,
292     OFPBCT_OPEN_REPLY      = 1,
293     OFPBCT_CLOSE_REQUEST   = 2,
294     OFPBCT_CLOSE_REPLY     = 3,
295     OFPBCT_COMMIT_REQUEST  = 4,
296     OFPBCT_COMMIT_REPLY    = 5,
297     OFPBCT_DISCARD_REQUEST = 6,
298     OFPBCT_DISCARD_REPLY   = 7,
299 };
300
301 /* Bundle configuration flags. */
302 enum ofp14_bundle_flags {
303     OFPBF_ATOMIC  = 1 << 0,  /* Execute atomically. */
304     OFPBF_ORDERED = 1 << 1,  /* Execute in specified order. */
305 };
306
307 /* Message structure for OFPT_BUNDLE_CONTROL and OFPT_BUNDLE_ADD_MESSAGE. */
308 struct ofp14_bundle_ctrl_msg {
309     ovs_be32 bundle_id;     /* Identify the bundle. */
310     ovs_be16 type;          /* OFPT_BUNDLE_CONTROL: one of OFPBCT_*.
311                              * OFPT_BUNDLE_ADD_MESSAGE: not used. */
312     ovs_be16 flags;         /* Bitmap of OFPBF_* flags. */
313     /* Followed by:
314      * - For OFPT_BUNDLE_ADD_MESSAGE only, an encapsulated OpenFlow message,
315      *   beginning with an ofp_header whose xid is identical to this message's
316      *   outer xid.
317      * - For OFPT_BUNDLE_ADD_MESSAGE only, and only if at least one property is
318      *   present, 0 to 7 bytes of padding to align on a 64-bit boundary.
319      * - Zero or more properties (see struct ofp14_bundle_prop_header). */
320 };
321 OFP_ASSERT(sizeof(struct ofp14_bundle_ctrl_msg) == 8);
322
323 /* Body for ofp14_multipart_request of type OFPMP_FLOW_MONITOR.
324  *
325  * The OFPMP_FLOW_MONITOR request's body consists of an array of zero or more
326  * instances of this structure. The request arranges to monitor the flows
327  * that match the specified criteria, which are interpreted in the same way as
328  * for OFPMP_FLOW.
329  *
330  * 'id' identifies a particular monitor for the purpose of allowing it to be
331  * canceled later with OFPFMC_DELETE. 'id' must be unique among
332  * existing monitors that have not already been canceled.
333  */
334 struct ofp14_flow_monitor_request {
335     ovs_be32 monitor_id;        /* Controller-assigned ID for this monitor. */
336     ovs_be32 out_port;          /* Required output port, if not OFPP_ANY. */
337     ovs_be32 out_group;         /* Required output port, if not OFPG_ANY. */
338     ovs_be16 flags;             /* OFPMF14_*. */
339     uint8_t table_id;           /* One table's ID or OFPTT_ALL (all tables). */
340     uint8_t command;            /* One of OFPFMC14_*. */
341     /* Followed by an ofp11_match structure. */
342 };
343 OFP_ASSERT(sizeof(struct ofp14_flow_monitor_request) == 16);
344
345 /* Flow monitor commands */
346 enum ofp14_flow_monitor_command {
347     OFPFMC14_ADD = 0, /* New flow monitor. */
348     OFPFMC14_MODIFY = 1, /* Modify existing flow monitor. */
349     OFPFMC14_DELETE = 2, /* Delete/cancel existing flow monitor. */
350 };
351
352 /* 'flags' bits in struct of_flow_monitor_request. */
353 enum ofp14_flow_monitor_flags {
354     /* When to send updates. */
355     /* Common to NX and OpenFlow 1.4 */
356     OFPFMF14_INITIAL = 1 << 0,     /* Initially matching flows. */
357     OFPFMF14_ADD = 1 << 1,         /* New matching flows as they are added. */
358     OFPFMF14_REMOVED = 1 << 2,     /* Old matching flows as they are removed. */
359     OFPFMF14_MODIFY = 1 << 3,      /* Matching flows as they are changed. */
360
361     /* What to include in updates. */
362     /* Common to NX and OpenFlow 1.4 */
363     OFPFMF14_INSTRUCTIONS = 1 << 4, /* If set, instructions are included. */
364     OFPFMF14_NO_ABBREV = 1 << 5,    /* If set, include own changes in full. */
365     /* OpenFlow 1.4 */
366     OFPFMF14_ONLY_OWN = 1 << 6,     /* If set, don't include other controllers.
367                                      */
368 };
369
370 #endif /* openflow/openflow-1.4.h */