return 0;
}
-DIR *xopendirat(int fd, const char *name, int flags) {
- _cleanup_close_ int nfd = -EBADF;
+DIR* xopendirat(int dir_fd, const char *name, int flags) {
+ _cleanup_close_ int fd = -EBADF;
- assert(!(flags & O_CREAT));
+ assert(dir_fd >= 0 || dir_fd == AT_FDCWD);
+ assert(name);
+ assert(!(flags & (O_CREAT|O_TMPFILE)));
- if (fd == AT_FDCWD && flags == 0)
+ if (dir_fd == AT_FDCWD && flags == 0)
return opendir(name);
- nfd = openat(fd, name, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|flags, 0);
- if (nfd < 0)
+ fd = openat(dir_fd, name, O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|flags);
+ if (fd < 0)
return NULL;
- return take_fdopendir(&nfd);
+ return take_fdopendir(&fd);
}
int fopen_mode_to_flags(const char *mode) {
int get_proc_field(const char *filename, const char *pattern, const char *terminator, char **field);
-DIR *xopendirat(int dirfd, const char *name, int flags);
+DIR* xopendirat(int dir_fd, const char *name, int flags);
typedef enum XfopenFlags {
XFOPEN_UNLOCKED = 1 << 0, /* call __fsetlocking(FSETLOCKING_BYCALLER) after opened */
} ReadLineFlags;
int read_line_full(FILE *f, size_t limit, ReadLineFlags flags, char **ret);
-
-static inline bool file_offset_beyond_memory_size(off_t x) {
- if (x < 0) /* off_t is signed, filter that out */
- return false;
- return (uint64_t) x > (uint64_t) SIZE_MAX;
-}
-
static inline int read_line(FILE *f, size_t limit, char **ret) {
return read_line_full(f, limit, 0, ret);
}
-
static inline int read_nul_string(FILE *f, size_t limit, char **ret) {
return read_line_full(f, limit, READ_LINE_ONLY_NUL, ret);
}
int read_stripped_line(FILE *f, size_t limit, char **ret);
+static inline bool file_offset_beyond_memory_size(off_t x) {
+ if (x < 0) /* off_t is signed, filter that out */
+ return false;
+ return (uint64_t) x > (uint64_t) SIZE_MAX;
+}
+
int safe_fgetc(FILE *f, char *ret);
int warn_file_is_world_accessible(const char *filename, struct stat *st, const char *unit, unsigned line);