/* fuse-overlayfs: Overlay Filesystem in Userspace Copyright (C) 2019 Red Hat Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef UTILS_H # define UTILS_H # define _GNU_SOURCE # include # include # include # include # include # include # include # include # include "fuse-overlayfs.h" void cleanup_freep (void *p); void cleanup_filep (FILE **f); void cleanup_closep (void *p); void cleanup_dirp (DIR **p); int file_exists_at (int dirfd, const char *pathname); int strconcat3 (char *dest, size_t size, const char *s1, const char *s2, const char *s3); int open_fd_or_get_path (struct ovl_layer *l, const char *path, char *out, int *fd, int flags); # define cleanup_file __attribute__((cleanup (cleanup_filep))) # define cleanup_free __attribute__((cleanup (cleanup_freep))) # define cleanup_close __attribute__((cleanup (cleanup_closep))) # define cleanup_dir __attribute__((cleanup (cleanup_dirp))) # define LIKELY(x) __builtin_expect((x),1) # define UNLIKELY(x) __builtin_expect((x),0) # ifdef HAVE_STATX void statx_to_stat (struct statx *stx, struct stat *st); # endif #endif