]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/sys/fs/fusefs/utils.hh
fusefs: implement non-clustered readahead
[FreeBSD/FreeBSD.git] / tests / sys / fs / fusefs / utils.hh
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
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
34 /* Nanoseconds to sleep, for tests that must */
35 #define NAP_NS  (100'000'000)
36
37 void get_unprivileged_id(uid_t *uid, gid_t *gid);
38 inline void nap()
39 {
40         usleep(NAP_NS / 1000);
41 }
42
43 extern const uint32_t libfuse_max_write;
44 extern const uint32_t default_max_write;
45 class FuseTest : public ::testing::Test {
46         protected:
47         uint32_t m_maxreadahead;
48         uint32_t m_maxwrite;
49         uint32_t m_init_flags;
50         bool m_allow_other;
51         bool m_default_permissions;
52         uint32_t m_kernel_minor_version;
53         enum poll_method m_pm;
54         bool m_push_symlinks_in;
55         bool m_ro;
56         bool m_async;
57         MockFS *m_mock = NULL;
58         const static uint64_t FH = 0xdeadbeef1a7ebabe;
59
60         public:
61         int m_maxbcachebuf;
62
63         FuseTest():
64                 m_maxreadahead(0),
65                 m_maxwrite(default_max_write),
66                 m_init_flags(0),
67                 m_allow_other(false),
68                 m_default_permissions(false),
69                 m_kernel_minor_version(FUSE_KERNEL_MINOR_VERSION),
70                 m_pm(BLOCKING),
71                 m_push_symlinks_in(false),
72                 m_ro(false),
73                 m_async(false)
74         {}
75
76         virtual void SetUp();
77
78         virtual void TearDown() {
79                 if (m_mock)
80                         delete m_mock;
81         }
82
83         /*
84          * Create an expectation that FUSE_ACCESS will be called once for the
85          * given inode with the given access_mode, returning the given errno
86          */
87         void expect_access(uint64_t ino, mode_t access_mode, int error);
88
89         /* Expect FUSE_DESTROY and shutdown the daemon */
90         void expect_destroy(int error);
91
92         /*
93          * Create an expectation that FUSE_FLUSH will be called times times for
94          * the given inode
95          */
96         void expect_flush(uint64_t ino, int times, ProcessMockerT r);
97
98         /*
99          * Create an expectation that FUSE_FORGET will be called for the given
100          * inode.  There will be no response.  If sem is provided, it will be
101          * posted after the operation is received by the daemon.
102          */
103         void expect_forget(uint64_t ino, uint64_t nlookup, sem_t *sem = NULL);
104
105         /*
106          * Create an expectation that FUSE_GETATTR will be called for the given
107          * inode any number of times.  It will respond with a few basic
108          * attributes, like the given size and the mode S_IFREG | 0644
109          */
110         void expect_getattr(uint64_t ino, uint64_t size);
111
112         /*
113          * Create an expectation that FUSE_LOOKUP will be called for the given
114          * path exactly times times and cache validity period.  It will respond
115          * with inode ino, mode mode, filesize size.
116          */
117         void expect_lookup(const char *relpath, uint64_t ino, mode_t mode,
118                 uint64_t size, int times, uint64_t attr_valid = UINT64_MAX,
119                 uid_t uid = 0, gid_t gid = 0);
120
121         /* The protocol 7.8 version of expect_lookup */
122         void expect_lookup_7_8(const char *relpath, uint64_t ino, mode_t mode,
123                 uint64_t size, int times, uint64_t attr_valid = UINT64_MAX,
124                 uid_t uid = 0, gid_t gid = 0);
125
126         /*
127          * Create an expectation that FUSE_OPEN will be called for the given
128          * inode exactly times times.  It will return with open_flags flags and
129          * file handle FH.
130          */
131         void expect_open(uint64_t ino, uint32_t flags, int times);
132
133         /*
134          * Create an expectation that FUSE_OPENDIR will be called exactly once
135          * for inode ino.
136          */
137         void expect_opendir(uint64_t ino);
138
139         /*
140          * Create an expectation that FUSE_READ will be called exactly once for
141          * the given inode, at offset offset and with size isize.  It will
142          * return the first osize bytes from contents
143          *
144          * Protocol 7.8 tests can use this same expectation method because
145          * nothing currently validates the size of the fuse_read_in struct.
146          */
147         void expect_read(uint64_t ino, uint64_t offset, uint64_t isize,
148                 uint64_t osize, const void *contents, int flags = -1);
149
150         /*
151          * Create an expectation that FUSE_READIR will be called any number of
152          * times on the given ino with the given offset, returning (by copy)
153          * the provided entries
154          */
155         void expect_readdir(uint64_t ino, uint64_t off,
156                 std::vector<struct dirent> &ents);
157
158         /* 
159          * Create an expectation that FUSE_RELEASE will be called exactly once
160          * for the given inode and filehandle, returning success
161          */
162         void expect_release(uint64_t ino, uint64_t fh);
163
164         /*
165          * Create an expectation that FUSE_RELEASEDIR will be called exactly
166          * once for the given inode
167          */
168         void expect_releasedir(uint64_t ino, ProcessMockerT r);
169
170         /*
171          * Create an expectation that FUSE_UNLINK will be called exactly once
172          * for the given path, returning an errno
173          */
174         void expect_unlink(uint64_t parent, const char *path, int error);
175
176         /*
177          * Create an expectation that FUSE_WRITE will be called exactly once
178          * for the given inode, at offset offset, with  size isize and buffer
179          * contents.  Any flags present in flags_set must be set, and any
180          * present in flags_unset must not be set.  Other flags are don't care.
181          * It will return osize.
182          */
183         void expect_write(uint64_t ino, uint64_t offset, uint64_t isize,
184                 uint64_t osize, uint32_t flags_set, uint32_t flags_unset,
185                 const void *contents);
186
187         /* Protocol 7.8 version of expect_write */
188         void expect_write_7_8(uint64_t ino, uint64_t offset, uint64_t isize,
189                 uint64_t osize, const void *contents);
190
191         /*
192          * Helper that runs code in a child process.
193          *
194          * First, parent_func runs in the parent process.
195          * Then, child_func runs in the child process, dropping privileges if
196          * desired.
197          * Finally, fusetest_fork returns.
198          *
199          * # Returns
200          *
201          * fusetest_fork may SKIP the test, which the caller should detect with
202          * the IsSkipped() method.  If not, then the child's exit status will
203          * be returned in status.
204          */
205         void fork(bool drop_privs, int *status,
206                 std::function<void()> parent_func,
207                 std::function<int()> child_func);
208 };