X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fcompat%2Fdirectory-handle.c;h=9548da216298ff23980e5e84dcf8cc24975c5608;hp=d9d1e233757bdb76bbabdc51436ac13b02388574;hb=57b1431829d660508840fc820a19ee27f5e1a711;hpb=cbf53d23cecaca9c6ec71582663c4a8254a9f285 diff --git a/src/common/compat/directory-handle.c b/src/common/compat/directory-handle.c index d9d1e2337..9548da216 100644 --- a/src/common/compat/directory-handle.c +++ b/src/common/compat/directory-handle.c @@ -36,9 +36,6 @@ * of the internal API below. */ static -int lttng_directory_handle_stat(const struct lttng_directory_handle *handle, - const char *path, struct stat *st); -static int lttng_directory_handle_mkdir( const struct lttng_directory_handle *handle, const char *path, mode_t mode); @@ -93,6 +90,26 @@ void lttng_directory_handle_release(struct urcu_ref *ref); #ifdef COMPAT_DIRFD +/* + * Special inode number reserved to represent the "current working directory". + * ino_t is spec'ed as being an unsigned integral type. + */ +#define RESERVED_AT_FDCWD_INO \ + ({ \ + uint64_t reserved_val; \ + switch (sizeof(ino_t)) { \ + case 4: \ + reserved_val = UINT32_MAX; \ + break; \ + case 8: \ + reserved_val = UINT64_MAX; \ + break; \ + default: \ + abort(); \ + } \ + (ino_t) reserved_val; \ + }) + LTTNG_HIDDEN struct lttng_directory_handle *lttng_directory_handle_create(const char *path) { @@ -144,11 +161,23 @@ LTTNG_HIDDEN struct lttng_directory_handle *lttng_directory_handle_create_from_dirfd( int dirfd) { + int ret; struct lttng_directory_handle *handle = zmalloc(sizeof(*handle)); + struct stat stat_buf; if (!handle) { goto end; } + + if (dirfd != AT_FDCWD) { + ret = fstat(dirfd, &stat_buf); + if (ret) { + PERROR("Failed to fstat directory file descriptor %i", dirfd); + lttng_directory_handle_release(&handle->ref); + } + } else { + handle->directory_inode = RESERVED_AT_FDCWD_INO; + } handle->dirfd = dirfd; urcu_ref_init(&handle->ref); end: @@ -199,13 +228,20 @@ end: return new_handle; } +LTTNG_HIDDEN +bool lttng_directory_handle_equals(const struct lttng_directory_handle *lhs, + const struct lttng_directory_handle *rhs) +{ + return lhs->directory_inode == rhs->directory_inode; +} + static void lttng_directory_handle_invalidate(struct lttng_directory_handle *handle) { handle->dirfd = -1; } -static +LTTNG_HIDDEN int lttng_directory_handle_stat(const struct lttng_directory_handle *handle, const char *path, struct stat *st) { @@ -550,13 +586,20 @@ end: return new_handle; } +LTTNG_HIDDEN +bool lttng_directory_handle_equals(const struct lttng_directory_handle *lhs, + const struct lttng_directory_handle *rhs) +{ + return strcmp(lhs->path, rhs->path) == 0; +} + static void lttng_directory_handle_invalidate(struct lttng_directory_handle *handle) { handle->base_path = NULL; } -static +LTTNG_HIDDEN int lttng_directory_handle_stat(const struct lttng_directory_handle *handle, const char *subdirectory, struct stat *st) {