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
|
/* -*- c++ -*- */
/*
* Copyright 2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "crc32_async_bb_impl.h"
#include <gnuradio/io_signature.h>
#include <volk/volk.h>
namespace gr {
namespace digital {
crc32_async_bb::sptr crc32_async_bb::make(bool check)
{
return gnuradio::get_initial_sptr(new crc32_async_bb_impl(check));
}
crc32_async_bb_impl::crc32_async_bb_impl(bool check)
: block("crc32_async_bb", io_signature::make(0, 0, 0), io_signature::make(0, 0, 0)),
d_npass(0),
d_nfail(0)
{
d_in_port = pmt::mp("in");
d_out_port = pmt::mp("out");
message_port_register_in(d_in_port);
message_port_register_out(d_out_port);
if (check)
set_msg_handler(d_in_port, [this](pmt::pmt_t msg) { this->check(msg); });
else
set_msg_handler(d_in_port, [this](pmt::pmt_t msg) { this->calc(msg); });
}
crc32_async_bb_impl::~crc32_async_bb_impl() {}
void crc32_async_bb_impl::calc(pmt::pmt_t msg)
{
// extract input pdu
pmt::pmt_t meta(pmt::car(msg));
pmt::pmt_t bytes(pmt::cdr(msg));
unsigned int crc;
size_t pkt_len(0);
const uint8_t* bytes_in = pmt::u8vector_elements(bytes, pkt_len);
uint8_t* bytes_out =
(uint8_t*)volk_malloc(4 + pkt_len * sizeof(uint8_t), volk_get_alignment());
d_crc_impl.reset();
d_crc_impl.process_bytes(bytes_in, pkt_len);
crc = d_crc_impl();
memcpy((void*)bytes_out, (const void*)bytes_in, pkt_len);
memcpy((void*)(bytes_out + pkt_len),
&crc,
4); // FIXME big-endian/little-endian, this might be wrong
pmt::pmt_t output = pmt::init_u8vector(
pkt_len + 4,
bytes_out); // this copies the values from bytes_out into the u8vector
pmt::pmt_t msg_pair = pmt::cons(meta, output);
message_port_pub(d_out_port, msg_pair);
volk_free(bytes_out);
}
void crc32_async_bb_impl::check(pmt::pmt_t msg)
{
// extract input pdu
pmt::pmt_t meta(pmt::car(msg));
pmt::pmt_t bytes(pmt::cdr(msg));
unsigned int crc;
size_t pkt_len(0);
const uint8_t* bytes_in = pmt::u8vector_elements(bytes, pkt_len);
d_crc_impl.reset();
d_crc_impl.process_bytes(bytes_in, pkt_len - 4);
crc = d_crc_impl();
if (crc != *(unsigned int*)(bytes_in + pkt_len - 4)) { // Drop package
d_nfail++;
return;
}
d_npass++;
pmt::pmt_t output = pmt::init_u8vector(pkt_len - 4, bytes_in);
pmt::pmt_t msg_pair = pmt::cons(meta, output);
message_port_pub(d_out_port, msg_pair);
}
int crc32_async_bb_impl::general_work(int noutput_items,
gr_vector_int& ninput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items)
{
return noutput_items;
}
} /* namespace digital */
} /* namespace gr */
|