Sync ax_have_epoll.m4 with autoconf-archive
[lttng-tools.git] / src / common / compat / directory-handle.c
CommitLineData
18710679
JG
1/*
2 * Copyright (C) 2019 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#include <common/compat/directory-handle.h>
19#include <common/error.h>
20#include <common/macros.h>
21#include <common/runas.h>
22#include <common/credentials.h>
23#include <lttng/constant.h>
93bed9fe 24#include <common/dynamic-array.h>
18710679
JG
25
26#include <assert.h>
27#include <sys/types.h>
28#include <sys/stat.h>
29#include <fcntl.h>
30#include <unistd.h>
93bed9fe 31#include <dirent.h>
18710679 32
2912cead
JG
33/*
34 * This compatibility layer shares a common "base" that is implemented
35 * in terms of an internal API. This file contains two implementations
36 * of the internal API below.
37 */
18710679 38static
18710679
JG
39int lttng_directory_handle_mkdir(
40 const struct lttng_directory_handle *handle,
41 const char *path, mode_t mode);
42static
43int _run_as_mkdir(const struct lttng_directory_handle *handle, const char *path,
44 mode_t mode, uid_t uid, gid_t gid);
45static
46int _run_as_mkdir_recursive(const struct lttng_directory_handle *handle,
47 const char *path, mode_t mode, uid_t uid, gid_t gid);
46307ffe 48static
2912cead
JG
49int lttng_directory_handle_open(const struct lttng_directory_handle *handle,
50 const char *filename, int flags, mode_t mode);
51static
52int _run_as_open(const struct lttng_directory_handle *handle,
53 const char *filename,
54 int flags, mode_t mode, uid_t uid, gid_t gid);
55static
56int lttng_directory_handle_unlink(
57 const struct lttng_directory_handle *handle,
58 const char *filename);
59static
60int _run_as_unlink(const struct lttng_directory_handle *handle,
61 const char *filename, uid_t uid, gid_t gid);
62static
93bed9fe
JG
63int _lttng_directory_handle_rename(
64 const struct lttng_directory_handle *old_handle,
65 const char *old_name,
66 const struct lttng_directory_handle *new_handle,
67 const char *new_name);
68static
69int _run_as_rename(const struct lttng_directory_handle *old_handle,
70 const char *old_name,
71 const struct lttng_directory_handle *new_handle,
72 const char *new_name, uid_t uid, gid_t gid);
73static
74DIR *lttng_directory_handle_opendir(const struct lttng_directory_handle *handle,
75 const char *path);
76static
77int lttng_directory_handle_rmdir(
78 const struct lttng_directory_handle *handle, const char *name);
79static
80int _run_as_rmdir(const struct lttng_directory_handle *handle,
81 const char *name, uid_t uid, gid_t gid);
82static
83int _run_as_rmdir_recursive(
84 const struct lttng_directory_handle *handle, const char *name,
f75c5439 85 uid_t uid, gid_t gid, int flags);
93bed9fe 86static
46307ffe 87void lttng_directory_handle_invalidate(struct lttng_directory_handle *handle);
cbf53d23
JG
88static
89void lttng_directory_handle_release(struct urcu_ref *ref);
18710679
JG
90
91#ifdef COMPAT_DIRFD
92
0e985513
JG
93/*
94 * Special inode number reserved to represent the "current working directory".
95 * ino_t is spec'ed as being an unsigned integral type.
96 */
97#define RESERVED_AT_FDCWD_INO \
98 ({ \
99 uint64_t reserved_val; \
100 switch (sizeof(ino_t)) { \
101 case 4: \
102 reserved_val = UINT32_MAX; \
103 break; \
104 case 8: \
105 reserved_val = UINT64_MAX; \
106 break; \
107 default: \
108 abort(); \
109 } \
110 (ino_t) reserved_val; \
111 })
112
18710679 113LTTNG_HIDDEN
cbf53d23 114struct lttng_directory_handle *lttng_directory_handle_create(const char *path)
fd774fc6
JG
115{
116 const struct lttng_directory_handle cwd_handle = {
117 .dirfd = AT_FDCWD,
118 };
119
120 /* Open a handle to the CWD if NULL is passed. */
cbf53d23 121 return lttng_directory_handle_create_from_handle(path, &cwd_handle);
fd774fc6
JG
122}
123
124LTTNG_HIDDEN
cbf53d23
JG
125struct lttng_directory_handle *lttng_directory_handle_create_from_handle(
126 const char *path,
127 const struct lttng_directory_handle *ref_handle)
18710679 128{
cbf53d23
JG
129 int dirfd;
130 struct lttng_directory_handle *handle = NULL;
18710679
JG
131
132 if (!path) {
cbf53d23 133 handle = lttng_directory_handle_copy(ref_handle);
18710679
JG
134 goto end;
135 }
fd774fc6
JG
136 if (!*path) {
137 ERR("Failed to initialize directory handle: provided path is an empty string");
fd774fc6
JG
138 goto end;
139 }
cbf53d23
JG
140
141 dirfd = openat(ref_handle->dirfd, path, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
142 if (dirfd == -1) {
18710679
JG
143 PERROR("Failed to initialize directory handle to \"%s\"", path);
144 goto end;
145 }
cbf53d23
JG
146
147 handle = lttng_directory_handle_create_from_dirfd(dirfd);
148 if (!handle) {
149 goto error_close;
150 }
18710679 151end:
cbf53d23
JG
152 return handle;
153error_close:
154 if (close(dirfd)) {
155 PERROR("Failed to close directory file descriptor");
156 }
157 return NULL;
18710679
JG
158}
159
160LTTNG_HIDDEN
cbf53d23
JG
161struct lttng_directory_handle *lttng_directory_handle_create_from_dirfd(
162 int dirfd)
18710679 163{
0e985513 164 int ret;
cbf53d23 165 struct lttng_directory_handle *handle = zmalloc(sizeof(*handle));
0e985513 166 struct stat stat_buf;
cbf53d23
JG
167
168 if (!handle) {
169 goto end;
170 }
0e985513
JG
171
172 if (dirfd != AT_FDCWD) {
173 ret = fstat(dirfd, &stat_buf);
174 if (ret) {
175 PERROR("Failed to fstat directory file descriptor %i", dirfd);
176 lttng_directory_handle_release(&handle->ref);
177 }
178 } else {
179 handle->directory_inode = RESERVED_AT_FDCWD_INO;
180 }
18710679 181 handle->dirfd = dirfd;
cbf53d23
JG
182 urcu_ref_init(&handle->ref);
183end:
184 return handle;
18710679
JG
185}
186
cbf53d23
JG
187static
188void lttng_directory_handle_release(struct urcu_ref *ref)
18710679
JG
189{
190 int ret;
cbf53d23
JG
191 struct lttng_directory_handle *handle =
192 container_of(ref, struct lttng_directory_handle, ref);
18710679 193
46307ffe
JG
194 if (handle->dirfd == AT_FDCWD || handle->dirfd == -1) {
195 goto end;
18710679
JG
196 }
197 ret = close(handle->dirfd);
198 if (ret == -1) {
199 PERROR("Failed to close directory file descriptor of directory handle");
200 }
46307ffe
JG
201end:
202 lttng_directory_handle_invalidate(handle);
cbf53d23 203 free(handle);
18710679
JG
204}
205
578e21bd 206LTTNG_HIDDEN
cbf53d23
JG
207struct lttng_directory_handle *lttng_directory_handle_copy(
208 const struct lttng_directory_handle *handle)
578e21bd 209{
cbf53d23 210 struct lttng_directory_handle *new_handle = NULL;
578e21bd
JG
211
212 if (handle->dirfd == AT_FDCWD) {
cbf53d23 213 new_handle = lttng_directory_handle_create_from_dirfd(AT_FDCWD);
578e21bd 214 } else {
cbf53d23
JG
215 const int new_dirfd = dup(handle->dirfd);
216
217 if (new_dirfd == -1) {
218 PERROR("Failed to duplicate directory file descriptor of directory handle");
219 goto end;
220 }
221 new_handle = lttng_directory_handle_create_from_dirfd(
222 new_dirfd);
223 if (!new_handle && close(new_dirfd)) {
224 PERROR("Failed to close directory file descriptor of directory handle");
578e21bd
JG
225 }
226 }
cbf53d23
JG
227end:
228 return new_handle;
578e21bd
JG
229}
230
0e985513
JG
231LTTNG_HIDDEN
232bool lttng_directory_handle_equals(const struct lttng_directory_handle *lhs,
233 const struct lttng_directory_handle *rhs)
234{
235 return lhs->directory_inode == rhs->directory_inode;
236}
237
46307ffe
JG
238static
239void lttng_directory_handle_invalidate(struct lttng_directory_handle *handle)
240{
241 handle->dirfd = -1;
242}
243
57b14318 244LTTNG_HIDDEN
18710679
JG
245int lttng_directory_handle_stat(const struct lttng_directory_handle *handle,
246 const char *path, struct stat *st)
247{
248 return fstatat(handle->dirfd, path, st, 0);
249}
250
9a1a997f
JG
251LTTNG_HIDDEN
252bool lttng_directory_handle_uses_fd(
253 const struct lttng_directory_handle *handle)
254{
255 return handle->dirfd != AT_FDCWD;
256}
257
18710679
JG
258static
259int lttng_directory_handle_mkdir(
260 const struct lttng_directory_handle *handle,
261 const char *path, mode_t mode)
262{
263 return mkdirat(handle->dirfd, path, mode);
264}
265
266static
2912cead
JG
267int lttng_directory_handle_open(const struct lttng_directory_handle *handle,
268 const char *filename, int flags, mode_t mode)
269{
270 return openat(handle->dirfd, filename, flags, mode);
271}
272
273static
274int _run_as_open(const struct lttng_directory_handle *handle,
275 const char *filename,
276 int flags, mode_t mode, uid_t uid, gid_t gid)
277{
278 return run_as_openat(handle->dirfd, filename, flags, mode, uid, gid);
279}
280
281static
282int _run_as_unlink(const struct lttng_directory_handle *handle,
283 const char *filename, uid_t uid, gid_t gid)
284{
285 return run_as_unlinkat(handle->dirfd, filename, uid, gid);
286}
287
288static
289int lttng_directory_handle_unlink(
290 const struct lttng_directory_handle *handle,
291 const char *filename)
292{
293 return unlinkat(handle->dirfd, filename, 0);
294}
295
296static
297int _run_as_mkdir(const struct lttng_directory_handle *handle,
298 const char *path, mode_t mode, uid_t uid, gid_t gid)
18710679
JG
299{
300 return run_as_mkdirat(handle->dirfd, path, mode, uid, gid);
301}
302
303static
304int _run_as_mkdir_recursive(const struct lttng_directory_handle *handle,
305 const char *path, mode_t mode, uid_t uid, gid_t gid)
306{
307 return run_as_mkdirat_recursive(handle->dirfd, path, mode, uid, gid);
308}
309
93bed9fe
JG
310static
311int _lttng_directory_handle_rename(
312 const struct lttng_directory_handle *old_handle,
313 const char *old_name,
314 const struct lttng_directory_handle *new_handle,
315 const char *new_name)
316{
317 return renameat(old_handle->dirfd, old_name,
318 new_handle->dirfd, new_name);
319}
320
321static
322int _run_as_rename(const struct lttng_directory_handle *old_handle,
323 const char *old_name,
324 const struct lttng_directory_handle *new_handle,
325 const char *new_name, uid_t uid, gid_t gid)
326{
327 return run_as_renameat(old_handle->dirfd, old_name, new_handle->dirfd,
328 new_name, uid, gid);
329}
330
331static
332DIR *lttng_directory_handle_opendir(const struct lttng_directory_handle *handle,
333 const char *path)
334{
335 DIR *dir_stream = NULL;
336 int fd = openat(handle->dirfd, path, O_RDONLY);
337
338 if (fd < 0) {
339 goto end;
340 }
341
342 dir_stream = fdopendir(fd);
343 if (!dir_stream) {
344 int ret;
345
346 PERROR("Failed to open directory stream");
347 ret = close(fd);
348 if (ret) {
349 PERROR("Failed to close file descriptor to %s", path);
350 }
351 goto end;
352 }
353
354end:
355 return dir_stream;
356}
357
358static
359int lttng_directory_handle_rmdir(
360 const struct lttng_directory_handle *handle, const char *name)
361{
362 return unlinkat(handle->dirfd, name, AT_REMOVEDIR);
363}
364
365static
366int _run_as_rmdir(const struct lttng_directory_handle *handle,
367 const char *name, uid_t uid, gid_t gid)
368{
369 return run_as_rmdirat(handle->dirfd, name, uid, gid);
370}
371
372static
373int _run_as_rmdir_recursive(
374 const struct lttng_directory_handle *handle, const char *name,
f75c5439 375 uid_t uid, gid_t gid, int flags)
93bed9fe 376{
f75c5439 377 return run_as_rmdirat_recursive(handle->dirfd, name, uid, gid, flags);
93bed9fe
JG
378}
379
18710679
JG
380#else /* COMPAT_DIRFD */
381
fd774fc6
JG
382static
383int get_full_path(const struct lttng_directory_handle *handle,
384 const char *subdirectory, char *fullpath, size_t size)
385{
386 int ret;
93bed9fe
JG
387 const bool subdirectory_is_absolute =
388 subdirectory && *subdirectory == '/';
389 const char * const base = subdirectory_is_absolute ?
390 subdirectory : handle->base_path;
391 const char * const end = subdirectory && !subdirectory_is_absolute ?
392 subdirectory : NULL;
393 const size_t base_len = strlen(base);
394 const size_t end_len = end ? strlen(end) : 0;
395 const bool add_separator_slash = end && base[base_len - 1] != '/';
396 const bool add_trailing_slash = end && end[end_len - 1] != '/';
397
398 ret = snprintf(fullpath, size, "%s%s%s%s",
399 base,
400 add_separator_slash ? "/" : "",
401 end ? end : "",
402 add_trailing_slash ? "/" : "");
fd774fc6
JG
403 if (ret == -1 || ret >= size) {
404 ERR("Failed to format subdirectory from directory handle");
405 ret = -1;
93bed9fe 406 goto end;
fd774fc6
JG
407 }
408 ret = 0;
93bed9fe 409end:
fd774fc6
JG
410 return ret;
411}
412
cbf53d23
JG
413static
414struct lttng_directory_handle *_lttng_directory_handle_create(char *path)
415{
416 struct lttng_directory_handle *handle = zmalloc(sizeof(*handle));
417
418 if (!handle) {
419 goto end;
420 }
421 urcu_ref_init(&handle->ref);
422 handle->base_path = path;
423end:
424 return handle;
425}
426
18710679 427LTTNG_HIDDEN
cbf53d23 428struct lttng_directory_handle *lttng_directory_handle_create(
18710679
JG
429 const char *path)
430{
431 int ret;
93bed9fe 432 const char *cwd = "";
fd774fc6
JG
433 size_t cwd_len, path_len;
434 char cwd_buf[LTTNG_PATH_MAX] = {};
435 char handle_buf[LTTNG_PATH_MAX] = {};
cbf53d23 436 struct lttng_directory_handle *new_handle = NULL;
93bed9fe 437 bool add_cwd_slash = false, add_trailing_slash = false;
fd774fc6
JG
438 const struct lttng_directory_handle cwd_handle = {
439 .base_path = handle_buf,
440 };
441
fd774fc6 442 path_len = path ? strlen(path) : 0;
fd774fc6 443 add_trailing_slash = path && path[path_len - 1] != '/';
93bed9fe
JG
444 if (!path || (path && *path != '/')) {
445 cwd = getcwd(cwd_buf, sizeof(cwd_buf));
446 if (!cwd) {
447 PERROR("Failed to initialize directory handle, can't get current working directory");
448 ret = -1;
449 goto end;
450 }
451 cwd_len = strlen(cwd);
452 if (cwd_len == 0) {
453 ERR("Failed to initialize directory handle, current working directory path has a length of 0");
454 ret = -1;
455 goto end;
456 }
457 add_cwd_slash = cwd[cwd_len - 1] != '/';
458 }
fd774fc6
JG
459
460 ret = snprintf(handle_buf, sizeof(handle_buf), "%s%s%s%s",
461 cwd,
462 add_cwd_slash ? "/" : "",
463 path ? : "",
464 add_trailing_slash ? "/" : "");
465 if (ret == -1 || ret >= LTTNG_PATH_MAX) {
466 ERR("Failed to initialize directory handle, failed to format directory path");
467 goto end;
18710679 468 }
93bed9fe 469
cbf53d23 470 new_handle = lttng_directory_handle_create_from_handle(path, &cwd_handle);
fd774fc6 471end:
cbf53d23 472 return new_handle;
fd774fc6 473}
18710679 474
fd774fc6 475LTTNG_HIDDEN
cbf53d23
JG
476struct lttng_directory_handle *lttng_directory_handle_create_from_handle(
477 const char *path,
478 const struct lttng_directory_handle *ref_handle)
fd774fc6
JG
479{
480 int ret;
481 size_t path_len, handle_path_len;
482 bool add_trailing_slash;
483 struct stat stat_buf;
cbf53d23
JG
484 struct lttng_directory_handle *new_handle = NULL;
485 char *new_path = NULL;
18710679 486
cbf53d23 487 assert(ref_handle && ref_handle->base_path);
fd774fc6 488
cbf53d23 489 ret = lttng_directory_handle_stat(ref_handle, path, &stat_buf);
fd774fc6
JG
490 if (ret == -1) {
491 PERROR("Failed to create directory handle");
492 goto end;
493 } else if (!S_ISDIR(stat_buf.st_mode)) {
494 char full_path[LTTNG_PATH_MAX];
495
496 /* Best effort for logging purposes. */
cbf53d23 497 ret = get_full_path(ref_handle, path, full_path,
fd774fc6
JG
498 sizeof(full_path));
499 if (ret) {
500 full_path[0] = '\0';
18710679 501 }
fd774fc6
JG
502
503 ERR("Failed to initialize directory handle to \"%s\": not a directory",
504 full_path);
fd774fc6
JG
505 goto end;
506 }
507 if (!path) {
cbf53d23 508 new_handle = lttng_directory_handle_copy(ref_handle);
fd774fc6
JG
509 goto end;
510 }
511
512 path_len = strlen(path);
513 if (path_len == 0) {
514 ERR("Failed to initialize directory handle: provided path is an empty string");
515 ret = -1;
516 goto end;
517 }
518 if (*path == '/') {
cbf53d23
JG
519 new_path = strdup(path);
520 if (!new_path) {
521 goto end;
522 }
523 /* Takes ownership of new_path. */
524 new_handle = _lttng_directory_handle_create(new_path);
525 new_path = NULL;
fd774fc6 526 goto end;
18710679
JG
527 }
528
fd774fc6
JG
529 add_trailing_slash = path[path_len - 1] != '/';
530
cbf53d23 531 handle_path_len = strlen(ref_handle->base_path) + path_len +
fd774fc6 532 !!add_trailing_slash;
18710679
JG
533 if (handle_path_len >= LTTNG_PATH_MAX) {
534 ERR("Failed to initialize directory handle as the resulting path's length (%zu bytes) exceeds the maximal allowed length (%d bytes)",
535 handle_path_len, LTTNG_PATH_MAX);
18710679
JG
536 goto end;
537 }
cbf53d23
JG
538 new_path = zmalloc(handle_path_len);
539 if (!new_path) {
18710679 540 PERROR("Failed to initialize directory handle");
18710679
JG
541 goto end;
542 }
543
fd774fc6 544 ret = sprintf(new_handle->base_path, "%s%s%s",
cbf53d23 545 ref_handle->base_path,
fd774fc6
JG
546 path,
547 add_trailing_slash ? "/" : "");
18710679
JG
548 if (ret == -1 || ret >= handle_path_len) {
549 ERR("Failed to initialize directory handle: path formatting failed");
18710679
JG
550 goto end;
551 }
cbf53d23
JG
552 new_handle = _lttng_directory_handle_create(new_path);
553 new_path = NULL;
18710679 554end:
cbf53d23
JG
555 free(new_path);
556 return new_handle;
18710679
JG
557}
558
559LTTNG_HIDDEN
cbf53d23
JG
560struct lttng_directory_handle *lttng_directory_handle_create_from_dirfd(
561 int dirfd)
18710679
JG
562{
563 assert(dirfd == AT_FDCWD);
cbf53d23 564 return lttng_directory_handle_create(NULL);
18710679
JG
565}
566
cbf53d23
JG
567static
568void lttng_directory_handle_release(struct urcu_ref *ref)
18710679 569{
cbf53d23
JG
570 struct lttng_directory_handle *handle =
571 container_of(ref, struct lttng_directory_handle, ref);
572
18710679 573 free(handle->base_path);
46307ffe 574 lttng_directory_handle_invalidate(handle);
cbf53d23 575 free(handle);
18710679
JG
576}
577
578e21bd 578LTTNG_HIDDEN
cbf53d23
JG
579struct lttng_directory_handle *lttng_directory_handle_copy(
580 const struct lttng_directory_handle *handle)
578e21bd 581{
cbf53d23
JG
582 struct lttng_directory_handle *new_handle = NULL;
583 char *new_path = NULL;
584
585 if (handle->base_path) {
586 new_path = strdup(handle->base_path);
587 if (!new_path) {
588 goto end;
589 }
590 }
591 new_handle = _lttng_directory_handle_create(new_path);
592end:
593 return new_handle;
578e21bd
JG
594}
595
0e985513
JG
596LTTNG_HIDDEN
597bool lttng_directory_handle_equals(const struct lttng_directory_handle *lhs,
598 const struct lttng_directory_handle *rhs)
599{
600 return strcmp(lhs->path, rhs->path) == 0;
601}
602
46307ffe
JG
603static
604void lttng_directory_handle_invalidate(struct lttng_directory_handle *handle)
605{
606 handle->base_path = NULL;
607}
608
57b14318 609LTTNG_HIDDEN
18710679
JG
610int lttng_directory_handle_stat(const struct lttng_directory_handle *handle,
611 const char *subdirectory, struct stat *st)
612{
613 int ret;
614 char fullpath[LTTNG_PATH_MAX];
615
616 ret = get_full_path(handle, subdirectory, fullpath, sizeof(fullpath));
617 if (ret) {
618 errno = ENOMEM;
619 goto end;
620 }
621
622 ret = stat(fullpath, st);
623end:
624 return ret;
625}
626
9a1a997f
JG
627LTTNG_HIDDEN
628bool lttng_directory_handle_uses_fd(
629 const struct lttng_directory_handle *handle)
630{
631 return false;
632}
633
18710679
JG
634static
635int lttng_directory_handle_mkdir(const struct lttng_directory_handle *handle,
636 const char *subdirectory, mode_t mode)
637{
638 int ret;
639 char fullpath[LTTNG_PATH_MAX];
640
641 ret = get_full_path(handle, subdirectory, fullpath, sizeof(fullpath));
642 if (ret) {
643 errno = ENOMEM;
644 goto end;
645 }
646
647 ret = mkdir(fullpath, mode);
648end:
649 return ret;
650}
651
2912cead
JG
652static
653int lttng_directory_handle_open(const struct lttng_directory_handle *handle,
654 const char *filename, int flags, mode_t mode)
655{
656 int ret;
657 char fullpath[LTTNG_PATH_MAX];
658
659 ret = get_full_path(handle, filename, fullpath, sizeof(fullpath));
660 if (ret) {
661 errno = ENOMEM;
662 goto end;
663 }
664
665 ret = open(fullpath, flags, mode);
666end:
667 return ret;
668}
669
670static
671int lttng_directory_handle_unlink(
672 const struct lttng_directory_handle *handle,
673 const char *filename)
674{
675 int ret;
676 char fullpath[LTTNG_PATH_MAX];
677
678 ret = get_full_path(handle, filename, fullpath, sizeof(fullpath));
679 if (ret) {
680 errno = ENOMEM;
681 goto end;
682 }
683
684 ret = unlink(fullpath);
685end:
686 return ret;
687}
688
18710679
JG
689static
690int _run_as_mkdir(const struct lttng_directory_handle *handle, const char *path,
691 mode_t mode, uid_t uid, gid_t gid)
692{
693 int ret;
694 char fullpath[LTTNG_PATH_MAX];
695
696 ret = get_full_path(handle, path, fullpath, sizeof(fullpath));
697 if (ret) {
698 errno = ENOMEM;
699 goto end;
700 }
701
702 ret = run_as_mkdir(fullpath, mode, uid, gid);
703end:
704 return ret;
705}
706
2912cead
JG
707static
708int _run_as_open(const struct lttng_directory_handle *handle,
709 const char *filename,
710 int flags, mode_t mode, uid_t uid, gid_t gid)
711{
712 int ret;
713 char fullpath[LTTNG_PATH_MAX];
714
715 ret = get_full_path(handle, filename, fullpath, sizeof(fullpath));
716 if (ret) {
717 errno = ENOMEM;
718 goto end;
719 }
720
721 ret = run_as_open(fullpath, flags, mode, uid, gid);
722end:
723 return ret;
724}
725
726static
727int _run_as_unlink(const struct lttng_directory_handle *handle,
728 const char *filename, uid_t uid, gid_t gid)
729{
730 int ret;
731 char fullpath[LTTNG_PATH_MAX];
732
733 ret = get_full_path(handle, filename, fullpath, sizeof(fullpath));
734 if (ret) {
735 errno = ENOMEM;
736 goto end;
737 }
738
739 ret = run_as_unlink(fullpath, uid, gid);
740end:
741 return ret;
742}
743
18710679
JG
744static
745int _run_as_mkdir_recursive(const struct lttng_directory_handle *handle,
746 const char *path, mode_t mode, uid_t uid, gid_t gid)
747{
748 int ret;
749 char fullpath[LTTNG_PATH_MAX];
750
751 ret = get_full_path(handle, path, fullpath, sizeof(fullpath));
752 if (ret) {
753 errno = ENOMEM;
754 goto end;
755 }
756
757 ret = run_as_mkdir_recursive(fullpath, mode, uid, gid);
758end:
759 return ret;
760}
761
93bed9fe
JG
762static
763int _lttng_directory_handle_rename(
764 const struct lttng_directory_handle *old_handle,
765 const char *old_name,
766 const struct lttng_directory_handle *new_handle,
767 const char *new_name)
768{
769 int ret;
770 char old_fullpath[LTTNG_PATH_MAX];
771 char new_fullpath[LTTNG_PATH_MAX];
772
773 ret = get_full_path(old_handle, old_name, old_fullpath,
774 sizeof(old_fullpath));
775 if (ret) {
776 errno = ENOMEM;
777 goto end;
778 }
779 ret = get_full_path(new_handle, new_name, new_fullpath,
780 sizeof(new_fullpath));
781 if (ret) {
782 errno = ENOMEM;
783 goto end;
784 }
785
786 ret = rename(old_fullpath, new_fullpath);
787end:
788 return ret;
789}
790
791static
792int _run_as_rename(const struct lttng_directory_handle *old_handle,
793 const char *old_name,
794 const struct lttng_directory_handle *new_handle,
795 const char *new_name, uid_t uid, gid_t gid)
796{
797 int ret;
798 char old_fullpath[LTTNG_PATH_MAX];
799 char new_fullpath[LTTNG_PATH_MAX];
800
801 ret = get_full_path(old_handle, old_name, old_fullpath,
802 sizeof(old_fullpath));
803 if (ret) {
804 errno = ENOMEM;
805 goto end;
806 }
807 ret = get_full_path(new_handle, new_name, new_fullpath,
808 sizeof(new_fullpath));
809 if (ret) {
810 errno = ENOMEM;
811 goto end;
812 }
813
814 ret = run_as_rename(old_fullpath, new_fullpath, uid, gid);
815end:
816 return ret;
817}
818
819static
820DIR *lttng_directory_handle_opendir(const struct lttng_directory_handle *handle,
821 const char *path)
822{
823 int ret;
824 DIR *dir_stream = NULL;
825 char fullpath[LTTNG_PATH_MAX];
826
827 ret = get_full_path(handle, path, fullpath, sizeof(fullpath));
828 if (ret) {
829 errno = ENOMEM;
830 goto end;
831 }
832
833 dir_stream = opendir(fullpath);
834end:
835 return dir_stream;
836}
837
838static
839int lttng_directory_handle_rmdir(
840 const struct lttng_directory_handle *handle, const char *name)
841{
842 int ret;
843 char fullpath[LTTNG_PATH_MAX];
844
845 ret = get_full_path(handle, name, fullpath, sizeof(fullpath));
846 if (ret) {
847 errno = ENOMEM;
848 goto end;
849 }
850
851 ret = rmdir(fullpath);
852end:
853 return ret;
854}
855
856static
857int _run_as_rmdir(const struct lttng_directory_handle *handle,
858 const char *name, uid_t uid, gid_t gid)
859{
860 int ret;
861 char fullpath[LTTNG_PATH_MAX];
862
863 ret = get_full_path(handle, name, fullpath, sizeof(fullpath));
864 if (ret) {
865 errno = ENOMEM;
866 goto end;
867 }
868
869 ret = run_as_rmdir(fullpath, uid, gid);
870end:
871 return ret;
872}
873
874static
875int _run_as_rmdir_recursive(
876 const struct lttng_directory_handle *handle, const char *name,
f75c5439 877 uid_t uid, gid_t gid, int flags)
93bed9fe
JG
878{
879 int ret;
880 char fullpath[LTTNG_PATH_MAX];
881
882 ret = get_full_path(handle, name, fullpath, sizeof(fullpath));
883 if (ret) {
884 errno = ENOMEM;
885 goto end;
886 }
887
f75c5439 888 ret = run_as_rmdir_recursive(fullpath, uid, gid, flags);
93bed9fe
JG
889end:
890 return ret;
891}
892
18710679
JG
893#endif /* COMPAT_DIRFD */
894
93bed9fe
JG
895/* Common implementation. */
896
18710679
JG
897/*
898 * On some filesystems (e.g. nfs), mkdir will validate access rights before
899 * checking for the existence of the path element. This means that on a setup
900 * where "/home/" is a mounted NFS share, and running as an unpriviledged user,
901 * recursively creating a path of the form "/home/my_user/trace/" will fail with
902 * EACCES on mkdir("/home", ...).
903 *
904 * Checking the path for existence allows us to work around this behaviour.
905 */
906static
907int create_directory_check_exists(const struct lttng_directory_handle *handle,
908 const char *path, mode_t mode)
909{
910 int ret = 0;
911 struct stat st;
912
913 ret = lttng_directory_handle_stat(handle, path, &st);
914 if (ret == 0) {
915 if (S_ISDIR(st.st_mode)) {
916 /* Directory exists, skip. */
917 goto end;
918 } else {
919 /* Exists, but is not a directory. */
920 errno = ENOTDIR;
921 ret = -1;
922 goto end;
923 }
93bed9fe
JG
924 } else if (errno != ENOENT) {
925 goto end;
18710679
JG
926 }
927
928 /*
929 * Let mkdir handle other errors as the caller expects mkdir
930 * semantics.
931 */
932 ret = lttng_directory_handle_mkdir(handle, path, mode);
933end:
934 return ret;
935}
936
18710679
JG
937static
938int create_directory_recursive(const struct lttng_directory_handle *handle,
939 const char *path, mode_t mode)
940{
941 char *p, tmp[LTTNG_PATH_MAX];
942 size_t len;
943 int ret;
944
945 assert(path);
946
947 ret = lttng_strncpy(tmp, path, sizeof(tmp));
948 if (ret) {
949 ERR("Failed to create directory: provided path's length (%zu bytes) exceeds the maximal allowed length (%zu bytes)",
950 strlen(path) + 1, sizeof(tmp));
951 goto error;
952 }
953
954 len = strlen(path);
955 if (tmp[len - 1] == '/') {
956 tmp[len - 1] = 0;
957 }
958
959 for (p = tmp + 1; *p; p++) {
960 if (*p == '/') {
961 *p = 0;
962 if (tmp[strlen(tmp) - 1] == '.' &&
963 tmp[strlen(tmp) - 2] == '.' &&
964 tmp[strlen(tmp) - 3] == '/') {
965 ERR("Using '/../' is not permitted in the trace path (%s)",
966 tmp);
967 ret = -1;
968 goto error;
969 }
970 ret = create_directory_check_exists(handle, tmp, mode);
971 if (ret < 0) {
972 if (errno != EACCES) {
973 PERROR("Failed to create directory \"%s\"",
974 path);
975 ret = -errno;
976 goto error;
977 }
978 }
979 *p = '/';
980 }
981 }
982
983 ret = create_directory_check_exists(handle, tmp, mode);
984 if (ret < 0) {
985 PERROR("mkdirat recursive last element");
986 ret = -errno;
987 }
988error:
989 return ret;
990}
991
cbf53d23
JG
992LTTNG_HIDDEN
993bool lttng_directory_handle_get(struct lttng_directory_handle *handle)
994{
995 return urcu_ref_get_unless_zero(&handle->ref);
996}
997
998LTTNG_HIDDEN
999void lttng_directory_handle_put(struct lttng_directory_handle *handle)
1000{
1001 if (!handle) {
1002 return;
1003 }
1004 assert(handle->ref.refcount);
1005 urcu_ref_put(&handle->ref, lttng_directory_handle_release);
1006}
1007
18710679
JG
1008LTTNG_HIDDEN
1009int lttng_directory_handle_create_subdirectory_as_user(
1010 const struct lttng_directory_handle *handle,
1011 const char *subdirectory,
69e3a560 1012 mode_t mode, const struct lttng_credentials *creds)
18710679
JG
1013{
1014 int ret;
1015
1016 if (!creds) {
1017 /* Run as current user. */
1018 ret = create_directory_check_exists(handle,
1019 subdirectory, mode);
1020 } else {
1021 ret = _run_as_mkdir(handle, subdirectory,
1022 mode, creds->uid, creds->gid);
1023 }
1024
1025 return ret;
1026}
1027
1028LTTNG_HIDDEN
1029int lttng_directory_handle_create_subdirectory_recursive_as_user(
1030 const struct lttng_directory_handle *handle,
1031 const char *subdirectory_path,
69e3a560 1032 mode_t mode, const struct lttng_credentials *creds)
18710679
JG
1033{
1034 int ret;
1035
1036 if (!creds) {
1037 /* Run as current user. */
1038 ret = create_directory_recursive(handle,
1039 subdirectory_path, mode);
1040 } else {
1041 ret = _run_as_mkdir_recursive(handle, subdirectory_path,
1042 mode, creds->uid, creds->gid);
1043 }
1044
1045 return ret;
1046}
1047
1048LTTNG_HIDDEN
1049int lttng_directory_handle_create_subdirectory(
1050 const struct lttng_directory_handle *handle,
1051 const char *subdirectory,
1052 mode_t mode)
1053{
1054 return lttng_directory_handle_create_subdirectory_as_user(
1055 handle, subdirectory, mode, NULL);
1056}
1057
1058LTTNG_HIDDEN
1059int lttng_directory_handle_create_subdirectory_recursive(
1060 const struct lttng_directory_handle *handle,
1061 const char *subdirectory_path,
1062 mode_t mode)
1063{
1064 return lttng_directory_handle_create_subdirectory_recursive_as_user(
1065 handle, subdirectory_path, mode, NULL);
1066}
2912cead
JG
1067
1068LTTNG_HIDDEN
1069int lttng_directory_handle_open_file_as_user(
1070 const struct lttng_directory_handle *handle,
1071 const char *filename,
1072 int flags, mode_t mode,
1073 const struct lttng_credentials *creds)
1074{
1075 int ret;
1076
1077 if (!creds) {
1078 /* Run as current user. */
1079 ret = lttng_directory_handle_open(handle, filename, flags,
1080 mode);
1081 } else {
1082 ret = _run_as_open(handle, filename, flags, mode,
1083 creds->uid, creds->gid);
1084 }
1085 return ret;
1086}
1087
1088LTTNG_HIDDEN
1089int lttng_directory_handle_open_file(
1090 const struct lttng_directory_handle *handle,
1091 const char *filename,
1092 int flags, mode_t mode)
1093{
1094 return lttng_directory_handle_open_file_as_user(handle, filename, flags,
1095 mode, NULL);
1096}
1097
1098LTTNG_HIDDEN
1099int lttng_directory_handle_unlink_file_as_user(
1100 const struct lttng_directory_handle *handle,
1101 const char *filename,
1102 const struct lttng_credentials *creds)
1103{
1104 int ret;
1105
1106 if (!creds) {
1107 /* Run as current user. */
1108 ret = lttng_directory_handle_unlink(handle, filename);
1109 } else {
1110 ret = _run_as_unlink(handle, filename, creds->uid, creds->gid);
1111 }
1112 return ret;
1113}
1114
1115LTTNG_HIDDEN
1116int lttng_directory_handle_unlink_file(
1117 const struct lttng_directory_handle *handle,
1118 const char *filename)
1119{
1120 return lttng_directory_handle_unlink_file_as_user(handle,
1121 filename, NULL);
1122}
93bed9fe
JG
1123
1124LTTNG_HIDDEN
1125int lttng_directory_handle_rename(
1126 const struct lttng_directory_handle *old_handle,
1127 const char *old_name,
1128 const struct lttng_directory_handle *new_handle,
1129 const char *new_name)
1130{
1131 return lttng_directory_handle_rename_as_user(old_handle, old_name,
1132 new_handle, new_name, NULL);
1133}
1134
1135LTTNG_HIDDEN
1136int lttng_directory_handle_rename_as_user(
1137 const struct lttng_directory_handle *old_handle,
1138 const char *old_name,
1139 const struct lttng_directory_handle *new_handle,
1140 const char *new_name,
1141 const struct lttng_credentials *creds)
1142{
1143 int ret;
1144
1145 if (!creds) {
1146 /* Run as current user. */
1147 ret = _lttng_directory_handle_rename(old_handle,
1148 old_name, new_handle, new_name);
1149 } else {
1150 ret = _run_as_rename(old_handle, old_name, new_handle,
1151 new_name, creds->uid, creds->gid);
1152 }
1153 return ret;
1154}
1155
1156LTTNG_HIDDEN
1157int lttng_directory_handle_remove_subdirectory(
1158 const struct lttng_directory_handle *handle,
1159 const char *name)
1160{
1161 return lttng_directory_handle_remove_subdirectory_as_user(handle, name,
1162 NULL);
1163}
1164
1165LTTNG_HIDDEN
1166int lttng_directory_handle_remove_subdirectory_as_user(
1167 const struct lttng_directory_handle *handle,
1168 const char *name,
1169 const struct lttng_credentials *creds)
1170{
1171 int ret;
1172
1173 if (!creds) {
1174 /* Run as current user. */
1175 ret = lttng_directory_handle_rmdir(handle, name);
1176 } else {
1177 ret = _run_as_rmdir(handle, name, creds->uid, creds->gid);
1178 }
1179 return ret;
1180}
1181
1182struct rmdir_frame {
f75c5439 1183 ssize_t parent_frame_idx;
93bed9fe 1184 DIR *dir;
f75c5439 1185 bool empty;
93bed9fe
JG
1186 /* Size including '\0'. */
1187 size_t path_size;
1188};
1189
1190static
1191void rmdir_frame_fini(void *data)
1192{
41066401 1193 int ret;
93bed9fe
JG
1194 struct rmdir_frame *frame = data;
1195
41066401
FD
1196 ret = closedir(frame->dir);
1197 if (ret == -1) {
1198 PERROR("Failed to close directory stream");
1199 }
93bed9fe
JG
1200}
1201
1202static
1203int remove_directory_recursive(const struct lttng_directory_handle *handle,
f75c5439 1204 const char *path, int flags)
93bed9fe
JG
1205{
1206 int ret;
1207 struct lttng_dynamic_array frames;
1208 size_t current_frame_idx = 0;
1209 struct rmdir_frame initial_frame = {
f75c5439 1210 .parent_frame_idx = -1,
93bed9fe 1211 .dir = lttng_directory_handle_opendir(handle, path),
f75c5439 1212 .empty = true,
93bed9fe
JG
1213 .path_size = strlen(path) + 1,
1214 };
1215 struct lttng_dynamic_buffer current_path;
1216 const char separator = '/';
1217
1218 lttng_dynamic_buffer_init(&current_path);
1219 lttng_dynamic_array_init(&frames, sizeof(struct rmdir_frame),
f75c5439
MD
1220 rmdir_frame_fini);
1221
1222 if (flags & ~(LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG |
1223 LTTNG_DIRECTORY_HANDLE_FAIL_NON_EMPTY_FLAG)) {
1224 ERR("Unknown flags %d", flags);
1225 ret = -1;
1226 goto end;
1227 }
1228
1229 if (!initial_frame.dir) {
1230 if (flags & LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG &&
1231 errno == ENOENT) {
1232 DBG("Cannot rmdir \"%s\": root does not exist", path);
1233 ret = 0;
1234 goto end;
1235 } else {
1236 PERROR("Failed to rmdir \"%s\"", path);
1237 ret = -1;
1238 goto end;
1239 }
1240 }
93bed9fe
JG
1241
1242 ret = lttng_dynamic_array_add_element(&frames, &initial_frame);
1243 if (ret) {
1244 ERR("Failed to push context frame during recursive directory removal");
1245 rmdir_frame_fini(&initial_frame);
1246 goto end;
1247 }
1248
f75c5439
MD
1249 ret = lttng_dynamic_buffer_append(
1250 &current_path, path, initial_frame.path_size);
1251 if (ret) {
93bed9fe
JG
1252 ERR("Failed to set initial path during recursive directory removal");
1253 ret = -1;
1254 goto end;
f75c5439 1255 }
93bed9fe 1256
f75c5439 1257 while (lttng_dynamic_array_get_count(&frames) > 0) {
93bed9fe
JG
1258 struct dirent *entry;
1259 struct rmdir_frame *current_frame =
f75c5439
MD
1260 lttng_dynamic_array_get_element(
1261 &frames, current_frame_idx);
93bed9fe 1262
f75c5439
MD
1263 assert(current_frame->dir);
1264 ret = lttng_dynamic_buffer_set_size(
1265 &current_path, current_frame->path_size);
93bed9fe
JG
1266 assert(!ret);
1267 current_path.data[current_path.size - 1] = '\0';
1268
1269 while ((entry = readdir(current_frame->dir))) {
1270 struct stat st;
93bed9fe 1271
f75c5439
MD
1272 if (!strcmp(entry->d_name, ".") ||
1273 !strcmp(entry->d_name, "..")) {
93bed9fe
JG
1274 continue;
1275 }
1276
1277 /* Set current_path to the entry's path. */
f75c5439
MD
1278 ret = lttng_dynamic_buffer_set_size(
1279 &current_path, current_path.size - 1);
93bed9fe
JG
1280 assert(!ret);
1281 ret = lttng_dynamic_buffer_append(&current_path,
1282 &separator, sizeof(separator));
1283 if (ret) {
1284 goto end;
1285 }
1286 ret = lttng_dynamic_buffer_append(&current_path,
1287 entry->d_name,
1288 strlen(entry->d_name) + 1);
1289 if (ret) {
1290 goto end;
1291 }
1292
f75c5439
MD
1293 if (lttng_directory_handle_stat(
1294 handle, current_path.data, &st)) {
1295 if ((flags & LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG) &&
1296 errno == ENOENT) {
1297 break;
1298 }
93bed9fe
JG
1299 PERROR("Failed to stat \"%s\"",
1300 current_path.data);
1301 ret = -1;
1302 goto end;
1303 }
1304
1305 if (!S_ISDIR(st.st_mode)) {
f75c5439
MD
1306 if (flags & LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG) {
1307 current_frame->empty = false;
1308 break;
1309 } else {
1310 /* Not empty, abort. */
1311 DBG("Directory \"%s\" is not empty; refusing to remove directory",
1312 current_path.data);
1313 ret = -1;
1314 goto end;
1315 }
1316 } else {
1317 struct rmdir_frame new_frame = {
1318 .path_size = current_path.size,
1319 .dir = lttng_directory_handle_opendir(
1320 handle,
1321 current_path.data),
1322 .empty = true,
1323 .parent_frame_idx = current_frame_idx,
1324 };
1325
1326 if (!new_frame.dir) {
1327 if (flags & LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG &&
1328 errno == ENOENT) {
1329 DBG("Non-existing directory stream during recursive directory removal");
1330 break;
1331 } else {
1332 PERROR("Failed to open directory stream during recursive directory removal");
1333 ret = -1;
1334 goto end;
1335 }
1336 }
1337 ret = lttng_dynamic_array_add_element(
1338 &frames, &new_frame);
1339 if (ret) {
1340 ERR("Failed to push context frame during recursive directory removal");
1341 rmdir_frame_fini(&new_frame);
1342 goto end;
1343 }
1344 current_frame_idx++;
1345 /* We break iteration on readdir. */
1346 break;
93bed9fe 1347 }
f75c5439
MD
1348 }
1349 if (entry) {
1350 continue;
1351 }
93bed9fe 1352
f75c5439
MD
1353 /* Pop rmdir frame. */
1354 if (current_frame->empty) {
1355 ret = lttng_directory_handle_rmdir(
1356 handle, current_path.data);
93bed9fe 1357 if (ret) {
f75c5439
MD
1358 if ((flags & LTTNG_DIRECTORY_HANDLE_FAIL_NON_EMPTY_FLAG) ||
1359 errno != ENOENT) {
1360 PERROR("Failed to remove \"%s\" during recursive directory removal",
1361 current_path.data);
1362 goto end;
1363 }
1364 DBG("Non-existing directory stream during recursive directory removal");
93bed9fe 1365 }
f75c5439
MD
1366 } else if (current_frame->parent_frame_idx >= 0) {
1367 struct rmdir_frame *parent_frame;
1368
1369 parent_frame = lttng_dynamic_array_get_element(&frames,
1370 current_frame->parent_frame_idx);
1371 assert(parent_frame);
1372 parent_frame->empty = false;
1373 }
1374 ret = lttng_dynamic_array_remove_element(
1375 &frames, current_frame_idx);
1376 if (ret) {
1377 ERR("Failed to pop context frame during recursive directory removal");
1378 goto end;
1379 }
1380 current_frame_idx--;
93bed9fe
JG
1381 }
1382end:
1383 lttng_dynamic_array_reset(&frames);
1384 lttng_dynamic_buffer_reset(&current_path);
1385 return ret;
1386}
1387
1388LTTNG_HIDDEN
1389int lttng_directory_handle_remove_subdirectory_recursive(
1390 const struct lttng_directory_handle *handle,
f75c5439
MD
1391 const char *name,
1392 int flags)
93bed9fe
JG
1393{
1394 return lttng_directory_handle_remove_subdirectory_recursive_as_user(
f75c5439 1395 handle, name, NULL, flags);
93bed9fe
JG
1396}
1397
1398LTTNG_HIDDEN
1399int lttng_directory_handle_remove_subdirectory_recursive_as_user(
1400 const struct lttng_directory_handle *handle,
1401 const char *name,
f75c5439
MD
1402 const struct lttng_credentials *creds,
1403 int flags)
93bed9fe
JG
1404{
1405 int ret;
1406
1407 if (!creds) {
1408 /* Run as current user. */
f75c5439 1409 ret = remove_directory_recursive(handle, name, flags);
93bed9fe
JG
1410 } else {
1411 ret = _run_as_rmdir_recursive(handle, name, creds->uid,
f75c5439 1412 creds->gid, flags);
93bed9fe
JG
1413 }
1414 return ret;
1415}
This page took 0.084831 seconds and 4 git commands to generate.