2008-05-22 02:09:21 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2008 John Birrell (jb@freebsd.org)
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2016-12-06 04:13:02 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2014-05-03 04:44:03 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/sysctl.h>
|
2016-07-30 03:09:23 +00:00
|
|
|
#include <sys/user.h>
|
2014-05-03 04:44:03 +00:00
|
|
|
#include <sys/wait.h>
|
|
|
|
|
2008-05-22 02:09:21 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2014-05-03 04:44:03 +00:00
|
|
|
|
2016-07-30 03:09:23 +00:00
|
|
|
#include <libelf.h>
|
|
|
|
#include <libprocstat.h>
|
|
|
|
|
2014-05-03 04:44:03 +00:00
|
|
|
#include "_libproc.h"
|
|
|
|
|
2016-07-30 03:09:23 +00:00
|
|
|
static int getelfclass(int);
|
|
|
|
static int proc_init(pid_t, int, int, struct proc_handle **);
|
|
|
|
|
|
|
|
static int
|
|
|
|
getelfclass(int fd)
|
|
|
|
{
|
|
|
|
GElf_Ehdr ehdr;
|
|
|
|
Elf *e;
|
|
|
|
int class;
|
|
|
|
|
|
|
|
class = ELFCLASSNONE;
|
|
|
|
|
|
|
|
if ((e = elf_begin(fd, ELF_C_READ, NULL)) == NULL)
|
|
|
|
goto out;
|
|
|
|
if (gelf_getehdr(e, &ehdr) == NULL)
|
|
|
|
goto out;
|
|
|
|
class = ehdr.e_ident[EI_CLASS];
|
|
|
|
out:
|
|
|
|
(void)elf_end(e);
|
|
|
|
return (class);
|
|
|
|
}
|
2014-05-03 04:44:03 +00:00
|
|
|
|
|
|
|
static int
|
2016-07-30 03:09:23 +00:00
|
|
|
proc_init(pid_t pid, int flags, int status, struct proc_handle **pphdl)
|
2014-05-03 04:44:03 +00:00
|
|
|
{
|
2016-07-30 03:09:23 +00:00
|
|
|
struct kinfo_proc *kp;
|
|
|
|
struct proc_handle *phdl;
|
|
|
|
int error, class, count, fd;
|
|
|
|
|
2016-08-02 18:13:50 +00:00
|
|
|
error = ENOMEM;
|
2016-07-30 03:09:23 +00:00
|
|
|
if ((phdl = malloc(sizeof(*phdl))) == NULL)
|
2016-08-02 18:13:50 +00:00
|
|
|
goto out;
|
2014-05-03 04:44:03 +00:00
|
|
|
|
|
|
|
memset(phdl, 0, sizeof(*phdl));
|
2016-12-06 04:14:20 +00:00
|
|
|
phdl->public.pid = pid;
|
2014-05-03 04:44:03 +00:00
|
|
|
phdl->flags = flags;
|
|
|
|
phdl->status = status;
|
2016-07-30 03:09:23 +00:00
|
|
|
phdl->procstat = procstat_open_sysctl();
|
|
|
|
if (phdl->procstat == NULL)
|
2016-08-02 18:13:50 +00:00
|
|
|
goto out;
|
2014-05-03 04:44:03 +00:00
|
|
|
|
2016-07-30 03:09:23 +00:00
|
|
|
/* Obtain a path to the executable. */
|
|
|
|
if ((kp = procstat_getprocs(phdl->procstat, KERN_PROC_PID, pid,
|
|
|
|
&count)) == NULL)
|
2016-08-02 18:13:50 +00:00
|
|
|
goto out;
|
2016-07-30 03:09:23 +00:00
|
|
|
error = procstat_getpathname(phdl->procstat, kp, phdl->execpath,
|
|
|
|
sizeof(phdl->execpath));
|
|
|
|
procstat_freeprocs(phdl->procstat, kp);
|
|
|
|
if (error != 0)
|
2016-08-02 18:13:50 +00:00
|
|
|
goto out;
|
2016-07-30 03:09:23 +00:00
|
|
|
|
|
|
|
/* Use it to determine the data model for the process. */
|
|
|
|
if ((fd = open(phdl->execpath, O_RDONLY)) < 0) {
|
|
|
|
error = errno;
|
|
|
|
goto out;
|
2014-05-03 04:44:03 +00:00
|
|
|
}
|
2016-07-30 03:09:23 +00:00
|
|
|
class = getelfclass(fd);
|
|
|
|
switch (class) {
|
|
|
|
case ELFCLASS64:
|
|
|
|
phdl->model = PR_MODEL_LP64;
|
|
|
|
break;
|
|
|
|
case ELFCLASS32:
|
|
|
|
phdl->model = PR_MODEL_ILP32;
|
|
|
|
break;
|
|
|
|
case ELFCLASSNONE:
|
|
|
|
default:
|
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
(void)close(fd);
|
2014-05-03 04:44:03 +00:00
|
|
|
|
2016-07-30 03:09:23 +00:00
|
|
|
out:
|
|
|
|
*pphdl = phdl;
|
|
|
|
return (error);
|
2014-05-03 04:44:03 +00:00
|
|
|
}
|
2008-05-22 02:09:21 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
proc_attach(pid_t pid, int flags, struct proc_handle **pphdl)
|
|
|
|
{
|
|
|
|
struct proc_handle *phdl;
|
2016-07-30 03:09:23 +00:00
|
|
|
int error, status;
|
2008-05-22 02:09:21 +00:00
|
|
|
|
2016-12-06 04:22:38 +00:00
|
|
|
if (pid == 0 || (pid == getpid() && (flags & PATTACH_RDONLY) == 0))
|
2008-05-22 02:09:21 +00:00
|
|
|
return (EINVAL);
|
2016-07-30 03:09:23 +00:00
|
|
|
if (elf_version(EV_CURRENT) == EV_NONE)
|
|
|
|
return (ENOENT);
|
2008-05-22 02:09:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate memory for the process handle, a structure containing
|
|
|
|
* all things related to the process.
|
|
|
|
*/
|
2016-07-30 03:09:23 +00:00
|
|
|
error = proc_init(pid, flags, PS_RUN, &phdl);
|
2014-05-03 04:44:03 +00:00
|
|
|
if (error != 0)
|
|
|
|
goto out;
|
|
|
|
|
2016-12-06 04:22:38 +00:00
|
|
|
if ((flags & PATTACH_RDONLY) == 0) {
|
|
|
|
if (ptrace(PT_ATTACH, proc_getpid(phdl), 0, 0) != 0) {
|
|
|
|
error = errno;
|
|
|
|
DPRINTF("ERROR: cannot ptrace child process %d", pid);
|
|
|
|
goto out;
|
|
|
|
}
|
2008-05-22 02:09:21 +00:00
|
|
|
|
2016-12-06 04:22:38 +00:00
|
|
|
/* Wait for the child process to stop. */
|
|
|
|
if (waitpid(pid, &status, WUNTRACED) == -1) {
|
|
|
|
error = errno;
|
|
|
|
DPRINTF("ERROR: child process %d didn't stop as expected", pid);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for an unexpected status. */
|
|
|
|
if (!WIFSTOPPED(status))
|
|
|
|
DPRINTFX("ERROR: child process %d status 0x%x", pid, status);
|
|
|
|
else
|
|
|
|
phdl->status = PS_STOP;
|
|
|
|
|
|
|
|
if ((flags & PATTACH_NOSTOP) != 0)
|
|
|
|
proc_continue(phdl);
|
2010-07-31 16:10:20 +00:00
|
|
|
}
|
2008-05-22 02:09:21 +00:00
|
|
|
|
2011-08-03 09:55:59 +00:00
|
|
|
out:
|
2016-12-06 04:22:38 +00:00
|
|
|
if (error != 0 && phdl != NULL) {
|
2008-05-22 02:09:21 +00:00
|
|
|
proc_free(phdl);
|
2016-07-30 03:09:23 +00:00
|
|
|
phdl = NULL;
|
|
|
|
}
|
|
|
|
*pphdl = phdl;
|
2008-05-22 02:09:21 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2008-11-05 19:35:43 +00:00
|
|
|
proc_create(const char *file, char * const *argv, proc_child_func *pcf,
|
|
|
|
void *child_arg, struct proc_handle **pphdl)
|
2008-05-22 02:09:21 +00:00
|
|
|
{
|
|
|
|
struct proc_handle *phdl;
|
2017-03-22 18:31:44 +00:00
|
|
|
int error, status;
|
2008-05-22 02:09:21 +00:00
|
|
|
pid_t pid;
|
|
|
|
|
2016-07-30 03:09:23 +00:00
|
|
|
if (elf_version(EV_CURRENT) == EV_NONE)
|
|
|
|
return (ENOENT);
|
2010-07-31 16:10:20 +00:00
|
|
|
|
2017-03-22 18:33:29 +00:00
|
|
|
error = 0;
|
|
|
|
phdl = NULL;
|
|
|
|
|
2008-05-22 02:09:21 +00:00
|
|
|
/* Fork a new process. */
|
2008-11-05 19:35:43 +00:00
|
|
|
if ((pid = vfork()) == -1)
|
2008-05-22 02:09:21 +00:00
|
|
|
error = errno;
|
|
|
|
else if (pid == 0) {
|
|
|
|
/* The child expects to be traced. */
|
|
|
|
if (ptrace(PT_TRACE_ME, 0, 0, 0) != 0)
|
|
|
|
_exit(1);
|
|
|
|
|
2008-11-05 19:35:43 +00:00
|
|
|
if (pcf != NULL)
|
|
|
|
(*pcf)(child_arg);
|
|
|
|
|
2008-05-22 02:09:21 +00:00
|
|
|
/* Execute the specified file: */
|
|
|
|
execvp(file, argv);
|
|
|
|
|
|
|
|
/* Couldn't execute the file. */
|
|
|
|
_exit(2);
|
2016-07-30 03:09:23 +00:00
|
|
|
/* NOTREACHED */
|
2008-05-22 02:09:21 +00:00
|
|
|
} else {
|
|
|
|
/* The parent owns the process handle. */
|
2016-07-30 03:09:23 +00:00
|
|
|
error = proc_init(pid, 0, PS_IDLE, &phdl);
|
2014-05-03 04:44:03 +00:00
|
|
|
if (error != 0)
|
|
|
|
goto bad;
|
2008-05-22 02:09:21 +00:00
|
|
|
|
|
|
|
/* Wait for the child process to stop. */
|
2010-07-31 16:10:20 +00:00
|
|
|
if (waitpid(pid, &status, WUNTRACED) == -1) {
|
|
|
|
error = errno;
|
2013-10-27 20:39:10 +00:00
|
|
|
DPRINTF("ERROR: child process %d didn't stop as expected", pid);
|
2010-07-31 16:10:20 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
2008-05-22 02:09:21 +00:00
|
|
|
|
|
|
|
/* Check for an unexpected status. */
|
2016-07-30 03:09:23 +00:00
|
|
|
if (!WIFSTOPPED(status)) {
|
2017-03-22 18:31:44 +00:00
|
|
|
error = EBUSY;
|
2013-10-27 20:39:10 +00:00
|
|
|
DPRINTFX("ERROR: child process %d status 0x%x", pid, status);
|
2010-07-31 16:10:20 +00:00
|
|
|
goto bad;
|
2017-03-22 18:31:44 +00:00
|
|
|
}
|
|
|
|
phdl->status = PS_STOP;
|
|
|
|
|
2010-07-31 16:10:20 +00:00
|
|
|
bad:
|
2017-03-22 18:31:44 +00:00
|
|
|
if (error != 0 && phdl != NULL) {
|
|
|
|
proc_free(phdl);
|
|
|
|
phdl = NULL;
|
|
|
|
}
|
2016-07-30 03:09:23 +00:00
|
|
|
}
|
|
|
|
*pphdl = phdl;
|
2008-05-22 02:09:21 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
proc_free(struct proc_handle *phdl)
|
|
|
|
{
|
2016-12-06 04:19:08 +00:00
|
|
|
struct file_info *file;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < phdl->nmappings; i++) {
|
|
|
|
file = phdl->mappings[i].file;
|
|
|
|
if (file != NULL && --file->refs == 0) {
|
|
|
|
if (file->elf != NULL) {
|
|
|
|
(void)elf_end(file->elf);
|
|
|
|
(void)close(file->fd);
|
2016-12-06 04:21:35 +00:00
|
|
|
if (file->symtab.nsyms > 0)
|
|
|
|
free(file->symtab.index);
|
|
|
|
if (file->dynsymtab.nsyms > 0)
|
|
|
|
free(file->dynsymtab.index);
|
2016-12-06 04:19:08 +00:00
|
|
|
}
|
|
|
|
free(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (phdl->maparrsz > 0)
|
|
|
|
free(phdl->mappings);
|
2016-07-30 03:09:23 +00:00
|
|
|
if (phdl->procstat != NULL)
|
|
|
|
procstat_close(phdl->procstat);
|
2016-12-06 04:19:08 +00:00
|
|
|
if (phdl->rdap != NULL)
|
|
|
|
rd_delete(phdl->rdap);
|
2008-05-22 02:09:21 +00:00
|
|
|
free(phdl);
|
|
|
|
}
|