User Details
- User Since
- Aug 2 2014, 12:45 PM (537 w, 4 d)
Mon, Nov 18
More fixes from wulf@
Sun, Nov 17
Okay, so turns out this is the REL_WHEEL, not REL_HWHEEL;
its just that all the offsets within the report are shifted
by one byte. I'm guessing this is the Report ID.
Fixes suggested by wulf@.
Sat, Nov 16
Wed, Nov 13
Thu, Nov 7
Get rid of vhold/vdrop. I've been running it for a few days
and it appears to work fine.
Mon, Nov 4
Second try.
Fri, Nov 1
This follows a somewhat similar fix in https://reviews.freebsd.org/D29323?id=86801. I can't say I have a proper understanding of what's going on here though.
Wed, Oct 23
Oct 22 2024
Oct 21 2024
Oct 15 2024
Oct 9 2024
Oct 4 2024
Two more nits from salvadore@
Oct 2 2024
Oct 1 2024
copyedits, one line per sentence.
Sep 29 2024
Sep 28 2024
I think the way it works is that autofs_lookup() doesn't trigger when looking up the autofs directory itself, only when looking up inside that directory?
Sep 27 2024
Sep 24 2024
Sep 23 2024
Sep 21 2024
I’m not sure I follow, but FreeBSD doesn’t mount on stat anyway, so why introduce the native flag instead of making the code consistently ignore the Linux one? Linux autofs semantics is broken in some interesting ways; we don’t need to port functionality that only exists to work around that brokenness.
Sep 13 2024
Aug 28 2024
So... how do we proceed with this?
Jul 23 2024
Drop wait6(2) for now
Jul 15 2024
Jun 18 2024
Man page rewording from gnn@
May 27 2024
May 21 2024
May 18 2024
(And also an earlier version of this did exactly that wrt idtype, that’s why the title still mentions the “limited subset”; only after that I’ve discovered that you can’t wait for arbitrary PIDs anyway.)
I might be wrong, but isn’t this restriction already there, inherent to wait(2) APIs? You need to use kqueue to wait for non-children?
May 14 2024
Sigh, a typo.
Man page fix from Brooks.
May 13 2024
May 2 2024
Use the right symbol version and bump Dd.
May 1 2024
There's a separate review for vfork (https://reviews.freebsd.org/D39829). And yeah, I've pasted Robert the link to this one here :)
Add back procstat(1) bits and remove syscalls.map
As for CAP_FCHROOT - I think we should have it, if only for symmetry with CAP_FCHDIR. I don't really want to implement them - the lookup code isn't really suited for tracking rights for root and cwd, and so those two syscalls require full rights to succeed, not just a subset - but we could in the future.
Apr 22 2024
Mar 27 2024
Mar 22 2024
Mar 21 2024
Can you describe the dlopen threat model a bit more? My assumption is, a typical Capsicum-aware app wouldn't be setting the rootdir/curdir at all. Or, if it does, it could call cap_enter(2) again before calling dlopen(3), clearing those vnodes.
Fix panic which occured when the PID is specified explictly.
Also handle wait6(2). Add some documentation. Pacify a test.
I agree this should be documented somewhere, but at the moment wait(2) doesn't mention Capsicum at all, and capsicum(4) doesn't mention wait(2). Perhaps a paragraph in pdfork(2), something along the lines of "processes created with pdfork cannot be waited for by a parent running in capsicum(4) mode"?