]> git.proxmox.com Git - mirror_frr.git/blob - lib/ferr.c
Merge pull request #5776 from volta-networks/fix_ldp_topol_test
[mirror_frr.git] / lib / ferr.c
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 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20
21 #include <stdlib.h>
22 #include <stdarg.h>
23 #include <string.h>
24 #include <pthread.h>
25 #include <signal.h>
26 #include <inttypes.h>
27
28 #include "ferr.h"
29 #include "vty.h"
30 #include "jhash.h"
31 #include "memory.h"
32 #include "hash.h"
33 #include "command.h"
34 #include "json.h"
35 #include "linklist.h"
36 #include "frr_pthread.h"
37
38 DEFINE_MTYPE_STATIC(LIB, ERRINFO, "error information")
39
40 /*
41 * Thread-specific key for temporary storage of allocated ferr.
42 */
43 static pthread_key_t errkey;
44
45 static void ferr_free(void *arg)
46 {
47 XFREE(MTYPE_ERRINFO, arg);
48 }
49
50 static void err_key_init(void) __attribute__((_CONSTRUCTOR(500)));
51 static void err_key_init(void)
52 {
53 pthread_key_create(&errkey, ferr_free);
54 }
55
56 static void err_key_fini(void) __attribute__((_DESTRUCTOR(500)));
57 static void err_key_fini(void)
58 {
59 pthread_key_delete(errkey);
60 }
61
62 /*
63 * Global shared hash table holding reference text for all defined errors.
64 */
65 static pthread_mutex_t refs_mtx = PTHREAD_MUTEX_INITIALIZER;
66 struct hash *refs;
67
68 static bool ferr_hash_cmp(const void *a, const void *b)
69 {
70 const struct log_ref *f_a = a;
71 const struct log_ref *f_b = b;
72
73 return f_a->code == f_b->code;
74 }
75
76 static inline unsigned int ferr_hash_key(const void *a)
77 {
78 const struct log_ref *f = a;
79
80 return f->code;
81 }
82
83 void log_ref_add(struct log_ref *ref)
84 {
85 uint32_t i = 0;
86
87 frr_with_mutex(&refs_mtx) {
88 while (ref[i].code != END_FERR) {
89 hash_get(refs, &ref[i], hash_alloc_intern);
90 i++;
91 }
92 }
93 }
94
95 struct log_ref *log_ref_get(uint32_t code)
96 {
97 struct log_ref holder;
98 struct log_ref *ref;
99
100 holder.code = code;
101 frr_with_mutex(&refs_mtx) {
102 ref = hash_lookup(refs, &holder);
103 }
104
105 return ref;
106 }
107
108 void log_ref_display(struct vty *vty, uint32_t code, bool json)
109 {
110 struct log_ref *ref;
111 struct json_object *top = NULL, *obj = NULL;
112 struct list *errlist;
113 struct listnode *ln;
114
115 if (json)
116 top = json_object_new_object();
117
118 frr_with_mutex(&refs_mtx) {
119 errlist = code ? list_new() : hash_to_list(refs);
120 }
121
122 if (code) {
123 ref = log_ref_get(code);
124 if (!ref)
125 return;
126 listnode_add(errlist, ref);
127 }
128
129 for (ALL_LIST_ELEMENTS_RO(errlist, ln, ref)) {
130 if (json) {
131 char key[11];
132
133 snprintf(key, sizeof(key), "%"PRIu32, ref->code);
134 obj = json_object_new_object();
135 json_object_string_add(obj, "title", ref->title);
136 json_object_string_add(obj, "description",
137 ref->description);
138 json_object_string_add(obj, "suggestion",
139 ref->suggestion);
140 json_object_object_add(top, key, obj);
141 } else {
142 char pbuf[256];
143 char ubuf[256];
144
145 snprintf(pbuf, sizeof(pbuf), "\nError %"PRIu32" - %s",
146 ref->code, ref->title);
147 memset(ubuf, '=', strlen(pbuf));
148 ubuf[strlen(pbuf)] = '\0';
149
150 vty_out(vty, "%s\n%s\n", pbuf, ubuf);
151 vty_out(vty, "Description:\n%s\n\n", ref->description);
152 vty_out(vty, "Recommendation:\n%s\n", ref->suggestion);
153 }
154 }
155
156 if (json) {
157 const char *str = json_object_to_json_string_ext(
158 top, JSON_C_TO_STRING_PRETTY);
159 vty_out(vty, "%s\n", str);
160 json_object_free(top);
161 }
162
163 list_delete(&errlist);
164 }
165
166 DEFUN_NOSH(show_error_code,
167 show_error_code_cmd,
168 "show error <(1-4294967295)|all> [json]",
169 SHOW_STR
170 "Information on errors\n"
171 "Error code to get info about\n"
172 "Information on all errors\n"
173 JSON_STR)
174 {
175 bool json = strmatch(argv[argc-1]->text, "json");
176 uint32_t arg = 0;
177
178 if (!strmatch(argv[2]->text, "all"))
179 arg = strtoul(argv[2]->arg, NULL, 10);
180
181 log_ref_display(vty, arg, json);
182 return CMD_SUCCESS;
183 }
184
185 void log_ref_init(void)
186 {
187 frr_with_mutex(&refs_mtx) {
188 refs = hash_create(ferr_hash_key, ferr_hash_cmp,
189 "Error Reference Texts");
190 }
191 }
192
193 void log_ref_fini(void)
194 {
195 frr_with_mutex(&refs_mtx) {
196 hash_clean(refs, NULL);
197 hash_free(refs);
198 refs = NULL;
199 }
200 }
201
202 void log_ref_vty_init(void)
203 {
204 install_element(VIEW_NODE, &show_error_code_cmd);
205 }
206
207
208 const struct ferr *ferr_get_last(ferr_r errval)
209 {
210 struct ferr *last_error = pthread_getspecific(errkey);
211 if (!last_error || last_error->kind == 0)
212 return NULL;
213 return last_error;
214 }
215
216 ferr_r ferr_clear(void)
217 {
218 struct ferr *last_error = pthread_getspecific(errkey);
219 if (last_error)
220 last_error->kind = 0;
221 return ferr_ok();
222 }
223
224 static ferr_r ferr_set_va(const char *file, int line, const char *func,
225 enum ferr_kind kind, const char *pathname,
226 int errno_val, const char *text, va_list va)
227 {
228 struct ferr *error = pthread_getspecific(errkey);
229
230 if (!error) {
231 error = XCALLOC(MTYPE_ERRINFO, sizeof(*error));
232
233 pthread_setspecific(errkey, error);
234 }
235
236 error->file = file;
237 error->line = line;
238 error->func = func;
239 error->kind = kind;
240
241 error->unique_id = jhash(text, strlen(text),
242 jhash(file, strlen(file), 0xd4ed0298));
243
244 error->errno_val = errno_val;
245 if (pathname)
246 snprintf(error->pathname, sizeof(error->pathname), "%s",
247 pathname);
248 else
249 error->pathname[0] = '\0';
250
251 vsnprintf(error->message, sizeof(error->message), text, va);
252 return -1;
253 }
254
255 ferr_r ferr_set_internal(const char *file, int line, const char *func,
256 enum ferr_kind kind, const char *text, ...)
257 {
258 ferr_r rv;
259 va_list va;
260 va_start(va, text);
261 rv = ferr_set_va(file, line, func, kind, NULL, 0, text, va);
262 va_end(va);
263 return rv;
264 }
265
266 ferr_r ferr_set_internal_ext(const char *file, int line, const char *func,
267 enum ferr_kind kind, const char *pathname,
268 int errno_val, const char *text, ...)
269 {
270 ferr_r rv;
271 va_list va;
272 va_start(va, text);
273 rv = ferr_set_va(file, line, func, kind, pathname, errno_val, text, va);
274 va_end(va);
275 return rv;
276 }
277
278 #define REPLACE "$ERR"
279 void vty_print_error(struct vty *vty, ferr_r err, const char *msg, ...)
280 {
281 char tmpmsg[512], *replacepos;
282 const struct ferr *last_error = ferr_get_last(err);
283
284 va_list va;
285 va_start(va, msg);
286 vsnprintf(tmpmsg, sizeof(tmpmsg), msg, va);
287 va_end(va);
288
289 replacepos = strstr(tmpmsg, REPLACE);
290 if (!replacepos)
291 vty_out(vty, "%s\n", tmpmsg);
292 else {
293 replacepos[0] = '\0';
294 replacepos += sizeof(REPLACE) - 1;
295 vty_out(vty, "%s%s%s\n", tmpmsg,
296 last_error ? last_error->message : "(no error?)",
297 replacepos);
298 }
299 }