nx-match: Reject bad wildcard combinations.
[cascardo/ovs.git] / lib / ofp-errors.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
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_ERRORS_H
18 #define OFP_ERRORS_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include <stdint.h>
23
24 #include "openflow/openflow.h"
25
26 struct ds;
27 struct ofpbuf;
28
29 /* Error codes.
30  *
31  * We embed system errno values and OpenFlow standard and vendor extension
32  * error codes into the positive range of "int":
33  *
34  *   - Errno values are assumed to use the range 1 through 2**30 - 1.
35  *
36  *     (C and POSIX say that errno values are positive.  We assume that they
37  *     are less than 2**29.  They are actually less than 65536 on at least
38  *     Linux, FreeBSD, OpenBSD, and Windows.)
39  *
40  *   - OpenFlow standard and vendor extension error codes use the range
41  *     starting at 2**30 (OFPERR_OFS).
42  *
43  * Zero and negative values are not used.
44  */
45
46 #define OFPERR_OFS (1 << 30)
47
48 /* OpenFlow error codes.
49  *
50  * The comments below are parsed by the extract-ofp-errors program at build
51  * time and used to determine the mapping between "enum ofperr" constants and
52  * error type/code values used in the OpenFlow protocol:
53  *
54  *   - The first part of each comment specifies the vendor, OpenFlow versions,
55  *     type, and sometimes a code for each protocol that supports the error:
56  *
57  *         # The vendor is OF for standard OpenFlow error codes.  Otherwise it
58  *           is one of the *_VENDOR_ID codes defined in openflow-common.h.
59  *
60  *         # The version can specify a specific OpenFlow version, a version
61  *           range delimited by "-", or an open-ended range with "+".
62  *
63  *         # Standard OpenFlow errors have both a type and a code.  Extension
64  *           errors generally have only a type, no code.  There is one
65  *           exception: Nicira extension (NX) errors for OpenFlow 1.0 and 1.1
66  *           have both a type and a code.  (This means that the version
67  *           specification for NX errors may not include version 1.0 or 1.1 (or
68  *           both) along with version 1.2 or later, because the requirements
69  *           for those versions are different.)
70  *
71  *   - Additional text is a human-readable description of the meaning of each
72  *     error, used to explain the error to the user.  Any text enclosed in
73  *     square brackets is omitted; this can be used to explain rationale for
74  *     choice of error codes in the case where this is desirable. */
75 enum ofperr {
76 /* Expected duplications. */
77
78     /* Expected: 0x0,3,5 in OF1.1 means both OFPBIC_BAD_EXPERIMENTER and
79      * OFPBIC_BAD_EXP_TYPE. */
80
81 /* ## ------------------ ## */
82 /* ## OFPET_HELLO_FAILED ## */
83 /* ## ------------------ ## */
84
85     /* OF1.0+(0,0).  No compatible version. */
86     OFPERR_OFPHFC_INCOMPATIBLE = OFPERR_OFS,
87
88     /* OF1.0+(0,1).  Permissions error. */
89     OFPERR_OFPHFC_EPERM,
90
91 /* ## ----------------- ## */
92 /* ## OFPET_BAD_REQUEST ## */
93 /* ## ----------------- ## */
94
95     /* OF1.0+(1,0).  ofp_header.version not supported. */
96     OFPERR_OFPBRC_BAD_VERSION,
97
98     /* OF1.0+(1,1).  ofp_header.type not supported. */
99     OFPERR_OFPBRC_BAD_TYPE,
100
101     /* OF1.0+(1,2).  ofp_stats_msg.type not supported. */
102     OFPERR_OFPBRC_BAD_STAT,
103
104     /* OF1.0+(1,3).  Vendor not supported (in ofp_vendor_header or
105      * ofp_stats_msg). */
106     OFPERR_OFPBRC_BAD_VENDOR,
107
108     /* OF1.0+(1,4).  Vendor subtype not supported. */
109     OFPERR_OFPBRC_BAD_SUBTYPE,
110
111     /* OF1.0+(1,5).  Permissions error. */
112     OFPERR_OFPBRC_EPERM,
113
114     /* OF1.0+(1,6).  Wrong request length for type. */
115     OFPERR_OFPBRC_BAD_LEN,
116
117     /* OF1.0+(1,7).  Specified buffer has already been used. */
118     OFPERR_OFPBRC_BUFFER_EMPTY,
119
120     /* OF1.0+(1,8).  Specified buffer does not exist. */
121     OFPERR_OFPBRC_BUFFER_UNKNOWN,
122
123     /* NX1.0(1,512), OF1.1+(1,9).  Specified table-id invalid or does not exist.
124      * [ A non-standard error (1,512), formerly OFPERR_NXBRC_BAD_TABLE_ID,
125      *   is used for OpenFlow 1.0 as there seems to be no appropriate error
126      *   code defined the specification. ] */
127     OFPERR_OFPBRC_BAD_TABLE_ID,
128
129     /* OF1.2+(1,10).  Denied because controller is slave. */
130     OFPERR_OFPBRC_IS_SLAVE,
131
132     /* NX1.0-1.1(1,514), OF1.2+(1,11).  Invalid port.  [ A non-standard error
133      * (1,514), formerly OFPERR_NXBRC_BAD_IN_PORT is used for OpenFlow 1.0 and
134      * 1.1 as there seems to be no appropriate error code defined the
135      * specifications. ] */
136     OFPERR_OFPBRC_BAD_PORT,
137
138     /* OF1.2+(1,12).  Invalid packet in packet-out. */
139     OFPERR_OFPBRC_BAD_PACKET,
140
141     /* OF1.3+(1,13).  Multipart request overflowed the assigned buffer. */
142     OFPERR_OFPBRC_MULTIPART_BUFFER_OVERFLOW,
143
144     /* NX1.0-1.1(1,256), NX1.2+(2).  Invalid NXM flow match. */
145     OFPERR_NXBRC_NXM_INVALID,
146
147     /* NX1.0-1.1(1,257), NX1.2+(3).  The nxm_type, or nxm_type taken in
148      * combination with nxm_hasmask or nxm_length or both, is invalid or not
149      * implemented. */
150     OFPERR_NXBRC_NXM_BAD_TYPE,
151
152     /* NX1.0-1.1(1,515), NX1.2+(4).  Must-be-zero field had nonzero value. */
153     OFPERR_NXBRC_MUST_BE_ZERO,
154
155     /* NX1.0-1.1(1,516), NX1.2+(5).  The reason in an ofp_port_status message
156      * is not valid. */
157     OFPERR_NXBRC_BAD_REASON,
158
159     /* NX1.0-1.1(1,520), NX1.2+(9).  The 'event' in an NXST_FLOW_MONITOR reply
160      * does not specify one of the NXFME_ABBREV, NXFME_ADD, NXFME_DELETE, or
161      * NXFME_MODIFY. */
162     OFPERR_NXBRC_FM_BAD_EVENT,
163
164     /* NX1.0-1.1(1,521), NX1.2+(10).  The error that occurred cannot be
165      * represented in this OpenFlow version. */
166     OFPERR_NXBRC_UNENCODABLE_ERROR,
167
168 /* ## ---------------- ## */
169 /* ## OFPET_BAD_ACTION ## */
170 /* ## ---------------- ## */
171
172     /* OF1.0+(2,0).  Unknown action type. */
173     OFPERR_OFPBAC_BAD_TYPE,
174
175     /* OF1.0+(2,1).  Length problem in actions. */
176     OFPERR_OFPBAC_BAD_LEN,
177
178     /* OF1.0+(2,2).  Unknown experimenter id specified. */
179     OFPERR_OFPBAC_BAD_VENDOR,
180
181     /* OF1.0+(2,3).  Unknown action type for experimenter id. */
182     OFPERR_OFPBAC_BAD_VENDOR_TYPE,
183
184     /* OF1.0+(2,4).  Problem validating output port. */
185     OFPERR_OFPBAC_BAD_OUT_PORT,
186
187     /* OF1.0+(2,5).  Bad action argument. */
188     OFPERR_OFPBAC_BAD_ARGUMENT,
189
190     /* OF1.0+(2,6).  Permissions error. */
191     OFPERR_OFPBAC_EPERM,
192
193     /* OF1.0+(2,7).  Can't handle this many actions. */
194     OFPERR_OFPBAC_TOO_MANY,
195
196     /* OF1.0+(2,8).  Problem validating output queue. */
197     OFPERR_OFPBAC_BAD_QUEUE,
198
199     /* OF1.1+(2,9).  Invalid group id in forward action. */
200     OFPERR_OFPBAC_BAD_OUT_GROUP,
201
202     /* NX1.0(1,522), OF1.1+(2,10).  Action can't apply for this match or a
203      * prerequisite for use of this field is unmet. */
204     OFPERR_OFPBAC_MATCH_INCONSISTENT,
205
206     /* OF1.1+(2,11).  Action order is unsupported for the action list in an
207      * Apply-Actions instruction */
208     OFPERR_OFPBAC_UNSUPPORTED_ORDER,
209
210     /* OF1.1+(2,12).  Actions uses an unsupported tag/encap. */
211     OFPERR_OFPBAC_BAD_TAG,
212
213     /* NX1.0-1.1(1,523), OF1.2+(2,13).  Action uses unknown or unsupported OXM
214      * or NXM field. */
215     OFPERR_OFPBAC_BAD_SET_TYPE,
216
217     /* NX1.0-1.1(1,524), OF1.2+(2,14).  Action references past the end of an
218      * OXM or NXM field, or uses a length of zero. */
219     OFPERR_OFPBAC_BAD_SET_LEN,
220
221     /* NX1.0-1.1(1,525), OF1.2+(2,15).  Action sets a field to an invalid or
222      * unsupported value, or modifies a read-only field. */
223     OFPERR_OFPBAC_BAD_SET_ARGUMENT,
224
225     /* NX1.3-1.4(14), OF1.5+(2,16).  Field in Set-Field action has Has-Mask bit
226      * set to 1. */
227     OFPERR_OFPBAC_BAD_SET_MASK,
228
229     /* NX1.0-1.1(2,256), NX1.2+(11).  Must-be-zero action argument had nonzero
230      * value. */
231     OFPERR_NXBAC_MUST_BE_ZERO,
232
233 /* ## --------------------- ## */
234 /* ## OFPET_BAD_INSTRUCTION ## */
235 /* ## --------------------- ## */
236
237     /* OF1.1+(3,0).  Unknown instruction. */
238     OFPERR_OFPBIC_UNKNOWN_INST,
239
240     /* NX1.0(2,257), OF1.1+(3,1).  Switch or table does not support the
241      * instruction. */
242     OFPERR_OFPBIC_UNSUP_INST,
243
244     /* OF1.1+(3,2).  Invalid Table-ID specified. */
245     OFPERR_OFPBIC_BAD_TABLE_ID,
246
247     /* OF1.1+(3,3).  Metadata value unsupported by datapath. */
248     OFPERR_OFPBIC_UNSUP_METADATA,
249
250     /* OF1.1+(3,4).  Metadata mask value unsupported by datapath. */
251     OFPERR_OFPBIC_UNSUP_METADATA_MASK,
252
253     /* OF1.1+(3,5).  Unknown experimenter id specified. */
254     OFPERR_OFPBIC_BAD_EXPERIMENTER,
255
256     /* OF1.1(3,5), OF1.2+(3,6).  Unknown instruction for experimenter id. */
257     OFPERR_OFPBIC_BAD_EXP_TYPE,
258
259     /* OF1.2+(3,7).  Length problem in instructions. */
260     OFPERR_OFPBIC_BAD_LEN,
261
262     /* OF1.2+(3,8).  Permissions error. */
263     OFPERR_OFPBIC_EPERM,
264
265     /* NX1.1(3,256), ONF1.2-1.3(2600), OF1.4+(3,9).  Duplicate instruction. */
266     OFPERR_OFPBIC_DUP_INST,
267
268 /* ## --------------- ## */
269 /* ## OFPET_BAD_MATCH ## */
270 /* ## --------------- ## */
271
272     /* OF1.1+(4,0).  Unsupported match type specified by the match */
273     OFPERR_OFPBMC_BAD_TYPE,
274
275     /* OF1.1+(4,1).  Length problem in match. */
276     OFPERR_OFPBMC_BAD_LEN,
277
278     /* OF1.1+(4,2).  Match uses an unsupported tag/encap. */
279     OFPERR_OFPBMC_BAD_TAG,
280
281     /* OF1.1+(4,3).  Unsupported datalink addr mask - switch does not support
282      * arbitrary datalink address mask. */
283     OFPERR_OFPBMC_BAD_DL_ADDR_MASK,
284
285     /* OF1.1+(4,4).  Unsupported network addr mask - switch does not support
286      * arbitrary network address mask. */
287     OFPERR_OFPBMC_BAD_NW_ADDR_MASK,
288
289     /* NX1.0(1,262), OF1.1+(4,5).  Unsupported wildcard specified in the
290      * match. */
291     OFPERR_OFPBMC_BAD_WILDCARDS,
292
293     /* OF1.1+(4,6).  Unsupported field in the match. */
294     OFPERR_OFPBMC_BAD_FIELD,
295
296     /* NX1.0(1,258), OF1.1+(4,7).  Unsupported value in a match
297      * field. */
298     OFPERR_OFPBMC_BAD_VALUE,
299
300     /* NX1.0-1.1(1,259), OF1.2+(4,8).  Unsupported mask specified in the match,
301      * field is not dl-address or nw-address. */
302     OFPERR_OFPBMC_BAD_MASK,
303
304     /* NX1.0-1.1(1,260), OF1.2+(4,9).  A prerequisite was not met. */
305     OFPERR_OFPBMC_BAD_PREREQ,
306
307     /* NX1.0-1.1(1,261), OF1.2+(4,10).  A field type was duplicated. */
308     OFPERR_OFPBMC_DUP_FIELD,
309
310     /* OF1.2+(4,11).  Permissions error. */
311     OFPERR_OFPBMC_EPERM,
312
313 /* ## --------------------- ## */
314 /* ## OFPET_FLOW_MOD_FAILED ## */
315 /* ## --------------------- ## */
316
317     /* OF1.1+(5,0).  Unspecified error. */
318     OFPERR_OFPFMFC_UNKNOWN,
319
320     /* OF1.0(3,0), OF1.1+(5,1).  Flow not added because of full table(s). */
321     OFPERR_OFPFMFC_TABLE_FULL,
322
323     /* OF1.1+(5,2).  Table does not exist */
324     OFPERR_OFPFMFC_BAD_TABLE_ID,
325
326     /* OF1.0(3,1), OF1.1+(5,3).  Attempted to add overlapping flow with
327      * CHECK_OVERLAP flag set. */
328     OFPERR_OFPFMFC_OVERLAP,
329
330     /* OF1.0(3,2), OF1.1+(5,4).  Permissions error. */
331     OFPERR_OFPFMFC_EPERM,
332
333     /* OF1.1+(5,5).  Flow not added because of unsupported idle/hard
334      * timeout. */
335     OFPERR_OFPFMFC_BAD_TIMEOUT,
336
337     /* OF1.0(3,3).  Flow not added because of non-zero idle/hard timeout. */
338     OFPERR_OFPFMFC_BAD_EMERG_TIMEOUT,
339
340     /* OF1.0(3,4), OF1.1+(5,6).  Unsupported or unknown command. */
341     OFPERR_OFPFMFC_BAD_COMMAND,
342
343     /* NX1.0(3,258), NX1.1(5,258), OF1.2+(5,7).  Unsupported or unknown
344      * flags. */
345     OFPERR_OFPFMFC_BAD_FLAGS,
346
347     /* OF1.0(3,5).  Unsupported action list - cannot process in the order
348      * specified. */
349     OFPERR_OFPFMFC_UNSUPPORTED,
350
351     /* NX1.0-1.1(5,256), NX1.2+(12).  Generic hardware error. */
352     OFPERR_NXFMFC_HARDWARE,
353
354     /* NX1.0-1.1(5,257), NX1.2+(13).  A nonexistent table ID was specified in
355      * the "command" field of struct ofp_flow_mod, when the
356      * nxt_flow_mod_table_id extension is enabled. */
357     OFPERR_NXFMFC_BAD_TABLE_ID,
358
359 /* ## ---------------------- ## */
360 /* ## OFPET_GROUP_MOD_FAILED ## */
361 /* ## ---------------------- ## */
362
363     /* OF1.1+(6,0).  Group not added because a group ADD attempted to replace
364      * an already-present group. */
365     OFPERR_OFPGMFC_GROUP_EXISTS,
366
367     /* OF1.1+(6,1).  Group not added because Group specified is invalid. */
368     OFPERR_OFPGMFC_INVALID_GROUP,
369
370     /* OF1.1+(6,2).  Switch does not support unequal load sharing with select
371      * groups. */
372     OFPERR_OFPGMFC_WEIGHT_UNSUPPORTED,
373
374     /* OF1.1+(6,3).  The group table is full. */
375     OFPERR_OFPGMFC_OUT_OF_GROUPS,
376
377     /* OF1.1+(6,4).  The maximum number of action buckets for a group has been
378      * exceeded. */
379     OFPERR_OFPGMFC_OUT_OF_BUCKETS,
380
381     /* OF1.1+(6,5).  Switch does not support groups that forward to groups. */
382     OFPERR_OFPGMFC_CHAINING_UNSUPPORTED,
383
384     /* OF1.1+(6,6).  This group cannot watch the watch_port or watch_group
385      * specified. */
386     OFPERR_OFPGMFC_WATCH_UNSUPPORTED,
387
388     /* OF1.1+(6,7).  Group entry would cause a loop. */
389     OFPERR_OFPGMFC_LOOP,
390
391     /* OF1.1+(6,8).  Group not modified because a group MODIFY attempted to
392      * modify a non-existent group. */
393     OFPERR_OFPGMFC_UNKNOWN_GROUP,
394
395     /* OF1.2+(6,9).  Group not deleted because another
396                     group is forwarding to it. */
397     OFPERR_OFPGMFC_CHAINED_GROUP,
398
399     /* OF1.2+(6,10).  Unsupported or unknown group type. */
400     OFPERR_OFPGMFC_BAD_TYPE,
401
402     /* OF1.2+(6,11).  Unsupported or unknown command. */
403     OFPERR_OFPGMFC_BAD_COMMAND,
404
405     /* OF1.2+(6,12).  Error in bucket. */
406     OFPERR_OFPGMFC_BAD_BUCKET,
407
408     /* OF1.2+(6,13).  Error in watch port/group. */
409     OFPERR_OFPGMFC_BAD_WATCH,
410
411     /* OF1.2+(6,14).  Permissions error. */
412     OFPERR_OFPGMFC_EPERM,
413
414 /* ## --------------------- ## */
415 /* ## OFPET_PORT_MOD_FAILED ## */
416 /* ## --------------------- ## */
417
418     /* OF1.0(4,0), OF1.1+(7,0).  Specified port does not exist. */
419     OFPERR_OFPPMFC_BAD_PORT,
420
421     /* OF1.0(4,1), OF1.1+(7,1).  Specified hardware address does not match the
422      * port number. */
423     OFPERR_OFPPMFC_BAD_HW_ADDR,
424
425     /* OF1.1+(7,2).  Specified config is invalid. */
426     OFPERR_OFPPMFC_BAD_CONFIG,
427
428     /* OF1.1+(7,3).  Specified advertise is invalid. */
429     OFPERR_OFPPMFC_BAD_ADVERTISE,
430
431     /* OF1.2+(7,4).  Permissions error. */
432     OFPERR_OFPPMFC_EPERM,
433
434 /* ## ---------------------- ## */
435 /* ## OFPET_TABLE_MOD_FAILED ## */
436 /* ## ---------------------- ## */
437
438     /* OF1.1+(8,0).  Specified table does not exist. */
439     OFPERR_OFPTMFC_BAD_TABLE,
440
441     /* OF1.1+(8,1).  Specified config is invalid. */
442     OFPERR_OFPTMFC_BAD_CONFIG,
443
444     /* OF1.2+(8,2).  Permissions error. */
445     OFPERR_OFPTMFC_EPERM,
446
447 /* ## --------------------- ## */
448 /* ## OFPET_QUEUE_OP_FAILED ## */
449 /* ## --------------------- ## */
450
451     /* OF1.0(5,0), OF1.1+(9,0).  Invalid port (or port does not exist). */
452     OFPERR_OFPQOFC_BAD_PORT,
453
454     /* OF1.0(5,1), OF1.1+(9,1).  Queue does not exist. */
455     OFPERR_OFPQOFC_BAD_QUEUE,
456
457     /* OF1.0(5,2), OF1.1+(9,2).  Permissions error. */
458     OFPERR_OFPQOFC_EPERM,
459
460 /* ## -------------------------- ## */
461 /* ## OFPET_SWITCH_CONFIG_FAILED ## */
462 /* ## -------------------------- ## */
463
464     /* OF1.1+(10,0).  Specified flags is invalid. */
465     OFPERR_OFPSCFC_BAD_FLAGS,
466
467     /* OF1.1+(10,1).  Specified len is invalid. */
468     OFPERR_OFPSCFC_BAD_LEN,
469
470     /* OF1.2+(10,2).  Permissions error. */
471     OFPERR_OFPSCFC_EPERM,
472
473 /* ## ------------------------- ## */
474 /* ## OFPET_ROLE_REQUEST_FAILED ## */
475 /* ## ------------------------- ## */
476
477     /* OF1.2+(11,0).  Stale Message: old generation_id. */
478     OFPERR_OFPRRFC_STALE,
479
480     /* OF1.2+(11,1).  Controller role change unsupported. */
481     OFPERR_OFPRRFC_UNSUP,
482
483     /* NX1.0-1.1(1,513), OF1.2+(11,2).  Invalid role. */
484     OFPERR_OFPRRFC_BAD_ROLE,
485
486 /* ## ---------------------- ## */
487 /* ## OFPET_METER_MOD_FAILED ## */
488 /* ## ---------------------- ## */
489
490     /* OF1.3+(12,0).  Unspecified error. */
491     OFPERR_OFPMMFC_UNKNOWN,
492
493     /* OF1.3+(12,1).  Meter not added because a Meter ADD attempted to
494      * replace an existing Meter. */
495     OFPERR_OFPMMFC_METER_EXISTS,
496
497     /* OF1.3+(12,2).  Meter not added because Meter specified is invalid. */
498     OFPERR_OFPMMFC_INVALID_METER,
499
500     /* OF1.3+(12,3).  Meter not modified because a Meter MODIFY attempted
501      * to modify a non-existent Meter. */
502     OFPERR_OFPMMFC_UNKNOWN_METER,
503
504     /* OF1.3+(12,4).  Unsupported or unknown command. */
505     OFPERR_OFPMMFC_BAD_COMMAND,
506
507     /* OF1.3+(12,5).  Flag configuration unsupported. */
508     OFPERR_OFPMMFC_BAD_FLAGS,
509
510     /* OF1.3+(12,6).  Rate unsupported. */
511     OFPERR_OFPMMFC_BAD_RATE,
512
513     /* OF1.3+(12,7).  Burst size unsupported. */
514     OFPERR_OFPMMFC_BAD_BURST,
515
516     /* OF1.3+(12,8).  Band unsupported. */
517     OFPERR_OFPMMFC_BAD_BAND,
518
519     /* OF1.3+(12,9).  Band value unsupported. */
520     OFPERR_OFPMMFC_BAD_BAND_VALUE,
521
522     /* OF1.3+(12,10).  No more meters available. */
523     OFPERR_OFPMMFC_OUT_OF_METERS,
524
525     /* OF1.3+(12,11).  The maximum number of properties for a meter has
526      * been exceeded. */
527     OFPERR_OFPMMFC_OUT_OF_BANDS,
528
529 /* ## --------------------------- ## */
530 /* ## OFPET_TABLE_FEATURES_FAILED ## */
531 /* ## --------------------------- ## */
532
533     /* OF1.3+(13,0).  Specified table does not exist. */
534     OFPERR_OFPTFFC_BAD_TABLE,
535
536     /* OF1.3+(13,1).  Invalid metadata mask. */
537     OFPERR_OFPTFFC_BAD_METADATA,
538
539     /* OF1.3+(13,5).  Permissions error. */
540     OFPERR_OFPTFFC_EPERM,
541
542 /* ## ------------------ ## */
543 /* ## OFPET_BAD_PROPERTY ## */
544 /* ## ------------------ ## */
545
546     /* OF1.3(13,2), OF1.4+(14,0).  Unknown property type.
547      *
548      * [Known as OFPTFFC_BAD_TYPE in OF1.3.] */
549     OFPERR_OFPBPC_BAD_TYPE,
550
551     /* OF1.3(13,3), OF1.4+(14,1).  Length problem in property.
552      *
553      * [Known as OFPTFFC_BAD_LEN in OF1.3.] */
554     OFPERR_OFPBPC_BAD_LEN,
555
556     /* OF1.3(13,4), OF1.4+(14,2).  Unsupported property value.
557      *
558      * [Known as OFPTFFC_BAD_ARGUMENT in OF1.3.] */
559     OFPERR_OFPBPC_BAD_VALUE,
560
561     /* ONF1.3(4443), OF1.4+(14,3).  Can't handle this many properties. */
562     OFPERR_OFPBPC_TOO_MANY,
563
564     /* ONF1.3(4444), OF1.4+(14,4).  A property type was duplicated. */
565     OFPERR_OFPBPC_DUP_TYPE,
566
567     /* ONF1.3(4445), OF1.4+(14,5).  Unknown experimenter id specified. */
568     OFPERR_OFPBPC_BAD_EXPERIMENTER,
569
570     /* ONF1.3(4446), OF1.4+(14,6).  Unknown exp_type for experimenter id. */
571     OFPERR_OFPBPC_BAD_EXP_TYPE,
572
573     /* ONF1.3(4447), OF1.4+(14,7).  Unknown value for experimenter id. */
574     OFPERR_OFPBPC_BAD_EXP_VALUE,
575
576     /* ONF1.3(4448), OF1.4+(14,8).  Permissions error. */
577     OFPERR_OFPBPC_EPERM,
578
579 /* ## -------------------- ## */
580 /* ## OFPET_BUNDLE_FAILED  ## */
581 /* ## -------------------- ## */
582
583     /* OF1.4+(17,0).  Unspecified error. */
584     OFPERR_OFPBFC_UNKNOWN,
585
586     /* OF1.4+(17,1).  Permissions error. */
587     OFPERR_OFPBFC_EPERM,
588
589     /* OF1.4+(17,2).  Bundle ID doesn't exist. */
590     OFPERR_OFPBFC_BAD_ID,
591
592     /* OF1.4+(17,3).  Bundle ID already exists. */
593     OFPERR_OFPBFC_BUNDLE_EXIST,
594
595     /* OF1.4+(17,4).  Bundle ID is closed. */
596     OFPERR_OFPBFC_BUNDLE_CLOSED,
597
598     /* OF1.4+(17,5).  Too many bundle IDs. */
599     OFPERR_OFPBFC_OUT_OF_BUNDLES,
600
601     /* OF1.4+(17,6).  Unsupported of unknown message control type. */
602     OFPERR_OFPBFC_BAD_TYPE,
603
604     /* OF1.4+(17,7).  Unsupported, unknown, or inconsistent flags. */
605     OFPERR_OFPBFC_BAD_FLAGS,
606
607     /* OF1.4+(17,8).  Length problem in included message. */
608     OFPERR_OFPBFC_MSG_BAD_LEN,
609
610     /* OF1.4+(17,9).  Inconsistent or duplicate XID. */
611     OFPERR_OFPBFC_MSG_BAD_XID,
612
613     /* OF1.4+(17,10).  Unsupported message in this bundle. */
614     OFPERR_OFPBFC_MSG_UNSUP,
615
616     /* OF1.4+(17,11).  Unsupported message combination in this bundle. */
617     OFPERR_OFPBFC_MSG_CONFLICT,
618
619     /* OF1.4+(17,12).  Cant handle this many messages in bundle. */
620     OFPERR_OFPBFC_MSG_TOO_MANY,
621
622     /* OF1.4+(17,13).  One message in bundle failed. */
623     OFPERR_OFPBFC_MSG_FAILED,
624
625     /* OF1.4+(17,14).  Bundle is taking too long. */
626     OFPERR_OFPBFC_TIMEOUT,
627
628     /* OF1.4+(17,15).  Bundle is locking the resource. */
629     OFPERR_OFPBFC_BUNDLE_IN_PROGRESS,
630
631 /* ## ------------------------- ## */
632 /* ## OFPET_FLOW_MONITOR_FAILED ## */
633 /* ## ------------------------- ## */
634
635     /* OF1.4+(16,0).  Unspecified error. */
636     OFPERR_OFPMOFC_UNKNOWN,
637
638     /* NX1.0-1.1(1,517), NX1.2-1.3(6), OF1.4+(16,1).  Monitor not added
639      * because a Monitor ADD attempted to replace an existing Monitor. */
640     OFPERR_OFPMOFC_MONITOR_EXISTS,
641
642     /* OF1.4+(16,2).  Monitor not added because
643      * Monitor specified is invalid. */
644     OFPERR_OFPMOFC_INVALID_MONITOR,
645
646     /* NX1.0-1.1(1,519), NX1.2-1.3(8), OF1.4+(16,3).  Monitor not modified
647      * because a Monitor MODIFY attempted to modify a non-existent Monitor. */
648     OFPERR_OFPMOFC_UNKNOWN_MONITOR,
649
650     /* OF1.4+(16,4).  Unsupported or unknown command. */
651     OFPERR_OFPMOFC_BAD_COMMAND,
652
653     /* NX1.0-1.1(1,518), NX1.2-1.3(7), OF1.4+(16,5).  Flag configuration
654      * unsupported. */
655     OFPERR_OFPMOFC_BAD_FLAGS,
656
657     /* OF1.4+(16,6).  Specified table does not exist. */
658     OFPERR_OFPMOFC_BAD_TABLE_ID,
659
660     /* OF1.4+(16,7).  Error in output port/group. */
661     OFPERR_OFPMOFC_BAD_OUT,
662
663 /* ## ------------------ ## */
664 /* ## OFPET_EXPERIMENTER ## */
665 /* ## ------------------ ## */
666 };
667
668 const char *ofperr_domain_get_name(enum ofp_version);
669
670 bool ofperr_is_valid(enum ofperr);
671
672 enum ofperr ofperr_from_name(const char *);
673
674 enum ofperr ofperr_decode_msg(const struct ofp_header *,
675                               struct ofpbuf *payload);
676 struct ofpbuf *ofperr_encode_reply(enum ofperr, const struct ofp_header *);
677 struct ofpbuf *ofperr_encode_hello(enum ofperr, enum ofp_version ofp_version,
678                                    const char *);
679 int ofperr_get_vendor(enum ofperr, enum ofp_version);
680 int ofperr_get_type(enum ofperr, enum ofp_version);
681 int ofperr_get_code(enum ofperr, enum ofp_version);
682
683 const char *ofperr_get_name(enum ofperr);
684 const char *ofperr_get_description(enum ofperr);
685
686 void ofperr_format(struct ds *, enum ofperr);
687 const char *ofperr_to_string(enum ofperr);
688
689 #endif /* ofp-errors.h */