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