#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/resourcevar.h>
#include <sys/vnode.h>
#include <sys/mount.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
int
sys_obreak(struct proc *p, void *v, register_t *retval)
{
struct sys_obreak_args
*uap = v;
struct vmspace *vm = p->p_vmspace;
vaddr_t new, old, base;
int error;
base = (vaddr_t)vm->vm_daddr;
new = round_page((vaddr_t)SCARG(uap, nsize));
if (new < base || (new - base) > lim_cur(RLIMIT_DATA))
return (ENOMEM);
old = round_page(base + ptoa(vm->vm_dsize));
if (new == old)
return (0);
if (new > old) {
error = uvm_map(&vm->vm_map, &old, new - old, NULL,
UVM_UNKNOWN_OFFSET, 0,
UVM_MAPFLAG(PROT_READ | PROT_WRITE,
PROT_READ | PROT_WRITE | PROT_EXEC, MAP_INHERIT_COPY,
MADV_NORMAL, UVM_FLAG_FIXED|UVM_FLAG_COPYONW));
if (error) {
uprintf("sbrk: grow %ld failed, error = %d\n",
new - old, error);
return (ENOMEM);
}
vm->vm_dsize += atop(new - old);
} else {
uvm_unmap(&vm->vm_map, new, old);
vm->vm_dsize -= atop(old - new);
}
return (0);
}
void
uvm_grow(struct proc *p, vaddr_t sp)
{
struct vmspace *vm = p->p_vmspace;
vm_map_t map = &vm->vm_map;
int si;
if (sp < (vaddr_t)vm->vm_maxsaddr)
return;
#ifdef MACHINE_STACK_GROWS_UP
if (sp >= (vaddr_t)vm->vm_minsaddr)
return;
#endif
vm_map_lock(map);
#ifdef MACHINE_STACK_GROWS_UP
if (sp < (vaddr_t)vm->vm_maxsaddr + ptoa(vm->vm_ssize))
#else
if (sp >= (vaddr_t)vm->vm_minsaddr - ptoa(vm->vm_ssize))
#endif
goto out;
#ifdef MACHINE_STACK_GROWS_UP
si = atop(sp - (vaddr_t)vm->vm_maxsaddr) - vm->vm_ssize + 1;
#else
si = atop((vaddr_t)vm->vm_minsaddr - sp) - vm->vm_ssize;
#endif
if (vm->vm_ssize + si <= atop(lim_cur(RLIMIT_STACK)))
vm->vm_ssize += si;
out:
vm_map_unlock(map);
}
#ifndef SMALL_KERNEL
#define WALK_CHUNK 32
int
uvm_coredump_walk_amap(struct vm_map_entry *entry, int *nsegmentp,
uvm_coredump_walk_cb *walk, void *cookie)
{
struct vm_anon *anons[WALK_CHUNK];
vaddr_t pos, start, realend, end, entry_end;
vm_prot_t prot;
int nsegment, absent, npages, i, error;
prot = entry->protection;
nsegment = *nsegmentp;
start = entry->start;
entry_end = MIN(entry->end, VM_MAXUSER_ADDRESS);
absent = 0;
for (pos = start; pos < entry_end; pos += npages << PAGE_SHIFT) {
npages = (entry_end - pos) >> PAGE_SHIFT;
if (npages > WALK_CHUNK)
npages = WALK_CHUNK;
amap_lookups(&entry->aref, pos - entry->start, anons, npages);
for (i = 0; i < npages; i++) {
if ((anons[i] == NULL) == absent)
continue;
if (!absent) {
realend = pos + (i << PAGE_SHIFT);
absent = 1;
continue;
}
end = pos + (i << PAGE_SHIFT);
if (start != end) {
error = (*walk)(start, realend, end, prot,
0, nsegment, cookie);
if (error)
return error;
nsegment++;
}
start = realend = end;
absent = 0;
}
}
if (!absent)
realend = entry_end;
error = (*walk)(start, realend, entry_end, prot, 0, nsegment, cookie);
*nsegmentp = nsegment + 1;
return error;
}
static inline int
uvm_should_coredump(struct proc *p, struct vm_map_entry *entry)
{
if (!(entry->protection & PROT_WRITE) &&
entry->aref.ar_amap == NULL &&
entry->start != p->p_p->ps_sigcode &&
entry->start != p->p_p->ps_timekeep)
return 0;
if (!(entry->protection & PROT_READ) &&
entry->start != p->p_p->ps_sigcode)
return 0;
if (UVM_ET_ISCONCEAL(entry))
return 0;
if (entry->object.uvm_obj != NULL &&
UVM_OBJ_IS_DEVICE(entry->object.uvm_obj))
return 0;
if (entry->start >= VM_MAXUSER_ADDRESS)
return 0;
return 1;
}
static int
noop(vaddr_t start, vaddr_t realend, vaddr_t end, vm_prot_t prot,
int isvnode, int nsegment, void *cookie)
{
return 0;
}
int
uvm_coredump_walkmap(struct proc *p, uvm_coredump_setup_cb *setup,
uvm_coredump_walk_cb *walk, void *cookie)
{
struct vmspace *vm = p->p_vmspace;
struct vm_map *map = &vm->vm_map;
struct vm_map_entry *entry;
vaddr_t end;
int refed_amaps = 0;
int nsegment, error, isvnode;
nsegment = 0;
RBT_FOREACH(entry, uvm_map_addr, &map->addr) {
if (UVM_ET_ISSUBMAP(entry)) {
panic("%s: user process with submap?", __func__);
}
if (! uvm_should_coredump(p, entry))
continue;
if (entry->aref.ar_amap != NULL) {
if (entry->aref.ar_amap->am_ref == 1) {
uvm_coredump_walk_amap(entry, &nsegment,
&noop, cookie);
continue;
}
entry->aref.ar_amap->am_ref++;
refed_amaps++;
}
nsegment++;
}
entry = RBT_MIN(uvm_map_addr, &map->addr);
error = (*setup)(nsegment, cookie);
if (error)
goto cleanup;
nsegment = 0;
for (; entry != NULL; entry = RBT_NEXT(uvm_map_addr, entry)) {
if (! uvm_should_coredump(p, entry))
continue;
if (entry->aref.ar_amap != NULL &&
entry->aref.ar_amap->am_ref == 1) {
error = uvm_coredump_walk_amap(entry, &nsegment,
walk, cookie);
if (error)
break;
continue;
}
end = entry->end;
if (end > VM_MAXUSER_ADDRESS)
end = VM_MAXUSER_ADDRESS;
isvnode = (entry->object.uvm_obj != NULL &&
UVM_OBJ_IS_VNODE(entry->object.uvm_obj));
error = (*walk)(entry->start, end, end, entry->protection,
isvnode, nsegment, cookie);
if (error)
break;
nsegment++;
if (entry->aref.ar_amap != NULL &&
entry->aref.ar_amap->am_ref > 1) {
entry->aref.ar_amap->am_ref--;
refed_amaps--;
}
}
if (error) {
cleanup:
if (refed_amaps > 0) {
for (; entry != NULL;
entry = RBT_NEXT(uvm_map_addr, entry)) {
if (entry->aref.ar_amap == NULL ||
entry->aref.ar_amap->am_ref == 1)
continue;
if (! uvm_should_coredump(p, entry))
continue;
entry->aref.ar_amap->am_ref--;
if (refed_amaps-- == 0)
break;
}
}
}
return error;
}
#endif