Re: [PATCH RESEND V12 7/8] fuse: Use daemon creds in passthrough mode

2021-02-05 Thread Alessio Balsini
On Fri, Feb 05, 2021 at 05:23:56PM +0800, Peng Tao wrote: > On Mon, Jan 25, 2021 at 11:31 PM Alessio Balsini wrote: > > > > When using FUSE passthrough, read/write operations are directly > > forwarded to the lower file system file through VFS, but there is no > > guarantee that the process that

Re: [PATCH RESEND V12 7/8] fuse: Use daemon creds in passthrough mode

2021-02-05 Thread Peng Tao
On Mon, Jan 25, 2021 at 11:31 PM Alessio Balsini wrote: > > When using FUSE passthrough, read/write operations are directly > forwarded to the lower file system file through VFS, but there is no > guarantee that the process that is triggering the request has the right > permissions to access the

[PATCH RESEND V12 7/8] fuse: Use daemon creds in passthrough mode

2021-01-25 Thread Alessio Balsini
When using FUSE passthrough, read/write operations are directly forwarded to the lower file system file through VFS, but there is no guarantee that the process that is triggering the request has the right permissions to access the lower file system. This would cause the read/write access to fail.