1 #ifndef _USTERR_SIGNAL_SAFE_H
2 #define _USTERR_SIGNAL_SAFE_H
5 * Copyright (C) 2009 Pierre-Marc Fournier
6 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; version 2.1 of
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include <sys/types.h>
25 #include <sys/syscall.h>
30 #include <lttng/core.h>
31 #include <lttng/share.h>
34 UST_LOGLEVEL_UNKNOWN
= 0,
39 extern volatile enum ust_loglevel ust_loglevel
;
40 void init_usterr(void);
42 static inline int ust_debug(void)
44 return ust_loglevel
== UST_LOGLEVEL_DEBUG
;
48 //#error UST_COMPONENT is undefined
49 #define UST_COMPONENT libust
52 /* To stringify the expansion of a define */
53 #define UST_XSTR(d) UST_STR(d)
56 #define USTERR_MAX_LEN 512
58 /* We sometimes print in the tracing path, and tracing can occur in
59 * signal handlers, so we must use a print method which is signal safe.
62 extern int ust_safe_snprintf(char *str
, size_t n
, const char *fmt
, ...)
63 __attribute__ ((format (printf
, 3, 4)));
65 static inline void __attribute__ ((format (printf
, 1, 2)))
66 __check_ust_safe_fmt(const char *fmt
, ...)
70 #define sigsafe_print_err(fmt, args...) \
72 /* Can't use dynamic allocation. Limit ourselves to USTERR_MAX_LEN chars. */ \
73 char ____buf[USTERR_MAX_LEN]; \
74 int ____saved_errno; \
76 /* Save the errno. */ \
77 ____saved_errno = errno; \
79 ust_safe_snprintf(____buf, sizeof(____buf), fmt, ## args); \
81 /* Add end of string in case of buffer overflow. */ \
82 ____buf[sizeof(____buf) - 1] = 0; \
84 patient_write(STDERR_FILENO, ____buf, strlen(____buf)); \
86 * Can't print errors because we are in the error printing code \
90 /* Restore errno, in order to be async-signal safe. */ \
91 errno = ____saved_errno; \
94 #define UST_STR_COMPONENT UST_XSTR(UST_COMPONENT)
96 #define ERRMSG(fmt, args...) \
98 sigsafe_print_err(UST_STR_COMPONENT "[%ld/%ld]: " fmt " (in %s() at " __FILE__ ":" UST_XSTR(__LINE__) ")\n", \
100 (long) syscall(SYS_gettid), \
101 ## args, __func__); \
106 # define DBG(fmt, args...) ERRMSG(fmt, ## args)
107 # define DBG_raw(fmt, args...) \
109 sigsafe_print_err(fmt, ## args); \
113 # define DBG(fmt, args...) \
116 ERRMSG(fmt, ## args); \
118 # define DBG_raw(fmt, args...) \
121 sigsafe_print_err(fmt, ## args); \
126 #define WARN(fmt, args...) ERRMSG("Warning: " fmt, ## args)
127 #define ERR(fmt, args...) ERRMSG("Error: " fmt, ## args)
128 #define BUG(fmt, args...) ERRMSG("BUG: " fmt, ## args)
130 #if (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE)
131 #define PERROR(call, args...)\
133 char buf[200] = "Error in strerror_r()"; \
134 strerror_r(errno, buf, sizeof(buf)); \
135 ERRMSG("Error: " call ": %s", ## args, buf); \
138 #define PERROR(call, args...)\
142 buf = strerror_r(errno, tmp, sizeof(tmp)); \
143 ERRMSG("Error: " call ": %s", ## args, buf); \
147 #define BUG_ON(condition) \
149 if (caa_unlikely(condition)) \
150 ERR("condition not respected (BUG) on line %s:%d", __FILE__, __LINE__); \
152 #define WARN_ON(condition) \
154 if (caa_unlikely(condition)) \
155 WARN("condition not respected on line %s:%d", __FILE__, __LINE__); \
157 #define WARN_ON_ONCE(condition) WARN_ON(condition)
159 #endif /* _USTERR_SIGNAL_SAFE_H */