blob: bd107093a67d338165603f0fe2201ecacfcb67a0 [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
Maxa15f05f2016-01-26 10:43:15 +01002 * (C) 2012 Ivan Klyuchnikov
Harald Weltee08da972017-11-13 01:00:26 +09003 * (C) 2015 sysmocom - s.f.m.c. GmbH
Harald Welteec8b4502010-02-20 20:34:29 +01004 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020023#pragma once
24
Harald Welteba6988b2011-08-17 12:46:48 +020025/*! \defgroup bitvec Bit vectors
26 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020027 * \file bitvec.h */
Harald Welteba6988b2011-08-17 12:46:48 +020028
Harald Weltecd623eb2011-05-29 15:37:38 +020029#include <stdint.h>
Harald Weltef2899c62017-01-15 17:54:11 +010030#include <osmocom/core/talloc.h>
Max0b3db502017-10-18 13:48:10 +020031#include <osmocom/core/defs.h>
Max0a59e982016-02-05 13:55:37 +010032#include <stdbool.h>
Harald Welteec8b4502010-02-20 20:34:29 +010033
Neels Hofmeyr87e45502017-06-20 00:17:59 +020034/*! A single GSM bit
Harald Welteba6988b2011-08-17 12:46:48 +020035 *
36 * In GSM mac blocks, every bit can be 0 or 1, or L or H. L/H are
Harald Welteec8b4502010-02-20 20:34:29 +010037 * defined relative to the 0x2b padding pattern */
38enum bit_value {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020039 ZERO = 0, /*!< A zero (0) bit */
40 ONE = 1, /*!< A one (1) bit */
41 L = 2, /*!< A CSN.1 "L" bit */
42 H = 3, /*!< A CSN.1 "H" bit */
Harald Welteec8b4502010-02-20 20:34:29 +010043};
44
Neels Hofmeyr87e45502017-06-20 00:17:59 +020045/*! structure describing a bit vector */
Harald Welteec8b4502010-02-20 20:34:29 +010046struct bitvec {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020047 unsigned int cur_bit; /*!< cursor to the next unused bit */
48 unsigned int data_len; /*!< length of data array in bytes */
49 uint8_t *data; /*!< pointer to data array */
Harald Welteec8b4502010-02-20 20:34:29 +010050};
51
Harald Welted9abf012010-03-06 11:28:49 +010052enum bit_value bitvec_get_bit_pos(const struct bitvec *bv, unsigned int bitnr);
Andreas.Eversberg0ebd6882010-05-09 09:36:54 +000053enum bit_value bitvec_get_bit_pos_high(const struct bitvec *bv,
54 unsigned int bitnr);
Harald Welted9abf012010-03-06 11:28:49 +010055unsigned int bitvec_get_nth_set_bit(const struct bitvec *bv, unsigned int n);
Harald Welteec8b4502010-02-20 20:34:29 +010056int bitvec_set_bit_pos(struct bitvec *bv, unsigned int bitnum,
57 enum bit_value bit);
Harald Welteec8b4502010-02-20 20:34:29 +010058int bitvec_set_bit(struct bitvec *bv, enum bit_value bit);
Andreas.Eversberg0ebd6882010-05-09 09:36:54 +000059int bitvec_get_bit_high(struct bitvec *bv);
Harald Welte14bf28a2016-06-27 15:19:10 +020060int bitvec_set_bits(struct bitvec *bv, const enum bit_value *bits, unsigned int count);
Max0b3db502017-10-18 13:48:10 +020061int bitvec_set_u64(struct bitvec *bv, uint64_t v, uint8_t num_bits, bool use_lh);
Harald Welte449324b2017-01-15 17:55:32 +010062int bitvec_set_uint(struct bitvec *bv, unsigned int in, unsigned int count);
Maxe49af082016-01-22 16:46:56 +010063int bitvec_get_uint(struct bitvec *bv, unsigned int num_bits);
Pablo Neira Ayuso36bdf2c2011-03-28 19:24:19 +020064int bitvec_find_bit_pos(const struct bitvec *bv, unsigned int n, enum bit_value val);
Harald Welteec8b4502010-02-20 20:34:29 +010065int bitvec_spare_padding(struct bitvec *bv, unsigned int up_to_bit);
Maxe49af082016-01-22 16:46:56 +010066int bitvec_get_bytes(struct bitvec *bv, uint8_t *bytes, unsigned int count);
67int bitvec_set_bytes(struct bitvec *bv, const uint8_t *bytes, unsigned int count);
Maxa15f05f2016-01-26 10:43:15 +010068struct bitvec *bitvec_alloc(unsigned int size, TALLOC_CTX *bvctx);
69void bitvec_free(struct bitvec *bv);
70int bitvec_unhex(struct bitvec *bv, const char *src);
71unsigned int bitvec_pack(const struct bitvec *bv, uint8_t *buffer);
72unsigned int bitvec_unpack(struct bitvec *bv, const uint8_t *buffer);
Holger Hans Peter Freythera9301a12016-01-30 10:54:43 +010073uint64_t bitvec_read_field(struct bitvec *bv, unsigned int *read_index, unsigned int len);
74int bitvec_write_field(struct bitvec *bv, unsigned int *write_index, uint64_t val, unsigned int len);
Max0a59e982016-02-05 13:55:37 +010075int bitvec_fill(struct bitvec *bv, unsigned int num_bits, enum bit_value fill);
76char bit_value_to_char(enum bit_value v);
77void bitvec_to_string_r(const struct bitvec *bv, char *str);
78void bitvec_zero(struct bitvec *bv);
79unsigned bitvec_rl(const struct bitvec *bv, bool b);
Pravin Kumarvel848de8f2016-12-02 15:13:03 +053080unsigned bitvec_rl_curbit(struct bitvec *bv, bool b, int max_bits);
Max0a59e982016-02-05 13:55:37 +010081void bitvec_shiftl(struct bitvec *bv, unsigned int n);
82int16_t bitvec_get_int16_msb(const struct bitvec *bv, unsigned int num_bits);
Maxd4793212016-03-17 11:51:08 +010083unsigned int bitvec_add_array(struct bitvec *bv, const uint32_t *array,
84 unsigned int array_len, bool dry_run,
85 unsigned int num_bits);
Harald Welteec8b4502010-02-20 20:34:29 +010086
Harald Welteae7966d2019-02-03 12:04:46 +010087/*! Return the number of bytes used within the bit vector */
88static inline unsigned int bitvec_used_bytes(const struct bitvec *bv)
89{
90 unsigned int bytes = bv->cur_bit/8;
91 if (bv->cur_bit%8)
92 bytes++;
93 return bytes;
94}
95
Harald Welteb0708d32019-02-04 12:09:05 +010096/*! Return the tailroom in number of unused bits remaining in the bit-vector */
97static inline unsigned int bitvec_tailroom_bits(const struct bitvec *bv)
98{
99 return bv->data_len*8 - bv->cur_bit;
100}
101
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200102/*! @} */