1994-05-27 12:33:43 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-07-08 11:04:19 +00:00
|
|
|
static const char copyright[] =
|
1994-05-27 12:33:43 +00:00
|
|
|
"@(#) Copyright (c) 1992, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-07-08 11:04:19 +00:00
|
|
|
#if 0
|
1994-05-27 12:33:43 +00:00
|
|
|
static char sccsid[] = "@(#)gcore.c 8.2 (Berkeley) 9/23/93";
|
1997-07-08 11:04:19 +00:00
|
|
|
#endif
|
|
|
|
static const char rcsid[] =
|
1999-08-28 01:08:13 +00:00
|
|
|
"$FreeBSD$";
|
1994-05-27 12:33:43 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Originally written by Eric Cooper in Fall 1981.
|
|
|
|
* Inspired by a version 6 program by Len Levin, 1978.
|
|
|
|
* Several pieces of code lifted from Bill Joy's 4BSD ps.
|
|
|
|
* Most recently, hacked beyond recognition for 4.4BSD by Steven McCanne,
|
|
|
|
* Lawrence Berkeley Laboratory.
|
|
|
|
*
|
|
|
|
* Portions of this software were developed by the Computer Systems
|
|
|
|
* Engineering group at Lawrence Berkeley Laboratory under DARPA
|
|
|
|
* contract BG 91-66 and contributed to Berkeley.
|
|
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/user.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
|
|
|
#include <machine/vmparam.h>
|
|
|
|
|
|
|
|
#include <a.out.h>
|
1998-10-14 16:16:50 +00:00
|
|
|
#include <elf.h>
|
1997-07-08 11:04:19 +00:00
|
|
|
#include <err.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <kvm.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "extern.h"
|
|
|
|
|
1998-10-22 04:02:37 +00:00
|
|
|
static void core __P((int, int, struct kinfo_proc *));
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
static void datadump __P((int, int, struct kinfo_proc *, u_long, int));
|
1998-10-22 04:02:37 +00:00
|
|
|
static void killed __P((int));
|
|
|
|
static void restart_target __P((void));
|
|
|
|
static void usage __P((void)) __dead2;
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
static void userdump __P((int, struct kinfo_proc *, u_long, int));
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
kvm_t *kd;
|
1996-07-12 19:08:36 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
static int data_offset;
|
1998-10-22 04:02:37 +00:00
|
|
|
static pid_t pid;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char *argv[];
|
|
|
|
{
|
1998-10-19 19:42:18 +00:00
|
|
|
struct kinfo_proc *ki = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
struct exec exec;
|
1998-10-22 04:02:37 +00:00
|
|
|
int ch, cnt, efd, fd, sflag, uid;
|
1998-09-14 10:09:30 +00:00
|
|
|
char *binfile, *corefile;
|
2001-03-01 06:00:22 +00:00
|
|
|
char errbuf[_POSIX2_LINE_MAX], fname[MAXPATHLEN];
|
1998-10-19 19:42:18 +00:00
|
|
|
int is_aout;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
sflag = 0;
|
|
|
|
corefile = NULL;
|
1997-03-29 04:34:07 +00:00
|
|
|
while ((ch = getopt(argc, argv, "c:s")) != -1) {
|
1994-05-27 12:33:43 +00:00
|
|
|
switch (ch) {
|
|
|
|
case 'c':
|
|
|
|
corefile = optarg;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
sflag = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argv += optind;
|
|
|
|
argc -= optind;
|
|
|
|
|
1998-09-14 10:09:30 +00:00
|
|
|
/* XXX we should check that the pid argument is really a number */
|
|
|
|
switch (argc) {
|
|
|
|
case 1:
|
|
|
|
pid = atoi(argv[0]);
|
|
|
|
asprintf(&binfile, "/proc/%d/file", pid);
|
|
|
|
if (binfile == NULL)
|
|
|
|
errx(1, "allocation failure");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
pid = atoi(argv[1]);
|
|
|
|
binfile = argv[0];
|
|
|
|
break;
|
|
|
|
default:
|
1994-05-27 12:33:43 +00:00
|
|
|
usage();
|
1998-09-14 10:09:30 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1998-09-14 10:09:30 +00:00
|
|
|
efd = open(binfile, O_RDONLY, 0);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (efd < 0)
|
1998-09-14 10:09:30 +00:00
|
|
|
err(1, "%s", binfile);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
cnt = read(efd, &exec, sizeof(exec));
|
|
|
|
if (cnt != sizeof(exec))
|
1997-07-08 11:04:19 +00:00
|
|
|
errx(1, "%s exec header: %s",
|
1998-09-14 10:09:30 +00:00
|
|
|
binfile, cnt > 0 ? strerror(EIO) : strerror(errno));
|
1998-10-19 19:42:18 +00:00
|
|
|
if (!N_BADMAG(exec)) {
|
|
|
|
is_aout = 1;
|
|
|
|
/*
|
|
|
|
* This legacy a.out support uses the kvm interface instead
|
|
|
|
* of procfs.
|
|
|
|
*/
|
|
|
|
kd = kvm_openfiles(0, 0, 0, O_RDONLY, errbuf);
|
|
|
|
if (kd == NULL)
|
|
|
|
errx(1, "%s", errbuf);
|
|
|
|
|
|
|
|
uid = getuid();
|
|
|
|
|
|
|
|
ki = kvm_getprocs(kd, KERN_PROC_PID, pid, &cnt);
|
|
|
|
if (ki == NULL || cnt != 1)
|
|
|
|
errx(1, "%d: not found", pid);
|
|
|
|
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
if (ki->ki_ruid != uid && uid != 0)
|
1998-10-19 19:42:18 +00:00
|
|
|
errx(1, "%d: not owner", pid);
|
|
|
|
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
if (ki->ki_stat == SZOMB)
|
1998-10-19 19:42:18 +00:00
|
|
|
errx(1, "%d: zombie", pid);
|
|
|
|
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
if (ki->ki_flag & P_WEXIT)
|
1998-10-19 19:42:18 +00:00
|
|
|
errx(1, "%d: process exiting", pid);
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
if (ki->ki_flag & P_SYSTEM) /* Swapper or pagedaemon. */
|
1998-10-19 19:42:18 +00:00
|
|
|
errx(1, "%d: system process", pid);
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
if (exec.a_text != ptoa(ki->ki_tsize))
|
1998-10-19 19:42:18 +00:00
|
|
|
errx(1, "The executable %s does not belong to"
|
|
|
|
" process %d!\n"
|
1998-11-01 06:35:36 +00:00
|
|
|
"Text segment size (in bytes): executable %ld,"
|
1998-10-19 19:42:18 +00:00
|
|
|
" process %d", binfile, pid, exec.a_text,
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
ptoa(ki->ki_tsize));
|
1998-10-19 19:42:18 +00:00
|
|
|
data_offset = N_DATOFF(exec);
|
|
|
|
} else if (IS_ELF(*(Elf_Ehdr *)&exec)) {
|
|
|
|
is_aout = 0;
|
|
|
|
close(efd);
|
|
|
|
} else
|
1998-10-14 16:16:50 +00:00
|
|
|
errx(1, "Invalid executable file");
|
1998-08-24 16:25:30 +00:00
|
|
|
|
1998-10-19 19:42:18 +00:00
|
|
|
if (corefile == NULL) {
|
|
|
|
(void)snprintf(fname, sizeof(fname), "core.%d", pid);
|
|
|
|
corefile = fname;
|
|
|
|
}
|
|
|
|
fd = open(corefile, O_RDWR|O_CREAT|O_TRUNC, DEFFILEMODE);
|
|
|
|
if (fd < 0)
|
|
|
|
err(1, "%s", corefile);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1998-10-22 04:02:37 +00:00
|
|
|
if (sflag) {
|
|
|
|
signal(SIGHUP, killed);
|
|
|
|
signal(SIGINT, killed);
|
|
|
|
signal(SIGTERM, killed);
|
|
|
|
if (kill(pid, SIGSTOP) == -1)
|
|
|
|
err(1, "%d: stop signal", pid);
|
|
|
|
atexit(restart_target);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1998-10-19 19:42:18 +00:00
|
|
|
if (is_aout)
|
|
|
|
core(efd, fd, ki);
|
|
|
|
else
|
|
|
|
elf_coredump(fd, pid);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
(void)close(fd);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* core --
|
|
|
|
* Build the core file.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
core(efd, fd, ki)
|
|
|
|
int efd;
|
|
|
|
int fd;
|
|
|
|
struct kinfo_proc *ki;
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
struct user user;
|
|
|
|
char ubytes[ctob(UPAGES)];
|
|
|
|
} uarea;
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
int tsize = ki->ki_tsize;
|
|
|
|
int dsize = ki->ki_dsize;
|
|
|
|
int ssize = ki->ki_ssize;
|
1994-05-27 12:33:43 +00:00
|
|
|
int cnt;
|
|
|
|
|
|
|
|
/* Read in user struct */
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
cnt = kvm_read(kd, (u_long)ki->ki_addr, &uarea, sizeof(uarea));
|
1994-05-27 12:33:43 +00:00
|
|
|
if (cnt != sizeof(uarea))
|
1997-07-08 11:04:19 +00:00
|
|
|
errx(1, "read user structure: %s",
|
1994-05-27 12:33:43 +00:00
|
|
|
cnt > 0 ? strerror(EIO) : strerror(errno));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill in the eproc vm parameters, since these are garbage unless
|
|
|
|
* the kernel is dumping core or something.
|
|
|
|
*/
|
|
|
|
uarea.user.u_kproc = *ki;
|
|
|
|
|
|
|
|
/* Dump user area */
|
|
|
|
cnt = write(fd, &uarea, sizeof(uarea));
|
|
|
|
if (cnt != sizeof(uarea))
|
1997-07-08 11:04:19 +00:00
|
|
|
errx(1, "write user structure: %s",
|
1994-05-27 12:33:43 +00:00
|
|
|
cnt > 0 ? strerror(EIO) : strerror(errno));
|
|
|
|
|
|
|
|
/* Dump data segment */
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
datadump(efd, fd, ki, USRTEXT + ctob(tsize), dsize);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/* Dump stack segment */
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
userdump(fd, ki, USRSTACK - ctob(ssize), ssize);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/* Dump machine dependent portions of the core. */
|
|
|
|
md_core(kd, fd, ki);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
datadump(efd, fd, kp, addr, npage)
|
1994-05-27 12:33:43 +00:00
|
|
|
register int efd;
|
|
|
|
register int fd;
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
struct kinfo_proc *kp;
|
1994-05-27 12:33:43 +00:00
|
|
|
register u_long addr;
|
|
|
|
register int npage;
|
|
|
|
{
|
|
|
|
register int cc, delta;
|
1996-05-02 09:10:21 +00:00
|
|
|
char buffer[PAGE_SIZE];
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
delta = data_offset - addr;
|
|
|
|
while (--npage >= 0) {
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
cc = kvm_uread(kd, kp, addr, buffer, PAGE_SIZE);
|
1996-05-02 09:10:21 +00:00
|
|
|
if (cc != PAGE_SIZE) {
|
1994-05-27 12:33:43 +00:00
|
|
|
/* Try to read the page from the executable. */
|
|
|
|
if (lseek(efd, (off_t)addr + delta, SEEK_SET) == -1)
|
|
|
|
err(1, "seek executable: %s", strerror(errno));
|
|
|
|
cc = read(efd, buffer, sizeof(buffer));
|
1999-07-17 19:03:20 +00:00
|
|
|
if (cc != sizeof(buffer)) {
|
1995-05-30 06:41:30 +00:00
|
|
|
if (cc < 0)
|
1997-07-08 11:04:19 +00:00
|
|
|
err(1, "read executable");
|
1994-05-27 12:33:43 +00:00
|
|
|
else /* Assume untouched bss page. */
|
|
|
|
bzero(buffer, sizeof(buffer));
|
1999-07-17 19:03:20 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
1996-05-02 09:10:21 +00:00
|
|
|
cc = write(fd, buffer, PAGE_SIZE);
|
|
|
|
if (cc != PAGE_SIZE)
|
1997-07-08 11:04:19 +00:00
|
|
|
errx(1, "write data segment: %s",
|
1994-05-27 12:33:43 +00:00
|
|
|
cc > 0 ? strerror(EIO) : strerror(errno));
|
1996-05-02 09:10:21 +00:00
|
|
|
addr += PAGE_SIZE;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-10-22 04:02:37 +00:00
|
|
|
static void
|
|
|
|
killed(sig)
|
|
|
|
int sig;
|
|
|
|
{
|
|
|
|
restart_target();
|
|
|
|
signal(sig, SIG_DFL);
|
|
|
|
kill(getpid(), sig);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
restart_target()
|
|
|
|
{
|
|
|
|
kill(pid, SIGCONT);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
void
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
userdump(fd, kp, addr, npage)
|
1994-05-27 12:33:43 +00:00
|
|
|
register int fd;
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
struct kinfo_proc *kp;
|
1994-05-27 12:33:43 +00:00
|
|
|
register u_long addr;
|
|
|
|
register int npage;
|
|
|
|
{
|
|
|
|
register int cc;
|
1996-05-02 09:10:21 +00:00
|
|
|
char buffer[PAGE_SIZE];
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
while (--npage >= 0) {
|
Change the proc information returned from the kernel so that it
no longer contains kernel specific data structures, but rather
only scalar values and structures that are already part of the
kernel/user interface, specifically rusage and rtprio. It no
longer contains proc, session, pcred, ucred, procsig, vmspace,
pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If
any of these changed in size, ps, w, fstat, gcore, systat, and
top would all stop working. The new structure has over 200 bytes
of unassigned space for future values to be added, yet is nearly
100 bytes smaller per entry than the structure that it replaced.
2000-12-12 07:25:57 +00:00
|
|
|
cc = kvm_uread(kd, kp, addr, buffer, PAGE_SIZE);
|
1996-05-02 09:10:21 +00:00
|
|
|
if (cc != PAGE_SIZE)
|
1994-05-27 12:33:43 +00:00
|
|
|
/* Could be an untouched fill-with-zero page. */
|
1996-05-02 09:10:21 +00:00
|
|
|
bzero(buffer, PAGE_SIZE);
|
|
|
|
cc = write(fd, buffer, PAGE_SIZE);
|
|
|
|
if (cc != PAGE_SIZE)
|
1997-07-08 11:04:19 +00:00
|
|
|
errx(1, "write stack segment: %s",
|
1994-05-27 12:33:43 +00:00
|
|
|
cc > 0 ? strerror(EIO) : strerror(errno));
|
1996-05-02 09:10:21 +00:00
|
|
|
addr += PAGE_SIZE;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
(void)fprintf(stderr, "usage: gcore [-s] [-c core] executable pid\n");
|
|
|
|
exit(1);
|
|
|
|
}
|