Import from old repository commit 61ef2b42a9c4ba8e1600f15bb0236765edc2ad45.
[sliver-openvswitch.git] / include / openflow / openflow-mgmt.h
1 /*
2  * Copyright (c) 2009 Nicira Networks.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef OPENFLOW_OPENFLOW_MGMT_H
18 #define OPENFLOW_OPENFLOW_MGMT_H 1
19
20 #include "openflow/nicira-ext.h"
21
22 enum ofmp_type {
23     OFMPT_CAPABILITY_REQUEST,
24     OFMPT_CAPABILITY_REPLY,
25     OFMPT_RESOURCES_REQUEST,
26     OFMPT_RESOURCES_UPDATE,
27     OFMPT_CONFIG_REQUEST,
28     OFMPT_CONFIG_UPDATE,
29     OFMPT_CONFIG_UPDATE_ACK,
30     OFMPT_ERROR
31 };
32
33 /* Header on all OpenFlow management packets. */
34 struct ofmp_header {
35     struct nicira_header header;
36     uint16_t type;           /* One of OFMPT_* above. */
37     uint8_t pad[2];
38 };
39 OFP_ASSERT(sizeof(struct ofmp_header) == sizeof(struct nicira_header) + 4);
40
41
42 /* Generic TLV header. */
43 struct ofmp_tlv {
44     uint16_t type;        /* Type of value (one of OFMPTLV_*). */
45     uint16_t len;         /* Length of TLV (includes this header). */
46     uint8_t data[0];      /* Value of data as defined by type and length. */
47 };
48 OFP_ASSERT(sizeof(struct ofmp_tlv) == 4);
49
50 /* Universal TLV terminator.  Used to indicate end of TLV list. */
51 struct ofmp_tlv_end {
52     uint16_t type;        /* Type is 0. */
53     uint16_t len;         /* Length is 4. */
54 };
55 OFP_ASSERT(sizeof(struct ofmp_tlv_end) == 4);
56
57
58 /* Bitmask of capability description styles. */
59 enum ofmp_capability_format {
60     OFMPCAF_SIMPLE  = 0 << 0,             /* "ovs-vswitchd.conf" style. */
61 };
62
63 /* Body of capbility request.
64  *
65  * OFMPT_CAPABILITY_REQUEST (controller -> switch) */
66 struct ofmp_capability_request {
67     struct ofmp_header header;
68     uint32_t format;                      /* One of OFMPCAF_*. */
69 };
70 OFP_ASSERT(sizeof(struct ofmp_capability_request) == 24);
71
72 /* Body of reply to capability request.  
73  *
74  * OFMPT_CAPABILITY_REPLY (switch -> controller). */
75 struct ofmp_capability_reply {
76     struct ofmp_header header;
77     uint32_t format;                      /* One of OFMPCAF_*. */
78     uint64_t mgmt_id;                     /* Management ID. */
79     uint8_t data[0];
80 };
81 OFP_ASSERT(sizeof(struct ofmp_capability_reply) == 32);
82
83
84 /* Resource TLV for datapath description. */
85 struct ofmptsr_dp {
86     uint16_t type;                        /* OFMPTSR_DP. */
87     uint16_t len;                         /* 28. */
88     uint8_t pad[4];
89     uint64_t dp_id;                       /* Datapath ID. */
90     uint8_t name[OFP_MAX_PORT_NAME_LEN];  /* Null-terminated name. */
91 };
92 OFP_ASSERT(sizeof(struct ofmptsr_dp) == 32);
93
94 /* TLV types for switch resource descriptions. */
95 enum ofmp_switch_resources {
96     OFMPTSR_END = 0,                      /* Terminator. */
97     OFMPTSR_DP,                           /* Datapath. */
98 };
99
100 /* Body of resources request.
101  *
102  * OFMPT_RESOURCES_REQUEST (controller -> switch) */
103 struct ofmp_resources_request {
104     struct ofmp_header header;
105 };
106
107 /* Body of capbility update.  Sent in response to a resources request or
108  * sent asynchronously when resources change on the switch. 
109  *
110  * OFMPT_RESOURCES_UPDATE (switch -> controller) */
111 struct ofmp_resources_update {
112     struct ofmp_header header;
113     uint8_t data[0];
114 };
115 OFP_ASSERT(sizeof(struct ofmp_resources_update) == 20);
116
117
118 /* Bitmask of capability description styles. */
119 enum ofmp_config_format {
120     OFMPCOF_SIMPLE  = 0 << 0,           /* "ovs-vswitchd.conf" style. */
121 };
122
123 #define CONFIG_COOKIE_LEN 20
124
125 /* Body of configuration request.
126  *
127  * OFMPT_CONFIG_REQUEST (controller -> switch) */
128 struct ofmp_config_request {
129     struct ofmp_header header;
130     uint32_t format;                    /* One of OFMPCOF_*. */
131 };
132 OFP_ASSERT(sizeof(struct ofmp_config_request) == 24);
133
134 /* Body of configuration update.  Sent in response to a configuration 
135  * request from the controller.  May be sent asynchronously by either
136  * the controller or switch to modify configuration or notify of
137  * changes, respectively.  If sent by the controller, the switch must
138  * respond with a OFMPT_CONFIG_UPDATE_ACK.
139  *
140  * OFMPT_CONFIG_UPDATE (switch <-> controller) */
141 struct ofmp_config_update {
142     struct ofmp_header header;
143     uint32_t format;                    /* One of OFMPCOF_*. */
144     uint8_t cookie[CONFIG_COOKIE_LEN];  /* Cookie of config attempting to be
145                                          * replaced by this update. */
146     uint8_t data[0];
147 };
148 OFP_ASSERT(sizeof(struct ofmp_config_update) == 44);
149
150 /* Bitmask of configuration update ack flags. */
151 enum ofmp_config_update_ack_flags {
152     OFMPCUAF_SUCCESS = 1 << 0,          /* Config succeeded. */
153 };
154
155 /* Body of configuration update ack.  Sent in response to a configuration 
156  * udpate request.
157  *
158  * OFMPT_CONFIG_UPDATE_ACK (switch -> controller) */
159 struct ofmp_config_update_ack {
160     struct ofmp_header header;
161     uint32_t format;                    /* One of OFMPCOF_*. */
162     uint32_t flags;                     /* One of OFMPCUAF_*. */
163     uint8_t cookie[CONFIG_COOKIE_LEN];  /* Cookie of current configuration 
164                                          * being used in the switch. */
165 };
166 OFP_ASSERT(sizeof(struct ofmp_config_update_ack) == 48);
167
168 /* Values for 'type' in ofmp_error_msg. */
169 enum ofmp_error_type {
170     OFMPET_BAD_CONFIG                   /* Problem with configuration. */
171 };
172
173 /* ofmp_error_msg 'code' values for OFMPET_BAD_CONFIG.  'data' contains
174  * at least the first 64 bytes of the failed request. */
175 enum ofmp_bad_config_code {
176     OFMPBCC_BUSY,                       /* Config updating, try again. */
177     OFMPBCC_OLD_COOKIE,                 /* Config has changed. */
178 };
179
180 /* Body of error message.  May be sent by either the switch or the
181  * controller to indicate some error condition.
182  *
183  * OFMPT_ERROR (switch <-> controller) */
184 struct ofmp_error_msg {
185     struct ofmp_header header;
186
187     uint16_t type;            /* One of OFMPET_*. */
188     uint16_t code;            /* Code depending on 'type'. */
189     uint8_t data[0];          /* Variable-length data.  Interpreted based 
190                                  on the type and code. */
191 };
192 OFP_ASSERT(sizeof(struct ofmp_error_msg) == 24);
193
194 #endif /* openflow/openflow-mgmt.h */