diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2000-12-13 04:28:24 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2000-12-13 04:28:24 +0000 |
| commit | f6a99e61c50ced4314276738e7f0d27d18e56770 (patch) | |
| tree | 841e15a2a1d804846f3072d054107b5be6bab16b /sys/miscfs | |
| parent | 70b5f189c9381415c19d5bc093dfe7842476b434 (diff) | |
Notes
Diffstat (limited to 'sys/miscfs')
| -rw-r--r-- | sys/miscfs/procfs/procfs_ctl.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sys/miscfs/procfs/procfs_ctl.c b/sys/miscfs/procfs/procfs_ctl.c index 72ad575b9717..f445572c9a3d 100644 --- a/sys/miscfs/procfs/procfs_ctl.c +++ b/sys/miscfs/procfs/procfs_ctl.c @@ -111,6 +111,16 @@ procfs_control(curp, p, op) int error; /* + * Authorization check: rely on normal debugging protection, except + * allow processes to disengage debugging on a process onto which + * they have previously attached, but no longer have permission to + * debug. + */ + if (op != PROCFS_CTL_DETACH && + ((error = p_can(curp, p, P_CAN_DEBUG, NULL)))) + return (error); + + /* * Attach - attaches the target process for debugging * by the calling process. */ @@ -123,10 +133,6 @@ procfs_control(curp, p, op) if (p->p_pid == curp->p_pid) return (EINVAL); - /* can't trace init when securelevel > 0 */ - if (securelevel > 0 && p->p_pid == 1) - return (EPERM); - /* * Go ahead and set the trace flag. * Save the old parent (it's reset in |
