blob: a4fe2d93a79b0d842e2ed4e6cfad709048d09152 [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 Welteac7fabe2020-02-26 17:24:02 +010089 case RSL_CHAN_OSMO_CBCH4:
90 ret = GSMTAP_CHANNEL_CBCH51;
91 break;
92 case RSL_CHAN_OSMO_CBCH8:
93 ret = GSMTAP_CHANNEL_CBCH52;
94 break;
Harald Weltee779c362010-06-29 20:51:13 +020095 }
96
97 if (link_id & 0x40)
98 ret |= GSMTAP_CHANNEL_ACCH;
99
100 return ret;
101}
102
Harald Welte93713a52017-07-12 23:43:40 +0200103/*! convert GSMTAP channel type to RSL channel number + Link ID
104 * \param[in] gsmtap_chantype GSMTAP channel type
105 * \param[out] rsl_chantype RSL channel mumber
106 * \param[out] link_id RSL link identifier
107 */
108void chantype_gsmtap2rsl(uint8_t gsmtap_chantype, uint8_t *rsl_chantype,
109 uint8_t *link_id)
110{
111 switch (gsmtap_chantype & ~GSMTAP_CHANNEL_ACCH & 0xff) {
112 case GSMTAP_CHANNEL_TCH_F: // TCH/F, FACCH/F
113 *rsl_chantype = RSL_CHAN_Bm_ACCHs;
114 break;
115 case GSMTAP_CHANNEL_TCH_H: // TCH/H, FACCH/H
116 *rsl_chantype = RSL_CHAN_Lm_ACCHs;
117 break;
118 case GSMTAP_CHANNEL_SDCCH4: // SDCCH/4
119 *rsl_chantype = RSL_CHAN_SDCCH4_ACCH;
120 break;
121 case GSMTAP_CHANNEL_SDCCH8: // SDCCH/8
122 *rsl_chantype = RSL_CHAN_SDCCH8_ACCH;
123 break;
124 case GSMTAP_CHANNEL_BCCH: // BCCH
125 *rsl_chantype = RSL_CHAN_BCCH;
126 break;
127 case GSMTAP_CHANNEL_RACH: // RACH
128 *rsl_chantype = RSL_CHAN_RACH;
129 break;
130 case GSMTAP_CHANNEL_PCH: // PCH
131 case GSMTAP_CHANNEL_AGCH: // AGCH
132 *rsl_chantype = RSL_CHAN_PCH_AGCH;
133 break;
134 case GSMTAP_CHANNEL_PDCH:
Harald Welte3b7cd0b2017-07-27 14:12:15 +0200135 *rsl_chantype = RSL_CHAN_OSMO_PDCH;
Harald Welte93713a52017-07-12 23:43:40 +0200136 break;
137 }
138
139 *link_id = gsmtap_chantype & GSMTAP_CHANNEL_ACCH ? 0x40 : 0x00;
140}
141
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200142/*! create an arbitrary type GSMTAP message
Sylvain Munautabf66e72011-09-26 13:23:19 +0200143 * \param[in] type The GSMTAP_TYPE_xxx constant of the message to create
Harald Welte47379ca2011-08-17 16:35:24 +0200144 * \param[in] arfcn GSM ARFCN (Channel Number)
145 * \param[in] ts GSM time slot
146 * \param[in] chan_type Channel Type
147 * \param[in] ss Sub-slot
148 * \param[in] fn GSM Frame Number
149 * \param[in] signal_dbm Signal Strength (dBm)
150 * \param[in] snr Signal/Noise Ratio (SNR)
151 * \param[in] data Pointer to data buffer
152 * \param[in] len Length of \ref data
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200153 * \return dynamically allocated message buffer containing data
Harald Welte47379ca2011-08-17 16:35:24 +0200154 *
155 * This function will allocate a new msgb and fill it with a GSMTAP
156 * header containing the information
157 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200158struct msgb *gsmtap_makemsg_ex(uint8_t type, uint16_t arfcn, uint8_t ts, uint8_t chan_type,
Harald Weltee34a9402010-06-29 22:31:21 +0200159 uint8_t ss, uint32_t fn, int8_t signal_dbm,
160 uint8_t snr, const uint8_t *data, unsigned int len)
Harald Weltee779c362010-06-29 20:51:13 +0200161{
162 struct msgb *msg;
163 struct gsmtap_hdr *gh;
164 uint8_t *dst;
165
Harald Weltee779c362010-06-29 20:51:13 +0200166 msg = msgb_alloc(sizeof(*gh) + len, "gsmtap_tx");
167 if (!msg)
Harald Weltee34a9402010-06-29 22:31:21 +0200168 return NULL;
Harald Weltee779c362010-06-29 20:51:13 +0200169
170 gh = (struct gsmtap_hdr *) msgb_put(msg, sizeof(*gh));
171
172 gh->version = GSMTAP_VERSION;
173 gh->hdr_len = sizeof(*gh)/4;
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200174 gh->type = type;
Harald Weltee779c362010-06-29 20:51:13 +0200175 gh->timeslot = ts;
176 gh->sub_slot = ss;
Harald Welte95871da2017-05-15 12:11:36 +0200177 gh->arfcn = osmo_htons(arfcn);
Harald Weltee779c362010-06-29 20:51:13 +0200178 gh->snr_db = snr;
179 gh->signal_dbm = signal_dbm;
Harald Welte95871da2017-05-15 12:11:36 +0200180 gh->frame_number = osmo_htonl(fn);
Harald Weltee779c362010-06-29 20:51:13 +0200181 gh->sub_type = chan_type;
182 gh->antenna_nr = 0;
183
184 dst = msgb_put(msg, len);
185 memcpy(dst, data, len);
186
Harald Weltee34a9402010-06-29 22:31:21 +0200187 return msg;
188}
189
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200190/*! create L1/L2 data and put it into GSMTAP
Sylvain Munautabf66e72011-09-26 13:23:19 +0200191 * \param[in] arfcn GSM ARFCN (Channel Number)
192 * \param[in] ts GSM time slot
193 * \param[in] chan_type Channel Type
194 * \param[in] ss Sub-slot
195 * \param[in] fn GSM Frame Number
196 * \param[in] signal_dbm Signal Strength (dBm)
197 * \param[in] snr Signal/Noise Ratio (SNR)
198 * \param[in] data Pointer to data buffer
199 * \param[in] len Length of \ref data
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200200 * \return message buffer or NULL in case of error
Sylvain Munautabf66e72011-09-26 13:23:19 +0200201 *
202 * This function will allocate a new msgb and fill it with a GSMTAP
203 * header containing the information
204 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200205struct msgb *gsmtap_makemsg(uint16_t arfcn, uint8_t ts, uint8_t chan_type,
206 uint8_t ss, uint32_t fn, int8_t signal_dbm,
207 uint8_t snr, const uint8_t *data, unsigned int len)
208{
209 return gsmtap_makemsg_ex(GSMTAP_TYPE_UM, arfcn, ts, chan_type,
210 ss, fn, signal_dbm, snr, data, len);
211}
212
Harald Weltee4764422011-05-22 12:25:57 +0200213#ifdef HAVE_SYS_SOCKET_H
214
215#include <sys/socket.h>
216#include <netinet/in.h>
217
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200218/*! Create a new (sending) GSMTAP source socket
Harald Welte47379ca2011-08-17 16:35:24 +0200219 * \param[in] host host name or IP address in string format
220 * \param[in] port UDP port number in host byte order
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200221 * \return file descriptor of the new socket
Harald Welte47379ca2011-08-17 16:35:24 +0200222 *
223 * Opens a GSMTAP source (sending) socket, conncet it to host/port and
224 * return resulting fd. If \a host is NULL, the destination address
225 * will be localhost. If \a port is 0, the default \ref
226 * GSMTAP_UDP_PORT will be used.
227 * */
Harald Welte33cb71a2011-05-21 18:54:32 +0200228int gsmtap_source_init_fd(const char *host, uint16_t port)
229{
230 if (port == 0)
231 port = GSMTAP_UDP_PORT;
232 if (host == NULL)
233 host = "localhost";
234
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200235 return osmo_sock_init(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP, host, port,
236 OSMO_SOCK_F_CONNECT);
Harald Welte33cb71a2011-05-21 18:54:32 +0200237}
238
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200239/*! Add a local sink to an existing GSMTAP source and return fd
Harald Weltede6e4982012-12-06 21:25:27 +0100240 * \param[in] gsmtap_fd file descriptor of the gsmtap socket
241 * \returns file descriptor of locally bound receive socket
242 *
243 * In case the GSMTAP socket is connected to a local destination
244 * IP/port, this function creates a corresponding receiving socket
245 * bound to that destination IP + port.
246 *
247 * In case the gsmtap socket is not connected to a local IP/port, or
248 * creation of the receiving socket fails, a negative error code is
249 * returned.
250 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200251int gsmtap_source_add_sink_fd(int gsmtap_fd)
252{
253 struct sockaddr_storage ss;
254 socklen_t ss_len = sizeof(ss);
255 int rc;
256
257 rc = getpeername(gsmtap_fd, (struct sockaddr *)&ss, &ss_len);
258 if (rc < 0)
259 return rc;
260
261 if (osmo_sockaddr_is_local((struct sockaddr *)&ss, ss_len) == 1) {
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200262 rc = osmo_sock_init_sa((struct sockaddr *)&ss, SOCK_DGRAM,
Philipp Maierb8a91622018-08-23 20:18:55 +0200263 IPPROTO_UDP,
264 OSMO_SOCK_F_BIND |
265 OSMO_SOCK_F_UDP_REUSEADDR);
Harald Welte33cb71a2011-05-21 18:54:32 +0200266 if (rc >= 0)
267 return rc;
268 }
269
270 return -ENODEV;
271}
272
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200273/*! Send a \ref msgb through a GSMTAP source
Harald Welte47379ca2011-08-17 16:35:24 +0200274 * \param[in] gti GSMTAP instance
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100275 * \param[in] msg message buffer
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200276 * \return 0 in case of success; negative in case of error
Neels Hofmeyrc9a4ce62018-02-16 01:23:29 +0100277 * NOTE: in case of nonzero return value, the *caller* must free the msg!
278 * (This enables the caller to attempt re-sending the message.)
279 * If 0 is returned, the msgb was freed by this function.
Harald Welte47379ca2011-08-17 16:35:24 +0200280 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200281int gsmtap_sendmsg(struct gsmtap_inst *gti, struct msgb *msg)
282{
Harald Welte13692a62011-05-22 20:06:11 +0200283 if (!gti)
284 return -ENODEV;
285
Harald Welte33cb71a2011-05-21 18:54:32 +0200286 if (gti->ofd_wq_mode)
287 return osmo_wqueue_enqueue(&gti->wq, msg);
288 else {
289 /* try immediate send and return error if any */
290 int rc;
291
292 rc = write(gsmtap_inst_fd(gti), msg->data, msg->len);
Neels Hofmeyr90539ac2018-02-16 01:24:03 +0100293 if (rc < 0) {
Harald Welte33cb71a2011-05-21 18:54:32 +0200294 return rc;
295 } else if (rc >= msg->len) {
296 msgb_free(msg);
297 return 0;
298 } else {
299 /* short write */
300 return -EIO;
301 }
302 }
303}
304
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200305/*! send an arbitrary type through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200306 * See \ref gsmtap_makemsg_ex for arguments
307 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200308int gsmtap_send_ex(struct gsmtap_inst *gti, uint8_t type, uint16_t arfcn, uint8_t ts,
Harald Welte33cb71a2011-05-21 18:54:32 +0200309 uint8_t chan_type, uint8_t ss, uint32_t fn,
310 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
311 unsigned int len)
Harald Weltee34a9402010-06-29 22:31:21 +0200312{
313 struct msgb *msg;
Neels Hofmeyra4952aa2018-02-16 01:26:00 +0100314 int rc;
Harald Weltee34a9402010-06-29 22:31:21 +0200315
Harald Welte13692a62011-05-22 20:06:11 +0200316 if (!gti)
317 return -ENODEV;
318
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200319 msg = gsmtap_makemsg_ex(type, arfcn, ts, chan_type, ss, fn, signal_dbm,
Harald Weltee34a9402010-06-29 22:31:21 +0200320 snr, data, len);
321 if (!msg)
322 return -ENOMEM;
323
Neels Hofmeyra4952aa2018-02-16 01:26:00 +0100324 rc = gsmtap_sendmsg(gti, msg);
325 if (rc)
326 msgb_free(msg);
327 return rc;
Harald Weltee779c362010-06-29 20:51:13 +0200328}
329
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200330/*! send a message from L1/L2 through GSMTAP.
Sylvain Munautabf66e72011-09-26 13:23:19 +0200331 * See \ref gsmtap_makemsg for arguments
332 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200333int gsmtap_send(struct gsmtap_inst *gti, uint16_t arfcn, uint8_t ts,
334 uint8_t chan_type, uint8_t ss, uint32_t fn,
335 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
336 unsigned int len)
337{
338 return gsmtap_send_ex(gti, GSMTAP_TYPE_UM, arfcn, ts, chan_type, ss, fn,
339 signal_dbm, snr, data, len);
340}
341
Harald Weltee779c362010-06-29 20:51:13 +0200342/* Callback from select layer if we can write to the socket */
Harald Welte33cb71a2011-05-21 18:54:32 +0200343static int gsmtap_wq_w_cb(struct osmo_fd *ofd, struct msgb *msg)
Harald Weltee779c362010-06-29 20:51:13 +0200344{
Harald Weltee779c362010-06-29 20:51:13 +0200345 int rc;
346
Harald Welte33cb71a2011-05-21 18:54:32 +0200347 rc = write(ofd->fd, msg->data, msg->len);
Harald Weltee779c362010-06-29 20:51:13 +0200348 if (rc < 0) {
Harald Weltee779c362010-06-29 20:51:13 +0200349 return rc;
350 }
351 if (rc != msg->len) {
Harald Weltee779c362010-06-29 20:51:13 +0200352 return -EIO;
353 }
354
Harald Weltee779c362010-06-29 20:51:13 +0200355 return 0;
356}
357
Harald Welted58ba462011-04-27 10:57:49 +0200358/* Callback from select layer if we can read from the sink socket */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200359static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags)
Harald Welted58ba462011-04-27 10:57:49 +0200360{
361 int rc;
362 uint8_t buf[4096];
363
Harald Welte16886992019-03-20 10:26:39 +0100364 if (!(flags & OSMO_FD_READ))
Harald Welted58ba462011-04-27 10:57:49 +0200365 return 0;
366
367 rc = read(fd->fd, buf, sizeof(buf));
368 if (rc < 0) {
Harald Welted58ba462011-04-27 10:57:49 +0200369 return rc;
370 }
371 /* simply discard any data arriving on the socket */
372
373 return 0;
374}
375
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200376/*! Add a local sink to an existing GSMTAP source and return fd
Vadim Yanitskiy2f65bb12019-03-25 15:57:09 +0700377 * \param[in] gti existing GSMTAP source
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200378 * \returns file descriptor of locally bound receive socket
379 *
380 * In case the GSMTAP socket is connected to a local destination
381 * IP/port, this function creates a corresponding receiving socket
382 * bound to that destination IP + port.
383 *
384 * In case the gsmtap socket is not connected to a local IP/port, or
385 * creation of the receiving socket fails, a negative error code is
386 * returned.
387 *
388 * The file descriptor of the receiving socket is automatically added
389 * to the libosmocore select() handling.
390 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200391int gsmtap_source_add_sink(struct gsmtap_inst *gti)
Harald Welted58ba462011-04-27 10:57:49 +0200392{
Harald Welte9d862c82016-11-26 00:10:07 +0100393 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200394
Harald Welte33cb71a2011-05-21 18:54:32 +0200395 fd = gsmtap_source_add_sink_fd(gsmtap_inst_fd(gti));
396 if (fd < 0)
397 return fd;
Harald Welted58ba462011-04-27 10:57:49 +0200398
Harald Welte33cb71a2011-05-21 18:54:32 +0200399 if (gti->ofd_wq_mode) {
400 struct osmo_fd *sink_ofd;
401
402 sink_ofd = &gti->sink_ofd;
403 sink_ofd->fd = fd;
Harald Welte16886992019-03-20 10:26:39 +0100404 sink_ofd->when = OSMO_FD_READ;
Harald Welte33cb71a2011-05-21 18:54:32 +0200405 sink_ofd->cb = gsmtap_sink_fd_cb;
406
Harald Welte9d862c82016-11-26 00:10:07 +0100407 rc = osmo_fd_register(sink_ofd);
408 if (rc < 0) {
409 close(fd);
410 return rc;
411 }
Harald Welted58ba462011-04-27 10:57:49 +0200412 }
413
Harald Welte33cb71a2011-05-21 18:54:32 +0200414 return fd;
415}
Harald Welted58ba462011-04-27 10:57:49 +0200416
Harald Welte47379ca2011-08-17 16:35:24 +0200417
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200418/*! Open GSMTAP source socket, connect and register osmo_fd
Harald Welte47379ca2011-08-17 16:35:24 +0200419 * \param[in] host host name or IP address in string format
420 * \param[in] port UDP port number in host byte order
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100421 * \param[in] ofd_wq_mode Register \ref osmo_wqueue (1) or not (0)
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200422 * \return callee-allocated \ref gsmtap_inst
Harald Welte47379ca2011-08-17 16:35:24 +0200423 *
424 * Open GSMTAP source (sending) socket, connect it to host/port,
425 * allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue
Vadim Yanitskiy2f65bb12019-03-25 15:57:09 +0700426 * registration.
427 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200428struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port,
429 int ofd_wq_mode)
430{
431 struct gsmtap_inst *gti;
Harald Welte9d862c82016-11-26 00:10:07 +0100432 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200433
Harald Welte33cb71a2011-05-21 18:54:32 +0200434 fd = gsmtap_source_init_fd(host, port);
435 if (fd < 0)
436 return NULL;
437
438 gti = talloc_zero(NULL, struct gsmtap_inst);
439 gti->ofd_wq_mode = ofd_wq_mode;
440 gti->wq.bfd.fd = fd;
441 gti->sink_ofd.fd = -1;
442
443 if (ofd_wq_mode) {
444 osmo_wqueue_init(&gti->wq, 64);
445 gti->wq.write_cb = &gsmtap_wq_w_cb;
446
Harald Welte9d862c82016-11-26 00:10:07 +0100447 rc = osmo_fd_register(&gti->wq.bfd);
448 if (rc < 0) {
Vadim Yanitskiyb9baf022019-03-24 00:01:27 +0700449 talloc_free(gti);
Harald Welte9d862c82016-11-26 00:10:07 +0100450 close(fd);
451 return NULL;
452 }
Harald Welte33cb71a2011-05-21 18:54:32 +0200453 }
454
455 return gti;
Harald Welted58ba462011-04-27 10:57:49 +0200456}
457
Harald Weltee4764422011-05-22 12:25:57 +0200458#endif /* HAVE_SYS_SOCKET_H */
Harald Weltede6e4982012-12-06 21:25:27 +0100459
Harald Welteaa3ba462017-07-13 00:01:02 +0200460const struct value_string gsmtap_gsm_channel_names[] = {
461 { GSMTAP_CHANNEL_UNKNOWN, "UNKNOWN" },
462 { GSMTAP_CHANNEL_BCCH, "BCCH" },
463 { GSMTAP_CHANNEL_CCCH, "CCCH" },
464 { GSMTAP_CHANNEL_RACH, "RACH" },
465 { GSMTAP_CHANNEL_AGCH, "AGCH" },
466 { GSMTAP_CHANNEL_PCH, "PCH" },
467 { GSMTAP_CHANNEL_SDCCH, "SDCCH" },
468 { GSMTAP_CHANNEL_SDCCH4, "SDCCH/4" },
469 { GSMTAP_CHANNEL_SDCCH8, "SDCCH/8" },
470 { GSMTAP_CHANNEL_TCH_F, "TCH/F/FACCH/F" },
471 { GSMTAP_CHANNEL_TCH_H, "TCH/H/FACCH/H" },
472 { GSMTAP_CHANNEL_PACCH, "PACCH" },
473 { GSMTAP_CHANNEL_CBCH52, "CBCH" },
474 { GSMTAP_CHANNEL_PDCH, "PDCH" } ,
475 { GSMTAP_CHANNEL_PTCCH, "PTTCH" },
476 { GSMTAP_CHANNEL_CBCH51, "CBCH" },
477 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH, "LSACCH" },
478 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH4, "SACCH/4" },
479 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_SDCCH8, "SACCH/8" },
480 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_F, "SACCH/F" },
481 { GSMTAP_CHANNEL_ACCH | GSMTAP_CHANNEL_TCH_H, "SACCH/H" },
482 { 0, NULL }
483};
484
485/* for debugging */
486const struct value_string gsmtap_type_names[] = {
487 { GSMTAP_TYPE_UM, "GSM Um (MS<->BTS)" },
488 { GSMTAP_TYPE_ABIS, "GSM Abis (BTS<->BSC)" },
489 { GSMTAP_TYPE_UM_BURST, "GSM Um burst (MS<->BTS)" },
490 { GSMTAP_TYPE_SIM, "SIM Card" },
491 { GSMTAP_TYPE_TETRA_I1, "TETRA V+D" },
492 { GSMTAP_TYPE_TETRA_I1_BURST, "TETRA bursts" },
493 { GSMTAP_TYPE_WMX_BURST, "WiMAX burst" },
494 { GSMTAP_TYPE_GMR1_UM, "GMR-1 air interfeace (MES-MS<->GTS)"},
495 { GSMTAP_TYPE_UMTS_RLC_MAC, "UMTS RLC/MAC" },
496 { GSMTAP_TYPE_UMTS_RRC, "UMTS RRC" },
497 { GSMTAP_TYPE_LTE_RRC, "LTE RRC" },
498 { GSMTAP_TYPE_LTE_MAC, "LTE MAC" },
499 { GSMTAP_TYPE_LTE_MAC_FRAMED, "LTE MAC with context hdr" },
500 { GSMTAP_TYPE_OSMOCORE_LOG, "libosmocore logging" },
501 { GSMTAP_TYPE_QC_DIAG, "Qualcomm DIAG" },
502 { 0, NULL }
503};
504
Harald Weltede6e4982012-12-06 21:25:27 +0100505/*! @} */