freebsd-dev/usr.bin/gcore/gcore.c

162 lines
4.4 KiB
C
Raw Normal View History

1994-05-27 12:33:43 +00:00
/*-
* SPDX-License-Identifier: BSD-3-Clause
*
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. Neither the name of the University nor the names of its contributors
1994-05-27 12:33:43 +00:00
* 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
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 */
#if 0
#ifndef lint
1994-05-27 12:33:43 +00:00
static char sccsid[] = "@(#)gcore.c 8.2 (Berkeley) 9/23/93";
#endif /* not lint */
#endif
2002-04-12 21:36:54 +00:00
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
1994-05-27 12:33:43 +00:00
/*
* 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.
*/
2002-04-12 21:36:54 +00:00
1994-05-27 12:33:43 +00:00
#include <sys/param.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/linker_set.h>
#include <sys/sysctl.h>
1994-05-27 12:33:43 +00:00
#include <err.h>
1994-05-27 12:33:43 +00:00
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
1994-05-27 12:33:43 +00:00
#include <unistd.h>
#include "extern.h"
int pflags;
1994-05-27 12:33:43 +00:00
2002-03-22 01:22:50 +00:00
static void killed(int);
static void usage(void) __dead2;
static pid_t pid;
1994-05-27 12:33:43 +00:00
SET_DECLARE(dumpset, struct dumpers);
1994-05-27 12:33:43 +00:00
int
main(int argc, char *argv[])
1994-05-27 12:33:43 +00:00
{
int ch, efd, fd, name[4];
char *binfile, *corefile;
char passpath[MAXPATHLEN], fname[MAXPATHLEN];
struct dumpers **d, *dumper;
size_t len;
1994-05-27 12:33:43 +00:00
pflags = 0;
1994-05-27 12:33:43 +00:00
corefile = NULL;
while ((ch = getopt(argc, argv, "c:f")) != -1) {
1994-05-27 12:33:43 +00:00
switch (ch) {
case 'c':
corefile = optarg;
break;
case 'f':
pflags |= PFLAGS_FULL;
break;
1994-05-27 12:33:43 +00:00
default:
usage();
break;
}
}
argv += optind;
argc -= optind;
/* XXX we should check that the pid argument is really a number */
switch (argc) {
case 1:
pid = atoi(argv[0]);
name[0] = CTL_KERN;
name[1] = KERN_PROC;
name[2] = KERN_PROC_PATHNAME;
name[3] = pid;
len = sizeof(passpath);
if (sysctl(name, 4, passpath, &len, NULL, 0) == -1)
errx(1, "kern.proc.pathname failure");
binfile = passpath;
break;
case 2:
pid = atoi(argv[1]);
binfile = argv[0];
break;
default:
1994-05-27 12:33:43 +00:00
usage();
}
efd = open(binfile, O_RDONLY, 0);
1994-05-27 12:33:43 +00:00
if (efd < 0)
err(1, "%s", binfile);
dumper = NULL;
SET_FOREACH(d, dumpset) {
lseek(efd, 0, SEEK_SET);
if (((*d)->ident)(efd, pid, binfile)) {
dumper = (*d);
lseek(efd, 0, SEEK_SET);
break;
}
}
if (dumper == NULL)
errx(1, "Invalid executable file");
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);
dumper->dump(efd, fd, pid);
1994-05-27 12:33:43 +00:00
(void)close(fd);
(void)close(efd);
1994-05-27 12:33:43 +00:00
exit(0);
}
void
usage(void)
1994-05-27 12:33:43 +00:00
{
(void)fprintf(stderr, "usage: gcore [-c core] [executable] pid\n");
1994-05-27 12:33:43 +00:00
exit(1);
}