blob: 8f9496a8ce8f5a8b3fe5d194327066a75c757e30 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gsmtap_util.c
2 * GSMTAP support code in libosmocore. */
Harald Weltee779c362010-06-29 20:51:13 +02003/*
Harald Welte93713a52017-07-12 23:43:40 +02004 * (C) 2010-2017 by Harald Welte <laforge@gnumonks.org>
Harald Weltee779c362010-06-29 20:51:13 +02005 *
6 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
9 *
Harald Weltee779c362010-06-29 20:51:13 +020010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
26#include "../config.h"
27
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010028#include <osmocom/core/gsmtap_util.h>
29#include <osmocom/core/logging.h>
30#include <osmocom/core/gsmtap.h>
31#include <osmocom/core/msgb.h>
Harald Welte33cb71a2011-05-21 18:54:32 +020032#include <osmocom/core/talloc.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010033#include <osmocom/core/select.h>
Harald Welte33cb71a2011-05-21 18:54:32 +020034#include <osmocom/core/socket.h>
Harald Welte95871da2017-05-15 12:11:36 +020035#include <osmocom/core/byteswap.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010036#include <osmocom/gsm/protocol/gsm_04_08.h>
37#include <osmocom/gsm/rsl.h>
Harald Weltee779c362010-06-29 20:51:13 +020038
Harald Welte33cb71a2011-05-21 18:54:32 +020039#include <sys/types.h>
Harald Weltee4764422011-05-22 12:25:57 +020040
Harald Weltee779c362010-06-29 20:51:13 +020041#include <stdio.h>
42#include <unistd.h>
43#include <stdint.h>
44#include <string.h>
45#include <errno.h>
46
Harald Welte47379ca2011-08-17 16:35:24 +020047/*! \addtogroup gsmtap
48 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020049 * GSMTAP utility routines. Encapsulates GSM messages over UDP.
50 *
51 * \file gsmtap_util.c */
Harald Welte47379ca2011-08-17 16:35:24 +020052
53
Neels Hofmeyr87e45502017-06-20 00:17:59 +020054/*! convert RSL channel number to GSMTAP channel type
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +010055 * \param[in] rsl_chantype RSL channel type
Harald Welte47379ca2011-08-17 16:35:24 +020056 * \param[in] link_id RSL link identifier
57 * \returns GSMTAP channel type
58 */
Harald Weltee779c362010-06-29 20:51:13 +020059uint8_t chantype_rsl2gsmtap(uint8_t rsl_chantype, uint8_t link_id)
60{
61 uint8_t ret = GSMTAP_CHANNEL_UNKNOWN;
62
63 switch (rsl_chantype) {
64 case RSL_CHAN_Bm_ACCHs:
65 ret = GSMTAP_CHANNEL_TCH_F;
66 break;
67 case RSL_CHAN_Lm_ACCHs:
68 ret = GSMTAP_CHANNEL_TCH_H;
69 break;
70 case RSL_CHAN_SDCCH4_ACCH:
71 ret = GSMTAP_CHANNEL_SDCCH4;
72 break;
73 case RSL_CHAN_SDCCH8_ACCH:
74 ret = GSMTAP_CHANNEL_SDCCH8;
75 break;
76 case RSL_CHAN_BCCH:
77 ret = GSMTAP_CHANNEL_BCCH;
78 break;
79 case RSL_CHAN_RACH:
80 ret = GSMTAP_CHANNEL_RACH;
81 break;
82 case RSL_CHAN_PCH_AGCH:
83 /* it could also be AGCH... */
84 ret = GSMTAP_CHANNEL_PCH;
85 break;
Harald Welte3b7cd0b2017-07-27 14:12:15 +020086 case RSL_CHAN_OSMO_PDCH:
87 ret = GSMTAP_CHANNEL_PDCH;
88 break;
Harald Weltee779c362010-06-29 20:51:13 +020089 }
90
91 if (link_id & 0x40)
92 ret |= GSMTAP_CHANNEL_ACCH;
93
94 return ret;
95}
96
Harald Welte93713a52017-07-12 23:43:40 +020097/*! convert GSMTAP channel type to RSL channel number + Link ID
98 * \param[in] gsmtap_chantype GSMTAP channel type
99 * \param[out] rsl_chantype RSL channel mumber
100 * \param[out] link_id RSL link identifier
101 */
102void chantype_gsmtap2rsl(uint8_t gsmtap_chantype, uint8_t *rsl_chantype,
103 uint8_t *link_id)
104{
105 switch (gsmtap_chantype & ~GSMTAP_CHANNEL_ACCH & 0xff) {
106 case GSMTAP_CHANNEL_TCH_F: // TCH/F, FACCH/F
107 *rsl_chantype = RSL_CHAN_Bm_ACCHs;
108 break;
109 case GSMTAP_CHANNEL_TCH_H: // TCH/H, FACCH/H
110 *rsl_chantype = RSL_CHAN_Lm_ACCHs;
111 break;
112 case GSMTAP_CHANNEL_SDCCH4: // SDCCH/4
113 *rsl_chantype = RSL_CHAN_SDCCH4_ACCH;
114 break;
115 case GSMTAP_CHANNEL_SDCCH8: // SDCCH/8
116 *rsl_chantype = RSL_CHAN_SDCCH8_ACCH;
117 break;
118 case GSMTAP_CHANNEL_BCCH: // BCCH
119 *rsl_chantype = RSL_CHAN_BCCH;
120 break;
121 case GSMTAP_CHANNEL_RACH: // RACH
122 *rsl_chantype = RSL_CHAN_RACH;
123 break;
124 case GSMTAP_CHANNEL_PCH: // PCH
125 case GSMTAP_CHANNEL_AGCH: // AGCH
126 *rsl_chantype = RSL_CHAN_PCH_AGCH;
127 break;
128 case GSMTAP_CHANNEL_PDCH:
Harald Welte3b7cd0b2017-07-27 14:12:15 +0200129 *rsl_chantype = RSL_CHAN_OSMO_PDCH;
Harald Welte93713a52017-07-12 23:43:40 +0200130 break;
131 }
132
133 *link_id = gsmtap_chantype & GSMTAP_CHANNEL_ACCH ? 0x40 : 0x00;
134}
135
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200136/*! create an arbitrary type GSMTAP message
Sylvain Munautabf66e72011-09-26 13:23:19 +0200137 * \param[in] type The GSMTAP_TYPE_xxx constant of the message to create
Harald Welte47379ca2011-08-17 16:35:24 +0200138 * \param[in] arfcn GSM ARFCN (Channel Number)
139 * \param[in] ts GSM time slot
140 * \param[in] chan_type Channel Type
141 * \param[in] ss Sub-slot
142 * \param[in] fn GSM Frame Number
143 * \param[in] signal_dbm Signal Strength (dBm)
144 * \param[in] snr Signal/Noise Ratio (SNR)
145 * \param[in] data Pointer to data buffer
146 * \param[in] len Length of \ref data
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200147 * \return dynamically allocated message buffer containing data
Harald Welte47379ca2011-08-17 16:35:24 +0200148 *
149 * This function will allocate a new msgb and fill it with a GSMTAP
150 * header containing the information
151 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200152struct msgb *gsmtap_makemsg_ex(uint8_t type, uint16_t arfcn, uint8_t ts, uint8_t chan_type,
Harald Weltee34a9402010-06-29 22:31:21 +0200153 uint8_t ss, uint32_t fn, int8_t signal_dbm,
154 uint8_t snr, const uint8_t *data, unsigned int len)
Harald Weltee779c362010-06-29 20:51:13 +0200155{
156 struct msgb *msg;
157 struct gsmtap_hdr *gh;
158 uint8_t *dst;
159
Harald Weltee779c362010-06-29 20:51:13 +0200160 msg = msgb_alloc(sizeof(*gh) + len, "gsmtap_tx");
161 if (!msg)
Harald Weltee34a9402010-06-29 22:31:21 +0200162 return NULL;
Harald Weltee779c362010-06-29 20:51:13 +0200163
164 gh = (struct gsmtap_hdr *) msgb_put(msg, sizeof(*gh));
165
166 gh->version = GSMTAP_VERSION;
167 gh->hdr_len = sizeof(*gh)/4;
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200168 gh->type = type;
Harald Weltee779c362010-06-29 20:51:13 +0200169 gh->timeslot = ts;
170 gh->sub_slot = ss;
Harald Welte95871da2017-05-15 12:11:36 +0200171 gh->arfcn = osmo_htons(arfcn);
Harald Weltee779c362010-06-29 20:51:13 +0200172 gh->snr_db = snr;
173 gh->signal_dbm = signal_dbm;
Harald Welte95871da2017-05-15 12:11:36 +0200174 gh->frame_number = osmo_htonl(fn);
Harald Weltee779c362010-06-29 20:51:13 +0200175 gh->sub_type = chan_type;
176 gh->antenna_nr = 0;
177
178 dst = msgb_put(msg, len);
179 memcpy(dst, data, len);
180
Harald Weltee34a9402010-06-29 22:31:21 +0200181 return msg;
182}
183
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200184/*! create L1/L2 data and put it into GSMTAP
Sylvain Munautabf66e72011-09-26 13:23:19 +0200185 * \param[in] arfcn GSM ARFCN (Channel Number)
186 * \param[in] ts GSM time slot
187 * \param[in] chan_type Channel Type
188 * \param[in] ss Sub-slot
189 * \param[in] fn GSM Frame Number
190 * \param[in] signal_dbm Signal Strength (dBm)
191 * \param[in] snr Signal/Noise Ratio (SNR)
192 * \param[in] data Pointer to data buffer
193 * \param[in] len Length of \ref data
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200194 * \return message buffer or NULL in case of error
Sylvain Munautabf66e72011-09-26 13:23:19 +0200195 *
196 * This function will allocate a new msgb and fill it with a GSMTAP
197 * header containing the information
198 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200199struct msgb *gsmtap_makemsg(uint16_t arfcn, uint8_t ts, uint8_t chan_type,
200 uint8_t ss, uint32_t fn, int8_t signal_dbm,
201 uint8_t snr, const uint8_t *data, unsigned int len)
202{
203 return gsmtap_makemsg_ex(GSMTAP_TYPE_UM, arfcn, ts, chan_type,
204 ss, fn, signal_dbm, snr, data, len);
205}
206
Harald Weltee4764422011-05-22 12:25:57 +0200207#ifdef HAVE_SYS_SOCKET_H
208
209#include <sys/socket.h>
210#include <netinet/in.h>
211
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200212/*! Create a new (sending) GSMTAP source socket
Harald Welte47379ca2011-08-17 16:35:24 +0200213 * \param[in] host host name or IP address in string format
214 * \param[in] port UDP port number in host byte order
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200215 * \return file descriptor of the new socket
Harald Welte47379ca2011-08-17 16:35:24 +0200216 *
217 * Opens a GSMTAP source (sending) socket, conncet it to host/port and
218 * return resulting fd. If \a host is NULL, the destination address
219 * will be localhost. If \a port is 0, the default \ref
220 * GSMTAP_UDP_PORT will be used.
221 * */
Harald Welte33cb71a2011-05-21 18:54:32 +0200222int gsmtap_source_init_fd(const char *host, uint16_t port)
223{
224 if (port == 0)
225 port = GSMTAP_UDP_PORT;
226 if (host == NULL)
227 host = "localhost";
228
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200229 return osmo_sock_init(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP, host, port,
230 OSMO_SOCK_F_CONNECT);
Harald Welte33cb71a2011-05-21 18:54:32 +0200231}
232
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200233/*! Add a local sink to an existing GSMTAP source and return fd
Harald Weltede6e4982012-12-06 21:25:27 +0100234 * \param[in] gsmtap_fd file descriptor of the gsmtap socket
235 * \returns file descriptor of locally bound receive socket
236 *
237 * In case the GSMTAP socket is connected to a local destination
238 * IP/port, this function creates a corresponding receiving socket
239 * bound to that destination IP + port.
240 *
241 * In case the gsmtap socket is not connected to a local IP/port, or
242 * creation of the receiving socket fails, a negative error code is
243 * returned.
244 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200245int gsmtap_source_add_sink_fd(int gsmtap_fd)
246{
247 struct sockaddr_storage ss;
248 socklen_t ss_len = sizeof(ss);
249 int rc;
250
251 rc = getpeername(gsmtap_fd, (struct sockaddr *)&ss, &ss_len);
252 if (rc < 0)
253 return rc;
254
255 if (osmo_sockaddr_is_local((struct sockaddr *)&ss, ss_len) == 1) {
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200256 rc = osmo_sock_init_sa((struct sockaddr *)&ss, SOCK_DGRAM,
257 IPPROTO_UDP, OSMO_SOCK_F_BIND);
Harald Welte33cb71a2011-05-21 18:54:32 +0200258 if (rc >= 0)
259 return rc;
260 }
261
262 return -ENODEV;
263}
264
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200265/*! Send a \ref msgb through a GSMTAP source
Harald Welte47379ca2011-08-17 16:35:24 +0200266 * \param[in] gti GSMTAP instance
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100267 * \param[in] msg message buffer
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200268 * \return 0 in case of success; negative in case of error
Harald Welte47379ca2011-08-17 16:35:24 +0200269 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200270int gsmtap_sendmsg(struct gsmtap_inst *gti, struct msgb *msg)
271{
Harald Welte13692a62011-05-22 20:06:11 +0200272 if (!gti)
273 return -ENODEV;
274
Harald Welte33cb71a2011-05-21 18:54:32 +0200275 if (gti->ofd_wq_mode)
276 return osmo_wqueue_enqueue(&gti->wq, msg);
277 else {
278 /* try immediate send and return error if any */
279 int rc;
280
281 rc = write(gsmtap_inst_fd(gti), msg->data, msg->len);
282 if (rc <= 0) {
283 return rc;
284 } else if (rc >= msg->len) {
285 msgb_free(msg);
286 return 0;
287 } else {
288 /* short write */
289 return -EIO;
290 }
291 }
292}
293
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200294/*! send an arbitrary type through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200295 * See \ref gsmtap_makemsg_ex for arguments
296 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200297int gsmtap_send_ex(struct gsmtap_inst *gti, uint8_t type, uint16_t arfcn, uint8_t ts,
Harald Welte33cb71a2011-05-21 18:54:32 +0200298 uint8_t chan_type, uint8_t ss, uint32_t fn,
299 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
300 unsigned int len)
Harald Weltee34a9402010-06-29 22:31:21 +0200301{
302 struct msgb *msg;
303
Harald Welte13692a62011-05-22 20:06:11 +0200304 if (!gti)
305 return -ENODEV;
306
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200307 msg = gsmtap_makemsg_ex(type, arfcn, ts, chan_type, ss, fn, signal_dbm,
Harald Weltee34a9402010-06-29 22:31:21 +0200308 snr, data, len);
309 if (!msg)
310 return -ENOMEM;
311
Harald Welte33cb71a2011-05-21 18:54:32 +0200312 return gsmtap_sendmsg(gti, msg);
Harald Weltee779c362010-06-29 20:51:13 +0200313}
314
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200315/*! send a message from L1/L2 through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200316 * See \ref gsmtap_makemsg for arguments
317 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200318int gsmtap_send(struct gsmtap_inst *gti, uint16_t arfcn, uint8_t ts,
319 uint8_t chan_type, uint8_t ss, uint32_t fn,
320 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
321 unsigned int len)
322{
323 return gsmtap_send_ex(gti, GSMTAP_TYPE_UM, arfcn, ts, chan_type, ss, fn,
324 signal_dbm, snr, data, len);
325}
326
Harald Weltee779c362010-06-29 20:51:13 +0200327/* Callback from select layer if we can write to the socket */
Harald Welte33cb71a2011-05-21 18:54:32 +0200328static int gsmtap_wq_w_cb(struct osmo_fd *ofd, struct msgb *msg)
Harald Weltee779c362010-06-29 20:51:13 +0200329{
Harald Weltee779c362010-06-29 20:51:13 +0200330 int rc;
331
Harald Welte33cb71a2011-05-21 18:54:32 +0200332 rc = write(ofd->fd, msg->data, msg->len);
Harald Weltee779c362010-06-29 20:51:13 +0200333 if (rc < 0) {
Harald Weltee779c362010-06-29 20:51:13 +0200334 return rc;
335 }
336 if (rc != msg->len) {
Harald Weltee779c362010-06-29 20:51:13 +0200337 return -EIO;
338 }
339
Harald Weltee779c362010-06-29 20:51:13 +0200340 return 0;
341}
342
Harald Welted58ba462011-04-27 10:57:49 +0200343/* Callback from select layer if we can read from the sink socket */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200344static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags)
Harald Welted58ba462011-04-27 10:57:49 +0200345{
346 int rc;
347 uint8_t buf[4096];
348
349 if (!(flags & BSC_FD_READ))
350 return 0;
351
352 rc = read(fd->fd, buf, sizeof(buf));
353 if (rc < 0) {
Harald Welted58ba462011-04-27 10:57:49 +0200354 return rc;
355 }
356 /* simply discard any data arriving on the socket */
357
358 return 0;
359}
360
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200361/*! Add a local sink to an existing GSMTAP source and return fd
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200362 * \param[in] gsmtap_fd file descriptor of the gsmtap socket
363 * \returns file descriptor of locally bound receive socket
364 *
365 * In case the GSMTAP socket is connected to a local destination
366 * IP/port, this function creates a corresponding receiving socket
367 * bound to that destination IP + port.
368 *
369 * In case the gsmtap socket is not connected to a local IP/port, or
370 * creation of the receiving socket fails, a negative error code is
371 * returned.
372 *
373 * The file descriptor of the receiving socket is automatically added
374 * to the libosmocore select() handling.
375 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200376int gsmtap_source_add_sink(struct gsmtap_inst *gti)
Harald Welted58ba462011-04-27 10:57:49 +0200377{
Harald Welte9d862c82016-11-26 00:10:07 +0100378 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200379
Harald Welte33cb71a2011-05-21 18:54:32 +0200380 fd = gsmtap_source_add_sink_fd(gsmtap_inst_fd(gti));
381 if (fd < 0)
382 return fd;
Harald Welted58ba462011-04-27 10:57:49 +0200383
Harald Welte33cb71a2011-05-21 18:54:32 +0200384 if (gti->ofd_wq_mode) {
385 struct osmo_fd *sink_ofd;
386
387 sink_ofd = &gti->sink_ofd;
388 sink_ofd->fd = fd;
389 sink_ofd->when = BSC_FD_READ;
390 sink_ofd->cb = gsmtap_sink_fd_cb;
391
Harald Welte9d862c82016-11-26 00:10:07 +0100392 rc = osmo_fd_register(sink_ofd);
393 if (rc < 0) {
394 close(fd);
395 return rc;
396 }
Harald Welted58ba462011-04-27 10:57:49 +0200397 }
398
Harald Welte33cb71a2011-05-21 18:54:32 +0200399 return fd;
400}
Harald Welted58ba462011-04-27 10:57:49 +0200401
Harald Welte47379ca2011-08-17 16:35:24 +0200402
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200403/*! Open GSMTAP source socket, connect and register osmo_fd
Harald Welte47379ca2011-08-17 16:35:24 +0200404 * \param[in] host host name or IP address in string format
405 * \param[in] port UDP port number in host byte order
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100406 * \param[in] ofd_wq_mode Register \ref osmo_wqueue (1) or not (0)
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200407 * \return callee-allocated \ref gsmtap_inst
Harald Welte47379ca2011-08-17 16:35:24 +0200408 *
409 * Open GSMTAP source (sending) socket, connect it to host/port,
410 * allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue
411 * registration. This means it is like \ref gsmtap_init2 but integrated
412 * with libosmocore \ref select */
Harald Welte33cb71a2011-05-21 18:54:32 +0200413struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port,
414 int ofd_wq_mode)
415{
416 struct gsmtap_inst *gti;
Harald Welte9d862c82016-11-26 00:10:07 +0100417 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200418
Harald Welte33cb71a2011-05-21 18:54:32 +0200419 fd = gsmtap_source_init_fd(host, port);
420 if (fd < 0)
421 return NULL;
422
423 gti = talloc_zero(NULL, struct gsmtap_inst);
424 gti->ofd_wq_mode = ofd_wq_mode;
425 gti->wq.bfd.fd = fd;
426 gti->sink_ofd.fd = -1;
427
428 if (ofd_wq_mode) {
429 osmo_wqueue_init(&gti->wq, 64);
430 gti->wq.write_cb = &gsmtap_wq_w_cb;
431
Harald Welte9d862c82016-11-26 00:10:07 +0100432 rc = osmo_fd_register(&gti->wq.bfd);
433 if (rc < 0) {
434 close(fd);
435 return NULL;
436 }
Harald Welte33cb71a2011-05-21 18:54:32 +0200437 }
438
439 return gti;
Harald Welted58ba462011-04-27 10:57:49 +0200440}
441
Harald Weltee4764422011-05-22 12:25:57 +0200442#endif /* HAVE_SYS_SOCKET_H */
Harald Weltede6e4982012-12-06 21:25:27 +0100443
Harald Welteaa3ba462017-07-13 00:01:02 +0200444const struct value_string gsmtap_gsm_channel_names[] = {
445 { GSMTAP_CHANNEL_UNKNOWN, "UNKNOWN" },
446 { GSMTAP_CHANNEL_BCCH, "BCCH" },
447 { GSMTAP_CHANNEL_CCCH, "CCCH" },
448 { GSMTAP_CHANNEL_RACH, "RACH" },
449 { GSMTAP_CHANNEL_AGCH, "AGCH" },
450 { GSMTAP_CHANNEL_PCH, "PCH" },
451 { GSMTAP_CHANNEL_SDCCH, "SDCCH" },
452 { GSMTAP_CHANNEL_SDCCH4, "SDCCH/4" },
453 { GSMTAP_CHANNEL_SDCCH8, "SDCCH/8" },
454 { GSMTAP_CHANNEL_TCH_F, "TCH/F/FACCH/F" },
455 { GSMTAP_CHANNEL_TCH_H, "TCH/H/FACCH/H" },
456 { GSMTAP_CHANNEL_PACCH, "PACCH" },
457 { GSMTAP_CHANNEL_CBCH52, "CBCH" },
458 { GSMTAP_CHANNEL_PDCH, "PDCH" } ,
459 { GSMTAP_CHANNEL_PTCCH, "PTTCH" },
460 { GSMTAP_CHANNEL_CBCH51, "CBCH" },
461 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH, "LSACCH" },
462 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH4, "SACCH/4" },
463 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH8, "SACCH/8" },
464 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_F, "SACCH/F" },
465 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_H, "SACCH/H" },
466 { 0, NULL }
467};
468
469/* for debugging */
470const struct value_string gsmtap_type_names[] = {
471 { GSMTAP_TYPE_UM, "GSM Um (MS<->BTS)" },
472 { GSMTAP_TYPE_ABIS, "GSM Abis (BTS<->BSC)" },
473 { GSMTAP_TYPE_UM_BURST, "GSM Um burst (MS<->BTS)" },
474 { GSMTAP_TYPE_SIM, "SIM Card" },
475 { GSMTAP_TYPE_TETRA_I1, "TETRA V+D" },
476 { GSMTAP_TYPE_TETRA_I1_BURST, "TETRA bursts" },
477 { GSMTAP_TYPE_WMX_BURST, "WiMAX burst" },
478 { GSMTAP_TYPE_GMR1_UM, "GMR-1 air interfeace (MES-MS<->GTS)"},
479 { GSMTAP_TYPE_UMTS_RLC_MAC, "UMTS RLC/MAC" },
480 { GSMTAP_TYPE_UMTS_RRC, "UMTS RRC" },
481 { GSMTAP_TYPE_LTE_RRC, "LTE RRC" },
482 { GSMTAP_TYPE_LTE_MAC, "LTE MAC" },
483 { GSMTAP_TYPE_LTE_MAC_FRAMED, "LTE MAC with context hdr" },
484 { GSMTAP_TYPE_OSMOCORE_LOG, "libosmocore logging" },
485 { GSMTAP_TYPE_QC_DIAG, "Qualcomm DIAG" },
486 { 0, NULL }
487};
488
Harald Weltede6e4982012-12-06 21:25:27 +0100489/*! @} */