xref: /spdk/lib/util/bit_array.c (revision a6dbe3721eb3b5990707fc3e378c95e505dd8ab5)
1 /*   SPDX-License-Identifier: BSD-3-Clause
2  *   Copyright (C) 2016 Intel Corporation.
3  *   All rights reserved.
4  */
5 
6 #include "spdk/stdinc.h"
7 
8 #include "spdk/bit_array.h"
9 #include "spdk/bit_pool.h"
10 #include "spdk/env.h"
11 
12 #include "spdk/likely.h"
13 #include "spdk/util.h"
14 
15 typedef uint64_t spdk_bit_array_word;
16 #define SPDK_BIT_ARRAY_WORD_TZCNT(x)	(__builtin_ctzll(x))
17 #define SPDK_BIT_ARRAY_WORD_POPCNT(x)	(__builtin_popcountll(x))
18 #define SPDK_BIT_ARRAY_WORD_C(x)	((spdk_bit_array_word)(x))
19 #define SPDK_BIT_ARRAY_WORD_BYTES	sizeof(spdk_bit_array_word)
20 #define SPDK_BIT_ARRAY_WORD_BITS	(SPDK_BIT_ARRAY_WORD_BYTES * 8)
21 #define SPDK_BIT_ARRAY_WORD_INDEX_SHIFT	spdk_u32log2(SPDK_BIT_ARRAY_WORD_BITS)
22 #define SPDK_BIT_ARRAY_WORD_INDEX_MASK	((1u << SPDK_BIT_ARRAY_WORD_INDEX_SHIFT) - 1)
23 
24 struct spdk_bit_array {
25 	uint32_t bit_count;
26 	spdk_bit_array_word words[];
27 };
28 
29 struct spdk_bit_array *
spdk_bit_array_create(uint32_t num_bits)30 spdk_bit_array_create(uint32_t num_bits)
31 {
32 	struct spdk_bit_array *ba = NULL;
33 
34 	spdk_bit_array_resize(&ba, num_bits);
35 
36 	return ba;
37 }
38 
39 void
spdk_bit_array_free(struct spdk_bit_array ** bap)40 spdk_bit_array_free(struct spdk_bit_array **bap)
41 {
42 	struct spdk_bit_array *ba;
43 
44 	if (!bap) {
45 		return;
46 	}
47 
48 	ba = *bap;
49 	*bap = NULL;
50 	spdk_free(ba);
51 }
52 
53 static inline uint32_t
bit_array_word_count(uint32_t num_bits)54 bit_array_word_count(uint32_t num_bits)
55 {
56 	return (num_bits + SPDK_BIT_ARRAY_WORD_BITS - 1) >> SPDK_BIT_ARRAY_WORD_INDEX_SHIFT;
57 }
58 
59 static inline spdk_bit_array_word
bit_array_word_mask(uint32_t num_bits)60 bit_array_word_mask(uint32_t num_bits)
61 {
62 	assert(num_bits < SPDK_BIT_ARRAY_WORD_BITS);
63 	return (SPDK_BIT_ARRAY_WORD_C(1) << num_bits) - 1;
64 }
65 
66 int
spdk_bit_array_resize(struct spdk_bit_array ** bap,uint32_t num_bits)67 spdk_bit_array_resize(struct spdk_bit_array **bap, uint32_t num_bits)
68 {
69 	struct spdk_bit_array *new_ba;
70 	uint32_t old_word_count, new_word_count;
71 	size_t new_size;
72 
73 	/*
74 	 * Max number of bits allowed is UINT32_MAX - 1, because we use UINT32_MAX to denote
75 	 * when a set or cleared bit cannot be found.
76 	 */
77 	if (!bap || num_bits == UINT32_MAX) {
78 		return -EINVAL;
79 	}
80 
81 	new_word_count = bit_array_word_count(num_bits);
82 	new_size = offsetof(struct spdk_bit_array, words) + new_word_count * SPDK_BIT_ARRAY_WORD_BYTES;
83 
84 	/*
85 	 * Always keep one extra word with a 0 and a 1 past the actual required size so that the
86 	 * find_first functions can just keep going until they match.
87 	 */
88 	new_size += SPDK_BIT_ARRAY_WORD_BYTES;
89 
90 	new_ba = (struct spdk_bit_array *)spdk_realloc(*bap, new_size, 64);
91 	if (!new_ba) {
92 		return -ENOMEM;
93 	}
94 
95 	/*
96 	 * Set up special extra word (see above comment about find_first_clear).
97 	 *
98 	 * This is set to 0b10 so that find_first_clear will find a 0 at the very first
99 	 * bit past the end of the buffer, and find_first_set will find a 1 at the next bit
100 	 * past that.
101 	 */
102 	new_ba->words[new_word_count] = 0x2;
103 
104 	if (*bap == NULL) {
105 		old_word_count = 0;
106 		new_ba->bit_count = 0;
107 	} else {
108 		old_word_count = bit_array_word_count(new_ba->bit_count);
109 	}
110 
111 	if (new_word_count > old_word_count) {
112 		/* Zero out new entries */
113 		memset(&new_ba->words[old_word_count], 0,
114 		       (new_word_count - old_word_count) * SPDK_BIT_ARRAY_WORD_BYTES);
115 	} else if (new_word_count == old_word_count && num_bits < new_ba->bit_count) {
116 		/* Make sure any existing partial last word is cleared beyond the new num_bits. */
117 		uint32_t last_word_bits;
118 		spdk_bit_array_word mask;
119 
120 		last_word_bits = num_bits & SPDK_BIT_ARRAY_WORD_INDEX_MASK;
121 		mask = bit_array_word_mask(last_word_bits);
122 		new_ba->words[old_word_count - 1] &= mask;
123 	}
124 
125 	new_ba->bit_count = num_bits;
126 	*bap = new_ba;
127 	return 0;
128 }
129 
130 uint32_t
spdk_bit_array_capacity(const struct spdk_bit_array * ba)131 spdk_bit_array_capacity(const struct spdk_bit_array *ba)
132 {
133 	return ba->bit_count;
134 }
135 
136 static inline int
bit_array_get_word(const struct spdk_bit_array * ba,uint32_t bit_index,uint32_t * word_index,uint32_t * word_bit_index)137 bit_array_get_word(const struct spdk_bit_array *ba, uint32_t bit_index,
138 		   uint32_t *word_index, uint32_t *word_bit_index)
139 {
140 	if (spdk_unlikely(bit_index >= ba->bit_count)) {
141 		return -EINVAL;
142 	}
143 
144 	*word_index = bit_index >> SPDK_BIT_ARRAY_WORD_INDEX_SHIFT;
145 	*word_bit_index = bit_index & SPDK_BIT_ARRAY_WORD_INDEX_MASK;
146 
147 	return 0;
148 }
149 
150 bool
spdk_bit_array_get(const struct spdk_bit_array * ba,uint32_t bit_index)151 spdk_bit_array_get(const struct spdk_bit_array *ba, uint32_t bit_index)
152 {
153 	uint32_t word_index, word_bit_index;
154 
155 	if (bit_array_get_word(ba, bit_index, &word_index, &word_bit_index)) {
156 		return false;
157 	}
158 
159 	return (ba->words[word_index] >> word_bit_index) & 1U;
160 }
161 
162 int
spdk_bit_array_set(struct spdk_bit_array * ba,uint32_t bit_index)163 spdk_bit_array_set(struct spdk_bit_array *ba, uint32_t bit_index)
164 {
165 	uint32_t word_index, word_bit_index;
166 
167 	if (bit_array_get_word(ba, bit_index, &word_index, &word_bit_index)) {
168 		return -EINVAL;
169 	}
170 
171 	ba->words[word_index] |= (SPDK_BIT_ARRAY_WORD_C(1) << word_bit_index);
172 	return 0;
173 }
174 
175 void
spdk_bit_array_clear(struct spdk_bit_array * ba,uint32_t bit_index)176 spdk_bit_array_clear(struct spdk_bit_array *ba, uint32_t bit_index)
177 {
178 	uint32_t word_index, word_bit_index;
179 
180 	if (bit_array_get_word(ba, bit_index, &word_index, &word_bit_index)) {
181 		/*
182 		 * Clearing past the end of the bit array is a no-op, since bit past the end
183 		 * are implicitly 0.
184 		 */
185 		return;
186 	}
187 
188 	ba->words[word_index] &= ~(SPDK_BIT_ARRAY_WORD_C(1) << word_bit_index);
189 }
190 
191 static inline uint32_t
bit_array_find_first(const struct spdk_bit_array * ba,uint32_t start_bit_index,spdk_bit_array_word xor_mask)192 bit_array_find_first(const struct spdk_bit_array *ba, uint32_t start_bit_index,
193 		     spdk_bit_array_word xor_mask)
194 {
195 	uint32_t word_index, first_word_bit_index;
196 	spdk_bit_array_word word, first_word_mask;
197 	const spdk_bit_array_word *words, *cur_word;
198 
199 	if (spdk_unlikely(start_bit_index >= ba->bit_count)) {
200 		return ba->bit_count;
201 	}
202 
203 	word_index = start_bit_index >> SPDK_BIT_ARRAY_WORD_INDEX_SHIFT;
204 	words = ba->words;
205 	cur_word = &words[word_index];
206 
207 	/*
208 	 * Special case for first word: skip start_bit_index % SPDK_BIT_ARRAY_WORD_BITS bits
209 	 * within the first word.
210 	 */
211 	first_word_bit_index = start_bit_index & SPDK_BIT_ARRAY_WORD_INDEX_MASK;
212 	first_word_mask = bit_array_word_mask(first_word_bit_index);
213 
214 	word = (*cur_word ^ xor_mask) & ~first_word_mask;
215 
216 	/*
217 	 * spdk_bit_array_resize() guarantees that an extra word with a 1 and a 0 will always be
218 	 * at the end of the words[] array, so just keep going until a word matches.
219 	 */
220 	while (word == 0) {
221 		word = *++cur_word ^ xor_mask;
222 	}
223 
224 	return ((uintptr_t)cur_word - (uintptr_t)words) * 8 + SPDK_BIT_ARRAY_WORD_TZCNT(word);
225 }
226 
227 
228 uint32_t
spdk_bit_array_find_first_set(const struct spdk_bit_array * ba,uint32_t start_bit_index)229 spdk_bit_array_find_first_set(const struct spdk_bit_array *ba, uint32_t start_bit_index)
230 {
231 	uint32_t bit_index;
232 
233 	bit_index = bit_array_find_first(ba, start_bit_index, 0);
234 
235 	/*
236 	 * If we ran off the end of the array and found the 1 bit in the extra word,
237 	 * return UINT32_MAX to indicate no actual 1 bits were found.
238 	 */
239 	if (bit_index >= ba->bit_count) {
240 		bit_index = UINT32_MAX;
241 	}
242 
243 	return bit_index;
244 }
245 
246 uint32_t
spdk_bit_array_find_first_clear(const struct spdk_bit_array * ba,uint32_t start_bit_index)247 spdk_bit_array_find_first_clear(const struct spdk_bit_array *ba, uint32_t start_bit_index)
248 {
249 	uint32_t bit_index;
250 
251 	bit_index = bit_array_find_first(ba, start_bit_index, SPDK_BIT_ARRAY_WORD_C(-1));
252 
253 	/*
254 	 * If we ran off the end of the array and found the 0 bit in the extra word,
255 	 * return UINT32_MAX to indicate no actual 0 bits were found.
256 	 */
257 	if (bit_index >= ba->bit_count) {
258 		bit_index = UINT32_MAX;
259 	}
260 
261 	return bit_index;
262 }
263 
264 uint32_t
spdk_bit_array_count_set(const struct spdk_bit_array * ba)265 spdk_bit_array_count_set(const struct spdk_bit_array *ba)
266 {
267 	const spdk_bit_array_word *cur_word = ba->words;
268 	uint32_t word_count = bit_array_word_count(ba->bit_count);
269 	uint32_t set_count = 0;
270 
271 	while (word_count--) {
272 		/*
273 		 * No special treatment is needed for the last (potentially partial) word, since
274 		 * spdk_bit_array_resize() makes sure the bits past bit_count are cleared.
275 		 */
276 		set_count += SPDK_BIT_ARRAY_WORD_POPCNT(*cur_word++);
277 	}
278 
279 	return set_count;
280 }
281 
282 uint32_t
spdk_bit_array_count_clear(const struct spdk_bit_array * ba)283 spdk_bit_array_count_clear(const struct spdk_bit_array *ba)
284 {
285 	return ba->bit_count - spdk_bit_array_count_set(ba);
286 }
287 
288 void
spdk_bit_array_store_mask(const struct spdk_bit_array * ba,void * mask)289 spdk_bit_array_store_mask(const struct spdk_bit_array *ba, void *mask)
290 {
291 	uint32_t size, i;
292 	uint32_t num_bits = spdk_bit_array_capacity(ba);
293 
294 	size = num_bits / CHAR_BIT;
295 	memcpy(mask, ba->words, size);
296 
297 	for (i = 0; i < num_bits % CHAR_BIT; i++) {
298 		if (spdk_bit_array_get(ba, i + size * CHAR_BIT)) {
299 			((uint8_t *)mask)[size] |= (1U << i);
300 		} else {
301 			((uint8_t *)mask)[size] &= ~(1U << i);
302 		}
303 	}
304 }
305 
306 void
spdk_bit_array_load_mask(struct spdk_bit_array * ba,const void * mask)307 spdk_bit_array_load_mask(struct spdk_bit_array *ba, const void *mask)
308 {
309 	uint32_t size, i;
310 	uint32_t num_bits = spdk_bit_array_capacity(ba);
311 
312 	size = num_bits / CHAR_BIT;
313 	memcpy(ba->words, mask, size);
314 
315 	for (i = 0; i < num_bits % CHAR_BIT; i++) {
316 		if (((uint8_t *)mask)[size] & (1U << i)) {
317 			spdk_bit_array_set(ba, i + size * CHAR_BIT);
318 		} else {
319 			spdk_bit_array_clear(ba, i + size * CHAR_BIT);
320 		}
321 	}
322 }
323 
324 void
spdk_bit_array_clear_mask(struct spdk_bit_array * ba)325 spdk_bit_array_clear_mask(struct spdk_bit_array *ba)
326 {
327 	uint32_t size, i;
328 	uint32_t num_bits = spdk_bit_array_capacity(ba);
329 
330 	size = num_bits / CHAR_BIT;
331 	memset(ba->words, 0, size);
332 
333 	for (i = 0; i < num_bits % CHAR_BIT; i++) {
334 		spdk_bit_array_clear(ba, i + size * CHAR_BIT);
335 	}
336 }
337 
338 struct spdk_bit_pool {
339 	struct spdk_bit_array	*array;
340 	uint32_t		lowest_free_bit;
341 	uint32_t		free_count;
342 };
343 
344 struct spdk_bit_pool *
spdk_bit_pool_create(uint32_t num_bits)345 spdk_bit_pool_create(uint32_t num_bits)
346 {
347 	struct spdk_bit_pool *pool = NULL;
348 	struct spdk_bit_array *array;
349 
350 	array = spdk_bit_array_create(num_bits);
351 	if (array == NULL) {
352 		return NULL;
353 	}
354 
355 	pool = calloc(1, sizeof(*pool));
356 	if (pool == NULL) {
357 		spdk_bit_array_free(&array);
358 		return NULL;
359 	}
360 
361 	pool->array = array;
362 	pool->lowest_free_bit = 0;
363 	pool->free_count = num_bits;
364 
365 	return pool;
366 }
367 
368 struct spdk_bit_pool *
spdk_bit_pool_create_from_array(struct spdk_bit_array * array)369 spdk_bit_pool_create_from_array(struct spdk_bit_array *array)
370 {
371 	struct spdk_bit_pool *pool = NULL;
372 
373 	pool = calloc(1, sizeof(*pool));
374 	if (pool == NULL) {
375 		return NULL;
376 	}
377 
378 	pool->array = array;
379 	pool->lowest_free_bit = spdk_bit_array_find_first_clear(array, 0);
380 	pool->free_count = spdk_bit_array_count_clear(array);
381 
382 	return pool;
383 }
384 
385 void
spdk_bit_pool_free(struct spdk_bit_pool ** ppool)386 spdk_bit_pool_free(struct spdk_bit_pool **ppool)
387 {
388 	struct spdk_bit_pool *pool;
389 
390 	if (!ppool) {
391 		return;
392 	}
393 
394 	pool = *ppool;
395 	*ppool = NULL;
396 	if (pool != NULL) {
397 		spdk_bit_array_free(&pool->array);
398 		free(pool);
399 	}
400 }
401 
402 int
spdk_bit_pool_resize(struct spdk_bit_pool ** ppool,uint32_t num_bits)403 spdk_bit_pool_resize(struct spdk_bit_pool **ppool, uint32_t num_bits)
404 {
405 	struct spdk_bit_pool *pool;
406 	int rc;
407 
408 	assert(ppool != NULL);
409 
410 	pool = *ppool;
411 	rc = spdk_bit_array_resize(&pool->array, num_bits);
412 	if (rc) {
413 		return rc;
414 	}
415 
416 	pool->lowest_free_bit = spdk_bit_array_find_first_clear(pool->array, 0);
417 	pool->free_count = spdk_bit_array_count_clear(pool->array);
418 
419 	return 0;
420 }
421 
422 uint32_t
spdk_bit_pool_capacity(const struct spdk_bit_pool * pool)423 spdk_bit_pool_capacity(const struct spdk_bit_pool *pool)
424 {
425 	return spdk_bit_array_capacity(pool->array);
426 }
427 
428 bool
spdk_bit_pool_is_allocated(const struct spdk_bit_pool * pool,uint32_t bit_index)429 spdk_bit_pool_is_allocated(const struct spdk_bit_pool *pool, uint32_t bit_index)
430 {
431 	return spdk_bit_array_get(pool->array, bit_index);
432 }
433 
434 uint32_t
spdk_bit_pool_allocate_bit(struct spdk_bit_pool * pool)435 spdk_bit_pool_allocate_bit(struct spdk_bit_pool *pool)
436 {
437 	uint32_t bit_index = pool->lowest_free_bit;
438 
439 	if (bit_index == UINT32_MAX) {
440 		return UINT32_MAX;
441 	}
442 
443 	spdk_bit_array_set(pool->array, bit_index);
444 	pool->lowest_free_bit = spdk_bit_array_find_first_clear(pool->array, bit_index);
445 	pool->free_count--;
446 	return bit_index;
447 }
448 
449 void
spdk_bit_pool_free_bit(struct spdk_bit_pool * pool,uint32_t bit_index)450 spdk_bit_pool_free_bit(struct spdk_bit_pool *pool, uint32_t bit_index)
451 {
452 	assert(spdk_bit_array_get(pool->array, bit_index) == true);
453 
454 	spdk_bit_array_clear(pool->array, bit_index);
455 	if (pool->lowest_free_bit > bit_index) {
456 		pool->lowest_free_bit = bit_index;
457 	}
458 	pool->free_count++;
459 }
460 
461 uint32_t
spdk_bit_pool_count_allocated(const struct spdk_bit_pool * pool)462 spdk_bit_pool_count_allocated(const struct spdk_bit_pool *pool)
463 {
464 	return spdk_bit_array_capacity(pool->array) - pool->free_count;
465 }
466 
467 uint32_t
spdk_bit_pool_count_free(const struct spdk_bit_pool * pool)468 spdk_bit_pool_count_free(const struct spdk_bit_pool *pool)
469 {
470 	return pool->free_count;
471 }
472 
473 void
spdk_bit_pool_store_mask(const struct spdk_bit_pool * pool,void * mask)474 spdk_bit_pool_store_mask(const struct spdk_bit_pool *pool, void *mask)
475 {
476 	spdk_bit_array_store_mask(pool->array, mask);
477 }
478 
479 void
spdk_bit_pool_load_mask(struct spdk_bit_pool * pool,const void * mask)480 spdk_bit_pool_load_mask(struct spdk_bit_pool *pool, const void *mask)
481 {
482 	spdk_bit_array_load_mask(pool->array, mask);
483 	pool->lowest_free_bit = spdk_bit_array_find_first_clear(pool->array, 0);
484 	pool->free_count = spdk_bit_array_count_clear(pool->array);
485 }
486 
487 void
spdk_bit_pool_free_all_bits(struct spdk_bit_pool * pool)488 spdk_bit_pool_free_all_bits(struct spdk_bit_pool *pool)
489 {
490 	spdk_bit_array_clear_mask(pool->array);
491 	pool->lowest_free_bit = 0;
492 	pool->free_count = spdk_bit_array_capacity(pool->array);
493 }
494