blob: 744d6ca3e645cebe302ba6c37ab3c960797290cb [file] [log] [blame]
piotr6c692872014-02-08 14:16:26 +01001/* -*- c++ -*- */
ptrkrysik529895b2014-12-02 18:07:38 +01002/*
3 * @file
Piotr Krysika6268a52017-08-23 16:02:19 +02004 * @author (C) 2014 by Piotr Krysik <ptrkrysik@gmail.com>
ptrkrysik529895b2014-12-02 18:07:38 +01005 * @section LICENSE
6 *
7 * Gr-gsm is free software; you can redistribute it and/or modify
piotr6c692872014-02-08 14:16:26 +01008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3, or (at your option)
10 * any later version.
ptrkrysik529895b2014-12-02 18:07:38 +010011 *
12 * Gr-gsm is distributed in the hope that it will be useful,
piotr6c692872014-02-08 14:16:26 +010013 * 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.
ptrkrysik529895b2014-12-02 18:07:38 +010016 *
piotr6c692872014-02-08 14:16:26 +010017 * You should have received a copy of the GNU General Public License
ptrkrysik529895b2014-12-02 18:07:38 +010018 * along with gr-gsm; see the file COPYING. If not, write to
piotr6c692872014-02-08 14:16:26 +010019 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
26
27#include <gnuradio/io_signature.h>
ptrkrysik3be74a72014-12-13 10:11:00 +010028#include <grgsm/gsmtap.h>
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020029#include <grgsm/endian.h>
piotr6d152d92014-02-21 00:02:44 +010030#include <iterator>
31#include <algorithm>
piotrfaacc722014-07-20 23:48:32 +020032#include "bursts_printer_impl.h"
piotrc00ce9c2014-08-04 11:21:24 +020033#include <unistd.h>
piotrc00ce9c2014-08-04 11:21:24 +020034#include <iostream>
Roman Khassraf9a54c7b2015-09-13 11:04:42 +020035extern "C" {
36 #include <osmocom/gsm/a5.h>
37}
piotr6c692872014-02-08 14:16:26 +010038
39namespace gr {
40 namespace gsm {
piotrc00ce9c2014-08-04 11:21:24 +020041 boost::mutex printer_mutex;
Roman Khassraf7faabf32015-07-24 14:14:16 +020042 // dummy burst defined in gsm 05.02, section 5.2.6
43 const int8_t bursts_printer_impl::d_dummy_burst[] = {0,0,0,
44 1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,0,
45 0,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,
46 0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,
47 0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,
48 0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,
49 0,1,0,1,0,1,1,1,0,1,0,0,1,0,1,0,
50 0,0,1,1,0,0,1,1,0,0,1,1,1,0,0,1,
51 1,1,1,0,1,0,0,1,1,1,1,1,0,0,0,1,
52 0,0,1,0,1,1,1,1,1,0,1,0,1,0,
53 0,0,0 };
54
piotr6d152d92014-02-21 00:02:44 +010055 void bursts_printer_impl::bursts_print(pmt::pmt_t msg)
piotr6c692872014-02-08 14:16:26 +010056 {
ptrkrysik617ba032014-11-21 10:11:05 +010057 pmt::pmt_t header_plus_burst = pmt::cdr(msg);
piotr6c692872014-02-08 14:16:26 +010058
ptrkrysik617ba032014-11-21 10:11:05 +010059 gsmtap_hdr * header = (gsmtap_hdr *)pmt::blob_data(header_plus_burst);
60 int8_t * burst = (int8_t *)(pmt::blob_data(header_plus_burst))+sizeof(gsmtap_hdr);
61 size_t burst_len=pmt::blob_length(header_plus_burst)-sizeof(gsmtap_hdr);
Roman Khassraf63444962015-07-13 13:42:57 +020062 uint32_t frame_nr = be32toh(header->frame_number);
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020063
Roman Khassraf7faabf32015-07-24 14:14:16 +020064 if (d_ignore_dummy_bursts && is_dummy_burst(burst, burst_len))
65 {
66 return;
67 }
68
Jacob Gilbert607a09e2014-12-13 10:41:20 -080069 std::cout << d_prepend_string;
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020070 if (d_prepend_fnr)
Roman Khassraf717b57b2015-04-12 18:09:45 +020071 {
Roman Khassraf63444962015-07-13 13:42:57 +020072 std::cout << frame_nr;
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +020073 }
Roman Khassraf717b57b2015-04-12 18:09:45 +020074
Roman Khassraf63444962015-07-13 13:42:57 +020075 if (d_prepend_fnr && d_prepend_frame_count)
piotr6c692872014-02-08 14:16:26 +010076 {
Roman Khassraf63444962015-07-13 13:42:57 +020077 std::cout << " ";
piotr6c692872014-02-08 14:16:26 +010078 }
Roman Khassraf63444962015-07-13 13:42:57 +020079
80 if (d_prepend_frame_count)
81 {
Roman Khassraf9a54c7b2015-09-13 11:04:42 +020082 // calculate fn count using libosmogsm
83 std::cout << osmo_a5_fn_count(frame_nr);
Roman Khassraf63444962015-07-13 13:42:57 +020084 }
85
86 if (d_prepend_fnr || d_prepend_frame_count)
87 {
Roman Khassraff1111eb2015-07-13 13:58:25 +020088 std::cout << ": ";
Roman Khassraf63444962015-07-13 13:42:57 +020089 }
90
91 if (d_print_payload_only)
92 {
93 for (int ii=0; ii<57; ii++)
94 {
95 std::cout << std::setprecision(1) << static_cast<int>(burst[ii + 3]);
96 }
97 for (int ii=0; ii<57; ii++)
98 {
99 std::cout << std::setprecision(1) << static_cast<int>(burst[ii + 88]);
100 }
101 }
102 else
103 {
104 for(int ii=0; ii<burst_len; ii++)
105 {
106 std::cout << std::setprecision(1) << static_cast<int>(burst[ii]);
107 }
108 }
109
piotr6c692872014-02-08 14:16:26 +0100110 std::cout << std::endl;
111 }
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +0200112
Roman Khassraf7faabf32015-07-24 14:14:16 +0200113 bool bursts_printer_impl::is_dummy_burst(int8_t *burst, size_t burst_len)
114 {
115 if (burst_len != DUMMY_BURST_LEN)
116 {
117 return false;
118 }
119 for (int i=0; i<DUMMY_BURST_LEN; i++)
120 {
121 if (burst[i] != d_dummy_burst[i])
122 {
123 return false;
124 }
125 }
126 return true;
127 }
128
piotr6c692872014-02-08 14:16:26 +0100129 bursts_printer::sptr
Roman Khassraf63444962015-07-13 13:42:57 +0200130 bursts_printer::make(pmt::pmt_t prepend_string, bool prepend_fnr,
Roman Khassraf7faabf32015-07-24 14:14:16 +0200131 bool prepend_frame_count, bool print_payload_only,
132 bool ignore_dummy_bursts)
piotr6c692872014-02-08 14:16:26 +0100133 {
134 return gnuradio::get_initial_sptr
Roman Khassraf7faabf32015-07-24 14:14:16 +0200135 (new bursts_printer_impl(prepend_string, prepend_fnr, prepend_frame_count,
136 print_payload_only, ignore_dummy_bursts));
piotr6c692872014-02-08 14:16:26 +0100137 }
138
139 /*
140 * The private constructor
141 */
Roman Khassraf63444962015-07-13 13:42:57 +0200142 bursts_printer_impl::bursts_printer_impl(pmt::pmt_t prepend_string, bool prepend_fnr,
Roman Khassraf7faabf32015-07-24 14:14:16 +0200143 bool prepend_frame_count, bool print_payload_only,
144 bool ignore_dummy_bursts)
piotr6c692872014-02-08 14:16:26 +0100145 : gr::block("bursts_printer",
146 gr::io_signature::make(0, 0, 0),
147 gr::io_signature::make(0, 0, 0))
148 {
Jacob Gilbert607a09e2014-12-13 10:41:20 -0800149 d_prepend_string = prepend_string;
Roman Khassraf717b57b2015-04-12 18:09:45 +0200150 d_prepend_fnr = prepend_fnr;
Roman Khassraf63444962015-07-13 13:42:57 +0200151 d_prepend_frame_count = prepend_frame_count;
152 d_print_payload_only = print_payload_only;
Roman Khassraf7faabf32015-07-24 14:14:16 +0200153 d_ignore_dummy_bursts = ignore_dummy_bursts;
154
piotr6c692872014-02-08 14:16:26 +0100155 message_port_register_in(pmt::mp("bursts"));
156 set_msg_handler(pmt::mp("bursts"), boost::bind(&bursts_printer_impl::bursts_print, this, _1));
157 }
Martin Jesper Low Madsenaf769642015-04-28 22:33:43 +0200158
piotr6c692872014-02-08 14:16:26 +0100159 /*
160 * Our virtual destructor.
161 */
162 bursts_printer_impl::~bursts_printer_impl()
163 {
164 }
165
166
167 } /* namespace gsm */
168} /* namespace gr */