10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*2712Snn35248  * Common Development and Distribution License (the "License").
6*2712Snn35248  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
211222Smws 
220Sstevel@tonic-gate /*
231222Smws  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #include <stdio.h>
300Sstevel@tonic-gate #include <stdlib.h>
310Sstevel@tonic-gate #include <unistd.h>
320Sstevel@tonic-gate #include <ctype.h>
330Sstevel@tonic-gate #include <fcntl.h>
340Sstevel@tonic-gate #include <string.h>
35*2712Snn35248 #include <strings.h>
360Sstevel@tonic-gate #include <memory.h>
370Sstevel@tonic-gate #include <errno.h>
380Sstevel@tonic-gate #include <dirent.h>
390Sstevel@tonic-gate #include <limits.h>
400Sstevel@tonic-gate #include <signal.h>
410Sstevel@tonic-gate #include <sys/types.h>
420Sstevel@tonic-gate #include <sys/uio.h>
430Sstevel@tonic-gate #include <sys/stat.h>
440Sstevel@tonic-gate #include <sys/resource.h>
450Sstevel@tonic-gate #include <sys/param.h>
460Sstevel@tonic-gate #include <sys/stack.h>
470Sstevel@tonic-gate #include <sys/fault.h>
480Sstevel@tonic-gate #include <sys/syscall.h>
490Sstevel@tonic-gate #include <sys/sysmacros.h>
500Sstevel@tonic-gate 
510Sstevel@tonic-gate #include "libproc.h"
520Sstevel@tonic-gate #include "Pcontrol.h"
530Sstevel@tonic-gate #include "Putil.h"
540Sstevel@tonic-gate #include "P32ton.h"
550Sstevel@tonic-gate 
560Sstevel@tonic-gate int	_libproc_debug;		/* set non-zero to enable debugging printfs */
570Sstevel@tonic-gate sigset_t blockable_sigs;	/* signals to block when we need to be safe */
580Sstevel@tonic-gate static	int	minfd;	/* minimum file descriptor returned by dupfd(fd, 0) */
59*2712Snn35248 char	procfs_path[PATH_MAX] = "/proc";
600Sstevel@tonic-gate 
610Sstevel@tonic-gate /*
620Sstevel@tonic-gate  * Function prototypes for static routines in this module.
630Sstevel@tonic-gate  */
640Sstevel@tonic-gate static	void	deadcheck(struct ps_prochandle *);
650Sstevel@tonic-gate static	void	restore_tracing_flags(struct ps_prochandle *);
660Sstevel@tonic-gate static	void	Lfree_internal(struct ps_prochandle *, struct ps_lwphandle *);
670Sstevel@tonic-gate 
680Sstevel@tonic-gate /*
690Sstevel@tonic-gate  * Read/write interface for live processes: just pread/pwrite the
700Sstevel@tonic-gate  * /proc/<pid>/as file:
710Sstevel@tonic-gate  */
720Sstevel@tonic-gate 
730Sstevel@tonic-gate static ssize_t
740Sstevel@tonic-gate Pread_live(struct ps_prochandle *P, void *buf, size_t n, uintptr_t addr)
750Sstevel@tonic-gate {
760Sstevel@tonic-gate 	return (pread(P->asfd, buf, n, (off_t)addr));
770Sstevel@tonic-gate }
780Sstevel@tonic-gate 
790Sstevel@tonic-gate static ssize_t
800Sstevel@tonic-gate Pwrite_live(struct ps_prochandle *P, const void *buf, size_t n, uintptr_t addr)
810Sstevel@tonic-gate {
820Sstevel@tonic-gate 	return (pwrite(P->asfd, buf, n, (off_t)addr));
830Sstevel@tonic-gate }
840Sstevel@tonic-gate 
850Sstevel@tonic-gate static const ps_rwops_t P_live_ops = { Pread_live, Pwrite_live };
860Sstevel@tonic-gate 
870Sstevel@tonic-gate /*
880Sstevel@tonic-gate  * This is the library's .init handler.
890Sstevel@tonic-gate  */
900Sstevel@tonic-gate #pragma init(_libproc_init)
910Sstevel@tonic-gate void
920Sstevel@tonic-gate _libproc_init(void)
930Sstevel@tonic-gate {
940Sstevel@tonic-gate 	_libproc_debug = getenv("LIBPROC_DEBUG") != NULL;
950Sstevel@tonic-gate 
960Sstevel@tonic-gate 	(void) sigfillset(&blockable_sigs);
970Sstevel@tonic-gate 	(void) sigdelset(&blockable_sigs, SIGKILL);
980Sstevel@tonic-gate 	(void) sigdelset(&blockable_sigs, SIGSTOP);
990Sstevel@tonic-gate }
1000Sstevel@tonic-gate 
101*2712Snn35248 void
102*2712Snn35248 Pset_procfs_path(const char *path)
103*2712Snn35248 {
104*2712Snn35248 	(void) snprintf(procfs_path, sizeof (procfs_path), "%s", path);
105*2712Snn35248 }
106*2712Snn35248 
1070Sstevel@tonic-gate /*
1080Sstevel@tonic-gate  * Call set_minfd() once before calling dupfd() several times.
1090Sstevel@tonic-gate  * We assume that the application will not reduce its current file
1100Sstevel@tonic-gate  * descriptor limit lower than 512 once it has set at least that value.
1110Sstevel@tonic-gate  */
1120Sstevel@tonic-gate int
1130Sstevel@tonic-gate set_minfd(void)
1140Sstevel@tonic-gate {
1150Sstevel@tonic-gate 	static mutex_t minfd_lock = DEFAULTMUTEX;
1160Sstevel@tonic-gate 	struct rlimit rlim;
1170Sstevel@tonic-gate 	int fd;
1180Sstevel@tonic-gate 
1190Sstevel@tonic-gate 	if ((fd = minfd) < 256) {
1200Sstevel@tonic-gate 		(void) mutex_lock(&minfd_lock);
1210Sstevel@tonic-gate 		if ((fd = minfd) < 256) {
1220Sstevel@tonic-gate 			if (getrlimit(RLIMIT_NOFILE, &rlim) != 0)
1230Sstevel@tonic-gate 				rlim.rlim_cur = rlim.rlim_max = 0;
1240Sstevel@tonic-gate 			if (rlim.rlim_cur >= 512)
1250Sstevel@tonic-gate 				fd = 256;
1260Sstevel@tonic-gate 			else if ((fd = rlim.rlim_cur / 2) < 3)
1270Sstevel@tonic-gate 				fd = 3;
1280Sstevel@tonic-gate 			minfd = fd;
1290Sstevel@tonic-gate 		}
1300Sstevel@tonic-gate 		(void) mutex_unlock(&minfd_lock);
1310Sstevel@tonic-gate 	}
1320Sstevel@tonic-gate 	return (fd);
1330Sstevel@tonic-gate }
1340Sstevel@tonic-gate 
1350Sstevel@tonic-gate int
1360Sstevel@tonic-gate dupfd(int fd, int dfd)
1370Sstevel@tonic-gate {
1380Sstevel@tonic-gate 	int mfd;
1390Sstevel@tonic-gate 
1400Sstevel@tonic-gate 	/*
1410Sstevel@tonic-gate 	 * Make fd be greater than 255 (the 32-bit stdio limit),
1420Sstevel@tonic-gate 	 * or at least make it greater than 2 so that the
1430Sstevel@tonic-gate 	 * program will work when spawned by init(1m).
1440Sstevel@tonic-gate 	 * Also, if dfd is non-zero, dup the fd to be dfd.
1450Sstevel@tonic-gate 	 */
1460Sstevel@tonic-gate 	if ((mfd = minfd) == 0)
1470Sstevel@tonic-gate 		mfd = set_minfd();
1480Sstevel@tonic-gate 	if (dfd > 0 || (0 <= fd && fd < mfd)) {
1490Sstevel@tonic-gate 		if (dfd <= 0)
1500Sstevel@tonic-gate 			dfd = mfd;
1510Sstevel@tonic-gate 		dfd = fcntl(fd, F_DUPFD, dfd);
1520Sstevel@tonic-gate 		(void) close(fd);
1530Sstevel@tonic-gate 		fd = dfd;
1540Sstevel@tonic-gate 	}
1550Sstevel@tonic-gate 	/*
1560Sstevel@tonic-gate 	 * Mark it close-on-exec so any created process doesn't inherit it.
1570Sstevel@tonic-gate 	 */
1580Sstevel@tonic-gate 	if (fd >= 0)
1590Sstevel@tonic-gate 		(void) fcntl(fd, F_SETFD, FD_CLOEXEC);
1600Sstevel@tonic-gate 	return (fd);
1610Sstevel@tonic-gate }
1620Sstevel@tonic-gate 
1630Sstevel@tonic-gate /*
1640Sstevel@tonic-gate  * Create a new controlled process.
1650Sstevel@tonic-gate  * Leave it stopped on successful exit from exec() or execve().
1660Sstevel@tonic-gate  * Return an opaque pointer to its process control structure.
1670Sstevel@tonic-gate  * Return NULL if process cannot be created (fork()/exec() not successful).
1680Sstevel@tonic-gate  */
1690Sstevel@tonic-gate struct ps_prochandle *
1700Sstevel@tonic-gate Pxcreate(const char *file,	/* executable file name */
1710Sstevel@tonic-gate 	char *const *argv,	/* argument vector */
1720Sstevel@tonic-gate 	char *const *envp,	/* environment */
1730Sstevel@tonic-gate 	int *perr,	/* pointer to error return code */
1740Sstevel@tonic-gate 	char *path,	/* if non-null, holds exec path name on return */
1750Sstevel@tonic-gate 	size_t len)	/* size of the path buffer */
1760Sstevel@tonic-gate {
1770Sstevel@tonic-gate 	char execpath[PATH_MAX];
178*2712Snn35248 	char procname[PATH_MAX];
1790Sstevel@tonic-gate 	struct ps_prochandle *P;
1800Sstevel@tonic-gate 	pid_t pid;
1810Sstevel@tonic-gate 	int fd;
1820Sstevel@tonic-gate 	char *fname;
1830Sstevel@tonic-gate 	int rc;
1840Sstevel@tonic-gate 	int lasterrno = 0;
1850Sstevel@tonic-gate 
1860Sstevel@tonic-gate 	if (len == 0)	/* zero length, no path */
1870Sstevel@tonic-gate 		path = NULL;
1880Sstevel@tonic-gate 	if (path != NULL)
1890Sstevel@tonic-gate 		*path = '\0';
1900Sstevel@tonic-gate 
1910Sstevel@tonic-gate 	if ((P = malloc(sizeof (struct ps_prochandle))) == NULL) {
1920Sstevel@tonic-gate 		*perr = C_STRANGE;
1930Sstevel@tonic-gate 		return (NULL);
1940Sstevel@tonic-gate 	}
1950Sstevel@tonic-gate 
1960Sstevel@tonic-gate 	if ((pid = fork1()) == -1) {
1970Sstevel@tonic-gate 		free(P);
1980Sstevel@tonic-gate 		*perr = C_FORK;
1990Sstevel@tonic-gate 		return (NULL);
2000Sstevel@tonic-gate 	}
2010Sstevel@tonic-gate 
2020Sstevel@tonic-gate 	if (pid == 0) {			/* child process */
2030Sstevel@tonic-gate 		id_t id;
2040Sstevel@tonic-gate 		extern char **environ;
2050Sstevel@tonic-gate 
2060Sstevel@tonic-gate 		/*
2070Sstevel@tonic-gate 		 * If running setuid or setgid, reset credentials to normal.
2080Sstevel@tonic-gate 		 */
2090Sstevel@tonic-gate 		if ((id = getgid()) != getegid())
2100Sstevel@tonic-gate 			(void) setgid(id);
2110Sstevel@tonic-gate 		if ((id = getuid()) != geteuid())
2120Sstevel@tonic-gate 			(void) setuid(id);
2130Sstevel@tonic-gate 
2140Sstevel@tonic-gate 		Pcreate_callback(P);	/* execute callback (see below) */
2150Sstevel@tonic-gate 		(void) pause();		/* wait for PRSABORT from parent */
2160Sstevel@tonic-gate 
2170Sstevel@tonic-gate 		/*
2180Sstevel@tonic-gate 		 * This is ugly.  There is no execvep() function that takes a
2190Sstevel@tonic-gate 		 * path and an environment.  We cheat here by replacing the
2200Sstevel@tonic-gate 		 * global 'environ' variable right before we call this.
2210Sstevel@tonic-gate 		 */
2220Sstevel@tonic-gate 		if (envp)
2230Sstevel@tonic-gate 			environ = (char **)envp;
2240Sstevel@tonic-gate 
2250Sstevel@tonic-gate 		(void) execvp(file, argv);  /* execute the program */
2260Sstevel@tonic-gate 		_exit(127);
2270Sstevel@tonic-gate 	}
2280Sstevel@tonic-gate 
2290Sstevel@tonic-gate 	/*
2300Sstevel@tonic-gate 	 * Initialize the process structure.
2310Sstevel@tonic-gate 	 */
2320Sstevel@tonic-gate 	(void) memset(P, 0, sizeof (*P));
2330Sstevel@tonic-gate 	(void) mutex_init(&P->proc_lock, USYNC_THREAD, NULL);
2340Sstevel@tonic-gate 	P->flags |= CREATED;
2350Sstevel@tonic-gate 	P->state = PS_RUN;
2360Sstevel@tonic-gate 	P->pid = pid;
2370Sstevel@tonic-gate 	P->asfd = -1;
2380Sstevel@tonic-gate 	P->ctlfd = -1;
2390Sstevel@tonic-gate 	P->statfd = -1;
2400Sstevel@tonic-gate 	P->agentctlfd = -1;
2410Sstevel@tonic-gate 	P->agentstatfd = -1;
2420Sstevel@tonic-gate 	P->ops = &P_live_ops;
2430Sstevel@tonic-gate 	Pinitsym(P);
2440Sstevel@tonic-gate 
2450Sstevel@tonic-gate 	/*
2460Sstevel@tonic-gate 	 * Open the /proc/pid files.
2470Sstevel@tonic-gate 	 */
248*2712Snn35248 	(void) snprintf(procname, sizeof (procname), "%s/%d/",
249*2712Snn35248 	    procfs_path, (int)pid);
2500Sstevel@tonic-gate 	fname = procname + strlen(procname);
2510Sstevel@tonic-gate 	(void) set_minfd();
2520Sstevel@tonic-gate 
2530Sstevel@tonic-gate 	/*
2540Sstevel@tonic-gate 	 * Exclusive write open advises others not to interfere.
2550Sstevel@tonic-gate 	 * There is no reason for any of these open()s to fail.
2560Sstevel@tonic-gate 	 */
2570Sstevel@tonic-gate 	(void) strcpy(fname, "as");
2580Sstevel@tonic-gate 	if ((fd = open(procname, (O_RDWR|O_EXCL))) < 0 ||
2590Sstevel@tonic-gate 	    (fd = dupfd(fd, 0)) < 0) {
2600Sstevel@tonic-gate 		dprintf("Pcreate: failed to open %s: %s\n",
2610Sstevel@tonic-gate 		    procname, strerror(errno));
2620Sstevel@tonic-gate 		rc = C_STRANGE;
2630Sstevel@tonic-gate 		goto bad;
2640Sstevel@tonic-gate 	}
2650Sstevel@tonic-gate 	P->asfd = fd;
2660Sstevel@tonic-gate 
2670Sstevel@tonic-gate 	(void) strcpy(fname, "status");
2680Sstevel@tonic-gate 	if ((fd = open(procname, O_RDONLY)) < 0 ||
2690Sstevel@tonic-gate 	    (fd = dupfd(fd, 0)) < 0) {
2700Sstevel@tonic-gate 		dprintf("Pcreate: failed to open %s: %s\n",
2710Sstevel@tonic-gate 		    procname, strerror(errno));
2720Sstevel@tonic-gate 		rc = C_STRANGE;
2730Sstevel@tonic-gate 		goto bad;
2740Sstevel@tonic-gate 	}
2750Sstevel@tonic-gate 	P->statfd = fd;
2760Sstevel@tonic-gate 
2770Sstevel@tonic-gate 	(void) strcpy(fname, "ctl");
2780Sstevel@tonic-gate 	if ((fd = open(procname, O_WRONLY)) < 0 ||
2790Sstevel@tonic-gate 	    (fd = dupfd(fd, 0)) < 0) {
2800Sstevel@tonic-gate 		dprintf("Pcreate: failed to open %s: %s\n",
2810Sstevel@tonic-gate 		    procname, strerror(errno));
2820Sstevel@tonic-gate 		rc = C_STRANGE;
2830Sstevel@tonic-gate 		goto bad;
2840Sstevel@tonic-gate 	}
2850Sstevel@tonic-gate 	P->ctlfd = fd;
2860Sstevel@tonic-gate 
2870Sstevel@tonic-gate 	(void) Pstop(P, 0);	/* stop the controlled process */
2880Sstevel@tonic-gate 
2890Sstevel@tonic-gate 	/*
2900Sstevel@tonic-gate 	 * Wait for process to sleep in pause().
2910Sstevel@tonic-gate 	 * If the process has already called pause(), then it should be
2920Sstevel@tonic-gate 	 * stopped (PR_REQUESTED) while asleep in pause and we are done.
2930Sstevel@tonic-gate 	 * Else we set up to catch entry/exit to pause() and set the process
2940Sstevel@tonic-gate 	 * running again, expecting it to stop when it reaches pause().
2950Sstevel@tonic-gate 	 * There is no reason for this to fail other than an interrupt.
2960Sstevel@tonic-gate 	 */
2970Sstevel@tonic-gate 	(void) Psysentry(P, SYS_pause, 1);
2980Sstevel@tonic-gate 	(void) Psysexit(P, SYS_pause, 1);
2990Sstevel@tonic-gate 	for (;;) {
3000Sstevel@tonic-gate 		if (P->state == PS_STOP &&
3010Sstevel@tonic-gate 		    P->status.pr_lwp.pr_syscall == SYS_pause &&
3020Sstevel@tonic-gate 		    (P->status.pr_lwp.pr_why == PR_REQUESTED ||
3030Sstevel@tonic-gate 		    P->status.pr_lwp.pr_why == PR_SYSENTRY ||
3040Sstevel@tonic-gate 		    P->status.pr_lwp.pr_why == PR_SYSEXIT))
3050Sstevel@tonic-gate 			break;
3060Sstevel@tonic-gate 
3070Sstevel@tonic-gate 		if (P->state != PS_STOP ||	/* interrupt or process died */
3080Sstevel@tonic-gate 		    Psetrun(P, 0, 0) != 0) {	/* can't restart */
3090Sstevel@tonic-gate 			if (errno == EINTR || errno == ERESTART)
3100Sstevel@tonic-gate 				rc = C_INTR;
3110Sstevel@tonic-gate 			else {
3120Sstevel@tonic-gate 				dprintf("Pcreate: Psetrun failed: %s\n",
3130Sstevel@tonic-gate 				    strerror(errno));
3140Sstevel@tonic-gate 				rc = C_STRANGE;
3150Sstevel@tonic-gate 			}
3160Sstevel@tonic-gate 			goto bad;
3170Sstevel@tonic-gate 		}
3180Sstevel@tonic-gate 
3190Sstevel@tonic-gate 		(void) Pwait(P, 0);
3200Sstevel@tonic-gate 	}
3210Sstevel@tonic-gate 	(void) Psysentry(P, SYS_pause, 0);
3220Sstevel@tonic-gate 	(void) Psysexit(P, SYS_pause, 0);
3230Sstevel@tonic-gate 
3240Sstevel@tonic-gate 	/*
3250Sstevel@tonic-gate 	 * Kick the process off the pause() and catch
3260Sstevel@tonic-gate 	 * it again on entry to exec() or exit().
3270Sstevel@tonic-gate 	 */
3280Sstevel@tonic-gate 	(void) Psysentry(P, SYS_exit, 1);
3290Sstevel@tonic-gate 	(void) Psysentry(P, SYS_exec, 1);
3300Sstevel@tonic-gate 	(void) Psysentry(P, SYS_execve, 1);
3310Sstevel@tonic-gate 	if (Psetrun(P, 0, PRSABORT) == -1) {
3320Sstevel@tonic-gate 		dprintf("Pcreate: Psetrun failed: %s\n", strerror(errno));
3330Sstevel@tonic-gate 		rc = C_STRANGE;
3340Sstevel@tonic-gate 		goto bad;
3350Sstevel@tonic-gate 	}
3360Sstevel@tonic-gate 	(void) Pwait(P, 0);
3370Sstevel@tonic-gate 	if (P->state != PS_STOP) {
3380Sstevel@tonic-gate 		dprintf("Pcreate: Pwait failed: %s\n", strerror(errno));
3390Sstevel@tonic-gate 		rc = C_STRANGE;
3400Sstevel@tonic-gate 		goto bad;
3410Sstevel@tonic-gate 	}
3420Sstevel@tonic-gate 
3430Sstevel@tonic-gate 	/*
3440Sstevel@tonic-gate 	 * Move the process through instances of failed exec()s
3450Sstevel@tonic-gate 	 * to reach the point of stopped on successful exec().
3460Sstevel@tonic-gate 	 */
3470Sstevel@tonic-gate 	(void) Psysexit(P, SYS_exec, TRUE);
3480Sstevel@tonic-gate 	(void) Psysexit(P, SYS_execve, TRUE);
3490Sstevel@tonic-gate 
3500Sstevel@tonic-gate 	while (P->state == PS_STOP &&
3510Sstevel@tonic-gate 	    P->status.pr_lwp.pr_why == PR_SYSENTRY &&
3520Sstevel@tonic-gate 	    (P->status.pr_lwp.pr_what == SYS_execve ||
3530Sstevel@tonic-gate 	    P->status.pr_lwp.pr_what == SYS_exec)) {
3540Sstevel@tonic-gate 		/*
3550Sstevel@tonic-gate 		 * Fetch the exec path name now, before we complete
3560Sstevel@tonic-gate 		 * the exec().  We may lose the process and be unable
3570Sstevel@tonic-gate 		 * to get the information later.
3580Sstevel@tonic-gate 		 */
3590Sstevel@tonic-gate 		(void) Pread_string(P, execpath, sizeof (execpath),
3600Sstevel@tonic-gate 			(off_t)P->status.pr_lwp.pr_sysarg[0]);
3610Sstevel@tonic-gate 		if (path != NULL)
3620Sstevel@tonic-gate 			(void) strncpy(path, execpath, len);
3630Sstevel@tonic-gate 		/*
3640Sstevel@tonic-gate 		 * Set the process running and wait for
3650Sstevel@tonic-gate 		 * it to stop on exit from the exec().
3660Sstevel@tonic-gate 		 */
3670Sstevel@tonic-gate 		(void) Psetrun(P, 0, 0);
3680Sstevel@tonic-gate 		(void) Pwait(P, 0);
3690Sstevel@tonic-gate 
3700Sstevel@tonic-gate 		if (P->state == PS_LOST &&		/* we lost control */
3710Sstevel@tonic-gate 		    Preopen(P) != 0) {		/* and we can't get it back */
3720Sstevel@tonic-gate 			rc = C_PERM;
3730Sstevel@tonic-gate 			goto bad;
3740Sstevel@tonic-gate 		}
3750Sstevel@tonic-gate 
3760Sstevel@tonic-gate 		/*
3770Sstevel@tonic-gate 		 * If the exec() failed, continue the loop, expecting
3780Sstevel@tonic-gate 		 * there to be more attempts to exec(), based on PATH.
3790Sstevel@tonic-gate 		 */
3800Sstevel@tonic-gate 		if (P->state == PS_STOP &&
3810Sstevel@tonic-gate 		    P->status.pr_lwp.pr_why == PR_SYSEXIT &&
3820Sstevel@tonic-gate 		    (P->status.pr_lwp.pr_what == SYS_execve ||
3830Sstevel@tonic-gate 		    P->status.pr_lwp.pr_what == SYS_exec) &&
3840Sstevel@tonic-gate 		    (lasterrno = P->status.pr_lwp.pr_errno) != 0) {
3850Sstevel@tonic-gate 			/*
3860Sstevel@tonic-gate 			 * The exec() failed.  Set the process running and
3870Sstevel@tonic-gate 			 * wait for it to stop on entry to the next exec().
3880Sstevel@tonic-gate 			 */
3890Sstevel@tonic-gate 			(void) Psetrun(P, 0, 0);
3900Sstevel@tonic-gate 			(void) Pwait(P, 0);
3910Sstevel@tonic-gate 
3920Sstevel@tonic-gate 			continue;
3930Sstevel@tonic-gate 		}
3940Sstevel@tonic-gate 		break;
3950Sstevel@tonic-gate 	}
3960Sstevel@tonic-gate 
3970Sstevel@tonic-gate 	if (P->state == PS_STOP &&
3980Sstevel@tonic-gate 	    P->status.pr_lwp.pr_why == PR_SYSEXIT &&
3990Sstevel@tonic-gate 	    (P->status.pr_lwp.pr_what == SYS_execve ||
4000Sstevel@tonic-gate 	    P->status.pr_lwp.pr_what == SYS_exec) &&
4010Sstevel@tonic-gate 	    P->status.pr_lwp.pr_errno == 0) {
4020Sstevel@tonic-gate 		/*
4030Sstevel@tonic-gate 		 * The process is stopped on successful exec() or execve().
4040Sstevel@tonic-gate 		 * Turn off all tracing flags and return success.
4050Sstevel@tonic-gate 		 */
4060Sstevel@tonic-gate 		restore_tracing_flags(P);
4070Sstevel@tonic-gate #ifndef _LP64
4080Sstevel@tonic-gate 		/* We must be a 64-bit process to deal with a 64-bit process */
4090Sstevel@tonic-gate 		if (P->status.pr_dmodel == PR_MODEL_LP64) {
4100Sstevel@tonic-gate 			rc = C_LP64;
4110Sstevel@tonic-gate 			goto bad;
4120Sstevel@tonic-gate 		}
4130Sstevel@tonic-gate #endif
4140Sstevel@tonic-gate 		/*
4150Sstevel@tonic-gate 		 * Set run-on-last-close so the controlled process
4160Sstevel@tonic-gate 		 * runs even if we die on a signal.
4170Sstevel@tonic-gate 		 */
4180Sstevel@tonic-gate 		(void) Psetflags(P, PR_RLC);
4190Sstevel@tonic-gate 		*perr = 0;
4200Sstevel@tonic-gate 		return (P);
4210Sstevel@tonic-gate 	}
4220Sstevel@tonic-gate 
4230Sstevel@tonic-gate 	rc = lasterrno == ENOENT ? C_NOENT : C_NOEXEC;
4240Sstevel@tonic-gate 
4250Sstevel@tonic-gate bad:
4260Sstevel@tonic-gate 	(void) kill(pid, SIGKILL);
4270Sstevel@tonic-gate 	if (path != NULL && rc != C_PERM && rc != C_LP64)
4280Sstevel@tonic-gate 		*path = '\0';
4290Sstevel@tonic-gate 	Pfree(P);
4300Sstevel@tonic-gate 	*perr = rc;
4310Sstevel@tonic-gate 	return (NULL);
4320Sstevel@tonic-gate }
4330Sstevel@tonic-gate 
4340Sstevel@tonic-gate struct ps_prochandle *
4350Sstevel@tonic-gate Pcreate(
4360Sstevel@tonic-gate 	const char *file,	/* executable file name */
4370Sstevel@tonic-gate 	char *const *argv,	/* argument vector */
4380Sstevel@tonic-gate 	int *perr,	/* pointer to error return code */
4390Sstevel@tonic-gate 	char *path,	/* if non-null, holds exec path name on return */
4400Sstevel@tonic-gate 	size_t len)	/* size of the path buffer */
4410Sstevel@tonic-gate {
4420Sstevel@tonic-gate 	return (Pxcreate(file, argv, NULL, perr, path, len));
4430Sstevel@tonic-gate }
4440Sstevel@tonic-gate 
4450Sstevel@tonic-gate /*
4460Sstevel@tonic-gate  * Return a printable string corresponding to a Pcreate() error return.
4470Sstevel@tonic-gate  */
4480Sstevel@tonic-gate const char *
4490Sstevel@tonic-gate Pcreate_error(int error)
4500Sstevel@tonic-gate {
4510Sstevel@tonic-gate 	const char *str;
4520Sstevel@tonic-gate 
4530Sstevel@tonic-gate 	switch (error) {
4540Sstevel@tonic-gate 	case C_FORK:
4550Sstevel@tonic-gate 		str = "cannot fork";
4560Sstevel@tonic-gate 		break;
4570Sstevel@tonic-gate 	case C_PERM:
4580Sstevel@tonic-gate 		str = "file is set-id or unreadable";
4590Sstevel@tonic-gate 		break;
4600Sstevel@tonic-gate 	case C_NOEXEC:
4610Sstevel@tonic-gate 		str = "cannot execute file";
4620Sstevel@tonic-gate 		break;
4630Sstevel@tonic-gate 	case C_INTR:
4640Sstevel@tonic-gate 		str = "operation interrupted";
4650Sstevel@tonic-gate 		break;
4660Sstevel@tonic-gate 	case C_LP64:
4670Sstevel@tonic-gate 		str = "program is _LP64, self is not";
4680Sstevel@tonic-gate 		break;
4690Sstevel@tonic-gate 	case C_STRANGE:
4700Sstevel@tonic-gate 		str = "unanticipated system error";
4710Sstevel@tonic-gate 		break;
4720Sstevel@tonic-gate 	case C_NOENT:
4730Sstevel@tonic-gate 		str = "cannot find executable file";
4740Sstevel@tonic-gate 		break;
4750Sstevel@tonic-gate 	default:
4760Sstevel@tonic-gate 		str = "unknown error";
4770Sstevel@tonic-gate 		break;
4780Sstevel@tonic-gate 	}
4790Sstevel@tonic-gate 
4800Sstevel@tonic-gate 	return (str);
4810Sstevel@tonic-gate }
4820Sstevel@tonic-gate 
4830Sstevel@tonic-gate /*
4840Sstevel@tonic-gate  * Callback to execute in each child process created with Pcreate() after fork
4850Sstevel@tonic-gate  * but before it execs the new process image.  By default, we do nothing, but
4860Sstevel@tonic-gate  * by calling this function we allow the client program to define its own
4870Sstevel@tonic-gate  * version of the function which will interpose on our empty default.  This
4880Sstevel@tonic-gate  * may be useful for clients that need to modify signal dispositions, terminal
4890Sstevel@tonic-gate  * attributes, or process group and session properties for each new victim.
4900Sstevel@tonic-gate  */
4910Sstevel@tonic-gate /*ARGSUSED*/
4920Sstevel@tonic-gate void
4930Sstevel@tonic-gate Pcreate_callback(struct ps_prochandle *P)
4940Sstevel@tonic-gate {
4950Sstevel@tonic-gate 	/* nothing to do here */
4960Sstevel@tonic-gate }
4970Sstevel@tonic-gate 
4980Sstevel@tonic-gate /*
4990Sstevel@tonic-gate  * Grab an existing process.
5000Sstevel@tonic-gate  * Return an opaque pointer to its process control structure.
5010Sstevel@tonic-gate  *
5020Sstevel@tonic-gate  * pid:		UNIX process ID.
5030Sstevel@tonic-gate  * flags:
5040Sstevel@tonic-gate  *	PGRAB_RETAIN	Retain tracing flags (default clears all tracing flags).
5050Sstevel@tonic-gate  *	PGRAB_FORCE	Grab regardless of whether process is already traced.
5060Sstevel@tonic-gate  *	PGRAB_RDONLY	Open the address space file O_RDONLY instead of O_RDWR,
5070Sstevel@tonic-gate  *                      and do not open the process control file.
5080Sstevel@tonic-gate  *	PGRAB_NOSTOP	Open the process but do not force it to stop.
5090Sstevel@tonic-gate  * perr:	pointer to error return code.
5100Sstevel@tonic-gate  */
5110Sstevel@tonic-gate struct ps_prochandle *
5120Sstevel@tonic-gate Pgrab(pid_t pid, int flags, int *perr)
5130Sstevel@tonic-gate {
5140Sstevel@tonic-gate 	struct ps_prochandle *P;
5150Sstevel@tonic-gate 	int fd, omode;
516*2712Snn35248 	char procname[PATH_MAX];
5170Sstevel@tonic-gate 	char *fname;
5180Sstevel@tonic-gate 	int rc = 0;
5190Sstevel@tonic-gate 
5200Sstevel@tonic-gate 	/*
5210Sstevel@tonic-gate 	 * PGRAB_RDONLY means that we do not open the /proc/<pid>/control file,
5220Sstevel@tonic-gate 	 * and so it implies RETAIN and NOSTOP since both require control.
5230Sstevel@tonic-gate 	 */
5240Sstevel@tonic-gate 	if (flags & PGRAB_RDONLY)
5250Sstevel@tonic-gate 		flags |= PGRAB_RETAIN | PGRAB_NOSTOP;
5260Sstevel@tonic-gate 
5270Sstevel@tonic-gate 	if ((P = malloc(sizeof (struct ps_prochandle))) == NULL) {
5280Sstevel@tonic-gate 		*perr = G_STRANGE;
5290Sstevel@tonic-gate 		return (NULL);
5300Sstevel@tonic-gate 	}
5310Sstevel@tonic-gate 
5320Sstevel@tonic-gate 	P->asfd = -1;
5330Sstevel@tonic-gate 	P->ctlfd = -1;
5340Sstevel@tonic-gate 	P->statfd = -1;
5350Sstevel@tonic-gate 
5360Sstevel@tonic-gate again:	/* Come back here if we lose it in the Window of Vulnerability */
5370Sstevel@tonic-gate 	if (P->ctlfd >= 0)
5380Sstevel@tonic-gate 		(void) close(P->ctlfd);
5390Sstevel@tonic-gate 	if (P->asfd >= 0)
5400Sstevel@tonic-gate 		(void) close(P->asfd);
5410Sstevel@tonic-gate 	if (P->statfd >= 0)
5420Sstevel@tonic-gate 		(void) close(P->statfd);
5430Sstevel@tonic-gate 	(void) memset(P, 0, sizeof (*P));
5440Sstevel@tonic-gate 	(void) mutex_init(&P->proc_lock, USYNC_THREAD, NULL);
5450Sstevel@tonic-gate 	P->ctlfd = -1;
5460Sstevel@tonic-gate 	P->asfd = -1;
5470Sstevel@tonic-gate 	P->statfd = -1;
5480Sstevel@tonic-gate 	P->agentctlfd = -1;
5490Sstevel@tonic-gate 	P->agentstatfd = -1;
5500Sstevel@tonic-gate 	P->ops = &P_live_ops;
5510Sstevel@tonic-gate 	Pinitsym(P);
5520Sstevel@tonic-gate 
5530Sstevel@tonic-gate 	/*
5540Sstevel@tonic-gate 	 * Open the /proc/pid files
5550Sstevel@tonic-gate 	 */
556*2712Snn35248 	(void) snprintf(procname, sizeof (procname), "%s/%d/",
557*2712Snn35248 	    procfs_path, (int)pid);
5580Sstevel@tonic-gate 	fname = procname + strlen(procname);
5590Sstevel@tonic-gate 	(void) set_minfd();
5600Sstevel@tonic-gate 
5610Sstevel@tonic-gate 	/*
5620Sstevel@tonic-gate 	 * Request exclusive open to avoid grabbing someone else's
5630Sstevel@tonic-gate 	 * process and to prevent others from interfering afterwards.
5640Sstevel@tonic-gate 	 * If this fails and the 'PGRAB_FORCE' flag is set, attempt to
5650Sstevel@tonic-gate 	 * open non-exclusively.
5660Sstevel@tonic-gate 	 */
5670Sstevel@tonic-gate 	(void) strcpy(fname, "as");
5680Sstevel@tonic-gate 	omode = (flags & PGRAB_RDONLY) ? O_RDONLY : O_RDWR;
5690Sstevel@tonic-gate 
5700Sstevel@tonic-gate 	if (((fd = open(procname, omode | O_EXCL)) < 0 &&
5710Sstevel@tonic-gate 	    (fd = ((flags & PGRAB_FORCE)? open(procname, omode) : -1)) < 0) ||
5720Sstevel@tonic-gate 	    (fd = dupfd(fd, 0)) < 0) {
5730Sstevel@tonic-gate 		switch (errno) {
5740Sstevel@tonic-gate 		case ENOENT:
5750Sstevel@tonic-gate 			rc = G_NOPROC;
5760Sstevel@tonic-gate 			break;
5770Sstevel@tonic-gate 		case EACCES:
5780Sstevel@tonic-gate 		case EPERM:
5790Sstevel@tonic-gate 			rc = G_PERM;
5800Sstevel@tonic-gate 			break;
5810Sstevel@tonic-gate 		case EBUSY:
5820Sstevel@tonic-gate 			if (!(flags & PGRAB_FORCE) || geteuid() != 0) {
5830Sstevel@tonic-gate 				rc = G_BUSY;
5840Sstevel@tonic-gate 				break;
5850Sstevel@tonic-gate 			}
5860Sstevel@tonic-gate 			/* FALLTHROUGH */
5870Sstevel@tonic-gate 		default:
5880Sstevel@tonic-gate 			dprintf("Pgrab: failed to open %s: %s\n",
5890Sstevel@tonic-gate 			    procname, strerror(errno));
5900Sstevel@tonic-gate 			rc = G_STRANGE;
5910Sstevel@tonic-gate 			break;
5920Sstevel@tonic-gate 		}
5930Sstevel@tonic-gate 		goto err;
5940Sstevel@tonic-gate 	}
5950Sstevel@tonic-gate 	P->asfd = fd;
5960Sstevel@tonic-gate 
5970Sstevel@tonic-gate 	(void) strcpy(fname, "status");
5980Sstevel@tonic-gate 	if ((fd = open(procname, O_RDONLY)) < 0 ||
5990Sstevel@tonic-gate 	    (fd = dupfd(fd, 0)) < 0) {
6000Sstevel@tonic-gate 		switch (errno) {
6010Sstevel@tonic-gate 		case ENOENT:
6020Sstevel@tonic-gate 			rc = G_NOPROC;
6030Sstevel@tonic-gate 			break;
6040Sstevel@tonic-gate 		default:
6050Sstevel@tonic-gate 			dprintf("Pgrab: failed to open %s: %s\n",
6060Sstevel@tonic-gate 			    procname, strerror(errno));
6070Sstevel@tonic-gate 			rc = G_STRANGE;
6080Sstevel@tonic-gate 			break;
6090Sstevel@tonic-gate 		}
6100Sstevel@tonic-gate 		goto err;
6110Sstevel@tonic-gate 	}
6120Sstevel@tonic-gate 	P->statfd = fd;
6130Sstevel@tonic-gate 
6140Sstevel@tonic-gate 	if (!(flags & PGRAB_RDONLY)) {
6150Sstevel@tonic-gate 		(void) strcpy(fname, "ctl");
6160Sstevel@tonic-gate 		if ((fd = open(procname, O_WRONLY)) < 0 ||
6170Sstevel@tonic-gate 		    (fd = dupfd(fd, 0)) < 0) {
6180Sstevel@tonic-gate 			switch (errno) {
6190Sstevel@tonic-gate 			case ENOENT:
6200Sstevel@tonic-gate 				rc = G_NOPROC;
6210Sstevel@tonic-gate 				break;
6220Sstevel@tonic-gate 			default:
6230Sstevel@tonic-gate 				dprintf("Pgrab: failed to open %s: %s\n",
6240Sstevel@tonic-gate 				    procname, strerror(errno));
6250Sstevel@tonic-gate 				rc = G_STRANGE;
6260Sstevel@tonic-gate 				break;
6270Sstevel@tonic-gate 			}
6280Sstevel@tonic-gate 			goto err;
6290Sstevel@tonic-gate 		}
6300Sstevel@tonic-gate 		P->ctlfd = fd;
6310Sstevel@tonic-gate 	}
6320Sstevel@tonic-gate 
6330Sstevel@tonic-gate 	P->state = PS_RUN;
6340Sstevel@tonic-gate 	P->pid = pid;
6350Sstevel@tonic-gate 
6360Sstevel@tonic-gate 	/*
6370Sstevel@tonic-gate 	 * We are now in the Window of Vulnerability (WoV).  The process may
6380Sstevel@tonic-gate 	 * exec() a setuid/setgid or unreadable object file between the open()
6390Sstevel@tonic-gate 	 * and the PCSTOP.  We will get EAGAIN in this case and must start over.
6400Sstevel@tonic-gate 	 * As Pstopstatus will trigger the first read() from a /proc file,
6410Sstevel@tonic-gate 	 * we also need to handle EOVERFLOW here when 32-bit as an indicator
6420Sstevel@tonic-gate 	 * that this process is 64-bit.  Finally, if the process has become
6430Sstevel@tonic-gate 	 * a zombie (PS_UNDEAD) while we were trying to grab it, just remain
6440Sstevel@tonic-gate 	 * silent about this and pretend there was no process.
6450Sstevel@tonic-gate 	 */
6460Sstevel@tonic-gate 	if (Pstopstatus(P, PCNULL, 0) != 0) {
6470Sstevel@tonic-gate #ifndef _LP64
6480Sstevel@tonic-gate 		if (errno == EOVERFLOW) {
6490Sstevel@tonic-gate 			rc = G_LP64;
6500Sstevel@tonic-gate 			goto err;
6510Sstevel@tonic-gate 		}
6520Sstevel@tonic-gate #endif
6530Sstevel@tonic-gate 		if (P->state == PS_LOST) {	/* WoV */
6540Sstevel@tonic-gate 			(void) mutex_destroy(&P->proc_lock);
6550Sstevel@tonic-gate 			goto again;
6560Sstevel@tonic-gate 		}
6570Sstevel@tonic-gate 
6580Sstevel@tonic-gate 		if (P->state == PS_UNDEAD)
6590Sstevel@tonic-gate 			rc = G_NOPROC;
6600Sstevel@tonic-gate 		else
6610Sstevel@tonic-gate 			rc = G_STRANGE;
6620Sstevel@tonic-gate 
6630Sstevel@tonic-gate 		goto err;
6640Sstevel@tonic-gate 	}
6650Sstevel@tonic-gate 
6660Sstevel@tonic-gate 	/*
6670Sstevel@tonic-gate 	 * If the process is a system process, we can't control it even as root
6680Sstevel@tonic-gate 	 */
6690Sstevel@tonic-gate 	if (P->status.pr_flags & PR_ISSYS) {
6700Sstevel@tonic-gate 		rc = G_SYS;
6710Sstevel@tonic-gate 		goto err;
6720Sstevel@tonic-gate 	}
6730Sstevel@tonic-gate #ifndef _LP64
6740Sstevel@tonic-gate 	/*
6750Sstevel@tonic-gate 	 * We must be a 64-bit process to deal with a 64-bit process
6760Sstevel@tonic-gate 	 */
6770Sstevel@tonic-gate 	if (P->status.pr_dmodel == PR_MODEL_LP64) {
6780Sstevel@tonic-gate 		rc = G_LP64;
6790Sstevel@tonic-gate 		goto err;
6800Sstevel@tonic-gate 	}
6810Sstevel@tonic-gate #endif
6820Sstevel@tonic-gate 
6830Sstevel@tonic-gate 	/*
6840Sstevel@tonic-gate 	 * Remember the status for use by Prelease().
6850Sstevel@tonic-gate 	 */
6860Sstevel@tonic-gate 	P->orig_status = P->status;	/* structure copy */
6870Sstevel@tonic-gate 
6880Sstevel@tonic-gate 	/*
6890Sstevel@tonic-gate 	 * Before stopping the process, make sure we are not grabbing ourselves.
6900Sstevel@tonic-gate 	 * If we are, make sure we are doing it PGRAB_RDONLY.
6910Sstevel@tonic-gate 	 */
6920Sstevel@tonic-gate 	if (pid == getpid()) {
6930Sstevel@tonic-gate 		/*
6940Sstevel@tonic-gate 		 * Verify that the process is really ourself:
6950Sstevel@tonic-gate 		 * Set a magic number, read it through the
6960Sstevel@tonic-gate 		 * /proc file and see if the results match.
6970Sstevel@tonic-gate 		 */
6980Sstevel@tonic-gate 		uint32_t magic1 = 0;
6990Sstevel@tonic-gate 		uint32_t magic2 = 2;
7000Sstevel@tonic-gate 
7010Sstevel@tonic-gate 		errno = 0;
7020Sstevel@tonic-gate 
7030Sstevel@tonic-gate 		if (Pread(P, &magic2, sizeof (magic2), (uintptr_t)&magic1)
7040Sstevel@tonic-gate 		    == sizeof (magic2) &&
7050Sstevel@tonic-gate 		    magic2 == 0 &&
7060Sstevel@tonic-gate 		    (magic1 = 0xfeedbeef) &&
7070Sstevel@tonic-gate 		    Pread(P, &magic2, sizeof (magic2), (uintptr_t)&magic1)
7080Sstevel@tonic-gate 		    == sizeof (magic2) &&
7090Sstevel@tonic-gate 		    magic2 == 0xfeedbeef &&
7100Sstevel@tonic-gate 		    !(flags & PGRAB_RDONLY)) {
7110Sstevel@tonic-gate 			rc = G_SELF;
7120Sstevel@tonic-gate 			goto err;
7130Sstevel@tonic-gate 		}
7140Sstevel@tonic-gate 	}
7150Sstevel@tonic-gate 
7160Sstevel@tonic-gate 	/*
7170Sstevel@tonic-gate 	 * If the process is already stopped or has been directed
7180Sstevel@tonic-gate 	 * to stop via /proc, do not set run-on-last-close.
7190Sstevel@tonic-gate 	 */
7200Sstevel@tonic-gate 	if (!(P->status.pr_lwp.pr_flags & (PR_ISTOP|PR_DSTOP)) &&
7210Sstevel@tonic-gate 	    !(flags & PGRAB_RDONLY)) {
7220Sstevel@tonic-gate 		/*
7230Sstevel@tonic-gate 		 * Mark the process run-on-last-close so
7240Sstevel@tonic-gate 		 * it runs even if we die from SIGKILL.
7250Sstevel@tonic-gate 		 */
7260Sstevel@tonic-gate 		if (Psetflags(P, PR_RLC) != 0) {
7270Sstevel@tonic-gate 			if (errno == EAGAIN) {	/* WoV */
7280Sstevel@tonic-gate 				(void) mutex_destroy(&P->proc_lock);
7290Sstevel@tonic-gate 				goto again;
7300Sstevel@tonic-gate 			}
7310Sstevel@tonic-gate 			if (errno == ENOENT)	/* No complaint about zombies */
7320Sstevel@tonic-gate 				rc = G_ZOMB;
7330Sstevel@tonic-gate 			else {
7340Sstevel@tonic-gate 				dprintf("Pgrab: failed to set RLC\n");
7350Sstevel@tonic-gate 				rc = G_STRANGE;
7360Sstevel@tonic-gate 			}
7370Sstevel@tonic-gate 			goto err;
7380Sstevel@tonic-gate 		}
7390Sstevel@tonic-gate 	}
7400Sstevel@tonic-gate 
7410Sstevel@tonic-gate 	/*
7420Sstevel@tonic-gate 	 * If a stop directive is pending and the process has not yet stopped,
7430Sstevel@tonic-gate 	 * then synchronously wait for the stop directive to take effect.
7440Sstevel@tonic-gate 	 * Limit the time spent waiting for the process to stop by iterating
7450Sstevel@tonic-gate 	 * at most 10 times. The time-out of 20 ms corresponds to the time
7460Sstevel@tonic-gate 	 * between sending the stop directive and the process actually stopped
7470Sstevel@tonic-gate 	 * as measured by DTrace on a slow, busy system. If the process doesn't
7480Sstevel@tonic-gate 	 * stop voluntarily, clear the PR_DSTOP flag so that the code below
7490Sstevel@tonic-gate 	 * forces the process to stop.
7500Sstevel@tonic-gate 	 */
7510Sstevel@tonic-gate 	if (!(flags & PGRAB_RDONLY)) {
7520Sstevel@tonic-gate 		int niter = 0;
7530Sstevel@tonic-gate 		while ((P->status.pr_lwp.pr_flags & (PR_STOPPED|PR_DSTOP)) ==
7540Sstevel@tonic-gate 		    PR_DSTOP && niter < 10 &&
7550Sstevel@tonic-gate 		    Pstopstatus(P, PCTWSTOP, 20) != 0) {
7560Sstevel@tonic-gate 			niter++;
7570Sstevel@tonic-gate 			if (flags & PGRAB_NOSTOP)
7580Sstevel@tonic-gate 				break;
7590Sstevel@tonic-gate 		}
7600Sstevel@tonic-gate 		if (niter == 10 && !(flags & PGRAB_NOSTOP)) {
7610Sstevel@tonic-gate 			/* Try it harder down below */
7620Sstevel@tonic-gate 			P->status.pr_lwp.pr_flags &= ~PR_DSTOP;
7630Sstevel@tonic-gate 		}
7640Sstevel@tonic-gate 	}
7650Sstevel@tonic-gate 
7660Sstevel@tonic-gate 	/*
7670Sstevel@tonic-gate 	 * If the process is not already stopped or directed to stop
7680Sstevel@tonic-gate 	 * and PGRAB_NOSTOP was not specified, stop the process now.
7690Sstevel@tonic-gate 	 */
7700Sstevel@tonic-gate 	if (!(P->status.pr_lwp.pr_flags & (PR_ISTOP|PR_DSTOP)) &&
7710Sstevel@tonic-gate 	    !(flags & PGRAB_NOSTOP)) {
7720Sstevel@tonic-gate 		/*
7730Sstevel@tonic-gate 		 * Stop the process, get its status and signal/syscall masks.
7740Sstevel@tonic-gate 		 */
7750Sstevel@tonic-gate 		if (((P->status.pr_lwp.pr_flags & PR_STOPPED) &&
7760Sstevel@tonic-gate 		    Pstopstatus(P, PCDSTOP, 0) != 0) ||
7770Sstevel@tonic-gate 		    Pstopstatus(P, PCSTOP, 2000) != 0) {
7780Sstevel@tonic-gate #ifndef _LP64
7790Sstevel@tonic-gate 			if (errno == EOVERFLOW) {
7800Sstevel@tonic-gate 				rc = G_LP64;
7810Sstevel@tonic-gate 				goto err;
7820Sstevel@tonic-gate 			}
7830Sstevel@tonic-gate #endif
7840Sstevel@tonic-gate 			if (P->state == PS_LOST) {	/* WoV */
7850Sstevel@tonic-gate 				(void) mutex_destroy(&P->proc_lock);
7860Sstevel@tonic-gate 				goto again;
7870Sstevel@tonic-gate 			}
7880Sstevel@tonic-gate 			if ((errno != EINTR && errno != ERESTART) ||
7890Sstevel@tonic-gate 			    (P->state != PS_STOP &&
7900Sstevel@tonic-gate 			    !(P->status.pr_flags & PR_DSTOP))) {
7910Sstevel@tonic-gate 				if (P->state != PS_RUN && errno != ENOENT) {
7920Sstevel@tonic-gate 					dprintf("Pgrab: failed to PCSTOP\n");
7930Sstevel@tonic-gate 					rc = G_STRANGE;
7940Sstevel@tonic-gate 				} else {
7950Sstevel@tonic-gate 					rc = G_ZOMB;
7960Sstevel@tonic-gate 				}
7970Sstevel@tonic-gate 				goto err;
7980Sstevel@tonic-gate 			}
7990Sstevel@tonic-gate 		}
8000Sstevel@tonic-gate 
8010Sstevel@tonic-gate 		/*
8020Sstevel@tonic-gate 		 * Process should now either be stopped via /proc or there
8030Sstevel@tonic-gate 		 * should be an outstanding stop directive.
8040Sstevel@tonic-gate 		 */
8050Sstevel@tonic-gate 		if (!(P->status.pr_flags & (PR_ISTOP|PR_DSTOP))) {
8060Sstevel@tonic-gate 			dprintf("Pgrab: process is not stopped\n");
8070Sstevel@tonic-gate 			rc = G_STRANGE;
8080Sstevel@tonic-gate 			goto err;
8090Sstevel@tonic-gate 		}
8100Sstevel@tonic-gate #ifndef _LP64
8110Sstevel@tonic-gate 		/*
8120Sstevel@tonic-gate 		 * Test this again now because the 32-bit victim process may
8130Sstevel@tonic-gate 		 * have exec'd a 64-bit process in the meantime.
8140Sstevel@tonic-gate 		 */
8150Sstevel@tonic-gate 		if (P->status.pr_dmodel == PR_MODEL_LP64) {
8160Sstevel@tonic-gate 			rc = G_LP64;
8170Sstevel@tonic-gate 			goto err;
8180Sstevel@tonic-gate 		}
8190Sstevel@tonic-gate #endif
8200Sstevel@tonic-gate 	}
8210Sstevel@tonic-gate 
8220Sstevel@tonic-gate 	/*
8230Sstevel@tonic-gate 	 * Cancel all tracing flags unless the PGRAB_RETAIN flag is set.
8240Sstevel@tonic-gate 	 */
8250Sstevel@tonic-gate 	if (!(flags & PGRAB_RETAIN)) {
8260Sstevel@tonic-gate 		(void) Psysentry(P, 0, FALSE);
8270Sstevel@tonic-gate 		(void) Psysexit(P, 0, FALSE);
8280Sstevel@tonic-gate 		(void) Psignal(P, 0, FALSE);
8290Sstevel@tonic-gate 		(void) Pfault(P, 0, FALSE);
8300Sstevel@tonic-gate 		Psync(P);
8310Sstevel@tonic-gate 	}
8320Sstevel@tonic-gate 
8330Sstevel@tonic-gate 	*perr = 0;
8340Sstevel@tonic-gate 	return (P);
8350Sstevel@tonic-gate 
8360Sstevel@tonic-gate err:
8370Sstevel@tonic-gate 	Pfree(P);
8380Sstevel@tonic-gate 	*perr = rc;
8390Sstevel@tonic-gate 	return (NULL);
8400Sstevel@tonic-gate }
8410Sstevel@tonic-gate 
8420Sstevel@tonic-gate /*
8430Sstevel@tonic-gate  * Return a printable string corresponding to a Pgrab() error return.
8440Sstevel@tonic-gate  */
8450Sstevel@tonic-gate const char *
8460Sstevel@tonic-gate Pgrab_error(int error)
8470Sstevel@tonic-gate {
8480Sstevel@tonic-gate 	const char *str;
8490Sstevel@tonic-gate 
8500Sstevel@tonic-gate 	switch (error) {
8510Sstevel@tonic-gate 	case G_NOPROC:
8520Sstevel@tonic-gate 		str = "no such process";
8530Sstevel@tonic-gate 		break;
8540Sstevel@tonic-gate 	case G_NOCORE:
8550Sstevel@tonic-gate 		str = "no such core file";
8560Sstevel@tonic-gate 		break;
8570Sstevel@tonic-gate 	case G_NOPROCORCORE:
8580Sstevel@tonic-gate 		str = "no such process or core file";
8590Sstevel@tonic-gate 		break;
8600Sstevel@tonic-gate 	case G_NOEXEC:
8610Sstevel@tonic-gate 		str = "cannot find executable file";
8620Sstevel@tonic-gate 		break;
8630Sstevel@tonic-gate 	case G_ZOMB:
8640Sstevel@tonic-gate 		str = "zombie process";
8650Sstevel@tonic-gate 		break;
8660Sstevel@tonic-gate 	case G_PERM:
8670Sstevel@tonic-gate 		str = "permission denied";
8680Sstevel@tonic-gate 		break;
8690Sstevel@tonic-gate 	case G_BUSY:
8700Sstevel@tonic-gate 		str = "process is traced";
8710Sstevel@tonic-gate 		break;
8720Sstevel@tonic-gate 	case G_SYS:
8730Sstevel@tonic-gate 		str = "system process";
8740Sstevel@tonic-gate 		break;
8750Sstevel@tonic-gate 	case G_SELF:
8760Sstevel@tonic-gate 		str = "attempt to grab self";
8770Sstevel@tonic-gate 		break;
8780Sstevel@tonic-gate 	case G_INTR:
8790Sstevel@tonic-gate 		str = "operation interrupted";
8800Sstevel@tonic-gate 		break;
8810Sstevel@tonic-gate 	case G_LP64:
8820Sstevel@tonic-gate 		str = "program is _LP64, self is not";
8830Sstevel@tonic-gate 		break;
8840Sstevel@tonic-gate 	case G_FORMAT:
8850Sstevel@tonic-gate 		str = "file is not an ELF core file";
8860Sstevel@tonic-gate 		break;
8870Sstevel@tonic-gate 	case G_ELF:
8880Sstevel@tonic-gate 		str = "libelf error";
8890Sstevel@tonic-gate 		break;
8900Sstevel@tonic-gate 	case G_NOTE:
8910Sstevel@tonic-gate 		str = "core file is corrupt or missing required data";
8920Sstevel@tonic-gate 		break;
8930Sstevel@tonic-gate 	case G_STRANGE:
8940Sstevel@tonic-gate 		str = "unanticipated system error";
8950Sstevel@tonic-gate 		break;
8960Sstevel@tonic-gate 	case G_ISAINVAL:
8970Sstevel@tonic-gate 		str = "wrong ELF machine type";
8980Sstevel@tonic-gate 		break;
8990Sstevel@tonic-gate 	case G_BADLWPS:
9000Sstevel@tonic-gate 		str = "bad lwp specification";
9010Sstevel@tonic-gate 		break;
9020Sstevel@tonic-gate 	default:
9030Sstevel@tonic-gate 		str = "unknown error";
9040Sstevel@tonic-gate 		break;
9050Sstevel@tonic-gate 	}
9060Sstevel@tonic-gate 
9070Sstevel@tonic-gate 	return (str);
9080Sstevel@tonic-gate }
9090Sstevel@tonic-gate 
9100Sstevel@tonic-gate /*
9110Sstevel@tonic-gate  * Free a process control structure.
9120Sstevel@tonic-gate  * Close the file descriptors but don't do the Prelease logic.
9130Sstevel@tonic-gate  */
9140Sstevel@tonic-gate void
9150Sstevel@tonic-gate Pfree(struct ps_prochandle *P)
9160Sstevel@tonic-gate {
9170Sstevel@tonic-gate 	uint_t i;
9180Sstevel@tonic-gate 
9190Sstevel@tonic-gate 	if (P->core != NULL) {
9200Sstevel@tonic-gate 		extern void __priv_free_info(void *);
9210Sstevel@tonic-gate 		lwp_info_t *nlwp, *lwp = list_next(&P->core->core_lwp_head);
9220Sstevel@tonic-gate 
9230Sstevel@tonic-gate 		for (i = 0; i < P->core->core_nlwp; i++, lwp = nlwp) {
9240Sstevel@tonic-gate 			nlwp = list_next(lwp);
9250Sstevel@tonic-gate #ifdef __sparc
9260Sstevel@tonic-gate 			if (lwp->lwp_gwins != NULL)
9270Sstevel@tonic-gate 				free(lwp->lwp_gwins);
9280Sstevel@tonic-gate 			if (lwp->lwp_xregs != NULL)
9290Sstevel@tonic-gate 				free(lwp->lwp_xregs);
9300Sstevel@tonic-gate 			if (lwp->lwp_asrs != NULL)
9310Sstevel@tonic-gate 				free(lwp->lwp_asrs);
9320Sstevel@tonic-gate #endif
9330Sstevel@tonic-gate 			free(lwp);
9340Sstevel@tonic-gate 		}
9350Sstevel@tonic-gate 
9360Sstevel@tonic-gate 		if (P->core->core_platform != NULL)
9370Sstevel@tonic-gate 			free(P->core->core_platform);
9380Sstevel@tonic-gate 		if (P->core->core_uts != NULL)
9390Sstevel@tonic-gate 			free(P->core->core_uts);
9400Sstevel@tonic-gate 		if (P->core->core_cred != NULL)
9410Sstevel@tonic-gate 			free(P->core->core_cred);
9420Sstevel@tonic-gate 		if (P->core->core_priv != NULL)
9430Sstevel@tonic-gate 			free(P->core->core_priv);
9440Sstevel@tonic-gate 		if (P->core->core_privinfo != NULL)
9450Sstevel@tonic-gate 			__priv_free_info(P->core->core_privinfo);
9460Sstevel@tonic-gate 		if (P->core->core_ppii != NULL)
9470Sstevel@tonic-gate 			free(P->core->core_ppii);
9480Sstevel@tonic-gate 		if (P->core->core_zonename != NULL)
9490Sstevel@tonic-gate 			free(P->core->core_zonename);
9500Sstevel@tonic-gate #if defined(__i386) || defined(__amd64)
9510Sstevel@tonic-gate 		if (P->core->core_ldt != NULL)
9520Sstevel@tonic-gate 			free(P->core->core_ldt);
9530Sstevel@tonic-gate #endif
9540Sstevel@tonic-gate 
9550Sstevel@tonic-gate 		free(P->core);
9560Sstevel@tonic-gate 	}
9570Sstevel@tonic-gate 
9580Sstevel@tonic-gate 	if (P->ucaddrs != NULL) {
9590Sstevel@tonic-gate 		free(P->ucaddrs);
9600Sstevel@tonic-gate 		P->ucaddrs = NULL;
9610Sstevel@tonic-gate 		P->ucnelems = 0;
9620Sstevel@tonic-gate 	}
9630Sstevel@tonic-gate 
9640Sstevel@tonic-gate 	(void) mutex_lock(&P->proc_lock);
9650Sstevel@tonic-gate 	if (P->hashtab != NULL) {
9660Sstevel@tonic-gate 		struct ps_lwphandle *L;
9670Sstevel@tonic-gate 		for (i = 0; i < HASHSIZE; i++) {
9680Sstevel@tonic-gate 			while ((L = P->hashtab[i]) != NULL)
9690Sstevel@tonic-gate 				Lfree_internal(P, L);
9700Sstevel@tonic-gate 		}
9710Sstevel@tonic-gate 		free(P->hashtab);
9720Sstevel@tonic-gate 	}
9730Sstevel@tonic-gate 	(void) mutex_unlock(&P->proc_lock);
9740Sstevel@tonic-gate 	(void) mutex_destroy(&P->proc_lock);
9750Sstevel@tonic-gate 
9760Sstevel@tonic-gate 	if (P->agentctlfd >= 0)
9770Sstevel@tonic-gate 		(void) close(P->agentctlfd);
9780Sstevel@tonic-gate 	if (P->agentstatfd >= 0)
9790Sstevel@tonic-gate 		(void) close(P->agentstatfd);
9800Sstevel@tonic-gate 	if (P->ctlfd >= 0)
9810Sstevel@tonic-gate 		(void) close(P->ctlfd);
9820Sstevel@tonic-gate 	if (P->asfd >= 0)
9830Sstevel@tonic-gate 		(void) close(P->asfd);
9840Sstevel@tonic-gate 	if (P->statfd >= 0)
9850Sstevel@tonic-gate 		(void) close(P->statfd);
9860Sstevel@tonic-gate 	Preset_maps(P);
9870Sstevel@tonic-gate 
9880Sstevel@tonic-gate 	/* clear out the structure as a precaution against reuse */
9890Sstevel@tonic-gate 	(void) memset(P, 0, sizeof (*P));
9900Sstevel@tonic-gate 	P->ctlfd = -1;
9910Sstevel@tonic-gate 	P->asfd = -1;
9920Sstevel@tonic-gate 	P->statfd = -1;
9930Sstevel@tonic-gate 	P->agentctlfd = -1;
9940Sstevel@tonic-gate 	P->agentstatfd = -1;
9950Sstevel@tonic-gate 
9960Sstevel@tonic-gate 	free(P);
9970Sstevel@tonic-gate }
9980Sstevel@tonic-gate 
9990Sstevel@tonic-gate /*
10000Sstevel@tonic-gate  * Return the state of the process, one of the PS_* values.
10010Sstevel@tonic-gate  */
10020Sstevel@tonic-gate int
10030Sstevel@tonic-gate Pstate(struct ps_prochandle *P)
10040Sstevel@tonic-gate {
10050Sstevel@tonic-gate 	return (P->state);
10060Sstevel@tonic-gate }
10070Sstevel@tonic-gate 
10080Sstevel@tonic-gate /*
10090Sstevel@tonic-gate  * Return the open address space file descriptor for the process.
10100Sstevel@tonic-gate  * Clients must not close this file descriptor, not use it
10110Sstevel@tonic-gate  * after the process is freed.
10120Sstevel@tonic-gate  */
10130Sstevel@tonic-gate int
10140Sstevel@tonic-gate Pasfd(struct ps_prochandle *P)
10150Sstevel@tonic-gate {
10160Sstevel@tonic-gate 	return (P->asfd);
10170Sstevel@tonic-gate }
10180Sstevel@tonic-gate 
10190Sstevel@tonic-gate /*
10200Sstevel@tonic-gate  * Return the open control file descriptor for the process.
10210Sstevel@tonic-gate  * Clients must not close this file descriptor, not use it
10220Sstevel@tonic-gate  * after the process is freed.
10230Sstevel@tonic-gate  */
10240Sstevel@tonic-gate int
10250Sstevel@tonic-gate Pctlfd(struct ps_prochandle *P)
10260Sstevel@tonic-gate {
10270Sstevel@tonic-gate 	return (P->ctlfd);
10280Sstevel@tonic-gate }
10290Sstevel@tonic-gate 
10300Sstevel@tonic-gate /*
10310Sstevel@tonic-gate  * Return a pointer to the process psinfo structure.
10320Sstevel@tonic-gate  * Clients should not hold on to this pointer indefinitely.
10330Sstevel@tonic-gate  * It will become invalid on Prelease().
10340Sstevel@tonic-gate  */
10350Sstevel@tonic-gate const psinfo_t *
10360Sstevel@tonic-gate Ppsinfo(struct ps_prochandle *P)
10370Sstevel@tonic-gate {
10380Sstevel@tonic-gate 	if (P->state == PS_IDLE) {
10390Sstevel@tonic-gate 		errno = ENODATA;
10400Sstevel@tonic-gate 		return (NULL);
10410Sstevel@tonic-gate 	}
10420Sstevel@tonic-gate 
10430Sstevel@tonic-gate 	if (P->state != PS_DEAD && proc_get_psinfo(P->pid, &P->psinfo) == -1)
10440Sstevel@tonic-gate 		return (NULL);
10450Sstevel@tonic-gate 
10460Sstevel@tonic-gate 	return (&P->psinfo);
10470Sstevel@tonic-gate }
10480Sstevel@tonic-gate 
10490Sstevel@tonic-gate /*
10500Sstevel@tonic-gate  * Return a pointer to the process status structure.
10510Sstevel@tonic-gate  * Clients should not hold on to this pointer indefinitely.
10520Sstevel@tonic-gate  * It will become invalid on Prelease().
10530Sstevel@tonic-gate  */
10540Sstevel@tonic-gate const pstatus_t *
10550Sstevel@tonic-gate Pstatus(struct ps_prochandle *P)
10560Sstevel@tonic-gate {
10570Sstevel@tonic-gate 	return (&P->status);
10580Sstevel@tonic-gate }
10590Sstevel@tonic-gate 
10600Sstevel@tonic-gate /*
10610Sstevel@tonic-gate  * Fill in a pointer to a process credentials structure.  The ngroups parameter
10620Sstevel@tonic-gate  * is the number of supplementary group entries allocated in the caller's cred
10630Sstevel@tonic-gate  * structure.  It should equal zero or one unless extra space has been
10640Sstevel@tonic-gate  * allocated for the group list by the caller.
10650Sstevel@tonic-gate  */
10660Sstevel@tonic-gate int
10670Sstevel@tonic-gate Pcred(struct ps_prochandle *P, prcred_t *pcrp, int ngroups)
10680Sstevel@tonic-gate {
10690Sstevel@tonic-gate 	if (P->state == PS_IDLE) {
10700Sstevel@tonic-gate 		errno = ENODATA;
10710Sstevel@tonic-gate 		return (-1);
10720Sstevel@tonic-gate 	}
10730Sstevel@tonic-gate 
10740Sstevel@tonic-gate 	if (P->state != PS_DEAD)
10750Sstevel@tonic-gate 		return (proc_get_cred(P->pid, pcrp, ngroups));
10760Sstevel@tonic-gate 
10770Sstevel@tonic-gate 	if (P->core->core_cred != NULL) {
10780Sstevel@tonic-gate 		/*
10790Sstevel@tonic-gate 		 * Avoid returning more supplementary group data than the
10800Sstevel@tonic-gate 		 * caller has allocated in their buffer.  We expect them to
10810Sstevel@tonic-gate 		 * check pr_ngroups afterward and potentially call us again.
10820Sstevel@tonic-gate 		 */
10830Sstevel@tonic-gate 		ngroups = MIN(ngroups, P->core->core_cred->pr_ngroups);
10840Sstevel@tonic-gate 
10850Sstevel@tonic-gate 		(void) memcpy(pcrp, P->core->core_cred,
10860Sstevel@tonic-gate 		    sizeof (prcred_t) + (ngroups - 1) * sizeof (gid_t));
10870Sstevel@tonic-gate 
10880Sstevel@tonic-gate 		return (0);
10890Sstevel@tonic-gate 	}
10900Sstevel@tonic-gate 
10910Sstevel@tonic-gate 	errno = ENODATA;
10920Sstevel@tonic-gate 	return (-1);
10930Sstevel@tonic-gate }
10940Sstevel@tonic-gate 
10950Sstevel@tonic-gate #if defined(__i386) || defined(__amd64)
10960Sstevel@tonic-gate /*
10970Sstevel@tonic-gate  * Fill in a pointer to a process LDT structure.
10980Sstevel@tonic-gate  * The caller provides a buffer of size 'nldt * sizeof (struct ssd)';
10990Sstevel@tonic-gate  * If pldt == NULL or nldt == 0, we return the number of existing LDT entries.
11000Sstevel@tonic-gate  * Otherwise we return the actual number of LDT entries fetched (<= nldt).
11010Sstevel@tonic-gate  */
11020Sstevel@tonic-gate int
11030Sstevel@tonic-gate Pldt(struct ps_prochandle *P, struct ssd *pldt, int nldt)
11040Sstevel@tonic-gate {
11050Sstevel@tonic-gate 	if (P->state == PS_IDLE) {
11060Sstevel@tonic-gate 		errno = ENODATA;
11070Sstevel@tonic-gate 		return (-1);
11080Sstevel@tonic-gate 	}
11090Sstevel@tonic-gate 
11100Sstevel@tonic-gate 	if (P->state != PS_DEAD)
11110Sstevel@tonic-gate 		return (proc_get_ldt(P->pid, pldt, nldt));
11120Sstevel@tonic-gate 
11130Sstevel@tonic-gate 	if (pldt == NULL || nldt == 0)
11140Sstevel@tonic-gate 		return (P->core->core_nldt);
11150Sstevel@tonic-gate 
11160Sstevel@tonic-gate 	if (P->core->core_ldt != NULL) {
11170Sstevel@tonic-gate 		nldt = MIN(nldt, P->core->core_nldt);
11180Sstevel@tonic-gate 
11190Sstevel@tonic-gate 		(void) memcpy(pldt, P->core->core_ldt,
11200Sstevel@tonic-gate 		    nldt * sizeof (struct ssd));
11210Sstevel@tonic-gate 
11220Sstevel@tonic-gate 		return (nldt);
11230Sstevel@tonic-gate 	}
11240Sstevel@tonic-gate 
11250Sstevel@tonic-gate 	errno = ENODATA;
11260Sstevel@tonic-gate 	return (-1);
11270Sstevel@tonic-gate }
11280Sstevel@tonic-gate #endif	/* __i386 */
11290Sstevel@tonic-gate 
11300Sstevel@tonic-gate /*
11310Sstevel@tonic-gate  * Fill in a pointer to a process privilege structure.
11320Sstevel@tonic-gate  */
11330Sstevel@tonic-gate ssize_t
11340Sstevel@tonic-gate Ppriv(struct ps_prochandle *P, prpriv_t *pprv, size_t size)
11350Sstevel@tonic-gate {
11360Sstevel@tonic-gate 	if (P->state != PS_DEAD) {
11370Sstevel@tonic-gate 		prpriv_t *pp = proc_get_priv(P->pid);
11380Sstevel@tonic-gate 		if (pp != NULL) {
11390Sstevel@tonic-gate 			size = MIN(size, PRIV_PRPRIV_SIZE(pp));
11400Sstevel@tonic-gate 			(void) memcpy(pprv, pp, size);
11410Sstevel@tonic-gate 			free(pp);
11420Sstevel@tonic-gate 			return (size);
11430Sstevel@tonic-gate 		}
11440Sstevel@tonic-gate 		return (-1);
11450Sstevel@tonic-gate 	}
11460Sstevel@tonic-gate 
11470Sstevel@tonic-gate 	if (P->core->core_priv != NULL) {
11480Sstevel@tonic-gate 		size = MIN(P->core->core_priv_size, size);
11490Sstevel@tonic-gate 		(void) memcpy(pprv, P->core->core_priv, size);
11500Sstevel@tonic-gate 		return (size);
11510Sstevel@tonic-gate 	}
11520Sstevel@tonic-gate 	errno = ENODATA;
11530Sstevel@tonic-gate 	return (-1);
11540Sstevel@tonic-gate }
11550Sstevel@tonic-gate 
11560Sstevel@tonic-gate int
11570Sstevel@tonic-gate Psetpriv(struct ps_prochandle *P, prpriv_t *pprv)
11580Sstevel@tonic-gate {
11590Sstevel@tonic-gate 	int rc;
11600Sstevel@tonic-gate 	long *ctl;
11610Sstevel@tonic-gate 	size_t sz;
11620Sstevel@tonic-gate 
11630Sstevel@tonic-gate 	if (P->state == PS_DEAD) {
11640Sstevel@tonic-gate 		errno = EBADF;
11650Sstevel@tonic-gate 		return (-1);
11660Sstevel@tonic-gate 	}
11670Sstevel@tonic-gate 
11680Sstevel@tonic-gate 	sz = PRIV_PRPRIV_SIZE(pprv) + sizeof (long);
11690Sstevel@tonic-gate 
11700Sstevel@tonic-gate 	sz = ((sz - 1) / sizeof (long) + 1) * sizeof (long);
11710Sstevel@tonic-gate 
11720Sstevel@tonic-gate 	ctl = malloc(sz);
11730Sstevel@tonic-gate 	if (ctl == NULL)
11740Sstevel@tonic-gate 		return (-1);
11750Sstevel@tonic-gate 
11760Sstevel@tonic-gate 	ctl[0] = PCSPRIV;
11770Sstevel@tonic-gate 
11780Sstevel@tonic-gate 	(void) memcpy(&ctl[1], pprv, PRIV_PRPRIV_SIZE(pprv));
11790Sstevel@tonic-gate 
11800Sstevel@tonic-gate 	if (write(P->ctlfd, ctl, sz) != sz)
11810Sstevel@tonic-gate 		rc = -1;
11820Sstevel@tonic-gate 	else
11830Sstevel@tonic-gate 		rc = 0;
11840Sstevel@tonic-gate 
11850Sstevel@tonic-gate 	free(ctl);
11860Sstevel@tonic-gate 
11870Sstevel@tonic-gate 	return (rc);
11880Sstevel@tonic-gate }
11890Sstevel@tonic-gate 
11900Sstevel@tonic-gate void *
11910Sstevel@tonic-gate Pprivinfo(struct ps_prochandle *P)
11920Sstevel@tonic-gate {
11930Sstevel@tonic-gate 	/* Use default from libc */
11940Sstevel@tonic-gate 	if (P->state != PS_DEAD)
11950Sstevel@tonic-gate 		return (NULL);
11960Sstevel@tonic-gate 
11970Sstevel@tonic-gate 	return (P->core->core_privinfo);
11980Sstevel@tonic-gate }
11990Sstevel@tonic-gate 
12000Sstevel@tonic-gate /*
12010Sstevel@tonic-gate  * Ensure that all cached state is written to the process.
12020Sstevel@tonic-gate  * The cached state is the LWP's signal mask and registers
12030Sstevel@tonic-gate  * and the process's tracing flags.
12040Sstevel@tonic-gate  */
12050Sstevel@tonic-gate void
12060Sstevel@tonic-gate Psync(struct ps_prochandle *P)
12070Sstevel@tonic-gate {
12080Sstevel@tonic-gate 	int ctlfd = (P->agentctlfd >= 0)? P->agentctlfd : P->ctlfd;
12090Sstevel@tonic-gate 	long cmd[6];
12100Sstevel@tonic-gate 	iovec_t iov[12];
12110Sstevel@tonic-gate 	int n = 0;
12120Sstevel@tonic-gate 
12130Sstevel@tonic-gate 	if (P->flags & SETHOLD) {
12140Sstevel@tonic-gate 		cmd[0] = PCSHOLD;
12150Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[0];
12160Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
12170Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&P->status.pr_lwp.pr_lwphold;
12180Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (P->status.pr_lwp.pr_lwphold);
12190Sstevel@tonic-gate 	}
12200Sstevel@tonic-gate 	if (P->flags & SETREGS) {
12210Sstevel@tonic-gate 		cmd[1] = PCSREG;
12220Sstevel@tonic-gate #ifdef __i386
12230Sstevel@tonic-gate 		/* XX64 we should probably restore REG_GS after this */
12240Sstevel@tonic-gate 		if (ctlfd == P->agentctlfd)
12250Sstevel@tonic-gate 			P->status.pr_lwp.pr_reg[GS] = 0;
12260Sstevel@tonic-gate #elif defined(__amd64)
12270Sstevel@tonic-gate 		/* XX64 */
12280Sstevel@tonic-gate #endif
12290Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[1];
12300Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
12310Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&P->status.pr_lwp.pr_reg[0];
12320Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (P->status.pr_lwp.pr_reg);
12330Sstevel@tonic-gate 	}
12340Sstevel@tonic-gate 	if (P->flags & SETSIG) {
12350Sstevel@tonic-gate 		cmd[2] = PCSTRACE;
12360Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[2];
12370Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
12380Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&P->status.pr_sigtrace;
12390Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (P->status.pr_sigtrace);
12400Sstevel@tonic-gate 	}
12410Sstevel@tonic-gate 	if (P->flags & SETFAULT) {
12420Sstevel@tonic-gate 		cmd[3] = PCSFAULT;
12430Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[3];
12440Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
12450Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&P->status.pr_flttrace;
12460Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (P->status.pr_flttrace);
12470Sstevel@tonic-gate 	}
12480Sstevel@tonic-gate 	if (P->flags & SETENTRY) {
12490Sstevel@tonic-gate 		cmd[4] = PCSENTRY;
12500Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[4];
12510Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
12520Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&P->status.pr_sysentry;
12530Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (P->status.pr_sysentry);
12540Sstevel@tonic-gate 	}
12550Sstevel@tonic-gate 	if (P->flags & SETEXIT) {
12560Sstevel@tonic-gate 		cmd[5] = PCSEXIT;
12570Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[5];
12580Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
12590Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&P->status.pr_sysexit;
12600Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (P->status.pr_sysexit);
12610Sstevel@tonic-gate 	}
12620Sstevel@tonic-gate 
12630Sstevel@tonic-gate 	if (n == 0 || writev(ctlfd, iov, n) < 0)
12640Sstevel@tonic-gate 		return;		/* nothing to do or write failed */
12650Sstevel@tonic-gate 
12660Sstevel@tonic-gate 	P->flags &= ~(SETSIG|SETFAULT|SETENTRY|SETEXIT|SETHOLD|SETREGS);
12670Sstevel@tonic-gate }
12680Sstevel@tonic-gate 
12690Sstevel@tonic-gate /*
12700Sstevel@tonic-gate  * Reopen the /proc file (after PS_LOST).
12710Sstevel@tonic-gate  */
12720Sstevel@tonic-gate int
12730Sstevel@tonic-gate Preopen(struct ps_prochandle *P)
12740Sstevel@tonic-gate {
12750Sstevel@tonic-gate 	int fd;
1276*2712Snn35248 	char procname[PATH_MAX];
12770Sstevel@tonic-gate 	char *fname;
12780Sstevel@tonic-gate 
12790Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_IDLE)
12800Sstevel@tonic-gate 		return (0);
12810Sstevel@tonic-gate 
12820Sstevel@tonic-gate 	if (P->agentcnt > 0) {
12830Sstevel@tonic-gate 		P->agentcnt = 1;
12840Sstevel@tonic-gate 		Pdestroy_agent(P);
12850Sstevel@tonic-gate 	}
12860Sstevel@tonic-gate 
1287*2712Snn35248 	(void) snprintf(procname, sizeof (procname), "%s/%d/",
1288*2712Snn35248 	    procfs_path, (int)P->pid);
12890Sstevel@tonic-gate 	fname = procname + strlen(procname);
12900Sstevel@tonic-gate 
12910Sstevel@tonic-gate 	(void) strcpy(fname, "as");
12920Sstevel@tonic-gate 	if ((fd = open(procname, O_RDWR)) < 0 ||
12930Sstevel@tonic-gate 	    close(P->asfd) < 0 ||
12940Sstevel@tonic-gate 	    (fd = dupfd(fd, P->asfd)) != P->asfd) {
12950Sstevel@tonic-gate 		dprintf("Preopen: failed to open %s: %s\n",
12960Sstevel@tonic-gate 		    procname, strerror(errno));
12970Sstevel@tonic-gate 		if (fd >= 0)
12980Sstevel@tonic-gate 			(void) close(fd);
12990Sstevel@tonic-gate 		return (-1);
13000Sstevel@tonic-gate 	}
13010Sstevel@tonic-gate 	P->asfd = fd;
13020Sstevel@tonic-gate 
13030Sstevel@tonic-gate 	(void) strcpy(fname, "status");
13040Sstevel@tonic-gate 	if ((fd = open(procname, O_RDONLY)) < 0 ||
13050Sstevel@tonic-gate 	    close(P->statfd) < 0 ||
13060Sstevel@tonic-gate 	    (fd = dupfd(fd, P->statfd)) != P->statfd) {
13070Sstevel@tonic-gate 		dprintf("Preopen: failed to open %s: %s\n",
13080Sstevel@tonic-gate 		    procname, strerror(errno));
13090Sstevel@tonic-gate 		if (fd >= 0)
13100Sstevel@tonic-gate 			(void) close(fd);
13110Sstevel@tonic-gate 		return (-1);
13120Sstevel@tonic-gate 	}
13130Sstevel@tonic-gate 	P->statfd = fd;
13140Sstevel@tonic-gate 
13150Sstevel@tonic-gate 	(void) strcpy(fname, "ctl");
13160Sstevel@tonic-gate 	if ((fd = open(procname, O_WRONLY)) < 0 ||
13170Sstevel@tonic-gate 	    close(P->ctlfd) < 0 ||
13180Sstevel@tonic-gate 	    (fd = dupfd(fd, P->ctlfd)) != P->ctlfd) {
13190Sstevel@tonic-gate 		dprintf("Preopen: failed to open %s: %s\n",
13200Sstevel@tonic-gate 		    procname, strerror(errno));
13210Sstevel@tonic-gate 		if (fd >= 0)
13220Sstevel@tonic-gate 			(void) close(fd);
13230Sstevel@tonic-gate 		return (-1);
13240Sstevel@tonic-gate 	}
13250Sstevel@tonic-gate 	P->ctlfd = fd;
13260Sstevel@tonic-gate 
13270Sstevel@tonic-gate 	/*
13280Sstevel@tonic-gate 	 * Set the state to PS_RUN and wait for the process to stop so that
13290Sstevel@tonic-gate 	 * we re-read the status from the new P->statfd.  If this fails, Pwait
13300Sstevel@tonic-gate 	 * will reset the state to PS_LOST and we fail the reopen.  Before
13310Sstevel@tonic-gate 	 * returning, we also forge a bit of P->status to allow the debugger to
13320Sstevel@tonic-gate 	 * see that we are PS_LOST following a successful exec.
13330Sstevel@tonic-gate 	 */
13340Sstevel@tonic-gate 	P->state = PS_RUN;
13350Sstevel@tonic-gate 	if (Pwait(P, 0) == -1) {
13360Sstevel@tonic-gate #ifdef _ILP32
13370Sstevel@tonic-gate 		if (errno == EOVERFLOW)
13380Sstevel@tonic-gate 			P->status.pr_dmodel = PR_MODEL_LP64;
13390Sstevel@tonic-gate #endif
13400Sstevel@tonic-gate 		P->status.pr_lwp.pr_why = PR_SYSEXIT;
13410Sstevel@tonic-gate 		P->status.pr_lwp.pr_what = SYS_execve;
13420Sstevel@tonic-gate 		P->status.pr_lwp.pr_errno = 0;
13430Sstevel@tonic-gate 		return (-1);
13440Sstevel@tonic-gate 	}
13450Sstevel@tonic-gate 
13460Sstevel@tonic-gate 	/*
13470Sstevel@tonic-gate 	 * The process should be stopped on exec (REQUESTED)
13480Sstevel@tonic-gate 	 * or else should be stopped on exit from exec() (SYSEXIT)
13490Sstevel@tonic-gate 	 */
13500Sstevel@tonic-gate 	if (P->state == PS_STOP &&
13510Sstevel@tonic-gate 	    (P->status.pr_lwp.pr_why == PR_REQUESTED ||
13520Sstevel@tonic-gate 	    (P->status.pr_lwp.pr_why == PR_SYSEXIT &&
13530Sstevel@tonic-gate 	    (P->status.pr_lwp.pr_what == SYS_exec ||
13540Sstevel@tonic-gate 	    P->status.pr_lwp.pr_what == SYS_execve)))) {
13550Sstevel@tonic-gate 		/* fake up stop-on-exit-from-execve */
13560Sstevel@tonic-gate 		if (P->status.pr_lwp.pr_why == PR_REQUESTED) {
13570Sstevel@tonic-gate 			P->status.pr_lwp.pr_why = PR_SYSEXIT;
13580Sstevel@tonic-gate 			P->status.pr_lwp.pr_what = SYS_execve;
13590Sstevel@tonic-gate 			P->status.pr_lwp.pr_errno = 0;
13600Sstevel@tonic-gate 		}
13610Sstevel@tonic-gate 	} else {
13620Sstevel@tonic-gate 		dprintf("Preopen: expected REQUESTED or "
13630Sstevel@tonic-gate 		    "SYSEXIT(SYS_execve) stop\n");
13640Sstevel@tonic-gate 	}
13650Sstevel@tonic-gate 
13660Sstevel@tonic-gate 	return (0);
13670Sstevel@tonic-gate }
13680Sstevel@tonic-gate 
13690Sstevel@tonic-gate /*
13700Sstevel@tonic-gate  * Define all settable flags other than the microstate accounting flags.
13710Sstevel@tonic-gate  */
13720Sstevel@tonic-gate #define	ALL_SETTABLE_FLAGS (PR_FORK|PR_RLC|PR_KLC|PR_ASYNC|PR_BPTADJ|PR_PTRACE)
13730Sstevel@tonic-gate 
13740Sstevel@tonic-gate /*
13750Sstevel@tonic-gate  * Restore /proc tracing flags to their original values
13760Sstevel@tonic-gate  * in preparation for releasing the process.
13770Sstevel@tonic-gate  * Also called by Pcreate() to clear all tracing flags.
13780Sstevel@tonic-gate  */
13790Sstevel@tonic-gate static void
13800Sstevel@tonic-gate restore_tracing_flags(struct ps_prochandle *P)
13810Sstevel@tonic-gate {
13820Sstevel@tonic-gate 	long flags;
13830Sstevel@tonic-gate 	long cmd[4];
13840Sstevel@tonic-gate 	iovec_t iov[8];
13850Sstevel@tonic-gate 
13860Sstevel@tonic-gate 	if (P->flags & CREATED) {
13870Sstevel@tonic-gate 		/* we created this process; clear all tracing flags */
13880Sstevel@tonic-gate 		premptyset(&P->status.pr_sigtrace);
13890Sstevel@tonic-gate 		premptyset(&P->status.pr_flttrace);
13900Sstevel@tonic-gate 		premptyset(&P->status.pr_sysentry);
13910Sstevel@tonic-gate 		premptyset(&P->status.pr_sysexit);
13920Sstevel@tonic-gate 		if ((P->status.pr_flags & ALL_SETTABLE_FLAGS) != 0)
13930Sstevel@tonic-gate 			(void) Punsetflags(P, ALL_SETTABLE_FLAGS);
13940Sstevel@tonic-gate 	} else {
13950Sstevel@tonic-gate 		/* we grabbed the process; restore its tracing flags */
13960Sstevel@tonic-gate 		P->status.pr_sigtrace = P->orig_status.pr_sigtrace;
13970Sstevel@tonic-gate 		P->status.pr_flttrace = P->orig_status.pr_flttrace;
13980Sstevel@tonic-gate 		P->status.pr_sysentry = P->orig_status.pr_sysentry;
13990Sstevel@tonic-gate 		P->status.pr_sysexit  = P->orig_status.pr_sysexit;
14000Sstevel@tonic-gate 		if ((P->status.pr_flags & ALL_SETTABLE_FLAGS) !=
14010Sstevel@tonic-gate 		    (flags = (P->orig_status.pr_flags & ALL_SETTABLE_FLAGS))) {
14020Sstevel@tonic-gate 			(void) Punsetflags(P, ALL_SETTABLE_FLAGS);
14030Sstevel@tonic-gate 			if (flags)
14040Sstevel@tonic-gate 				(void) Psetflags(P, flags);
14050Sstevel@tonic-gate 		}
14060Sstevel@tonic-gate 	}
14070Sstevel@tonic-gate 
14080Sstevel@tonic-gate 	cmd[0] = PCSTRACE;
14090Sstevel@tonic-gate 	iov[0].iov_base = (caddr_t)&cmd[0];
14100Sstevel@tonic-gate 	iov[0].iov_len = sizeof (long);
14110Sstevel@tonic-gate 	iov[1].iov_base = (caddr_t)&P->status.pr_sigtrace;
14120Sstevel@tonic-gate 	iov[1].iov_len = sizeof (P->status.pr_sigtrace);
14130Sstevel@tonic-gate 
14140Sstevel@tonic-gate 	cmd[1] = PCSFAULT;
14150Sstevel@tonic-gate 	iov[2].iov_base = (caddr_t)&cmd[1];
14160Sstevel@tonic-gate 	iov[2].iov_len = sizeof (long);
14170Sstevel@tonic-gate 	iov[3].iov_base = (caddr_t)&P->status.pr_flttrace;
14180Sstevel@tonic-gate 	iov[3].iov_len = sizeof (P->status.pr_flttrace);
14190Sstevel@tonic-gate 
14200Sstevel@tonic-gate 	cmd[2] = PCSENTRY;
14210Sstevel@tonic-gate 	iov[4].iov_base = (caddr_t)&cmd[2];
14220Sstevel@tonic-gate 	iov[4].iov_len = sizeof (long);
14230Sstevel@tonic-gate 	iov[5].iov_base = (caddr_t)&P->status.pr_sysentry;
14240Sstevel@tonic-gate 	iov[5].iov_len = sizeof (P->status.pr_sysentry);
14250Sstevel@tonic-gate 
14260Sstevel@tonic-gate 	cmd[3] = PCSEXIT;
14270Sstevel@tonic-gate 	iov[6].iov_base = (caddr_t)&cmd[3];
14280Sstevel@tonic-gate 	iov[6].iov_len = sizeof (long);
14290Sstevel@tonic-gate 	iov[7].iov_base = (caddr_t)&P->status.pr_sysexit;
14300Sstevel@tonic-gate 	iov[7].iov_len = sizeof (P->status.pr_sysexit);
14310Sstevel@tonic-gate 
14320Sstevel@tonic-gate 	(void) writev(P->ctlfd, iov, 8);
14330Sstevel@tonic-gate 
14340Sstevel@tonic-gate 	P->flags &= ~(SETSIG|SETFAULT|SETENTRY|SETEXIT);
14350Sstevel@tonic-gate }
14360Sstevel@tonic-gate 
14370Sstevel@tonic-gate /*
14380Sstevel@tonic-gate  * Release the process.  Frees the process control structure.
14390Sstevel@tonic-gate  * flags:
14400Sstevel@tonic-gate  *	PRELEASE_CLEAR	Clear all tracing flags.
14410Sstevel@tonic-gate  *	PRELEASE_RETAIN	Retain current tracing flags.
14420Sstevel@tonic-gate  *	PRELEASE_HANG	Leave the process stopped and abandoned.
14430Sstevel@tonic-gate  *	PRELEASE_KILL	Terminate the process with SIGKILL.
14440Sstevel@tonic-gate  */
14450Sstevel@tonic-gate void
14460Sstevel@tonic-gate Prelease(struct ps_prochandle *P, int flags)
14470Sstevel@tonic-gate {
14480Sstevel@tonic-gate 	if (P->state == PS_DEAD) {
14490Sstevel@tonic-gate 		dprintf("Prelease: releasing handle %p PS_DEAD of pid %d\n",
14500Sstevel@tonic-gate 		    (void *)P, (int)P->pid);
14510Sstevel@tonic-gate 		Pfree(P);
14520Sstevel@tonic-gate 		return;
14530Sstevel@tonic-gate 	}
14540Sstevel@tonic-gate 
14550Sstevel@tonic-gate 	if (P->state == PS_IDLE) {
14560Sstevel@tonic-gate 		file_info_t *fptr = list_next(&P->file_head);
14570Sstevel@tonic-gate 		dprintf("Prelease: releasing handle %p PS_IDLE of file %s\n",
14580Sstevel@tonic-gate 		    (void *)P, fptr->file_pname);
14590Sstevel@tonic-gate 		Pfree(P);
14600Sstevel@tonic-gate 		return;
14610Sstevel@tonic-gate 	}
14620Sstevel@tonic-gate 
14630Sstevel@tonic-gate 	dprintf("Prelease: releasing handle %p pid %d\n",
14640Sstevel@tonic-gate 	    (void *)P, (int)P->pid);
14650Sstevel@tonic-gate 
14660Sstevel@tonic-gate 	if (P->ctlfd == -1) {
14670Sstevel@tonic-gate 		Pfree(P);
14680Sstevel@tonic-gate 		return;
14690Sstevel@tonic-gate 	}
14700Sstevel@tonic-gate 
14710Sstevel@tonic-gate 	if (P->agentcnt > 0) {
14720Sstevel@tonic-gate 		P->agentcnt = 1;
14730Sstevel@tonic-gate 		Pdestroy_agent(P);
14740Sstevel@tonic-gate 	}
14750Sstevel@tonic-gate 
14760Sstevel@tonic-gate 	/*
14770Sstevel@tonic-gate 	 * Attempt to stop the process.
14780Sstevel@tonic-gate 	 */
14790Sstevel@tonic-gate 	P->state = PS_RUN;
14800Sstevel@tonic-gate 	(void) Pstop(P, 1000);
14810Sstevel@tonic-gate 
14820Sstevel@tonic-gate 	if (flags & PRELEASE_KILL) {
14830Sstevel@tonic-gate 		if (P->state == PS_STOP)
14840Sstevel@tonic-gate 			(void) Psetrun(P, SIGKILL, 0);
14850Sstevel@tonic-gate 		(void) kill(P->pid, SIGKILL);
14860Sstevel@tonic-gate 		Pfree(P);
14870Sstevel@tonic-gate 		return;
14880Sstevel@tonic-gate 	}
14890Sstevel@tonic-gate 
14900Sstevel@tonic-gate 	/*
14910Sstevel@tonic-gate 	 * If we lost control, all we can do now is close the files.
14920Sstevel@tonic-gate 	 * In this case, the last close sets the process running.
14930Sstevel@tonic-gate 	 */
14940Sstevel@tonic-gate 	if (P->state != PS_STOP &&
14950Sstevel@tonic-gate 	    (P->status.pr_lwp.pr_flags & (PR_ISTOP|PR_DSTOP)) == 0) {
14960Sstevel@tonic-gate 		Pfree(P);
14970Sstevel@tonic-gate 		return;
14980Sstevel@tonic-gate 	}
14990Sstevel@tonic-gate 
15000Sstevel@tonic-gate 	/*
15010Sstevel@tonic-gate 	 * We didn't lose control; we do more.
15020Sstevel@tonic-gate 	 */
15030Sstevel@tonic-gate 	Psync(P);
15040Sstevel@tonic-gate 
15050Sstevel@tonic-gate 	if (flags & PRELEASE_CLEAR)
15060Sstevel@tonic-gate 		P->flags |= CREATED;
15070Sstevel@tonic-gate 
15080Sstevel@tonic-gate 	if (!(flags & PRELEASE_RETAIN))
15090Sstevel@tonic-gate 		restore_tracing_flags(P);
15100Sstevel@tonic-gate 
15110Sstevel@tonic-gate 	if (flags & PRELEASE_HANG) {
15120Sstevel@tonic-gate 		/* Leave the process stopped and abandoned */
15130Sstevel@tonic-gate 		(void) Punsetflags(P, PR_RLC|PR_KLC);
15140Sstevel@tonic-gate 		Pfree(P);
15150Sstevel@tonic-gate 		return;
15160Sstevel@tonic-gate 	}
15170Sstevel@tonic-gate 
15180Sstevel@tonic-gate 	/*
15190Sstevel@tonic-gate 	 * Set the process running if we created it or if it was
15200Sstevel@tonic-gate 	 * not originally stopped or directed to stop via /proc
15210Sstevel@tonic-gate 	 * or if we were given the PRELEASE_CLEAR flag.
15220Sstevel@tonic-gate 	 */
15230Sstevel@tonic-gate 	if ((P->flags & CREATED) ||
15240Sstevel@tonic-gate 	    (P->orig_status.pr_lwp.pr_flags & (PR_ISTOP|PR_DSTOP)) == 0) {
15250Sstevel@tonic-gate 		(void) Psetflags(P, PR_RLC);
15260Sstevel@tonic-gate 		/*
15270Sstevel@tonic-gate 		 * We do this repeatedly because the process may have
15280Sstevel@tonic-gate 		 * more than one LWP stopped on an event of interest.
15290Sstevel@tonic-gate 		 * This makes sure all of them are set running.
15300Sstevel@tonic-gate 		 */
15310Sstevel@tonic-gate 		do {
15320Sstevel@tonic-gate 			if (Psetrun(P, 0, 0) == -1 && errno == EBUSY)
15330Sstevel@tonic-gate 				break; /* Agent LWP may be stuck */
15340Sstevel@tonic-gate 		} while (Pstopstatus(P, PCNULL, 0) == 0 &&
15350Sstevel@tonic-gate 		    P->status.pr_lwp.pr_flags & (PR_ISTOP|PR_DSTOP));
15360Sstevel@tonic-gate 
15370Sstevel@tonic-gate 		if (P->status.pr_lwp.pr_flags & (PR_ISTOP|PR_DSTOP))
15380Sstevel@tonic-gate 			dprintf("Prelease: failed to set process running\n");
15390Sstevel@tonic-gate 	}
15400Sstevel@tonic-gate 
15410Sstevel@tonic-gate 	Pfree(P);
15420Sstevel@tonic-gate }
15430Sstevel@tonic-gate 
15440Sstevel@tonic-gate /* debugging */
15450Sstevel@tonic-gate void
15460Sstevel@tonic-gate prldump(const char *caller, lwpstatus_t *lsp)
15470Sstevel@tonic-gate {
15480Sstevel@tonic-gate 	char name[32];
15490Sstevel@tonic-gate 	uint32_t bits;
15500Sstevel@tonic-gate 
15510Sstevel@tonic-gate 	switch (lsp->pr_why) {
15520Sstevel@tonic-gate 	case PR_REQUESTED:
15530Sstevel@tonic-gate 		dprintf("%s: REQUESTED\n", caller);
15540Sstevel@tonic-gate 		break;
15550Sstevel@tonic-gate 	case PR_SIGNALLED:
15560Sstevel@tonic-gate 		dprintf("%s: SIGNALLED %s\n", caller,
15570Sstevel@tonic-gate 			proc_signame(lsp->pr_what, name, sizeof (name)));
15580Sstevel@tonic-gate 		break;
15590Sstevel@tonic-gate 	case PR_FAULTED:
15600Sstevel@tonic-gate 		dprintf("%s: FAULTED %s\n", caller,
15610Sstevel@tonic-gate 			proc_fltname(lsp->pr_what, name, sizeof (name)));
15620Sstevel@tonic-gate 		break;
15630Sstevel@tonic-gate 	case PR_SYSENTRY:
15640Sstevel@tonic-gate 		dprintf("%s: SYSENTRY %s\n", caller,
15650Sstevel@tonic-gate 			proc_sysname(lsp->pr_what, name, sizeof (name)));
15660Sstevel@tonic-gate 		break;
15670Sstevel@tonic-gate 	case PR_SYSEXIT:
15680Sstevel@tonic-gate 		dprintf("%s: SYSEXIT %s\n", caller,
15690Sstevel@tonic-gate 			proc_sysname(lsp->pr_what, name, sizeof (name)));
15700Sstevel@tonic-gate 		break;
15710Sstevel@tonic-gate 	case PR_JOBCONTROL:
15720Sstevel@tonic-gate 		dprintf("%s: JOBCONTROL %s\n", caller,
15730Sstevel@tonic-gate 			proc_signame(lsp->pr_what, name, sizeof (name)));
15740Sstevel@tonic-gate 		break;
15750Sstevel@tonic-gate 	case PR_SUSPENDED:
15760Sstevel@tonic-gate 		dprintf("%s: SUSPENDED\n", caller);
15770Sstevel@tonic-gate 		break;
15780Sstevel@tonic-gate 	default:
15790Sstevel@tonic-gate 		dprintf("%s: Unknown\n", caller);
15800Sstevel@tonic-gate 		break;
15810Sstevel@tonic-gate 	}
15820Sstevel@tonic-gate 
15830Sstevel@tonic-gate 	if (lsp->pr_cursig)
15840Sstevel@tonic-gate 		dprintf("%s: p_cursig  = %d\n", caller, lsp->pr_cursig);
15850Sstevel@tonic-gate 
15860Sstevel@tonic-gate 	bits = *((uint32_t *)&lsp->pr_lwppend);
15870Sstevel@tonic-gate 	if (bits)
15880Sstevel@tonic-gate 		dprintf("%s: pr_lwppend = 0x%.8X\n", caller, bits);
15890Sstevel@tonic-gate }
15900Sstevel@tonic-gate 
15910Sstevel@tonic-gate /* debugging */
15920Sstevel@tonic-gate static void
15930Sstevel@tonic-gate prdump(struct ps_prochandle *P)
15940Sstevel@tonic-gate {
15950Sstevel@tonic-gate 	uint32_t bits;
15960Sstevel@tonic-gate 
15970Sstevel@tonic-gate 	prldump("Pstopstatus", &P->status.pr_lwp);
15980Sstevel@tonic-gate 
15990Sstevel@tonic-gate 	bits = *((uint32_t *)&P->status.pr_sigpend);
16000Sstevel@tonic-gate 	if (bits)
16010Sstevel@tonic-gate 		dprintf("Pstopstatus: pr_sigpend = 0x%.8X\n", bits);
16020Sstevel@tonic-gate }
16030Sstevel@tonic-gate 
16040Sstevel@tonic-gate /*
16050Sstevel@tonic-gate  * Wait for the specified process to stop or terminate.
16060Sstevel@tonic-gate  * Or, just get the current status (PCNULL).
16070Sstevel@tonic-gate  * Or, direct it to stop and get the current status (PCDSTOP).
16080Sstevel@tonic-gate  * If the agent LWP exists, do these things to the agent,
16090Sstevel@tonic-gate  * else do these things to the process as a whole.
16100Sstevel@tonic-gate  */
16110Sstevel@tonic-gate int
16120Sstevel@tonic-gate Pstopstatus(struct ps_prochandle *P,
16130Sstevel@tonic-gate 	long request,		/* PCNULL, PCDSTOP, PCSTOP, PCWSTOP */
16140Sstevel@tonic-gate 	uint_t msec)		/* if non-zero, timeout in milliseconds */
16150Sstevel@tonic-gate {
16160Sstevel@tonic-gate 	int ctlfd = (P->agentctlfd >= 0)? P->agentctlfd : P->ctlfd;
16170Sstevel@tonic-gate 	long ctl[3];
16180Sstevel@tonic-gate 	ssize_t rc;
16190Sstevel@tonic-gate 	int err;
16200Sstevel@tonic-gate 	int old_state = P->state;
16210Sstevel@tonic-gate 
16220Sstevel@tonic-gate 	switch (P->state) {
16230Sstevel@tonic-gate 	case PS_RUN:
16240Sstevel@tonic-gate 		break;
16250Sstevel@tonic-gate 	case PS_STOP:
16260Sstevel@tonic-gate 		if (request != PCNULL && request != PCDSTOP)
16270Sstevel@tonic-gate 			return (0);
16280Sstevel@tonic-gate 		break;
16290Sstevel@tonic-gate 	case PS_LOST:
16300Sstevel@tonic-gate 		if (request != PCNULL) {
16310Sstevel@tonic-gate 			errno = EAGAIN;
16320Sstevel@tonic-gate 			return (-1);
16330Sstevel@tonic-gate 		}
16340Sstevel@tonic-gate 		break;
16350Sstevel@tonic-gate 	case PS_UNDEAD:
16360Sstevel@tonic-gate 	case PS_DEAD:
16370Sstevel@tonic-gate 	case PS_IDLE:
16380Sstevel@tonic-gate 		if (request != PCNULL) {
16390Sstevel@tonic-gate 			errno = ENOENT;
16400Sstevel@tonic-gate 			return (-1);
16410Sstevel@tonic-gate 		}
16420Sstevel@tonic-gate 		break;
16430Sstevel@tonic-gate 	default:	/* corrupted state */
16440Sstevel@tonic-gate 		dprintf("Pstopstatus: corrupted state: %d\n", P->state);
16450Sstevel@tonic-gate 		errno = EINVAL;
16460Sstevel@tonic-gate 		return (-1);
16470Sstevel@tonic-gate 	}
16480Sstevel@tonic-gate 
16490Sstevel@tonic-gate 	ctl[0] = PCDSTOP;
16500Sstevel@tonic-gate 	ctl[1] = PCTWSTOP;
16510Sstevel@tonic-gate 	ctl[2] = (long)msec;
16520Sstevel@tonic-gate 	rc = 0;
16530Sstevel@tonic-gate 	switch (request) {
16540Sstevel@tonic-gate 	case PCSTOP:
16550Sstevel@tonic-gate 		rc = write(ctlfd, &ctl[0], 3*sizeof (long));
16560Sstevel@tonic-gate 		break;
16570Sstevel@tonic-gate 	case PCWSTOP:
16580Sstevel@tonic-gate 		rc = write(ctlfd, &ctl[1], 2*sizeof (long));
16590Sstevel@tonic-gate 		break;
16600Sstevel@tonic-gate 	case PCDSTOP:
16610Sstevel@tonic-gate 		rc = write(ctlfd, &ctl[0], 1*sizeof (long));
16620Sstevel@tonic-gate 		break;
16630Sstevel@tonic-gate 	case PCNULL:
16640Sstevel@tonic-gate 		if (P->state == PS_DEAD || P->state == PS_IDLE)
16650Sstevel@tonic-gate 			return (0);
16660Sstevel@tonic-gate 		break;
16670Sstevel@tonic-gate 	default:	/* programming error */
16680Sstevel@tonic-gate 		errno = EINVAL;
16690Sstevel@tonic-gate 		return (-1);
16700Sstevel@tonic-gate 	}
16710Sstevel@tonic-gate 	err = (rc < 0)? errno : 0;
16720Sstevel@tonic-gate 	Psync(P);
16730Sstevel@tonic-gate 
16740Sstevel@tonic-gate 	if (P->agentstatfd < 0) {
16750Sstevel@tonic-gate 		if (pread(P->statfd, &P->status,
16760Sstevel@tonic-gate 		    sizeof (P->status), (off_t)0) < 0)
16770Sstevel@tonic-gate 			err = errno;
16780Sstevel@tonic-gate 	} else {
16790Sstevel@tonic-gate 		if (pread(P->agentstatfd, &P->status.pr_lwp,
16800Sstevel@tonic-gate 		    sizeof (P->status.pr_lwp), (off_t)0) < 0)
16810Sstevel@tonic-gate 			err = errno;
16820Sstevel@tonic-gate 		P->status.pr_flags = P->status.pr_lwp.pr_flags;
16830Sstevel@tonic-gate 	}
16840Sstevel@tonic-gate 
16850Sstevel@tonic-gate 	if (err) {
16860Sstevel@tonic-gate 		switch (err) {
16870Sstevel@tonic-gate 		case EINTR:		/* user typed ctl-C */
16880Sstevel@tonic-gate 		case ERESTART:
16890Sstevel@tonic-gate 			dprintf("Pstopstatus: EINTR\n");
16900Sstevel@tonic-gate 			break;
16910Sstevel@tonic-gate 		case EAGAIN:		/* we lost control of the the process */
16920Sstevel@tonic-gate 		case EOVERFLOW:
16930Sstevel@tonic-gate 			dprintf("Pstopstatus: PS_LOST, errno=%d\n", err);
16940Sstevel@tonic-gate 			P->state = PS_LOST;
16950Sstevel@tonic-gate 			break;
16960Sstevel@tonic-gate 		default:		/* check for dead process */
16970Sstevel@tonic-gate 			if (_libproc_debug) {
16980Sstevel@tonic-gate 				const char *errstr;
16990Sstevel@tonic-gate 
17000Sstevel@tonic-gate 				switch (request) {
17010Sstevel@tonic-gate 				case PCNULL:
17020Sstevel@tonic-gate 					errstr = "Pstopstatus PCNULL"; break;
17030Sstevel@tonic-gate 				case PCSTOP:
17040Sstevel@tonic-gate 					errstr = "Pstopstatus PCSTOP"; break;
17050Sstevel@tonic-gate 				case PCDSTOP:
17060Sstevel@tonic-gate 					errstr = "Pstopstatus PCDSTOP"; break;
17070Sstevel@tonic-gate 				case PCWSTOP:
17080Sstevel@tonic-gate 					errstr = "Pstopstatus PCWSTOP"; break;
17090Sstevel@tonic-gate 				default:
17100Sstevel@tonic-gate 					errstr = "Pstopstatus PC???"; break;
17110Sstevel@tonic-gate 				}
17120Sstevel@tonic-gate 				dprintf("%s: %s\n", errstr, strerror(err));
17130Sstevel@tonic-gate 			}
17140Sstevel@tonic-gate 			deadcheck(P);
17150Sstevel@tonic-gate 			break;
17160Sstevel@tonic-gate 		}
17170Sstevel@tonic-gate 		if (err != EINTR && err != ERESTART) {
17180Sstevel@tonic-gate 			errno = err;
17190Sstevel@tonic-gate 			return (-1);
17200Sstevel@tonic-gate 		}
17210Sstevel@tonic-gate 	}
17220Sstevel@tonic-gate 
17230Sstevel@tonic-gate 	if (!(P->status.pr_flags & PR_STOPPED)) {
17240Sstevel@tonic-gate 		P->state = PS_RUN;
17250Sstevel@tonic-gate 		if (request == PCNULL || request == PCDSTOP || msec != 0)
17260Sstevel@tonic-gate 			return (0);
17270Sstevel@tonic-gate 		dprintf("Pstopstatus: process is not stopped\n");
17280Sstevel@tonic-gate 		errno = EPROTO;
17290Sstevel@tonic-gate 		return (-1);
17300Sstevel@tonic-gate 	}
17310Sstevel@tonic-gate 
17320Sstevel@tonic-gate 	P->state = PS_STOP;
17330Sstevel@tonic-gate 
17340Sstevel@tonic-gate 	if (_libproc_debug)	/* debugging */
17350Sstevel@tonic-gate 		prdump(P);
17360Sstevel@tonic-gate 
17370Sstevel@tonic-gate 	/*
17380Sstevel@tonic-gate 	 * If the process was already stopped coming into Pstopstatus(),
17390Sstevel@tonic-gate 	 * then don't use its PC to set P->sysaddr since it may have been
17400Sstevel@tonic-gate 	 * changed since the time the process originally stopped.
17410Sstevel@tonic-gate 	 */
17420Sstevel@tonic-gate 	if (old_state == PS_STOP)
17430Sstevel@tonic-gate 		return (0);
17440Sstevel@tonic-gate 
17450Sstevel@tonic-gate 	switch (P->status.pr_lwp.pr_why) {
17460Sstevel@tonic-gate 	case PR_SYSENTRY:
17470Sstevel@tonic-gate 	case PR_SYSEXIT:
17480Sstevel@tonic-gate 		if (Pissyscall_prev(P, P->status.pr_lwp.pr_reg[R_PC],
17490Sstevel@tonic-gate 		    &P->sysaddr) == 0)
17500Sstevel@tonic-gate 			P->sysaddr = P->status.pr_lwp.pr_reg[R_PC];
17510Sstevel@tonic-gate 		break;
17520Sstevel@tonic-gate 	case PR_REQUESTED:
17530Sstevel@tonic-gate 	case PR_SIGNALLED:
17540Sstevel@tonic-gate 	case PR_FAULTED:
17550Sstevel@tonic-gate 	case PR_JOBCONTROL:
17560Sstevel@tonic-gate 	case PR_SUSPENDED:
17570Sstevel@tonic-gate 		break;
17580Sstevel@tonic-gate 	default:
17590Sstevel@tonic-gate 		errno = EPROTO;
17600Sstevel@tonic-gate 		return (-1);
17610Sstevel@tonic-gate 	}
17620Sstevel@tonic-gate 
17630Sstevel@tonic-gate 	return (0);
17640Sstevel@tonic-gate }
17650Sstevel@tonic-gate 
17660Sstevel@tonic-gate /*
17670Sstevel@tonic-gate  * Wait for the process to stop for any reason.
17680Sstevel@tonic-gate  */
17690Sstevel@tonic-gate int
17700Sstevel@tonic-gate Pwait(struct ps_prochandle *P, uint_t msec)
17710Sstevel@tonic-gate {
17720Sstevel@tonic-gate 	return (Pstopstatus(P, PCWSTOP, msec));
17730Sstevel@tonic-gate }
17740Sstevel@tonic-gate 
17750Sstevel@tonic-gate /*
17760Sstevel@tonic-gate  * Direct the process to stop; wait for it to stop.
17770Sstevel@tonic-gate  */
17780Sstevel@tonic-gate int
17790Sstevel@tonic-gate Pstop(struct ps_prochandle *P, uint_t msec)
17800Sstevel@tonic-gate {
17810Sstevel@tonic-gate 	return (Pstopstatus(P, PCSTOP, msec));
17820Sstevel@tonic-gate }
17830Sstevel@tonic-gate 
17840Sstevel@tonic-gate /*
17850Sstevel@tonic-gate  * Direct the process to stop; don't wait.
17860Sstevel@tonic-gate  */
17870Sstevel@tonic-gate int
17880Sstevel@tonic-gate Pdstop(struct ps_prochandle *P)
17890Sstevel@tonic-gate {
17900Sstevel@tonic-gate 	return (Pstopstatus(P, PCDSTOP, 0));
17910Sstevel@tonic-gate }
17920Sstevel@tonic-gate 
17930Sstevel@tonic-gate static void
17940Sstevel@tonic-gate deadcheck(struct ps_prochandle *P)
17950Sstevel@tonic-gate {
17960Sstevel@tonic-gate 	int fd;
17970Sstevel@tonic-gate 	void *buf;
17980Sstevel@tonic-gate 	size_t size;
17990Sstevel@tonic-gate 
18000Sstevel@tonic-gate 	if (P->statfd < 0)
18010Sstevel@tonic-gate 		P->state = PS_UNDEAD;
18020Sstevel@tonic-gate 	else {
18030Sstevel@tonic-gate 		if (P->agentstatfd < 0) {
18040Sstevel@tonic-gate 			fd = P->statfd;
18050Sstevel@tonic-gate 			buf = &P->status;
18060Sstevel@tonic-gate 			size = sizeof (P->status);
18070Sstevel@tonic-gate 		} else {
18080Sstevel@tonic-gate 			fd = P->agentstatfd;
18090Sstevel@tonic-gate 			buf = &P->status.pr_lwp;
18100Sstevel@tonic-gate 			size = sizeof (P->status.pr_lwp);
18110Sstevel@tonic-gate 		}
18120Sstevel@tonic-gate 		while (pread(fd, buf, size, (off_t)0) != size) {
18130Sstevel@tonic-gate 			switch (errno) {
18140Sstevel@tonic-gate 			default:
18150Sstevel@tonic-gate 				P->state = PS_UNDEAD;
18160Sstevel@tonic-gate 				break;
18170Sstevel@tonic-gate 			case EINTR:
18180Sstevel@tonic-gate 			case ERESTART:
18190Sstevel@tonic-gate 				continue;
18200Sstevel@tonic-gate 			case EAGAIN:
18210Sstevel@tonic-gate 				P->state = PS_LOST;
18220Sstevel@tonic-gate 				break;
18230Sstevel@tonic-gate 			}
18240Sstevel@tonic-gate 			break;
18250Sstevel@tonic-gate 		}
18260Sstevel@tonic-gate 		P->status.pr_flags = P->status.pr_lwp.pr_flags;
18270Sstevel@tonic-gate 	}
18280Sstevel@tonic-gate }
18290Sstevel@tonic-gate 
18300Sstevel@tonic-gate /*
18310Sstevel@tonic-gate  * Get the value of one register from stopped process.
18320Sstevel@tonic-gate  */
18330Sstevel@tonic-gate int
18340Sstevel@tonic-gate Pgetareg(struct ps_prochandle *P, int regno, prgreg_t *preg)
18350Sstevel@tonic-gate {
18360Sstevel@tonic-gate 	if (regno < 0 || regno >= NPRGREG) {
18370Sstevel@tonic-gate 		errno = EINVAL;
18380Sstevel@tonic-gate 		return (-1);
18390Sstevel@tonic-gate 	}
18400Sstevel@tonic-gate 
18410Sstevel@tonic-gate 	if (P->state == PS_IDLE) {
18420Sstevel@tonic-gate 		errno = ENODATA;
18430Sstevel@tonic-gate 		return (-1);
18440Sstevel@tonic-gate 	}
18450Sstevel@tonic-gate 
18460Sstevel@tonic-gate 	if (P->state != PS_STOP && P->state != PS_DEAD) {
18470Sstevel@tonic-gate 		errno = EBUSY;
18480Sstevel@tonic-gate 		return (-1);
18490Sstevel@tonic-gate 	}
18500Sstevel@tonic-gate 
18510Sstevel@tonic-gate 	*preg = P->status.pr_lwp.pr_reg[regno];
18520Sstevel@tonic-gate 	return (0);
18530Sstevel@tonic-gate }
18540Sstevel@tonic-gate 
18550Sstevel@tonic-gate /*
18560Sstevel@tonic-gate  * Put value of one register into stopped process.
18570Sstevel@tonic-gate  */
18580Sstevel@tonic-gate int
18590Sstevel@tonic-gate Pputareg(struct ps_prochandle *P, int regno, prgreg_t reg)
18600Sstevel@tonic-gate {
18610Sstevel@tonic-gate 	if (regno < 0 || regno >= NPRGREG) {
18620Sstevel@tonic-gate 		errno = EINVAL;
18630Sstevel@tonic-gate 		return (-1);
18640Sstevel@tonic-gate 	}
18650Sstevel@tonic-gate 
18660Sstevel@tonic-gate 	if (P->state != PS_STOP) {
18670Sstevel@tonic-gate 		errno = EBUSY;
18680Sstevel@tonic-gate 		return (-1);
18690Sstevel@tonic-gate 	}
18700Sstevel@tonic-gate 
18710Sstevel@tonic-gate 	P->status.pr_lwp.pr_reg[regno] = reg;
18720Sstevel@tonic-gate 	P->flags |= SETREGS;	/* set registers before continuing */
18730Sstevel@tonic-gate 	return (0);
18740Sstevel@tonic-gate }
18750Sstevel@tonic-gate 
18760Sstevel@tonic-gate int
18770Sstevel@tonic-gate Psetrun(struct ps_prochandle *P,
18780Sstevel@tonic-gate 	int sig,	/* signal to pass to process */
18790Sstevel@tonic-gate 	int flags)	/* PRSTEP|PRSABORT|PRSTOP|PRCSIG|PRCFAULT */
18800Sstevel@tonic-gate {
18810Sstevel@tonic-gate 	int ctlfd = (P->agentctlfd >= 0) ? P->agentctlfd : P->ctlfd;
18820Sstevel@tonic-gate 	int sbits = (PR_DSTOP | PR_ISTOP | PR_ASLEEP);
18830Sstevel@tonic-gate 
18840Sstevel@tonic-gate 	long ctl[1 +					/* PCCFAULT	*/
18850Sstevel@tonic-gate 		1 + sizeof (siginfo_t)/sizeof (long) +	/* PCSSIG/PCCSIG */
18860Sstevel@tonic-gate 		2 ];					/* PCRUN	*/
18870Sstevel@tonic-gate 
18880Sstevel@tonic-gate 	long *ctlp = ctl;
18890Sstevel@tonic-gate 	size_t size;
18900Sstevel@tonic-gate 
18910Sstevel@tonic-gate 	if (P->state != PS_STOP && (P->status.pr_lwp.pr_flags & sbits) == 0) {
18920Sstevel@tonic-gate 		errno = EBUSY;
18930Sstevel@tonic-gate 		return (-1);
18940Sstevel@tonic-gate 	}
18950Sstevel@tonic-gate 
18960Sstevel@tonic-gate 	Psync(P);	/* flush tracing flags and registers */
18970Sstevel@tonic-gate 
18980Sstevel@tonic-gate 	if (flags & PRCFAULT) {		/* clear current fault */
18990Sstevel@tonic-gate 		*ctlp++ = PCCFAULT;
19000Sstevel@tonic-gate 		flags &= ~PRCFAULT;
19010Sstevel@tonic-gate 	}
19020Sstevel@tonic-gate 
19030Sstevel@tonic-gate 	if (flags & PRCSIG) {		/* clear current signal */
19040Sstevel@tonic-gate 		*ctlp++ = PCCSIG;
19050Sstevel@tonic-gate 		flags &= ~PRCSIG;
19060Sstevel@tonic-gate 	} else if (sig && sig != P->status.pr_lwp.pr_cursig) {
19070Sstevel@tonic-gate 		/* make current signal */
19080Sstevel@tonic-gate 		siginfo_t *infop;
19090Sstevel@tonic-gate 
19100Sstevel@tonic-gate 		*ctlp++ = PCSSIG;
19110Sstevel@tonic-gate 		infop = (siginfo_t *)ctlp;
19120Sstevel@tonic-gate 		(void) memset(infop, 0, sizeof (*infop));
19130Sstevel@tonic-gate 		infop->si_signo = sig;
19140Sstevel@tonic-gate 		ctlp += sizeof (siginfo_t) / sizeof (long);
19150Sstevel@tonic-gate 	}
19160Sstevel@tonic-gate 
19170Sstevel@tonic-gate 	*ctlp++ = PCRUN;
19180Sstevel@tonic-gate 	*ctlp++ = flags;
19190Sstevel@tonic-gate 	size = (char *)ctlp - (char *)ctl;
19200Sstevel@tonic-gate 
19210Sstevel@tonic-gate 	P->info_valid = 0;	/* will need to update map and file info */
19220Sstevel@tonic-gate 
19230Sstevel@tonic-gate 	/*
19240Sstevel@tonic-gate 	 * If we've cached ucontext-list information while we were stopped,
19250Sstevel@tonic-gate 	 * free it now.
19260Sstevel@tonic-gate 	 */
19270Sstevel@tonic-gate 	if (P->ucaddrs != NULL) {
19280Sstevel@tonic-gate 		free(P->ucaddrs);
19290Sstevel@tonic-gate 		P->ucaddrs = NULL;
19300Sstevel@tonic-gate 		P->ucnelems = 0;
19310Sstevel@tonic-gate 	}
19320Sstevel@tonic-gate 
19330Sstevel@tonic-gate 	if (write(ctlfd, ctl, size) != size) {
19340Sstevel@tonic-gate 		/* If it is dead or lost, return the real status, not PS_RUN */
19350Sstevel@tonic-gate 		if (errno == ENOENT || errno == EAGAIN) {
19360Sstevel@tonic-gate 			(void) Pstopstatus(P, PCNULL, 0);
19370Sstevel@tonic-gate 			return (0);
19380Sstevel@tonic-gate 		}
19390Sstevel@tonic-gate 		/* If it is not in a jobcontrol stop, issue an error message */
19400Sstevel@tonic-gate 		if (errno != EBUSY ||
19410Sstevel@tonic-gate 		    P->status.pr_lwp.pr_why != PR_JOBCONTROL) {
19420Sstevel@tonic-gate 			dprintf("Psetrun: %s\n", strerror(errno));
19430Sstevel@tonic-gate 			return (-1);
19440Sstevel@tonic-gate 		}
19450Sstevel@tonic-gate 		/* Otherwise pretend that the job-stopped process is running */
19460Sstevel@tonic-gate 	}
19470Sstevel@tonic-gate 
19480Sstevel@tonic-gate 	P->state = PS_RUN;
19490Sstevel@tonic-gate 	return (0);
19500Sstevel@tonic-gate }
19510Sstevel@tonic-gate 
19520Sstevel@tonic-gate ssize_t
19530Sstevel@tonic-gate Pread(struct ps_prochandle *P,
19540Sstevel@tonic-gate 	void *buf,		/* caller's buffer */
19550Sstevel@tonic-gate 	size_t nbyte,		/* number of bytes to read */
19560Sstevel@tonic-gate 	uintptr_t address)	/* address in process */
19570Sstevel@tonic-gate {
19580Sstevel@tonic-gate 	return (P->ops->p_pread(P, buf, nbyte, address));
19590Sstevel@tonic-gate }
19600Sstevel@tonic-gate 
19610Sstevel@tonic-gate ssize_t
19620Sstevel@tonic-gate Pread_string(struct ps_prochandle *P,
19630Sstevel@tonic-gate 	char *buf, 		/* caller's buffer */
19640Sstevel@tonic-gate 	size_t size,		/* upper limit on bytes to read */
19650Sstevel@tonic-gate 	uintptr_t addr)		/* address in process */
19660Sstevel@tonic-gate {
19670Sstevel@tonic-gate 	enum { STRSZ = 40 };
19680Sstevel@tonic-gate 	char string[STRSZ + 1];
19690Sstevel@tonic-gate 	ssize_t leng = 0;
19700Sstevel@tonic-gate 	int nbyte;
19710Sstevel@tonic-gate 
19720Sstevel@tonic-gate 	if (size < 2) {
19730Sstevel@tonic-gate 		errno = EINVAL;
19740Sstevel@tonic-gate 		return (-1);
19750Sstevel@tonic-gate 	}
19760Sstevel@tonic-gate 
19770Sstevel@tonic-gate 	size--;			/* ensure trailing null fits in buffer */
19780Sstevel@tonic-gate 
19790Sstevel@tonic-gate 	*buf = '\0';
19800Sstevel@tonic-gate 	string[STRSZ] = '\0';
19810Sstevel@tonic-gate 
19820Sstevel@tonic-gate 	for (nbyte = STRSZ; nbyte == STRSZ && leng < size; addr += STRSZ) {
19830Sstevel@tonic-gate 		if ((nbyte = P->ops->p_pread(P, string, STRSZ, addr)) <= 0) {
19840Sstevel@tonic-gate 			buf[leng] = '\0';
19850Sstevel@tonic-gate 			return (leng ? leng : -1);
19860Sstevel@tonic-gate 		}
19870Sstevel@tonic-gate 		if ((nbyte = strlen(string)) > 0) {
19880Sstevel@tonic-gate 			if (leng + nbyte > size)
19890Sstevel@tonic-gate 				nbyte = size - leng;
19900Sstevel@tonic-gate 			(void) strncpy(buf + leng, string, nbyte);
19910Sstevel@tonic-gate 			leng += nbyte;
19920Sstevel@tonic-gate 		}
19930Sstevel@tonic-gate 	}
19940Sstevel@tonic-gate 	buf[leng] = '\0';
19950Sstevel@tonic-gate 	return (leng);
19960Sstevel@tonic-gate }
19970Sstevel@tonic-gate 
19980Sstevel@tonic-gate ssize_t
19990Sstevel@tonic-gate Pwrite(struct ps_prochandle *P,
20000Sstevel@tonic-gate 	const void *buf,	/* caller's buffer */
20010Sstevel@tonic-gate 	size_t nbyte,		/* number of bytes to write */
20020Sstevel@tonic-gate 	uintptr_t address)	/* address in process */
20030Sstevel@tonic-gate {
20040Sstevel@tonic-gate 	return (P->ops->p_pwrite(P, buf, nbyte, address));
20050Sstevel@tonic-gate }
20060Sstevel@tonic-gate 
20070Sstevel@tonic-gate int
20080Sstevel@tonic-gate Pclearsig(struct ps_prochandle *P)
20090Sstevel@tonic-gate {
20100Sstevel@tonic-gate 	int ctlfd = (P->agentctlfd >= 0)? P->agentctlfd : P->ctlfd;
20110Sstevel@tonic-gate 	long ctl = PCCSIG;
20120Sstevel@tonic-gate 
20130Sstevel@tonic-gate 	if (write(ctlfd, &ctl, sizeof (ctl)) != sizeof (ctl))
20140Sstevel@tonic-gate 		return (-1);
20150Sstevel@tonic-gate 	P->status.pr_lwp.pr_cursig = 0;
20160Sstevel@tonic-gate 	return (0);
20170Sstevel@tonic-gate }
20180Sstevel@tonic-gate 
20190Sstevel@tonic-gate int
20200Sstevel@tonic-gate Pclearfault(struct ps_prochandle *P)
20210Sstevel@tonic-gate {
20220Sstevel@tonic-gate 	int ctlfd = (P->agentctlfd >= 0)? P->agentctlfd : P->ctlfd;
20230Sstevel@tonic-gate 	long ctl = PCCFAULT;
20240Sstevel@tonic-gate 
20250Sstevel@tonic-gate 	if (write(ctlfd, &ctl, sizeof (ctl)) != sizeof (ctl))
20260Sstevel@tonic-gate 		return (-1);
20270Sstevel@tonic-gate 	return (0);
20280Sstevel@tonic-gate }
20290Sstevel@tonic-gate 
20300Sstevel@tonic-gate /*
20310Sstevel@tonic-gate  * Set a breakpoint trap, return original instruction.
20320Sstevel@tonic-gate  */
20330Sstevel@tonic-gate int
20340Sstevel@tonic-gate Psetbkpt(struct ps_prochandle *P, uintptr_t address, ulong_t *saved)
20350Sstevel@tonic-gate {
20360Sstevel@tonic-gate 	long ctl[1 + sizeof (priovec_t) / sizeof (long) +	/* PCREAD */
20370Sstevel@tonic-gate 		1 + sizeof (priovec_t) / sizeof (long)];	/* PCWRITE */
20380Sstevel@tonic-gate 	long *ctlp = ctl;
20390Sstevel@tonic-gate 	size_t size;
20400Sstevel@tonic-gate 	priovec_t *iovp;
20410Sstevel@tonic-gate 	instr_t bpt = BPT;
20420Sstevel@tonic-gate 	instr_t old;
20430Sstevel@tonic-gate 
20440Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
20450Sstevel@tonic-gate 	    P->state == PS_IDLE) {
20460Sstevel@tonic-gate 		errno = ENOENT;
20470Sstevel@tonic-gate 		return (-1);
20480Sstevel@tonic-gate 	}
20490Sstevel@tonic-gate 
20500Sstevel@tonic-gate 	/* fetch the old instruction */
20510Sstevel@tonic-gate 	*ctlp++ = PCREAD;
20520Sstevel@tonic-gate 	iovp = (priovec_t *)ctlp;
20530Sstevel@tonic-gate 	iovp->pio_base = &old;
20540Sstevel@tonic-gate 	iovp->pio_len = sizeof (old);
20550Sstevel@tonic-gate 	iovp->pio_offset = address;
20560Sstevel@tonic-gate 	ctlp += sizeof (priovec_t) / sizeof (long);
20570Sstevel@tonic-gate 
20580Sstevel@tonic-gate 	/* write the BPT instruction */
20590Sstevel@tonic-gate 	*ctlp++ = PCWRITE;
20600Sstevel@tonic-gate 	iovp = (priovec_t *)ctlp;
20610Sstevel@tonic-gate 	iovp->pio_base = &bpt;
20620Sstevel@tonic-gate 	iovp->pio_len = sizeof (bpt);
20630Sstevel@tonic-gate 	iovp->pio_offset = address;
20640Sstevel@tonic-gate 	ctlp += sizeof (priovec_t) / sizeof (long);
20650Sstevel@tonic-gate 
20660Sstevel@tonic-gate 	size = (char *)ctlp - (char *)ctl;
20670Sstevel@tonic-gate 	if (write(P->ctlfd, ctl, size) != size)
20680Sstevel@tonic-gate 		return (-1);
20690Sstevel@tonic-gate 
20700Sstevel@tonic-gate 	/*
20710Sstevel@tonic-gate 	 * Fail if there was already a breakpoint there from another debugger
20720Sstevel@tonic-gate 	 * or DTrace's user-level tracing on x86.
20730Sstevel@tonic-gate 	 */
20741222Smws 	if (old == BPT) {
20751222Smws 		errno = EBUSY;
20761222Smws 		return (-1);
20771222Smws 	}
20780Sstevel@tonic-gate 
20790Sstevel@tonic-gate 	*saved = (ulong_t)old;
20800Sstevel@tonic-gate 	return (0);
20810Sstevel@tonic-gate }
20820Sstevel@tonic-gate 
20830Sstevel@tonic-gate /*
20840Sstevel@tonic-gate  * Restore original instruction where a breakpoint was set.
20850Sstevel@tonic-gate  */
20860Sstevel@tonic-gate int
20870Sstevel@tonic-gate Pdelbkpt(struct ps_prochandle *P, uintptr_t address, ulong_t saved)
20880Sstevel@tonic-gate {
20890Sstevel@tonic-gate 	instr_t old = (instr_t)saved;
20900Sstevel@tonic-gate 	instr_t cur;
20910Sstevel@tonic-gate 
20920Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
20930Sstevel@tonic-gate 	    P->state == PS_IDLE) {
20940Sstevel@tonic-gate 		errno = ENOENT;
20950Sstevel@tonic-gate 		return (-1);
20960Sstevel@tonic-gate 	}
20970Sstevel@tonic-gate 
20980Sstevel@tonic-gate 	/*
20990Sstevel@tonic-gate 	 * If the breakpoint instruction we had placed has been overwritten
21000Sstevel@tonic-gate 	 * with a new instruction, then don't try to replace it with the
21010Sstevel@tonic-gate 	 * old instruction. Doing do can cause problems with self-modifying
21020Sstevel@tonic-gate 	 * code -- PLTs for example. If the Pread() fails, we assume that we
21030Sstevel@tonic-gate 	 * should proceed though most likely the Pwrite() will also fail.
21040Sstevel@tonic-gate 	 */
21050Sstevel@tonic-gate 	if (Pread(P, &cur, sizeof (cur), address) == sizeof (cur) &&
21060Sstevel@tonic-gate 	    cur != BPT)
21070Sstevel@tonic-gate 		return (0);
21080Sstevel@tonic-gate 
21090Sstevel@tonic-gate 	if (Pwrite(P, &old, sizeof (old), address) != sizeof (old))
21100Sstevel@tonic-gate 		return (-1);
21110Sstevel@tonic-gate 
21120Sstevel@tonic-gate 	return (0);
21130Sstevel@tonic-gate }
21140Sstevel@tonic-gate 
21150Sstevel@tonic-gate /*
21160Sstevel@tonic-gate  * Common code for Pxecbkpt() and Lxecbkpt().
21170Sstevel@tonic-gate  * Develop the array of requests that will do the job, then
21180Sstevel@tonic-gate  * write them to the specified control file descriptor.
21190Sstevel@tonic-gate  * Return the non-zero errno if the write fails.
21200Sstevel@tonic-gate  */
21210Sstevel@tonic-gate static int
21220Sstevel@tonic-gate execute_bkpt(
21230Sstevel@tonic-gate 	int ctlfd,		/* process or LWP control file descriptor */
21240Sstevel@tonic-gate 	const fltset_t *faultset,	/* current set of traced faults */
21250Sstevel@tonic-gate 	const sigset_t *sigmask,	/* current signal mask */
21260Sstevel@tonic-gate 	uintptr_t address,		/* address of breakpint */
21270Sstevel@tonic-gate 	ulong_t saved)			/* the saved instruction */
21280Sstevel@tonic-gate {
21290Sstevel@tonic-gate 	long ctl[
21300Sstevel@tonic-gate 		1 + sizeof (sigset_t) / sizeof (long) +		/* PCSHOLD */
21310Sstevel@tonic-gate 		1 + sizeof (fltset_t) / sizeof (long) +		/* PCSFAULT */
21320Sstevel@tonic-gate 		1 + sizeof (priovec_t) / sizeof (long) +	/* PCWRITE */
21330Sstevel@tonic-gate 		2 +						/* PCRUN */
21340Sstevel@tonic-gate 		1 +						/* PCWSTOP */
21350Sstevel@tonic-gate 		1 +						/* PCCFAULT */
21360Sstevel@tonic-gate 		1 + sizeof (priovec_t) / sizeof (long) +	/* PCWRITE */
21370Sstevel@tonic-gate 		1 + sizeof (fltset_t) / sizeof (long) +		/* PCSFAULT */
21380Sstevel@tonic-gate 		1 + sizeof (sigset_t) / sizeof (long)];		/* PCSHOLD */
21390Sstevel@tonic-gate 	long *ctlp = ctl;
21400Sstevel@tonic-gate 	sigset_t unblock;
21410Sstevel@tonic-gate 	size_t size;
21420Sstevel@tonic-gate 	ssize_t ssize;
21430Sstevel@tonic-gate 	priovec_t *iovp;
21440Sstevel@tonic-gate 	sigset_t *holdp;
21450Sstevel@tonic-gate 	fltset_t *faultp;
21460Sstevel@tonic-gate 	instr_t old = (instr_t)saved;
21470Sstevel@tonic-gate 	instr_t bpt = BPT;
21480Sstevel@tonic-gate 	int error = 0;
21490Sstevel@tonic-gate 
21500Sstevel@tonic-gate 	/* block our signals for the duration */
21510Sstevel@tonic-gate 	(void) sigprocmask(SIG_BLOCK, &blockable_sigs, &unblock);
21520Sstevel@tonic-gate 
21530Sstevel@tonic-gate 	/* hold posted signals */
21540Sstevel@tonic-gate 	*ctlp++ = PCSHOLD;
21550Sstevel@tonic-gate 	holdp = (sigset_t *)ctlp;
21560Sstevel@tonic-gate 	prfillset(holdp);
21570Sstevel@tonic-gate 	prdelset(holdp, SIGKILL);
21580Sstevel@tonic-gate 	prdelset(holdp, SIGSTOP);
21590Sstevel@tonic-gate 	ctlp += sizeof (sigset_t) / sizeof (long);
21600Sstevel@tonic-gate 
21610Sstevel@tonic-gate 	/* force tracing of FLTTRACE */
21620Sstevel@tonic-gate 	if (!(prismember(faultset, FLTTRACE))) {
21630Sstevel@tonic-gate 		*ctlp++ = PCSFAULT;
21640Sstevel@tonic-gate 		faultp = (fltset_t *)ctlp;
21650Sstevel@tonic-gate 		*faultp = *faultset;
21660Sstevel@tonic-gate 		praddset(faultp, FLTTRACE);
21670Sstevel@tonic-gate 		ctlp += sizeof (fltset_t) / sizeof (long);
21680Sstevel@tonic-gate 	}
21690Sstevel@tonic-gate 
21700Sstevel@tonic-gate 	/* restore the old instruction */
21710Sstevel@tonic-gate 	*ctlp++ = PCWRITE;
21720Sstevel@tonic-gate 	iovp = (priovec_t *)ctlp;
21730Sstevel@tonic-gate 	iovp->pio_base = &old;
21740Sstevel@tonic-gate 	iovp->pio_len = sizeof (old);
21750Sstevel@tonic-gate 	iovp->pio_offset = address;
21760Sstevel@tonic-gate 	ctlp += sizeof (priovec_t) / sizeof (long);
21770Sstevel@tonic-gate 
21780Sstevel@tonic-gate 	/* clear current signal and fault; set running w/ single-step */
21790Sstevel@tonic-gate 	*ctlp++ = PCRUN;
21800Sstevel@tonic-gate 	*ctlp++ = PRCSIG | PRCFAULT | PRSTEP;
21810Sstevel@tonic-gate 
21820Sstevel@tonic-gate 	/* wait for stop, cancel the fault */
21830Sstevel@tonic-gate 	*ctlp++ = PCWSTOP;
21840Sstevel@tonic-gate 	*ctlp++ = PCCFAULT;
21850Sstevel@tonic-gate 
21860Sstevel@tonic-gate 	/* restore the breakpoint trap */
21870Sstevel@tonic-gate 	*ctlp++ = PCWRITE;
21880Sstevel@tonic-gate 	iovp = (priovec_t *)ctlp;
21890Sstevel@tonic-gate 	iovp->pio_base = &bpt;
21900Sstevel@tonic-gate 	iovp->pio_len = sizeof (bpt);
21910Sstevel@tonic-gate 	iovp->pio_offset = address;
21920Sstevel@tonic-gate 	ctlp += sizeof (priovec_t) / sizeof (long);
21930Sstevel@tonic-gate 
21940Sstevel@tonic-gate 	/* restore fault tracing set */
21950Sstevel@tonic-gate 	if (!(prismember(faultset, FLTTRACE))) {
21960Sstevel@tonic-gate 		*ctlp++ = PCSFAULT;
21970Sstevel@tonic-gate 		*(fltset_t *)ctlp = *faultset;
21980Sstevel@tonic-gate 		ctlp += sizeof (fltset_t) / sizeof (long);
21990Sstevel@tonic-gate 	}
22000Sstevel@tonic-gate 
22010Sstevel@tonic-gate 	/* restore the hold mask */
22020Sstevel@tonic-gate 	*ctlp++ = PCSHOLD;
22030Sstevel@tonic-gate 	*(sigset_t *)ctlp = *sigmask;
22040Sstevel@tonic-gate 	ctlp += sizeof (sigset_t) / sizeof (long);
22050Sstevel@tonic-gate 
22060Sstevel@tonic-gate 	size = (char *)ctlp - (char *)ctl;
22070Sstevel@tonic-gate 	if ((ssize = write(ctlfd, ctl, size)) != size)
22080Sstevel@tonic-gate 		error = (ssize == -1)? errno : EINTR;
22090Sstevel@tonic-gate 	(void) sigprocmask(SIG_SETMASK, &unblock, NULL);
22100Sstevel@tonic-gate 	return (error);
22110Sstevel@tonic-gate }
22120Sstevel@tonic-gate 
22130Sstevel@tonic-gate /*
22140Sstevel@tonic-gate  * Step over a breakpoint, i.e., execute the instruction that
22150Sstevel@tonic-gate  * really belongs at the breakpoint location (the current %pc)
22160Sstevel@tonic-gate  * and leave the process stopped at the next instruction.
22170Sstevel@tonic-gate  */
22180Sstevel@tonic-gate int
22190Sstevel@tonic-gate Pxecbkpt(struct ps_prochandle *P, ulong_t saved)
22200Sstevel@tonic-gate {
22210Sstevel@tonic-gate 	int ctlfd = (P->agentctlfd >= 0)? P->agentctlfd : P->ctlfd;
22220Sstevel@tonic-gate 	int rv, error;
22230Sstevel@tonic-gate 
22240Sstevel@tonic-gate 	if (P->state != PS_STOP) {
22250Sstevel@tonic-gate 		errno = EBUSY;
22260Sstevel@tonic-gate 		return (-1);
22270Sstevel@tonic-gate 	}
22280Sstevel@tonic-gate 
22290Sstevel@tonic-gate 	Psync(P);
22300Sstevel@tonic-gate 
22310Sstevel@tonic-gate 	error = execute_bkpt(ctlfd,
22320Sstevel@tonic-gate 		&P->status.pr_flttrace, &P->status.pr_lwp.pr_lwphold,
22330Sstevel@tonic-gate 		P->status.pr_lwp.pr_reg[R_PC], saved);
22340Sstevel@tonic-gate 	rv = Pstopstatus(P, PCNULL, 0);
22350Sstevel@tonic-gate 
22360Sstevel@tonic-gate 	if (error != 0) {
22370Sstevel@tonic-gate 		if (P->status.pr_lwp.pr_why == PR_JOBCONTROL &&
22380Sstevel@tonic-gate 		    error == EBUSY) {	/* jobcontrol stop -- back off */
22390Sstevel@tonic-gate 			P->state = PS_RUN;
22400Sstevel@tonic-gate 			return (0);
22410Sstevel@tonic-gate 		}
22420Sstevel@tonic-gate 		if (error == ENOENT)
22430Sstevel@tonic-gate 			return (0);
22440Sstevel@tonic-gate 		errno = error;
22450Sstevel@tonic-gate 		return (-1);
22460Sstevel@tonic-gate 	}
22470Sstevel@tonic-gate 
22480Sstevel@tonic-gate 	return (rv);
22490Sstevel@tonic-gate }
22500Sstevel@tonic-gate 
22510Sstevel@tonic-gate /*
22520Sstevel@tonic-gate  * Install the watchpoint described by wp.
22530Sstevel@tonic-gate  */
22540Sstevel@tonic-gate int
22550Sstevel@tonic-gate Psetwapt(struct ps_prochandle *P, const prwatch_t *wp)
22560Sstevel@tonic-gate {
22570Sstevel@tonic-gate 	long ctl[1 + sizeof (prwatch_t) / sizeof (long)];
22580Sstevel@tonic-gate 	prwatch_t *cwp = (prwatch_t *)&ctl[1];
22590Sstevel@tonic-gate 
22600Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
22610Sstevel@tonic-gate 	    P->state == PS_IDLE) {
22620Sstevel@tonic-gate 		errno = ENOENT;
22630Sstevel@tonic-gate 		return (-1);
22640Sstevel@tonic-gate 	}
22650Sstevel@tonic-gate 
22660Sstevel@tonic-gate 	ctl[0] = PCWATCH;
22670Sstevel@tonic-gate 	cwp->pr_vaddr = wp->pr_vaddr;
22680Sstevel@tonic-gate 	cwp->pr_size = wp->pr_size;
22690Sstevel@tonic-gate 	cwp->pr_wflags = wp->pr_wflags;
22700Sstevel@tonic-gate 
22710Sstevel@tonic-gate 	if (write(P->ctlfd, ctl, sizeof (ctl)) != sizeof (ctl))
22720Sstevel@tonic-gate 		return (-1);
22730Sstevel@tonic-gate 
22740Sstevel@tonic-gate 	return (0);
22750Sstevel@tonic-gate }
22760Sstevel@tonic-gate 
22770Sstevel@tonic-gate /*
22780Sstevel@tonic-gate  * Remove the watchpoint described by wp.
22790Sstevel@tonic-gate  */
22800Sstevel@tonic-gate int
22810Sstevel@tonic-gate Pdelwapt(struct ps_prochandle *P, const prwatch_t *wp)
22820Sstevel@tonic-gate {
22830Sstevel@tonic-gate 	long ctl[1 + sizeof (prwatch_t) / sizeof (long)];
22840Sstevel@tonic-gate 	prwatch_t *cwp = (prwatch_t *)&ctl[1];
22850Sstevel@tonic-gate 
22860Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
22870Sstevel@tonic-gate 	    P->state == PS_IDLE) {
22880Sstevel@tonic-gate 		errno = ENOENT;
22890Sstevel@tonic-gate 		return (-1);
22900Sstevel@tonic-gate 	}
22910Sstevel@tonic-gate 
22920Sstevel@tonic-gate 	ctl[0] = PCWATCH;
22930Sstevel@tonic-gate 	cwp->pr_vaddr = wp->pr_vaddr;
22940Sstevel@tonic-gate 	cwp->pr_size = wp->pr_size;
22950Sstevel@tonic-gate 	cwp->pr_wflags = 0;
22960Sstevel@tonic-gate 
22970Sstevel@tonic-gate 	if (write(P->ctlfd, ctl, sizeof (ctl)) != sizeof (ctl))
22980Sstevel@tonic-gate 		return (-1);
22990Sstevel@tonic-gate 
23000Sstevel@tonic-gate 	return (0);
23010Sstevel@tonic-gate }
23020Sstevel@tonic-gate 
23030Sstevel@tonic-gate /*
23040Sstevel@tonic-gate  * Common code for Pxecwapt() and Lxecwapt().  Develop the array of requests
23050Sstevel@tonic-gate  * that will do the job, then write them to the specified control file
23060Sstevel@tonic-gate  * descriptor.  Return the non-zero errno if the write fails.
23070Sstevel@tonic-gate  */
23080Sstevel@tonic-gate static int
23090Sstevel@tonic-gate execute_wapt(
23100Sstevel@tonic-gate 	int ctlfd,		/* process or LWP control file descriptor */
23110Sstevel@tonic-gate 	const fltset_t *faultset,	/* current set of traced faults */
23120Sstevel@tonic-gate 	const sigset_t *sigmask,	/* current signal mask */
23130Sstevel@tonic-gate 	const prwatch_t *wp)		/* watchpoint descriptor */
23140Sstevel@tonic-gate {
23150Sstevel@tonic-gate 	long ctl[
23160Sstevel@tonic-gate 	    1 + sizeof (sigset_t) / sizeof (long) +		/* PCSHOLD */
23170Sstevel@tonic-gate 	    1 + sizeof (fltset_t) / sizeof (long) +		/* PCSFAULT */
23180Sstevel@tonic-gate 	    1 + sizeof (prwatch_t) / sizeof (long) +		/* PCWATCH */
23190Sstevel@tonic-gate 	    2 +							/* PCRUN */
23200Sstevel@tonic-gate 	    1 +							/* PCWSTOP */
23210Sstevel@tonic-gate 	    1 +							/* PCCFAULT */
23220Sstevel@tonic-gate 	    1 + sizeof (prwatch_t) / sizeof (long) +		/* PCWATCH */
23230Sstevel@tonic-gate 	    1 + sizeof (fltset_t) / sizeof (long) +		/* PCSFAULT */
23240Sstevel@tonic-gate 	    1 + sizeof (sigset_t) / sizeof (long)];		/* PCSHOLD */
23250Sstevel@tonic-gate 
23260Sstevel@tonic-gate 	long *ctlp = ctl;
23270Sstevel@tonic-gate 	int error = 0;
23280Sstevel@tonic-gate 
23290Sstevel@tonic-gate 	sigset_t unblock;
23300Sstevel@tonic-gate 	sigset_t *holdp;
23310Sstevel@tonic-gate 	fltset_t *faultp;
23320Sstevel@tonic-gate 	prwatch_t *prw;
23330Sstevel@tonic-gate 	ssize_t ssize;
23340Sstevel@tonic-gate 	size_t size;
23350Sstevel@tonic-gate 
23360Sstevel@tonic-gate 	(void) sigprocmask(SIG_BLOCK, &blockable_sigs, &unblock);
23370Sstevel@tonic-gate 
23380Sstevel@tonic-gate 	/*
23390Sstevel@tonic-gate 	 * Hold all posted signals in the victim process prior to stepping.
23400Sstevel@tonic-gate 	 */
23410Sstevel@tonic-gate 	*ctlp++ = PCSHOLD;
23420Sstevel@tonic-gate 	holdp = (sigset_t *)ctlp;
23430Sstevel@tonic-gate 	prfillset(holdp);
23440Sstevel@tonic-gate 	prdelset(holdp, SIGKILL);
23450Sstevel@tonic-gate 	prdelset(holdp, SIGSTOP);
23460Sstevel@tonic-gate 	ctlp += sizeof (sigset_t) / sizeof (long);
23470Sstevel@tonic-gate 
23480Sstevel@tonic-gate 	/*
23490Sstevel@tonic-gate 	 * Force tracing of FLTTRACE since we need to single step.
23500Sstevel@tonic-gate 	 */
23510Sstevel@tonic-gate 	if (!(prismember(faultset, FLTTRACE))) {
23520Sstevel@tonic-gate 		*ctlp++ = PCSFAULT;
23530Sstevel@tonic-gate 		faultp = (fltset_t *)ctlp;
23540Sstevel@tonic-gate 		*faultp = *faultset;
23550Sstevel@tonic-gate 		praddset(faultp, FLTTRACE);
23560Sstevel@tonic-gate 		ctlp += sizeof (fltset_t) / sizeof (long);
23570Sstevel@tonic-gate 	}
23580Sstevel@tonic-gate 
23590Sstevel@tonic-gate 	/*
23600Sstevel@tonic-gate 	 * Clear only the current watchpoint by setting pr_wflags to zero.
23610Sstevel@tonic-gate 	 */
23620Sstevel@tonic-gate 	*ctlp++ = PCWATCH;
23630Sstevel@tonic-gate 	prw = (prwatch_t *)ctlp;
23640Sstevel@tonic-gate 	prw->pr_vaddr = wp->pr_vaddr;
23650Sstevel@tonic-gate 	prw->pr_size = wp->pr_size;
23660Sstevel@tonic-gate 	prw->pr_wflags = 0;
23670Sstevel@tonic-gate 	ctlp += sizeof (prwatch_t) / sizeof (long);
23680Sstevel@tonic-gate 
23690Sstevel@tonic-gate 	/*
23700Sstevel@tonic-gate 	 * Clear the current signal and fault; set running with single-step.
23710Sstevel@tonic-gate 	 * Then wait for the victim to stop and cancel the FLTTRACE.
23720Sstevel@tonic-gate 	 */
23730Sstevel@tonic-gate 	*ctlp++ = PCRUN;
23740Sstevel@tonic-gate 	*ctlp++ = PRCSIG | PRCFAULT | PRSTEP;
23750Sstevel@tonic-gate 	*ctlp++ = PCWSTOP;
23760Sstevel@tonic-gate 	*ctlp++ = PCCFAULT;
23770Sstevel@tonic-gate 
23780Sstevel@tonic-gate 	/*
23790Sstevel@tonic-gate 	 * Restore the current watchpoint.
23800Sstevel@tonic-gate 	 */
23810Sstevel@tonic-gate 	*ctlp++ = PCWATCH;
23820Sstevel@tonic-gate 	(void) memcpy(ctlp, wp, sizeof (prwatch_t));
23830Sstevel@tonic-gate 	ctlp += sizeof (prwatch_t) / sizeof (long);
23840Sstevel@tonic-gate 
23850Sstevel@tonic-gate 	/*
23860Sstevel@tonic-gate 	 * Restore fault tracing set if we modified it.
23870Sstevel@tonic-gate 	 */
23880Sstevel@tonic-gate 	if (!(prismember(faultset, FLTTRACE))) {
23890Sstevel@tonic-gate 		*ctlp++ = PCSFAULT;
23900Sstevel@tonic-gate 		*(fltset_t *)ctlp = *faultset;
23910Sstevel@tonic-gate 		ctlp += sizeof (fltset_t) / sizeof (long);
23920Sstevel@tonic-gate 	}
23930Sstevel@tonic-gate 
23940Sstevel@tonic-gate 	/*
23950Sstevel@tonic-gate 	 * Restore the hold mask to the current hold mask (i.e. the one
23960Sstevel@tonic-gate 	 * before we executed any of the previous operations).
23970Sstevel@tonic-gate 	 */
23980Sstevel@tonic-gate 	*ctlp++ = PCSHOLD;
23990Sstevel@tonic-gate 	*(sigset_t *)ctlp = *sigmask;
24000Sstevel@tonic-gate 	ctlp += sizeof (sigset_t) / sizeof (long);
24010Sstevel@tonic-gate 
24020Sstevel@tonic-gate 	size = (char *)ctlp - (char *)ctl;
24030Sstevel@tonic-gate 	if ((ssize = write(ctlfd, ctl, size)) != size)
24040Sstevel@tonic-gate 		error = (ssize == -1)? errno : EINTR;
24050Sstevel@tonic-gate 	(void) sigprocmask(SIG_SETMASK, &unblock, NULL);
24060Sstevel@tonic-gate 	return (error);
24070Sstevel@tonic-gate }
24080Sstevel@tonic-gate 
24090Sstevel@tonic-gate /*
24100Sstevel@tonic-gate  * Step over a watchpoint, i.e., execute the instruction that was stopped by
24110Sstevel@tonic-gate  * the watchpoint, and then leave the LWP stopped at the next instruction.
24120Sstevel@tonic-gate  */
24130Sstevel@tonic-gate int
24140Sstevel@tonic-gate Pxecwapt(struct ps_prochandle *P, const prwatch_t *wp)
24150Sstevel@tonic-gate {
24160Sstevel@tonic-gate 	int ctlfd = (P->agentctlfd >= 0)? P->agentctlfd : P->ctlfd;
24170Sstevel@tonic-gate 	int rv, error;
24180Sstevel@tonic-gate 
24190Sstevel@tonic-gate 	if (P->state != PS_STOP) {
24200Sstevel@tonic-gate 		errno = EBUSY;
24210Sstevel@tonic-gate 		return (-1);
24220Sstevel@tonic-gate 	}
24230Sstevel@tonic-gate 
24240Sstevel@tonic-gate 	Psync(P);
24250Sstevel@tonic-gate 	error = execute_wapt(ctlfd,
24260Sstevel@tonic-gate 		&P->status.pr_flttrace, &P->status.pr_lwp.pr_lwphold, wp);
24270Sstevel@tonic-gate 	rv = Pstopstatus(P, PCNULL, 0);
24280Sstevel@tonic-gate 
24290Sstevel@tonic-gate 	if (error != 0) {
24300Sstevel@tonic-gate 		if (P->status.pr_lwp.pr_why == PR_JOBCONTROL &&
24310Sstevel@tonic-gate 		    error == EBUSY) {	/* jobcontrol stop -- back off */
24320Sstevel@tonic-gate 			P->state = PS_RUN;
24330Sstevel@tonic-gate 			return (0);
24340Sstevel@tonic-gate 		}
24350Sstevel@tonic-gate 		if (error == ENOENT)
24360Sstevel@tonic-gate 			return (0);
24370Sstevel@tonic-gate 		errno = error;
24380Sstevel@tonic-gate 		return (-1);
24390Sstevel@tonic-gate 	}
24400Sstevel@tonic-gate 
24410Sstevel@tonic-gate 	return (rv);
24420Sstevel@tonic-gate }
24430Sstevel@tonic-gate 
24440Sstevel@tonic-gate int
24450Sstevel@tonic-gate Psetflags(struct ps_prochandle *P, long flags)
24460Sstevel@tonic-gate {
24470Sstevel@tonic-gate 	int rc;
24480Sstevel@tonic-gate 	long ctl[2];
24490Sstevel@tonic-gate 
24500Sstevel@tonic-gate 	ctl[0] = PCSET;
24510Sstevel@tonic-gate 	ctl[1] = flags;
24520Sstevel@tonic-gate 
24530Sstevel@tonic-gate 	if (write(P->ctlfd, ctl, 2*sizeof (long)) != 2*sizeof (long)) {
24540Sstevel@tonic-gate 		rc = -1;
24550Sstevel@tonic-gate 	} else {
24560Sstevel@tonic-gate 		P->status.pr_flags |= flags;
24570Sstevel@tonic-gate 		P->status.pr_lwp.pr_flags |= flags;
24580Sstevel@tonic-gate 		rc = 0;
24590Sstevel@tonic-gate 	}
24600Sstevel@tonic-gate 
24610Sstevel@tonic-gate 	return (rc);
24620Sstevel@tonic-gate }
24630Sstevel@tonic-gate 
24640Sstevel@tonic-gate int
24650Sstevel@tonic-gate Punsetflags(struct ps_prochandle *P, long flags)
24660Sstevel@tonic-gate {
24670Sstevel@tonic-gate 	int rc;
24680Sstevel@tonic-gate 	long ctl[2];
24690Sstevel@tonic-gate 
24700Sstevel@tonic-gate 	ctl[0] = PCUNSET;
24710Sstevel@tonic-gate 	ctl[1] = flags;
24720Sstevel@tonic-gate 
24730Sstevel@tonic-gate 	if (write(P->ctlfd, ctl, 2*sizeof (long)) != 2*sizeof (long)) {
24740Sstevel@tonic-gate 		rc = -1;
24750Sstevel@tonic-gate 	} else {
24760Sstevel@tonic-gate 		P->status.pr_flags &= ~flags;
24770Sstevel@tonic-gate 		P->status.pr_lwp.pr_flags &= ~flags;
24780Sstevel@tonic-gate 		rc = 0;
24790Sstevel@tonic-gate 	}
24800Sstevel@tonic-gate 
24810Sstevel@tonic-gate 	return (rc);
24820Sstevel@tonic-gate }
24830Sstevel@tonic-gate 
24840Sstevel@tonic-gate /*
24850Sstevel@tonic-gate  * Common function to allow clients to manipulate the action to be taken
24860Sstevel@tonic-gate  * on receipt of a signal, receipt of machine fault, entry to a system call,
24870Sstevel@tonic-gate  * or exit from a system call.  We make use of our private prset_* functions
24880Sstevel@tonic-gate  * in order to make this code be common.  The 'which' parameter identifies
24890Sstevel@tonic-gate  * the code for the event of interest (0 means change the entire set), and
24900Sstevel@tonic-gate  * the 'stop' parameter is a boolean indicating whether the process should
24910Sstevel@tonic-gate  * stop when the event of interest occurs.  The previous value is returned
24920Sstevel@tonic-gate  * to the caller; -1 is returned if an error occurred.
24930Sstevel@tonic-gate  */
24940Sstevel@tonic-gate static int
24950Sstevel@tonic-gate Psetaction(struct ps_prochandle *P, void *sp, size_t size,
24960Sstevel@tonic-gate     uint_t flag, int max, int which, int stop)
24970Sstevel@tonic-gate {
24980Sstevel@tonic-gate 	int oldval;
24990Sstevel@tonic-gate 
25000Sstevel@tonic-gate 	if (which < 0 || which > max) {
25010Sstevel@tonic-gate 		errno = EINVAL;
25020Sstevel@tonic-gate 		return (-1);
25030Sstevel@tonic-gate 	}
25040Sstevel@tonic-gate 
25050Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
25060Sstevel@tonic-gate 	    P->state == PS_IDLE) {
25070Sstevel@tonic-gate 		errno = ENOENT;
25080Sstevel@tonic-gate 		return (-1);
25090Sstevel@tonic-gate 	}
25100Sstevel@tonic-gate 
25110Sstevel@tonic-gate 	oldval = prset_ismember(sp, size, which) ? TRUE : FALSE;
25120Sstevel@tonic-gate 
25130Sstevel@tonic-gate 	if (stop) {
25140Sstevel@tonic-gate 		if (which == 0) {
25150Sstevel@tonic-gate 			prset_fill(sp, size);
25160Sstevel@tonic-gate 			P->flags |= flag;
25170Sstevel@tonic-gate 		} else if (!oldval) {
25180Sstevel@tonic-gate 			prset_add(sp, size, which);
25190Sstevel@tonic-gate 			P->flags |= flag;
25200Sstevel@tonic-gate 		}
25210Sstevel@tonic-gate 	} else {
25220Sstevel@tonic-gate 		if (which == 0) {
25230Sstevel@tonic-gate 			prset_empty(sp, size);
25240Sstevel@tonic-gate 			P->flags |= flag;
25250Sstevel@tonic-gate 		} else if (oldval) {
25260Sstevel@tonic-gate 			prset_del(sp, size, which);
25270Sstevel@tonic-gate 			P->flags |= flag;
25280Sstevel@tonic-gate 		}
25290Sstevel@tonic-gate 	}
25300Sstevel@tonic-gate 
25310Sstevel@tonic-gate 	if (P->state == PS_RUN)
25320Sstevel@tonic-gate 		Psync(P);
25330Sstevel@tonic-gate 
25340Sstevel@tonic-gate 	return (oldval);
25350Sstevel@tonic-gate }
25360Sstevel@tonic-gate 
25370Sstevel@tonic-gate /*
25380Sstevel@tonic-gate  * Set action on specified signal.
25390Sstevel@tonic-gate  */
25400Sstevel@tonic-gate int
25410Sstevel@tonic-gate Psignal(struct ps_prochandle *P, int which, int stop)
25420Sstevel@tonic-gate {
25430Sstevel@tonic-gate 	int oldval;
25440Sstevel@tonic-gate 
25450Sstevel@tonic-gate 	if (which == SIGKILL && stop != 0) {
25460Sstevel@tonic-gate 		errno = EINVAL;
25470Sstevel@tonic-gate 		return (-1);
25480Sstevel@tonic-gate 	}
25490Sstevel@tonic-gate 
25500Sstevel@tonic-gate 	oldval = Psetaction(P, &P->status.pr_sigtrace, sizeof (sigset_t),
25510Sstevel@tonic-gate 	    SETSIG, PRMAXSIG, which, stop);
25520Sstevel@tonic-gate 
25530Sstevel@tonic-gate 	if (oldval != -1 && which == 0 && stop != 0)
25540Sstevel@tonic-gate 		prdelset(&P->status.pr_sigtrace, SIGKILL);
25550Sstevel@tonic-gate 
25560Sstevel@tonic-gate 	return (oldval);
25570Sstevel@tonic-gate }
25580Sstevel@tonic-gate 
25590Sstevel@tonic-gate /*
25600Sstevel@tonic-gate  * Set all signal tracing flags.
25610Sstevel@tonic-gate  */
25620Sstevel@tonic-gate void
25630Sstevel@tonic-gate Psetsignal(struct ps_prochandle *P, const sigset_t *set)
25640Sstevel@tonic-gate {
25650Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
25660Sstevel@tonic-gate 	    P->state == PS_IDLE)
25670Sstevel@tonic-gate 		return;
25680Sstevel@tonic-gate 
25690Sstevel@tonic-gate 	P->status.pr_sigtrace = *set;
25700Sstevel@tonic-gate 	P->flags |= SETSIG;
25710Sstevel@tonic-gate 
25720Sstevel@tonic-gate 	if (P->state == PS_RUN)
25730Sstevel@tonic-gate 		Psync(P);
25740Sstevel@tonic-gate }
25750Sstevel@tonic-gate 
25760Sstevel@tonic-gate /*
25770Sstevel@tonic-gate  * Set action on specified fault.
25780Sstevel@tonic-gate  */
25790Sstevel@tonic-gate int
25800Sstevel@tonic-gate Pfault(struct ps_prochandle *P, int which, int stop)
25810Sstevel@tonic-gate {
25820Sstevel@tonic-gate 	return (Psetaction(P, &P->status.pr_flttrace, sizeof (fltset_t),
25830Sstevel@tonic-gate 	    SETFAULT, PRMAXFAULT, which, stop));
25840Sstevel@tonic-gate }
25850Sstevel@tonic-gate 
25860Sstevel@tonic-gate /*
25870Sstevel@tonic-gate  * Set all machine fault tracing flags.
25880Sstevel@tonic-gate  */
25890Sstevel@tonic-gate void
25900Sstevel@tonic-gate Psetfault(struct ps_prochandle *P, const fltset_t *set)
25910Sstevel@tonic-gate {
25920Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
25930Sstevel@tonic-gate 	    P->state == PS_IDLE)
25940Sstevel@tonic-gate 		return;
25950Sstevel@tonic-gate 
25960Sstevel@tonic-gate 	P->status.pr_flttrace = *set;
25970Sstevel@tonic-gate 	P->flags |= SETFAULT;
25980Sstevel@tonic-gate 
25990Sstevel@tonic-gate 	if (P->state == PS_RUN)
26000Sstevel@tonic-gate 		Psync(P);
26010Sstevel@tonic-gate }
26020Sstevel@tonic-gate 
26030Sstevel@tonic-gate /*
26040Sstevel@tonic-gate  * Set action on specified system call entry.
26050Sstevel@tonic-gate  */
26060Sstevel@tonic-gate int
26070Sstevel@tonic-gate Psysentry(struct ps_prochandle *P, int which, int stop)
26080Sstevel@tonic-gate {
26090Sstevel@tonic-gate 	return (Psetaction(P, &P->status.pr_sysentry, sizeof (sysset_t),
26100Sstevel@tonic-gate 	    SETENTRY, PRMAXSYS, which, stop));
26110Sstevel@tonic-gate }
26120Sstevel@tonic-gate 
26130Sstevel@tonic-gate /*
26140Sstevel@tonic-gate  * Set all system call entry tracing flags.
26150Sstevel@tonic-gate  */
26160Sstevel@tonic-gate void
26170Sstevel@tonic-gate Psetsysentry(struct ps_prochandle *P, const sysset_t *set)
26180Sstevel@tonic-gate {
26190Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
26200Sstevel@tonic-gate 	    P->state == PS_IDLE)
26210Sstevel@tonic-gate 		return;
26220Sstevel@tonic-gate 
26230Sstevel@tonic-gate 	P->status.pr_sysentry = *set;
26240Sstevel@tonic-gate 	P->flags |= SETENTRY;
26250Sstevel@tonic-gate 
26260Sstevel@tonic-gate 	if (P->state == PS_RUN)
26270Sstevel@tonic-gate 		Psync(P);
26280Sstevel@tonic-gate }
26290Sstevel@tonic-gate 
26300Sstevel@tonic-gate /*
26310Sstevel@tonic-gate  * Set action on specified system call exit.
26320Sstevel@tonic-gate  */
26330Sstevel@tonic-gate int
26340Sstevel@tonic-gate Psysexit(struct ps_prochandle *P, int which, int stop)
26350Sstevel@tonic-gate {
26360Sstevel@tonic-gate 	return (Psetaction(P, &P->status.pr_sysexit, sizeof (sysset_t),
26370Sstevel@tonic-gate 	    SETEXIT, PRMAXSYS, which, stop));
26380Sstevel@tonic-gate }
26390Sstevel@tonic-gate 
26400Sstevel@tonic-gate /*
26410Sstevel@tonic-gate  * Set all system call exit tracing flags.
26420Sstevel@tonic-gate  */
26430Sstevel@tonic-gate void
26440Sstevel@tonic-gate Psetsysexit(struct ps_prochandle *P, const sysset_t *set)
26450Sstevel@tonic-gate {
26460Sstevel@tonic-gate 	if (P->state == PS_DEAD || P->state == PS_UNDEAD ||
26470Sstevel@tonic-gate 	    P->state == PS_IDLE)
26480Sstevel@tonic-gate 		return;
26490Sstevel@tonic-gate 
26500Sstevel@tonic-gate 	P->status.pr_sysexit = *set;
26510Sstevel@tonic-gate 	P->flags |= SETEXIT;
26520Sstevel@tonic-gate 
26530Sstevel@tonic-gate 	if (P->state == PS_RUN)
26540Sstevel@tonic-gate 		Psync(P);
26550Sstevel@tonic-gate }
26560Sstevel@tonic-gate 
26570Sstevel@tonic-gate /*
26580Sstevel@tonic-gate  * Utility function to read the contents of a file that contains a
26590Sstevel@tonic-gate  * prheader_t at the start (/proc/pid/lstatus or /proc/pid/lpsinfo).
26600Sstevel@tonic-gate  * Returns a malloc()d buffer or NULL on failure.
26610Sstevel@tonic-gate  */
26620Sstevel@tonic-gate static prheader_t *
26630Sstevel@tonic-gate read_lfile(struct ps_prochandle *P, const char *lname)
26640Sstevel@tonic-gate {
26650Sstevel@tonic-gate 	prheader_t *Lhp;
2666*2712Snn35248 	char lpath[PATH_MAX];
26670Sstevel@tonic-gate 	struct stat64 statb;
26680Sstevel@tonic-gate 	int fd;
26690Sstevel@tonic-gate 	size_t size;
26700Sstevel@tonic-gate 	ssize_t rval;
26710Sstevel@tonic-gate 
2672*2712Snn35248 	(void) snprintf(lpath, sizeof (lpath), "%s/%d/%s", procfs_path,
26730Sstevel@tonic-gate 	    (int)P->status.pr_pid, lname);
26740Sstevel@tonic-gate 	if ((fd = open(lpath, O_RDONLY)) < 0 || fstat64(fd, &statb) != 0) {
26750Sstevel@tonic-gate 		if (fd >= 0)
26760Sstevel@tonic-gate 			(void) close(fd);
26770Sstevel@tonic-gate 		return (NULL);
26780Sstevel@tonic-gate 	}
26790Sstevel@tonic-gate 
26800Sstevel@tonic-gate 	/*
26810Sstevel@tonic-gate 	 * 'size' is just the initial guess at the buffer size.
26820Sstevel@tonic-gate 	 * It will have to grow if the number of lwps increases
26830Sstevel@tonic-gate 	 * while we are looking at the process.
26840Sstevel@tonic-gate 	 * 'size' must be larger than the actual file size.
26850Sstevel@tonic-gate 	 */
26860Sstevel@tonic-gate 	size = statb.st_size + 32;
26870Sstevel@tonic-gate 
26880Sstevel@tonic-gate 	for (;;) {
26890Sstevel@tonic-gate 		if ((Lhp = malloc(size)) == NULL)
26900Sstevel@tonic-gate 			break;
26910Sstevel@tonic-gate 		if ((rval = pread(fd, Lhp, size, 0)) < 0 ||
26920Sstevel@tonic-gate 		    rval <= sizeof (prheader_t)) {
26930Sstevel@tonic-gate 			free(Lhp);
26940Sstevel@tonic-gate 			Lhp = NULL;
26950Sstevel@tonic-gate 			break;
26960Sstevel@tonic-gate 		}
26970Sstevel@tonic-gate 		if (rval < size)
26980Sstevel@tonic-gate 			break;
26990Sstevel@tonic-gate 		/* need a bigger buffer */
27000Sstevel@tonic-gate 		free(Lhp);
27010Sstevel@tonic-gate 		size *= 2;
27020Sstevel@tonic-gate 	}
27030Sstevel@tonic-gate 
27040Sstevel@tonic-gate 	(void) close(fd);
27050Sstevel@tonic-gate 	return (Lhp);
27060Sstevel@tonic-gate }
27070Sstevel@tonic-gate 
27080Sstevel@tonic-gate /*
27090Sstevel@tonic-gate  * LWP iteration interface.
27100Sstevel@tonic-gate  */
27110Sstevel@tonic-gate int
27120Sstevel@tonic-gate Plwp_iter(struct ps_prochandle *P, proc_lwp_f *func, void *cd)
27130Sstevel@tonic-gate {
27140Sstevel@tonic-gate 	prheader_t *Lhp;
27150Sstevel@tonic-gate 	lwpstatus_t *Lsp;
27160Sstevel@tonic-gate 	long nlwp;
27170Sstevel@tonic-gate 	int rv;
27180Sstevel@tonic-gate 
27190Sstevel@tonic-gate 	switch (P->state) {
27200Sstevel@tonic-gate 	case PS_RUN:
27210Sstevel@tonic-gate 		(void) Pstopstatus(P, PCNULL, 0);
27220Sstevel@tonic-gate 		break;
27230Sstevel@tonic-gate 
27240Sstevel@tonic-gate 	case PS_STOP:
27250Sstevel@tonic-gate 		Psync(P);
27260Sstevel@tonic-gate 		break;
27270Sstevel@tonic-gate 
27280Sstevel@tonic-gate 	case PS_IDLE:
27290Sstevel@tonic-gate 		errno = ENODATA;
27300Sstevel@tonic-gate 		return (-1);
27310Sstevel@tonic-gate 	}
27320Sstevel@tonic-gate 
27330Sstevel@tonic-gate 	/*
27340Sstevel@tonic-gate 	 * For either live processes or cores, the single LWP case is easy:
27350Sstevel@tonic-gate 	 * the pstatus_t contains the lwpstatus_t for the only LWP.
27360Sstevel@tonic-gate 	 */
27370Sstevel@tonic-gate 	if (P->status.pr_nlwp <= 1)
27380Sstevel@tonic-gate 		return (func(cd, &P->status.pr_lwp));
27390Sstevel@tonic-gate 
27400Sstevel@tonic-gate 	/*
27410Sstevel@tonic-gate 	 * For the core file multi-LWP case, we just iterate through the
27420Sstevel@tonic-gate 	 * list of LWP structs we read in from the core file.
27430Sstevel@tonic-gate 	 */
27440Sstevel@tonic-gate 	if (P->state == PS_DEAD) {
27450Sstevel@tonic-gate 		lwp_info_t *lwp = list_prev(&P->core->core_lwp_head);
27460Sstevel@tonic-gate 		uint_t i;
27470Sstevel@tonic-gate 
27480Sstevel@tonic-gate 		for (i = 0; i < P->core->core_nlwp; i++, lwp = list_prev(lwp)) {
27490Sstevel@tonic-gate 			if (lwp->lwp_psinfo.pr_sname != 'Z' &&
27500Sstevel@tonic-gate 			    (rv = func(cd, &lwp->lwp_status)) != 0)
27510Sstevel@tonic-gate 				break;
27520Sstevel@tonic-gate 		}
27530Sstevel@tonic-gate 
27540Sstevel@tonic-gate 		return (rv);
27550Sstevel@tonic-gate 	}
27560Sstevel@tonic-gate 
27570Sstevel@tonic-gate 	/*
27580Sstevel@tonic-gate 	 * For the live process multi-LWP case, we have to work a little
27590Sstevel@tonic-gate 	 * harder: the /proc/pid/lstatus file has the array of LWP structs.
27600Sstevel@tonic-gate 	 */
27610Sstevel@tonic-gate 	if ((Lhp = read_lfile(P, "lstatus")) == NULL)
27620Sstevel@tonic-gate 		return (-1);
27630Sstevel@tonic-gate 
27640Sstevel@tonic-gate 	for (nlwp = Lhp->pr_nent, Lsp = (lwpstatus_t *)(uintptr_t)(Lhp + 1);
27650Sstevel@tonic-gate 	    nlwp > 0;
27660Sstevel@tonic-gate 	    nlwp--, Lsp = (lwpstatus_t *)((uintptr_t)Lsp + Lhp->pr_entsize)) {
27670Sstevel@tonic-gate 		if ((rv = func(cd, Lsp)) != 0)
27680Sstevel@tonic-gate 			break;
27690Sstevel@tonic-gate 	}
27700Sstevel@tonic-gate 
27710Sstevel@tonic-gate 	free(Lhp);
27720Sstevel@tonic-gate 	return (rv);
27730Sstevel@tonic-gate }
27740Sstevel@tonic-gate 
27750Sstevel@tonic-gate /*
27760Sstevel@tonic-gate  * Extended LWP iteration interface.
27770Sstevel@tonic-gate  * Iterate over all LWPs, active and zombie.
27780Sstevel@tonic-gate  */
27790Sstevel@tonic-gate int
27800Sstevel@tonic-gate Plwp_iter_all(struct ps_prochandle *P, proc_lwp_all_f *func, void *cd)
27810Sstevel@tonic-gate {
27820Sstevel@tonic-gate 	prheader_t *Lhp = NULL;
27830Sstevel@tonic-gate 	lwpstatus_t *Lsp;
27840Sstevel@tonic-gate 	lwpstatus_t *sp;
27850Sstevel@tonic-gate 	prheader_t *Lphp = NULL;
27860Sstevel@tonic-gate 	lwpsinfo_t *Lpsp;
27870Sstevel@tonic-gate 	long nstat;
27880Sstevel@tonic-gate 	long ninfo;
27890Sstevel@tonic-gate 	int rv;
27900Sstevel@tonic-gate 
27910Sstevel@tonic-gate retry:
27920Sstevel@tonic-gate 	if (Lhp != NULL)
27930Sstevel@tonic-gate 		free(Lhp);
27940Sstevel@tonic-gate 	if (Lphp != NULL)
27950Sstevel@tonic-gate 		free(Lphp);
27960Sstevel@tonic-gate 	if (P->state == PS_RUN)
27970Sstevel@tonic-gate 		(void) Pstopstatus(P, PCNULL, 0);
27980Sstevel@tonic-gate 	(void) Ppsinfo(P);
27990Sstevel@tonic-gate 
28000Sstevel@tonic-gate 	if (P->state == PS_STOP)
28010Sstevel@tonic-gate 		Psync(P);
28020Sstevel@tonic-gate 
28030Sstevel@tonic-gate 	/*
28040Sstevel@tonic-gate 	 * For either live processes or cores, the single LWP case is easy:
28050Sstevel@tonic-gate 	 * the pstatus_t contains the lwpstatus_t for the only LWP and
28060Sstevel@tonic-gate 	 * the psinfo_t contains the lwpsinfo_t for the only LWP.
28070Sstevel@tonic-gate 	 */
28080Sstevel@tonic-gate 	if (P->status.pr_nlwp + P->status.pr_nzomb <= 1)
28090Sstevel@tonic-gate 		return (func(cd, &P->status.pr_lwp, &P->psinfo.pr_lwp));
28100Sstevel@tonic-gate 
28110Sstevel@tonic-gate 	/*
28120Sstevel@tonic-gate 	 * For the core file multi-LWP case, we just iterate through the
28130Sstevel@tonic-gate 	 * list of LWP structs we read in from the core file.
28140Sstevel@tonic-gate 	 */
28150Sstevel@tonic-gate 	if (P->state == PS_DEAD) {
28160Sstevel@tonic-gate 		lwp_info_t *lwp = list_prev(&P->core->core_lwp_head);
28170Sstevel@tonic-gate 		uint_t i;
28180Sstevel@tonic-gate 
28190Sstevel@tonic-gate 		for (i = 0; i < P->core->core_nlwp; i++, lwp = list_prev(lwp)) {
28200Sstevel@tonic-gate 			sp = (lwp->lwp_psinfo.pr_sname == 'Z')? NULL :
28210Sstevel@tonic-gate 				&lwp->lwp_status;
28220Sstevel@tonic-gate 			if ((rv = func(cd, sp, &lwp->lwp_psinfo)) != 0)
28230Sstevel@tonic-gate 				break;
28240Sstevel@tonic-gate 		}
28250Sstevel@tonic-gate 
28260Sstevel@tonic-gate 		return (rv);
28270Sstevel@tonic-gate 	}
28280Sstevel@tonic-gate 
28290Sstevel@tonic-gate 	/*
28300Sstevel@tonic-gate 	 * For the live process multi-LWP case, we have to work a little
28310Sstevel@tonic-gate 	 * harder: the /proc/pid/lstatus file has the array of lwpstatus_t's
28320Sstevel@tonic-gate 	 * and the /proc/pid/lpsinfo file has the array of lwpsinfo_t's.
28330Sstevel@tonic-gate 	 */
28340Sstevel@tonic-gate 	if ((Lhp = read_lfile(P, "lstatus")) == NULL)
28350Sstevel@tonic-gate 		return (-1);
28360Sstevel@tonic-gate 	if ((Lphp = read_lfile(P, "lpsinfo")) == NULL) {
28370Sstevel@tonic-gate 		free(Lhp);
28380Sstevel@tonic-gate 		return (-1);
28390Sstevel@tonic-gate 	}
28400Sstevel@tonic-gate 
28410Sstevel@tonic-gate 	/*
28420Sstevel@tonic-gate 	 * If we are looking at a running process, or one we do not control,
28430Sstevel@tonic-gate 	 * the active and zombie lwps in the process may have changed since
28440Sstevel@tonic-gate 	 * we read the process status structure.  If so, just start over.
28450Sstevel@tonic-gate 	 */
28460Sstevel@tonic-gate 	if (Lhp->pr_nent != P->status.pr_nlwp ||
28470Sstevel@tonic-gate 	    Lphp->pr_nent != P->status.pr_nlwp + P->status.pr_nzomb)
28480Sstevel@tonic-gate 		goto retry;
28490Sstevel@tonic-gate 
28500Sstevel@tonic-gate 	/*
28510Sstevel@tonic-gate 	 * To be perfectly safe, prescan the two arrays, checking consistency.
28520Sstevel@tonic-gate 	 * We rely on /proc giving us lwpstatus_t's and lwpsinfo_t's in the
28530Sstevel@tonic-gate 	 * same order (the lwp directory order) in their respective files.
28540Sstevel@tonic-gate 	 * We also rely on there being (possibly) more lwpsinfo_t's than
28550Sstevel@tonic-gate 	 * lwpstatus_t's (the extra lwpsinfo_t's are for zombie lwps).
28560Sstevel@tonic-gate 	 */
28570Sstevel@tonic-gate 	Lsp = (lwpstatus_t *)(uintptr_t)(Lhp + 1);
28580Sstevel@tonic-gate 	Lpsp = (lwpsinfo_t *)(uintptr_t)(Lphp + 1);
28590Sstevel@tonic-gate 	nstat = Lhp->pr_nent;
28600Sstevel@tonic-gate 	for (ninfo = Lphp->pr_nent; ninfo != 0; ninfo--) {
28610Sstevel@tonic-gate 		if (Lpsp->pr_sname != 'Z') {
28620Sstevel@tonic-gate 			/*
28630Sstevel@tonic-gate 			 * Not a zombie lwp; check for matching lwpids.
28640Sstevel@tonic-gate 			 */
28650Sstevel@tonic-gate 			if (nstat == 0 || Lsp->pr_lwpid != Lpsp->pr_lwpid)
28660Sstevel@tonic-gate 				goto retry;
28670Sstevel@tonic-gate 			Lsp = (lwpstatus_t *)((uintptr_t)Lsp + Lhp->pr_entsize);
28680Sstevel@tonic-gate 			nstat--;
28690Sstevel@tonic-gate 		}
28700Sstevel@tonic-gate 		Lpsp = (lwpsinfo_t *)((uintptr_t)Lpsp + Lphp->pr_entsize);
28710Sstevel@tonic-gate 	}
28720Sstevel@tonic-gate 	if (nstat != 0)
28730Sstevel@tonic-gate 		goto retry;
28740Sstevel@tonic-gate 
28750Sstevel@tonic-gate 	/*
28760Sstevel@tonic-gate 	 * Rescan, this time for real.
28770Sstevel@tonic-gate 	 */
28780Sstevel@tonic-gate 	Lsp = (lwpstatus_t *)(uintptr_t)(Lhp + 1);
28790Sstevel@tonic-gate 	Lpsp = (lwpsinfo_t *)(uintptr_t)(Lphp + 1);
28800Sstevel@tonic-gate 	for (ninfo = Lphp->pr_nent; ninfo != 0; ninfo--) {
28810Sstevel@tonic-gate 		if (Lpsp->pr_sname != 'Z') {
28820Sstevel@tonic-gate 			sp = Lsp;
28830Sstevel@tonic-gate 			Lsp = (lwpstatus_t *)((uintptr_t)Lsp + Lhp->pr_entsize);
28840Sstevel@tonic-gate 		} else {
28850Sstevel@tonic-gate 			sp = NULL;
28860Sstevel@tonic-gate 		}
28870Sstevel@tonic-gate 		if ((rv = func(cd, sp, Lpsp)) != 0)
28880Sstevel@tonic-gate 			break;
28890Sstevel@tonic-gate 		Lpsp = (lwpsinfo_t *)((uintptr_t)Lpsp + Lphp->pr_entsize);
28900Sstevel@tonic-gate 	}
28910Sstevel@tonic-gate 
28920Sstevel@tonic-gate 	free(Lhp);
28930Sstevel@tonic-gate 	free(Lphp);
28940Sstevel@tonic-gate 	return (rv);
28950Sstevel@tonic-gate }
28960Sstevel@tonic-gate 
28970Sstevel@tonic-gate core_content_t
28980Sstevel@tonic-gate Pcontent(struct ps_prochandle *P)
28990Sstevel@tonic-gate {
29000Sstevel@tonic-gate 	if (P->state == PS_DEAD)
29010Sstevel@tonic-gate 		return (P->core->core_content);
29020Sstevel@tonic-gate 	if (P->state == PS_IDLE)
29030Sstevel@tonic-gate 		return (CC_CONTENT_TEXT | CC_CONTENT_DATA | CC_CONTENT_CTF);
29040Sstevel@tonic-gate 
29050Sstevel@tonic-gate 	return (CC_CONTENT_ALL);
29060Sstevel@tonic-gate }
29070Sstevel@tonic-gate 
29080Sstevel@tonic-gate /*
29090Sstevel@tonic-gate  * =================================================================
29100Sstevel@tonic-gate  * The remainder of the functions in this file are for the
29110Sstevel@tonic-gate  * control of individual LWPs in the controlled process.
29120Sstevel@tonic-gate  * =================================================================
29130Sstevel@tonic-gate  */
29140Sstevel@tonic-gate 
29150Sstevel@tonic-gate /*
29160Sstevel@tonic-gate  * Find an entry in the process hash table for the specified lwpid.
29170Sstevel@tonic-gate  * The entry will either point to an existing struct ps_lwphandle
29180Sstevel@tonic-gate  * or it will point to an empty slot for a new struct ps_lwphandle.
29190Sstevel@tonic-gate  */
29200Sstevel@tonic-gate static struct ps_lwphandle **
29210Sstevel@tonic-gate Lfind(struct ps_prochandle *P, lwpid_t lwpid)
29220Sstevel@tonic-gate {
29230Sstevel@tonic-gate 	struct ps_lwphandle **Lp;
29240Sstevel@tonic-gate 	struct ps_lwphandle *L;
29250Sstevel@tonic-gate 
29260Sstevel@tonic-gate 	for (Lp = &P->hashtab[lwpid % (HASHSIZE - 1)];
29270Sstevel@tonic-gate 	    (L = *Lp) != NULL; Lp = &L->lwp_hash)
29280Sstevel@tonic-gate 		if (L->lwp_id == lwpid)
29290Sstevel@tonic-gate 			break;
29300Sstevel@tonic-gate 	return (Lp);
29310Sstevel@tonic-gate }
29320Sstevel@tonic-gate 
29330Sstevel@tonic-gate /*
29340Sstevel@tonic-gate  * Grab an LWP contained within the controlled process.
29350Sstevel@tonic-gate  * Return an opaque pointer to its LWP control structure.
29360Sstevel@tonic-gate  *	perr: pointer to error return code.
29370Sstevel@tonic-gate  */
29380Sstevel@tonic-gate struct ps_lwphandle *
29390Sstevel@tonic-gate Lgrab(struct ps_prochandle *P, lwpid_t lwpid, int *perr)
29400Sstevel@tonic-gate {
29410Sstevel@tonic-gate 	struct ps_lwphandle **Lp;
29420Sstevel@tonic-gate 	struct ps_lwphandle *L;
29430Sstevel@tonic-gate 	int fd;
2944*2712Snn35248 	char procname[PATH_MAX];
29450Sstevel@tonic-gate 	char *fname;
29460Sstevel@tonic-gate 	int rc = 0;
29470Sstevel@tonic-gate 
29480Sstevel@tonic-gate 	(void) mutex_lock(&P->proc_lock);
29490Sstevel@tonic-gate 
29500Sstevel@tonic-gate 	if (P->state == PS_UNDEAD || P->state == PS_IDLE)
29510Sstevel@tonic-gate 		rc = G_NOPROC;
29520Sstevel@tonic-gate 	else if (P->hashtab == NULL &&
29530Sstevel@tonic-gate 	    (P->hashtab = calloc(HASHSIZE, sizeof (struct ps_lwphandle *)))
29540Sstevel@tonic-gate 	    == NULL)
29550Sstevel@tonic-gate 		rc = G_STRANGE;
29560Sstevel@tonic-gate 	else if (*(Lp = Lfind(P, lwpid)) != NULL)
29570Sstevel@tonic-gate 		rc = G_BUSY;
29580Sstevel@tonic-gate 	else if ((L = malloc(sizeof (struct ps_lwphandle))) == NULL)
29590Sstevel@tonic-gate 		rc = G_STRANGE;
29600Sstevel@tonic-gate 	if (rc) {
29610Sstevel@tonic-gate 		*perr = rc;
29620Sstevel@tonic-gate 		(void) mutex_unlock(&P->proc_lock);
29630Sstevel@tonic-gate 		return (NULL);
29640Sstevel@tonic-gate 	}
29650Sstevel@tonic-gate 
29660Sstevel@tonic-gate 	(void) memset(L, 0, sizeof (*L));
29670Sstevel@tonic-gate 	L->lwp_ctlfd = -1;
29680Sstevel@tonic-gate 	L->lwp_statfd = -1;
29690Sstevel@tonic-gate 	L->lwp_proc = P;
29700Sstevel@tonic-gate 	L->lwp_id = lwpid;
29710Sstevel@tonic-gate 	*Lp = L;	/* insert into the hash table */
29720Sstevel@tonic-gate 
29730Sstevel@tonic-gate 	if (P->state == PS_DEAD) {	/* core file */
29740Sstevel@tonic-gate 		if (getlwpstatus(P, lwpid, &L->lwp_status) == -1) {
29750Sstevel@tonic-gate 			rc = G_NOPROC;
29760Sstevel@tonic-gate 			goto err;
29770Sstevel@tonic-gate 		}
29780Sstevel@tonic-gate 		L->lwp_state = PS_DEAD;
29790Sstevel@tonic-gate 		*perr = 0;
29800Sstevel@tonic-gate 		(void) mutex_unlock(&P->proc_lock);
29810Sstevel@tonic-gate 		return (L);
29820Sstevel@tonic-gate 	}
29830Sstevel@tonic-gate 
29840Sstevel@tonic-gate 	/*
29850Sstevel@tonic-gate 	 * Open the /proc/<pid>/lwp/<lwpid> files
29860Sstevel@tonic-gate 	 */
2987*2712Snn35248 	(void) snprintf(procname, sizeof (procname), "%s/%d/lwp/%d/",
2988*2712Snn35248 	    procfs_path, (int)P->pid, (int)lwpid);
29890Sstevel@tonic-gate 	fname = procname + strlen(procname);
29900Sstevel@tonic-gate 	(void) set_minfd();
29910Sstevel@tonic-gate 
29920Sstevel@tonic-gate 	(void) strcpy(fname, "lwpstatus");
29930Sstevel@tonic-gate 	if ((fd = open(procname, O_RDONLY)) < 0 ||
29940Sstevel@tonic-gate 	    (fd = dupfd(fd, 0)) < 0) {
29950Sstevel@tonic-gate 		switch (errno) {
29960Sstevel@tonic-gate 		case ENOENT:
29970Sstevel@tonic-gate 			rc = G_NOPROC;
29980Sstevel@tonic-gate 			break;
29990Sstevel@tonic-gate 		default:
30000Sstevel@tonic-gate 			dprintf("Lgrab: failed to open %s: %s\n",
30010Sstevel@tonic-gate 			    procname, strerror(errno));
30020Sstevel@tonic-gate 			rc = G_STRANGE;
30030Sstevel@tonic-gate 			break;
30040Sstevel@tonic-gate 		}
30050Sstevel@tonic-gate 		goto err;
30060Sstevel@tonic-gate 	}
30070Sstevel@tonic-gate 	L->lwp_statfd = fd;
30080Sstevel@tonic-gate 
30090Sstevel@tonic-gate 	if (pread(fd, &L->lwp_status, sizeof (L->lwp_status), (off_t)0) < 0) {
30100Sstevel@tonic-gate 		switch (errno) {
30110Sstevel@tonic-gate 		case ENOENT:
30120Sstevel@tonic-gate 			rc = G_NOPROC;
30130Sstevel@tonic-gate 			break;
30140Sstevel@tonic-gate 		default:
30150Sstevel@tonic-gate 			dprintf("Lgrab: failed to read %s: %s\n",
30160Sstevel@tonic-gate 			    procname, strerror(errno));
30170Sstevel@tonic-gate 			rc = G_STRANGE;
30180Sstevel@tonic-gate 			break;
30190Sstevel@tonic-gate 		}
30200Sstevel@tonic-gate 		goto err;
30210Sstevel@tonic-gate 	}
30220Sstevel@tonic-gate 
30230Sstevel@tonic-gate 	(void) strcpy(fname, "lwpctl");
30240Sstevel@tonic-gate 	if ((fd = open(procname, O_WRONLY)) < 0 ||
30250Sstevel@tonic-gate 	    (fd = dupfd(fd, 0)) < 0) {
30260Sstevel@tonic-gate 		switch (errno) {
30270Sstevel@tonic-gate 		case ENOENT:
30280Sstevel@tonic-gate 			rc = G_NOPROC;
30290Sstevel@tonic-gate 			break;
30300Sstevel@tonic-gate 		default:
30310Sstevel@tonic-gate 			dprintf("Lgrab: failed to open %s: %s\n",
30320Sstevel@tonic-gate 			    procname, strerror(errno));
30330Sstevel@tonic-gate 			rc = G_STRANGE;
30340Sstevel@tonic-gate 			break;
30350Sstevel@tonic-gate 		}
30360Sstevel@tonic-gate 		goto err;
30370Sstevel@tonic-gate 	}
30380Sstevel@tonic-gate 	L->lwp_ctlfd = fd;
30390Sstevel@tonic-gate 
30400Sstevel@tonic-gate 	L->lwp_state =
30410Sstevel@tonic-gate 		((L->lwp_status.pr_flags & (PR_STOPPED|PR_ISTOP))
30420Sstevel@tonic-gate 		== (PR_STOPPED|PR_ISTOP))?
30430Sstevel@tonic-gate 		PS_STOP : PS_RUN;
30440Sstevel@tonic-gate 
30450Sstevel@tonic-gate 	*perr = 0;
30460Sstevel@tonic-gate 	(void) mutex_unlock(&P->proc_lock);
30470Sstevel@tonic-gate 	return (L);
30480Sstevel@tonic-gate 
30490Sstevel@tonic-gate err:
30500Sstevel@tonic-gate 	Lfree_internal(P, L);
30510Sstevel@tonic-gate 	*perr = rc;
30520Sstevel@tonic-gate 	(void) mutex_unlock(&P->proc_lock);
30530Sstevel@tonic-gate 	return (NULL);
30540Sstevel@tonic-gate }
30550Sstevel@tonic-gate 
30560Sstevel@tonic-gate /*
30570Sstevel@tonic-gate  * Return a printable string corresponding to an Lgrab() error return.
30580Sstevel@tonic-gate  */
30590Sstevel@tonic-gate const char *
30600Sstevel@tonic-gate Lgrab_error(int error)
30610Sstevel@tonic-gate {
30620Sstevel@tonic-gate 	const char *str;
30630Sstevel@tonic-gate 
30640Sstevel@tonic-gate 	switch (error) {
30650Sstevel@tonic-gate 	case G_NOPROC:
30660Sstevel@tonic-gate 		str = "no such LWP";
30670Sstevel@tonic-gate 		break;
30680Sstevel@tonic-gate 	case G_BUSY:
30690Sstevel@tonic-gate 		str = "LWP already grabbed";
30700Sstevel@tonic-gate 		break;
30710Sstevel@tonic-gate 	case G_STRANGE:
30720Sstevel@tonic-gate 		str = "unanticipated system error";
30730Sstevel@tonic-gate 		break;
30740Sstevel@tonic-gate 	default:
30750Sstevel@tonic-gate 		str = "unknown error";
30760Sstevel@tonic-gate 		break;
30770Sstevel@tonic-gate 	}
30780Sstevel@tonic-gate 
30790Sstevel@tonic-gate 	return (str);
30800Sstevel@tonic-gate }
30810Sstevel@tonic-gate 
30820Sstevel@tonic-gate /*
30830Sstevel@tonic-gate  * Free an LWP control structure.
30840Sstevel@tonic-gate  */
30850Sstevel@tonic-gate void
30860Sstevel@tonic-gate Lfree(struct ps_lwphandle *L)
30870Sstevel@tonic-gate {
30880Sstevel@tonic-gate 	struct ps_prochandle *P = L->lwp_proc;
30890Sstevel@tonic-gate 
30900Sstevel@tonic-gate 	(void) mutex_lock(&P->proc_lock);
30910Sstevel@tonic-gate 	Lfree_internal(P, L);
30920Sstevel@tonic-gate 	(void) mutex_unlock(&P->proc_lock);
30930Sstevel@tonic-gate }
30940Sstevel@tonic-gate 
30950Sstevel@tonic-gate static void
30960Sstevel@tonic-gate Lfree_internal(struct ps_prochandle *P, struct ps_lwphandle *L)
30970Sstevel@tonic-gate {
30980Sstevel@tonic-gate 	*Lfind(P, L->lwp_id) = L->lwp_hash;	/* delete from hash table */
30990Sstevel@tonic-gate 	if (L->lwp_ctlfd >= 0)
31000Sstevel@tonic-gate 		(void) close(L->lwp_ctlfd);
31010Sstevel@tonic-gate 	if (L->lwp_statfd >= 0)
31020Sstevel@tonic-gate 		(void) close(L->lwp_statfd);
31030Sstevel@tonic-gate 
31040Sstevel@tonic-gate 	/* clear out the structure as a precaution against reuse */
31050Sstevel@tonic-gate 	(void) memset(L, 0, sizeof (*L));
31060Sstevel@tonic-gate 	L->lwp_ctlfd = -1;
31070Sstevel@tonic-gate 	L->lwp_statfd = -1;
31080Sstevel@tonic-gate 
31090Sstevel@tonic-gate 	free(L);
31100Sstevel@tonic-gate }
31110Sstevel@tonic-gate 
31120Sstevel@tonic-gate /*
31130Sstevel@tonic-gate  * Return the state of the process, one of the PS_* values.
31140Sstevel@tonic-gate  */
31150Sstevel@tonic-gate int
31160Sstevel@tonic-gate Lstate(struct ps_lwphandle *L)
31170Sstevel@tonic-gate {
31180Sstevel@tonic-gate 	return (L->lwp_state);
31190Sstevel@tonic-gate }
31200Sstevel@tonic-gate 
31210Sstevel@tonic-gate /*
31220Sstevel@tonic-gate  * Return the open control file descriptor for the LWP.
31230Sstevel@tonic-gate  * Clients must not close this file descriptor, nor use it
31240Sstevel@tonic-gate  * after the LWP is freed.
31250Sstevel@tonic-gate  */
31260Sstevel@tonic-gate int
31270Sstevel@tonic-gate Lctlfd(struct ps_lwphandle *L)
31280Sstevel@tonic-gate {
31290Sstevel@tonic-gate 	return (L->lwp_ctlfd);
31300Sstevel@tonic-gate }
31310Sstevel@tonic-gate 
31320Sstevel@tonic-gate /*
31330Sstevel@tonic-gate  * Return a pointer to the LWP lwpsinfo structure.
31340Sstevel@tonic-gate  * Clients should not hold on to this pointer indefinitely.
31350Sstevel@tonic-gate  * It will become invalid on Lfree().
31360Sstevel@tonic-gate  */
31370Sstevel@tonic-gate const lwpsinfo_t *
31380Sstevel@tonic-gate Lpsinfo(struct ps_lwphandle *L)
31390Sstevel@tonic-gate {
31400Sstevel@tonic-gate 	if (Plwp_getpsinfo(L->lwp_proc, L->lwp_id, &L->lwp_psinfo) == -1)
31410Sstevel@tonic-gate 		return (NULL);
31420Sstevel@tonic-gate 
31430Sstevel@tonic-gate 	return (&L->lwp_psinfo);
31440Sstevel@tonic-gate }
31450Sstevel@tonic-gate 
31460Sstevel@tonic-gate /*
31470Sstevel@tonic-gate  * Return a pointer to the LWP status structure.
31480Sstevel@tonic-gate  * Clients should not hold on to this pointer indefinitely.
31490Sstevel@tonic-gate  * It will become invalid on Lfree().
31500Sstevel@tonic-gate  */
31510Sstevel@tonic-gate const lwpstatus_t *
31520Sstevel@tonic-gate Lstatus(struct ps_lwphandle *L)
31530Sstevel@tonic-gate {
31540Sstevel@tonic-gate 	return (&L->lwp_status);
31550Sstevel@tonic-gate }
31560Sstevel@tonic-gate 
31570Sstevel@tonic-gate /*
31580Sstevel@tonic-gate  * Given an LWP handle, return the process handle.
31590Sstevel@tonic-gate  */
31600Sstevel@tonic-gate struct ps_prochandle *
31610Sstevel@tonic-gate Lprochandle(struct ps_lwphandle *L)
31620Sstevel@tonic-gate {
31630Sstevel@tonic-gate 	return (L->lwp_proc);
31640Sstevel@tonic-gate }
31650Sstevel@tonic-gate 
31660Sstevel@tonic-gate /*
31670Sstevel@tonic-gate  * Ensure that all cached state is written to the LWP.
31680Sstevel@tonic-gate  * The cached state is the LWP's signal mask and registers.
31690Sstevel@tonic-gate  */
31700Sstevel@tonic-gate void
31710Sstevel@tonic-gate Lsync(struct ps_lwphandle *L)
31720Sstevel@tonic-gate {
31730Sstevel@tonic-gate 	int ctlfd = L->lwp_ctlfd;
31740Sstevel@tonic-gate 	long cmd[2];
31750Sstevel@tonic-gate 	iovec_t iov[4];
31760Sstevel@tonic-gate 	int n = 0;
31770Sstevel@tonic-gate 
31780Sstevel@tonic-gate 	if (L->lwp_flags & SETHOLD) {
31790Sstevel@tonic-gate 		cmd[0] = PCSHOLD;
31800Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[0];
31810Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
31820Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&L->lwp_status.pr_lwphold;
31830Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (L->lwp_status.pr_lwphold);
31840Sstevel@tonic-gate 	}
31850Sstevel@tonic-gate 	if (L->lwp_flags & SETREGS) {
31860Sstevel@tonic-gate 		cmd[1] = PCSREG;
31870Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&cmd[1];
31880Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (long);
31890Sstevel@tonic-gate 		iov[n].iov_base = (caddr_t)&L->lwp_status.pr_reg[0];
31900Sstevel@tonic-gate 		iov[n++].iov_len = sizeof (L->lwp_status.pr_reg);
31910Sstevel@tonic-gate 	}
31920Sstevel@tonic-gate 
31930Sstevel@tonic-gate 	if (n == 0 || writev(ctlfd, iov, n) < 0)
31940Sstevel@tonic-gate 		return;		/* nothing to do or write failed */
31950Sstevel@tonic-gate 
31960Sstevel@tonic-gate 	L->lwp_flags &= ~(SETHOLD|SETREGS);
31970Sstevel@tonic-gate }
31980Sstevel@tonic-gate 
31990Sstevel@tonic-gate /*
32000Sstevel@tonic-gate  * Wait for the specified LWP to stop or terminate.
32010Sstevel@tonic-gate  * Or, just get the current status (PCNULL).
32020Sstevel@tonic-gate  * Or, direct it to stop and get the current status (PCDSTOP).
32030Sstevel@tonic-gate  */
32040Sstevel@tonic-gate static int
32050Sstevel@tonic-gate Lstopstatus(struct ps_lwphandle *L,
32060Sstevel@tonic-gate 	long request,		/* PCNULL, PCDSTOP, PCSTOP, PCWSTOP */
32070Sstevel@tonic-gate 	uint_t msec)		/* if non-zero, timeout in milliseconds */
32080Sstevel@tonic-gate {
32090Sstevel@tonic-gate 	int ctlfd = L->lwp_ctlfd;
32100Sstevel@tonic-gate 	long ctl[3];
32110Sstevel@tonic-gate 	ssize_t rc;
32120Sstevel@tonic-gate 	int err;
32130Sstevel@tonic-gate 
32140Sstevel@tonic-gate 	switch (L->lwp_state) {
32150Sstevel@tonic-gate 	case PS_RUN:
32160Sstevel@tonic-gate 		break;
32170Sstevel@tonic-gate 	case PS_STOP:
32180Sstevel@tonic-gate 		if (request != PCNULL && request != PCDSTOP)
32190Sstevel@tonic-gate 			return (0);
32200Sstevel@tonic-gate 		break;
32210Sstevel@tonic-gate 	case PS_LOST:
32220Sstevel@tonic-gate 		if (request != PCNULL) {
32230Sstevel@tonic-gate 			errno = EAGAIN;
32240Sstevel@tonic-gate 			return (-1);
32250Sstevel@tonic-gate 		}
32260Sstevel@tonic-gate 		break;
32270Sstevel@tonic-gate 	case PS_UNDEAD:
32280Sstevel@tonic-gate 	case PS_DEAD:
32290Sstevel@tonic-gate 		if (request != PCNULL) {
32300Sstevel@tonic-gate 			errno = ENOENT;
32310Sstevel@tonic-gate 			return (-1);
32320Sstevel@tonic-gate 		}
32330Sstevel@tonic-gate 		break;
32340Sstevel@tonic-gate 	default:	/* corrupted state */
32350Sstevel@tonic-gate 		dprintf("Lstopstatus: corrupted state: %d\n", L->lwp_state);
32360Sstevel@tonic-gate 		errno = EINVAL;
32370Sstevel@tonic-gate 		return (-1);
32380Sstevel@tonic-gate 	}
32390Sstevel@tonic-gate 
32400Sstevel@tonic-gate 	ctl[0] = PCDSTOP;
32410Sstevel@tonic-gate 	ctl[1] = PCTWSTOP;
32420Sstevel@tonic-gate 	ctl[2] = (long)msec;
32430Sstevel@tonic-gate 	rc = 0;
32440Sstevel@tonic-gate 	switch (request) {
32450Sstevel@tonic-gate 	case PCSTOP:
32460Sstevel@tonic-gate 		rc = write(ctlfd, &ctl[0], 3*sizeof (long));
32470Sstevel@tonic-gate 		break;
32480Sstevel@tonic-gate 	case PCWSTOP:
32490Sstevel@tonic-gate 		rc = write(ctlfd, &ctl[1], 2*sizeof (long));
32500Sstevel@tonic-gate 		break;
32510Sstevel@tonic-gate 	case PCDSTOP:
32520Sstevel@tonic-gate 		rc = write(ctlfd, &ctl[0], 1*sizeof (long));
32530Sstevel@tonic-gate 		break;
32540Sstevel@tonic-gate 	case PCNULL:
32550Sstevel@tonic-gate 		if (L->lwp_state == PS_DEAD)
32560Sstevel@tonic-gate 			return (0); /* Nothing else to do for cores */
32570Sstevel@tonic-gate 		break;
32580Sstevel@tonic-gate 	default:	/* programming error */
32590Sstevel@tonic-gate 		errno = EINVAL;
32600Sstevel@tonic-gate 		return (-1);
32610Sstevel@tonic-gate 	}
32620Sstevel@tonic-gate 	err = (rc < 0)? errno : 0;
32630Sstevel@tonic-gate 	Lsync(L);
32640Sstevel@tonic-gate 
32650Sstevel@tonic-gate 	if (pread(L->lwp_statfd, &L->lwp_status,
32660Sstevel@tonic-gate 	    sizeof (L->lwp_status), (off_t)0) < 0)
32670Sstevel@tonic-gate 		err = errno;
32680Sstevel@tonic-gate 
32690Sstevel@tonic-gate 	if (err) {
32700Sstevel@tonic-gate 		switch (err) {
32710Sstevel@tonic-gate 		case EINTR:		/* user typed ctl-C */
32720Sstevel@tonic-gate 		case ERESTART:
32730Sstevel@tonic-gate 			dprintf("Lstopstatus: EINTR\n");
32740Sstevel@tonic-gate 			break;
32750Sstevel@tonic-gate 		case EAGAIN:		/* we lost control of the the process */
32760Sstevel@tonic-gate 			dprintf("Lstopstatus: EAGAIN\n");
32770Sstevel@tonic-gate 			L->lwp_state = PS_LOST;
32780Sstevel@tonic-gate 			errno = err;
32790Sstevel@tonic-gate 			return (-1);
32800Sstevel@tonic-gate 		default:
32810Sstevel@tonic-gate 			if (_libproc_debug) {
32820Sstevel@tonic-gate 				const char *errstr;
32830Sstevel@tonic-gate 
32840Sstevel@tonic-gate 				switch (request) {
32850Sstevel@tonic-gate 				case PCNULL:
32860Sstevel@tonic-gate 					errstr = "Lstopstatus PCNULL"; break;
32870Sstevel@tonic-gate 				case PCSTOP:
32880Sstevel@tonic-gate 					errstr = "Lstopstatus PCSTOP"; break;
32890Sstevel@tonic-gate 				case PCDSTOP:
32900Sstevel@tonic-gate 					errstr = "Lstopstatus PCDSTOP"; break;
32910Sstevel@tonic-gate 				case PCWSTOP:
32920Sstevel@tonic-gate 					errstr = "Lstopstatus PCWSTOP"; break;
32930Sstevel@tonic-gate 				default:
32940Sstevel@tonic-gate 					errstr = "Lstopstatus PC???"; break;
32950Sstevel@tonic-gate 				}
32960Sstevel@tonic-gate 				dprintf("%s: %s\n", errstr, strerror(err));
32970Sstevel@tonic-gate 			}
32980Sstevel@tonic-gate 			L->lwp_state = PS_UNDEAD;
32990Sstevel@tonic-gate 			errno = err;
33000Sstevel@tonic-gate 			return (-1);
33010Sstevel@tonic-gate 		}
33020Sstevel@tonic-gate 	}
33030Sstevel@tonic-gate 
33040Sstevel@tonic-gate 	if ((L->lwp_status.pr_flags & (PR_STOPPED|PR_ISTOP))
33050Sstevel@tonic-gate 	    != (PR_STOPPED|PR_ISTOP)) {
33060Sstevel@tonic-gate 		L->lwp_state = PS_RUN;
33070Sstevel@tonic-gate 		if (request == PCNULL || request == PCDSTOP || msec != 0)
33080Sstevel@tonic-gate 			return (0);
33090Sstevel@tonic-gate 		dprintf("Lstopstatus: LWP is not stopped\n");
33100Sstevel@tonic-gate 		errno = EPROTO;
33110Sstevel@tonic-gate 		return (-1);
33120Sstevel@tonic-gate 	}
33130Sstevel@tonic-gate 
33140Sstevel@tonic-gate 	L->lwp_state = PS_STOP;
33150Sstevel@tonic-gate 
33160Sstevel@tonic-gate 	if (_libproc_debug)	/* debugging */
33170Sstevel@tonic-gate 		prldump("Lstopstatus", &L->lwp_status);
33180Sstevel@tonic-gate 
33190Sstevel@tonic-gate 	switch (L->lwp_status.pr_why) {
33200Sstevel@tonic-gate 	case PR_SYSENTRY:
33210Sstevel@tonic-gate 	case PR_SYSEXIT:
33220Sstevel@tonic-gate 	case PR_REQUESTED:
33230Sstevel@tonic-gate 	case PR_SIGNALLED:
33240Sstevel@tonic-gate 	case PR_FAULTED:
33250Sstevel@tonic-gate 	case PR_JOBCONTROL:
33260Sstevel@tonic-gate 	case PR_SUSPENDED:
33270Sstevel@tonic-gate 		break;
33280Sstevel@tonic-gate 	default:
33290Sstevel@tonic-gate 		errno = EPROTO;
33300Sstevel@tonic-gate 		return (-1);
33310Sstevel@tonic-gate 	}
33320Sstevel@tonic-gate 
33330Sstevel@tonic-gate 	return (0);
33340Sstevel@tonic-gate }
33350Sstevel@tonic-gate 
33360Sstevel@tonic-gate /*
33370Sstevel@tonic-gate  * Wait for the LWP to stop for any reason.
33380Sstevel@tonic-gate  */
33390Sstevel@tonic-gate int
33400Sstevel@tonic-gate Lwait(struct ps_lwphandle *L, uint_t msec)
33410Sstevel@tonic-gate {
33420Sstevel@tonic-gate 	return (Lstopstatus(L, PCWSTOP, msec));
33430Sstevel@tonic-gate }
33440Sstevel@tonic-gate 
33450Sstevel@tonic-gate /*
33460Sstevel@tonic-gate  * Direct the LWP to stop; wait for it to stop.
33470Sstevel@tonic-gate  */
33480Sstevel@tonic-gate int
33490Sstevel@tonic-gate Lstop(struct ps_lwphandle *L, uint_t msec)
33500Sstevel@tonic-gate {
33510Sstevel@tonic-gate 	return (Lstopstatus(L, PCSTOP, msec));
33520Sstevel@tonic-gate }
33530Sstevel@tonic-gate 
33540Sstevel@tonic-gate /*
33550Sstevel@tonic-gate  * Direct the LWP to stop; don't wait.
33560Sstevel@tonic-gate  */
33570Sstevel@tonic-gate int
33580Sstevel@tonic-gate Ldstop(struct ps_lwphandle *L)
33590Sstevel@tonic-gate {
33600Sstevel@tonic-gate 	return (Lstopstatus(L, PCDSTOP, 0));
33610Sstevel@tonic-gate }
33620Sstevel@tonic-gate 
33630Sstevel@tonic-gate /*
33640Sstevel@tonic-gate  * Get the value of one register from stopped LWP.
33650Sstevel@tonic-gate  */
33660Sstevel@tonic-gate int
33670Sstevel@tonic-gate Lgetareg(struct ps_lwphandle *L, int regno, prgreg_t *preg)
33680Sstevel@tonic-gate {
33690Sstevel@tonic-gate 	if (regno < 0 || regno >= NPRGREG) {
33700Sstevel@tonic-gate 		errno = EINVAL;
33710Sstevel@tonic-gate 		return (-1);
33720Sstevel@tonic-gate 	}
33730Sstevel@tonic-gate 
33740Sstevel@tonic-gate 	if (L->lwp_state != PS_STOP) {
33750Sstevel@tonic-gate 		errno = EBUSY;
33760Sstevel@tonic-gate 		return (-1);
33770Sstevel@tonic-gate 	}
33780Sstevel@tonic-gate 
33790Sstevel@tonic-gate 	*preg = L->lwp_status.pr_reg[regno];
33800Sstevel@tonic-gate 	return (0);
33810Sstevel@tonic-gate }
33820Sstevel@tonic-gate 
33830Sstevel@tonic-gate /*
33840Sstevel@tonic-gate  * Put value of one register into stopped LWP.
33850Sstevel@tonic-gate  */
33860Sstevel@tonic-gate int
33870Sstevel@tonic-gate Lputareg(struct ps_lwphandle *L, int regno, prgreg_t reg)
33880Sstevel@tonic-gate {
33890Sstevel@tonic-gate 	if (regno < 0 || regno >= NPRGREG) {
33900Sstevel@tonic-gate 		errno = EINVAL;
33910Sstevel@tonic-gate 		return (-1);
33920Sstevel@tonic-gate 	}
33930Sstevel@tonic-gate 
33940Sstevel@tonic-gate 	if (L->lwp_state != PS_STOP) {
33950Sstevel@tonic-gate 		errno = EBUSY;
33960Sstevel@tonic-gate 		return (-1);
33970Sstevel@tonic-gate 	}
33980Sstevel@tonic-gate 
33990Sstevel@tonic-gate 	L->lwp_status.pr_reg[regno] = reg;
34000Sstevel@tonic-gate 	L->lwp_flags |= SETREGS;	/* set registers before continuing */
34010Sstevel@tonic-gate 	return (0);
34020Sstevel@tonic-gate }
34030Sstevel@tonic-gate 
34040Sstevel@tonic-gate int
34050Sstevel@tonic-gate Lsetrun(struct ps_lwphandle *L,
34060Sstevel@tonic-gate 	int sig,	/* signal to pass to LWP */
34070Sstevel@tonic-gate 	int flags)	/* PRSTEP|PRSABORT|PRSTOP|PRCSIG|PRCFAULT */
34080Sstevel@tonic-gate {
34090Sstevel@tonic-gate 	int ctlfd = L->lwp_ctlfd;
34100Sstevel@tonic-gate 	int sbits = (PR_DSTOP | PR_ISTOP | PR_ASLEEP);
34110Sstevel@tonic-gate 
34120Sstevel@tonic-gate 	long ctl[1 +					/* PCCFAULT	*/
34130Sstevel@tonic-gate 		1 + sizeof (siginfo_t)/sizeof (long) +	/* PCSSIG/PCCSIG */
34140Sstevel@tonic-gate 		2 ];					/* PCRUN	*/
34150Sstevel@tonic-gate 
34160Sstevel@tonic-gate 	long *ctlp = ctl;
34170Sstevel@tonic-gate 	size_t size;
34180Sstevel@tonic-gate 
34190Sstevel@tonic-gate 	if (L->lwp_state != PS_STOP &&
34200Sstevel@tonic-gate 	    (L->lwp_status.pr_flags & sbits) == 0) {
34210Sstevel@tonic-gate 		errno = EBUSY;
34220Sstevel@tonic-gate 		return (-1);
34230Sstevel@tonic-gate 	}
34240Sstevel@tonic-gate 
34250Sstevel@tonic-gate 	Lsync(L);	/* flush registers */
34260Sstevel@tonic-gate 
34270Sstevel@tonic-gate 	if (flags & PRCFAULT) {		/* clear current fault */
34280Sstevel@tonic-gate 		*ctlp++ = PCCFAULT;
34290Sstevel@tonic-gate 		flags &= ~PRCFAULT;
34300Sstevel@tonic-gate 	}
34310Sstevel@tonic-gate 
34320Sstevel@tonic-gate 	if (flags & PRCSIG) {		/* clear current signal */
34330Sstevel@tonic-gate 		*ctlp++ = PCCSIG;
34340Sstevel@tonic-gate 		flags &= ~PRCSIG;
34350Sstevel@tonic-gate 	} else if (sig && sig != L->lwp_status.pr_cursig) {
34360Sstevel@tonic-gate 		/* make current signal */
34370Sstevel@tonic-gate 		siginfo_t *infop;
34380Sstevel@tonic-gate 
34390Sstevel@tonic-gate 		*ctlp++ = PCSSIG;
34400Sstevel@tonic-gate 		infop = (siginfo_t *)ctlp;
34410Sstevel@tonic-gate 		(void) memset(infop, 0, sizeof (*infop));
34420Sstevel@tonic-gate 		infop->si_signo = sig;
34430Sstevel@tonic-gate 		ctlp += sizeof (siginfo_t) / sizeof (long);
34440Sstevel@tonic-gate 	}
34450Sstevel@tonic-gate 
34460Sstevel@tonic-gate 	*ctlp++ = PCRUN;
34470Sstevel@tonic-gate 	*ctlp++ = flags;
34480Sstevel@tonic-gate 	size = (char *)ctlp - (char *)ctl;
34490Sstevel@tonic-gate 
34500Sstevel@tonic-gate 	L->lwp_proc->info_valid = 0; /* will need to update map and file info */
34510Sstevel@tonic-gate 	L->lwp_proc->state = PS_RUN;
34520Sstevel@tonic-gate 	L->lwp_state = PS_RUN;
34530Sstevel@tonic-gate 
34540Sstevel@tonic-gate 	if (write(ctlfd, ctl, size) != size) {
34550Sstevel@tonic-gate 		/* Pretend that a job-stopped LWP is running */
34560Sstevel@tonic-gate 		if (errno != EBUSY || L->lwp_status.pr_why != PR_JOBCONTROL)
34570Sstevel@tonic-gate 			return (Lstopstatus(L, PCNULL, 0));
34580Sstevel@tonic-gate 	}
34590Sstevel@tonic-gate 
34600Sstevel@tonic-gate 	return (0);
34610Sstevel@tonic-gate }
34620Sstevel@tonic-gate 
34630Sstevel@tonic-gate int
34640Sstevel@tonic-gate Lclearsig(struct ps_lwphandle *L)
34650Sstevel@tonic-gate {
34660Sstevel@tonic-gate 	int ctlfd = L->lwp_ctlfd;
34670Sstevel@tonic-gate 	long ctl = PCCSIG;
34680Sstevel@tonic-gate 
34690Sstevel@tonic-gate 	if (write(ctlfd, &ctl, sizeof (ctl)) != sizeof (ctl))
34700Sstevel@tonic-gate 		return (-1);
34710Sstevel@tonic-gate 	L->lwp_status.pr_cursig = 0;
34720Sstevel@tonic-gate 	return (0);
34730Sstevel@tonic-gate }
34740Sstevel@tonic-gate 
34750Sstevel@tonic-gate int
34760Sstevel@tonic-gate Lclearfault(struct ps_lwphandle *L)
34770Sstevel@tonic-gate {
34780Sstevel@tonic-gate 	int ctlfd = L->lwp_ctlfd;
34790Sstevel@tonic-gate 	long ctl = PCCFAULT;
34800Sstevel@tonic-gate 
34810Sstevel@tonic-gate 	if (write(ctlfd, &ctl, sizeof (ctl)) != sizeof (ctl))
34820Sstevel@tonic-gate 		return (-1);
34830Sstevel@tonic-gate 	return (0);
34840Sstevel@tonic-gate }
34850Sstevel@tonic-gate 
34860Sstevel@tonic-gate /*
34870Sstevel@tonic-gate  * Step over a breakpoint, i.e., execute the instruction that
34880Sstevel@tonic-gate  * really belongs at the breakpoint location (the current %pc)
34890Sstevel@tonic-gate  * and leave the LWP stopped at the next instruction.
34900Sstevel@tonic-gate  */
34910Sstevel@tonic-gate int
34920Sstevel@tonic-gate Lxecbkpt(struct ps_lwphandle *L, ulong_t saved)
34930Sstevel@tonic-gate {
34940Sstevel@tonic-gate 	struct ps_prochandle *P = L->lwp_proc;
34950Sstevel@tonic-gate 	int rv, error;
34960Sstevel@tonic-gate 
34970Sstevel@tonic-gate 	if (L->lwp_state != PS_STOP) {
34980Sstevel@tonic-gate 		errno = EBUSY;
34990Sstevel@tonic-gate 		return (-1);
35000Sstevel@tonic-gate 	}
35010Sstevel@tonic-gate 
35020Sstevel@tonic-gate 	Lsync(L);
35030Sstevel@tonic-gate 	error = execute_bkpt(L->lwp_ctlfd,
35040Sstevel@tonic-gate 		&P->status.pr_flttrace, &L->lwp_status.pr_lwphold,
35050Sstevel@tonic-gate 		L->lwp_status.pr_reg[R_PC], saved);
35060Sstevel@tonic-gate 	rv = Lstopstatus(L, PCNULL, 0);
35070Sstevel@tonic-gate 
35080Sstevel@tonic-gate 	if (error != 0) {
35090Sstevel@tonic-gate 		if (L->lwp_status.pr_why == PR_JOBCONTROL &&
35100Sstevel@tonic-gate 		    error == EBUSY) {	/* jobcontrol stop -- back off */
35110Sstevel@tonic-gate 			L->lwp_state = PS_RUN;
35120Sstevel@tonic-gate 			return (0);
35130Sstevel@tonic-gate 		}
35140Sstevel@tonic-gate 		if (error == ENOENT)
35150Sstevel@tonic-gate 			return (0);
35160Sstevel@tonic-gate 		errno = error;
35170Sstevel@tonic-gate 		return (-1);
35180Sstevel@tonic-gate 	}
35190Sstevel@tonic-gate 
35200Sstevel@tonic-gate 	return (rv);
35210Sstevel@tonic-gate }
35220Sstevel@tonic-gate 
35230Sstevel@tonic-gate /*
35240Sstevel@tonic-gate  * Step over a watchpoint, i.e., execute the instruction that was stopped by
35250Sstevel@tonic-gate  * the watchpoint, and then leave the LWP stopped at the next instruction.
35260Sstevel@tonic-gate  */
35270Sstevel@tonic-gate int
35280Sstevel@tonic-gate Lxecwapt(struct ps_lwphandle *L, const prwatch_t *wp)
35290Sstevel@tonic-gate {
35300Sstevel@tonic-gate 	struct ps_prochandle *P = L->lwp_proc;
35310Sstevel@tonic-gate 	int rv, error;
35320Sstevel@tonic-gate 
35330Sstevel@tonic-gate 	if (L->lwp_state != PS_STOP) {
35340Sstevel@tonic-gate 		errno = EBUSY;
35350Sstevel@tonic-gate 		return (-1);
35360Sstevel@tonic-gate 	}
35370Sstevel@tonic-gate 
35380Sstevel@tonic-gate 	Lsync(L);
35390Sstevel@tonic-gate 	error = execute_wapt(L->lwp_ctlfd,
35400Sstevel@tonic-gate 		&P->status.pr_flttrace, &L->lwp_status.pr_lwphold, wp);
35410Sstevel@tonic-gate 	rv = Lstopstatus(L, PCNULL, 0);
35420Sstevel@tonic-gate 
35430Sstevel@tonic-gate 	if (error != 0) {
35440Sstevel@tonic-gate 		if (L->lwp_status.pr_why == PR_JOBCONTROL &&
35450Sstevel@tonic-gate 		    error == EBUSY) {	/* jobcontrol stop -- back off */
35460Sstevel@tonic-gate 			L->lwp_state = PS_RUN;
35470Sstevel@tonic-gate 			return (0);
35480Sstevel@tonic-gate 		}
35490Sstevel@tonic-gate 		if (error == ENOENT)
35500Sstevel@tonic-gate 			return (0);
35510Sstevel@tonic-gate 		errno = error;
35520Sstevel@tonic-gate 		return (-1);
35530Sstevel@tonic-gate 	}
35540Sstevel@tonic-gate 
35550Sstevel@tonic-gate 	return (rv);
35560Sstevel@tonic-gate }
35570Sstevel@tonic-gate 
35580Sstevel@tonic-gate int
35590Sstevel@tonic-gate Lstack(struct ps_lwphandle *L, stack_t *stkp)
35600Sstevel@tonic-gate {
35610Sstevel@tonic-gate 	struct ps_prochandle *P = L->lwp_proc;
35620Sstevel@tonic-gate 	uintptr_t addr = L->lwp_status.pr_ustack;
35630Sstevel@tonic-gate 
35640Sstevel@tonic-gate 	if (P->status.pr_dmodel == PR_MODEL_NATIVE) {
35650Sstevel@tonic-gate 		if (Pread(P, stkp, sizeof (*stkp), addr) != sizeof (*stkp))
35660Sstevel@tonic-gate 			return (-1);
35670Sstevel@tonic-gate #ifdef _LP64
35680Sstevel@tonic-gate 	} else {
35690Sstevel@tonic-gate 		stack32_t stk32;
35700Sstevel@tonic-gate 
35710Sstevel@tonic-gate 		if (Pread(P, &stk32, sizeof (stk32), addr) != sizeof (stk32))
35720Sstevel@tonic-gate 			return (-1);
35730Sstevel@tonic-gate 
35740Sstevel@tonic-gate 		stack_32_to_n(&stk32, stkp);
35750Sstevel@tonic-gate #endif
35760Sstevel@tonic-gate 	}
35770Sstevel@tonic-gate 
35780Sstevel@tonic-gate 	return (0);
35790Sstevel@tonic-gate }
35800Sstevel@tonic-gate 
35810Sstevel@tonic-gate int
35820Sstevel@tonic-gate Lmain_stack(struct ps_lwphandle *L, stack_t *stkp)
35830Sstevel@tonic-gate {
35840Sstevel@tonic-gate 	struct ps_prochandle *P = L->lwp_proc;
35850Sstevel@tonic-gate 
35860Sstevel@tonic-gate 	if (Lstack(L, stkp) != 0)
35870Sstevel@tonic-gate 		return (-1);
35880Sstevel@tonic-gate 
35890Sstevel@tonic-gate 	/*
35900Sstevel@tonic-gate 	 * If the SS_ONSTACK flag is set then this LWP is operating on the
35910Sstevel@tonic-gate 	 * alternate signal stack. We can recover the original stack from
35920Sstevel@tonic-gate 	 * pr_oldcontext.
35930Sstevel@tonic-gate 	 */
35940Sstevel@tonic-gate 	if (!(stkp->ss_flags & SS_ONSTACK))
35950Sstevel@tonic-gate 		return (0);
35960Sstevel@tonic-gate 
35970Sstevel@tonic-gate 	if (P->status.pr_dmodel == PR_MODEL_NATIVE) {
35980Sstevel@tonic-gate 		ucontext_t *ctxp = (void *)L->lwp_status.pr_oldcontext;
35990Sstevel@tonic-gate 
36000Sstevel@tonic-gate 		if (Pread(P, stkp, sizeof (*stkp),
36010Sstevel@tonic-gate 		    (uintptr_t)&ctxp->uc_stack) != sizeof (*stkp))
36020Sstevel@tonic-gate 			return (-1);
36030Sstevel@tonic-gate #ifdef _LP64
36040Sstevel@tonic-gate 	} else {
36050Sstevel@tonic-gate 		ucontext32_t *ctxp = (void *)L->lwp_status.pr_oldcontext;
36060Sstevel@tonic-gate 		stack32_t stk32;
36070Sstevel@tonic-gate 
36080Sstevel@tonic-gate 		if (Pread(P, &stk32, sizeof (stk32),
36090Sstevel@tonic-gate 		    (uintptr_t)&ctxp->uc_stack) != sizeof (stk32))
36100Sstevel@tonic-gate 			return (-1);
36110Sstevel@tonic-gate 
36120Sstevel@tonic-gate 		stack_32_to_n(&stk32, stkp);
36130Sstevel@tonic-gate #endif
36140Sstevel@tonic-gate 	}
36150Sstevel@tonic-gate 
36160Sstevel@tonic-gate 	return (0);
36170Sstevel@tonic-gate }
36180Sstevel@tonic-gate 
36190Sstevel@tonic-gate int
36200Sstevel@tonic-gate Lalt_stack(struct ps_lwphandle *L, stack_t *stkp)
36210Sstevel@tonic-gate {
36220Sstevel@tonic-gate 	if (L->lwp_status.pr_altstack.ss_flags & SS_DISABLE) {
36230Sstevel@tonic-gate 		errno = ENODATA;
36240Sstevel@tonic-gate 		return (-1);
36250Sstevel@tonic-gate 	}
36260Sstevel@tonic-gate 
36270Sstevel@tonic-gate 	*stkp = L->lwp_status.pr_altstack;
36280Sstevel@tonic-gate 
36290Sstevel@tonic-gate 	return (0);
36300Sstevel@tonic-gate }
36310Sstevel@tonic-gate 
36320Sstevel@tonic-gate /*
36330Sstevel@tonic-gate  * Add a mapping to the given proc handle.  Resizes the array as appropriate and
36340Sstevel@tonic-gate  * manages reference counts on the given file_info_t.
36350Sstevel@tonic-gate  *
36360Sstevel@tonic-gate  * The 'map_relocate' member is used to tell Psort_mappings() that the
36370Sstevel@tonic-gate  * associated file_map pointer needs to be relocated after the mappings have
36380Sstevel@tonic-gate  * been sorted.  It is only set for the first mapping, and has no meaning
36390Sstevel@tonic-gate  * outside these two functions.
36400Sstevel@tonic-gate  */
36410Sstevel@tonic-gate int
36420Sstevel@tonic-gate Padd_mapping(struct ps_prochandle *P, off64_t off, file_info_t *fp,
36430Sstevel@tonic-gate     prmap_t *pmap)
36440Sstevel@tonic-gate {
36450Sstevel@tonic-gate 	map_info_t *mp;
36460Sstevel@tonic-gate 
36470Sstevel@tonic-gate 	if (P->map_count == P->map_alloc) {
36480Sstevel@tonic-gate 		size_t next = P->map_alloc ? P->map_alloc * 2 : 16;
36490Sstevel@tonic-gate 
36500Sstevel@tonic-gate 		if ((P->mappings = realloc(P->mappings,
36510Sstevel@tonic-gate 		    next * sizeof (map_info_t))) == NULL)
36520Sstevel@tonic-gate 			return (-1);
36530Sstevel@tonic-gate 
36540Sstevel@tonic-gate 		P->map_alloc = next;
36550Sstevel@tonic-gate 	}
36560Sstevel@tonic-gate 
36570Sstevel@tonic-gate 	mp = &P->mappings[P->map_count++];
36580Sstevel@tonic-gate 
36590Sstevel@tonic-gate 	mp->map_offset = off;
36600Sstevel@tonic-gate 	mp->map_pmap = *pmap;
36610Sstevel@tonic-gate 	mp->map_relocate = 0;
36620Sstevel@tonic-gate 	if ((mp->map_file = fp) != NULL) {
36630Sstevel@tonic-gate 		if (fp->file_map == NULL) {
36640Sstevel@tonic-gate 			fp->file_map = mp;
36650Sstevel@tonic-gate 			mp->map_relocate = 1;
36660Sstevel@tonic-gate 		}
36670Sstevel@tonic-gate 		fp->file_ref++;
36680Sstevel@tonic-gate 	}
36690Sstevel@tonic-gate 
36700Sstevel@tonic-gate 	return (0);
36710Sstevel@tonic-gate }
36720Sstevel@tonic-gate 
36730Sstevel@tonic-gate static int
36740Sstevel@tonic-gate map_sort(const void *a, const void *b)
36750Sstevel@tonic-gate {
36760Sstevel@tonic-gate 	const map_info_t *ap = a, *bp = b;
36770Sstevel@tonic-gate 
36780Sstevel@tonic-gate 	if (ap->map_pmap.pr_vaddr < bp->map_pmap.pr_vaddr)
36790Sstevel@tonic-gate 		return (-1);
36800Sstevel@tonic-gate 	else if (ap->map_pmap.pr_vaddr > bp->map_pmap.pr_vaddr)
36810Sstevel@tonic-gate 		return (1);
36820Sstevel@tonic-gate 	else
36830Sstevel@tonic-gate 		return (0);
36840Sstevel@tonic-gate }
36850Sstevel@tonic-gate 
36860Sstevel@tonic-gate /*
36870Sstevel@tonic-gate  * Sort the current set of mappings.  Should be called during target
36880Sstevel@tonic-gate  * initialization after all calls to Padd_mapping() have been made.
36890Sstevel@tonic-gate  */
36900Sstevel@tonic-gate void
36910Sstevel@tonic-gate Psort_mappings(struct ps_prochandle *P)
36920Sstevel@tonic-gate {
36930Sstevel@tonic-gate 	int i;
36940Sstevel@tonic-gate 	map_info_t *mp;
36950Sstevel@tonic-gate 
36960Sstevel@tonic-gate 	qsort(P->mappings, P->map_count, sizeof (map_info_t), map_sort);
36970Sstevel@tonic-gate 
36980Sstevel@tonic-gate 	/*
36990Sstevel@tonic-gate 	 * Update all the file_map pointers to refer to the new locations.
37000Sstevel@tonic-gate 	 */
37010Sstevel@tonic-gate 	for (i = 0; i < P->map_count; i++) {
37020Sstevel@tonic-gate 		mp = &P->mappings[i];
37030Sstevel@tonic-gate 		if (mp->map_relocate)
37040Sstevel@tonic-gate 			mp->map_file->file_map = mp;
37050Sstevel@tonic-gate 		mp->map_relocate = 0;
37060Sstevel@tonic-gate 	}
37070Sstevel@tonic-gate }
3708