2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
6 #include "git-compat-util.h"
9 void vreportf(const char *prefix, const char *err, va_list params)
12 char *p, *pend = msg + sizeof(msg);
13 size_t prefix_len = strlen(prefix);
15 if (sizeof(msg) <= prefix_len) {
16 fprintf(stderr, "BUG!!! too long a prefix '%s'\n", prefix);
19 memcpy(msg, prefix, prefix_len);
21 if (vsnprintf(p, pend - p, err, params) < 0)
22 *p = '\0'; /* vsnprintf() failed, clip at prefix */
24 for (; p != pend - 1 && *p; p++) {
25 if (iscntrl(*p) && *p != '\t' && *p != '\n')
29 *(p++) = '\n'; /* we no longer need a NUL */
31 write_in_full(2, msg, p - msg);
34 static NORETURN void usage_builtin(const char *err, va_list params)
36 vreportf("usage: ", err, params);
39 * When we detect a usage error *before* the command dispatch in
40 * cmd_main(), we don't know what verb to report. Force it to this
41 * to facilitate post-processing.
43 trace2_cmd_name("_usage_");
46 * Currently, the (err, params) are usually just the static usage
47 * string which isn't very useful here. Usually, the call site
48 * manually calls fprintf(stderr,...) with the actual detailed
49 * syntax error before calling usage().
51 * TODO It would be nice to update the call sites to pass both
52 * the static usage string and the detailed error message.
58 static NORETURN void die_builtin(const char *err, va_list params)
61 * We call this trace2 function first and expect it to va_copy 'params'
62 * before using it (because an 'ap' can only be walked once).
64 trace2_cmd_error_va(err, params);
66 vreportf("fatal: ", err, params);
71 static void error_builtin(const char *err, va_list params)
74 * We call this trace2 function first and expect it to va_copy 'params'
75 * before using it (because an 'ap' can only be walked once).
77 trace2_cmd_error_va(err, params);
79 vreportf("error: ", err, params);
82 static void warn_builtin(const char *warn, va_list params)
85 * We call this trace2 function first and expect it to va_copy 'params'
86 * before using it (because an 'ap' can only be walked once).
88 trace2_cmd_error_va(warn, params);
90 vreportf("warning: ", warn, params);
93 static int die_is_recursing_builtin(void)
97 * Just an arbitrary number X where "a < x < b" where "a" is
98 * "maximum number of pthreads we'll ever plausibly spawn" and
99 * "b" is "something less than Inf", since the point is to
100 * prevent infinite recursion.
102 static const int recursion_limit = 1024;
105 if (dying > recursion_limit) {
107 } else if (dying == 2) {
108 warning("die() called many times. Recursion error or racy threaded death!");
115 /* If we are in a dlopen()ed .so write to a global variable would segfault
116 * (ugh), so keep things static. */
117 static NORETURN_PTR report_fn usage_routine = usage_builtin;
118 static NORETURN_PTR report_fn die_routine = die_builtin;
119 static report_fn error_routine = error_builtin;
120 static report_fn warn_routine = warn_builtin;
121 static int (*die_is_recursing)(void) = die_is_recursing_builtin;
123 void set_die_routine(NORETURN_PTR report_fn routine)
125 die_routine = routine;
128 void set_error_routine(report_fn routine)
130 error_routine = routine;
133 report_fn get_error_routine(void)
135 return error_routine;
138 void set_warn_routine(report_fn routine)
140 warn_routine = routine;
143 report_fn get_warn_routine(void)
148 void set_die_is_recursing_routine(int (*routine)(void))
150 die_is_recursing = routine;
153 void NORETURN usagef(const char *err, ...)
157 va_start(params, err);
158 usage_routine(err, params);
162 void NORETURN usage(const char *err)
167 void NORETURN die(const char *err, ...)
171 if (die_is_recursing()) {
172 fputs("fatal: recursion detected in die handler\n", stderr);
176 va_start(params, err);
177 die_routine(err, params);
181 static const char *fmt_with_err(char *buf, int n, const char *fmt)
183 char str_error[256], *err;
186 err = strerror(errno);
187 for (i = j = 0; err[i] && j < sizeof(str_error) - 1; ) {
188 if ((str_error[j++] = err[i++]) != '%')
190 if (j < sizeof(str_error) - 1) {
191 str_error[j++] = '%';
193 /* No room to double the '%', so we overwrite it with
200 /* Truncation is acceptable here */
201 snprintf(buf, n, "%s: %s", fmt, str_error);
205 void NORETURN die_errno(const char *fmt, ...)
210 if (die_is_recursing()) {
211 fputs("fatal: recursion detected in die_errno handler\n",
216 va_start(params, fmt);
217 die_routine(fmt_with_err(buf, sizeof(buf), fmt), params);
222 int error_errno(const char *fmt, ...)
227 va_start(params, fmt);
228 error_routine(fmt_with_err(buf, sizeof(buf), fmt), params);
234 int error(const char *err, ...)
238 va_start(params, err);
239 error_routine(err, params);
244 void warning_errno(const char *warn, ...)
249 va_start(params, warn);
250 warn_routine(fmt_with_err(buf, sizeof(buf), warn), params);
254 void warning(const char *warn, ...)
258 va_start(params, warn);
259 warn_routine(warn, params);
263 /* Only set this, ever, from t/helper/, when verifying that bugs are caught. */
266 static NORETURN void BUG_vfl(const char *file, int line, const char *fmt, va_list params)
270 /* truncation via snprintf is OK here */
272 snprintf(prefix, sizeof(prefix), "BUG: %s:%d: ", file, line);
274 snprintf(prefix, sizeof(prefix), "BUG: ");
276 vreportf(prefix, fmt, params);
282 #ifdef HAVE_VARIADIC_MACROS
283 NORETURN void BUG_fl(const char *file, int line, const char *fmt, ...)
287 BUG_vfl(file, line, fmt, ap);
291 NORETURN void BUG(const char *fmt, ...)
295 BUG_vfl(NULL, 0, fmt, ap);
300 #ifdef SUPPRESS_ANNOTATED_LEAKS
301 void unleak_memory(const void *ptr, size_t len)
303 static struct suppressed_leak_root {
304 struct suppressed_leak_root *next;
305 char data[FLEX_ARRAY];
307 struct suppressed_leak_root *root;
309 FLEX_ALLOC_MEM(root, data, ptr, len);
310 root->next = suppressed_leaks;
311 suppressed_leaks = root;