1 /* $NetBSD: procfs_map.c,v 1.6 2000/06/25 13:26:22 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 <sys/lock.h> 52 #include <vm/pmap.h> 53 54 #include <uvm/uvm.h> 55 56 #define MEBUFFERSIZE 256 57 58 /* 59 * The map entries can *almost* be read with programs like cat. However, 60 * large maps need special programs to read. It is not easy to implement 61 * a program that can sense the required size of the buffer, and then 62 * subsequently do a read with the appropriate size. This operation cannot 63 * be atomic. The best that we can do is to allow the program to do a read 64 * with an arbitrarily large buffer, and return as much as we can. We can 65 * return an error code if the buffer is too small (EFBIG), then the program 66 * can try a bigger buffer. 67 */ 68 int 69 procfs_domap(curp, p, pfs, uio) 70 struct proc *curp; 71 struct proc *p; 72 struct pfsnode *pfs; 73 struct uio *uio; 74 { 75 int len; 76 int error; 77 vm_map_t map = &p->p_vmspace->vm_map; 78 vm_map_entry_t entry; 79 char mebuffer[MEBUFFERSIZE]; 80 81 if (uio->uio_rw != UIO_READ) 82 return (EOPNOTSUPP); 83 84 if (uio->uio_offset != 0) 85 return (0); 86 87 error = 0; 88 if (map != &curproc->p_vmspace->vm_map) 89 vm_map_lock_read(map); 90 for (entry = map->header.next; 91 ((uio->uio_resid > 0) && (entry != &map->header)); 92 entry = entry->next) { 93 94 if (UVM_ET_ISSUBMAP(entry)) 95 continue; 96 97 /* 98 * format: 99 * start, end, resident, private resident, cow, access, type. 100 */ 101 snprintf(mebuffer, sizeof(mebuffer), 102 "0x%lx 0x%lx %c%c%c %c%c%c %s %s %d %d %d\n", 103 entry->start, entry->end, 104 105 (entry->protection & VM_PROT_READ) ? 'r' : '-', 106 (entry->protection & VM_PROT_WRITE) ? 'w' : '-', 107 (entry->protection & VM_PROT_EXECUTE) ? 'x' : '-', 108 (entry->max_protection & VM_PROT_READ) ? 'r' : '-', 109 (entry->max_protection & VM_PROT_WRITE) ? 'w' : '-', 110 (entry->max_protection & VM_PROT_EXECUTE) ? 'x' : '-', 111 112 (entry->etype & UVM_ET_COPYONWRITE) ? "COW" : "NCOW", 113 (entry->etype & UVM_ET_NEEDSCOPY) ? "NC" : "NNC", 114 entry->inheritance, entry->wired_count , entry->advice 115 ); 116 117 118 len = strlen(mebuffer); 119 if (len > uio->uio_resid) { 120 error = EFBIG; 121 break; 122 } 123 error = uiomove(mebuffer, len, uio); 124 if (error) 125 break; 126 } 127 if (map != &curproc->p_vmspace->vm_map) 128 vm_map_unlock_read(map); 129 return error; 130 } 131 132 int 133 procfs_validmap(p) 134 struct proc *p; 135 { 136 return ((p->p_flag & P_SYSTEM) == 0); 137 } 138