2  * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved. 
   4  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 
   6  * This file contains Original Code and/or Modifications of Original Code 
   7  * as defined in and that are subject to the Apple Public Source License 
   8  * Version 2.0 (the 'License'). You may not use this file except in 
   9  * compliance with the License. The rights granted to you under the License 
  10  * may not be used to create, or enable the creation or redistribution of, 
  11  * unlawful or unlicensed copies of an Apple operating system, or to 
  12  * circumvent, violate, or enable the circumvention or violation of, any 
  13  * terms of an Apple operating system software license agreement. 
  15  * Please obtain a copy of the License at 
  16  * http://www.opensource.apple.com/apsl/ and read it before using this file. 
  18  * The Original Code and all software distributed under the License are 
  19  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  20  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  21  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 
  22  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  23  * Please see the License for the specific language governing rights and 
  24  * limitations under the License. 
  26  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 
  28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */ 
  30  * Copyright (c) 1982, 1986, 1989, 1993 
  31  *      The Regents of the University of California.  All rights reserved. 
  32  * (c) UNIX System Laboratories, Inc. 
  33  * All or some portions of this file are derived from material licensed 
  34  * to the University of California by American Telephone and Telegraph 
  35  * Co. or Unix System Laboratories, Inc. and are reproduced herein with 
  36  * the permission of UNIX System Laboratories, Inc. 
  38  * Redistribution and use in source and binary forms, with or without 
  39  * modification, are permitted provided that the following conditions 
  41  * 1. Redistributions of source code must retain the above copyright 
  42  *    notice, this list of conditions and the following disclaimer. 
  43  * 2. Redistributions in binary form must reproduce the above copyright 
  44  *    notice, this list of conditions and the following disclaimer in the 
  45  *    documentation and/or other materials provided with the distribution. 
  46  * 3. All advertising materials mentioning features or use of this software 
  47  *    must display the following acknowledgement: 
  48  *      This product includes software developed by the University of 
  49  *      California, Berkeley and its contributors. 
  50  * 4. Neither the name of the University nor the names of its contributors 
  51  *    may be used to endorse or promote products derived from this software 
  52  *    without specific prior written permission. 
  54  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 
  55  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
  56  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
  57  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 
  58  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
  59  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
  60  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
  61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  62  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
  63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
  66  *      from: @(#)sys_process.c 8.1 (Berkeley) 6/10/93 
  69 #include <machine/reg.h> 
  70 #include <machine/psl.h> 
  72 #include <sys/param.h> 
  73 #include <sys/systm.h> 
  74 #include <sys/proc_internal.h> 
  75 #include <sys/kauth.h> 
  76 #include <sys/errno.h> 
  77 #include <sys/ptrace.h> 
  80 #include <sys/sysctl.h> 
  83 #include <sys/mount_internal.h> 
  84 #include <sys/sysproto.h> 
  85 #include <sys/kdebug.h> 
  86 #include <sys/codesign.h>               /* cs_allow_invalid() */ 
  88 #include <security/audit/audit.h> 
  90 #include <kern/task.h> 
  91 #include <kern/thread.h> 
  93 #include <mach/task.h>                  /* for task_resume() */ 
  94 #include <kern/sched_prim.h>            /* for thread_exception_return() */ 
  96 #include <pexpert/pexpert.h> 
  98 /* XXX ken/bsd_kern.c - prototype should be in common header */ 
  99 int get_task_userstop(task_t
); 
 101 /* Macros to clear/set/test flags. */ 
 102 #define SET(t, f)       (t) |= (f) 
 103 #define CLR(t, f)       (t) &= ~(f) 
 104 #define ISSET(t, f)     ((t) & (f)) 
 106 extern thread_t 
port_name_to_thread(mach_port_name_t port_name
); 
 107 extern thread_t 
get_firstthread(task_t
); 
 111  * sys-trace system call. 
 115 ptrace(struct proc 
*p
, struct ptrace_args 
*uap
, int32_t *retval
) 
 117         struct proc 
*t 
= current_proc();        /* target process */ 
 125         AUDIT_ARG(cmd
, uap
->req
); 
 126         AUDIT_ARG(pid
, uap
->pid
); 
 127         AUDIT_ARG(addr
, uap
->addr
); 
 128         AUDIT_ARG(value32
, uap
->data
); 
 130         if (uap
->req 
== PT_DENY_ATTACH
) { 
 132                 if (ISSET(p
->p_lflag
, P_LTRACED
)) { 
 134                         KERNEL_DEBUG_CONSTANT(BSDDBG_CODE(DBG_BSD_PROC
, BSD_PROC_FRCEXIT
) | DBG_FUNC_NONE
, 
 135                                               p
->p_pid
, W_EXITCODE(ENOTSUP
, 0), 4, 0, 0); 
 136                         exit1(p
, W_EXITCODE(ENOTSUP
, 0), retval
); 
 138                         thread_exception_return(); 
 141                 SET(p
->p_lflag
, P_LNOATTACH
); 
 147         if (uap
->req 
== PT_FORCEQUOTA
) { 
 148                 if (kauth_cred_issuser(kauth_cred_get())) { 
 149                         OSBitOrAtomic(P_FORCEQUOTA
, &t
->p_flag
); 
 156          *      Intercept and deal with "please trace me" request. 
 158         if (uap
->req 
== PT_TRACE_ME
) { 
 160                 proc_t pproc 
= proc_parent(p
); 
 165                  * NB: Cannot call kauth_authorize_process(..., KAUTH_PROCESS_CANTRACE, ...) 
 166                  *     since that assumes the process being checked is the current process 
 167                  *     when, in this case, it is the current process's parent. 
 168                  *     Most of the other checks in cantrace() don't apply either. 
 170                 if ((error 
= mac_proc_check_debug(pproc
, p
)) == 0) { 
 173                         /* Make sure the process wasn't re-parented. */ 
 174                         if (p
->p_ppid 
!= pproc
->p_pid
) { 
 179                         SET(p
->p_lflag
, P_LTRACED
); 
 180                         /* Non-attached case, our tracer is our parent. */ 
 181                         p
->p_oppid 
= p
->p_ppid
; 
 183                         /* Child and parent will have to be able to run modified code. */ 
 185                         cs_allow_invalid(pproc
); 
 192         if (uap
->req 
== PT_SIGEXC
) { 
 194                 if (ISSET(p
->p_lflag
, P_LTRACED
)) { 
 195                         SET(p
->p_lflag
, P_LSIGEXC
); 
 205          * We do not want ptrace to do anything with kernel or launchd  
 212          *      Locate victim, and make sure it is traceable. 
 214         if ((t 
= proc_find(uap
->pid
)) == NULL
) 
 217         AUDIT_ARG(process
, t
); 
 220         if (uap
->req 
== PT_ATTACHEXC
) { 
 221 #pragma clang diagnostic push 
 222 #pragma clang diagnostic ignored "-Wdeprecated-declarations" 
 223                 uap
->req 
= PT_ATTACH
; 
 226         if (uap
->req 
== PT_ATTACH
) { 
 227 #pragma clang diagnostic pop 
 231                 if ( kauth_authorize_process(proc_ucred(p
), KAUTH_PROCESS_CANTRACE
,  
 232                                                                          t
, (uintptr_t)&err
, 0, 0) == 0 ) { 
 233                         /* it's OK to attach */ 
 235                         SET(t
->p_lflag
, P_LTRACED
); 
 237                                 SET(t
->p_lflag
, P_LSIGEXC
); 
 239                         t
->p_oppid 
= t
->p_ppid
; 
 240                         /* Check whether child and parent are allowed to run modified 
 241                          * code (they'll have to) */ 
 246                                 proc_reparentlocked(t
, p
, 1, 0); 
 249                         if (get_task_userstop(task
) > 0 ) { 
 256                          * If the process was stopped, wake up and run through 
 257                          * issignal() again to properly connect to the tracing 
 266                         /* not allowed to attach, proper error code returned by kauth_authorize_process */ 
 267                         if (ISSET(t
->p_lflag
, P_LNOATTACH
)) { 
 277          * You can't do what you want to the process if: 
 278          *      (1) It's not being traced at all, 
 281         if (!ISSET(t
->p_lflag
, P_LTRACED
)) { 
 288          *      (2) it's not being traced by _you_, or 
 290         if (t
->p_pptr 
!= p
) { 
 297          *      (3) it's not currently stopped. 
 299         if (t
->p_stat 
!= SSTOP
) { 
 306          *      Mach version of ptrace executes request directly here, 
 307          *      thus simplifying the interaction of ptrace and signals. 
 309         /* proc lock is held here */ 
 313                 if (t
->p_oppid 
!= t
->p_ppid
) { 
 317                         pp 
= proc_find(t
->p_oppid
); 
 318                         if (pp 
!= PROC_NULL
) { 
 319                                 proc_reparentlocked(t
, pp
, 1, 0); 
 322                                 /* original parent exited while traced */ 
 324                                 t
->p_listflag 
|= P_LIST_DEADPARENT
; 
 326                                 proc_reparentlocked(t
, initproc
, 1, 0); 
 332                 CLR(t
->p_lflag
, P_LTRACED
); 
 333                 CLR(t
->p_lflag
, P_LSIGEXC
); 
 339                  *      Tell child process to kill itself after it 
 340                  *      is resumed by adding NSIG to p_cursig. [see issig] 
 344                 error 
= mac_proc_check_signal(p
, t
, SIGKILL
); 
 351         case PT_STEP
:                   /* single step the child */ 
 352         case PT_CONTINUE
:               /* continue the child */ 
 354                 th_act 
= (thread_t
)get_firstthread(task
); 
 355                 if (th_act 
== THREAD_NULL
) { 
 360                 /* force use of Mach SPIs (and task_for_pid security checks) to adjust PC */ 
 361                 if (uap
->addr 
!= (user_addr_t
)1) { 
 366                 if ((unsigned)uap
->data 
>= NSIG
) { 
 371                 if (uap
->data 
!= 0) { 
 372                         psignal(t
, uap
->data
); 
 375                 if (uap
->req 
== PT_STEP
) { 
 378                          * we use sending SIGSTOP as a comparable security check. 
 381                         error 
= mac_proc_check_signal(p
, t
, SIGSTOP
); 
 386                         if (thread_setsinglestep(th_act
, 1) != KERN_SUCCESS
) { 
 392                          * clear trace bit if on 
 393                          * we use sending SIGCONT as a comparable security check. 
 396                         error 
= mac_proc_check_signal(p
, t
, SIGCONT
); 
 401                         if (thread_setsinglestep(th_act
, 0) != KERN_SUCCESS
) { 
 408                 t
->p_xstat 
= uap
->data
; 
 411                         wakeup((caddr_t
)&(t
->sigwait
)); 
 413                         if ((t
->p_lflag 
& P_LSIGEXC
) == 0) { 
 423                 if ((unsigned)uap
->data 
>= NSIG
) { 
 427                 th_act 
= port_name_to_thread(CAST_MACH_PORT_TO_NAME(uap
->addr
)); 
 428                 if (th_act 
== THREAD_NULL
) { 
 432                 ut 
= (uthread_t
)get_bsdthread_info(th_act
); 
 434                         ut
->uu_siglist 
|= sigmask(uap
->data
); 
 436                 t
->p_xstat 
= uap
->data
; 
 439                 thread_deallocate(th_act
); 
 457  * determine if one process (cur_procp) can trace another process (traced_procp). 
 461 cantrace(proc_t cur_procp
, kauth_cred_t creds
, proc_t traced_procp
, int *errp
) 
 465          * You can't trace a process if: 
 466          *      (1) it's the process that's doing the tracing, 
 468         if (traced_procp
->p_pid 
== cur_procp
->p_pid
) { 
 474          *      (2) it's already being traced, or 
 476         if (ISSET(traced_procp
->p_lflag
, P_LTRACED
)) { 
 482          *      (3) it's not owned by you, or is set-id on exec 
 483          *          (unless you're root). 
 485         if ((kauth_cred_getruid(creds
) != kauth_cred_getruid(proc_ucred(traced_procp
)) || 
 486                 ISSET(traced_procp
->p_flag
, P_SUGID
)) && 
 487                 (my_err 
= suser(creds
, &cur_procp
->p_acflag
)) != 0) { 
 492         if ((cur_procp
->p_lflag 
& P_LTRACED
) && isinferior(cur_procp
, traced_procp
)) { 
 497         if (ISSET(traced_procp
->p_lflag
, P_LNOATTACH
)) { 
 503         if ((my_err 
= mac_proc_check_debug(cur_procp
, traced_procp
)) != 0) {