1 /* Allocation from a fixed-size buffer.
2 Copyright (C) 2017-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 /* Allocation buffers are used to carve out sub-allocations from a
20 larger allocation. Their primary application is in writing NSS
21 modules, which receive a caller-allocated buffer in which they are
22 expected to store variable-length results:
25 size_t buffer_size = ...;
27 struct alloc_buffer buf = alloc_buffer_create (buffer, buffer_size);
28 result->gr_name = alloc_buffer_copy_string (&buf, name);
30 // Allocate a list of group_count groups and copy strings into it.
31 char **group_list = alloc_buffer_alloc_array
32 (&buf, char *, group_count + 1);
33 if (group_list == NULL)
34 return ...; // Request a larger buffer.
35 for (int i = 0; i < group_count; ++i)
36 group_list[i] = alloc_buffer_copy_string (&buf, group_list_src[i]);
37 group_list[group_count] = NULL;
40 if (alloc_buffer_has_failed (&buf))
41 return ...; // Request a larger buffer.
42 result->gr_mem = group_list;
45 Note that it is not necessary to check the results of individual
46 allocation operations if the returned pointer is not dereferenced.
47 Allocation failure is sticky, so one check using
48 alloc_buffer_has_failed at the end covers all previous failures.
50 A different use case involves combining multiple heap allocations
51 into a single, large one. In the following example, an array of
52 doubles and an array of ints is allocated:
54 size_t double_array_size = ...;
55 size_t int_array_size = ...;
58 struct alloc_buffer buf = alloc_buffer_allocate
59 (double_array_size * sizeof (double) + int_array_size * sizeof (int),
61 _Static_assert (__alignof__ (double) >= __alignof__ (int),
62 "no padding after double array");
63 double *double_array = alloc_buffer_alloc_array
64 (&buf, double, double_array_size);
65 int *int_array = alloc_buffer_alloc_array (&buf, int, int_array_size);
66 if (alloc_buffer_has_failed (&buf))
67 return ...; // Report error.
71 The advantage over manual coding is that the computation of the
72 allocation size does not need an overflow check. In case of an
73 overflow, one of the subsequent allocations from the buffer will
74 fail. The initial size computation is checked for consistency at
77 #ifndef _ALLOC_BUFFER_H
78 #define _ALLOC_BUFFER_H
84 #include <sys/param.h>
86 /* struct alloc_buffer objects refer to a region of bytes in memory of a
87 fixed size. The functions below can be used to allocate single
88 objects and arrays from this memory region, or write to its end.
89 On allocation failure (or if an attempt to write beyond the end of
90 the buffer with one of the copy functions), the buffer enters a
93 struct alloc_buffer objects can be copied. The backing buffer will
94 be shared, but the current write position will be independent.
96 Conceptually, the memory region consists of a current write pointer
97 and a limit, beyond which the write pointer cannot move. */
100 /* uintptr_t is used here to simplify the alignment code, and to
101 avoid issues undefined subtractions if the buffer covers more
102 than half of the address space (which would result in differences
103 which could not be represented as a ptrdiff_t value). */
104 uintptr_t __alloc_buffer_current
;
105 uintptr_t __alloc_buffer_end
;
110 /* The value for the __alloc_buffer_current member which marks the
111 buffer as invalid (together with a zero-length buffer). */
112 __ALLOC_BUFFER_INVALID_POINTER
= 0,
115 /* Internal function. Terminate the process using __libc_fatal. */
116 void __libc_alloc_buffer_create_failure (void *start
, size_t size
);
118 libc_hidden_proto (__libc_alloc_buffer_create_failure
)
121 /* Create a new allocation buffer. The byte range from START to START
122 + SIZE - 1 must be valid, and the allocation buffer allocates
123 objects from that range. If START is NULL (so that SIZE must be
124 0), the buffer is marked as failed immediately. */
125 static inline struct alloc_buffer
126 alloc_buffer_create (void *start
, size_t size
)
128 uintptr_t current
= (uintptr_t) start
;
129 uintptr_t end
= (uintptr_t) start
+ size
;
131 __libc_alloc_buffer_create_failure (start
, size
);
132 return (struct alloc_buffer
) { current
, end
};
135 /* Internal function. See alloc_buffer_allocate below. */
136 struct alloc_buffer
__libc_alloc_buffer_allocate (size_t size
, void **pptr
)
137 __attribute__ ((nonnull (2)));
139 libc_hidden_proto (__libc_alloc_buffer_allocate
)
142 /* Allocate a buffer of SIZE bytes using malloc. The returned buffer
143 is in a failed state if malloc fails. *PPTR points to the start of
144 the buffer and can be used to free it later, after the returned
145 buffer has been freed. */
146 static __always_inline
__attribute__ ((nonnull (2)))
147 struct alloc_buffer
alloc_buffer_allocate (size_t size
, void **pptr
)
149 return __libc_alloc_buffer_allocate (size
, pptr
);
152 /* Mark the buffer as failed. */
153 static inline void __attribute__ ((nonnull (1)))
154 alloc_buffer_mark_failed (struct alloc_buffer
*buf
)
156 buf
->__alloc_buffer_current
= __ALLOC_BUFFER_INVALID_POINTER
;
157 buf
->__alloc_buffer_end
= __ALLOC_BUFFER_INVALID_POINTER
;
160 /* Return the remaining number of bytes in the buffer. */
161 static __always_inline
__attribute__ ((nonnull (1))) size_t
162 alloc_buffer_size (const struct alloc_buffer
*buf
)
164 return buf
->__alloc_buffer_end
- buf
->__alloc_buffer_current
;
167 /* Return true if the buffer has been marked as failed. */
168 static inline bool __attribute__ ((nonnull (1)))
169 alloc_buffer_has_failed (const struct alloc_buffer
*buf
)
171 return buf
->__alloc_buffer_current
== __ALLOC_BUFFER_INVALID_POINTER
;
174 /* Add a single byte to the buffer (consuming the space for this
175 byte). Mark the buffer as failed if there is not enough room. */
176 static inline void __attribute__ ((nonnull (1)))
177 alloc_buffer_add_byte (struct alloc_buffer
*buf
, unsigned char b
)
179 if (__glibc_likely (buf
->__alloc_buffer_current
< buf
->__alloc_buffer_end
))
181 *(unsigned char *) buf
->__alloc_buffer_current
= b
;
182 ++buf
->__alloc_buffer_current
;
185 alloc_buffer_mark_failed (buf
);
188 /* Obtain a pointer to LENGTH bytes in BUF, and consume these bytes.
189 NULL is returned if there is not enough room, and the buffer is
190 marked as failed, or if the buffer has already failed.
191 (Zero-length allocations from an empty buffer which has not yet
192 failed succeed.) The buffer contents is not modified. */
193 static inline __attribute__ ((nonnull (1))) void *
194 alloc_buffer_alloc_bytes (struct alloc_buffer
*buf
, size_t length
)
196 if (length
<= alloc_buffer_size (buf
))
198 void *result
= (void *) buf
->__alloc_buffer_current
;
199 buf
->__alloc_buffer_current
+= length
;
204 alloc_buffer_mark_failed (buf
);
209 /* Internal function. Statically assert that the type size is
210 constant and valid. */
211 static __always_inline
size_t
212 __alloc_buffer_assert_size (size_t size
)
214 if (!__builtin_constant_p (size
))
216 __errordecl (error
, "type size is not constant");
221 __errordecl (error
, "type size is zero");
227 /* Internal function. Statically assert that the type alignment is
228 constant and valid. */
229 static __always_inline
size_t
230 __alloc_buffer_assert_align (size_t align
)
232 if (!__builtin_constant_p (align
))
234 __errordecl (error
, "type alignment is not constant");
239 __errordecl (error
, "type alignment is zero");
242 else if (!powerof2 (align
))
244 __errordecl (error
, "type alignment is not a power of two");
250 /* Internal function. Obtain a pointer to an object. */
251 static inline __attribute__ ((nonnull (1))) void *
252 __alloc_buffer_alloc (struct alloc_buffer
*buf
, size_t size
, size_t align
)
254 if (size
== 1 && align
== 1)
255 return alloc_buffer_alloc_bytes (buf
, size
);
257 uintptr_t current
= buf
->__alloc_buffer_current
;
258 uintptr_t aligned
= roundup (current
, align
);
259 uintptr_t new_current
= aligned
+ size
;
260 if (aligned
>= current
/* No overflow in align step. */
261 && new_current
>= size
/* No overflow in size computation. */
262 && new_current
<= buf
->__alloc_buffer_end
) /* Room in buffer. */
264 buf
->__alloc_buffer_current
= new_current
;
265 return (void *) aligned
;
269 alloc_buffer_mark_failed (buf
);
274 /* Obtain a TYPE * pointer to an object in BUF of TYPE. Consume these
275 bytes from the buffer. Return NULL and mark the buffer as failed
276 if there is not enough room in the buffer, or if the buffer has
278 #define alloc_buffer_alloc(buf, type) \
279 ((type *) __alloc_buffer_alloc \
280 (buf, __alloc_buffer_assert_size (sizeof (type)), \
281 __alloc_buffer_assert_align (__alignof__ (type))))
283 /* Internal function. Obtain a pointer to an object which is
284 subsequently added. */
285 static inline const __attribute__ ((nonnull (1))) void *
286 __alloc_buffer_next (struct alloc_buffer
*buf
, size_t align
)
289 return (const void *) buf
->__alloc_buffer_current
;
291 uintptr_t current
= buf
->__alloc_buffer_current
;
292 uintptr_t aligned
= roundup (current
, align
);
293 if (aligned
>= current
/* No overflow in align step. */
294 && aligned
<= buf
->__alloc_buffer_end
) /* Room in buffer. */
296 buf
->__alloc_buffer_current
= aligned
;
297 return (const void *) aligned
;
301 alloc_buffer_mark_failed (buf
);
306 /* Like alloc_buffer_alloc, but do not advance the pointer beyond the
307 object (so a subseqent call to alloc_buffer_next or
308 alloc_buffer_alloc returns the same pointer). Note that the buffer
309 is still aligned according to the requirements of TYPE, potentially
310 consuming buffer space. The effect of this function is similar to
311 allocating a zero-length array from the buffer.
313 It is possible to use the return pointer to write to the buffer and
314 consume the written bytes using alloc_buffer_alloc_bytes (which
315 does not change the buffer contents), but the calling code needs to
316 perform manual length checks using alloc_buffer_size. For example,
317 to read as many int32_t values that are available in the input file
318 and can fit into the remaining buffer space, you can use this:
320 int32_t array = alloc_buffer_next (buf, int32_t);
321 size_t ret = fread (array, sizeof (int32_t),
322 alloc_buffer_size (buf) / sizeof (int32_t), fp);
325 alloc_buffer_alloc_array (buf, int32_t, ret);
327 The alloc_buffer_alloc_array call makes the actually-used part of
328 the buffer permanent. The remaining part of the buffer (not filled
329 with data from the file) can be used for something else.
331 This manual length checking can easily introduce errors, so this
332 coding style is not recommended. */
333 #define alloc_buffer_next(buf, type) \
334 ((type *) __alloc_buffer_next \
335 (buf, __alloc_buffer_assert_align (__alignof__ (type))))
337 /* Internal function. Allocate an array. */
338 void * __libc_alloc_buffer_alloc_array (struct alloc_buffer
*buf
,
339 size_t size
, size_t align
,
341 __attribute__ ((nonnull (1)));
343 libc_hidden_proto (__libc_alloc_buffer_alloc_array
)
346 /* Obtain a TYPE * pointer to an array of COUNT objects in BUF of
347 TYPE. Consume these bytes from the buffer. Return NULL and mark
348 the buffer as failed if there is not enough room in the buffer,
349 or if the buffer has failed before. (Zero-length allocations from
350 an empty buffer which has not yet failed succeed.) */
351 #define alloc_buffer_alloc_array(buf, type, count) \
352 ((type *) __libc_alloc_buffer_alloc_array \
353 (buf, __alloc_buffer_assert_size (sizeof (type)), \
354 __alloc_buffer_assert_align (__alignof__ (type)), \
357 /* Internal function. See alloc_buffer_copy_bytes below. */
358 struct alloc_buffer
__libc_alloc_buffer_copy_bytes (struct alloc_buffer
,
359 const void *, size_t)
360 __attribute__ ((nonnull (2)));
362 libc_hidden_proto (__libc_alloc_buffer_copy_bytes
)
365 /* Copy SIZE bytes starting at SRC into the buffer. If there is not
366 enough room in the buffer, the buffer is marked as failed. No
367 alignment of the buffer is performed. */
368 static inline __attribute__ ((nonnull (1, 2))) void
369 alloc_buffer_copy_bytes (struct alloc_buffer
*buf
, const void *src
, size_t size
)
371 *buf
= __libc_alloc_buffer_copy_bytes (*buf
, src
, size
);
374 /* Internal function. See alloc_buffer_copy_string below. */
375 struct alloc_buffer
__libc_alloc_buffer_copy_string (struct alloc_buffer
,
377 __attribute__ ((nonnull (2)));
379 libc_hidden_proto (__libc_alloc_buffer_copy_string
)
382 /* Copy the string at SRC into the buffer, including its null
383 terminator. If there is not enough room in the buffer, the buffer
384 is marked as failed. Return a pointer to the string. */
385 static inline __attribute__ ((nonnull (1, 2))) char *
386 alloc_buffer_copy_string (struct alloc_buffer
*buf
, const char *src
)
388 char *result
= (char *) buf
->__alloc_buffer_current
;
389 *buf
= __libc_alloc_buffer_copy_string (*buf
, src
);
390 if (alloc_buffer_has_failed (buf
))
395 #endif /* _ALLOC_BUFFER_H */