diff options
author | kib <kib@FreeBSD.org> | 2008-12-12 12:12:36 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2008-12-12 12:12:36 +0000 |
commit | e7474699031b041ffcf3a7c7165b2f7af248c413 (patch) | |
tree | c4771bfc265745292755e059aa4af2e925f6f38c /sys/fs/procfs/procfs_map.c | |
parent | 2ef4ea7ee81ea8c88c6424914105f12ff9b04a48 (diff) | |
download | FreeBSD-src-e7474699031b041ffcf3a7c7165b2f7af248c413.zip FreeBSD-src-e7474699031b041ffcf3a7c7165b2f7af248c413.tar.gz |
Reference the vmspace of the process being inspected by procfs, linprocfs
and sysctl kern_proc_vmmap handlers.
Reported and tested by: pho
Reviewed by: rwatson, des
MFC after: 1 week
Diffstat (limited to 'sys/fs/procfs/procfs_map.c')
-rw-r--r-- | sys/fs/procfs/procfs_map.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/fs/procfs/procfs_map.c b/sys/fs/procfs/procfs_map.c index d27415b..0d41345 100644 --- a/sys/fs/procfs/procfs_map.c +++ b/sys/fs/procfs/procfs_map.c @@ -53,6 +53,7 @@ #include <fs/procfs/procfs.h> #include <vm/vm.h> +#include <vm/vm_extern.h> #include <vm/pmap.h> #include <vm/vm_map.h> #include <vm/vm_page.h> @@ -82,7 +83,8 @@ extern struct sysentvec ia32_freebsd_sysvec; int procfs_doprocmap(PFS_FILL_ARGS) { - vm_map_t map = &p->p_vmspace->vm_map; + struct vmspace *vm; + vm_map_t map; vm_map_entry_t entry, tmp_entry; struct vnode *vp; char *fullpath, *freepath; @@ -109,6 +111,10 @@ procfs_doprocmap(PFS_FILL_ARGS) } #endif + vm = vmspace_acquire_ref(p); + if (vm == NULL) + return (ESRCH); + map = &vm->vm_map; vm_map_lock_read(map); for (entry = map->header.next; entry != &map->header; entry = entry->next) { @@ -235,5 +241,6 @@ procfs_doprocmap(PFS_FILL_ARGS) } } vm_map_unlock_read(map); + vmspace_free(vm); return (error); } |