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,
83
84
#include <sys/mman.h> /* munlock(), mlock() */
84
85
#include <fcntl.h> /* O_CLOEXEC, O_NONBLOCK, fcntl(),
85
86
F_GETFD, F_GETFL, FD_CLOEXEC,
86
open(), O_WRONLY, O_RDONLY */
87
open(), O_WRONLY, O_NOCTTY,
88
O_RDONLY, O_NOFOLLOW */
87
89
#include <sys/wait.h> /* waitpid(), WNOHANG, WIFEXITED(),
89
91
#include <limits.h> /* PIPE_BUF, NAME_MAX, INT_MAX */
90
92
#include <sys/inotify.h> /* inotify_init1(), IN_NONBLOCK,
91
93
IN_CLOEXEC, inotify_add_watch(),
92
94
IN_CLOSE_WRITE, IN_MOVED_TO,
93
IN_DELETE, struct inotify_event */
95
IN_MOVED_FROM, IN_DELETE,
96
IN_EXCL_UNLINK, IN_ONLYDIR,
97
struct inotify_event */
94
98
#include <fnmatch.h> /* fnmatch(), FNM_FILE_NAME */
95
#include <stdio.h> /* asprintf(), FILE, fopen(),
96
getline(), sscanf(), feof(),
97
ferror(), fclose(), stderr,
98
rename(), fdopen(), fprintf(),
99
#include <stdio.h> /* asprintf(), FILE, stderr, fopen(),
100
fclose(), getline(), sscanf(),
101
feof(), ferror(), rename(),
102
fdopen(), fprintf(), fscanf() */
100
103
#include <glib.h> /* GKeyFile, g_key_file_free(), g_key_file_new(),
101
104
GError, g_key_file_load_from_file(),
102
105
G_KEY_FILE_NONE, TRUE, G_FILE_ERROR_NOENT,
648
652
__attribute__((nonnull, warn_unused_result))
649
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));
650
661
const size_t needed_size = sizeof(task_context)*(queue->length + 1);
651
662
if(needed_size > (queue->allocated)){
652
663
task_context *const new_tasks = realloc(queue->tasks,
1071
1089
/* "sufficient to read at least one event." - inotify(7) */
1072
1090
const size_t ievent_size = (sizeof(struct inotify_event)
1073
1091
+ NAME_MAX + 1);
1074
char ievent_buffer[sizeof(struct inotify_event) + NAME_MAX + 1];
1075
struct inotify_event *ievent = ((struct inotify_event *)
1093
struct inotify_event event;
1094
char name_buffer[NAME_MAX + 1];
1096
struct inotify_event *const ievent = &ievent_buffer.event;
1078
1098
const ssize_t read_length = read(fd, ievent, ievent_size);
1079
1099
if(read_length == 0){ /* EOF */
1877
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 */
1880
1923
static void dummy_func(__attribute__((unused))
1881
1924
const task_context task,
1882
1925
__attribute__((unused))
3450
3499
g_assert_cmpuint((unsigned int)queue->length, ==, 0);
3502
static void test_add_inotify_dir_watch_nondir(__attribute__((unused))
3503
test_fixture *fixture,
3504
__attribute__((unused))
3507
__attribute__((cleanup(cleanup_close)))
3508
const int epoll_fd = epoll_create1(EPOLL_CLOEXEC);
3509
g_assert_cmpint(epoll_fd, >=, 0);
3510
__attribute__((cleanup(cleanup_queue)))
3511
task_queue *queue = create_queue();
3512
g_assert_nonnull(queue);
3513
__attribute__((cleanup(string_set_clear)))
3514
string_set cancelled_filenames = {};
3515
const mono_microsecs current_time = 0;
3517
bool quit_now = false;
3518
buffer password = {};
3519
bool mandos_client_exited = false;
3520
bool password_is_read = false;
3522
const char not_a_directory[] = "/dev/tty";
3524
FILE *real_stderr = stderr;
3525
FILE *devnull = fopen("/dev/null", "we");
3526
g_assert_nonnull(devnull);
3528
g_assert_false(add_inotify_dir_watch(queue, epoll_fd, &quit_now,
3529
&password, not_a_directory,
3530
&cancelled_filenames,
3532
&mandos_client_exited,
3533
&password_is_read));
3534
stderr = real_stderr;
3535
g_assert_cmpint(fclose(devnull), ==, 0);
3537
g_assert_cmpuint((unsigned int)queue->length, ==, 0);
3453
3540
static void test_add_inotify_dir_watch_EAGAIN(__attribute__((unused))
3454
3541
test_fixture *fixture,
3455
3542
__attribute__((unused))
3760
void test_add_inotify_dir_watch_IN_MOVED_FROM(__attribute__((unused))
3761
test_fixture *fixture,
3762
__attribute__((unused))
3765
__attribute__((cleanup(cleanup_close)))
3766
const int epoll_fd = epoll_create1(EPOLL_CLOEXEC);
3767
g_assert_cmpint(epoll_fd, >=, 0);
3768
__attribute__((cleanup(cleanup_queue)))
3769
task_queue *queue = create_queue();
3770
g_assert_nonnull(queue);
3771
__attribute__((cleanup(string_set_clear)))
3772
string_set cancelled_filenames = {};
3773
const mono_microsecs current_time = 0;
3775
bool quit_now = false;
3776
buffer password = {};
3777
bool mandos_client_exited = false;
3778
bool password_is_read = false;
3780
__attribute__((cleanup(cleanup_string)))
3781
char *tempdir = make_temporary_directory();
3782
g_assert_nonnull(tempdir);
3784
__attribute__((cleanup(cleanup_string)))
3785
char *tempfilename = make_temporary_file_in_directory(tempdir);
3786
g_assert_nonnull(tempfilename);
3788
__attribute__((cleanup(cleanup_string)))
3789
char *targetdir = make_temporary_directory();
3790
g_assert_nonnull(targetdir);
3792
__attribute__((cleanup(cleanup_string)))
3793
char *targetfilename = NULL;
3794
g_assert_cmpint(asprintf(&targetfilename, "%s/%s", targetdir,
3795
basename(tempfilename)), >, 0);
3796
g_assert_nonnull(targetfilename);
3798
g_assert_true(add_inotify_dir_watch(queue, epoll_fd, &quit_now,
3800
&cancelled_filenames,
3802
&mandos_client_exited,
3803
&password_is_read));
3805
g_assert_cmpint(rename(tempfilename, targetfilename), ==, 0);
3807
const task_context *const added_read_task
3808
= find_matching_task(queue,
3809
(task_context){ .func=read_inotify_event });
3810
g_assert_nonnull(added_read_task);
3812
/* "sufficient to read at least one event." - inotify(7) */
3813
const size_t ievent_size = (sizeof(struct inotify_event)
3815
struct inotify_event *ievent = malloc(ievent_size);
3816
g_assert_nonnull(ievent);
3818
ssize_t read_size = read(added_read_task->fd, ievent, ievent_size);
3820
g_assert_cmpint((int)read_size, >, 0);
3821
g_assert_true(ievent->mask & IN_MOVED_FROM);
3822
g_assert_cmpstr(ievent->name, ==, basename(tempfilename));
3826
g_assert_cmpint(unlink(targetfilename), ==, 0);
3827
g_assert_cmpint(rmdir(targetdir), ==, 0);
3828
g_assert_cmpint(rmdir(tempdir), ==, 0);
3673
3832
void test_add_inotify_dir_watch_IN_DELETE(__attribute__((unused))
3674
3833
test_fixture *fixture,
3675
3834
__attribute__((unused))
3733
3892
g_assert_cmpint(rmdir(tempdir), ==, 0);
3896
void test_add_inotify_dir_watch_IN_EXCL_UNLINK(__attribute__((unused))
3897
test_fixture *fixture,
3898
__attribute__((unused))
3901
__attribute__((cleanup(cleanup_close)))
3902
const int epoll_fd = epoll_create1(EPOLL_CLOEXEC);
3903
g_assert_cmpint(epoll_fd, >=, 0);
3904
__attribute__((cleanup(cleanup_queue)))
3905
task_queue *queue = create_queue();
3906
g_assert_nonnull(queue);
3907
__attribute__((cleanup(string_set_clear)))
3908
string_set cancelled_filenames = {};
3909
const mono_microsecs current_time = 0;
3911
bool quit_now = false;
3912
buffer password = {};
3913
bool mandos_client_exited = false;
3914
bool password_is_read = false;
3916
__attribute__((cleanup(cleanup_string)))
3917
char *tempdir = make_temporary_directory();
3918
g_assert_nonnull(tempdir);
3920
__attribute__((cleanup(cleanup_string)))
3921
char *tempfile = make_temporary_file_in_directory(tempdir);
3922
g_assert_nonnull(tempfile);
3923
int tempfile_fd = open(tempfile, O_WRONLY | O_CLOEXEC | O_NOCTTY
3925
g_assert_cmpint(tempfile_fd, >, 2);
3927
g_assert_true(add_inotify_dir_watch(queue, epoll_fd, &quit_now,
3929
&cancelled_filenames,
3931
&mandos_client_exited,
3932
&password_is_read));
3933
g_assert_cmpint(unlink(tempfile), ==, 0);
3935
g_assert_cmpuint((unsigned int)queue->length, >, 0);
3937
const task_context *const added_read_task
3938
= find_matching_task(queue,
3939
(task_context){ .func=read_inotify_event });
3940
g_assert_nonnull(added_read_task);
3942
g_assert_cmpint(added_read_task->fd, >, 2);
3943
g_assert_true(fd_has_cloexec_and_nonblock(added_read_task->fd));
3945
/* "sufficient to read at least one event." - inotify(7) */
3946
const size_t ievent_size = (sizeof(struct inotify_event)
3948
struct inotify_event *ievent = malloc(ievent_size);
3949
g_assert_nonnull(ievent);
3951
ssize_t read_size = 0;
3952
read_size = read(added_read_task->fd, ievent, ievent_size);
3954
g_assert_cmpint((int)read_size, >, 0);
3955
g_assert_true(ievent->mask & IN_DELETE);
3956
g_assert_cmpstr(ievent->name, ==, basename(tempfile));
3958
g_assert_cmpint(close(tempfile_fd), ==, 0);
3960
/* IN_EXCL_UNLINK should make the closing of the previously unlinked
3961
file not appear as an ievent, so we should not see it now. */
3962
read_size = read(added_read_task->fd, ievent, ievent_size);
3963
g_assert_cmpint((int)read_size, ==, -1);
3964
g_assert_true(errno == EAGAIN);
3968
g_assert_cmpint(rmdir(tempdir), ==, 0);
3736
3971
static void test_read_inotify_event_readerror(__attribute__((unused))
3737
3972
test_fixture *fixture,
3738
3973
__attribute__((unused))
3929
4165
const size_t ievent_max_size = (sizeof(struct inotify_event)
3930
4166
+ NAME_MAX + 1);
3931
4167
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
3932
char ievent_buffer[sizeof(struct inotify_event) + NAME_MAX + 1];
3933
struct inotify_event *ievent = ((struct inotify_event *)
4169
struct inotify_event event;
4170
char name_buffer[NAME_MAX + 1];
4172
struct inotify_event *const ievent = &ievent_buffer.event;
3936
4174
const char dummy_file_name[] = "ask.dummy_file_name";
3937
4175
ievent->mask = IN_CLOSE_WRITE;
3939
4177
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
3940
4178
const size_t ievent_size = (sizeof(struct inotify_event)
3941
4179
+ sizeof(dummy_file_name));
3942
g_assert_cmpint(write(pipefds[1], ievent_buffer, ievent_size),
4180
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
3943
4181
==, ievent_size);
3944
4182
g_assert_cmpint(close(pipefds[1]), ==, 0);
4022
4260
const size_t ievent_max_size = (sizeof(struct inotify_event)
4023
4261
+ NAME_MAX + 1);
4024
4262
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
4025
char ievent_buffer[sizeof(struct inotify_event) + NAME_MAX + 1];
4026
struct inotify_event *ievent = ((struct inotify_event *)
4264
struct inotify_event event;
4265
char name_buffer[NAME_MAX + 1];
4267
struct inotify_event *const ievent = &ievent_buffer.event;
4029
4269
const char dummy_file_name[] = "ask.dummy_file_name";
4030
4270
ievent->mask = IN_MOVED_TO;
4032
4272
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
4033
4273
const size_t ievent_size = (sizeof(struct inotify_event)
4034
4274
+ sizeof(dummy_file_name));
4035
g_assert_cmpint(write(pipefds[1], ievent_buffer, ievent_size),
4275
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
4036
4276
==, ievent_size);
4037
4277
g_assert_cmpint(close(pipefds[1]), ==, 0);
4342
void test_read_inotify_event_IN_MOVED_FROM(__attribute__((unused))
4343
test_fixture *fixture,
4344
__attribute__((unused))
4345
gconstpointer user_data){
4346
__attribute__((cleanup(cleanup_close)))
4347
const int epoll_fd = epoll_create1(EPOLL_CLOEXEC);
4348
g_assert_cmpint(epoll_fd, >=, 0);
4349
__attribute__((cleanup(string_set_clear)))
4350
string_set cancelled_filenames = {};
4351
const mono_microsecs current_time = 0;
4354
g_assert_cmpint(pipe2(pipefds, O_CLOEXEC | O_NONBLOCK), ==, 0);
4356
/* "sufficient to read at least one event." - inotify(7) */
4357
const size_t ievent_max_size = (sizeof(struct inotify_event)
4359
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
4361
struct inotify_event event;
4362
char name_buffer[NAME_MAX + 1];
4364
struct inotify_event *const ievent = &ievent_buffer.event;
4366
const char dummy_file_name[] = "ask.dummy_file_name";
4367
ievent->mask = IN_MOVED_FROM;
4368
ievent->len = sizeof(dummy_file_name);
4369
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
4370
const size_t ievent_size = (sizeof(struct inotify_event)
4371
+ sizeof(dummy_file_name));
4372
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
4374
g_assert_cmpint(close(pipefds[1]), ==, 0);
4376
bool quit_now = false;
4377
buffer password = {};
4378
bool mandos_client_exited = false;
4379
bool password_is_read = false;
4380
__attribute__((cleanup(cleanup_queue)))
4381
task_queue *queue = create_queue();
4382
g_assert_nonnull(queue);
4384
task_context task = {
4385
.func=read_inotify_event,
4388
.quit_now=&quit_now,
4389
.password=&password,
4390
.filename=strdup("/nonexistent"),
4391
.cancelled_filenames=&cancelled_filenames,
4392
.current_time=¤t_time,
4393
.mandos_client_exited=&mandos_client_exited,
4394
.password_is_read=&password_is_read,
4396
task.func(task, queue);
4397
g_assert_false(quit_now);
4398
g_assert_true(queue->next_run == 0);
4399
g_assert_cmpuint((unsigned int)queue->length, ==, 1);
4401
g_assert_nonnull(find_matching_task(queue, (task_context){
4402
.func=read_inotify_event,
4405
.quit_now=&quit_now,
4406
.password=&password,
4407
.filename=task.filename,
4408
.cancelled_filenames=&cancelled_filenames,
4409
.current_time=¤t_time,
4410
.mandos_client_exited=&mandos_client_exited,
4411
.password_is_read=&password_is_read,
4414
g_assert_true(epoll_set_contains(epoll_fd, pipefds[0],
4415
EPOLLIN | EPOLLRDHUP));
4417
__attribute__((cleanup(cleanup_string)))
4418
char *filename = NULL;
4419
g_assert_cmpint(asprintf(&filename, "%s/%s", task.filename,
4420
dummy_file_name), >, 0);
4421
g_assert_nonnull(filename);
4422
g_assert_true(string_set_contains(*task.cancelled_filenames,
4101
4426
static void test_read_inotify_event_IN_DELETE(__attribute__((unused))
4102
4427
test_fixture *fixture,
4103
4428
__attribute__((unused))
4117
4442
const size_t ievent_max_size = (sizeof(struct inotify_event)
4118
4443
+ NAME_MAX + 1);
4119
4444
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
4120
char ievent_buffer[sizeof(struct inotify_event) + NAME_MAX + 1];
4121
struct inotify_event *ievent = ((struct inotify_event *)
4446
struct inotify_event event;
4447
char name_buffer[NAME_MAX + 1];
4449
struct inotify_event *const ievent = &ievent_buffer.event;
4124
4451
const char dummy_file_name[] = "ask.dummy_file_name";
4125
4452
ievent->mask = IN_DELETE;
4127
4454
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
4128
4455
const size_t ievent_size = (sizeof(struct inotify_event)
4129
4456
+ sizeof(dummy_file_name));
4130
g_assert_cmpint(write(pipefds[1], ievent_buffer, ievent_size),
4457
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
4131
4458
==, ievent_size);
4132
4459
g_assert_cmpint(close(pipefds[1]), ==, 0);
4199
4526
const size_t ievent_max_size = (sizeof(struct inotify_event)
4200
4527
+ NAME_MAX + 1);
4201
4528
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
4202
char ievent_buffer[sizeof(struct inotify_event) + NAME_MAX + 1];
4203
struct inotify_event *ievent = ((struct inotify_event *)
4530
struct inotify_event event;
4531
char name_buffer[NAME_MAX + 1];
4533
struct inotify_event *const ievent = &ievent_buffer.event;
4206
4535
const char dummy_file_name[] = "ignored.dummy_file_name";
4207
4536
ievent->mask = IN_CLOSE_WRITE;
4209
4538
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
4210
4539
const size_t ievent_size = (sizeof(struct inotify_event)
4211
4540
+ sizeof(dummy_file_name));
4212
g_assert_cmpint(write(pipefds[1], ievent_buffer, ievent_size),
4541
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
4213
4542
==, ievent_size);
4214
4543
g_assert_cmpint(close(pipefds[1]), ==, 0);
4273
4602
const size_t ievent_max_size = (sizeof(struct inotify_event)
4274
4603
+ NAME_MAX + 1);
4275
4604
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
4276
char ievent_buffer[sizeof(struct inotify_event) + NAME_MAX + 1];
4277
struct inotify_event *ievent = ((struct inotify_event *)
4606
struct inotify_event event;
4607
char name_buffer[NAME_MAX + 1];
4609
struct inotify_event *const ievent = &ievent_buffer.event;
4280
4611
const char dummy_file_name[] = "ignored.dummy_file_name";
4281
4612
ievent->mask = IN_MOVED_TO;
4283
4614
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
4284
4615
const size_t ievent_size = (sizeof(struct inotify_event)
4285
4616
+ sizeof(dummy_file_name));
4286
g_assert_cmpint(write(pipefds[1], ievent_buffer, ievent_size),
4617
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
4287
4618
==, ievent_size);
4288
4619
g_assert_cmpint(close(pipefds[1]), ==, 0);
4330
4661
EPOLLIN | EPOLLRDHUP));
4665
test_read_inotify_event_IN_MOVED_FROM_badname(__attribute__((unused))
4666
test_fixture *fixture,
4667
__attribute__((unused))
4670
__attribute__((cleanup(cleanup_close)))
4671
const int epoll_fd = epoll_create1(EPOLL_CLOEXEC);
4672
g_assert_cmpint(epoll_fd, >=, 0);
4673
__attribute__((cleanup(string_set_clear)))
4674
string_set cancelled_filenames = {};
4675
const mono_microsecs current_time = 0;
4678
g_assert_cmpint(pipe2(pipefds, O_CLOEXEC | O_NONBLOCK), ==, 0);
4680
/* "sufficient to read at least one event." - inotify(7) */
4681
const size_t ievent_max_size = (sizeof(struct inotify_event)
4683
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
4685
struct inotify_event event;
4686
char name_buffer[NAME_MAX + 1];
4688
struct inotify_event *const ievent = &ievent_buffer.event;
4690
const char dummy_file_name[] = "ignored.dummy_file_name";
4691
ievent->mask = IN_MOVED_FROM;
4692
ievent->len = sizeof(dummy_file_name);
4693
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
4694
const size_t ievent_size = (sizeof(struct inotify_event)
4695
+ sizeof(dummy_file_name));
4696
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
4698
g_assert_cmpint(close(pipefds[1]), ==, 0);
4700
bool quit_now = false;
4701
buffer password = {};
4702
bool mandos_client_exited = false;
4703
bool password_is_read = false;
4704
__attribute__((cleanup(cleanup_queue)))
4705
task_queue *queue = create_queue();
4706
g_assert_nonnull(queue);
4708
task_context task = {
4709
.func=read_inotify_event,
4712
.quit_now=&quit_now,
4713
.password=&password,
4714
.filename=strdup("/nonexistent"),
4715
.cancelled_filenames=&cancelled_filenames,
4716
.current_time=¤t_time,
4717
.mandos_client_exited=&mandos_client_exited,
4718
.password_is_read=&password_is_read,
4720
task.func(task, queue);
4721
g_assert_false(quit_now);
4722
g_assert_true(queue->next_run == 0);
4723
g_assert_cmpuint((unsigned int)queue->length, ==, 1);
4725
g_assert_nonnull(find_matching_task(queue, (task_context){
4726
.func=read_inotify_event,
4729
.quit_now=&quit_now,
4730
.password=&password,
4731
.filename=task.filename,
4732
.cancelled_filenames=&cancelled_filenames,
4733
.current_time=¤t_time,
4734
.mandos_client_exited=&mandos_client_exited,
4735
.password_is_read=&password_is_read,
4738
g_assert_true(epoll_set_contains(epoll_fd, pipefds[0],
4739
EPOLLIN | EPOLLRDHUP));
4741
__attribute__((cleanup(cleanup_string)))
4742
char *filename = NULL;
4743
g_assert_cmpint(asprintf(&filename, "%s/%s", task.filename,
4744
dummy_file_name), >, 0);
4745
g_assert_nonnull(filename);
4746
g_assert_false(string_set_contains(cancelled_filenames, filename));
4334
4750
void test_read_inotify_event_IN_DELETE_badname(__attribute__((unused))
4335
4751
test_fixture *fixture,
4350
4766
const size_t ievent_max_size = (sizeof(struct inotify_event)
4351
4767
+ NAME_MAX + 1);
4352
4768
g_assert_cmpint(ievent_max_size, <=, PIPE_BUF);
4353
char ievent_buffer[sizeof(struct inotify_event) + NAME_MAX + 1];
4354
struct inotify_event *ievent = ((struct inotify_event *)
4770
struct inotify_event event;
4771
char name_buffer[NAME_MAX + 1];
4773
struct inotify_event *const ievent = &ievent_buffer.event;
4357
4775
const char dummy_file_name[] = "ignored.dummy_file_name";
4358
4776
ievent->mask = IN_DELETE;
4360
4778
memcpy(ievent->name, dummy_file_name, sizeof(dummy_file_name));
4361
4779
const size_t ievent_size = (sizeof(struct inotify_event)
4362
4780
+ sizeof(dummy_file_name));
4363
g_assert_cmpint(write(pipefds[1], ievent_buffer, ievent_size),
4781
g_assert_cmpint(write(pipefds[1], (char *)ievent, ievent_size),
4364
4782
==, ievent_size);
4365
4783
g_assert_cmpint(close(pipefds[1]), ==, 0);
7481
7906
test_add("/parse_arguments/mixed", test_parse_arguments_mixed);
7482
7907
test_add("/queue/create", test_create_queue);
7483
7908
test_add("/queue/add", test_add_to_queue);
7909
test_add("/queue/add/overflow", test_add_to_queue_overflow);
7484
7910
test_add("/queue/has_question/empty",
7485
7911
test_queue_has_question_empty);
7486
7912
test_add("/queue/has_question/false",
7573
7999
test_add_inotify_dir_watch);
7574
8000
test_add_st("/task-creators/add_inotify_dir_watch/fail",
7575
8001
test_add_inotify_dir_watch_fail);
8002
test_add_st("/task-creators/add_inotify_dir_watch/not-a-directory",
8003
test_add_inotify_dir_watch_nondir);
7576
8004
test_add_st("/task-creators/add_inotify_dir_watch/EAGAIN",
7577
8005
test_add_inotify_dir_watch_EAGAIN);
7578
8006
test_add_st("/task-creators/add_inotify_dir_watch/IN_CLOSE_WRITE",
7579
8007
test_add_inotify_dir_watch_IN_CLOSE_WRITE);
7580
8008
test_add_st("/task-creators/add_inotify_dir_watch/IN_MOVED_TO",
7581
8009
test_add_inotify_dir_watch_IN_MOVED_TO);
8010
test_add_st("/task-creators/add_inotify_dir_watch/IN_MOVED_FROM",
8011
test_add_inotify_dir_watch_IN_MOVED_FROM);
8012
test_add_st("/task-creators/add_inotify_dir_watch/IN_EXCL_UNLINK",
8013
test_add_inotify_dir_watch_IN_EXCL_UNLINK);
7582
8014
test_add_st("/task-creators/add_inotify_dir_watch/IN_DELETE",
7583
8015
test_add_inotify_dir_watch_IN_DELETE);
7584
8016
test_add_st("/task/read_inotify_event/readerror",
7593
8025
test_read_inotify_event_IN_CLOSE_WRITE);
7594
8026
test_add_st("/task/read_inotify_event/IN_MOVED_TO",
7595
8027
test_read_inotify_event_IN_MOVED_TO);
8028
test_add_st("/task/read_inotify_event/IN_MOVED_FROM",
8029
test_read_inotify_event_IN_MOVED_FROM);
7596
8030
test_add_st("/task/read_inotify_event/IN_DELETE",
7597
8031
test_read_inotify_event_IN_DELETE);
7598
8032
test_add_st("/task/read_inotify_event/IN_CLOSE_WRITE/badname",
7599
8033
test_read_inotify_event_IN_CLOSE_WRITE_badname);
7600
8034
test_add_st("/task/read_inotify_event/IN_MOVED_TO/badname",
7601
8035
test_read_inotify_event_IN_MOVED_TO_badname);
8036
test_add_st("/task/read_inotify_event/IN_MOVED_FROM/badname",
8037
test_read_inotify_event_IN_MOVED_FROM_badname);
7602
8038
test_add_st("/task/read_inotify_event/IN_DELETE/badname",
7603
8039
test_read_inotify_event_IN_DELETE_badname);
7604
8040
test_add_st("/task/open_and_parse_question/ENOENT",
7701
8137
g_option_context_set_help_enabled(context, FALSE);
7702
8138
g_option_context_set_ignore_unknown_options(context, TRUE);
7704
gboolean run_tests = FALSE;
8140
gboolean should_run_tests = FALSE;
7705
8141
GOptionEntry entries[] = {
7706
8142
{ "test", 0, 0, G_OPTION_ARG_NONE,
7707
&run_tests, "Run tests", NULL },
8143
&should_run_tests, "Run tests", NULL },
7710
8146
g_option_context_add_main_entries(context, entries, NULL);