1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2019 The FreeBSD Foundation 5 * 6 * This software was developed by BFF Storage Systems, LLC under sponsorship 7 * from the FreeBSD Foundation. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 */ 30 31 struct _sem; 32 typedef struct _sem sem_t; 33 struct _dirdesc; 34 typedef struct _dirdesc DIR; 35 36 /* Nanoseconds to sleep, for tests that must */ 37 #define NAP_NS (100'000'000) 38 39 void get_unprivileged_id(uid_t *uid, gid_t *gid); 40 inline void nap() 41 { 42 usleep(NAP_NS / 1000); 43 } 44 45 enum cache_mode { 46 Uncached, 47 Writethrough, 48 Writeback, 49 WritebackAsync 50 }; 51 52 const char *cache_mode_to_s(enum cache_mode cm); 53 bool is_unsafe_aio_enabled(void); 54 55 extern const uint32_t libfuse_max_write; 56 class FuseTest : public ::testing::Test { 57 protected: 58 uint32_t m_maxread; 59 uint32_t m_maxreadahead; 60 uint32_t m_maxwrite; 61 uint32_t m_init_flags; 62 bool m_allow_other; 63 bool m_default_permissions; 64 uint32_t m_kernel_minor_version; 65 enum poll_method m_pm; 66 bool m_noatime; 67 bool m_push_symlinks_in; 68 bool m_ro; 69 bool m_async; 70 bool m_noclusterr; 71 bool m_nointr; 72 bool m_no_auto_init; 73 unsigned m_time_gran; 74 MockFS *m_mock = NULL; 75 const static uint64_t FH = 0xdeadbeef1a7ebabe; 76 const char *reclaim_mib = "debug.try_reclaim_vnode"; 77 const char *m_fsname; 78 const char *m_subtype; 79 80 public: 81 int m_maxbcachebuf; 82 unsigned long m_maxphys; 83 84 FuseTest(): 85 m_maxread(0), 86 m_maxreadahead(0), 87 m_maxwrite(0), 88 m_init_flags(0), 89 m_allow_other(false), 90 m_default_permissions(false), 91 m_kernel_minor_version(FUSE_KERNEL_MINOR_VERSION), 92 m_pm(BLOCKING), 93 m_noatime(false), 94 m_push_symlinks_in(false), 95 m_ro(false), 96 m_async(false), 97 m_noclusterr(false), 98 m_nointr(false), 99 m_no_auto_init(false), 100 m_time_gran(1), 101 m_fsname(""), 102 m_subtype(""), 103 m_maxbcachebuf(0), 104 m_maxphys(0) 105 {} 106 107 virtual void SetUp(); 108 109 virtual void TearDown() { 110 if (m_mock) 111 delete m_mock; 112 } 113 114 /* 115 * Create an expectation that FUSE_ACCESS will be called once for the 116 * given inode with the given access_mode, returning the given errno 117 */ 118 void expect_access(uint64_t ino, mode_t access_mode, int error); 119 120 /* Expect FUSE_DESTROY and shutdown the daemon */ 121 void expect_destroy(int error); 122 123 /* 124 * Create an expectation that FUSE_FALLOCATE will be called with the 125 * given inode, offset, length, and mode, exactly times times and 126 * returning error 127 */ 128 void expect_fallocate(uint64_t ino, uint64_t offset, uint64_t length, 129 uint32_t mode, int error, int times=1); 130 131 /* 132 * Create an expectation that FUSE_FLUSH will be called times times for 133 * the given inode 134 */ 135 void expect_flush(uint64_t ino, int times, ProcessMockerT r); 136 137 /* 138 * Create an expectation that FUSE_FORGET will be called for the given 139 * inode. There will be no response. If sem is provided, it will be 140 * posted after the operation is received by the daemon. 141 */ 142 void expect_forget(uint64_t ino, uint64_t nlookup, sem_t *sem = NULL); 143 144 /* 145 * Create an expectation that FUSE_GETATTR will be called for the given 146 * inode any number of times. It will respond with a few basic 147 * attributes, like the given size and the mode S_IFREG | 0644 148 */ 149 void expect_getattr(uint64_t ino, uint64_t size); 150 151 /* 152 * Create an expectation that FUSE_GETXATTR will be called once for the 153 * given inode. 154 */ 155 void expect_getxattr(uint64_t ino, const char *attr, ProcessMockerT r); 156 157 /* 158 * Create an expectation that FUSE_LOOKUP will be called for the given 159 * path exactly times times and cache validity period. It will respond 160 * with inode ino, mode mode, filesize size. 161 */ 162 void expect_lookup(const char *relpath, uint64_t ino, mode_t mode, 163 uint64_t size, int times, uint64_t attr_valid = UINT64_MAX, 164 uid_t uid = 0, gid_t gid = 0); 165 166 /* The protocol 7.8 version of expect_lookup */ 167 void expect_lookup_7_8(const char *relpath, uint64_t ino, mode_t mode, 168 uint64_t size, int times, uint64_t attr_valid = UINT64_MAX, 169 uid_t uid = 0, gid_t gid = 0); 170 171 /* 172 * Create an expectation that FUSE_OPEN will be called for the given 173 * inode exactly times times. It will return with open_flags flags and 174 * file handle FH. 175 */ 176 void expect_open(uint64_t ino, uint32_t flags, int times); 177 178 /* 179 * Create an expectation that FUSE_OPENDIR will be called exactly once 180 * for inode ino. 181 */ 182 void expect_opendir(uint64_t ino); 183 184 /* 185 * Create an expectation that FUSE_READ will be called exactly once for 186 * the given inode, at offset offset and with size isize. It will 187 * return the first osize bytes from contents 188 * 189 * Protocol 7.8 tests can use this same expectation method because 190 * nothing currently validates the size of the fuse_read_in struct. 191 */ 192 void expect_read(uint64_t ino, uint64_t offset, uint64_t isize, 193 uint64_t osize, const void *contents, int flags = -1, 194 uint64_t fh = FH); 195 196 /* 197 * Create an expectation that FUSE_READIR will be called any number of 198 * times on the given ino with the given offset, returning (by copy) 199 * the provided entries 200 */ 201 void expect_readdir(uint64_t ino, uint64_t off, 202 std::vector<struct dirent> &ents); 203 204 /* 205 * Create an expectation that FUSE_RELEASE will be called exactly once 206 * for the given inode and filehandle, returning success 207 */ 208 void expect_release(uint64_t ino, uint64_t fh); 209 210 /* 211 * Create an expectation that FUSE_RELEASEDIR will be called exactly 212 * once for the given inode 213 */ 214 void expect_releasedir(uint64_t ino, ProcessMockerT r); 215 216 /* 217 * Create an expectation that FUSE_UNLINK will be called exactly once 218 * for the given path, returning an errno 219 */ 220 void expect_unlink(uint64_t parent, const char *path, int error); 221 222 /* 223 * Create an expectation that FUSE_WRITE will be called exactly once 224 * for the given inode, at offset offset, with size isize and buffer 225 * contents. Any flags present in flags_set must be set, and any 226 * present in flags_unset must not be set. Other flags are don't care. 227 * It will return osize. 228 */ 229 void expect_write(uint64_t ino, uint64_t offset, uint64_t isize, 230 uint64_t osize, uint32_t flags_set, uint32_t flags_unset, 231 const void *contents); 232 233 /* Protocol 7.8 version of expect_write */ 234 void expect_write_7_8(uint64_t ino, uint64_t offset, uint64_t isize, 235 uint64_t osize, const void *contents); 236 237 /* 238 * Helper that runs code in a child process. 239 * 240 * First, parent_func runs in the parent process. 241 * Then, child_func runs in the child process, dropping privileges if 242 * desired. 243 * Finally, fusetest_fork returns. 244 * 245 * # Returns 246 * 247 * fusetest_fork may SKIP the test, which the caller should detect with 248 * the IsSkipped() method. If not, then the child's exit status will 249 * be returned in status. 250 */ 251 void fork(bool drop_privs, int *status, 252 std::function<void()> parent_func, 253 std::function<int()> child_func); 254 255 /* 256 * Deliberately leak a file descriptor. 257 * 258 * Closing a file descriptor on fusefs would cause the server to 259 * receive FUSE_CLOSE and possibly FUSE_INACTIVE. Handling those 260 * operations would needlessly complicate most tests. So most tests 261 * deliberately leak the file descriptors instead. This method serves 262 * to document the leakage, and provide a single point of suppression 263 * for static analyzers. 264 */ 265 /* coverity[+close: arg-0] */ 266 static void leak(int fd __unused) {} 267 268 /* 269 * Deliberately leak a DIR* pointer 270 * 271 * See comments for FuseTest::leak 272 */ 273 static void leakdir(DIR* dirp __unused) {} 274 275 /* Manually reclaim a vnode. Requires root privileges. */ 276 void reclaim_vnode(const char *fullpath); 277 }; 278