Page MenuHomeFreeBSD

fusefs: correctly set lock owner during FUSE_SETLK
ClosedPublic

Authored by asomers on Jun 2 2021, 9:44 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, May 8, 5:54 AM
Unknown Object (File)
Wed, May 8, 5:53 AM
Unknown Object (File)
Wed, May 8, 5:53 AM
Unknown Object (File)
Wed, May 8, 2:22 AM
Unknown Object (File)
Wed, May 1, 2:11 AM
Unknown Object (File)
Tue, Apr 30, 4:31 AM
Unknown Object (File)
Sat, Apr 27, 1:39 AM
Unknown Object (File)
Thu, Apr 25, 8:49 AM

Details

Summary

During FUSE_SETLK, the owner field should uniquely identify the calling
process. The fusefs module now sets it to the process's pid.
Previously, it expected the calling process to set it directly, which
was wrong.

libfuse also apparently expects the owner field to be set during
FUSE_GETLK, though I'm not sure why.

PR: 256005
Reported by: Agata <chogata@moosefs.pro>
MFC after: 2 weeks

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

pfg, would you mind reviewing this change?

Hrm, it seems I had an inline comment that was never submitted.

tests/sys/fs/fusefs/locks.cc
281

Can you explain this part of the change (i.e., 0 instead of pid which was fake)

tests/sys/fs/fusefs/locks.cc
281

When I first wrote the test I thought that the caller of fcntl was supposed to set pid. But that was wrong. The kernel is supposed to set it, and we verify it on return.

This revision is now accepted and ready to land.Jun 25 2021, 2:48 AM