Force usage of assert() condition when NDEBUG is defined
[lttng-tools.git] / src / common / error.c
CommitLineData
f73fabfd 1/*
ab5be9fa 2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
f73fabfd 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
f73fabfd 5 *
f73fabfd
DG
6 */
7
6c1c0768 8#define _LGPL_SOURCE
a0b439da 9#include <inttypes.h>
f5fb86c1 10#include <pthread.h>
9bbd8e06
MD
11#include <stdlib.h>
12#include <string.h>
f73fabfd 13
90e535ef 14#include <common/common.h>
cb8d0d24 15#include <common/thread.h>
edf4b93e 16#include <common/compat/errno.h>
9bbd8e06 17#include <common/compat/getenv.h>
f5fb86c1 18#include <lttng/lttng-error.h>
f73fabfd
DG
19
20#include "error.h"
21
22#define ERROR_INDEX(code) (code - LTTNG_OK)
23
9bbd8e06
MD
24/*
25 * lttng_opt_abort_on_error: unset: -1, disabled: 0, enabled: 1.
26 * Controlled by the LTTNG_ABORT_ON_ERROR environment variable.
27 */
28static int lttng_opt_abort_on_error = -1;
29
a0b439da
DG
30/* TLS variable that contains the time of one single log entry. */
31DEFINE_URCU_TLS(struct log_time, error_log_time);
f5fb86c1 32DEFINE_URCU_TLS(const char *, logger_thread_name);
a0b439da 33
b2035012 34LTTNG_HIDDEN
a0b439da
DG
35const char *log_add_time(void)
36{
37 int ret;
38 struct tm tm, *res;
39 struct timespec tp;
40 time_t now;
b1093e5f 41 const int errsv = errno;
a0b439da 42
389fbf04 43 ret = lttng_clock_gettime(CLOCK_REALTIME, &tp);
a0b439da
DG
44 if (ret < 0) {
45 goto error;
46 }
47 now = (time_t) tp.tv_sec;
48
49 res = localtime_r(&now, &tm);
50 if (!res) {
51 goto error;
52 }
53
54 /* Format time in the TLS variable. */
327115d8 55 ret = snprintf(URCU_TLS(error_log_time).str, sizeof(URCU_TLS(error_log_time).str),
870bdaf9 56 "%02d:%02d:%02d.%09ld",
a0b439da
DG
57 tm.tm_hour, tm.tm_min, tm.tm_sec, tp.tv_nsec);
58 if (ret < 0) {
59 goto error;
60 }
61
b1093e5f 62 errno = errsv;
f79e29fe 63 return URCU_TLS(error_log_time).str;
a0b439da
DG
64
65error:
66 /* Return an empty string on error so logging is not affected. */
b1093e5f 67 errno = errsv;
a0b439da
DG
68 return "";
69}
70
f5fb86c1
JG
71LTTNG_HIDDEN
72void logger_set_thread_name(const char *name, bool set_pthread_name)
73{
74 int ret;
75
a0377dfe 76 LTTNG_ASSERT(name);
f5fb86c1
JG
77 URCU_TLS(logger_thread_name) = name;
78
79 if (set_pthread_name) {
cb8d0d24
MJ
80 ret = lttng_thread_setname(name);
81 if (ret && ret != -ENOSYS) {
82 /* Don't fail as this is not essential. */
f5fb86c1
JG
83 DBG("Failed to set pthread name attribute");
84 }
85 }
86}
87
f73fabfd
DG
88/*
89 * Human readable error message.
90 */
91static const char *error_string_array[] = {
92 /* LTTNG_OK code MUST be at the top for the ERROR_INDEX macro to work */
93 [ ERROR_INDEX(LTTNG_OK) ] = "Success",
94 [ ERROR_INDEX(LTTNG_ERR_UNK) ] = "Unknown error",
95 [ ERROR_INDEX(LTTNG_ERR_UND) ] = "Undefined command",
96 [ ERROR_INDEX(LTTNG_ERR_UNKNOWN_DOMAIN) ] = "Unknown tracing domain",
97 [ ERROR_INDEX(LTTNG_ERR_NO_SESSION) ] = "No session found",
98 [ ERROR_INDEX(LTTNG_ERR_CREATE_DIR_FAIL) ] = "Create directory failed",
99 [ ERROR_INDEX(LTTNG_ERR_SESSION_FAIL) ] = "Create session failed",
100 [ ERROR_INDEX(LTTNG_ERR_SESS_NOT_FOUND) ] = "Session name not found",
101 [ ERROR_INDEX(LTTNG_ERR_FATAL) ] = "Fatal error of the session daemon",
102 [ ERROR_INDEX(LTTNG_ERR_SELECT_SESS) ] = "A session MUST be selected",
552c8777 103 [ ERROR_INDEX(LTTNG_ERR_EXIST_SESS) ] = "Session name already exists",
f73fabfd
DG
104 [ ERROR_INDEX(LTTNG_ERR_NO_EVENT) ] = "Event not found",
105 [ ERROR_INDEX(LTTNG_ERR_CONNECT_FAIL) ] = "Unable to connect to Unix socket",
106 [ ERROR_INDEX(LTTNG_ERR_EPERM) ] = "Permission denied",
107 [ ERROR_INDEX(LTTNG_ERR_KERN_NA) ] = "Kernel tracer not available",
108 [ ERROR_INDEX(LTTNG_ERR_KERN_VERSION) ] = "Kernel tracer version is not compatible",
109 [ ERROR_INDEX(LTTNG_ERR_KERN_EVENT_EXIST) ] = "Kernel event already exists",
110 [ ERROR_INDEX(LTTNG_ERR_KERN_SESS_FAIL) ] = "Kernel create session failed",
111 [ ERROR_INDEX(LTTNG_ERR_KERN_CHAN_EXIST) ] = "Kernel channel already exists",
112 [ ERROR_INDEX(LTTNG_ERR_KERN_CHAN_FAIL) ] = "Kernel create channel failed",
113 [ ERROR_INDEX(LTTNG_ERR_KERN_CHAN_NOT_FOUND) ] = "Kernel channel not found",
114 [ ERROR_INDEX(LTTNG_ERR_KERN_CHAN_DISABLE_FAIL) ] = "Disable kernel channel failed",
115 [ ERROR_INDEX(LTTNG_ERR_KERN_CHAN_ENABLE_FAIL) ] = "Enable kernel channel failed",
116 [ ERROR_INDEX(LTTNG_ERR_KERN_CONTEXT_FAIL) ] = "Add kernel context failed",
117 [ ERROR_INDEX(LTTNG_ERR_KERN_ENABLE_FAIL) ] = "Enable kernel event failed",
118 [ ERROR_INDEX(LTTNG_ERR_KERN_DISABLE_FAIL) ] = "Disable kernel event failed",
119 [ ERROR_INDEX(LTTNG_ERR_KERN_META_FAIL) ] = "Opening metadata failed",
120 [ ERROR_INDEX(LTTNG_ERR_KERN_START_FAIL) ] = "Starting kernel trace failed",
552c8777 121 [ ERROR_INDEX(LTTNG_ERR_KERN_STOP_FAIL) ] = "Stopping kernel trace failed",
f73fabfd
DG
122 [ ERROR_INDEX(LTTNG_ERR_KERN_CONSUMER_FAIL) ] = "Kernel consumer start failed",
123 [ ERROR_INDEX(LTTNG_ERR_KERN_STREAM_FAIL) ] = "Kernel create stream failed",
124 [ ERROR_INDEX(LTTNG_ERR_KERN_LIST_FAIL) ] = "Listing kernel events failed",
125 [ ERROR_INDEX(LTTNG_ERR_UST_CALIBRATE_FAIL) ] = "UST calibration failed",
126 [ ERROR_INDEX(LTTNG_ERR_UST_SESS_FAIL) ] = "UST create session failed",
127 [ ERROR_INDEX(LTTNG_ERR_UST_CHAN_FAIL) ] = "UST create channel failed",
128 [ ERROR_INDEX(LTTNG_ERR_UST_CHAN_EXIST) ] = "UST channel already exist",
129 [ ERROR_INDEX(LTTNG_ERR_UST_CHAN_NOT_FOUND) ] = "UST channel not found",
130 [ ERROR_INDEX(LTTNG_ERR_UST_CHAN_DISABLE_FAIL) ] = "Disable UST channel failed",
131 [ ERROR_INDEX(LTTNG_ERR_UST_CHAN_ENABLE_FAIL) ] = "Enable UST channel failed",
132 [ ERROR_INDEX(LTTNG_ERR_UST_ENABLE_FAIL) ] = "Enable UST event failed",
133 [ ERROR_INDEX(LTTNG_ERR_UST_DISABLE_FAIL) ] = "Disable UST event failed",
134 [ ERROR_INDEX(LTTNG_ERR_UST_META_FAIL) ] = "Opening metadata failed",
135 [ ERROR_INDEX(LTTNG_ERR_UST_START_FAIL) ] = "Starting UST trace failed",
552c8777 136 [ ERROR_INDEX(LTTNG_ERR_UST_STOP_FAIL) ] = "Stopping UST trace failed",
f73fabfd
DG
137 [ ERROR_INDEX(LTTNG_ERR_UST_CONSUMER64_FAIL) ] = "64-bit UST consumer start failed",
138 [ ERROR_INDEX(LTTNG_ERR_UST_CONSUMER32_FAIL) ] = "32-bit UST consumer start failed",
139 [ ERROR_INDEX(LTTNG_ERR_UST_STREAM_FAIL) ] = "UST create stream failed",
140 [ ERROR_INDEX(LTTNG_ERR_UST_LIST_FAIL) ] = "Listing UST events failed",
141 [ ERROR_INDEX(LTTNG_ERR_UST_EVENT_EXIST) ] = "UST event already exist",
142 [ ERROR_INDEX(LTTNG_ERR_UST_EVENT_NOT_FOUND)] = "UST event not found",
143 [ ERROR_INDEX(LTTNG_ERR_UST_CONTEXT_EXIST)] = "UST context already exist",
144 [ ERROR_INDEX(LTTNG_ERR_UST_CONTEXT_INVAL)] = "UST invalid context",
2b6dfa3f
JG
145 [ ERROR_INDEX(LTTNG_ERR_NEED_ROOT_SESSIOND) ] = "Tracing the kernel requires a root lttng-sessiond daemon, as well as \"tracing\" group membership or root user ID for the lttng client",
146 [ ERROR_INDEX(LTTNG_ERR_NO_UST) ] = "LTTng-UST tracer is not supported. Please rebuild lttng-tools with lttng-ust support enabled",
45d5d421
CB
147 [ ERROR_INDEX(LTTNG_ERR_TRACE_ALREADY_STARTED) ] = "Tracing has already been started once",
148 [ ERROR_INDEX(LTTNG_ERR_TRACE_ALREADY_STOPPED) ] = "Tracing has already been stopped",
f73fabfd 149 [ ERROR_INDEX(LTTNG_ERR_KERN_EVENT_ENOSYS) ] = "Kernel event type not supported",
85076754 150 [ ERROR_INDEX(LTTNG_ERR_NEED_CHANNEL_NAME) ] = "Non-default channel exists within session: channel name needs to be specified with '-c name'",
f73fabfd
DG
151 [ ERROR_INDEX(LTTNG_ERR_INVALID) ] = "Invalid parameter",
152 [ ERROR_INDEX(LTTNG_ERR_NO_USTCONSUMERD) ] = "No UST consumer detected",
153 [ ERROR_INDEX(LTTNG_ERR_NO_KERNCONSUMERD) ] = "No kernel consumer detected",
154 [ ERROR_INDEX(LTTNG_ERR_EVENT_EXIST_LOGLEVEL) ] = "Event already enabled with different loglevel",
155 [ ERROR_INDEX(LTTNG_ERR_URL_DATA_MISS) ] = "Missing data path URL",
552c8777 156 [ ERROR_INDEX(LTTNG_ERR_URL_CTRL_MISS) ] = "Missing control path URL",
f73fabfd
DG
157 [ ERROR_INDEX(LTTNG_ERR_ENABLE_CONSUMER_FAIL) ] = "Enabling consumer failed",
158 [ ERROR_INDEX(LTTNG_ERR_RELAYD_CONNECT_FAIL) ] = "Unable to connect to lttng-relayd",
159 [ ERROR_INDEX(LTTNG_ERR_RELAYD_VERSION_FAIL) ] = "Relay daemon not compatible",
160 [ ERROR_INDEX(LTTNG_ERR_FILTER_INVAL) ] = "Invalid filter bytecode",
161 [ ERROR_INDEX(LTTNG_ERR_FILTER_NOMEM) ] = "Not enough memory for filter bytecode",
162 [ ERROR_INDEX(LTTNG_ERR_FILTER_EXIST) ] = "Filter already exist",
e9711845 163 [ ERROR_INDEX(LTTNG_ERR_NO_CONSUMER) ] = "Consumer not found for recording session",
2f70b271 164 [ ERROR_INDEX(LTTNG_ERR_NO_SESSIOND) ] = "No session daemon is available",
806e2684 165 [ ERROR_INDEX(LTTNG_ERR_SESSION_STARTED) ] = "Session is running",
a79d84dd 166 [ ERROR_INDEX(LTTNG_ERR_NOT_SUPPORTED) ] = "Operation not supported",
5bcdda4f 167 [ ERROR_INDEX(LTTNG_ERR_UST_EVENT_ENABLED) ] = "UST event already enabled",
785d2d0d
DG
168 [ ERROR_INDEX(LTTNG_ERR_SET_URL) ] = "Error setting URL",
169 [ ERROR_INDEX(LTTNG_ERR_URL_EXIST) ] = "URL already exists",
7972aab2
DG
170 [ ERROR_INDEX(LTTNG_ERR_BUFFER_NOT_SUPPORTED)] = "Buffer type not supported",
171 [ ERROR_INDEX(LTTNG_ERR_BUFFER_TYPE_MISMATCH)] = "Buffer type mismatch for session",
a74934ba 172 [ ERROR_INDEX(LTTNG_ERR_NOMEM)] = "Not enough memory",
6dc3064a
DG
173 [ ERROR_INDEX(LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST) ] = "Snapshot output already exists",
174 [ ERROR_INDEX(LTTNG_ERR_START_SESSION_ONCE) ] = "Session needs to be started once",
5c786ded 175 [ ERROR_INDEX(LTTNG_ERR_SNAPSHOT_FAIL) ] = "Snapshot record failed",
b9dfb167 176 [ ERROR_INDEX(LTTNG_ERR_CHAN_EXIST) ] = "Channel already exists",
7badf927 177 [ ERROR_INDEX(LTTNG_ERR_SNAPSHOT_NODATA) ] = "No data available in snapshot",
cde3e505 178 [ ERROR_INDEX(LTTNG_ERR_NO_CHANNEL) ] = "No channel found in the session",
1c1c3634 179 [ ERROR_INDEX(LTTNG_ERR_SESSION_INVALID_CHAR) ] = "Invalid character found in session name",
f9b57ab2 180 [ ERROR_INDEX(LTTNG_ERR_SAVE_FILE_EXIST) ] = "Session file already exists",
b61eecd6 181 [ ERROR_INDEX(LTTNG_ERR_SAVE_IO_FAIL) ] = "IO error while writing session configuration",
a96bc65d
DG
182 [ ERROR_INDEX(LTTNG_ERR_LOAD_INVALID_CONFIG) ] = "Invalid session configuration",
183 [ ERROR_INDEX(LTTNG_ERR_LOAD_IO_FAIL) ] = "IO error while reading a session configuration",
184 [ ERROR_INDEX(LTTNG_ERR_LOAD_SESSION_NOENT) ] = "Session file not found",
68808f4e 185 [ ERROR_INDEX(LTTNG_ERR_MAX_SIZE_INVALID) ] = "Snapshot max size is invalid",
c7e35b03
JR
186 [ ERROR_INDEX(LTTNG_ERR_MI_OUTPUT_TYPE) ] = "Invalid MI output format",
187 [ ERROR_INDEX(LTTNG_ERR_MI_IO_FAIL) ] = "IO error while writing MI output",
188 [ ERROR_INDEX(LTTNG_ERR_MI_NOT_IMPLEMENTED) ] = "Mi feature not implemented",
930a2e99 189 [ ERROR_INDEX(LTTNG_ERR_INVALID_EVENT_NAME) ] = "Invalid event name",
1f345e94 190 [ ERROR_INDEX(LTTNG_ERR_INVALID_CHANNEL_NAME) ] = "Invalid channel name",
159b042f
JG
191 [ ERROR_INDEX(LTTNG_ERR_PROCESS_ATTR_EXISTS) ] = "Process attribute is already tracked",
192 [ ERROR_INDEX(LTTNG_ERR_PROCESS_ATTR_MISSING) ] = "Process attribute was not tracked",
141feb8c 193 [ ERROR_INDEX(LTTNG_ERR_INVALID_CHANNEL_DOMAIN) ] = "Invalid channel domain",
83f4233d 194 [ ERROR_INDEX(LTTNG_ERR_OVERFLOW) ] = "Overflow occurred",
93ec662e
JD
195 [ ERROR_INDEX(LTTNG_ERR_SESSION_NOT_STARTED) ] = "Session not started",
196 [ ERROR_INDEX(LTTNG_ERR_LIVE_SESSION) ] = "Live sessions are not supported",
e9711845 197 [ ERROR_INDEX(LTTNG_ERR_PER_PID_SESSION) ] = "Per-PID recording sessions are not supported",
1ae5e83e 198 [ ERROR_INDEX(LTTNG_ERR_KERN_CONTEXT_UNAVAILABLE) ] = "Context unavailable on this kernel",
c2561365
JD
199 [ ERROR_INDEX(LTTNG_ERR_REGEN_STATEDUMP_FAIL) ] = "Failed to regenerate the state dump",
200 [ ERROR_INDEX(LTTNG_ERR_REGEN_STATEDUMP_NOMEM) ] = "Failed to regenerate the state dump, not enough memory",
903ef685 201 [ ERROR_INDEX(LTTNG_ERR_NOT_SNAPSHOT_SESSION) ] = "Snapshot command can't be applied to a non-snapshot session",
a58c490f
JG
202 [ ERROR_INDEX(LTTNG_ERR_INVALID_TRIGGER) ] = "Invalid trigger",
203 [ ERROR_INDEX(LTTNG_ERR_TRIGGER_EXISTS) ] = "Trigger already registered",
204 [ ERROR_INDEX(LTTNG_ERR_TRIGGER_NOT_FOUND) ] = "Trigger not found",
205 [ ERROR_INDEX(LTTNG_ERR_COMMAND_CANCELLED) ] = "Command cancelled",
5c408ad8
JD
206 [ ERROR_INDEX(LTTNG_ERR_ROTATION_PENDING) ] = "Rotation already pending for this session",
207 [ ERROR_INDEX(LTTNG_ERR_ROTATION_NOT_AVAILABLE) ] = "Rotation feature not available for this session's creation mode",
66ea93b1
JG
208 [ ERROR_INDEX(LTTNG_ERR_ROTATION_SCHEDULE_SET) ] = "A session rotation schedule of this type is already set on the session",
209 [ ERROR_INDEX(LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET) ] = "No session rotation schedule of this type is set on the session",
5c408ad8 210 [ ERROR_INDEX(LTTNG_ERR_ROTATION_MULTIPLE_AFTER_STOP) ] = "Session was already rotated once since it became inactive",
259c2674 211 [ ERROR_INDEX(LTTNG_ERR_ROTATION_WRONG_VERSION) ] = "Session rotation is not supported by this kernel tracer version",
d68c9a04 212 [ ERROR_INDEX(LTTNG_ERR_NO_SESSION_OUTPUT) ] = "Session has no output",
504521ea 213 [ ERROR_INDEX(LTTNG_ERR_ROTATION_NOT_AVAILABLE_RELAY) ] = "Rotation feature not available on the relay",
f28f9e44 214 [ ERROR_INDEX(LTTNG_ERR_AGENT_TRACING_DISABLED) ] = "Session daemon agent tracing is disabled",
1a1c3874 215 [ ERROR_INDEX(LTTNG_ERR_PROBE_LOCATION_INVAL) ] = "Invalid userspace probe location",
d0927b41 216 [ ERROR_INDEX(LTTNG_ERR_ELF_PARSING) ] = "ELF parsing error",
8bd52288 217 [ ERROR_INDEX(LTTNG_ERR_SDT_PROBE_SEMAPHORE) ] = "SDT probe guarded by a semaphore",
20f37cb4
MD
218 [ ERROR_INDEX(LTTNG_ERR_ROTATION_FAIL_CONSUMER) ] = "Rotation failure on consumer",
219 [ ERROR_INDEX(LTTNG_ERR_ROTATE_RENAME_FAIL_CONSUMER) ] = "Rotation rename failure on consumer",
220 [ ERROR_INDEX(LTTNG_ERR_ROTATION_PENDING_LOCAL_FAIL_CONSUMER) ] = "Rotation pending check (local) failure on consumer",
221 [ ERROR_INDEX(LTTNG_ERR_ROTATION_PENDING_RELAY_FAIL_CONSUMER) ] = "Rotation pending check (relay) failure on consumer",
d186e4cb 222 [ ERROR_INDEX(LTTNG_ERR_MKDIR_FAIL_CONSUMER) ] = "Directory creation failure on consumer",
20f37cb4 223 [ ERROR_INDEX(LTTNG_ERR_CHAN_NOT_FOUND) ] = "Channel not found",
54213acc 224 [ ERROR_INDEX(LTTNG_ERR_SNAPSHOT_UNSUPPORTED) ] = "Session configuration does not allow the use of snapshots",
e9711845 225 [ ERROR_INDEX(LTTNG_ERR_SESSION_NOT_EXIST) ] = "Recording session does not exist",
d2956687
JG
226 [ ERROR_INDEX(LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER) ] = "Trace chunk creation failed on consumer",
227 [ ERROR_INDEX(LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER) ] = "Trace chunk close failed on consumer",
228 [ ERROR_INDEX(LTTNG_ERR_TRACE_CHUNK_EXISTS_FAIL_CONSUMER) ] = "Failed to query consumer for trace chunk existence",
3e3665b8 229 [ ERROR_INDEX(LTTNG_ERR_INVALID_PROTOCOL) ] = "Protocol error occurred",
c35f9726 230 [ ERROR_INDEX(LTTNG_ERR_FILE_CREATION_ERROR) ] = "Failed to create file",
3285a971 231 [ ERROR_INDEX(LTTNG_ERR_TIMER_STOP_ERROR) ] = "Failed to stop a timer",
2b6dfa3f 232 [ ERROR_INDEX(LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL) ] = "Rotation feature not supported by the kernel tracer",
a237c7e3
MD
233 [ ERROR_INDEX(LTTNG_ERR_CLEAR_RELAY_DISALLOWED) ] = "Relayd daemon peer does not allow sessions to be cleared",
234 [ ERROR_INDEX(LTTNG_ERR_CLEAR_NOT_AVAILABLE_RELAY) ] = "Clearing a session is not supported by the relay daemon",
235 [ ERROR_INDEX(LTTNG_ERR_CLEAR_FAIL_CONSUMER) ] = "Consumer failed to clear the session",
236 [ ERROR_INDEX(LTTNG_ERR_ROTATION_AFTER_STOP_CLEAR) ] = "Session was already cleared since it became inactive",
546699de
MD
237 [ ERROR_INDEX(LTTNG_ERR_USER_NOT_FOUND) ] = "User not found",
238 [ ERROR_INDEX(LTTNG_ERR_GROUP_NOT_FOUND) ] = "Group not found",
159b042f
JG
239 [ ERROR_INDEX(LTTNG_ERR_UNSUPPORTED_DOMAIN) ] = "Unsupported domain used",
240 [ ERROR_INDEX(LTTNG_ERR_PROCESS_ATTR_TRACKER_INVALID_TRACKING_POLICY) ] = "Operation does not apply to the process attribute tracker's tracking policy",
352b58f5 241 [ ERROR_INDEX(LTTNG_ERR_EVENT_NOTIFIER_GROUP_NOTIFICATION_FD) ] = "Failed to create an event notifier group notification file descriptor",
834966af 242 [ ERROR_INDEX(LTTNG_ERR_INVALID_CAPTURE_EXPRESSION) ] = "Invalid capture expression",
90aa04a1
FD
243 [ ERROR_INDEX(LTTNG_ERR_EVENT_NOTIFIER_REGISTRATION) ] = "Failed to create event notifier",
244 [ ERROR_INDEX(LTTNG_ERR_EVENT_NOTIFIER_ERROR_ACCOUNTING) ] = "Failed to initialize event notifier error accounting",
245 [ ERROR_INDEX(LTTNG_ERR_EVENT_NOTIFIER_ERROR_ACCOUNTING_FULL) ] = "No index available in event notifier error accounting",
881fc67f 246 [ ERROR_INDEX(LTTNG_ERR_BUFFER_FLUSH_FAILED) ] = "Failed to flush stream buffer",
f73fabfd
DG
247
248 /* Last element */
249 [ ERROR_INDEX(LTTNG_ERR_NR) ] = "Unknown error code"
250};
251
252/*
253 * Return ptr to string representing a human readable error code from the
254 * lttng_error_code enum.
255 *
256 * These code MUST be negative in other to treat that as an error value.
257 */
90e535ef 258LTTNG_HIDDEN
f73fabfd
DG
259const char *error_get_str(int32_t code)
260{
261 code = -code;
262
263 if (code < LTTNG_OK || code > LTTNG_ERR_NR) {
264 code = LTTNG_ERR_NR;
265 }
266
267 return error_string_array[ERROR_INDEX(code)];
268}
9bbd8e06
MD
269
270LTTNG_HIDDEN
271void lttng_abort_on_error(void)
272{
273 if (lttng_opt_abort_on_error < 0) {
274 /* Use lttng_secure_getenv() to query its state. */
275 const char *value;
276
277 value = lttng_secure_getenv("LTTNG_ABORT_ON_ERROR");
278 if (value && !strcmp(value, "1")) {
279 lttng_opt_abort_on_error = 1;
280 } else {
281 lttng_opt_abort_on_error = 0;
282 }
283 }
284 if (lttng_opt_abort_on_error > 0) {
285 abort();
286 }
287}
This page took 0.067743 seconds and 4 git commands to generate.