1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*! \file crcXXgen.c
* Osmocom generic CRC routines (for max XX bits poly). */
/*
* Copyright (C) 2011 Sylvain Munaut <tnt@246tNt.com>
*
* All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/*! \addtogroup crc
* @{
* Osmocom generic CRC routines (for max XX bits poly).
*
* \file crcXXgen.c.tpl */
#include <stdint.h>
#include <osmocom/core/bits.h>
#include <osmocom/core/crcXXgen.h>
/*! Compute the CRC value of a given array of hard-bits
* \param[in] code The CRC code description to apply
* \param[in] in Array of hard bits
* \param[in] len Length of the array of hard bits
* \returns The CRC value
*/
uintXX_t
osmo_crcXXgen_compute_bits(const struct osmo_crcXXgen_code *code,
const ubit_t *in, int len)
{
const uintXX_t poly = code->poly;
uintXX_t crc = code->init;
int i, n = code->bits-1;
for (i=0; i<len; i++) {
uintXX_t bit = in[i] & 1;
crc ^= (bit << n);
if (crc & ((uintXX_t)1 << n)) {
crc <<= 1;
crc ^= poly;
} else {
crc <<= 1;
}
crc &= ((uintXX_t)1 << code->bits) - 1;
}
crc ^= code->remainder;
return crc;
}
/*! Checks the CRC value of a given array of hard-bits
* \param[in] code The CRC code description to apply
* \param[in] in Array of hard bits
* \param[in] len Length of the array of hard bits
* \param[in] crc_bits Array of hard bits with the alleged CRC
* \returns 0 if CRC matches. 1 in case of error.
*
* The crc_bits array must have a length of code->len
*/
int
osmo_crcXXgen_check_bits(const struct osmo_crcXXgen_code *code,
const ubit_t *in, int len, const ubit_t *crc_bits)
{
uintXX_t crc;
int i;
crc = osmo_crcXXgen_compute_bits(code, in, len);
for (i=0; i<code->bits; i++)
if (crc_bits[i] ^ ((crc >> (code->bits-i-1)) & 1))
return 1;
return 0;
}
/*! Computes and writes the CRC value of a given array of bits
* \param[in] code The CRC code description to apply
* \param[in] in Array of hard bits
* \param[in] len Length of the array of hard bits
* \param[in] crc_bits Array of hard bits to write the computed CRC to
*
* The crc_bits array must have a length of code->len
*/
void
osmo_crcXXgen_set_bits(const struct osmo_crcXXgen_code *code,
const ubit_t *in, int len, ubit_t *crc_bits)
{
uintXX_t crc;
int i;
crc = osmo_crcXXgen_compute_bits(code, in, len);
for (i=0; i<code->bits; i++)
crc_bits[i] = ((crc >> (code->bits-i-1)) & 1);
}
/*! @} */
/* vim: set syntax=c: */
|