]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/sys/fs/fuse/release.cc
fuse(4): combine common code in the tests
[FreeBSD/FreeBSD.git] / tests / sys / fs / fuse / release.cc
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 Release: public FuseTest {
42
43 public:
44 void expect_lookup(const char *relpath, uint64_t ino, int times)
45 {
46         FuseTest::expect_lookup(relpath, ino, S_IFREG | 0644, times);
47 }
48 };
49
50 // TODO: lock owner stuff
51
52 /* If a file descriptor is duplicated, only the last close causes RELEASE */
53 TEST_F(Release, dup)
54 {
55         const char FULLPATH[] = "mountpoint/some_file.txt";
56         const char RELPATH[] = "some_file.txt";
57         uint64_t ino = 42;
58         int fd, fd2;
59
60         expect_lookup(RELPATH, ino, 1);
61         expect_open(ino, 0, 1);
62         expect_getattr(ino, 0);
63         expect_release(ino, 1, 0);
64         
65         fd = open(FULLPATH, O_RDONLY);
66         EXPECT_LE(0, fd) << strerror(errno);
67
68         fd2 = dup(fd);
69
70         ASSERT_EQ(0, close(fd2)) << strerror(errno);
71         ASSERT_EQ(0, close(fd)) << strerror(errno);
72 }
73
74 /* 
75  * Some FUSE filesystem cache data internally and flush it on release.  Such
76  * filesystems may generate errors during release.  On Linux, these get
77  * returned by close(2).  However, POSIX does not require close(2) to return
78  * this error.  FreeBSD's fuse(4) should return EIO if it returns an error at
79  * all.
80  */
81 /* http://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html */
82 TEST_F(Release, eio)
83 {
84         const char FULLPATH[] = "mountpoint/some_file.txt";
85         const char RELPATH[] = "some_file.txt";
86         uint64_t ino = 42;
87         int fd;
88
89         expect_lookup(RELPATH, ino, 1);
90         expect_open(ino, 0, 1);
91         expect_getattr(ino, 0);
92         expect_release(ino, 1, EIO);
93         
94         fd = open(FULLPATH, O_WRONLY);
95         EXPECT_LE(0, fd) << strerror(errno);
96
97         ASSERT_TRUE(0 == close(fd) || errno == EIO) << strerror(errno);
98 }
99
100 /*
101  * fuse(4) will issue multiple FUSE_OPEN operations for the same file if it's
102  * opened with different modes.  Each FUSE_OPEN should get its own
103  * FUSE_RELEASE.
104  */
105 TEST_F(Release, multiple_opens)
106 {
107         const char FULLPATH[] = "mountpoint/some_file.txt";
108         const char RELPATH[] = "some_file.txt";
109         uint64_t ino = 42;
110         int fd, fd2;
111
112         expect_lookup(RELPATH, ino, 2);
113         expect_open(ino, 0, 2);
114         expect_getattr(ino, 0);
115         expect_release(ino, 2, 0);
116         
117         fd = open(FULLPATH, O_RDONLY);
118         EXPECT_LE(0, fd) << strerror(errno);
119
120         fd2 = open(FULLPATH, O_WRONLY);
121         EXPECT_LE(0, fd2) << strerror(errno);
122
123         ASSERT_EQ(0, close(fd2)) << strerror(errno);
124         ASSERT_EQ(0, close(fd)) << strerror(errno);
125 }
126
127 TEST_F(Release, ok)
128 {
129         const char FULLPATH[] = "mountpoint/some_file.txt";
130         const char RELPATH[] = "some_file.txt";
131         uint64_t ino = 42;
132         int fd;
133
134         expect_lookup(RELPATH, ino, 1);
135         expect_open(ino, 0, 1);
136         expect_getattr(ino, 0);
137         expect_release(ino, 1, 0);
138         
139         fd = open(FULLPATH, O_RDONLY);
140         EXPECT_LE(0, fd) << strerror(errno);
141
142         ASSERT_EQ(0, close(fd)) << strerror(errno);
143 }