2002-03-31 19:47:17 +02:00
|
|
|
|
/* FreeBSD-specific methods for using the /proc file system.
|
2003-11-07 16:57:22 +01:00
|
|
|
|
|
|
|
|
|
Copyright 2002, 2003 Free Software Foundation, Inc.
|
2002-03-31 19:47:17 +02:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "gdbcore.h"
|
|
|
|
|
#include "inferior.h"
|
2004-05-30 20:29:10 +02:00
|
|
|
|
#include "regcache.h"
|
|
|
|
|
#include "regset.h"
|
2002-03-31 19:47:17 +02:00
|
|
|
|
|
2004-05-30 20:29:10 +02:00
|
|
|
|
#include "gdb_assert.h"
|
|
|
|
|
#include "gdb_string.h"
|
2002-03-31 19:47:17 +02:00
|
|
|
|
#include <sys/procfs.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
child_pid_to_exec_file (int pid)
|
|
|
|
|
{
|
|
|
|
|
char *path;
|
|
|
|
|
char *buf;
|
|
|
|
|
|
2004-06-29 01:59:29 +02:00
|
|
|
|
path = xstrprintf ("/proc/%d/file", pid);
|
2002-03-31 19:47:17 +02:00
|
|
|
|
buf = xcalloc (MAXPATHLEN, sizeof (char));
|
|
|
|
|
make_cleanup (xfree, path);
|
|
|
|
|
make_cleanup (xfree, buf);
|
|
|
|
|
|
|
|
|
|
if (readlink (path, buf, MAXPATHLEN) > 0)
|
|
|
|
|
return buf;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2003-11-07 16:57:22 +01:00
|
|
|
|
read_mapping (FILE *mapfile, unsigned long *start, unsigned long *end,
|
2002-03-31 19:47:17 +02:00
|
|
|
|
char *protection)
|
|
|
|
|
{
|
2003-11-07 17:30:26 +01:00
|
|
|
|
/* FreeBSD 5.1-RELEASE uses a 256-byte buffer. */
|
|
|
|
|
char buf[256];
|
2002-03-31 19:47:17 +02:00
|
|
|
|
int resident, privateresident;
|
|
|
|
|
unsigned long obj;
|
2003-11-07 17:30:26 +01:00
|
|
|
|
int ret = EOF;
|
|
|
|
|
|
|
|
|
|
/* As of FreeBSD 5.0-RELEASE, the layout is described in
|
|
|
|
|
/usr/src/sys/fs/procfs/procfs_map.c. Somewhere in 5.1-CURRENT a
|
|
|
|
|
new column was added to the procfs map. Therefore we can't use
|
|
|
|
|
fscanf since we need to support older releases too. */
|
|
|
|
|
if (fgets (buf, sizeof buf, mapfile) != NULL)
|
|
|
|
|
ret = sscanf (buf, "%lx %lx %d %d %lx %s", start, end,
|
|
|
|
|
&resident, &privateresident, &obj, protection);
|
2002-03-31 19:47:17 +02:00
|
|
|
|
|
|
|
|
|
return (ret != 0 && ret != EOF);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2003-11-07 16:57:22 +01:00
|
|
|
|
fbsd_find_memory_regions (int (*func) (CORE_ADDR, unsigned long,
|
|
|
|
|
int, int, int, void *),
|
2002-03-31 19:47:17 +02:00
|
|
|
|
void *obfd)
|
|
|
|
|
{
|
|
|
|
|
pid_t pid = ptid_get_pid (inferior_ptid);
|
|
|
|
|
char *mapfilename;
|
|
|
|
|
FILE *mapfile;
|
|
|
|
|
unsigned long start, end, size;
|
|
|
|
|
char protection[4];
|
|
|
|
|
int read, write, exec;
|
|
|
|
|
|
2004-06-29 01:59:29 +02:00
|
|
|
|
mapfilename = xstrprintf ("/proc/%ld/map", (long) pid);
|
2002-03-31 19:47:17 +02:00
|
|
|
|
mapfile = fopen (mapfilename, "r");
|
|
|
|
|
if (mapfile == NULL)
|
|
|
|
|
error ("Couldn't open %s\n", mapfilename);
|
|
|
|
|
|
|
|
|
|
if (info_verbose)
|
|
|
|
|
fprintf_filtered (gdb_stdout,
|
|
|
|
|
"Reading memory regions from %s\n", mapfilename);
|
|
|
|
|
|
|
|
|
|
/* Now iterate until end-of-file. */
|
|
|
|
|
while (read_mapping (mapfile, &start, &end, &protection[0]))
|
|
|
|
|
{
|
|
|
|
|
size = end - start;
|
|
|
|
|
|
|
|
|
|
read = (strchr (protection, 'r') != 0);
|
|
|
|
|
write = (strchr (protection, 'w') != 0);
|
|
|
|
|
exec = (strchr (protection, 'x') != 0);
|
|
|
|
|
|
|
|
|
|
if (info_verbose)
|
|
|
|
|
{
|
|
|
|
|
fprintf_filtered (gdb_stdout,
|
|
|
|
|
"Save segment, %ld bytes at 0x%s (%c%c%c)\n",
|
|
|
|
|
size, paddr_nz (start),
|
|
|
|
|
read ? 'r' : '-',
|
|
|
|
|
write ? 'w' : '-',
|
|
|
|
|
exec ? 'x' : '-');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Invoke the callback function to create the corefile segment. */
|
|
|
|
|
func (start, size, read, write, exec, obfd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fclose (mapfile);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
fbsd_make_corefile_notes (bfd *obfd, int *note_size)
|
|
|
|
|
{
|
2004-05-30 20:29:10 +02:00
|
|
|
|
struct gdbarch *gdbarch = current_gdbarch;
|
|
|
|
|
const struct regcache *regcache = current_regcache;
|
2002-03-31 19:47:17 +02:00
|
|
|
|
gregset_t gregs;
|
|
|
|
|
fpregset_t fpregs;
|
|
|
|
|
char *note_data = NULL;
|
2003-10-30 20:29:40 +01:00
|
|
|
|
Elf_Internal_Ehdr *i_ehdrp;
|
2004-05-30 20:29:10 +02:00
|
|
|
|
const struct regset *regset;
|
|
|
|
|
size_t size;
|
2003-10-30 20:29:40 +01:00
|
|
|
|
|
|
|
|
|
/* Put a "FreeBSD" label in the ELF header. */
|
|
|
|
|
i_ehdrp = elf_elfheader (obfd);
|
|
|
|
|
i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_FREEBSD;
|
2002-03-31 19:47:17 +02:00
|
|
|
|
|
2004-05-30 20:29:10 +02:00
|
|
|
|
gdb_assert (gdbarch_regset_from_core_section_p (gdbarch));
|
|
|
|
|
|
|
|
|
|
size = sizeof gregs;
|
|
|
|
|
regset = gdbarch_regset_from_core_section (gdbarch, ".reg", size);
|
|
|
|
|
gdb_assert (regset && regset->collect_regset);
|
|
|
|
|
regset->collect_regset (regset, regcache, -1, &gregs, size);
|
|
|
|
|
|
2003-10-29 23:47:37 +01:00
|
|
|
|
note_data = elfcore_write_prstatus (obfd, note_data, note_size,
|
|
|
|
|
ptid_get_pid (inferior_ptid),
|
|
|
|
|
stop_signal, &gregs);
|
2002-03-31 19:47:17 +02:00
|
|
|
|
|
2004-05-30 20:29:10 +02:00
|
|
|
|
size = sizeof fpregs;
|
|
|
|
|
regset = gdbarch_regset_from_core_section (gdbarch, ".reg2", size);
|
|
|
|
|
gdb_assert (regset && regset->collect_regset);
|
|
|
|
|
regset->collect_regset (regset, regcache, -1, &fpregs, size);
|
|
|
|
|
|
2003-10-29 23:47:37 +01:00
|
|
|
|
note_data = elfcore_write_prfpreg (obfd, note_data, note_size,
|
|
|
|
|
&fpregs, sizeof (fpregs));
|
2002-03-31 19:47:17 +02:00
|
|
|
|
|
|
|
|
|
if (get_exec_file (0))
|
|
|
|
|
{
|
|
|
|
|
char *fname = strrchr (get_exec_file (0), '/') + 1;
|
2002-04-08 23:53:00 +02:00
|
|
|
|
char *psargs = xstrdup (fname);
|
2002-03-31 19:47:17 +02:00
|
|
|
|
|
|
|
|
|
if (get_inferior_args ())
|
|
|
|
|
psargs = reconcat (psargs, psargs, " ", get_inferior_args (), NULL);
|
|
|
|
|
|
2003-10-29 23:47:37 +01:00
|
|
|
|
note_data = elfcore_write_prpsinfo (obfd, note_data, note_size,
|
|
|
|
|
fname, psargs);
|
2002-03-31 19:47:17 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
make_cleanup (xfree, note_data);
|
|
|
|
|
return note_data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_initialize_fbsd_proc (void)
|
|
|
|
|
{
|
|
|
|
|
extern void inftarg_set_find_memory_regions ();
|
|
|
|
|
extern void inftarg_set_make_corefile_notes ();
|
|
|
|
|
|
|
|
|
|
inftarg_set_find_memory_regions (fbsd_find_memory_regions);
|
|
|
|
|
inftarg_set_make_corefile_notes (fbsd_make_corefile_notes);
|
|
|
|
|
}
|