48
48
#include <error.h> /* error() */
49
49
#include <sysexits.h> /* EX_USAGE, EX_OSERR, EX_OSFILE */
50
50
#include <errno.h> /* errno, error_t, EACCES,
51
ENAMETOOLONG, ENOENT, EEXIST,
52
ECHILD, EPERM, ENOMEM, EAGAIN,
53
EINTR, ENOBUFS, EADDRINUSE,
51
ENAMETOOLONG, ENOENT, ENOTDIR,
52
ENOMEM, EEXIST, ECHILD, EPERM,
53
EAGAIN, EINTR, ENOBUFS, EADDRINUSE,
54
54
ECONNREFUSED, ECONNRESET,
55
55
ETOOMANYREFS, EMSGSIZE, EBADF,
73
73
ARGP_ERR_UNKNOWN, ARGP_KEY_ARGS,
74
74
struct argp, argp_parse(),
76
#include <stdint.h> /* SIZE_MAX */
76
77
#include <unistd.h> /* uid_t, gid_t, close(), pipe2(),
77
78
fork(), _exit(), dup2(),
78
79
STDOUT_FILENO, setresgid(),
84
85
#include <fcntl.h> /* O_CLOEXEC, O_NONBLOCK, fcntl(),
85
86
F_GETFD, F_GETFL, FD_CLOEXEC,
86
87
open(), O_WRONLY, O_NOCTTY,
88
O_RDONLY, O_NOFOLLOW */
88
89
#include <sys/wait.h> /* waitpid(), WNOHANG, WIFEXITED(),
90
91
#include <limits.h> /* PIPE_BUF, NAME_MAX, INT_MAX */
91
92
#include <sys/inotify.h> /* inotify_init1(), IN_NONBLOCK,
92
93
IN_CLOEXEC, inotify_add_watch(),
93
94
IN_CLOSE_WRITE, IN_MOVED_TO,
94
IN_DELETE, struct inotify_event */
95
IN_MOVED_FROM, IN_DELETE,
96
IN_EXCL_UNLINK, IN_ONLYDIR,
97
struct inotify_event */
95
98
#include <fnmatch.h> /* fnmatch(), FNM_FILE_NAME */
96
#include <stdio.h> /* asprintf(), FILE, fopen(),
97
getline(), sscanf(), feof(),
98
ferror(), fclose(), stderr,
99
rename(), fdopen(), fprintf(),
99
#include <stdio.h> /* asprintf(), FILE, stderr, fopen(),
100
fclose(), getline(), sscanf(),
101
feof(), ferror(), rename(),
102
fdopen(), fprintf(), fscanf() */
101
103
#include <glib.h> /* GKeyFile, g_key_file_free(), g_key_file_new(),
102
104
GError, g_key_file_load_from_file(),
103
105
G_KEY_FILE_NONE, TRUE, G_FILE_ERROR_NOENT,
650
652
__attribute__((nonnull, warn_unused_result))
651
653
bool add_to_queue(task_queue *const queue, const task_context task){
654
if((queue->length + 1) > (SIZE_MAX / sizeof(task_context))){
656
error(0, ENOMEM, "Failed to allocate %" PRIuMAX
657
" tasks for queue->tasks", (uintmax_t)(queue->length + 1));
652
661
const size_t needed_size = sizeof(task_context)*(queue->length + 1);
653
662
if(needed_size > (queue->allocated)){
654
663
task_context *const new_tasks = realloc(queue->tasks,
1882
1897
g_assert_true(queue->tasks[0].func == dummy_func);
1900
static void test_add_to_queue_overflow(__attribute__((unused))
1901
test_fixture *fixture,
1902
__attribute__((unused))
1903
gconstpointer user_data){
1904
__attribute__((cleanup(cleanup_queue)))
1905
task_queue *queue = create_queue();
1906
g_assert_nonnull(queue);
1907
g_assert_true(queue->length == 0);
1908
queue->length = SIZE_MAX / sizeof(task_context); /* fake max size */
1910
FILE *real_stderr = stderr;
1911
FILE *devnull = fopen("/dev/null", "we");
1912
g_assert_nonnull(devnull);
1914
const bool ret = add_to_queue(queue,
1915
(task_context){ .func=dummy_func });
1916
g_assert_true(errno == ENOMEM);
1917
g_assert_false(ret);
1918
stderr = real_stderr;
1919
g_assert_cmpint(fclose(devnull), ==, 0);
1920
queue->length = 0; /* Restore real size */
1885
1923
static void dummy_func(__attribute__((unused))
1886
1924
const task_context task,
1887
1925
__attribute__((unused))
7860
7906
test_add("/parse_arguments/mixed", test_parse_arguments_mixed);
7861
7907
test_add("/queue/create", test_create_queue);
7862
7908
test_add("/queue/add", test_add_to_queue);
7909
test_add("/queue/add/overflow", test_add_to_queue_overflow);
7863
7910
test_add("/queue/has_question/empty",
7864
7911
test_queue_has_question_empty);
7865
7912
test_add("/queue/has_question/false",
8090
8137
g_option_context_set_help_enabled(context, FALSE);
8091
8138
g_option_context_set_ignore_unknown_options(context, TRUE);
8093
gboolean run_tests = FALSE;
8140
gboolean should_run_tests = FALSE;
8094
8141
GOptionEntry entries[] = {
8095
8142
{ "test", 0, 0, G_OPTION_ARG_NONE,
8096
&run_tests, "Run tests", NULL },
8143
&should_run_tests, "Run tests", NULL },
8099
8146
g_option_context_add_main_entries(context, entries, NULL);