Page MenuHomeFreeBSD

Capsicumize uudecode/b64decode
Needs ReviewPublic

Authored by allanjude on Aug 26 2016, 4:28 AM.
Tags
None
Referenced Files
F82185433: D7655.diff
Fri, Apr 26, 6:37 AM
Unknown Object (File)
Feb 23 2024, 12:15 AM
Unknown Object (File)
Jan 29 2024, 6:41 AM
Unknown Object (File)
Dec 23 2023, 9:09 AM
Unknown Object (File)
Dec 20 2023, 1:48 AM
Unknown Object (File)
Dec 9 2023, 9:51 PM
Unknown Object (File)
Dec 7 2023, 6:45 PM
Unknown Object (File)
Nov 13 2023, 10:12 AM
Subscribers

Details

Summary

Special handling for -o, open the fd before entering the sandbox, then set the mode on it later (the intended mode is specified in the input)

Diff Detail

Event Timeline

allanjude retitled this revision from to Capsicumize uudecode/b64decode.
allanjude updated this object.
allanjude edited the test plan for this revision. (Show Details)
allanjude added reviewers: emaste, oshogbo.
usr.bin/uudecode/uudecode.c
306

missing space

333

leftover debugging

Some comments.
Later in a day I will review this more ;)

usr.bin/uudecode/uudecode.c
139

This can fail.

158

malloc can fail.

160

strdup as well.

186

This can be done in oneline.

allanjude edited edge metadata.

Updated with feedback from oshogbo

bapt edited edge metadata.
This revision is now accepted and ready to land.Sep 18 2016, 5:43 PM

Just some high level comments. I think if the diff is smaller, it's easier to review the rest.

usr.bin/uudecode/uudecode.c
83–85

Why have this at all?

We keep a dirfd around which can open outfile anyway — no need to open the file before entering sandbox.

It duplicates the safe-output-file checking logic below, except for potential time-of-check vs time-of-use attacks. IMO, this whole function can be removed.

143–144

I think in general we should preopen an array of fds rather than FILE objects, then fdopen as needed. (The concern is that the overhead of FILE objects vs fds is meaningful.)

One potential cost is the size of the stdio buffering. I guess I would be a little shocked if FILE prefetched file contents or allocated much memory on open. But even so a FILE is bulkier than just an fd.

192–206

I think you could avoid a lot of unnecessary code churn of this patch by setting globals infile, infp, (as is the existing pattern in this code) rather than passing these things as parameters.

allanjude edited edge metadata.

Use new capsicum_helpers.h

Greatly reduce the diff as suggested by cem

Address a bug where input is provided via stdin

This revision now requires review to proceed.Oct 13 2016, 2:44 AM
usr.bin/uudecode/uudecode.c
168

should be place limits on this directory FD?

334

do we need to limit FDs opened within the sandbox?

usr.bin/uudecode/uudecode.c
168

Yep. Whatever rights you want openated fds to have, plus CAP_LOOKUP.

334

I think openat from a restricted dirfd inherits dirfd's restrictions. Not 100% sure of this.

Even if so, maybe child fds don't need CAP_LOOKUP.

LGTM. I'd like to see restriction on cwdfd and openated child fds (if they don't inherit restrictions).

usr.bin/uudecode/uudecode.c
168

And rights for fstatat and unlinkat.

This revision is now accepted and ready to land.Jun 12 2017, 7:22 PM
This revision now requires review to proceed.Jan 27 2018, 11:01 PM

@allanjude Would you be interested to try sandbox uudecode with fileargs?