CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2015/10/25 14:39:54
Modified files:
sys/sys : ktrace.h pledge.h proc.h
sys/kern : kern_exec.c kern_ktrace.c kern_pledge.c
kern_sig.c kern_sysctl.c uipc_syscalls.c
uipc_usrreq.c vfs_syscalls.c
usr.bin/ktrace : ktrace.h
usr.bin/kdump : kdump.c
Log message:
Fold "malloc" into "stdio" and -- recognizing that no program so far has
used less than "stdio" -- include all the "self" operations. Instead of
different defines, use regular PLEDGE_* in the "p_pledgenote" variable
(which indicates the operation subtype a system call is performing). Many
checks before easier to understand. p_pledgenote can often be passed
directly to ktrace, so that kdump says:
15565 test CALL pledge(0xa9a3f804c51,0)
15565 test STRU pledge request="stdio"
15565 test RET pledge 0
15565 test CALL open(0xa9a3f804c57,0x2<O_RDWR>)
15565 test NAMI "/tmp/testfile"
15565 test PLDG open, "wpath", errno 1 Operation not permitted
with help from semarie, ok guenther