Hide private usterr-signal-safe.h symbols
[lttng-ust.git] / include / usterr-signal-safe.h
CommitLineData
5e96a467 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
30ffe279 3 *
c0c0989a
MJ
4 * Copyright (C) 2009 Pierre-Marc Fournier
5 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
30ffe279
NC
6 */
7
c0c0989a
MJ
8#ifndef _USTERR_SIGNAL_SAFE_H
9#define _USTERR_SIGNAL_SAFE_H
10
30ffe279
NC
11#include <string.h>
12#include <sys/types.h>
30ffe279
NC
13#include <errno.h>
14#include <stdarg.h>
2b6f4374 15#include <stdbool.h>
30ffe279 16#include <stdio.h>
864a1eda 17#include <ust-share.h>
2b6f4374 18#include "ust-helper.h"
ae4b659d 19#include "ust-tid.h"
622671fb 20#include "ust-snprintf.h"
30ffe279 21
2b6f4374
MJ
22enum ust_err_loglevel {
23 UST_ERR_LOGLEVEL_UNKNOWN = 0,
24 UST_ERR_LOGLEVEL_NORMAL,
25 UST_ERR_LOGLEVEL_DEBUG,
5e96a467
MD
26};
27
2b6f4374
MJ
28LTTNG_HIDDEN
29extern volatile enum ust_err_loglevel ust_err_loglevel;
30LTTNG_HIDDEN
31void ust_err_init(void);
5e96a467 32
7bdd21a4 33#ifdef LTTNG_UST_DEBUG
2b6f4374 34static inline bool ust_err_debug_enabled(void)
7bdd21a4 35{
2b6f4374 36 return true;
7bdd21a4
MD
37}
38#else /* #ifdef LTTNG_UST_DEBUG */
2b6f4374 39static inline bool ust_err_debug_enabled(void)
5e96a467 40{
2b6f4374 41 return ust_err_loglevel == UST_ERR_LOGLEVEL_DEBUG;
5e96a467 42}
7bdd21a4 43#endif /* #else #ifdef LTTNG_UST_DEBUG */
5e96a467 44
2b6f4374
MJ
45/*
46 * The default component for error messages.
47 */
30ffe279 48#ifndef UST_COMPONENT
30ffe279
NC
49#define UST_COMPONENT libust
50#endif
51
52/* To stringify the expansion of a define */
1dbfff0c
MD
53#define UST_XSTR(d) UST_STR(d)
54#define UST_STR(s) #s
30ffe279 55
2b6f4374 56#define UST_ERR_MAX_LEN 512
37ed587a 57
2b6f4374
MJ
58/*
59 * We sometimes print in the tracing path, and tracing can occur in
30ffe279
NC
60 * signal handlers, so we must use a print method which is signal safe.
61 */
2b6f4374 62/* Can't use dynamic allocation. Limit ourselves to UST_ERR_MAX_LEN chars. */
648bb724 63/* Add end of string in case of buffer overflow. */
5e96a467 64#define sigsafe_print_err(fmt, args...) \
648bb724 65do { \
2b6f4374
MJ
66 if (ust_err_debug_enabled()) { \
67 char ____buf[UST_ERR_MAX_LEN]; \
7bdd21a4
MD
68 int ____saved_errno; \
69 \
70 ____saved_errno = errno; /* signal-safety */ \
71 ust_safe_snprintf(____buf, sizeof(____buf), fmt, ## args); \
72 ____buf[sizeof(____buf) - 1] = 0; \
516d12da 73 ust_patient_write(STDERR_FILENO, ____buf, strlen(____buf)); \
7bdd21a4
MD
74 errno = ____saved_errno; /* signal-safety */ \
75 fflush(stderr); \
76 } \
648bb724 77} while (0)
30ffe279 78
1dbfff0c 79#define UST_STR_COMPONENT UST_XSTR(UST_COMPONENT)
30ffe279 80
5e96a467
MD
81#define ERRMSG(fmt, args...) \
82 do { \
7bdd21a4 83 sigsafe_print_err(UST_STR_COMPONENT "[%ld/%ld]: " fmt " (in %s() at " __FILE__ ":" UST_XSTR(__LINE__) ")\n", \
5e96a467 84 (long) getpid(), \
0f029713 85 (long) lttng_gettid(), \
5e96a467 86 ## args, __func__); \
5e96a467 87 } while(0)
30ffe279 88
7bdd21a4
MD
89
90#define DBG(fmt, args...) ERRMSG(fmt, ## args)
91#define DBG_raw(fmt, args...) sigsafe_print_err(fmt, ## args)
92#define WARN(fmt, args...) ERRMSG("Warning: " fmt, ## args)
93#define ERR(fmt, args...) ERRMSG("Error: " fmt, ## args)
94#define BUG(fmt, args...) ERRMSG("BUG: " fmt, ## args)
30ffe279 95
b52af467 96#if !defined(__GLIBC__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE))
9fd26814
MD
97/*
98 * Version using XSI strerror_r.
99 */
7bdd21a4
MD
100#define PERROR(call, args...) \
101 do { \
2b6f4374 102 if (ust_err_debug_enabled()) { \
7bdd21a4
MD
103 char buf[200] = "Error in strerror_r()"; \
104 strerror_r(errno, buf, sizeof(buf)); \
105 ERRMSG("Error: " call ": %s", ## args, buf); \
106 } \
107 } while(0)
30ffe279 108#else
9fd26814
MD
109/*
110 * Version using GNU strerror_r, for linux with appropriate defines.
111 */
7bdd21a4
MD
112#define PERROR(call, args...) \
113 do { \
2b6f4374 114 if (ust_err_debug_enabled()) { \
7bdd21a4
MD
115 char *buf; \
116 char tmp[200]; \
117 buf = strerror_r(errno, tmp, sizeof(tmp)); \
118 ERRMSG("Error: " call ": %s", ## args, buf); \
119 } \
120 } while(0)
30ffe279
NC
121#endif
122
5e96a467
MD
123#define BUG_ON(condition) \
124 do { \
b5a3dfa5 125 if (caa_unlikely(condition)) \
5e96a467
MD
126 ERR("condition not respected (BUG) on line %s:%d", __FILE__, __LINE__); \
127 } while(0)
128#define WARN_ON(condition) \
129 do { \
b5a3dfa5 130 if (caa_unlikely(condition)) \
5e96a467
MD
131 WARN("condition not respected on line %s:%d", __FILE__, __LINE__); \
132 } while(0)
30ffe279
NC
133#define WARN_ON_ONCE(condition) WARN_ON(condition)
134
135#endif /* _USTERR_SIGNAL_SAFE_H */
This page took 0.037654 seconds and 4 git commands to generate.