1 /* $NetBSD: procfs_map.c,v 1.4 1999/03/24 05:51:27 mrg Exp $ */ 2 3 /* 4 * Copyright (c) 1993 Jan-Simon Pendry 5 * Copyright (c) 1993 6 * The Regents of the University of California. All rights reserved. 7 * 8 * This code is derived from software contributed to Berkeley by 9 * Jan-Simon Pendry. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions and the following disclaimer. 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in the 18 * documentation and/or other materials provided with the distribution. 19 * 3. All advertising materials mentioning features or use of this software 20 * must display the following acknowledgement: 21 * This product includes software developed by the University of 22 * California, Berkeley and its contributors. 23 * 4. Neither the name of the University nor the names of its contributors 24 * may be used to endorse or promote products derived from this software 25 * without specific prior written permission. 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 37 * SUCH DAMAGE. 38 * 39 * @(#)procfs_status.c 8.3 (Berkeley) 2/17/94 40 * 41 * $FreeBSD: procfs_map.c,v 1.18 1998/12/04 22:54:51 archie Exp $ 42 */ 43 44 #include <sys/param.h> 45 #include <sys/systm.h> 46 #include <sys/proc.h> 47 #include <sys/vnode.h> 48 #include <miscfs/procfs/procfs.h> 49 50 #include <vm/vm.h> 51 #include <vm/vm_prot.h> 52 #include <sys/lock.h> 53 #include <vm/pmap.h> 54 #include <vm/vm_map.h> 55 #include <vm/vm_page.h> 56 #include <vm/vm_object.h> 57 58 #include <uvm/uvm.h> 59 60 #define MEBUFFERSIZE 256 61 62 /* 63 * The map entries can *almost* be read with programs like cat. However, 64 * large maps need special programs to read. It is not easy to implement 65 * a program that can sense the required size of the buffer, and then 66 * subsequently do a read with the appropriate size. This operation cannot 67 * be atomic. The best that we can do is to allow the program to do a read 68 * with an arbitrarily large buffer, and return as much as we can. We can 69 * return an error code if the buffer is too small (EFBIG), then the program 70 * can try a bigger buffer. 71 */ 72 int 73 procfs_domap(curp, p, pfs, uio) 74 struct proc *curp; 75 struct proc *p; 76 struct pfsnode *pfs; 77 struct uio *uio; 78 { 79 int len; 80 int error; 81 vm_map_t map = &p->p_vmspace->vm_map; 82 vm_map_entry_t entry; 83 char mebuffer[MEBUFFERSIZE]; 84 85 if (uio->uio_rw != UIO_READ) 86 return (EOPNOTSUPP); 87 88 if (uio->uio_offset != 0) 89 return (0); 90 91 error = 0; 92 if (map != &curproc->p_vmspace->vm_map) 93 vm_map_lock_read(map); 94 for (entry = map->header.next; 95 ((uio->uio_resid > 0) && (entry != &map->header)); 96 entry = entry->next) { 97 98 if (UVM_ET_ISSUBMAP(entry)) 99 continue; 100 101 /* 102 * format: 103 * start, end, resident, private resident, cow, access, type. 104 */ 105 snprintf(mebuffer, sizeof(mebuffer), 106 "0x%lx 0x%lx %c%c%c %c%c%c %s %s %d %d %d\n", 107 entry->start, entry->end, 108 109 (entry->protection & VM_PROT_READ) ? 'r' : '-', 110 (entry->protection & VM_PROT_WRITE) ? 'w' : '-', 111 (entry->protection & VM_PROT_EXECUTE) ? 'x' : '-', 112 (entry->max_protection & VM_PROT_READ) ? 'r' : '-', 113 (entry->max_protection & VM_PROT_WRITE) ? 'w' : '-', 114 (entry->max_protection & VM_PROT_EXECUTE) ? 'x' : '-', 115 116 (entry->etype & UVM_ET_COPYONWRITE) ? "COW" : "NCOW", 117 (entry->etype & UVM_ET_NEEDSCOPY) ? "NC" : "NNC", 118 entry->inheritance, entry->wired_count , entry->advice 119 ); 120 121 122 len = strlen(mebuffer); 123 if (len > uio->uio_resid) { 124 error = EFBIG; 125 break; 126 } 127 error = uiomove(mebuffer, len, uio); 128 if (error) 129 break; 130 } 131 if (map != &curproc->p_vmspace->vm_map) 132 vm_map_unlock_read(map); 133 return error; 134 } 135 136 int 137 procfs_validmap(p) 138 struct proc *p; 139 { 140 return ((p->p_flag & P_SYSTEM) == 0); 141 } 142