Version 2.12.6
[lttng-ust.git] / include / usterr-signal-safe.h
CommitLineData
5e96a467
MD
1#ifndef _USTERR_SIGNAL_SAFE_H
2#define _USTERR_SIGNAL_SAFE_H
3
4/*
5 * Copyright (C) 2009 Pierre-Marc Fournier
6 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
30ffe279
NC
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
5e96a467
MD
10 * License as published by the Free Software Foundation; version 2.1 of
11 * the License.
30ffe279
NC
12 *
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.
17 *
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
21 */
22
30ffe279
NC
23#include <string.h>
24#include <sys/types.h>
30ffe279
NC
25#include <errno.h>
26#include <stdarg.h>
27#include <stdio.h>
2f864739 28#include <share.h>
49c0da7d 29#include "lttng/ust-tid.h"
30ffe279 30
5e96a467
MD
31enum ust_loglevel {
32 UST_LOGLEVEL_UNKNOWN = 0,
33 UST_LOGLEVEL_NORMAL,
34 UST_LOGLEVEL_DEBUG,
35};
36
37extern volatile enum ust_loglevel ust_loglevel;
38void init_usterr(void);
39
7bdd21a4
MD
40#ifdef LTTNG_UST_DEBUG
41static inline int ust_debug(void)
42{
43 return 1;
44}
45#else /* #ifdef LTTNG_UST_DEBUG */
5e96a467
MD
46static inline int ust_debug(void)
47{
48 return ust_loglevel == UST_LOGLEVEL_DEBUG;
49}
7bdd21a4 50#endif /* #else #ifdef LTTNG_UST_DEBUG */
5e96a467 51
30ffe279
NC
52#ifndef UST_COMPONENT
53//#error UST_COMPONENT is undefined
54#define UST_COMPONENT libust
55#endif
56
57/* To stringify the expansion of a define */
1dbfff0c
MD
58#define UST_XSTR(d) UST_STR(d)
59#define UST_STR(s) #s
30ffe279 60
37ed587a
MD
61#define USTERR_MAX_LEN 512
62
30ffe279
NC
63/* We sometimes print in the tracing path, and tracing can occur in
64 * signal handlers, so we must use a print method which is signal safe.
65 */
66
67extern int ust_safe_snprintf(char *str, size_t n, const char *fmt, ...)
68 __attribute__ ((format (printf, 3, 4)));
69
70static inline void __attribute__ ((format (printf, 1, 2)))
71 __check_ust_safe_fmt(const char *fmt, ...)
72{
73}
74
648bb724
MD
75/* Can't use dynamic allocation. Limit ourselves to USTERR_MAX_LEN chars. */
76/* Add end of string in case of buffer overflow. */
5e96a467 77#define sigsafe_print_err(fmt, args...) \
648bb724 78do { \
7bdd21a4
MD
79 if (ust_debug()) { \
80 char ____buf[USTERR_MAX_LEN]; \
81 int ____saved_errno; \
82 \
83 ____saved_errno = errno; /* signal-safety */ \
84 ust_safe_snprintf(____buf, sizeof(____buf), fmt, ## args); \
85 ____buf[sizeof(____buf) - 1] = 0; \
86 patient_write(STDERR_FILENO, ____buf, strlen(____buf)); \
87 errno = ____saved_errno; /* signal-safety */ \
7bdd21a4 88 } \
648bb724 89} while (0)
30ffe279 90
1dbfff0c 91#define UST_STR_COMPONENT UST_XSTR(UST_COMPONENT)
30ffe279 92
5e96a467
MD
93#define ERRMSG(fmt, args...) \
94 do { \
7bdd21a4 95 sigsafe_print_err(UST_STR_COMPONENT "[%ld/%ld]: " fmt " (in %s() at " __FILE__ ":" UST_XSTR(__LINE__) ")\n", \
5e96a467 96 (long) getpid(), \
0f029713 97 (long) lttng_gettid(), \
5e96a467 98 ## args, __func__); \
5e96a467 99 } while(0)
30ffe279 100
7bdd21a4
MD
101
102#define DBG(fmt, args...) ERRMSG(fmt, ## args)
103#define DBG_raw(fmt, args...) sigsafe_print_err(fmt, ## args)
104#define WARN(fmt, args...) ERRMSG("Warning: " fmt, ## args)
105#define ERR(fmt, args...) ERRMSG("Error: " fmt, ## args)
106#define BUG(fmt, args...) ERRMSG("BUG: " fmt, ## args)
30ffe279 107
b52af467 108#if !defined(__GLIBC__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE))
9fd26814
MD
109/*
110 * Version using XSI strerror_r.
111 */
7bdd21a4
MD
112#define PERROR(call, args...) \
113 do { \
114 if (ust_debug()) { \
115 char buf[200] = "Error in strerror_r()"; \
116 strerror_r(errno, buf, sizeof(buf)); \
117 ERRMSG("Error: " call ": %s", ## args, buf); \
118 } \
119 } while(0)
30ffe279 120#else
9fd26814
MD
121/*
122 * Version using GNU strerror_r, for linux with appropriate defines.
123 */
7bdd21a4
MD
124#define PERROR(call, args...) \
125 do { \
126 if (ust_debug()) { \
127 char *buf; \
128 char tmp[200]; \
129 buf = strerror_r(errno, tmp, sizeof(tmp)); \
130 ERRMSG("Error: " call ": %s", ## args, buf); \
131 } \
132 } while(0)
30ffe279
NC
133#endif
134
5e96a467
MD
135#define BUG_ON(condition) \
136 do { \
b5a3dfa5 137 if (caa_unlikely(condition)) \
5e96a467
MD
138 ERR("condition not respected (BUG) on line %s:%d", __FILE__, __LINE__); \
139 } while(0)
140#define WARN_ON(condition) \
141 do { \
b5a3dfa5 142 if (caa_unlikely(condition)) \
5e96a467
MD
143 WARN("condition not respected on line %s:%d", __FILE__, __LINE__); \
144 } while(0)
30ffe279
NC
145#define WARN_ON_ONCE(condition) WARN_ON(condition)
146
147#endif /* _USTERR_SIGNAL_SAFE_H */
This page took 0.036073 seconds and 4 git commands to generate.