blob: 385b467253bbeec2b1a51fa08ec334d5696f28ac [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,
Philipp Maierb8a91622018-08-23 20:18:55 +0200257 IPPROTO_UDP,
258 OSMO_SOCK_F_BIND |
259 OSMO_SOCK_F_UDP_REUSEADDR);
Harald Welte33cb71a2011-05-21 18:54:32 +0200260 if (rc >= 0)
261 return rc;
262 }
263
264 return -ENODEV;
265}
266
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200267/*! Send a \ref msgb through a GSMTAP source
Harald Welte47379ca2011-08-17 16:35:24 +0200268 * \param[in] gti GSMTAP instance
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100269 * \param[in] msg message buffer
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200270 * \return 0 in case of success; negative in case of error
Neels Hofmeyrc9a4ce62018-02-16 01:23:29 +0100271 * NOTE: in case of nonzero return value, the *caller* must free the msg!
272 * (This enables the caller to attempt re-sending the message.)
273 * If 0 is returned, the msgb was freed by this function.
Harald Welte47379ca2011-08-17 16:35:24 +0200274 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200275int gsmtap_sendmsg(struct gsmtap_inst *gti, struct msgb *msg)
276{
Harald Welte13692a62011-05-22 20:06:11 +0200277 if (!gti)
278 return -ENODEV;
279
Harald Welte33cb71a2011-05-21 18:54:32 +0200280 if (gti->ofd_wq_mode)
281 return osmo_wqueue_enqueue(&gti->wq, msg);
282 else {
283 /* try immediate send and return error if any */
284 int rc;
285
286 rc = write(gsmtap_inst_fd(gti), msg->data, msg->len);
Neels Hofmeyr90539ac2018-02-16 01:24:03 +0100287 if (rc < 0) {
Harald Welte33cb71a2011-05-21 18:54:32 +0200288 return rc;
289 } else if (rc >= msg->len) {
290 msgb_free(msg);
291 return 0;
292 } else {
293 /* short write */
294 return -EIO;
295 }
296 }
297}
298
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200299/*! send an arbitrary type through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200300 * See \ref gsmtap_makemsg_ex for arguments
301 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200302int gsmtap_send_ex(struct gsmtap_inst *gti, uint8_t type, uint16_t arfcn, uint8_t ts,
Harald Welte33cb71a2011-05-21 18:54:32 +0200303 uint8_t chan_type, uint8_t ss, uint32_t fn,
304 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
305 unsigned int len)
Harald Weltee34a9402010-06-29 22:31:21 +0200306{
307 struct msgb *msg;
Neels Hofmeyra4952aa2018-02-16 01:26:00 +0100308 int rc;
Harald Weltee34a9402010-06-29 22:31:21 +0200309
Harald Welte13692a62011-05-22 20:06:11 +0200310 if (!gti)
311 return -ENODEV;
312
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200313 msg = gsmtap_makemsg_ex(type, arfcn, ts, chan_type, ss, fn, signal_dbm,
Harald Weltee34a9402010-06-29 22:31:21 +0200314 snr, data, len);
315 if (!msg)
316 return -ENOMEM;
317
Neels Hofmeyra4952aa2018-02-16 01:26:00 +0100318 rc = gsmtap_sendmsg(gti, msg);
319 if (rc)
320 msgb_free(msg);
321 return rc;
Harald Weltee779c362010-06-29 20:51:13 +0200322}
323
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200324/*! send a message from L1/L2 through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200325 * See \ref gsmtap_makemsg for arguments
326 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200327int gsmtap_send(struct gsmtap_inst *gti, uint16_t arfcn, uint8_t ts,
328 uint8_t chan_type, uint8_t ss, uint32_t fn,
329 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
330 unsigned int len)
331{
332 return gsmtap_send_ex(gti, GSMTAP_TYPE_UM, arfcn, ts, chan_type, ss, fn,
333 signal_dbm, snr, data, len);
334}
335
Harald Weltee779c362010-06-29 20:51:13 +0200336/* Callback from select layer if we can write to the socket */
Harald Welte33cb71a2011-05-21 18:54:32 +0200337static int gsmtap_wq_w_cb(struct osmo_fd *ofd, struct msgb *msg)
Harald Weltee779c362010-06-29 20:51:13 +0200338{
Harald Weltee779c362010-06-29 20:51:13 +0200339 int rc;
340
Harald Welte33cb71a2011-05-21 18:54:32 +0200341 rc = write(ofd->fd, msg->data, msg->len);
Harald Weltee779c362010-06-29 20:51:13 +0200342 if (rc < 0) {
Harald Weltee779c362010-06-29 20:51:13 +0200343 return rc;
344 }
345 if (rc != msg->len) {
Harald Weltee779c362010-06-29 20:51:13 +0200346 return -EIO;
347 }
348
Harald Weltee779c362010-06-29 20:51:13 +0200349 return 0;
350}
351
Harald Welted58ba462011-04-27 10:57:49 +0200352/* Callback from select layer if we can read from the sink socket */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200353static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags)
Harald Welted58ba462011-04-27 10:57:49 +0200354{
355 int rc;
356 uint8_t buf[4096];
357
358 if (!(flags & BSC_FD_READ))
359 return 0;
360
361 rc = read(fd->fd, buf, sizeof(buf));
362 if (rc < 0) {
Harald Welted58ba462011-04-27 10:57:49 +0200363 return rc;
364 }
365 /* simply discard any data arriving on the socket */
366
367 return 0;
368}
369
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200370/*! Add a local sink to an existing GSMTAP source and return fd
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200371 * \param[in] gsmtap_fd file descriptor of the gsmtap socket
372 * \returns file descriptor of locally bound receive socket
373 *
374 * In case the GSMTAP socket is connected to a local destination
375 * IP/port, this function creates a corresponding receiving socket
376 * bound to that destination IP + port.
377 *
378 * In case the gsmtap socket is not connected to a local IP/port, or
379 * creation of the receiving socket fails, a negative error code is
380 * returned.
381 *
382 * The file descriptor of the receiving socket is automatically added
383 * to the libosmocore select() handling.
384 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200385int gsmtap_source_add_sink(struct gsmtap_inst *gti)
Harald Welted58ba462011-04-27 10:57:49 +0200386{
Harald Welte9d862c82016-11-26 00:10:07 +0100387 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200388
Harald Welte33cb71a2011-05-21 18:54:32 +0200389 fd = gsmtap_source_add_sink_fd(gsmtap_inst_fd(gti));
390 if (fd < 0)
391 return fd;
Harald Welted58ba462011-04-27 10:57:49 +0200392
Harald Welte33cb71a2011-05-21 18:54:32 +0200393 if (gti->ofd_wq_mode) {
394 struct osmo_fd *sink_ofd;
395
396 sink_ofd = &gti->sink_ofd;
397 sink_ofd->fd = fd;
398 sink_ofd->when = BSC_FD_READ;
399 sink_ofd->cb = gsmtap_sink_fd_cb;
400
Harald Welte9d862c82016-11-26 00:10:07 +0100401 rc = osmo_fd_register(sink_ofd);
402 if (rc < 0) {
403 close(fd);
404 return rc;
405 }
Harald Welted58ba462011-04-27 10:57:49 +0200406 }
407
Harald Welte33cb71a2011-05-21 18:54:32 +0200408 return fd;
409}
Harald Welted58ba462011-04-27 10:57:49 +0200410
Harald Welte47379ca2011-08-17 16:35:24 +0200411
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200412/*! Open GSMTAP source socket, connect and register osmo_fd
Harald Welte47379ca2011-08-17 16:35:24 +0200413 * \param[in] host host name or IP address in string format
414 * \param[in] port UDP port number in host byte order
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100415 * \param[in] ofd_wq_mode Register \ref osmo_wqueue (1) or not (0)
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200416 * \return callee-allocated \ref gsmtap_inst
Harald Welte47379ca2011-08-17 16:35:24 +0200417 *
418 * Open GSMTAP source (sending) socket, connect it to host/port,
419 * allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue
420 * registration. This means it is like \ref gsmtap_init2 but integrated
421 * with libosmocore \ref select */
Harald Welte33cb71a2011-05-21 18:54:32 +0200422struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port,
423 int ofd_wq_mode)
424{
425 struct gsmtap_inst *gti;
Harald Welte9d862c82016-11-26 00:10:07 +0100426 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200427
Harald Welte33cb71a2011-05-21 18:54:32 +0200428 fd = gsmtap_source_init_fd(host, port);
429 if (fd < 0)
430 return NULL;
431
432 gti = talloc_zero(NULL, struct gsmtap_inst);
433 gti->ofd_wq_mode = ofd_wq_mode;
434 gti->wq.bfd.fd = fd;
435 gti->sink_ofd.fd = -1;
436
437 if (ofd_wq_mode) {
438 osmo_wqueue_init(&gti->wq, 64);
439 gti->wq.write_cb = &gsmtap_wq_w_cb;
440
Harald Welte9d862c82016-11-26 00:10:07 +0100441 rc = osmo_fd_register(&gti->wq.bfd);
442 if (rc < 0) {
443 close(fd);
444 return NULL;
445 }
Harald Welte33cb71a2011-05-21 18:54:32 +0200446 }
447
448 return gti;
Harald Welted58ba462011-04-27 10:57:49 +0200449}
450
Harald Weltee4764422011-05-22 12:25:57 +0200451#endif /* HAVE_SYS_SOCKET_H */
Harald Weltede6e4982012-12-06 21:25:27 +0100452
Harald Welteaa3ba462017-07-13 00:01:02 +0200453const struct value_string gsmtap_gsm_channel_names[] = {
454 { GSMTAP_CHANNEL_UNKNOWN, "UNKNOWN" },
455 { GSMTAP_CHANNEL_BCCH, "BCCH" },
456 { GSMTAP_CHANNEL_CCCH, "CCCH" },
457 { GSMTAP_CHANNEL_RACH, "RACH" },
458 { GSMTAP_CHANNEL_AGCH, "AGCH" },
459 { GSMTAP_CHANNEL_PCH, "PCH" },
460 { GSMTAP_CHANNEL_SDCCH, "SDCCH" },
461 { GSMTAP_CHANNEL_SDCCH4, "SDCCH/4" },
462 { GSMTAP_CHANNEL_SDCCH8, "SDCCH/8" },
463 { GSMTAP_CHANNEL_TCH_F, "TCH/F/FACCH/F" },
464 { GSMTAP_CHANNEL_TCH_H, "TCH/H/FACCH/H" },
465 { GSMTAP_CHANNEL_PACCH, "PACCH" },
466 { GSMTAP_CHANNEL_CBCH52, "CBCH" },
467 { GSMTAP_CHANNEL_PDCH, "PDCH" } ,
468 { GSMTAP_CHANNEL_PTCCH, "PTTCH" },
469 { GSMTAP_CHANNEL_CBCH51, "CBCH" },
470 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH, "LSACCH" },
471 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH4, "SACCH/4" },
472 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH8, "SACCH/8" },
473 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_F, "SACCH/F" },
474 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_H, "SACCH/H" },
475 { 0, NULL }
476};
477
478/* for debugging */
479const struct value_string gsmtap_type_names[] = {
480 { GSMTAP_TYPE_UM, "GSM Um (MS<->BTS)" },
481 { GSMTAP_TYPE_ABIS, "GSM Abis (BTS<->BSC)" },
482 { GSMTAP_TYPE_UM_BURST, "GSM Um burst (MS<->BTS)" },
483 { GSMTAP_TYPE_SIM, "SIM Card" },
484 { GSMTAP_TYPE_TETRA_I1, "TETRA V+D" },
485 { GSMTAP_TYPE_TETRA_I1_BURST, "TETRA bursts" },
486 { GSMTAP_TYPE_WMX_BURST, "WiMAX burst" },
487 { GSMTAP_TYPE_GMR1_UM, "GMR-1 air interfeace (MES-MS<->GTS)"},
488 { GSMTAP_TYPE_UMTS_RLC_MAC, "UMTS RLC/MAC" },
489 { GSMTAP_TYPE_UMTS_RRC, "UMTS RRC" },
490 { GSMTAP_TYPE_LTE_RRC, "LTE RRC" },
491 { GSMTAP_TYPE_LTE_MAC, "LTE MAC" },
492 { GSMTAP_TYPE_LTE_MAC_FRAMED, "LTE MAC with context hdr" },
493 { GSMTAP_TYPE_OSMOCORE_LOG, "libosmocore logging" },
494 { GSMTAP_TYPE_QC_DIAG, "Qualcomm DIAG" },
495 { 0, NULL }
496};
497
Harald Weltede6e4982012-12-06 21:25:27 +0100498/*! @} */