1 /* Memory allocation aligned to system page boundaries.
3 Copyright (C) 2005 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public
16 License along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 /* Written by Derek R. Price <derek@ximbiot.com>. */
26 #include "pagealign_alloc.h"
38 # include <sys/mman.h>
43 #include "getpagesize.h"
47 #if HAVE_MMAP && !defined(HAVE_MAP_ANONYMOUS)
51 __RCSID("$MirOS: src/gnu/usr.bin/cvs/lib/pagealign_alloc.c,v 1.5 2010/09/19 19:42:59 tg Exp $");
53 #define _(str) gettext (str)
56 /* Define MAP_FILE when it isn't otherwise. */
60 /* Define MAP_FAILED for old systems which neglect to. */
62 # define MAP_FAILED ((void *)-1)
67 #if HAVE_MMAP || ! HAVE_POSIX_MEMALIGN
70 /* For each memory region, we store its size. */
71 typedef size_t info_t;
73 /* For each memory region, we store the original pointer returned by
75 typedef void * info_t;
78 /* A simple linked list of allocated memory regions. It is probably not the
79 most efficient way to store these, but anyway... */
80 typedef struct memnode_s memnode_t;
88 /* The list of currently allocated memory regions. */
89 static memnode_t *memnode_table = NULL;
93 new_memnode (void *aligned_ptr, info_t info)
95 memnode_t *new_node = (memnode_t *) xmalloc (sizeof (memnode_t));
96 new_node->aligned_ptr = aligned_ptr;
97 new_node->info = info;
98 new_node->next = memnode_table;
99 memnode_table = new_node;
103 /* Dispose of the memnode containing a map for the ALIGNED_PTR in question
104 and return the content of the node's INFO field. */
106 get_memnode (void *aligned_ptr)
110 memnode_t **p_next = &memnode_table;
112 for (c = *p_next; c != NULL; p_next = &c->next, c = c->next)
113 if (c->aligned_ptr == aligned_ptr)
117 /* An attempt to free untracked memory. A wrong pointer was passed
118 to pagealign_free(). */
121 /* Remove this entry from the list, save the return value, and free it. */
129 #endif /* HAVE_MMAP || !HAVE_POSIX_MEMALIGN */
133 pagealign_alloc (size_t size)
137 # ifdef HAVE_MAP_ANONYMOUS
139 const int flags = MAP_ANONYMOUS | MAP_PRIVATE;
140 # else /* !HAVE_MAP_ANONYMOUS */
141 static int beenhere = 0;
142 static int fd = -1; /* Only open /dev/zero once in order to avoid limiting
143 the amount of memory we may allocate based on the
144 number of open file descriptors. */
145 const int flags = MAP_FILE | MAP_PRIVATE;
148 fd = open ("/dev/zero", O_RDONLY, 0666);
154 error (EXIT_FAILURE, errno, _("Failed to open /dev/zero for read"));
158 fprintf (stderr, "Fatal in pagealign: %s\n",
159 _("Failed to open /dev/zero for read"));
161 _exit (EXIT_FAILURE);
165 # endif /* HAVE_MAP_ANONYMOUS */
166 ret = mmap (NULL, size, PROT_READ | PROT_WRITE, flags, fd, 0);
167 if (ret == MAP_FAILED)
169 new_memnode (ret, size);
170 #elif HAVE_POSIX_MEMALIGN
171 int status = posix_memalign (&ret, getpagesize (), size);
177 #else /* !HAVE_MMAP && !HAVE_POSIX_MEMALIGN */
178 size_t pagesize = getpagesize ();
179 void *unaligned_ptr = malloc (size + pagesize - 1);
180 if (unaligned_ptr == NULL)
182 /* Set errno. We don't know whether malloc already set errno: some
183 implementations of malloc do, some don't. */
187 ret = (char *) unaligned_ptr
188 + ((- (unsigned long) unaligned_ptr) & (pagesize - 1));
189 new_memnode (ret, unaligned_ptr);
190 #endif /* HAVE_MMAP && HAVE_POSIX_MEMALIGN */
196 pagealign_xalloc (size_t size)
200 ret = pagealign_alloc (size);
208 pagealign_free (void *aligned_ptr)
211 if (munmap (aligned_ptr, get_memnode (aligned_ptr)) < 0)
212 error (EXIT_FAILURE, errno, "Failed to unmap memory");
213 #elif HAVE_POSIX_MEMALIGN
216 free (get_memnode (aligned_ptr));