[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.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | #include <libc.h>
|
---|
| 30 | #include <unistd.h>
|
---|
| 31 |
|
---|
[585819d] | 32 | /** mmap syscall
|
---|
| 33 | *
|
---|
| 34 | * @param address Virtual address where to place new address space area.
|
---|
| 35 | * @param size Size of the area.
|
---|
| 36 | * @param flags Flags describing type of the area.
|
---|
| 37 | *
|
---|
| 38 | * @return address on success, (void *) -1 otherwise.
|
---|
| 39 | */
|
---|
| 40 | void *mmap(void *address, size_t size, int flags)
|
---|
[79522a7] | 41 | {
|
---|
[585819d] | 42 | return (void *) __SYSCALL3(SYS_MMAP, (sysarg_t ) address, (sysarg_t) size, (sysarg_t) flags);
|
---|
[79522a7] | 43 | }
|
---|
[7ad3c2f] | 44 |
|
---|
[585819d] | 45 | /** mremap syscall
|
---|
| 46 | *
|
---|
| 47 | * @param address Virtual address pointing into already existing address space area.
|
---|
| 48 | * @param size New requested size of the area.
|
---|
| 49 | * @param flags Currently unused.
|
---|
| 50 | *
|
---|
| 51 | * @return address on success, (void *) -1 otherwise.
|
---|
| 52 | */
|
---|
| 53 | void *mremap(void *address, size_t size, int flags)
|
---|
| 54 | {
|
---|
| 55 | return (void *) __SYSCALL3(SYS_MREMAP, (sysarg_t ) address, (sysarg_t) size, (sysarg_t) flags);
|
---|
| 56 | }
|
---|
[7ad3c2f] | 57 |
|
---|
| 58 | static size_t heapsize = 0;
|
---|
| 59 | /* Start of heap linker symbol */
|
---|
| 60 | extern char _heap;
|
---|
| 61 |
|
---|
| 62 | /** Sbrk emulation
|
---|
| 63 | *
|
---|
| 64 | * @param size New area that should be allocated or negative,
|
---|
| 65 | if it should be shrinked
|
---|
| 66 | * @return Pointer to newly allocated area
|
---|
| 67 | */
|
---|
| 68 | void *sbrk(ssize_t incr)
|
---|
| 69 | {
|
---|
| 70 | void *res;
|
---|
| 71 | /* Check for invalid values */
|
---|
| 72 | if (incr < 0 && -incr > heapsize)
|
---|
| 73 | return NULL;
|
---|
| 74 | /* Check for too large value */
|
---|
| 75 | if (incr > 0 && incr+heapsize < heapsize)
|
---|
| 76 | return NULL;
|
---|
| 77 | /* Check for too small values */
|
---|
| 78 | if (incr < 0 && incr+heapsize > heapsize)
|
---|
| 79 | return NULL;
|
---|
| 80 |
|
---|
| 81 | res = mremap(&_heap, heapsize + incr,0);
|
---|
| 82 | if (!res)
|
---|
| 83 | return NULL;
|
---|
[936351c1] | 84 |
|
---|
| 85 | /* Compute start of new area */
|
---|
| 86 | res = (void *)&_heap + heapsize;
|
---|
| 87 |
|
---|
[7ad3c2f] | 88 | heapsize += incr;
|
---|
[936351c1] | 89 |
|
---|
[7ad3c2f] | 90 | return res;
|
---|
| 91 | }
|
---|