blob: 962782b57ce7b3ddfbf9d52bf8397fa53058a090 [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
Neels Hofmeyrc9a4ce62018-02-16 01:23:29 +0100269 * NOTE: in case of nonzero return value, the *caller* must free the msg!
270 * (This enables the caller to attempt re-sending the message.)
271 * If 0 is returned, the msgb was freed by this function.
Harald Welte47379ca2011-08-17 16:35:24 +0200272 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200273int gsmtap_sendmsg(struct gsmtap_inst *gti, struct msgb *msg)
274{
Harald Welte13692a62011-05-22 20:06:11 +0200275 if (!gti)
276 return -ENODEV;
277
Harald Welte33cb71a2011-05-21 18:54:32 +0200278 if (gti->ofd_wq_mode)
279 return osmo_wqueue_enqueue(&gti->wq, msg);
280 else {
281 /* try immediate send and return error if any */
282 int rc;
283
284 rc = write(gsmtap_inst_fd(gti), msg->data, msg->len);
Neels Hofmeyr90539ac2018-02-16 01:24:03 +0100285 if (rc < 0) {
Harald Welte33cb71a2011-05-21 18:54:32 +0200286 return rc;
287 } else if (rc >= msg->len) {
288 msgb_free(msg);
289 return 0;
290 } else {
291 /* short write */
292 return -EIO;
293 }
294 }
295}
296
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200297/*! send an arbitrary type through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200298 * See \ref gsmtap_makemsg_ex for arguments
299 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200300int gsmtap_send_ex(struct gsmtap_inst *gti, uint8_t type, uint16_t arfcn, uint8_t ts,
Harald Welte33cb71a2011-05-21 18:54:32 +0200301 uint8_t chan_type, uint8_t ss, uint32_t fn,
302 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
303 unsigned int len)
Harald Weltee34a9402010-06-29 22:31:21 +0200304{
305 struct msgb *msg;
306
Harald Welte13692a62011-05-22 20:06:11 +0200307 if (!gti)
308 return -ENODEV;
309
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200310 msg = gsmtap_makemsg_ex(type, arfcn, ts, chan_type, ss, fn, signal_dbm,
Harald Weltee34a9402010-06-29 22:31:21 +0200311 snr, data, len);
312 if (!msg)
313 return -ENOMEM;
314
Harald Welte33cb71a2011-05-21 18:54:32 +0200315 return gsmtap_sendmsg(gti, msg);
Harald Weltee779c362010-06-29 20:51:13 +0200316}
317
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200318/*! send a message from L1/L2 through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200319 * See \ref gsmtap_makemsg for arguments
320 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200321int gsmtap_send(struct gsmtap_inst *gti, uint16_t arfcn, uint8_t ts,
322 uint8_t chan_type, uint8_t ss, uint32_t fn,
323 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
324 unsigned int len)
325{
326 return gsmtap_send_ex(gti, GSMTAP_TYPE_UM, arfcn, ts, chan_type, ss, fn,
327 signal_dbm, snr, data, len);
328}
329
Harald Weltee779c362010-06-29 20:51:13 +0200330/* Callback from select layer if we can write to the socket */
Harald Welte33cb71a2011-05-21 18:54:32 +0200331static int gsmtap_wq_w_cb(struct osmo_fd *ofd, struct msgb *msg)
Harald Weltee779c362010-06-29 20:51:13 +0200332{
Harald Weltee779c362010-06-29 20:51:13 +0200333 int rc;
334
Harald Welte33cb71a2011-05-21 18:54:32 +0200335 rc = write(ofd->fd, msg->data, msg->len);
Harald Weltee779c362010-06-29 20:51:13 +0200336 if (rc < 0) {
Harald Weltee779c362010-06-29 20:51:13 +0200337 return rc;
338 }
339 if (rc != msg->len) {
Harald Weltee779c362010-06-29 20:51:13 +0200340 return -EIO;
341 }
342
Harald Weltee779c362010-06-29 20:51:13 +0200343 return 0;
344}
345
Harald Welted58ba462011-04-27 10:57:49 +0200346/* Callback from select layer if we can read from the sink socket */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200347static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags)
Harald Welted58ba462011-04-27 10:57:49 +0200348{
349 int rc;
350 uint8_t buf[4096];
351
352 if (!(flags & BSC_FD_READ))
353 return 0;
354
355 rc = read(fd->fd, buf, sizeof(buf));
356 if (rc < 0) {
Harald Welted58ba462011-04-27 10:57:49 +0200357 return rc;
358 }
359 /* simply discard any data arriving on the socket */
360
361 return 0;
362}
363
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200364/*! Add a local sink to an existing GSMTAP source and return fd
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200365 * \param[in] gsmtap_fd file descriptor of the gsmtap socket
366 * \returns file descriptor of locally bound receive socket
367 *
368 * In case the GSMTAP socket is connected to a local destination
369 * IP/port, this function creates a corresponding receiving socket
370 * bound to that destination IP + port.
371 *
372 * In case the gsmtap socket is not connected to a local IP/port, or
373 * creation of the receiving socket fails, a negative error code is
374 * returned.
375 *
376 * The file descriptor of the receiving socket is automatically added
377 * to the libosmocore select() handling.
378 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200379int gsmtap_source_add_sink(struct gsmtap_inst *gti)
Harald Welted58ba462011-04-27 10:57:49 +0200380{
Harald Welte9d862c82016-11-26 00:10:07 +0100381 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200382
Harald Welte33cb71a2011-05-21 18:54:32 +0200383 fd = gsmtap_source_add_sink_fd(gsmtap_inst_fd(gti));
384 if (fd < 0)
385 return fd;
Harald Welted58ba462011-04-27 10:57:49 +0200386
Harald Welte33cb71a2011-05-21 18:54:32 +0200387 if (gti->ofd_wq_mode) {
388 struct osmo_fd *sink_ofd;
389
390 sink_ofd = &gti->sink_ofd;
391 sink_ofd->fd = fd;
392 sink_ofd->when = BSC_FD_READ;
393 sink_ofd->cb = gsmtap_sink_fd_cb;
394
Harald Welte9d862c82016-11-26 00:10:07 +0100395 rc = osmo_fd_register(sink_ofd);
396 if (rc < 0) {
397 close(fd);
398 return rc;
399 }
Harald Welted58ba462011-04-27 10:57:49 +0200400 }
401
Harald Welte33cb71a2011-05-21 18:54:32 +0200402 return fd;
403}
Harald Welted58ba462011-04-27 10:57:49 +0200404
Harald Welte47379ca2011-08-17 16:35:24 +0200405
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200406/*! Open GSMTAP source socket, connect and register osmo_fd
Harald Welte47379ca2011-08-17 16:35:24 +0200407 * \param[in] host host name or IP address in string format
408 * \param[in] port UDP port number in host byte order
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100409 * \param[in] ofd_wq_mode Register \ref osmo_wqueue (1) or not (0)
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200410 * \return callee-allocated \ref gsmtap_inst
Harald Welte47379ca2011-08-17 16:35:24 +0200411 *
412 * Open GSMTAP source (sending) socket, connect it to host/port,
413 * allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue
414 * registration. This means it is like \ref gsmtap_init2 but integrated
415 * with libosmocore \ref select */
Harald Welte33cb71a2011-05-21 18:54:32 +0200416struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port,
417 int ofd_wq_mode)
418{
419 struct gsmtap_inst *gti;
Harald Welte9d862c82016-11-26 00:10:07 +0100420 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200421
Harald Welte33cb71a2011-05-21 18:54:32 +0200422 fd = gsmtap_source_init_fd(host, port);
423 if (fd < 0)
424 return NULL;
425
426 gti = talloc_zero(NULL, struct gsmtap_inst);
427 gti->ofd_wq_mode = ofd_wq_mode;
428 gti->wq.bfd.fd = fd;
429 gti->sink_ofd.fd = -1;
430
431 if (ofd_wq_mode) {
432 osmo_wqueue_init(&gti->wq, 64);
433 gti->wq.write_cb = &gsmtap_wq_w_cb;
434
Harald Welte9d862c82016-11-26 00:10:07 +0100435 rc = osmo_fd_register(&gti->wq.bfd);
436 if (rc < 0) {
437 close(fd);
438 return NULL;
439 }
Harald Welte33cb71a2011-05-21 18:54:32 +0200440 }
441
442 return gti;
Harald Welted58ba462011-04-27 10:57:49 +0200443}
444
Harald Weltee4764422011-05-22 12:25:57 +0200445#endif /* HAVE_SYS_SOCKET_H */
Harald Weltede6e4982012-12-06 21:25:27 +0100446
Harald Welteaa3ba462017-07-13 00:01:02 +0200447const struct value_string gsmtap_gsm_channel_names[] = {
448 { GSMTAP_CHANNEL_UNKNOWN, "UNKNOWN" },
449 { GSMTAP_CHANNEL_BCCH, "BCCH" },
450 { GSMTAP_CHANNEL_CCCH, "CCCH" },
451 { GSMTAP_CHANNEL_RACH, "RACH" },
452 { GSMTAP_CHANNEL_AGCH, "AGCH" },
453 { GSMTAP_CHANNEL_PCH, "PCH" },
454 { GSMTAP_CHANNEL_SDCCH, "SDCCH" },
455 { GSMTAP_CHANNEL_SDCCH4, "SDCCH/4" },
456 { GSMTAP_CHANNEL_SDCCH8, "SDCCH/8" },
457 { GSMTAP_CHANNEL_TCH_F, "TCH/F/FACCH/F" },
458 { GSMTAP_CHANNEL_TCH_H, "TCH/H/FACCH/H" },
459 { GSMTAP_CHANNEL_PACCH, "PACCH" },
460 { GSMTAP_CHANNEL_CBCH52, "CBCH" },
461 { GSMTAP_CHANNEL_PDCH, "PDCH" } ,
462 { GSMTAP_CHANNEL_PTCCH, "PTTCH" },
463 { GSMTAP_CHANNEL_CBCH51, "CBCH" },
464 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH, "LSACCH" },
465 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH4, "SACCH/4" },
466 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH8, "SACCH/8" },
467 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_F, "SACCH/F" },
468 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_H, "SACCH/H" },
469 { 0, NULL }
470};
471
472/* for debugging */
473const struct value_string gsmtap_type_names[] = {
474 { GSMTAP_TYPE_UM, "GSM Um (MS<->BTS)" },
475 { GSMTAP_TYPE_ABIS, "GSM Abis (BTS<->BSC)" },
476 { GSMTAP_TYPE_UM_BURST, "GSM Um burst (MS<->BTS)" },
477 { GSMTAP_TYPE_SIM, "SIM Card" },
478 { GSMTAP_TYPE_TETRA_I1, "TETRA V+D" },
479 { GSMTAP_TYPE_TETRA_I1_BURST, "TETRA bursts" },
480 { GSMTAP_TYPE_WMX_BURST, "WiMAX burst" },
481 { GSMTAP_TYPE_GMR1_UM, "GMR-1 air interfeace (MES-MS<->GTS)"},
482 { GSMTAP_TYPE_UMTS_RLC_MAC, "UMTS RLC/MAC" },
483 { GSMTAP_TYPE_UMTS_RRC, "UMTS RRC" },
484 { GSMTAP_TYPE_LTE_RRC, "LTE RRC" },
485 { GSMTAP_TYPE_LTE_MAC, "LTE MAC" },
486 { GSMTAP_TYPE_LTE_MAC_FRAMED, "LTE MAC with context hdr" },
487 { GSMTAP_TYPE_OSMOCORE_LOG, "libosmocore logging" },
488 { GSMTAP_TYPE_QC_DIAG, "Qualcomm DIAG" },
489 { 0, NULL }
490};
491
Harald Weltede6e4982012-12-06 21:25:27 +0100492/*! @} */