source: mainline/uspace/lib/libc/generic/as.c@ ab00d5a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ab00d5a was c98e6ee, checked in by Jiri Svoboda <jirik.svoboda@…>, 17 years ago

Merge program-loader related stuff from dynload branch to trunk. (huge)

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[79522a7]1/*
[df4ed85]2 * Copyright (c) 2006 Jakub Jermar
[79522a7]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>
[5d4e90f0]39#include <sys/types.h>
[f8ddd17]40#include <bitops.h>
[d681c17]41
42/**
43 * Either 4*256M on 32-bit architecures or 16*256M on 64-bit architectures.
44 */
45#define MAX_HEAP_SIZE (sizeof(uintptr_t)<<28)
[79522a7]46
[d3b8c1f]47/** Create address space area.
[585819d]48 *
49 * @param address Virtual address where to place new address space area.
50 * @param size Size of the area.
51 * @param flags Flags describing type of the area.
52 *
53 * @return address on success, (void *) -1 otherwise.
54 */
[d3b8c1f]55void *as_area_create(void *address, size_t size, int flags)
[79522a7]56{
[f8ddd17]57 return (void *) __SYSCALL3(SYS_AS_AREA_CREATE, (sysarg_t ) address,
[2057572]58 (sysarg_t) size, (sysarg_t) flags);
[79522a7]59}
[7ad3c2f]60
[d3b8c1f]61/** Resize address space area.
[585819d]62 *
[f8ddd17]63 * @param address Virtual address pointing into already existing address space
64 * area.
[585819d]65 * @param size New requested size of the area.
66 * @param flags Currently unused.
67 *
[46ec2c06]68 * @return Zero on success or a code from @ref errno.h on failure.
69 */
70int as_area_resize(void *address, size_t size, int flags)
71{
[2057572]72 return __SYSCALL3(SYS_AS_AREA_RESIZE, (sysarg_t ) address,
73 (sysarg_t) size, (sysarg_t) flags);
[46ec2c06]74}
75
76/** Destroy address space area.
77 *
[f8ddd17]78 * @param address Virtual address pointing into the address space area being
79 * destroyed.
[46ec2c06]80 *
81 * @return Zero on success or a code from @ref errno.h on failure.
[585819d]82 */
[46ec2c06]83int as_area_destroy(void *address)
[585819d]84{
[46ec2c06]85 return __SYSCALL1(SYS_AS_AREA_DESTROY, (sysarg_t ) address);
[585819d]86}
[7ad3c2f]87
[c98e6ee]88/** Change address-space area flags.
89 *
90 * @param address Virtual address pointing into the address space area being
91 * modified.
92 * @param flags New flags describing type of the area.
93 *
94 * @return Zero on success or a code from @ref errno.h on failure.
95 */
96int as_area_change_flags(void *address, int flags)
97{
98 return __SYSCALL2(SYS_AS_AREA_CHANGE_FLAGS, (sysarg_t) address,
99 (sysarg_t) flags);
100}
101
[7ad3c2f]102static size_t heapsize = 0;
[a46da63]103static size_t maxheapsize = (size_t) (-1);
[bf9afa07]104
105static void * last_allocated = 0;
106
[7ad3c2f]107/* Start of heap linker symbol */
108extern char _heap;
109
110/** Sbrk emulation
111 *
[b2951e2]112 * @param incr New area that should be allocated or negative,
[7ad3c2f]113 if it should be shrinked
114 * @return Pointer to newly allocated area
115 */
116void *sbrk(ssize_t incr)
117{
[46ec2c06]118 int rc;
[7ad3c2f]119 void *res;
[a46da63]120
[7ad3c2f]121 /* Check for invalid values */
122 if (incr < 0 && -incr > heapsize)
123 return NULL;
[a46da63]124
[7ad3c2f]125 /* Check for too large value */
126 if (incr > 0 && incr+heapsize < heapsize)
127 return NULL;
[a46da63]128
[7ad3c2f]129 /* Check for too small values */
130 if (incr < 0 && incr+heapsize > heapsize)
131 return NULL;
[a46da63]132
[afa6e74]133 /* Check for user limit */
[a46da63]134 if ((maxheapsize != (size_t) (-1)) && (heapsize + incr) > maxheapsize)
135 return NULL;
136
137 rc = as_area_resize(&_heap, heapsize + incr, 0);
[46ec2c06]138 if (rc != 0)
[7ad3c2f]139 return NULL;
[936351c1]140
141 /* Compute start of new area */
[a46da63]142 res = (void *) &_heap + heapsize;
[936351c1]143
[7ad3c2f]144 heapsize += incr;
[936351c1]145
[7ad3c2f]146 return res;
147}
[afa6e74]148
[bf9afa07]149/** Set maximum heap size and return pointer just after the heap */
[afa6e74]150void *set_maxheapsize(size_t mhs)
151{
[a46da63]152 maxheapsize = mhs;
[afa6e74]153 /* Return pointer to area not managed by sbrk */
[a46da63]154 return ((void *) &_heap + maxheapsize);
[afa6e74]155}
[bf9afa07]156
157/** Return pointer to some unmapped area, where fits new as_area
[f8ddd17]158 *
159 * @param sz Requested size of the allocation.
160 *
161 * @return Pointer to the beginning
[bf9afa07]162 *
163 * TODO: make some first_fit/... algorithm, we are now just incrementing
164 * the pointer to last area
165 */
[2057572]166void *as_get_mappable_page(size_t sz)
[bf9afa07]167{
168 void *res;
[f8ddd17]169 uint64_t asz;
170 int i;
171
172 if (!sz)
173 return NULL;
174
175 asz = 1 << (fnzb64(sz - 1) + 1);
[bf9afa07]176
177 /* Set heapsize to some meaningful value */
178 if (maxheapsize == -1)
[d681c17]179 set_maxheapsize(MAX_HEAP_SIZE);
[a46da63]180
[f8ddd17]181 /*
[2057572]182 * Make sure we allocate from naturally aligned address.
[f8ddd17]183 */
184 i = 0;
[2057572]185 if (!last_allocated) {
186 last_allocated = (void *) ALIGN_UP((void *) &_heap +
187 maxheapsize, asz);
188 } else {
189 last_allocated = (void *) ALIGN_UP(((uintptr_t)
190 last_allocated) + (int) (i > 0), asz);
191 }
[f8ddd17]192
[bf9afa07]193 res = last_allocated;
[f8ddd17]194 last_allocated += ALIGN_UP(sz, PAGE_SIZE);
[bf9afa07]195
196 return res;
197}
[b2951e2]198
[a46da63]199/** @}
[b2951e2]200 */
Note: See TracBrowser for help on using the repository browser.