Home | History | Annotate | Line # | Download | only in uvm
uvm_mmap.c revision 1.91.2.1
      1  1.91.2.1      yamt /*	$NetBSD: uvm_mmap.c,v 1.91.2.1 2006/06/21 15:12:40 yamt Exp $	*/
      2       1.1       mrg 
      3       1.1       mrg /*
      4       1.1       mrg  * Copyright (c) 1997 Charles D. Cranor and Washington University.
      5      1.51       chs  * Copyright (c) 1991, 1993 The Regents of the University of California.
      6       1.1       mrg  * Copyright (c) 1988 University of Utah.
      7      1.51       chs  *
      8       1.1       mrg  * All rights reserved.
      9       1.1       mrg  *
     10       1.1       mrg  * This code is derived from software contributed to Berkeley by
     11       1.1       mrg  * the Systems Programming Group of the University of Utah Computer
     12       1.1       mrg  * Science Department.
     13       1.1       mrg  *
     14       1.1       mrg  * Redistribution and use in source and binary forms, with or without
     15       1.1       mrg  * modification, are permitted provided that the following conditions
     16       1.1       mrg  * are met:
     17       1.1       mrg  * 1. Redistributions of source code must retain the above copyright
     18       1.1       mrg  *    notice, this list of conditions and the following disclaimer.
     19       1.1       mrg  * 2. Redistributions in binary form must reproduce the above copyright
     20       1.1       mrg  *    notice, this list of conditions and the following disclaimer in the
     21       1.1       mrg  *    documentation and/or other materials provided with the distribution.
     22       1.1       mrg  * 3. All advertising materials mentioning features or use of this software
     23       1.1       mrg  *    must display the following acknowledgement:
     24       1.1       mrg  *      This product includes software developed by the Charles D. Cranor,
     25      1.51       chs  *	Washington University, University of California, Berkeley and
     26       1.1       mrg  *	its contributors.
     27       1.1       mrg  * 4. Neither the name of the University nor the names of its contributors
     28       1.1       mrg  *    may be used to endorse or promote products derived from this software
     29       1.1       mrg  *    without specific prior written permission.
     30       1.1       mrg  *
     31       1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     32       1.1       mrg  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     33       1.1       mrg  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     34       1.1       mrg  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     35       1.1       mrg  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36       1.1       mrg  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37       1.1       mrg  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38       1.1       mrg  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     39       1.1       mrg  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     40       1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     41       1.1       mrg  * SUCH DAMAGE.
     42       1.1       mrg  *
     43       1.1       mrg  * from: Utah $Hdr: vm_mmap.c 1.6 91/10/21$
     44       1.1       mrg  *      @(#)vm_mmap.c   8.5 (Berkeley) 5/19/94
     45       1.3       mrg  * from: Id: uvm_mmap.c,v 1.1.2.14 1998/01/05 21:04:26 chuck Exp
     46       1.1       mrg  */
     47       1.1       mrg 
     48       1.1       mrg /*
     49       1.1       mrg  * uvm_mmap.c: system call interface into VM system, plus kernel vm_mmap
     50       1.1       mrg  * function.
     51       1.1       mrg  */
     52      1.60     lukem 
     53      1.60     lukem #include <sys/cdefs.h>
     54  1.91.2.1      yamt __KERNEL_RCSID(0, "$NetBSD: uvm_mmap.c,v 1.91.2.1 2006/06/21 15:12:40 yamt Exp $");
     55      1.80  jdolecek 
     56      1.80  jdolecek #include "opt_compat_netbsd.h"
     57  1.91.2.1      yamt #include "opt_pax.h"
     58      1.60     lukem 
     59       1.1       mrg #include <sys/param.h>
     60       1.1       mrg #include <sys/systm.h>
     61       1.1       mrg #include <sys/file.h>
     62       1.1       mrg #include <sys/filedesc.h>
     63       1.1       mrg #include <sys/resourcevar.h>
     64       1.1       mrg #include <sys/mman.h>
     65       1.1       mrg #include <sys/mount.h>
     66       1.1       mrg #include <sys/proc.h>
     67       1.1       mrg #include <sys/malloc.h>
     68       1.1       mrg #include <sys/vnode.h>
     69       1.1       mrg #include <sys/conf.h>
     70       1.9       mrg #include <sys/stat.h>
     71  1.91.2.1      yamt 
     72  1.91.2.1      yamt #ifdef PAX_MPROTECT
     73  1.91.2.1      yamt #include <sys/pax.h>
     74  1.91.2.1      yamt #endif /* PAX_MPROTECT */
     75       1.1       mrg 
     76       1.1       mrg #include <miscfs/specfs/specdev.h>
     77       1.1       mrg 
     78      1.67   thorpej #include <sys/sa.h>
     79       1.1       mrg #include <sys/syscallargs.h>
     80       1.1       mrg 
     81       1.1       mrg #include <uvm/uvm.h>
     82       1.1       mrg #include <uvm/uvm_device.h>
     83       1.1       mrg 
     84      1.80  jdolecek #ifndef COMPAT_ZERODEV
     85      1.81       dsl #define COMPAT_ZERODEV(dev)	(0)
     86      1.80  jdolecek #endif
     87       1.1       mrg 
     88       1.1       mrg /*
     89       1.1       mrg  * unimplemented VM system calls:
     90       1.1       mrg  */
     91       1.1       mrg 
     92       1.1       mrg /*
     93       1.1       mrg  * sys_sbrk: sbrk system call.
     94       1.1       mrg  */
     95       1.1       mrg 
     96       1.1       mrg /* ARGSUSED */
     97       1.6       mrg int
     98      1.67   thorpej sys_sbrk(l, v, retval)
     99      1.67   thorpej 	struct lwp *l;
    100       1.6       mrg 	void *v;
    101       1.6       mrg 	register_t *retval;
    102       1.1       mrg {
    103       1.1       mrg #if 0
    104       1.6       mrg 	struct sys_sbrk_args /* {
    105      1.33    kleink 		syscallarg(intptr_t) incr;
    106      1.20       mrg 	} */ *uap = v;
    107       1.1       mrg #endif
    108       1.6       mrg 
    109      1.17    kleink 	return (ENOSYS);
    110       1.1       mrg }
    111       1.1       mrg 
    112       1.1       mrg /*
    113       1.1       mrg  * sys_sstk: sstk system call.
    114       1.1       mrg  */
    115       1.1       mrg 
    116       1.1       mrg /* ARGSUSED */
    117       1.6       mrg int
    118      1.67   thorpej sys_sstk(l, v, retval)
    119      1.67   thorpej 	struct lwp *l;
    120       1.6       mrg 	void *v;
    121       1.6       mrg 	register_t *retval;
    122       1.1       mrg {
    123       1.1       mrg #if 0
    124       1.6       mrg 	struct sys_sstk_args /* {
    125      1.20       mrg 		syscallarg(int) incr;
    126      1.20       mrg 	} */ *uap = v;
    127       1.1       mrg #endif
    128       1.6       mrg 
    129      1.17    kleink 	return (ENOSYS);
    130       1.1       mrg }
    131       1.1       mrg 
    132       1.1       mrg /*
    133       1.1       mrg  * sys_mincore: determine if pages are in core or not.
    134       1.1       mrg  */
    135       1.1       mrg 
    136       1.1       mrg /* ARGSUSED */
    137       1.6       mrg int
    138      1.67   thorpej sys_mincore(l, v, retval)
    139      1.67   thorpej 	struct lwp *l;
    140       1.6       mrg 	void *v;
    141       1.6       mrg 	register_t *retval;
    142       1.1       mrg {
    143       1.6       mrg 	struct sys_mincore_args /* {
    144      1.22   thorpej 		syscallarg(void *) addr;
    145      1.20       mrg 		syscallarg(size_t) len;
    146      1.20       mrg 		syscallarg(char *) vec;
    147      1.20       mrg 	} */ *uap = v;
    148      1.67   thorpej 	struct proc *p = l->l_proc;
    149      1.56       chs 	struct vm_page *pg;
    150      1.22   thorpej 	char *vec, pgi;
    151      1.22   thorpej 	struct uvm_object *uobj;
    152      1.22   thorpej 	struct vm_amap *amap;
    153      1.22   thorpej 	struct vm_anon *anon;
    154      1.53       chs 	struct vm_map_entry *entry;
    155      1.22   thorpej 	vaddr_t start, end, lim;
    156      1.53       chs 	struct vm_map *map;
    157      1.22   thorpej 	vsize_t len;
    158      1.22   thorpej 	int error = 0, npgs;
    159      1.22   thorpej 
    160      1.22   thorpej 	map = &p->p_vmspace->vm_map;
    161      1.22   thorpej 
    162      1.22   thorpej 	start = (vaddr_t)SCARG(uap, addr);
    163      1.22   thorpej 	len = SCARG(uap, len);
    164      1.22   thorpej 	vec = SCARG(uap, vec);
    165      1.22   thorpej 
    166      1.22   thorpej 	if (start & PAGE_MASK)
    167      1.22   thorpej 		return (EINVAL);
    168      1.22   thorpej 	len = round_page(len);
    169      1.22   thorpej 	end = start + len;
    170      1.22   thorpej 	if (end <= start)
    171      1.22   thorpej 		return (EINVAL);
    172      1.22   thorpej 
    173      1.22   thorpej 	/*
    174      1.22   thorpej 	 * Lock down vec, so our returned status isn't outdated by
    175      1.22   thorpej 	 * storing the status byte for a page.
    176      1.22   thorpej 	 */
    177      1.50       chs 
    178      1.62       chs 	npgs = len >> PAGE_SHIFT;
    179      1.62       chs 	error = uvm_vslock(p, vec, npgs, VM_PROT_WRITE);
    180      1.62       chs 	if (error) {
    181      1.62       chs 		return error;
    182      1.62       chs 	}
    183      1.22   thorpej 	vm_map_lock_read(map);
    184      1.22   thorpej 
    185      1.22   thorpej 	if (uvm_map_lookup_entry(map, start, &entry) == FALSE) {
    186      1.22   thorpej 		error = ENOMEM;
    187      1.22   thorpej 		goto out;
    188      1.22   thorpej 	}
    189      1.22   thorpej 
    190      1.22   thorpej 	for (/* nothing */;
    191      1.22   thorpej 	     entry != &map->header && entry->start < end;
    192      1.22   thorpej 	     entry = entry->next) {
    193      1.49       chs 		KASSERT(!UVM_ET_ISSUBMAP(entry));
    194      1.49       chs 		KASSERT(start >= entry->start);
    195      1.49       chs 
    196      1.22   thorpej 		/* Make sure there are no holes. */
    197      1.22   thorpej 		if (entry->end < end &&
    198      1.22   thorpej 		     (entry->next == &map->header ||
    199      1.22   thorpej 		      entry->next->start > entry->end)) {
    200      1.22   thorpej 			error = ENOMEM;
    201      1.22   thorpej 			goto out;
    202      1.22   thorpej 		}
    203       1.6       mrg 
    204      1.22   thorpej 		lim = end < entry->end ? end : entry->end;
    205      1.22   thorpej 
    206      1.22   thorpej 		/*
    207      1.31   thorpej 		 * Special case for objects with no "real" pages.  Those
    208      1.31   thorpej 		 * are always considered resident (mapped devices).
    209      1.22   thorpej 		 */
    210      1.50       chs 
    211      1.22   thorpej 		if (UVM_ET_ISOBJ(entry)) {
    212      1.49       chs 			KASSERT(!UVM_OBJ_IS_KERN_OBJECT(entry->object.uvm_obj));
    213      1.79      yamt 			if (UVM_OBJ_IS_DEVICE(entry->object.uvm_obj)) {
    214      1.22   thorpej 				for (/* nothing */; start < lim;
    215      1.22   thorpej 				     start += PAGE_SIZE, vec++)
    216      1.22   thorpej 					subyte(vec, 1);
    217      1.22   thorpej 				continue;
    218      1.22   thorpej 			}
    219      1.22   thorpej 		}
    220      1.22   thorpej 
    221      1.32   thorpej 		amap = entry->aref.ar_amap;	/* top layer */
    222      1.32   thorpej 		uobj = entry->object.uvm_obj;	/* bottom layer */
    223      1.22   thorpej 
    224      1.22   thorpej 		if (amap != NULL)
    225      1.22   thorpej 			amap_lock(amap);
    226      1.22   thorpej 		if (uobj != NULL)
    227      1.22   thorpej 			simple_lock(&uobj->vmobjlock);
    228      1.22   thorpej 
    229      1.22   thorpej 		for (/* nothing */; start < lim; start += PAGE_SIZE, vec++) {
    230      1.22   thorpej 			pgi = 0;
    231      1.22   thorpej 			if (amap != NULL) {
    232      1.22   thorpej 				/* Check the top layer first. */
    233      1.22   thorpej 				anon = amap_lookup(&entry->aref,
    234      1.22   thorpej 				    start - entry->start);
    235      1.22   thorpej 				/* Don't need to lock anon here. */
    236      1.91      yamt 				if (anon != NULL && anon->an_page != NULL) {
    237      1.50       chs 
    238      1.22   thorpej 					/*
    239      1.22   thorpej 					 * Anon has the page for this entry
    240      1.22   thorpej 					 * offset.
    241      1.22   thorpej 					 */
    242      1.50       chs 
    243      1.22   thorpej 					pgi = 1;
    244      1.22   thorpej 				}
    245      1.22   thorpej 			}
    246      1.22   thorpej 			if (uobj != NULL && pgi == 0) {
    247      1.22   thorpej 				/* Check the bottom layer. */
    248      1.56       chs 				pg = uvm_pagelookup(uobj,
    249      1.22   thorpej 				    entry->offset + (start - entry->start));
    250      1.56       chs 				if (pg != NULL) {
    251      1.50       chs 
    252      1.22   thorpej 					/*
    253      1.22   thorpej 					 * Object has the page for this entry
    254      1.22   thorpej 					 * offset.
    255      1.22   thorpej 					 */
    256      1.50       chs 
    257      1.22   thorpej 					pgi = 1;
    258      1.22   thorpej 				}
    259      1.22   thorpej 			}
    260      1.22   thorpej 			(void) subyte(vec, pgi);
    261      1.22   thorpej 		}
    262      1.22   thorpej 		if (uobj != NULL)
    263      1.27   thorpej 			simple_unlock(&uobj->vmobjlock);
    264      1.22   thorpej 		if (amap != NULL)
    265      1.22   thorpej 			amap_unlock(amap);
    266      1.22   thorpej 	}
    267      1.22   thorpej 
    268      1.22   thorpej  out:
    269      1.22   thorpej 	vm_map_unlock_read(map);
    270      1.22   thorpej 	uvm_vsunlock(p, SCARG(uap, vec), npgs);
    271      1.22   thorpej 	return (error);
    272       1.1       mrg }
    273       1.1       mrg 
    274       1.1       mrg /*
    275       1.1       mrg  * sys_mmap: mmap system call.
    276       1.1       mrg  *
    277      1.64    atatat  * => file offset and address may not be page aligned
    278       1.1       mrg  *    - if MAP_FIXED, offset and address must have remainder mod PAGE_SIZE
    279       1.1       mrg  *    - if address isn't page aligned the mapping starts at trunc_page(addr)
    280       1.1       mrg  *      and the return value is adjusted up by the page offset.
    281       1.1       mrg  */
    282       1.1       mrg 
    283       1.6       mrg int
    284      1.67   thorpej sys_mmap(l, v, retval)
    285      1.67   thorpej 	struct lwp *l;
    286       1.6       mrg 	void *v;
    287       1.6       mrg 	register_t *retval;
    288       1.6       mrg {
    289      1.40  augustss 	struct sys_mmap_args /* {
    290       1.6       mrg 		syscallarg(caddr_t) addr;
    291       1.6       mrg 		syscallarg(size_t) len;
    292       1.6       mrg 		syscallarg(int) prot;
    293       1.6       mrg 		syscallarg(int) flags;
    294       1.6       mrg 		syscallarg(int) fd;
    295       1.6       mrg 		syscallarg(long) pad;
    296       1.6       mrg 		syscallarg(off_t) pos;
    297       1.6       mrg 	} */ *uap = v;
    298      1.67   thorpej 	struct proc *p = l->l_proc;
    299      1.12       eeh 	vaddr_t addr;
    300       1.9       mrg 	struct vattr va;
    301       1.6       mrg 	off_t pos;
    302      1.12       eeh 	vsize_t size, pageoff;
    303       1.6       mrg 	vm_prot_t prot, maxprot;
    304       1.6       mrg 	int flags, fd;
    305      1.89      fvdl 	vaddr_t vm_min_address = VM_MIN_ADDRESS, defaddr;
    306      1.40  augustss 	struct filedesc *fdp = p->p_fd;
    307      1.40  augustss 	struct file *fp;
    308       1.6       mrg 	struct vnode *vp;
    309      1.50       chs 	void *handle;
    310       1.6       mrg 	int error;
    311       1.6       mrg 
    312       1.6       mrg 	/*
    313       1.6       mrg 	 * first, extract syscall args from the uap.
    314       1.6       mrg 	 */
    315       1.6       mrg 
    316      1.50       chs 	addr = (vaddr_t)SCARG(uap, addr);
    317      1.50       chs 	size = (vsize_t)SCARG(uap, len);
    318       1.6       mrg 	prot = SCARG(uap, prot) & VM_PROT_ALL;
    319       1.6       mrg 	flags = SCARG(uap, flags);
    320       1.6       mrg 	fd = SCARG(uap, fd);
    321       1.6       mrg 	pos = SCARG(uap, pos);
    322       1.6       mrg 
    323       1.6       mrg 	/*
    324      1.24   thorpej 	 * Fixup the old deprecated MAP_COPY into MAP_PRIVATE, and
    325      1.24   thorpej 	 * validate the flags.
    326      1.24   thorpej 	 */
    327      1.24   thorpej 	if (flags & MAP_COPY)
    328      1.24   thorpej 		flags = (flags & ~MAP_COPY) | MAP_PRIVATE;
    329      1.24   thorpej 	if ((flags & (MAP_SHARED|MAP_PRIVATE)) == (MAP_SHARED|MAP_PRIVATE))
    330      1.24   thorpej 		return (EINVAL);
    331      1.24   thorpej 
    332      1.24   thorpej 	/*
    333       1.6       mrg 	 * align file position and save offset.  adjust size.
    334       1.6       mrg 	 */
    335       1.6       mrg 
    336       1.6       mrg 	pageoff = (pos & PAGE_MASK);
    337       1.6       mrg 	pos  -= pageoff;
    338       1.6       mrg 	size += pageoff;			/* add offset */
    339      1.50       chs 	size = (vsize_t)round_page(size);	/* round up */
    340       1.6       mrg 	if ((ssize_t) size < 0)
    341       1.6       mrg 		return (EINVAL);			/* don't allow wrap */
    342       1.6       mrg 
    343       1.6       mrg 	/*
    344      1.51       chs 	 * now check (MAP_FIXED) or get (!MAP_FIXED) the "addr"
    345       1.6       mrg 	 */
    346       1.6       mrg 
    347       1.6       mrg 	if (flags & MAP_FIXED) {
    348       1.6       mrg 
    349       1.6       mrg 		/* ensure address and file offset are aligned properly */
    350       1.6       mrg 		addr -= pageoff;
    351       1.6       mrg 		if (addr & PAGE_MASK)
    352       1.6       mrg 			return (EINVAL);
    353       1.6       mrg 
    354       1.6       mrg 		if (VM_MAXUSER_ADDRESS > 0 &&
    355       1.6       mrg 		    (addr + size) > VM_MAXUSER_ADDRESS)
    356      1.63   darrenr 			return (EFBIG);
    357       1.6       mrg 		if (vm_min_address > 0 && addr < vm_min_address)
    358       1.6       mrg 			return (EINVAL);
    359       1.6       mrg 		if (addr > addr + size)
    360      1.63   darrenr 			return (EOVERFLOW);		/* no wrapping! */
    361       1.6       mrg 
    362      1.75  christos 	} else if (addr == 0 || !(flags & MAP_TRYFIXED)) {
    363       1.6       mrg 
    364       1.6       mrg 		/*
    365      1.68    atatat 		 * not fixed: make sure we skip over the largest
    366      1.68    atatat 		 * possible heap for non-topdown mapping arrangements.
    367      1.68    atatat 		 * we will refine our guess later (e.g. to account for
    368      1.68    atatat 		 * VAC, etc)
    369       1.6       mrg 		 */
    370      1.46       chs 
    371      1.89      fvdl 		defaddr = p->p_emul->e_vm_default_addr(p,
    372      1.89      fvdl 		    (vaddr_t)p->p_vmspace->vm_daddr, size);
    373      1.89      fvdl 
    374      1.68    atatat 		if (addr == 0 ||
    375      1.68    atatat 		    !(p->p_vmspace->vm_map.flags & VM_MAP_TOPDOWN))
    376      1.89      fvdl 			addr = MAX(addr, defaddr);
    377      1.68    atatat 		else
    378      1.89      fvdl 			addr = MIN(addr, defaddr);
    379       1.6       mrg 	}
    380       1.6       mrg 
    381       1.6       mrg 	/*
    382       1.6       mrg 	 * check for file mappings (i.e. not anonymous) and verify file.
    383       1.6       mrg 	 */
    384       1.6       mrg 
    385       1.6       mrg 	if ((flags & MAP_ANON) == 0) {
    386       1.6       mrg 
    387      1.54   thorpej 		if ((fp = fd_getfile(fdp, fd)) == NULL)
    388      1.54   thorpej 			return (EBADF);
    389      1.69        pk 
    390      1.69        pk 		simple_unlock(&fp->f_slock);
    391       1.6       mrg 
    392       1.6       mrg 		if (fp->f_type != DTYPE_VNODE)
    393       1.7    kleink 			return (ENODEV);		/* only mmap vnodes! */
    394       1.6       mrg 		vp = (struct vnode *)fp->f_data;	/* convert to vnode */
    395       1.6       mrg 
    396      1.11   thorpej 		if (vp->v_type != VREG && vp->v_type != VCHR &&
    397      1.11   thorpej 		    vp->v_type != VBLK)
    398      1.11   thorpej 			return (ENODEV);  /* only REG/CHR/BLK support mmap */
    399      1.39    kleink 
    400      1.61       chs 		if (vp->v_type != VCHR && pos < 0)
    401      1.61       chs 			return (EINVAL);
    402      1.61       chs 
    403      1.61       chs 		if (vp->v_type != VCHR && (pos + size) < pos)
    404      1.39    kleink 			return (EOVERFLOW);		/* no offset wrapping */
    405       1.6       mrg 
    406       1.6       mrg 		/* special case: catch SunOS style /dev/zero */
    407      1.80  jdolecek 		if (vp->v_type == VCHR
    408      1.80  jdolecek 		    && (vp->v_rdev == zerodev || COMPAT_ZERODEV(vp->v_rdev))) {
    409       1.6       mrg 			flags |= MAP_ANON;
    410       1.6       mrg 			goto is_anon;
    411       1.6       mrg 		}
    412       1.6       mrg 
    413       1.6       mrg 		/*
    414       1.6       mrg 		 * Old programs may not select a specific sharing type, so
    415       1.6       mrg 		 * default to an appropriate one.
    416       1.6       mrg 		 *
    417       1.6       mrg 		 * XXX: how does MAP_ANON fit in the picture?
    418       1.6       mrg 		 */
    419      1.24   thorpej 		if ((flags & (MAP_SHARED|MAP_PRIVATE)) == 0) {
    420       1.8        tv #if defined(DEBUG)
    421       1.6       mrg 			printf("WARNING: defaulted mmap() share type to "
    422      1.71  gmcgarry 			   "%s (pid %d command %s)\n", vp->v_type == VCHR ?
    423       1.6       mrg 			   "MAP_SHARED" : "MAP_PRIVATE", p->p_pid,
    424       1.6       mrg 			    p->p_comm);
    425       1.1       mrg #endif
    426       1.6       mrg 			if (vp->v_type == VCHR)
    427       1.6       mrg 				flags |= MAP_SHARED;	/* for a device */
    428       1.6       mrg 			else
    429       1.6       mrg 				flags |= MAP_PRIVATE;	/* for a file */
    430       1.6       mrg 		}
    431       1.6       mrg 
    432      1.51       chs 		/*
    433       1.6       mrg 		 * MAP_PRIVATE device mappings don't make sense (and aren't
    434       1.6       mrg 		 * supported anyway).  However, some programs rely on this,
    435       1.6       mrg 		 * so just change it to MAP_SHARED.
    436       1.6       mrg 		 */
    437       1.6       mrg 		if (vp->v_type == VCHR && (flags & MAP_PRIVATE) != 0) {
    438       1.6       mrg 			flags = (flags & ~MAP_PRIVATE) | MAP_SHARED;
    439       1.6       mrg 		}
    440       1.1       mrg 
    441       1.6       mrg 		/*
    442       1.6       mrg 		 * now check protection
    443       1.6       mrg 		 */
    444       1.6       mrg 
    445      1.48   thorpej 		maxprot = VM_PROT_EXECUTE;
    446       1.6       mrg 
    447       1.6       mrg 		/* check read access */
    448       1.6       mrg 		if (fp->f_flag & FREAD)
    449       1.6       mrg 			maxprot |= VM_PROT_READ;
    450       1.6       mrg 		else if (prot & PROT_READ)
    451       1.6       mrg 			return (EACCES);
    452       1.6       mrg 
    453       1.9       mrg 		/* check write access, shared case first */
    454       1.6       mrg 		if (flags & MAP_SHARED) {
    455       1.9       mrg 			/*
    456       1.9       mrg 			 * if the file is writable, only add PROT_WRITE to
    457       1.9       mrg 			 * maxprot if the file is not immutable, append-only.
    458       1.9       mrg 			 * otherwise, if we have asked for PROT_WRITE, return
    459       1.9       mrg 			 * EPERM.
    460       1.9       mrg 			 */
    461       1.9       mrg 			if (fp->f_flag & FWRITE) {
    462       1.9       mrg 				if ((error =
    463  1.91.2.1      yamt 				    VOP_GETATTR(vp, &va, p->p_cred, l)))
    464       1.9       mrg 					return (error);
    465      1.84   hannken 				if ((va.va_flags &
    466      1.84   hannken 				    (SF_SNAPSHOT|IMMUTABLE|APPEND)) == 0)
    467       1.9       mrg 					maxprot |= VM_PROT_WRITE;
    468       1.9       mrg 				else if (prot & PROT_WRITE)
    469       1.9       mrg 					return (EPERM);
    470       1.9       mrg 			}
    471       1.6       mrg 			else if (prot & PROT_WRITE)
    472       1.6       mrg 				return (EACCES);
    473       1.6       mrg 		} else {
    474       1.6       mrg 			/* MAP_PRIVATE mappings can always write to */
    475       1.6       mrg 			maxprot |= VM_PROT_WRITE;
    476       1.6       mrg 		}
    477      1.50       chs 		handle = vp;
    478       1.1       mrg 
    479       1.6       mrg 	} else {		/* MAP_ANON case */
    480      1.24   thorpej 		/*
    481      1.24   thorpej 		 * XXX What do we do about (MAP_SHARED|MAP_PRIVATE) == 0?
    482      1.24   thorpej 		 */
    483       1.6       mrg 		if (fd != -1)
    484       1.6       mrg 			return (EINVAL);
    485       1.1       mrg 
    486      1.24   thorpej  is_anon:		/* label for SunOS style /dev/zero */
    487       1.6       mrg 		handle = NULL;
    488       1.6       mrg 		maxprot = VM_PROT_ALL;
    489       1.6       mrg 		pos = 0;
    490      1.28       cgd 	}
    491      1.28       cgd 
    492      1.28       cgd 	/*
    493      1.28       cgd 	 * XXX (in)sanity check.  We don't do proper datasize checking
    494      1.28       cgd 	 * XXX for anonymous (or private writable) mmap().  However,
    495      1.28       cgd 	 * XXX know that if we're trying to allocate more than the amount
    496      1.28       cgd 	 * XXX remaining under our current data size limit, _that_ should
    497      1.28       cgd 	 * XXX be disallowed.
    498      1.28       cgd 	 */
    499      1.28       cgd 	if ((flags & MAP_ANON) != 0 ||
    500      1.28       cgd 	    ((flags & MAP_PRIVATE) != 0 && (prot & PROT_WRITE) != 0)) {
    501      1.28       cgd 		if (size >
    502      1.50       chs 		    (p->p_rlimit[RLIMIT_DATA].rlim_cur -
    503      1.50       chs 		     ctob(p->p_vmspace->vm_dsize))) {
    504      1.28       cgd 			return (ENOMEM);
    505      1.28       cgd 		}
    506       1.6       mrg 	}
    507       1.6       mrg 
    508  1.91.2.1      yamt #ifdef PAX_MPROTECT
    509  1.91.2.1      yamt 	pax_mprotect(l, &prot, &maxprot);
    510  1.91.2.1      yamt #endif /* PAX_MPROTECT */
    511  1.91.2.1      yamt 
    512       1.6       mrg 	/*
    513       1.6       mrg 	 * now let kernel internal function uvm_mmap do the work.
    514       1.6       mrg 	 */
    515       1.6       mrg 
    516       1.6       mrg 	error = uvm_mmap(&p->p_vmspace->vm_map, &addr, size, prot, maxprot,
    517      1.25   thorpej 	    flags, handle, pos, p->p_rlimit[RLIMIT_MEMLOCK].rlim_cur);
    518       1.6       mrg 
    519       1.6       mrg 	if (error == 0)
    520       1.6       mrg 		/* remember to add offset */
    521       1.6       mrg 		*retval = (register_t)(addr + pageoff);
    522       1.1       mrg 
    523       1.6       mrg 	return (error);
    524       1.1       mrg }
    525       1.1       mrg 
    526       1.1       mrg /*
    527       1.1       mrg  * sys___msync13: the msync system call (a front-end for flush)
    528       1.1       mrg  */
    529       1.1       mrg 
    530       1.6       mrg int
    531      1.67   thorpej sys___msync13(l, v, retval)
    532      1.67   thorpej 	struct lwp *l;
    533       1.6       mrg 	void *v;
    534       1.6       mrg 	register_t *retval;
    535       1.6       mrg {
    536       1.6       mrg 	struct sys___msync13_args /* {
    537       1.6       mrg 		syscallarg(caddr_t) addr;
    538       1.6       mrg 		syscallarg(size_t) len;
    539       1.6       mrg 		syscallarg(int) flags;
    540       1.6       mrg 	} */ *uap = v;
    541      1.67   thorpej 	struct proc *p = l->l_proc;
    542      1.12       eeh 	vaddr_t addr;
    543      1.12       eeh 	vsize_t size, pageoff;
    544      1.53       chs 	struct vm_map *map;
    545      1.50       chs 	int error, rv, flags, uvmflags;
    546       1.6       mrg 
    547       1.6       mrg 	/*
    548       1.6       mrg 	 * extract syscall args from the uap
    549       1.6       mrg 	 */
    550       1.6       mrg 
    551      1.12       eeh 	addr = (vaddr_t)SCARG(uap, addr);
    552      1.12       eeh 	size = (vsize_t)SCARG(uap, len);
    553       1.6       mrg 	flags = SCARG(uap, flags);
    554       1.6       mrg 
    555       1.6       mrg 	/* sanity check flags */
    556       1.6       mrg 	if ((flags & ~(MS_ASYNC | MS_SYNC | MS_INVALIDATE)) != 0 ||
    557      1.77       chs 	    (flags & (MS_ASYNC | MS_SYNC | MS_INVALIDATE)) == 0 ||
    558      1.77       chs 	    (flags & (MS_ASYNC | MS_SYNC)) == (MS_ASYNC | MS_SYNC))
    559      1.77       chs 		return (EINVAL);
    560       1.6       mrg 	if ((flags & (MS_ASYNC | MS_SYNC)) == 0)
    561      1.77       chs 		flags |= MS_SYNC;
    562       1.1       mrg 
    563       1.6       mrg 	/*
    564      1.50       chs 	 * align the address to a page boundary and adjust the size accordingly.
    565       1.6       mrg 	 */
    566       1.6       mrg 
    567       1.6       mrg 	pageoff = (addr & PAGE_MASK);
    568       1.6       mrg 	addr -= pageoff;
    569       1.6       mrg 	size += pageoff;
    570      1.50       chs 	size = (vsize_t)round_page(size);
    571       1.6       mrg 
    572       1.6       mrg 	/* disallow wrap-around. */
    573       1.6       mrg 	if (addr + size < addr)
    574       1.6       mrg 		return (EINVAL);
    575       1.6       mrg 
    576       1.6       mrg 	/*
    577       1.6       mrg 	 * get map
    578       1.6       mrg 	 */
    579       1.6       mrg 
    580       1.6       mrg 	map = &p->p_vmspace->vm_map;
    581       1.6       mrg 
    582       1.6       mrg 	/*
    583       1.6       mrg 	 * XXXCDC: do we really need this semantic?
    584       1.6       mrg 	 *
    585       1.6       mrg 	 * XXX Gak!  If size is zero we are supposed to sync "all modified
    586       1.6       mrg 	 * pages with the region containing addr".  Unfortunately, we
    587       1.6       mrg 	 * don't really keep track of individual mmaps so we approximate
    588       1.6       mrg 	 * by flushing the range of the map entry containing addr.
    589       1.6       mrg 	 * This can be incorrect if the region splits or is coalesced
    590       1.6       mrg 	 * with a neighbor.
    591       1.6       mrg 	 */
    592      1.50       chs 
    593       1.6       mrg 	if (size == 0) {
    594      1.53       chs 		struct vm_map_entry *entry;
    595      1.51       chs 
    596       1.6       mrg 		vm_map_lock_read(map);
    597       1.6       mrg 		rv = uvm_map_lookup_entry(map, addr, &entry);
    598       1.6       mrg 		if (rv == TRUE) {
    599       1.6       mrg 			addr = entry->start;
    600       1.6       mrg 			size = entry->end - entry->start;
    601       1.6       mrg 		}
    602       1.6       mrg 		vm_map_unlock_read(map);
    603       1.6       mrg 		if (rv == FALSE)
    604       1.6       mrg 			return (EINVAL);
    605       1.6       mrg 	}
    606       1.6       mrg 
    607       1.6       mrg 	/*
    608       1.6       mrg 	 * translate MS_ flags into PGO_ flags
    609       1.6       mrg 	 */
    610      1.50       chs 
    611      1.34   thorpej 	uvmflags = PGO_CLEANIT;
    612      1.34   thorpej 	if (flags & MS_INVALIDATE)
    613      1.34   thorpej 		uvmflags |= PGO_FREE;
    614       1.6       mrg 	if (flags & MS_SYNC)
    615       1.6       mrg 		uvmflags |= PGO_SYNCIO;
    616       1.6       mrg 
    617      1.50       chs 	error = uvm_map_clean(map, addr, addr+size, uvmflags);
    618      1.50       chs 	return error;
    619       1.1       mrg }
    620       1.1       mrg 
    621       1.1       mrg /*
    622       1.1       mrg  * sys_munmap: unmap a users memory
    623       1.1       mrg  */
    624       1.1       mrg 
    625       1.6       mrg int
    626      1.67   thorpej sys_munmap(l, v, retval)
    627      1.67   thorpej 	struct lwp *l;
    628       1.6       mrg 	void *v;
    629       1.6       mrg 	register_t *retval;
    630       1.6       mrg {
    631      1.40  augustss 	struct sys_munmap_args /* {
    632       1.6       mrg 		syscallarg(caddr_t) addr;
    633       1.6       mrg 		syscallarg(size_t) len;
    634       1.6       mrg 	} */ *uap = v;
    635      1.67   thorpej 	struct proc *p = l->l_proc;
    636      1.12       eeh 	vaddr_t addr;
    637      1.12       eeh 	vsize_t size, pageoff;
    638      1.53       chs 	struct vm_map *map;
    639      1.12       eeh 	vaddr_t vm_min_address = VM_MIN_ADDRESS;
    640       1.6       mrg 	struct vm_map_entry *dead_entries;
    641       1.6       mrg 
    642       1.6       mrg 	/*
    643      1.50       chs 	 * get syscall args.
    644       1.6       mrg 	 */
    645       1.6       mrg 
    646      1.50       chs 	addr = (vaddr_t)SCARG(uap, addr);
    647      1.50       chs 	size = (vsize_t)SCARG(uap, len);
    648      1.51       chs 
    649       1.6       mrg 	/*
    650      1.50       chs 	 * align the address to a page boundary and adjust the size accordingly.
    651       1.6       mrg 	 */
    652       1.6       mrg 
    653       1.6       mrg 	pageoff = (addr & PAGE_MASK);
    654       1.6       mrg 	addr -= pageoff;
    655       1.6       mrg 	size += pageoff;
    656      1.50       chs 	size = (vsize_t)round_page(size);
    657       1.6       mrg 
    658       1.6       mrg 	if ((int)size < 0)
    659       1.6       mrg 		return (EINVAL);
    660       1.6       mrg 	if (size == 0)
    661       1.6       mrg 		return (0);
    662       1.6       mrg 
    663       1.6       mrg 	/*
    664       1.6       mrg 	 * Check for illegal addresses.  Watch out for address wrap...
    665       1.6       mrg 	 * Note that VM_*_ADDRESS are not constants due to casts (argh).
    666       1.6       mrg 	 */
    667       1.6       mrg 	if (VM_MAXUSER_ADDRESS > 0 && addr + size > VM_MAXUSER_ADDRESS)
    668       1.6       mrg 		return (EINVAL);
    669       1.6       mrg 	if (vm_min_address > 0 && addr < vm_min_address)
    670       1.6       mrg 		return (EINVAL);
    671       1.6       mrg 	if (addr > addr + size)
    672       1.6       mrg 		return (EINVAL);
    673       1.6       mrg 	map = &p->p_vmspace->vm_map;
    674       1.6       mrg 
    675       1.6       mrg 	/*
    676      1.51       chs 	 * interesting system call semantic: make sure entire range is
    677       1.6       mrg 	 * allocated before allowing an unmap.
    678       1.6       mrg 	 */
    679       1.6       mrg 
    680      1.50       chs 	vm_map_lock(map);
    681      1.66   mycroft #if 0
    682       1.6       mrg 	if (!uvm_map_checkprot(map, addr, addr + size, VM_PROT_NONE)) {
    683       1.6       mrg 		vm_map_unlock(map);
    684       1.6       mrg 		return (EINVAL);
    685       1.6       mrg 	}
    686      1.66   mycroft #endif
    687      1.90      yamt 	uvm_unmap_remove(map, addr, addr + size, &dead_entries, NULL, 0);
    688      1.50       chs 	vm_map_unlock(map);
    689       1.6       mrg 	if (dead_entries != NULL)
    690       1.6       mrg 		uvm_unmap_detach(dead_entries, 0);
    691       1.6       mrg 	return (0);
    692       1.1       mrg }
    693       1.1       mrg 
    694       1.1       mrg /*
    695       1.1       mrg  * sys_mprotect: the mprotect system call
    696       1.1       mrg  */
    697       1.1       mrg 
    698       1.6       mrg int
    699      1.67   thorpej sys_mprotect(l, v, retval)
    700      1.67   thorpej 	struct lwp *l;
    701       1.6       mrg 	void *v;
    702       1.6       mrg 	register_t *retval;
    703       1.6       mrg {
    704       1.6       mrg 	struct sys_mprotect_args /* {
    705       1.6       mrg 		syscallarg(caddr_t) addr;
    706      1.76       chs 		syscallarg(size_t) len;
    707       1.6       mrg 		syscallarg(int) prot;
    708       1.6       mrg 	} */ *uap = v;
    709      1.67   thorpej 	struct proc *p = l->l_proc;
    710      1.12       eeh 	vaddr_t addr;
    711      1.12       eeh 	vsize_t size, pageoff;
    712       1.6       mrg 	vm_prot_t prot;
    713      1.50       chs 	int error;
    714       1.6       mrg 
    715       1.6       mrg 	/*
    716       1.6       mrg 	 * extract syscall args from uap
    717       1.6       mrg 	 */
    718       1.6       mrg 
    719      1.12       eeh 	addr = (vaddr_t)SCARG(uap, addr);
    720      1.12       eeh 	size = (vsize_t)SCARG(uap, len);
    721       1.6       mrg 	prot = SCARG(uap, prot) & VM_PROT_ALL;
    722       1.6       mrg 
    723       1.6       mrg 	/*
    724      1.50       chs 	 * align the address to a page boundary and adjust the size accordingly.
    725       1.6       mrg 	 */
    726      1.50       chs 
    727       1.6       mrg 	pageoff = (addr & PAGE_MASK);
    728       1.6       mrg 	addr -= pageoff;
    729       1.6       mrg 	size += pageoff;
    730      1.76       chs 	size = round_page(size);
    731      1.50       chs 
    732      1.50       chs 	error = uvm_map_protect(&p->p_vmspace->vm_map, addr, addr + size, prot,
    733      1.50       chs 				FALSE);
    734      1.50       chs 	return error;
    735       1.1       mrg }
    736       1.1       mrg 
    737       1.1       mrg /*
    738       1.1       mrg  * sys_minherit: the minherit system call
    739       1.1       mrg  */
    740       1.1       mrg 
    741       1.6       mrg int
    742      1.67   thorpej sys_minherit(l, v, retval)
    743      1.67   thorpej 	struct lwp *l;
    744       1.6       mrg 	void *v;
    745       1.6       mrg 	register_t *retval;
    746       1.6       mrg {
    747       1.6       mrg 	struct sys_minherit_args /* {
    748       1.6       mrg 		syscallarg(caddr_t) addr;
    749       1.6       mrg 		syscallarg(int) len;
    750       1.6       mrg 		syscallarg(int) inherit;
    751       1.6       mrg 	} */ *uap = v;
    752      1.67   thorpej 	struct proc *p = l->l_proc;
    753      1.12       eeh 	vaddr_t addr;
    754      1.12       eeh 	vsize_t size, pageoff;
    755      1.40  augustss 	vm_inherit_t inherit;
    756      1.50       chs 	int error;
    757      1.51       chs 
    758      1.12       eeh 	addr = (vaddr_t)SCARG(uap, addr);
    759      1.12       eeh 	size = (vsize_t)SCARG(uap, len);
    760       1.6       mrg 	inherit = SCARG(uap, inherit);
    761      1.50       chs 
    762       1.6       mrg 	/*
    763      1.50       chs 	 * align the address to a page boundary and adjust the size accordingly.
    764       1.6       mrg 	 */
    765       1.6       mrg 
    766       1.6       mrg 	pageoff = (addr & PAGE_MASK);
    767       1.6       mrg 	addr -= pageoff;
    768       1.6       mrg 	size += pageoff;
    769      1.50       chs 	size = (vsize_t)round_page(size);
    770       1.6       mrg 
    771       1.6       mrg 	if ((int)size < 0)
    772       1.6       mrg 		return (EINVAL);
    773      1.50       chs 	error = uvm_map_inherit(&p->p_vmspace->vm_map, addr, addr + size,
    774      1.50       chs 				inherit);
    775      1.50       chs 	return error;
    776      1.21       mrg }
    777      1.21       mrg 
    778      1.21       mrg /*
    779      1.21       mrg  * sys_madvise: give advice about memory usage.
    780      1.21       mrg  */
    781      1.21       mrg 
    782      1.21       mrg /* ARGSUSED */
    783      1.21       mrg int
    784      1.67   thorpej sys_madvise(l, v, retval)
    785      1.67   thorpej 	struct lwp *l;
    786      1.21       mrg 	void *v;
    787      1.21       mrg 	register_t *retval;
    788      1.21       mrg {
    789      1.21       mrg 	struct sys_madvise_args /* {
    790      1.21       mrg 		syscallarg(caddr_t) addr;
    791      1.21       mrg 		syscallarg(size_t) len;
    792      1.21       mrg 		syscallarg(int) behav;
    793      1.21       mrg 	} */ *uap = v;
    794      1.67   thorpej 	struct proc *p = l->l_proc;
    795      1.21       mrg 	vaddr_t addr;
    796      1.21       mrg 	vsize_t size, pageoff;
    797      1.50       chs 	int advice, error;
    798      1.51       chs 
    799      1.21       mrg 	addr = (vaddr_t)SCARG(uap, addr);
    800      1.21       mrg 	size = (vsize_t)SCARG(uap, len);
    801      1.21       mrg 	advice = SCARG(uap, behav);
    802      1.21       mrg 
    803      1.21       mrg 	/*
    804      1.21       mrg 	 * align the address to a page boundary, and adjust the size accordingly
    805      1.21       mrg 	 */
    806      1.50       chs 
    807      1.21       mrg 	pageoff = (addr & PAGE_MASK);
    808      1.21       mrg 	addr -= pageoff;
    809      1.21       mrg 	size += pageoff;
    810      1.50       chs 	size = (vsize_t)round_page(size);
    811      1.21       mrg 
    812      1.29   thorpej 	if ((ssize_t)size <= 0)
    813      1.29   thorpej 		return (EINVAL);
    814      1.29   thorpej 
    815      1.29   thorpej 	switch (advice) {
    816      1.29   thorpej 	case MADV_NORMAL:
    817      1.29   thorpej 	case MADV_RANDOM:
    818      1.29   thorpej 	case MADV_SEQUENTIAL:
    819      1.50       chs 		error = uvm_map_advice(&p->p_vmspace->vm_map, addr, addr + size,
    820      1.29   thorpej 		    advice);
    821      1.29   thorpej 		break;
    822      1.29   thorpej 
    823      1.29   thorpej 	case MADV_WILLNEED:
    824      1.50       chs 
    825      1.29   thorpej 		/*
    826      1.29   thorpej 		 * Activate all these pages, pre-faulting them in if
    827      1.29   thorpej 		 * necessary.
    828      1.29   thorpej 		 */
    829      1.29   thorpej 		/*
    830      1.29   thorpej 		 * XXX IMPLEMENT ME.
    831      1.29   thorpej 		 * Should invent a "weak" mode for uvm_fault()
    832      1.29   thorpej 		 * which would only do the PGO_LOCKED pgo_get().
    833      1.29   thorpej 		 */
    834      1.50       chs 
    835      1.29   thorpej 		return (0);
    836      1.29   thorpej 
    837      1.29   thorpej 	case MADV_DONTNEED:
    838      1.50       chs 
    839      1.29   thorpej 		/*
    840      1.29   thorpej 		 * Deactivate all these pages.  We don't need them
    841      1.29   thorpej 		 * any more.  We don't, however, toss the data in
    842      1.29   thorpej 		 * the pages.
    843      1.29   thorpej 		 */
    844      1.50       chs 
    845      1.50       chs 		error = uvm_map_clean(&p->p_vmspace->vm_map, addr, addr + size,
    846      1.29   thorpej 		    PGO_DEACTIVATE);
    847      1.29   thorpej 		break;
    848      1.29   thorpej 
    849      1.29   thorpej 	case MADV_FREE:
    850      1.50       chs 
    851      1.29   thorpej 		/*
    852      1.29   thorpej 		 * These pages contain no valid data, and may be
    853      1.45     soren 		 * garbage-collected.  Toss all resources, including
    854      1.30   thorpej 		 * any swap space in use.
    855      1.29   thorpej 		 */
    856      1.50       chs 
    857      1.50       chs 		error = uvm_map_clean(&p->p_vmspace->vm_map, addr, addr + size,
    858      1.29   thorpej 		    PGO_FREE);
    859      1.29   thorpej 		break;
    860      1.29   thorpej 
    861      1.29   thorpej 	case MADV_SPACEAVAIL:
    862      1.50       chs 
    863      1.29   thorpej 		/*
    864      1.29   thorpej 		 * XXXMRG What is this?  I think it's:
    865      1.29   thorpej 		 *
    866      1.29   thorpej 		 *	Ensure that we have allocated backing-store
    867      1.29   thorpej 		 *	for these pages.
    868      1.29   thorpej 		 *
    869      1.29   thorpej 		 * This is going to require changes to the page daemon,
    870      1.29   thorpej 		 * as it will free swap space allocated to pages in core.
    871      1.29   thorpej 		 * There's also what to do for device/file/anonymous memory.
    872      1.29   thorpej 		 */
    873      1.50       chs 
    874      1.29   thorpej 		return (EINVAL);
    875      1.29   thorpej 
    876      1.29   thorpej 	default:
    877      1.21       mrg 		return (EINVAL);
    878      1.29   thorpej 	}
    879      1.29   thorpej 
    880      1.50       chs 	return error;
    881       1.1       mrg }
    882       1.1       mrg 
    883       1.1       mrg /*
    884       1.1       mrg  * sys_mlock: memory lock
    885       1.1       mrg  */
    886       1.1       mrg 
    887       1.6       mrg int
    888      1.67   thorpej sys_mlock(l, v, retval)
    889      1.67   thorpej 	struct lwp *l;
    890       1.6       mrg 	void *v;
    891       1.6       mrg 	register_t *retval;
    892       1.6       mrg {
    893       1.6       mrg 	struct sys_mlock_args /* {
    894      1.10    kleink 		syscallarg(const void *) addr;
    895       1.6       mrg 		syscallarg(size_t) len;
    896       1.6       mrg 	} */ *uap = v;
    897      1.67   thorpej 	struct proc *p = l->l_proc;
    898      1.12       eeh 	vaddr_t addr;
    899      1.12       eeh 	vsize_t size, pageoff;
    900       1.6       mrg 	int error;
    901       1.6       mrg 
    902       1.6       mrg 	/*
    903       1.6       mrg 	 * extract syscall args from uap
    904       1.6       mrg 	 */
    905      1.50       chs 
    906      1.12       eeh 	addr = (vaddr_t)SCARG(uap, addr);
    907      1.12       eeh 	size = (vsize_t)SCARG(uap, len);
    908       1.6       mrg 
    909       1.6       mrg 	/*
    910       1.6       mrg 	 * align the address to a page boundary and adjust the size accordingly
    911       1.6       mrg 	 */
    912      1.50       chs 
    913       1.6       mrg 	pageoff = (addr & PAGE_MASK);
    914       1.6       mrg 	addr -= pageoff;
    915       1.6       mrg 	size += pageoff;
    916      1.50       chs 	size = (vsize_t)round_page(size);
    917      1.51       chs 
    918       1.6       mrg 	/* disallow wrap-around. */
    919      1.50       chs 	if (addr + size < addr)
    920       1.6       mrg 		return (EINVAL);
    921       1.1       mrg 
    922       1.6       mrg 	if (atop(size) + uvmexp.wired > uvmexp.wiredmax)
    923       1.6       mrg 		return (EAGAIN);
    924       1.1       mrg 
    925       1.6       mrg 	if (size + ptoa(pmap_wired_count(vm_map_pmap(&p->p_vmspace->vm_map))) >
    926       1.6       mrg 			p->p_rlimit[RLIMIT_MEMLOCK].rlim_cur)
    927       1.6       mrg 		return (EAGAIN);
    928       1.1       mrg 
    929      1.25   thorpej 	error = uvm_map_pageable(&p->p_vmspace->vm_map, addr, addr+size, FALSE,
    930      1.35   thorpej 	    0);
    931      1.85    briggs 	if (error == EFAULT)
    932      1.85    briggs 		error = ENOMEM;
    933      1.50       chs 	return error;
    934       1.1       mrg }
    935       1.1       mrg 
    936       1.1       mrg /*
    937       1.1       mrg  * sys_munlock: unlock wired pages
    938       1.1       mrg  */
    939       1.1       mrg 
    940       1.6       mrg int
    941      1.67   thorpej sys_munlock(l, v, retval)
    942      1.67   thorpej 	struct lwp *l;
    943       1.6       mrg 	void *v;
    944       1.6       mrg 	register_t *retval;
    945       1.6       mrg {
    946       1.6       mrg 	struct sys_munlock_args /* {
    947      1.10    kleink 		syscallarg(const void *) addr;
    948       1.6       mrg 		syscallarg(size_t) len;
    949       1.6       mrg 	} */ *uap = v;
    950      1.67   thorpej 	struct proc *p = l->l_proc;
    951      1.12       eeh 	vaddr_t addr;
    952      1.12       eeh 	vsize_t size, pageoff;
    953       1.6       mrg 	int error;
    954       1.6       mrg 
    955       1.6       mrg 	/*
    956       1.6       mrg 	 * extract syscall args from uap
    957       1.6       mrg 	 */
    958       1.6       mrg 
    959      1.12       eeh 	addr = (vaddr_t)SCARG(uap, addr);
    960      1.12       eeh 	size = (vsize_t)SCARG(uap, len);
    961       1.6       mrg 
    962       1.6       mrg 	/*
    963       1.6       mrg 	 * align the address to a page boundary, and adjust the size accordingly
    964       1.6       mrg 	 */
    965      1.50       chs 
    966       1.6       mrg 	pageoff = (addr & PAGE_MASK);
    967       1.6       mrg 	addr -= pageoff;
    968       1.6       mrg 	size += pageoff;
    969      1.50       chs 	size = (vsize_t)round_page(size);
    970       1.6       mrg 
    971       1.6       mrg 	/* disallow wrap-around. */
    972      1.50       chs 	if (addr + size < addr)
    973       1.6       mrg 		return (EINVAL);
    974       1.1       mrg 
    975      1.25   thorpej 	error = uvm_map_pageable(&p->p_vmspace->vm_map, addr, addr+size, TRUE,
    976      1.35   thorpej 	    0);
    977      1.85    briggs 	if (error == EFAULT)
    978      1.85    briggs 		error = ENOMEM;
    979      1.50       chs 	return error;
    980      1.22   thorpej }
    981      1.22   thorpej 
    982      1.22   thorpej /*
    983      1.22   thorpej  * sys_mlockall: lock all pages mapped into an address space.
    984      1.22   thorpej  */
    985      1.22   thorpej 
    986      1.22   thorpej int
    987      1.67   thorpej sys_mlockall(l, v, retval)
    988      1.67   thorpej 	struct lwp *l;
    989      1.22   thorpej 	void *v;
    990      1.22   thorpej 	register_t *retval;
    991      1.22   thorpej {
    992      1.22   thorpej 	struct sys_mlockall_args /* {
    993      1.22   thorpej 		syscallarg(int) flags;
    994      1.22   thorpej 	} */ *uap = v;
    995      1.67   thorpej 	struct proc *p = l->l_proc;
    996      1.22   thorpej 	int error, flags;
    997      1.22   thorpej 
    998      1.22   thorpej 	flags = SCARG(uap, flags);
    999      1.22   thorpej 
   1000      1.22   thorpej 	if (flags == 0 ||
   1001      1.22   thorpej 	    (flags & ~(MCL_CURRENT|MCL_FUTURE)) != 0)
   1002      1.22   thorpej 		return (EINVAL);
   1003      1.22   thorpej 
   1004      1.25   thorpej 	error = uvm_map_pageable_all(&p->p_vmspace->vm_map, flags,
   1005      1.25   thorpej 	    p->p_rlimit[RLIMIT_MEMLOCK].rlim_cur);
   1006      1.22   thorpej 	return (error);
   1007      1.22   thorpej }
   1008      1.22   thorpej 
   1009      1.22   thorpej /*
   1010      1.22   thorpej  * sys_munlockall: unlock all pages mapped into an address space.
   1011      1.22   thorpej  */
   1012      1.22   thorpej 
   1013      1.22   thorpej int
   1014      1.67   thorpej sys_munlockall(l, v, retval)
   1015      1.67   thorpej 	struct lwp *l;
   1016      1.22   thorpej 	void *v;
   1017      1.22   thorpej 	register_t *retval;
   1018      1.22   thorpej {
   1019      1.67   thorpej 	struct proc *p = l->l_proc;
   1020      1.22   thorpej 
   1021      1.22   thorpej 	(void) uvm_map_pageable_all(&p->p_vmspace->vm_map, 0, 0);
   1022      1.22   thorpej 	return (0);
   1023       1.1       mrg }
   1024       1.1       mrg 
   1025       1.1       mrg /*
   1026       1.1       mrg  * uvm_mmap: internal version of mmap
   1027       1.1       mrg  *
   1028      1.56       chs  * - used by sys_mmap and various framebuffers
   1029      1.56       chs  * - handle is a vnode pointer or NULL for MAP_ANON
   1030       1.1       mrg  * - caller must page-align the file offset
   1031       1.1       mrg  */
   1032       1.1       mrg 
   1033       1.6       mrg int
   1034      1.25   thorpej uvm_mmap(map, addr, size, prot, maxprot, flags, handle, foff, locklimit)
   1035      1.53       chs 	struct vm_map *map;
   1036      1.12       eeh 	vaddr_t *addr;
   1037      1.12       eeh 	vsize_t size;
   1038       1.6       mrg 	vm_prot_t prot, maxprot;
   1039       1.6       mrg 	int flags;
   1040      1.50       chs 	void *handle;
   1041      1.38    kleink 	voff_t foff;
   1042      1.25   thorpej 	vsize_t locklimit;
   1043       1.6       mrg {
   1044       1.6       mrg 	struct uvm_object *uobj;
   1045       1.6       mrg 	struct vnode *vp;
   1046      1.70      matt 	vaddr_t align = 0;
   1047      1.50       chs 	int error;
   1048       1.6       mrg 	int advice = UVM_ADV_NORMAL;
   1049       1.6       mrg 	uvm_flag_t uvmflag = 0;
   1050       1.6       mrg 
   1051       1.6       mrg 	/*
   1052       1.6       mrg 	 * check params
   1053       1.6       mrg 	 */
   1054       1.6       mrg 
   1055       1.6       mrg 	if (size == 0)
   1056       1.6       mrg 		return(0);
   1057       1.6       mrg 	if (foff & PAGE_MASK)
   1058       1.6       mrg 		return(EINVAL);
   1059       1.6       mrg 	if ((prot & maxprot) != prot)
   1060       1.6       mrg 		return(EINVAL);
   1061       1.6       mrg 
   1062       1.6       mrg 	/*
   1063       1.6       mrg 	 * for non-fixed mappings, round off the suggested address.
   1064       1.6       mrg 	 * for fixed mappings, check alignment and zap old mappings.
   1065       1.6       mrg 	 */
   1066       1.6       mrg 
   1067       1.6       mrg 	if ((flags & MAP_FIXED) == 0) {
   1068      1.56       chs 		*addr = round_page(*addr);
   1069       1.6       mrg 	} else {
   1070       1.6       mrg 		if (*addr & PAGE_MASK)
   1071       1.6       mrg 			return(EINVAL);
   1072       1.6       mrg 		uvmflag |= UVM_FLAG_FIXED;
   1073      1.56       chs 		(void) uvm_unmap(map, *addr, *addr + size);
   1074       1.6       mrg 	}
   1075       1.6       mrg 
   1076       1.6       mrg 	/*
   1077      1.70      matt 	 * Try to see if any requested alignment can even be attemped.
   1078      1.70      matt 	 * Make sure we can express the alignment (asking for a >= 4GB
   1079      1.70      matt 	 * alignment on an ILP32 architecure make no sense) and the
   1080      1.70      matt 	 * alignment is at least for a page sized quanitiy.  If the
   1081      1.70      matt 	 * request was for a fixed mapping, make sure supplied address
   1082      1.70      matt 	 * adheres to the request alignment.
   1083      1.70      matt 	 */
   1084      1.70      matt 	align = (flags & MAP_ALIGNMENT_MASK) >> MAP_ALIGNMENT_SHIFT;
   1085      1.70      matt 	if (align) {
   1086      1.70      matt 		if (align >= sizeof(vaddr_t) * NBBY)
   1087      1.70      matt 			return(EINVAL);
   1088      1.70      matt 		align = 1L << align;
   1089      1.70      matt 		if (align < PAGE_SIZE)
   1090      1.70      matt 			return(EINVAL);
   1091      1.88       chs 		if (align >= vm_map_max(map))
   1092      1.70      matt 			return(ENOMEM);
   1093      1.70      matt 		if (flags & MAP_FIXED) {
   1094      1.70      matt 			if ((*addr & (align-1)) != 0)
   1095      1.70      matt 				return(EINVAL);
   1096      1.70      matt 			align = 0;
   1097      1.70      matt 		}
   1098      1.70      matt 	}
   1099      1.70      matt 
   1100      1.70      matt 	/*
   1101       1.6       mrg 	 * handle anon vs. non-anon mappings.   for non-anon mappings attach
   1102       1.6       mrg 	 * to underlying vm object.
   1103       1.6       mrg 	 */
   1104       1.6       mrg 
   1105       1.6       mrg 	if (flags & MAP_ANON) {
   1106  1.91.2.1      yamt 		KASSERT(handle == NULL);
   1107      1.36   thorpej 		foff = UVM_UNKNOWN_OFFSET;
   1108       1.6       mrg 		uobj = NULL;
   1109       1.6       mrg 		if ((flags & MAP_SHARED) == 0)
   1110       1.6       mrg 			/* XXX: defer amap create */
   1111       1.6       mrg 			uvmflag |= UVM_FLAG_COPYONW;
   1112       1.6       mrg 		else
   1113       1.6       mrg 			/* shared: create amap now */
   1114       1.6       mrg 			uvmflag |= UVM_FLAG_OVERLAY;
   1115       1.6       mrg 
   1116       1.6       mrg 	} else {
   1117  1.91.2.1      yamt 		KASSERT(handle != NULL);
   1118      1.50       chs 		vp = (struct vnode *)handle;
   1119      1.59   thorpej 
   1120      1.59   thorpej 		/*
   1121      1.59   thorpej 		 * Don't allow mmap for EXEC if the file system
   1122      1.59   thorpej 		 * is mounted NOEXEC.
   1123      1.59   thorpej 		 */
   1124      1.59   thorpej 		if ((prot & PROT_EXEC) != 0 &&
   1125      1.59   thorpej 		    (vp->v_mount->mnt_flag & MNT_NOEXEC) != 0)
   1126      1.59   thorpej 			return (EACCES);
   1127      1.59   thorpej 
   1128       1.6       mrg 		if (vp->v_type != VCHR) {
   1129  1.91.2.1      yamt 			error = VOP_MMAP(vp, 0, curproc->p_cred, curlwp);
   1130      1.55       chs 			if (error) {
   1131      1.55       chs 				return error;
   1132      1.55       chs 			}
   1133      1.55       chs 
   1134      1.50       chs 			uobj = uvn_attach((void *)vp, (flags & MAP_SHARED) ?
   1135       1.6       mrg 			   maxprot : (maxprot & ~VM_PROT_WRITE));
   1136       1.6       mrg 
   1137      1.46       chs 			/* XXX for now, attach doesn't gain a ref */
   1138      1.46       chs 			VREF(vp);
   1139      1.57   thorpej 
   1140      1.57   thorpej 			/*
   1141      1.57   thorpej 			 * If the vnode is being mapped with PROT_EXEC,
   1142      1.57   thorpej 			 * then mark it as text.
   1143      1.57   thorpej 			 */
   1144      1.57   thorpej 			if (prot & PROT_EXEC)
   1145      1.58   thorpej 				vn_markexec(vp);
   1146       1.6       mrg 		} else {
   1147      1.83   darrenr 			int i = maxprot;
   1148      1.83   darrenr 
   1149      1.48   thorpej 			/*
   1150      1.48   thorpej 			 * XXX Some devices don't like to be mapped with
   1151      1.83   darrenr 			 * XXX PROT_EXEC or PROT_WRITE, but we don't really
   1152      1.83   darrenr 			 * XXX have a better way of handling this, right now
   1153      1.48   thorpej 			 */
   1154      1.83   darrenr 			do {
   1155      1.83   darrenr 				uobj = udv_attach((void *) &vp->v_rdev,
   1156      1.83   darrenr 				    (flags & MAP_SHARED) ? i :
   1157      1.83   darrenr 				    (i & ~VM_PROT_WRITE), foff, size);
   1158      1.83   darrenr 				i--;
   1159      1.83   darrenr 			} while ((uobj == NULL) && (i > 0));
   1160       1.6       mrg 			advice = UVM_ADV_RANDOM;
   1161       1.6       mrg 		}
   1162       1.6       mrg 		if (uobj == NULL)
   1163      1.11   thorpej 			return((vp->v_type == VREG) ? ENOMEM : EINVAL);
   1164  1.91.2.1      yamt 		if ((flags & MAP_SHARED) == 0) {
   1165       1.6       mrg 			uvmflag |= UVM_FLAG_COPYONW;
   1166  1.91.2.1      yamt 		} else if ((maxprot & VM_PROT_WRITE) != 0) {
   1167  1.91.2.1      yamt 			simple_lock(&vp->v_interlock);
   1168  1.91.2.1      yamt 			vp->v_flag |= VWRITEMAP;
   1169  1.91.2.1      yamt 			simple_unlock(&vp->v_interlock);
   1170  1.91.2.1      yamt 		}
   1171       1.6       mrg 	}
   1172       1.6       mrg 
   1173      1.51       chs 	uvmflag = UVM_MAPFLAG(prot, maxprot,
   1174       1.1       mrg 			(flags & MAP_SHARED) ? UVM_INH_SHARE : UVM_INH_COPY,
   1175       1.1       mrg 			advice, uvmflag);
   1176      1.70      matt 	error = uvm_map(map, addr, size, uobj, foff, align, uvmflag);
   1177      1.50       chs 	if (error) {
   1178      1.50       chs 		if (uobj)
   1179      1.50       chs 			uobj->pgops->pgo_detach(uobj);
   1180      1.50       chs 		return error;
   1181      1.50       chs 	}
   1182       1.1       mrg 
   1183       1.6       mrg 	/*
   1184      1.50       chs 	 * POSIX 1003.1b -- if our address space was configured
   1185      1.50       chs 	 * to lock all future mappings, wire the one we just made.
   1186      1.78   thorpej 	 *
   1187      1.78   thorpej 	 * Also handle the MAP_WIRED flag here.
   1188       1.6       mrg 	 */
   1189       1.6       mrg 
   1190      1.50       chs 	if (prot == VM_PROT_NONE) {
   1191       1.6       mrg 
   1192      1.25   thorpej 		/*
   1193      1.50       chs 		 * No more work to do in this case.
   1194      1.25   thorpej 		 */
   1195      1.25   thorpej 
   1196      1.50       chs 		return (0);
   1197      1.50       chs 	}
   1198      1.50       chs 	vm_map_lock(map);
   1199      1.78   thorpej 	if ((flags & MAP_WIRED) != 0 || (map->flags & VM_MAP_WIREFUTURE) != 0) {
   1200      1.87       chs 		if (atop(size) + uvmexp.wired > uvmexp.wiredmax ||
   1201      1.87       chs 		    (locklimit != 0 &&
   1202      1.87       chs 		     size + ptoa(pmap_wired_count(vm_map_pmap(map))) >
   1203      1.87       chs 		     locklimit)) {
   1204      1.50       chs 			vm_map_unlock(map);
   1205      1.50       chs 			uvm_unmap(map, *addr, *addr + size);
   1206      1.50       chs 			return ENOMEM;
   1207      1.25   thorpej 		}
   1208      1.25   thorpej 
   1209      1.50       chs 		/*
   1210      1.50       chs 		 * uvm_map_pageable() always returns the map unlocked.
   1211      1.50       chs 		 */
   1212      1.25   thorpej 
   1213      1.50       chs 		error = uvm_map_pageable(map, *addr, *addr + size,
   1214      1.50       chs 					 FALSE, UVM_LK_ENTER);
   1215      1.50       chs 		if (error) {
   1216      1.50       chs 			uvm_unmap(map, *addr, *addr + size);
   1217      1.50       chs 			return error;
   1218      1.50       chs 		}
   1219      1.25   thorpej 		return (0);
   1220      1.25   thorpej 	}
   1221      1.50       chs 	vm_map_unlock(map);
   1222      1.50       chs 	return 0;
   1223       1.1       mrg }
   1224      1.89      fvdl 
   1225      1.89      fvdl vaddr_t
   1226      1.89      fvdl uvm_default_mapaddr(struct proc *p, vaddr_t base, vsize_t sz)
   1227      1.89      fvdl {
   1228      1.89      fvdl 	return VM_DEFAULT_ADDRESS(base, sz);
   1229      1.89      fvdl }
   1230