]> git.proxmox.com Git - mirror_frr.git/blame - qpb/linear_allocator.h
debianpkg: Add debian9 backport to distribution tar
[mirror_frr.git] / qpb / linear_allocator.h
CommitLineData
dad253b4
AS
1/*
2 * linear_allocator.h
3 *
4 * @copyright Copyright (C) 2016 Sproute Networks, Inc.
5 *
6 * @author Avneesh Sachdev <avneesh@sproute.com>
7 *
8 * This file is part of Quagga.
9 *
10 * Quagga is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2, or (at your option) any
13 * later version.
14 *
15 * Quagga is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with Quagga; see the file COPYING. If not, write to the Free
22 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 * 02111-1307, USA.
24 */
25
26/*
27 * Header file for the linear allocator.
28 *
29 * An allocator that allocates memory by walking down towards the end
30 * of a buffer. No attempt is made to reuse blocks that are freed
31 * subsequently. The assumption is that the buffer is big enough to
32 * cover allocations for a given purpose.
33 */
34#include <assert.h>
35#include <string.h>
36#include <stdint.h>
37#include <stddef.h>
38
39/*
40 * Alignment for block allocated by the allocator. Must be a power of 2.
41 */
42#define LINEAR_ALLOCATOR_ALIGNMENT 8
43
ac4d0be5 44#define LINEAR_ALLOCATOR_ALIGN(value) \
45 (((value) + LINEAR_ALLOCATOR_ALIGNMENT - 1) \
46 & ~(LINEAR_ALLOCATOR_ALIGNMENT - 1));
dad253b4
AS
47
48/*
49 * linear_allocator_align_ptr
50 */
ac4d0be5 51static inline char *linear_allocator_align_ptr(char *ptr)
dad253b4 52{
ac4d0be5 53 return (char *)LINEAR_ALLOCATOR_ALIGN((intptr_t)ptr);
dad253b4
AS
54}
55
ac4d0be5 56typedef struct linear_allocator_t_ {
57 char *buf;
58
59 /*
60 * Current location in the buffer.
61 */
62 char *cur;
63
64 /*
65 * End of buffer.
66 */
67 char *end;
68
69 /*
70 * Version number of the allocator, this is bumped up when the allocator
71 * is reset and helps identifies bad frees.
72 */
73 uint32_t version;
74
75 /*
76 * The number of blocks that are currently allocated.
77 */
78 int num_allocated;
dad253b4
AS
79} linear_allocator_t;
80
81/*
82 * linear_allocator_block_t
83 *
84 * Header structure at the begining of each block.
85 */
ac4d0be5 86typedef struct linear_allocator_block_t_ {
87 uint32_t flags;
88
89 /*
90 * The version of the allocator when this block was allocated.
91 */
92 uint32_t version;
93 char data[0];
dad253b4
AS
94} linear_allocator_block_t;
95
96#define LINEAR_ALLOCATOR_BLOCK_IN_USE 0x01
97
98#define LINEAR_ALLOCATOR_HDR_SIZE (sizeof(linear_allocator_block_t))
99
100/*
101 * linear_allocator_block_size
102 *
103 * The total amount of space a block will take in the buffer,
104 * including the size of the header.
105 */
ac4d0be5 106static inline size_t linear_allocator_block_size(size_t user_size)
dad253b4 107{
ac4d0be5 108 return LINEAR_ALLOCATOR_ALIGN(LINEAR_ALLOCATOR_HDR_SIZE + user_size);
dad253b4
AS
109}
110
111/*
112 * linear_allocator_ptr_to_block
113 */
ac4d0be5 114static inline linear_allocator_block_t *linear_allocator_ptr_to_block(void *ptr)
dad253b4 115{
ac4d0be5 116 void *block_ptr;
117 block_ptr = ((char *)ptr) - offsetof(linear_allocator_block_t, data);
118 return block_ptr;
dad253b4
AS
119}
120
121/*
122 * linear_allocator_init
123 */
ac4d0be5 124static inline void linear_allocator_init(linear_allocator_t *allocator,
125 char *buf, size_t buf_len)
dad253b4 126{
ac4d0be5 127 memset(allocator, 0, sizeof(*allocator));
dad253b4 128
ac4d0be5 129 assert(linear_allocator_align_ptr(buf) == buf);
130 allocator->buf = buf;
131 allocator->cur = buf;
132 allocator->end = buf + buf_len;
dad253b4
AS
133}
134
135/*
136 * linear_allocator_reset
137 *
138 * Prepare an allocator for reuse.
139 *
140 * *** NOTE ** This implicitly frees all the blocks in the allocator.
141 */
ac4d0be5 142static inline void linear_allocator_reset(linear_allocator_t *allocator)
dad253b4 143{
ac4d0be5 144 allocator->num_allocated = 0;
145 allocator->version++;
146 allocator->cur = allocator->buf;
dad253b4
AS
147}
148
149/*
150 * linear_allocator_alloc
151 */
ac4d0be5 152static inline void *linear_allocator_alloc(linear_allocator_t *allocator,
153 size_t user_size)
dad253b4 154{
ac4d0be5 155 size_t block_size;
156 linear_allocator_block_t *block;
dad253b4 157
ac4d0be5 158 block_size = linear_allocator_block_size(user_size);
dad253b4 159
ac4d0be5 160 if (allocator->cur + block_size > allocator->end) {
161 return NULL;
162 }
dad253b4 163
ac4d0be5 164 block = (linear_allocator_block_t *)allocator->cur;
165 allocator->cur += block_size;
dad253b4 166
ac4d0be5 167 block->flags = LINEAR_ALLOCATOR_BLOCK_IN_USE;
168 block->version = allocator->version;
169 allocator->num_allocated++;
170 return block->data;
dad253b4
AS
171}
172
173/*
174 * linear_allocator_free
175 */
ac4d0be5 176static inline void linear_allocator_free(linear_allocator_t *allocator,
177 void *ptr)
dad253b4 178{
ac4d0be5 179 linear_allocator_block_t *block;
180
181 if (((char *)ptr) < allocator->buf || ((char *)ptr) >= allocator->end) {
182 assert(0);
183 return;
184 }
185
186 block = linear_allocator_ptr_to_block(ptr);
187 if (block->version != allocator->version) {
188 assert(0);
189 return;
190 }
191
192 block->flags = block->flags & ~LINEAR_ALLOCATOR_BLOCK_IN_USE;
193
194 if (--allocator->num_allocated < 0) {
195 assert(0);
196 }
dad253b4 197}