Page MenuHomeFreeBSD

ficl pfopen: verify file
ClosedPublic

Authored by sjg on May 23 2019, 8:10 PM.
Tags
None
Referenced Files
F150091285: D20387.id57856.diff
Sun, Mar 29, 7:47 AM
F150067622: D20387.diff
Sun, Mar 29, 3:17 AM
Unknown Object (File)
Fri, Mar 20, 4:24 AM
Unknown Object (File)
Thu, Mar 19, 7:45 PM
Unknown Object (File)
Sat, Mar 14, 6:58 PM
Unknown Object (File)
Wed, Mar 11, 1:15 PM
Unknown Object (File)
Thu, Mar 5, 12:53 PM
Unknown Object (File)
Mon, Mar 2, 6:35 AM
Subscribers

Details

Summary

If the file is verified - do not allow write
otherwise do not allow read.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

stand/ficl/loader.c
509 ↗(On Diff #57797)

I believe this should be written like so:
if ((mode & O_ACCMODE) != O_WRONLY) {

515 ↗(On Diff #57797)

Similar thing here:
if ((mode & O_ACCMODE) != O_RDONLY) {

sjg marked 2 inline comments as done.May 23 2019, 9:33 PM

Good point

stand.h needs to define O_ACCMODE

Did some basic testing and it looks ok.

This revision is now accepted and ready to land.May 24 2019, 7:33 AM
This revision was automatically updated to reflect the committed changes.