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