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)
Sat, Jul 20, 4:34 PM
Unknown Object (File)
Sat, Jul 13, 12:06 PM
Unknown Object (File)
Thu, Jul 11, 5:53 AM
Unknown Object (File)
Sun, Jul 7, 7:40 AM
Unknown Object (File)
Sat, Jun 29, 8:18 AM
Unknown Object (File)
May 15 2024, 2:47 AM
Unknown Object (File)
May 11 2024, 3:56 PM
Unknown Object (File)
May 8 2024, 5:54 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