[79522a7] | 1 | /*
|
---|
| 2 | * Copyright (C) 2006 Jakub Jermar
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
[b2951e2] | 27 | */
|
---|
| 28 |
|
---|
[a46da63] | 29 | /** @addtogroup libc
|
---|
[b2951e2] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[79522a7] | 33 | */
|
---|
| 34 |
|
---|
[5a4c754] | 35 | #include <as.h>
|
---|
[79522a7] | 36 | #include <libc.h>
|
---|
| 37 | #include <unistd.h>
|
---|
[bf9afa07] | 38 | #include <align.h>
|
---|
[d681c17] | 39 | #include <types.h>
|
---|
| 40 |
|
---|
| 41 | /**
|
---|
| 42 | * Either 4*256M on 32-bit architecures or 16*256M on 64-bit architectures.
|
---|
| 43 | */
|
---|
| 44 | #define MAX_HEAP_SIZE (sizeof(uintptr_t)<<28)
|
---|
[79522a7] | 45 |
|
---|
[d3b8c1f] | 46 | /** Create address space area.
|
---|
[585819d] | 47 | *
|
---|
| 48 | * @param address Virtual address where to place new address space area.
|
---|
| 49 | * @param size Size of the area.
|
---|
| 50 | * @param flags Flags describing type of the area.
|
---|
| 51 | *
|
---|
| 52 | * @return address on success, (void *) -1 otherwise.
|
---|
| 53 | */
|
---|
[d3b8c1f] | 54 | void *as_area_create(void *address, size_t size, int flags)
|
---|
[79522a7] | 55 | {
|
---|
[d3b8c1f] | 56 | return (void *) __SYSCALL3(SYS_AS_AREA_CREATE, (sysarg_t ) address, (sysarg_t) size, (sysarg_t) flags);
|
---|
[79522a7] | 57 | }
|
---|
[7ad3c2f] | 58 |
|
---|
[d3b8c1f] | 59 | /** Resize address space area.
|
---|
[585819d] | 60 | *
|
---|
| 61 | * @param address Virtual address pointing into already existing address space area.
|
---|
| 62 | * @param size New requested size of the area.
|
---|
| 63 | * @param flags Currently unused.
|
---|
| 64 | *
|
---|
[46ec2c06] | 65 | * @return Zero on success or a code from @ref errno.h on failure.
|
---|
| 66 | */
|
---|
| 67 | int as_area_resize(void *address, size_t size, int flags)
|
---|
| 68 | {
|
---|
| 69 | return __SYSCALL3(SYS_AS_AREA_RESIZE, (sysarg_t ) address, (sysarg_t) size, (sysarg_t) flags);
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | /** Destroy address space area.
|
---|
| 73 | *
|
---|
| 74 | * @param address Virtual address pointing into the address space area being destroyed.
|
---|
| 75 | *
|
---|
| 76 | * @return Zero on success or a code from @ref errno.h on failure.
|
---|
[585819d] | 77 | */
|
---|
[46ec2c06] | 78 | int as_area_destroy(void *address)
|
---|
[585819d] | 79 | {
|
---|
[46ec2c06] | 80 | return __SYSCALL1(SYS_AS_AREA_DESTROY, (sysarg_t ) address);
|
---|
[585819d] | 81 | }
|
---|
[7ad3c2f] | 82 |
|
---|
| 83 | static size_t heapsize = 0;
|
---|
[a46da63] | 84 | static size_t maxheapsize = (size_t) (-1);
|
---|
[bf9afa07] | 85 |
|
---|
| 86 | static void * last_allocated = 0;
|
---|
| 87 |
|
---|
[7ad3c2f] | 88 | /* Start of heap linker symbol */
|
---|
| 89 | extern char _heap;
|
---|
| 90 |
|
---|
| 91 | /** Sbrk emulation
|
---|
| 92 | *
|
---|
[b2951e2] | 93 | * @param incr New area that should be allocated or negative,
|
---|
[7ad3c2f] | 94 | if it should be shrinked
|
---|
| 95 | * @return Pointer to newly allocated area
|
---|
| 96 | */
|
---|
| 97 | void *sbrk(ssize_t incr)
|
---|
| 98 | {
|
---|
[46ec2c06] | 99 | int rc;
|
---|
[7ad3c2f] | 100 | void *res;
|
---|
[a46da63] | 101 |
|
---|
[7ad3c2f] | 102 | /* Check for invalid values */
|
---|
| 103 | if (incr < 0 && -incr > heapsize)
|
---|
| 104 | return NULL;
|
---|
[a46da63] | 105 |
|
---|
[7ad3c2f] | 106 | /* Check for too large value */
|
---|
| 107 | if (incr > 0 && incr+heapsize < heapsize)
|
---|
| 108 | return NULL;
|
---|
[a46da63] | 109 |
|
---|
[7ad3c2f] | 110 | /* Check for too small values */
|
---|
| 111 | if (incr < 0 && incr+heapsize > heapsize)
|
---|
| 112 | return NULL;
|
---|
[a46da63] | 113 |
|
---|
[afa6e74] | 114 | /* Check for user limit */
|
---|
[a46da63] | 115 | if ((maxheapsize != (size_t) (-1)) && (heapsize + incr) > maxheapsize)
|
---|
| 116 | return NULL;
|
---|
| 117 |
|
---|
| 118 | rc = as_area_resize(&_heap, heapsize + incr, 0);
|
---|
[46ec2c06] | 119 | if (rc != 0)
|
---|
[7ad3c2f] | 120 | return NULL;
|
---|
[936351c1] | 121 |
|
---|
| 122 | /* Compute start of new area */
|
---|
[a46da63] | 123 | res = (void *) &_heap + heapsize;
|
---|
[936351c1] | 124 |
|
---|
[7ad3c2f] | 125 | heapsize += incr;
|
---|
[936351c1] | 126 |
|
---|
[7ad3c2f] | 127 | return res;
|
---|
| 128 | }
|
---|
[afa6e74] | 129 |
|
---|
[bf9afa07] | 130 | /** Set maximum heap size and return pointer just after the heap */
|
---|
[afa6e74] | 131 | void *set_maxheapsize(size_t mhs)
|
---|
| 132 | {
|
---|
[a46da63] | 133 | maxheapsize = mhs;
|
---|
[afa6e74] | 134 | /* Return pointer to area not managed by sbrk */
|
---|
[a46da63] | 135 | return ((void *) &_heap + maxheapsize);
|
---|
[afa6e74] | 136 |
|
---|
| 137 | }
|
---|
[bf9afa07] | 138 |
|
---|
| 139 | /** Return pointer to some unmapped area, where fits new as_area
|
---|
| 140 | *
|
---|
| 141 | * TODO: make some first_fit/... algorithm, we are now just incrementing
|
---|
| 142 | * the pointer to last area
|
---|
| 143 | */
|
---|
| 144 | void * as_get_mappable_page(size_t sz)
|
---|
| 145 | {
|
---|
| 146 | void *res;
|
---|
| 147 |
|
---|
| 148 | /* Set heapsize to some meaningful value */
|
---|
| 149 | if (maxheapsize == -1)
|
---|
[d681c17] | 150 | set_maxheapsize(MAX_HEAP_SIZE);
|
---|
[a46da63] | 151 |
|
---|
[bf9afa07] | 152 | if (!last_allocated)
|
---|
[a46da63] | 153 | last_allocated = (void *) ALIGN_UP((void *) &_heap + maxheapsize, PAGE_SIZE);
|
---|
[bf9afa07] | 154 |
|
---|
| 155 | sz = ALIGN_UP(sz, PAGE_SIZE);
|
---|
| 156 | res = last_allocated;
|
---|
| 157 | last_allocated += sz;
|
---|
| 158 |
|
---|
| 159 | return res;
|
---|
| 160 | }
|
---|
[b2951e2] | 161 |
|
---|
[a46da63] | 162 | /** @}
|
---|
[b2951e2] | 163 | */
|
---|