xref: /freebsd/tests/sys/fs/fusefs/access.cc (revision 91ff3a0d3db23a3637f917bec6f7f943dd0116df)
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 extern "C" {
32 #include <fcntl.h>
33 #include <unistd.h>
34 }
35 
36 #include "mockfs.hh"
37 #include "utils.hh"
38 
39 using namespace testing;
40 
41 class Access: public FuseTest {
42 public:
43 void expect_lookup(const char *relpath, uint64_t ino)
44 {
45 	FuseTest::expect_lookup(relpath, ino, S_IFREG | 0644, 0, 1);
46 }
47 };
48 
49 /* The error case of FUSE_ACCESS.  */
50 /* https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236291 */
51 TEST_F(Access, DISABLED_eaccess)
52 {
53 	const char FULLPATH[] = "mountpoint/some_file.txt";
54 	const char RELPATH[] = "some_file.txt";
55 	uint64_t ino = 42;
56 	mode_t	access_mode = X_OK;
57 
58 	expect_lookup(RELPATH, ino);
59 	expect_access(ino, access_mode, EACCES);
60 
61 	ASSERT_NE(0, access(FULLPATH, access_mode));
62 	ASSERT_EQ(EACCES, errno);
63 }
64 
65 /*
66  * If the filesystem returns ENOSYS, then it is treated as a permanent success,
67  * and subsequent VOP_ACCESS calls will succeed automatically without querying
68  * the daemon.
69  */
70 /* https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236557 */
71 /* https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236291 */
72 TEST_F(Access, DISABLED_enosys)
73 {
74 	const char FULLPATH[] = "mountpoint/some_file.txt";
75 	const char RELPATH[] = "some_file.txt";
76 	uint64_t ino = 42;
77 	mode_t	access_mode = R_OK;
78 
79 	expect_lookup(RELPATH, ino);
80 	expect_access(ino, access_mode, ENOSYS);
81 
82 	ASSERT_EQ(0, access(FULLPATH, access_mode)) << strerror(errno);
83 	ASSERT_EQ(0, access(FULLPATH, access_mode)) << strerror(errno);
84 }
85 
86 /* The successful case of FUSE_ACCESS.  */
87 /* https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236291 */
88 TEST_F(Access, DISABLED_ok)
89 {
90 	const char FULLPATH[] = "mountpoint/some_file.txt";
91 	const char RELPATH[] = "some_file.txt";
92 	uint64_t ino = 42;
93 	mode_t	access_mode = R_OK;
94 
95 	expect_lookup(RELPATH, ino);
96 	expect_access(ino, access_mode, 0);
97 
98 	ASSERT_EQ(0, access(FULLPATH, access_mode)) << strerror(errno);
99 }
100