aboutsummaryrefslogtreecommitdiffstats
path: root/liberror.h
blob: 4d222e607571f6599bb7efeee955c1ce61c45b5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/* See LICENSE file for copyright and license details. */
#ifndef LIBERROR_H
#define LIBERROR_H

#include <stddef.h>
#include <stdint.h>
#include <stdio.h>


/**
 * Opaque backtrace structure
 */
struct liberror_backtrace;

/**
 * Value that specifies which feild in a
 * `union liberror_details` that is used
 */
enum liberror_details_type {
	/**
	 * No details
	 */
	LIBERROR_DETAILS_NONE,

	/**
	 * User-specific details
	 */
	LIBERROR_DETAILS_USER,

	/**
	 * Details for function that operates
	 * on a single file
	 */
	LIBERROR_DETAILS_ONE_FILE,

	/**
	 * Details for function that operates
	 * on two files
	 */
	LIBERROR_DETAILS_TWO_FILES
};

/**
 * Error details
 */
union liberror_details {
	/**
	 * For `LIBERROR_DETAILS_USER`
	 */
	struct {
		/**
		 * The library that defines the data
		 */
		const char *library;

		/**
		 * The data for the details
		 */
		void *data;

		/**
		 * Function that is used to deallocate `.data`
		 * 
		 * @param  data  The pointer `.data`
		 */
		void (*free_data)(void *);

		/**
		 * Function that is used to copy `.data`
		 * 
		 * @param   data  The pointer `.data`
		 * @return        Copy of `data`, `NULL` on failure
		 */
		void *(*copy_data)(void *);

		/**
		 * Function that is used to print `.data`
		 * 
		 * @param  data    The pointer `.data`, may be `NULL`
		 * @param  fp      File to print the details to, may not be `NULL`
		 * @param  prefix  Text to print at the beginning of each line,
		 *                 may not be `NULL`
		 */
		void (*print_data)(void *, FILE *, const char *);
	} user;

	/**
	 * For `LIBERROR_DETAILS_ONE_FILE`
	 */
	struct {
		/**
		 * The specified file descriptor,
		 * negative if none
		 */
		int fd;

		/**
		 * The filename or other string that
		 * identifies the file, `NULL` if
		 * none
		 */
		char *name;

		/**
		 * Description of the file's role in the
		 * function call, for example "Directory"
		 * for the mkdir(3) function
		 */
		const char *role;
	} one_file;

	/**
	 * For `LIBERROR_DETAILS_TWO_FILES`
	 */
	struct {
		/**
		 * The first specified file descriptor,
		 * negative if none
		 */
		int fd1;

		/**
		 * The second specified file descriptor,
		 * negative if none
		 */
		int fd2;

		/**
		 * The filename or other string that
		 * identifies the first file, `NULL` if
		 * none
		 */
		char *name1;

		/**
		 * The filename or other string that
		 * identifies the second file, `NULL`
		 * if none
		 */
		char *name2;

		/**
		 * Description of the role of the first
		 * file in the function call, for example
		 * "Target" for the symlink(3) function
		 */
		const char *role1;

		/**
		 * Description of the role of the first
		 * file in the function call, for example
		 * "Link" for the symlink(3) function
		 */
		const char *role2;
	} two_files;
};

/**
 * Error structure
 */
struct liberror_error {
	/**
	 * Backtrace for the error, `NULL` if the it could
	 * not be allocated or if the program is not linked
	 * with `-lerror-backtrace`
	 */
	struct liberror_backtrace *backtrace;

	/**
	 * Description of the error
	 */
	char description[256];

	/**
	 * The function that failed
	 */
	char source[64];

	/**
	 * Name of error code group, for normal `errno`
	 * errors this is "error", for getaddrinfo(3) errors
	 * this is "addrinfo", for custom errors it is the
	 * name of the library or application
	 */
	char code_group[64];

	/**
	 * The error code
	 */
	long long int code;

	/**
	 * The error that caused this error, `NULL` if
	 * none or it could not be allocated (if and only
	 * if so, `.failed_to_allocate_cause` will be set
	 * to a non-zero value, specifically 1)
	 */
	struct liberror_error *cause;

	/**
	 * Whether allocation of `.cause` failed
	 */
	int failed_to_allocate_cause;

	/**
	 * Whether the error is physically allocated
	 */
	int dynamically_allocated;

	/**
	 * Which value in `.details` that is used
	 */
	enum liberror_details_type details_type;

	/**
	 * Error detail
	 */
	union liberror_details details;
};

/**
 * Saved error state for a thread
 * 
 * This structure shall be regardes as opaque
 */
struct liberror_state {
	/**
	 * The backtrace for the next error
	 */
	struct liberror_backtrace *backtrace;

	/**
	 * The thread's error
	 */
	struct liberror_error error;

	/**
	 * Whether the thread hade an error
	 */
	int have_error;

	/**
	 * The thread's value of `errno`
	 */
	int errnum;
};


/**
 * Get the current error for the thread
 * 
 * @return  The current error, `NULL` if none
 */
struct liberror_error *liberror_get_error(void);

/**
 * Create a copy of an error
 * 
 * This function will only fail of enough memory
 * cannot be allocated, however `errno` will not
 * be changed
 * 
 * @param   error  The error to copy
 * @return         Copy of the error, `NULL` on failure
 */
struct liberror_error *liberror_copy_error(struct liberror_error *);

/**
 * Deallocate the error and the error stored as
 * its cause (recursively)
 * 
 * @param  error  The error to deallocate
 */
void liberror_free_error(struct liberror_error *);

/**
 * Deallocate the current error for the thread
 * and reset the error for the thread
 * 
 * This function shall be called after handling
 * the error
 */
void liberror_reset_error(void);

/**
 * Print the backtrace of an error
 * 
 * If the backtrace could not be allocated,
 * nothing will be printed
 * 
 * This function will never change `errno`
 * 
 * Note: this library does not actually save
 * a backtrace, `-lerror-backtrace` is needed
 * for that functionallity (it will replace
 * some things in this library, so no other
 * action is required)
 * 
 * @param  error   The error
 * @param  fp      The file to print the backtrace to
 * @param  indent  Text to print at the beginning of each line
 */
void liberror_print_backtrace(struct liberror_error *, FILE *, const char *);

/**
 * Get backtrace and save backtrace
 * 
 * This function will never change `errno`
 * 
 * Note: this library does not actually save
 * a backtrace, `-lerror-backtrace` is needed
 * for that functionallity (it will replace
 * some things in this library, so no other
 * action is required)
 * 
 * @param   error  The error the backtrace shall be stored in,
 *                 if `NULL`, the backtrafe is saved for the
 *                 next error in the thread
 * @return         0 on success, -1 on failure
 */
int liberror_save_backtrace(struct liberror_error *);

/**
 * Set the current error for the thread
 * 
 * If the thread already has an error saved,
 * it will be stored as the cause of the new
 * error
 * 
 * @param  description  Description of the error, empty for default description
 * @param  source       The function that failed
 * @param  code_group   Name of error code group, for normal `errno` errors
 *                      this shall be "error", for getaddrinfo(3) errors
 *                      this shall be "addrinfo", for custom errors it shall
 *                      be the name of the library or application
 * @param  code         The error code
 */
void liberror_set_error(const char[256], const char[64], const char[64], long long int);

/**
 * Set the current error for the thread
 * 
 * This function can be used as an alternative
 * to `liberror_set_error` for `errno` errors
 * 
 * If the thread already has an error saved,
 * it will be stored as the cause of the new
 * error
 * 
 * @param  description  Description of the error, empty for default description
 * @param  source       The function that failed
 * @param  code         The `errno` value
 */
void liberror_set_error_errno(const char[256], const char[64], int);

/**
 * Remove the current error and, if the
 * specified error is non-`NULL`, replace it
 * with the the specified error
 * 
 * @param  error  The error to set as the current error, must not
 *                be the pointer returned by liberror_get_error()
 *                for any thread, including the current thread,
 *                the function will copy and deallocate this error
 */
void liberror_set_error_existing(struct liberror_error *);

/**
 * Remove the current error and, if the error
 * has a cause, replace it with its cause
 */
void liberror_pop_error(void);

/**
 * The an error, its backtrace, and its
 * cause (recursively)
 * 
 * If `error` is `NULL` and the thread does
 * not have any error set, this function
 * will not do anything
 * 
 * @param  error   The error, the thread's current error if `NULL`
 * @param  fp      Output stream, standard error if `NULL`
 * @param  reset   Whether `error` shall be deallocated, `error`
 *                 is null and `reset` is non-zero, the thread's
 *                 error will be reset
 * @param  prefix  Prefix for each printed line, ": " will be
 *                 appended to this prefix; if `NULL` or empty,
 *                 no prefix is used; this should normally be
 *                 `argv[0]` from the main() function
 */
void liberror_print_error(struct liberror_error *, FILE *, int, const char *);

/**
 * Save the thread's liberror error, pending backtrace,
 * and `errno`, and then reset the error information
 * for the thread
 * 
 * Asynchronously called functions such as signal handlers
 * should call this function the first thing they do
 * 
 * @param  state  Output parameter for the error state
 */
void liberror_start(struct liberror_state *);

/**
 * Restore the thread's liberror error, pending backtrace,
 * and `errno`
 * 
 * Asynchronously called functions such as signal handlers
 * should call this function the last thing they do before
 * returning
 * 
 * @param  state  The saved error state to restore
 */
void liberror_end(const struct liberror_state *);


#endif