diff options
Diffstat (limited to 'tests/sys/fs/fusefs')
| -rw-r--r-- | tests/sys/fs/fusefs/bad_server.cc | 8 | ||||
| -rw-r--r-- | tests/sys/fs/fusefs/bmap.cc | 87 | ||||
| -rw-r--r-- | tests/sys/fs/fusefs/mockfs.cc | 9 | ||||
| -rw-r--r-- | tests/sys/fs/fusefs/mockfs.hh | 7 | ||||
| -rw-r--r-- | tests/sys/fs/fusefs/notify.cc | 56 | 
5 files changed, 159 insertions, 8 deletions
| diff --git a/tests/sys/fs/fusefs/bad_server.cc b/tests/sys/fs/fusefs/bad_server.cc index c3d195735446..825523cac2bb 100644 --- a/tests/sys/fs/fusefs/bad_server.cc +++ b/tests/sys/fs/fusefs/bad_server.cc @@ -64,12 +64,12 @@ TEST_F(BadServer, ShortWrite)  	out.header.error = 0;  	out.header.unique = 0;			// Asynchronous notification  	out.expected_errno = EINVAL; -	m_mock->write_response(out);  	/* -	 * Tell the event loop to quit.  The kernel has already disconnected us +	 * Tell the event loop to quit.  The kernel will disconnect us  	 * because of the short write.  	 */ -	m_mock->m_quit = true; +	m_mock->m_expect_unmount = true; +	m_mock->write_response(out);  }  /* @@ -98,7 +98,7 @@ TEST_F(BadServer, ErrorWithPayload)  		out.push_back(std::move(out1));  		// The kernel may disconnect us for bad behavior, so don't try -		// to read any more. +		// to read or write any more.  		m_mock->m_quit = true;  	})); diff --git a/tests/sys/fs/fusefs/bmap.cc b/tests/sys/fs/fusefs/bmap.cc index 30612079657d..e61dadb6d79e 100644 --- a/tests/sys/fs/fusefs/bmap.cc +++ b/tests/sys/fs/fusefs/bmap.cc @@ -178,6 +178,93 @@ TEST_F(Bmap, default_)  }  /* + * The server returns an error for some reason for FUSE_BMAP.  fusefs should + * faithfully report that error up to the caller. + */ +TEST_F(Bmap, einval) +{ +	struct fiobmap2_arg arg; +	const off_t filesize = 1 << 30; +	int64_t lbn = 100; +	const ino_t ino = 42; +	int fd; + +	expect_lookup(RELPATH, 42, filesize); +	expect_open(ino, 0, 1); +	EXPECT_CALL(*m_mock, process( +		ResultOf([=](auto in) { +			return (in.header.opcode == FUSE_BMAP && +				in.header.nodeid == ino); +		}, Eq(true)), +		_) +	).WillOnce(Invoke(ReturnErrno(EINVAL))); + +	fd = open(FULLPATH, O_RDWR); +	ASSERT_LE(0, fd) << strerror(errno); + +	arg.bn = lbn; +	arg.runp = -1; +	arg.runb = -1; +	ASSERT_EQ(-1, ioctl(fd, FIOBMAP2, &arg)); +	EXPECT_EQ(EINVAL, errno); + +	leak(fd); +} + +/* + * Even if the server returns EINVAL during VOP_BMAP, we should still be able + * to successfully read a block.  This is a regression test for + * https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264196 .  The bug did not + * lie in fusefs, but this is a convenient place for a regression test. + */ +TEST_F(Bmap, spurious_einval) +{ +	const off_t filesize = 4ull << 30; +	const ino_t ino = 42; +	int fd, r; +	char buf[1]; + +	expect_lookup(RELPATH, 42, filesize); +	expect_open(ino, 0, 1); +	EXPECT_CALL(*m_mock, process( +		ResultOf([=](auto in) { +			return (in.header.opcode == FUSE_BMAP && +				in.header.nodeid == ino); +		}, Eq(true)), +		_) +	).WillRepeatedly(Invoke(ReturnErrno(EINVAL))); +	EXPECT_CALL(*m_mock, process( +	ResultOf([=](auto in) { +		return (in.header.opcode == FUSE_READ && +			in.header.nodeid == ino && +			in.body.read.offset == 0 && +			in.body.read.size == (uint64_t)m_maxbcachebuf); +		}, Eq(true)), +		_) +	).WillOnce(Invoke(ReturnImmediate([=](auto in, auto& out) { +		size_t osize = in.body.read.size; + +		assert(osize < sizeof(out.body.bytes)); +		out.header.len = sizeof(struct fuse_out_header) + osize; +		bzero(out.body.bytes, osize); +	}))); + +	fd = open(FULLPATH, O_RDWR); +	ASSERT_LE(0, fd) << strerror(errno); + +	/* +	 * Read the same block multiple times.  On a system affected by PR +	 * 264196 , the second read will fail. +	 */ +	r = read(fd, buf, sizeof(buf)); +	EXPECT_EQ(r, 1) << strerror(errno); +	r = read(fd, buf, sizeof(buf)); +	EXPECT_EQ(r, 1) << strerror(errno); +	r = read(fd, buf, sizeof(buf)); +	EXPECT_EQ(r, 1) << strerror(errno); +} + +/*   * VOP_BMAP should not query the server for the file's size, even if its cached   * attributes have expired.   * Regression test for https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256937 diff --git a/tests/sys/fs/fusefs/mockfs.cc b/tests/sys/fs/fusefs/mockfs.cc index e8081dea9604..b6a32d9b60af 100644 --- a/tests/sys/fs/fusefs/mockfs.cc +++ b/tests/sys/fs/fusefs/mockfs.cc @@ -433,7 +433,8 @@ MockFS::MockFS(int max_read, int max_readahead, bool allow_other,  	  m_child_pid(-1),  	  m_maxwrite(MIN(max_write, max_max_write)),  	  m_nready(-1), -	  m_quit(false) +	  m_quit(false), +	  m_expect_unmount(false)  {  	struct sigaction sa;  	struct iovec *iov = NULL; @@ -827,10 +828,12 @@ void MockFS::loop() {  	}  } -int MockFS::notify_inval_entry(ino_t parent, const char *name, size_t namelen) +int MockFS::notify_inval_entry(ino_t parent, const char *name, size_t namelen, +		int expected_errno)  {  	std::unique_ptr<mockfs_buf_out> out(new mockfs_buf_out); +	out->expected_errno = expected_errno;  	out->header.unique = 0;	/* 0 means asynchronous notification */  	out->header.error = FUSE_NOTIFY_INVAL_ENTRY;  	out->body.inval_entry.parent = parent; @@ -977,7 +980,7 @@ void MockFS::read_request(mockfs_buf_in &in, ssize_t &res) {  	}  	res = read(m_fuse_fd, &in, sizeof(in)); -	if (res < 0 && !m_quit) { +	if (res < 0 && errno != EBADF && !m_quit && !m_expect_unmount) {  		m_quit = true;  		FAIL() << "read: " << strerror(errno);  	} diff --git a/tests/sys/fs/fusefs/mockfs.hh b/tests/sys/fs/fusefs/mockfs.hh index ba6f7fded9d0..f98a5337c9d1 100644 --- a/tests/sys/fs/fusefs/mockfs.hh +++ b/tests/sys/fs/fusefs/mockfs.hh @@ -360,6 +360,9 @@ class MockFS {  	/* Tell the daemon to shut down ASAP */  	bool m_quit; +	/* Tell the daemon that the server might forcibly unmount us */ +	bool m_expect_unmount; +  	/* Create a new mockfs and mount it to a tempdir */  	MockFS(int max_read, int max_readahead, bool allow_other,  		bool default_permissions, bool push_symlinks_in, bool ro, @@ -390,8 +393,10 @@ class MockFS {  	 * @param	parent	Parent directory's inode number  	 * @param	name	name of dirent to invalidate  	 * @param	namelen	size of name, including the NUL +	 * @param	expected_errno The error that write() should return  	 */ -	int notify_inval_entry(ino_t parent, const char *name, size_t namelen); +	int notify_inval_entry(ino_t parent, const char *name, size_t namelen, +			int expected_errno = 0);  	/*  	 * Send an asynchronous notification to invalidate an inode's cached diff --git a/tests/sys/fs/fusefs/notify.cc b/tests/sys/fs/fusefs/notify.cc index 1e22bde13db7..d370a1e6e706 100644 --- a/tests/sys/fs/fusefs/notify.cc +++ b/tests/sys/fs/fusefs/notify.cc @@ -385,6 +385,27 @@ TEST_F(Notify, inval_inode_with_clean_cache)  	leak(fd);  } +/* + * Attempting to invalidate an entry or inode after unmounting should fail, but + * nothing bad should happen. + * https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=290519 + */ +TEST_F(Notify, notify_after_unmount) +{ +	const static char *name = "foo"; +	struct inval_entry_args iea; + +	expect_destroy(0); + +	m_mock->unmount(); + +	iea.mock = m_mock; +	iea.parent = FUSE_ROOT_ID; +	iea.name = name; +	iea.namelen = strlen(name); +	iea.mock->notify_inval_entry(iea.parent, iea.name, iea.namelen, ENODEV); +} +  /* FUSE_NOTIFY_STORE with a file that's not in the entry cache */  /* disabled because FUSE_NOTIFY_STORE is not yet implemented */  TEST_F(Notify, DISABLED_store_nonexistent) @@ -544,3 +565,38 @@ TEST_F(NotifyWriteback, inval_inode_attrs_only)  	leak(fd);  } + +/* + * Attempting asynchronous invalidation of an Entry before mounting the file + * system should fail, but nothing bad should happen. + * + * Note that invalidating an inode before mount goes through the same path, and + * is not separately tested. + * + * https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=290519 + */ +TEST(PreMount, inval_entry_before_mount) +{ +	const static char name[] = "foo"; +	size_t namelen = strlen(name); +	struct mockfs_buf_out *out; +	int r; +	int fuse_fd; + +	fuse_fd = open("/dev/fuse", O_CLOEXEC | O_RDWR); +	ASSERT_GE(fuse_fd, 0) << strerror(errno); + +	out = new mockfs_buf_out; +	out->header.unique = 0;	/* 0 means asynchronous notification */ +	out->header.error = FUSE_NOTIFY_INVAL_ENTRY; +	out->body.inval_entry.parent = FUSE_ROOT_ID; +	out->body.inval_entry.namelen = namelen; +	strlcpy((char*)&out->body.bytes + sizeof(out->body.inval_entry), +		name, sizeof(out->body.bytes) - sizeof(out->body.inval_entry)); +	out->header.len = sizeof(out->header) + sizeof(out->body.inval_entry) + +		namelen; +	r = write(fuse_fd, out, out->header.len); +	EXPECT_EQ(-1, r); +	EXPECT_EQ(ENODEV, errno); +	delete out; +} | 
