Page MenuHomeFreeBSD

Add kern_openatfp(9)
ClosedPublic

Authored by kib on Jan 20 2024, 8:39 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Apr 21, 12:31 PM
Unknown Object (File)
Sun, Apr 21, 12:13 AM
Unknown Object (File)
Sat, Apr 20, 3:21 PM
Unknown Object (File)
Sat, Apr 13, 12:15 AM
Unknown Object (File)
Sat, Apr 13, 12:13 AM
Unknown Object (File)
Fri, Apr 12, 10:06 AM
Unknown Object (File)
Fri, Apr 12, 8:29 AM
Unknown Object (File)
Wed, Apr 10, 7:41 PM

Diff Detail

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

Event Timeline

kib requested review of this revision.Jan 20 2024, 8:39 PM
pjd requested changes to this revision.Jan 20 2024, 9:59 PM

Thank you for working on this!

sys/kern/vfs_syscalls.c
1234

Personally I'd just add 'return (0)' here and eliminate 'else' below, which would reduce the diff.

I also don't see '*fpp = fp' anywhere.

This revision now requires changes to proceed.Jan 20 2024, 9:59 PM
kib marked an inline comment as done.

Do assign *fpp.

This revision is now accepted and ready to land.Jan 20 2024, 10:21 PM
sys/kern/vfs_syscalls.c
1116
1275

Is there a specific scenario you are guarding against here?

kib marked 2 inline comments as done.Jan 22 2024, 10:00 PM
kib added inline comments.
sys/kern/vfs_syscalls.c
1275

Recursing into VFS, which we sort of explicitly enable there with a backdoor into filesystem driver VOP_CREATE/VOP_OPEN.

It is similar how td_fpop is handled for devfs, to avoid unlikely but hard to diagnose surprises.

This revision was automatically updated to reflect the committed changes.
kib marked an inline comment as done.