Page MenuHomeFreeBSD

Modify sv_onexec hook to return error.
ClosedPublic

Authored by dchagin on Jun 26 2021, 10:19 AM.
Tags
None
Referenced Files
F172002934: D30911.id91388.diff
Tue, Sep 15, 7:17 AM
Unknown Object (File)
Sun, Sep 6, 10:51 AM
Unknown Object (File)
Sat, Sep 5, 6:41 PM
Unknown Object (File)
Sat, Sep 5, 9:13 AM
Unknown Object (File)
Fri, Sep 4, 9:47 AM
Unknown Object (File)
Thu, Sep 3, 6:29 PM
Unknown Object (File)
Tue, Sep 1, 2:32 PM
Unknown Object (File)
Tue, Sep 1, 12:53 PM
Subscribers

Details

Summary

Temporary add stubs to the Linux emulation layer which calls the existing hook.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 40115
Build 37004: arc lint + arc unit

Event Timeline

sys/kern/kern_exec.c
1156

At this point, error is KERN_SUCCESS, which is some Mach error code. We never assume that it has zero value. Please replace this fragment by e.g. the following

return (sv->sv_onexec != NULL ? sv->sv_onexec(p, imgp) : 0);

fixed, i missied that KERN_SUCCESS != 0

KERN_SUCCESS is 0, but it is undesirable to depend on that.

This revision is now accepted and ready to land.Jun 26 2021, 1:57 PM