diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2002-11-05 14:57:49 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2002-11-05 14:57:49 +0000 |
| commit | ccafe7eb35a8767bc0b91a2f8fc31348dc5f21cb (patch) | |
| tree | d61b1553d8b9cc78bc9920dac5971244182b2e2b /sys/kern/kern_exec.c | |
| parent | 5f9ae8e0264d02bc5b54727354c2b0822e92b7cf (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_exec.c')
| -rw-r--r-- | sys/kern/kern_exec.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index 3afbd242fa7b..458650267374 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -167,6 +167,9 @@ kern_execve(td, fname, argv, envv) struct vnode *textvp = NULL; int credential_changing; int textset; +#ifdef MAC + int will_transition; +#endif imgp = &image_params; @@ -436,6 +439,10 @@ interpret: attr.va_uid; credential_changing |= (attr.va_mode & VSGID) && oldcred->cr_gid != attr.va_gid; +#ifdef MAC + will_transition = mac_execve_will_transition(oldcred, imgp->vp); + credential_changing |= will_transition; +#endif if (credential_changing && (imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 && @@ -478,8 +485,16 @@ interpret: change_euid(newcred, euip); if (attr.va_mode & VSGID) change_egid(newcred, attr.va_gid); +#ifdef MAC + if (will_transition) + mac_execve_transition(oldcred, newcred, imgp->vp); +#endif /* * Implement correct POSIX saved-id behavior. + * + * XXXMAC: Note that the current logic will save the + * uid and gid if a MAC domain transition occurs, even + * though maybe it shouldn't. */ change_svuid(newcred, newcred->cr_uid); change_svgid(newcred, newcred->cr_gid); |
