]> git.proxmox.com Git - mirror_frr.git/blob - lib/ferr.h
lib: Fix Spelling mistake
[mirror_frr.git] / lib / ferr.h
1 /*
2 * Copyright (c) 2015-16 David Lamparter, for NetDEF, Inc.
3 *
4 * Permission to use, copy, modify, and 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 _FRR_FERR_H
18 #define _FRR_FERR_H
19
20 /***********************************************************
21 * scroll down to the end of this file for a full example! *
22 ***********************************************************/
23
24 #include <stdint.h>
25 #include <limits.h>
26 #include <errno.h>
27
28 #include "vty.h"
29
30 /* return type when this error indication stuff is used.
31 *
32 * guaranteed to have boolean evaluation to "false" when OK, "true" when error
33 * (i.e. can be changed to pointer in the future if neccessary)
34 *
35 * For checking, always use "if (value)", nothing else.
36 * Do _NOT_ use any integer constant (!= 0), or sign check (< 0).
37 */
38 typedef int ferr_r;
39
40 /* rough category of error indication */
41 enum ferr_kind {
42 /* no error */
43 FERR_OK = 0,
44
45 /* something isn't the way it's supposed to be.
46 * (things that might otherwise be asserts, really)
47 */
48 FERR_CODE_BUG,
49
50 /* user-supplied parameters don't make sense or is inconsistent
51 * if you can express a rule for it (e.g. "holdtime > 2 * keepalive"),
52 * it's this category.
53 */
54 FERR_CONFIG_INVALID,
55
56 /* user-supplied parameters don't line up with reality
57 * (IP address or interface not available, etc.)
58 * NB: these are really TODOs where the code needs to be fixed to
59 * respond to future changes!
60 */
61 FERR_CONFIG_REALITY,
62
63 /* out of some system resource (probably memory)
64 * aka "you didn't spend enough money error" */
65 FERR_RESOURCE,
66
67 /* system error (permission denied, etc.) */
68 FERR_SYSTEM,
69
70 /* error return from some external library
71 * (FERR_SYSTEM and FERR_LIBRARY are not strongly distinct) */
72 FERR_LIBRARY,
73 };
74
75 struct ferr {
76 /* code location */
77 const char *file;
78 const char *func;
79 int line;
80
81 enum ferr_kind kind;
82
83 /* unique_id is calculated as a checksum of source filename and error
84 * message format (*before* calling vsnprintf). Line number and
85 * function name are not used; this keeps the number reasonably static
86 * across changes.
87 */
88 uint32_t unique_id;
89
90 char message[384];
91
92 /* valid if != 0. note "errno" might be preprocessor foobar. */
93 int errno_val;
94 /* valid if pathname[0] != '\0' */
95 char pathname[PATH_MAX];
96 };
97
98 /* Numeric ranges assigned to daemons for use as error codes. */
99 #define BABEL_FERR_START 0x01000001
100 #define BABEL_FRRR_END 0x01FFFFFF
101 #define BGP_FERR_START 0x02000001
102 #define BGP_FERR_END 0x02FFFFFF
103 #define EIGRP_FERR_START 0x03000001
104 #define EIGRP_FERR_END 0x03FFFFFF
105 #define ISIS_FERR_START 0x04000001
106 #define ISIS_FERR_END 0x04FFFFFF
107 #define LDP_FERR_START 0x05000001
108 #define LDP_FERR_END 0x05FFFFFF
109 #define LIB_FERR_START 0x06000001
110 #define LIB_FERR_END 0x06FFFFFF
111 #define NHRP_FERR_START 0x07000001
112 #define NHRP_FERR_END 0x07FFFFFF
113 #define OSPF_FERR_START 0x08000001
114 #define OSPF_FERR_END 0x08FFFFFF
115 #define OSPFV3_FERR_START 0x09000001
116 #define OSPFV3_FERR_END 0x09FFFFFF
117 #define PBR_FERR_START 0x0A000001
118 #define PBR_FERR_END 0x0AFFFFFF
119 #define PIM_FERR_START 0x0B000001
120 #define PIM_FERR_STOP 0x0BFFFFFF
121 #define RIP_FERR_START 0x0C000001
122 #define RIP_FERR_STOP 0x0CFFFFFF
123 #define RIPNG_FERR_START 0x0D000001
124 #define RIPNG_FERR_STOP 0x0DFFFFFF
125 #define SHARP_FERR_START 0x0E000001
126 #define SHARP_FERR_END 0x0EFFFFFF
127 #define VTYSH_FERR_START 0x0F000001
128 #define VTYSH_FRR_END 0x0FFFFFFF
129 #define WATCHFRR_FERR_START 0x10000001
130 #define WATCHFRR_FERR_END 0x10FFFFFF
131 #define ZEBRA_FERR_START 0xF1000001
132 #define ZEBRA_FERR_END 0xF1FFFFFF
133 #define END_FERR 0xFFFFFFFF
134
135 struct ferr_ref {
136 /* Unique error code displayed to end user as a reference. -1 means
137 * this is an uncoded error that does not have reference material. */
138 uint32_t code;
139 /* Ultra brief title */
140 const char *title;
141 /* Brief description of error */
142 const char *description;
143 /* Remedial suggestion */
144 const char *suggestion;
145 };
146
147 void ferr_ref_add(struct ferr_ref *ref);
148 struct ferr_ref *ferr_ref_get(uint32_t code);
149 void ferr_ref_display(struct vty *, uint32_t code);
150
151 /*
152 * This function should be called by the
153 * code in libfrr.c
154 */
155 void ferr_ref_init(void);
156 void ferr_ref_fini(void);
157
158 /* get error details.
159 *
160 * NB: errval/ferr_r does NOT carry the full error information. It's only
161 * passed around for future API flexibility. ferr_get_last always returns
162 * the last error set in the current thread.
163 */
164 const struct ferr *ferr_get_last(ferr_r errval);
165
166 /* can optionally be called at strategic locations.
167 * always returns 0. */
168 ferr_r ferr_clear(void);
169
170 /* do NOT call these functions directly. only for macro use! */
171 ferr_r ferr_set_internal(const char *file, int line, const char *func,
172 enum ferr_kind kind, const char *text, ...);
173 ferr_r ferr_set_internal_ext(const char *file, int line, const char *func,
174 enum ferr_kind kind, const char *pathname,
175 int errno_val, const char *text, ...);
176
177 #define ferr_ok() 0
178
179 /* Report an error.
180 *
181 * If you need to do cleanup (free memory, etc.), save the return value in a
182 * variable of type ferr_r.
183 *
184 * Don't put a \n at the end of the error message.
185 */
186 #define ferr_code_bug(...) \
187 ferr_set_internal(__FILE__, __LINE__, __func__, FERR_CODE_BUG, \
188 __VA_ARGS__)
189 #define ferr_cfg_invalid(...) \
190 ferr_set_internal(__FILE__, __LINE__, __func__, FERR_CONFIG_INVALID, \
191 __VA_ARGS__)
192 #define ferr_cfg_reality(...) \
193 ferr_set_internal(__FILE__, __LINE__, __func__, FERR_CONFIG_REALITY, \
194 __VA_ARGS__)
195 #define ferr_cfg_resource(...) \
196 ferr_set_internal(__FILE__, __LINE__, __func__, FERR_RESOURCE, \
197 __VA_ARGS__)
198 #define ferr_system(...) \
199 ferr_set_internal(__FILE__, __LINE__, __func__, FERR_SYSTEM, \
200 __VA_ARGS__)
201 #define ferr_library(...) \
202 ferr_set_internal(__FILE__, __LINE__, __func__, FERR_LIBRARY, \
203 __VA_ARGS__)
204
205 /* extended information variants */
206 #define ferr_system_errno(...) \
207 ferr_set_internal_ext(__FILE__, __LINE__, __func__, FERR_SYSTEM, NULL, \
208 errno, __VA_ARGS__)
209 #define ferr_system_path_errno(path, ...) \
210 ferr_set_internal_ext(__FILE__, __LINE__, __func__, FERR_SYSTEM, path, \
211 errno, __VA_ARGS__)
212
213 #include "vty.h"
214 /* print error message to vty; $ERR is replaced by the error's message */
215 void vty_print_error(struct vty *vty, ferr_r err, const char *msg, ...);
216
217 #define CMD_FERR_DO(func, action, ...) \
218 do { \
219 ferr_r cmd_retval = func; \
220 if (cmd_retval) { \
221 vty_print_error(vty, cmd_retval, __VA_ARGS__); \
222 action; \
223 } \
224 } while (0)
225
226 #define CMD_FERR_RETURN(func, ...) \
227 CMD_FERR_DO(func, return CMD_WARNING_CONFIG_FAILED, __VA_ARGS__)
228 #define CMD_FERR_GOTO(func, label, ...) \
229 CMD_FERR_DO(func, goto label, __VA_ARGS__)
230
231 /* example: uses bogus #define to keep indent.py happy */
232 #ifdef THIS_IS_AN_EXAMPLE
233 ferr_r foo_bar_set(struct object *obj, int bar)
234 {
235 if (bar < 1 || bar >= 100)
236 return ferr_config_invalid("bar setting (%d) must be 0<x<100",
237 bar);
238 obj->bar = bar;
239 if (ioctl(obj->fd, bar))
240 return ferr_system_errno("couldn't set bar to %d", bar);
241
242 return ferr_ok();
243 }
244
245 DEFUN("bla")
246 {
247 CMD_FERR_RETURN(foo_bar_set(obj, atoi(argv[1])),
248 "command failed: $ERR\n");
249 return CMD_SUCCESS;
250 }
251
252 #endif /* THIS_IS_AN_EXAMPLE */
253
254 #endif /* _FERR_H */