blob: 64b54f383f81827a46ed6237765fffbe65bdfded [file] [log] [blame]
Harald Welte33cb71a2011-05-21 18:54:32 +02001/* GSMTAP support code in libmsomcore */
Harald Weltee779c362010-06-29 20:51:13 +02002/*
Harald Welte33cb71a2011-05-21 18:54:32 +02003 * (C) 2010-2011 by Harald Welte <laforge@gnumonks.org>
Harald Weltee779c362010-06-29 20:51:13 +02004 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * 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.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include "../config.h"
24
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010025#include <osmocom/core/gsmtap_util.h>
26#include <osmocom/core/logging.h>
27#include <osmocom/core/gsmtap.h>
28#include <osmocom/core/msgb.h>
Harald Welte33cb71a2011-05-21 18:54:32 +020029#include <osmocom/core/talloc.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010030#include <osmocom/core/select.h>
Harald Welte33cb71a2011-05-21 18:54:32 +020031#include <osmocom/core/socket.h>
Harald Welte95871da2017-05-15 12:11:36 +020032#include <osmocom/core/byteswap.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010033#include <osmocom/gsm/protocol/gsm_04_08.h>
34#include <osmocom/gsm/rsl.h>
Harald Weltee779c362010-06-29 20:51:13 +020035
Harald Welte33cb71a2011-05-21 18:54:32 +020036#include <sys/types.h>
Harald Weltee4764422011-05-22 12:25:57 +020037
Harald Weltee779c362010-06-29 20:51:13 +020038#include <stdio.h>
39#include <unistd.h>
40#include <stdint.h>
41#include <string.h>
42#include <errno.h>
43
Harald Welte47379ca2011-08-17 16:35:24 +020044/*! \addtogroup gsmtap
45 * @{
Harald Welte96e2a002017-06-12 21:44:18 +020046 * \brief GSMTAP utility routines. Encapsulates GSM messages over UDP
Harald Welte47379ca2011-08-17 16:35:24 +020047 */
48/*! \file gsmtap_util.c */
49
50
51/*! \brief convert RSL channel number to GSMTAP channel type
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +010052 * \param[in] rsl_chantype RSL channel type
Harald Welte47379ca2011-08-17 16:35:24 +020053 * \param[in] link_id RSL link identifier
54 * \returns GSMTAP channel type
55 */
Harald Weltee779c362010-06-29 20:51:13 +020056uint8_t chantype_rsl2gsmtap(uint8_t rsl_chantype, uint8_t link_id)
57{
58 uint8_t ret = GSMTAP_CHANNEL_UNKNOWN;
59
60 switch (rsl_chantype) {
61 case RSL_CHAN_Bm_ACCHs:
62 ret = GSMTAP_CHANNEL_TCH_F;
63 break;
64 case RSL_CHAN_Lm_ACCHs:
65 ret = GSMTAP_CHANNEL_TCH_H;
66 break;
67 case RSL_CHAN_SDCCH4_ACCH:
68 ret = GSMTAP_CHANNEL_SDCCH4;
69 break;
70 case RSL_CHAN_SDCCH8_ACCH:
71 ret = GSMTAP_CHANNEL_SDCCH8;
72 break;
73 case RSL_CHAN_BCCH:
74 ret = GSMTAP_CHANNEL_BCCH;
75 break;
76 case RSL_CHAN_RACH:
77 ret = GSMTAP_CHANNEL_RACH;
78 break;
79 case RSL_CHAN_PCH_AGCH:
80 /* it could also be AGCH... */
81 ret = GSMTAP_CHANNEL_PCH;
82 break;
83 }
84
85 if (link_id & 0x40)
86 ret |= GSMTAP_CHANNEL_ACCH;
87
88 return ret;
89}
90
Sylvain Munautabf66e72011-09-26 13:23:19 +020091/*! \brief create an arbitrary type GSMTAP message
92 * \param[in] type The GSMTAP_TYPE_xxx constant of the message to create
Harald Welte47379ca2011-08-17 16:35:24 +020093 * \param[in] arfcn GSM ARFCN (Channel Number)
94 * \param[in] ts GSM time slot
95 * \param[in] chan_type Channel Type
96 * \param[in] ss Sub-slot
97 * \param[in] fn GSM Frame Number
98 * \param[in] signal_dbm Signal Strength (dBm)
99 * \param[in] snr Signal/Noise Ratio (SNR)
100 * \param[in] data Pointer to data buffer
101 * \param[in] len Length of \ref data
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200102 * \return dynamically allocated message buffer containing data
Harald Welte47379ca2011-08-17 16:35:24 +0200103 *
104 * This function will allocate a new msgb and fill it with a GSMTAP
105 * header containing the information
106 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200107struct msgb *gsmtap_makemsg_ex(uint8_t type, uint16_t arfcn, uint8_t ts, uint8_t chan_type,
Harald Weltee34a9402010-06-29 22:31:21 +0200108 uint8_t ss, uint32_t fn, int8_t signal_dbm,
109 uint8_t snr, const uint8_t *data, unsigned int len)
Harald Weltee779c362010-06-29 20:51:13 +0200110{
111 struct msgb *msg;
112 struct gsmtap_hdr *gh;
113 uint8_t *dst;
114
Harald Weltee779c362010-06-29 20:51:13 +0200115 msg = msgb_alloc(sizeof(*gh) + len, "gsmtap_tx");
116 if (!msg)
Harald Weltee34a9402010-06-29 22:31:21 +0200117 return NULL;
Harald Weltee779c362010-06-29 20:51:13 +0200118
119 gh = (struct gsmtap_hdr *) msgb_put(msg, sizeof(*gh));
120
121 gh->version = GSMTAP_VERSION;
122 gh->hdr_len = sizeof(*gh)/4;
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200123 gh->type = type;
Harald Weltee779c362010-06-29 20:51:13 +0200124 gh->timeslot = ts;
125 gh->sub_slot = ss;
Harald Welte95871da2017-05-15 12:11:36 +0200126 gh->arfcn = osmo_htons(arfcn);
Harald Weltee779c362010-06-29 20:51:13 +0200127 gh->snr_db = snr;
128 gh->signal_dbm = signal_dbm;
Harald Welte95871da2017-05-15 12:11:36 +0200129 gh->frame_number = osmo_htonl(fn);
Harald Weltee779c362010-06-29 20:51:13 +0200130 gh->sub_type = chan_type;
131 gh->antenna_nr = 0;
132
133 dst = msgb_put(msg, len);
134 memcpy(dst, data, len);
135
Harald Weltee34a9402010-06-29 22:31:21 +0200136 return msg;
137}
138
Sylvain Munautabf66e72011-09-26 13:23:19 +0200139/*! \brief create L1/L2 data and put it into GSMTAP
140 * \param[in] arfcn GSM ARFCN (Channel Number)
141 * \param[in] ts GSM time slot
142 * \param[in] chan_type Channel Type
143 * \param[in] ss Sub-slot
144 * \param[in] fn GSM Frame Number
145 * \param[in] signal_dbm Signal Strength (dBm)
146 * \param[in] snr Signal/Noise Ratio (SNR)
147 * \param[in] data Pointer to data buffer
148 * \param[in] len Length of \ref data
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200149 * \return message buffer or NULL in case of error
Sylvain Munautabf66e72011-09-26 13:23:19 +0200150 *
151 * This function will allocate a new msgb and fill it with a GSMTAP
152 * header containing the information
153 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200154struct msgb *gsmtap_makemsg(uint16_t arfcn, uint8_t ts, uint8_t chan_type,
155 uint8_t ss, uint32_t fn, int8_t signal_dbm,
156 uint8_t snr, const uint8_t *data, unsigned int len)
157{
158 return gsmtap_makemsg_ex(GSMTAP_TYPE_UM, arfcn, ts, chan_type,
159 ss, fn, signal_dbm, snr, data, len);
160}
161
Harald Weltee4764422011-05-22 12:25:57 +0200162#ifdef HAVE_SYS_SOCKET_H
163
164#include <sys/socket.h>
165#include <netinet/in.h>
166
Harald Welte47379ca2011-08-17 16:35:24 +0200167/*! \brief Create a new (sending) GSMTAP source socket
168 * \param[in] host host name or IP address in string format
169 * \param[in] port UDP port number in host byte order
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200170 * \return file descriptor of the new socket
Harald Welte47379ca2011-08-17 16:35:24 +0200171 *
172 * Opens a GSMTAP source (sending) socket, conncet it to host/port and
173 * return resulting fd. If \a host is NULL, the destination address
174 * will be localhost. If \a port is 0, the default \ref
175 * GSMTAP_UDP_PORT will be used.
176 * */
Harald Welte33cb71a2011-05-21 18:54:32 +0200177int gsmtap_source_init_fd(const char *host, uint16_t port)
178{
179 if (port == 0)
180 port = GSMTAP_UDP_PORT;
181 if (host == NULL)
182 host = "localhost";
183
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200184 return osmo_sock_init(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP, host, port,
185 OSMO_SOCK_F_CONNECT);
Harald Welte33cb71a2011-05-21 18:54:32 +0200186}
187
Harald Weltede6e4982012-12-06 21:25:27 +0100188/*! \brief Add a local sink to an existing GSMTAP source and return fd
189 * \param[in] gsmtap_fd file descriptor of the gsmtap socket
190 * \returns file descriptor of locally bound receive socket
191 *
192 * In case the GSMTAP socket is connected to a local destination
193 * IP/port, this function creates a corresponding receiving socket
194 * bound to that destination IP + port.
195 *
196 * In case the gsmtap socket is not connected to a local IP/port, or
197 * creation of the receiving socket fails, a negative error code is
198 * returned.
199 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200200int gsmtap_source_add_sink_fd(int gsmtap_fd)
201{
202 struct sockaddr_storage ss;
203 socklen_t ss_len = sizeof(ss);
204 int rc;
205
206 rc = getpeername(gsmtap_fd, (struct sockaddr *)&ss, &ss_len);
207 if (rc < 0)
208 return rc;
209
210 if (osmo_sockaddr_is_local((struct sockaddr *)&ss, ss_len) == 1) {
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200211 rc = osmo_sock_init_sa((struct sockaddr *)&ss, SOCK_DGRAM,
212 IPPROTO_UDP, OSMO_SOCK_F_BIND);
Harald Welte33cb71a2011-05-21 18:54:32 +0200213 if (rc >= 0)
214 return rc;
215 }
216
217 return -ENODEV;
218}
219
Harald Welte47379ca2011-08-17 16:35:24 +0200220/*! \brief Send a \ref msgb through a GSMTAP source
221 * \param[in] gti GSMTAP instance
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100222 * \param[in] msg message buffer
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200223 * \return 0 in case of success; negative in case of error
Harald Welte47379ca2011-08-17 16:35:24 +0200224 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200225int gsmtap_sendmsg(struct gsmtap_inst *gti, struct msgb *msg)
226{
Harald Welte13692a62011-05-22 20:06:11 +0200227 if (!gti)
228 return -ENODEV;
229
Harald Welte33cb71a2011-05-21 18:54:32 +0200230 if (gti->ofd_wq_mode)
231 return osmo_wqueue_enqueue(&gti->wq, msg);
232 else {
233 /* try immediate send and return error if any */
234 int rc;
235
236 rc = write(gsmtap_inst_fd(gti), msg->data, msg->len);
237 if (rc <= 0) {
238 return rc;
239 } else if (rc >= msg->len) {
240 msgb_free(msg);
241 return 0;
242 } else {
243 /* short write */
244 return -EIO;
245 }
246 }
247}
248
Sylvain Munautabf66e72011-09-26 13:23:19 +0200249/*! \brief send an arbitrary type through GSMTAP.
250 * See \ref gsmtap_makemsg_ex for arguments
251 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200252int gsmtap_send_ex(struct gsmtap_inst *gti, uint8_t type, uint16_t arfcn, uint8_t ts,
Harald Welte33cb71a2011-05-21 18:54:32 +0200253 uint8_t chan_type, uint8_t ss, uint32_t fn,
254 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
255 unsigned int len)
Harald Weltee34a9402010-06-29 22:31:21 +0200256{
257 struct msgb *msg;
258
Harald Welte13692a62011-05-22 20:06:11 +0200259 if (!gti)
260 return -ENODEV;
261
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200262 msg = gsmtap_makemsg_ex(type, arfcn, ts, chan_type, ss, fn, signal_dbm,
Harald Weltee34a9402010-06-29 22:31:21 +0200263 snr, data, len);
264 if (!msg)
265 return -ENOMEM;
266
Harald Welte33cb71a2011-05-21 18:54:32 +0200267 return gsmtap_sendmsg(gti, msg);
Harald Weltee779c362010-06-29 20:51:13 +0200268}
269
Sylvain Munautabf66e72011-09-26 13:23:19 +0200270/*! \brief send a message from L1/L2 through GSMTAP.
271 * See \ref gsmtap_makemsg for arguments
272 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200273int gsmtap_send(struct gsmtap_inst *gti, uint16_t arfcn, uint8_t ts,
274 uint8_t chan_type, uint8_t ss, uint32_t fn,
275 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
276 unsigned int len)
277{
278 return gsmtap_send_ex(gti, GSMTAP_TYPE_UM, arfcn, ts, chan_type, ss, fn,
279 signal_dbm, snr, data, len);
280}
281
Harald Weltee779c362010-06-29 20:51:13 +0200282/* Callback from select layer if we can write to the socket */
Harald Welte33cb71a2011-05-21 18:54:32 +0200283static int gsmtap_wq_w_cb(struct osmo_fd *ofd, struct msgb *msg)
Harald Weltee779c362010-06-29 20:51:13 +0200284{
Harald Weltee779c362010-06-29 20:51:13 +0200285 int rc;
286
Harald Welte33cb71a2011-05-21 18:54:32 +0200287 rc = write(ofd->fd, msg->data, msg->len);
Harald Weltee779c362010-06-29 20:51:13 +0200288 if (rc < 0) {
Harald Weltee779c362010-06-29 20:51:13 +0200289 return rc;
290 }
291 if (rc != msg->len) {
Harald Weltee779c362010-06-29 20:51:13 +0200292 return -EIO;
293 }
294
Harald Weltee779c362010-06-29 20:51:13 +0200295 return 0;
296}
297
Harald Welted58ba462011-04-27 10:57:49 +0200298/* Callback from select layer if we can read from the sink socket */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200299static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags)
Harald Welted58ba462011-04-27 10:57:49 +0200300{
301 int rc;
302 uint8_t buf[4096];
303
304 if (!(flags & BSC_FD_READ))
305 return 0;
306
307 rc = read(fd->fd, buf, sizeof(buf));
308 if (rc < 0) {
Harald Welted58ba462011-04-27 10:57:49 +0200309 return rc;
310 }
311 /* simply discard any data arriving on the socket */
312
313 return 0;
314}
315
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200316/*! \brief Add a local sink to an existing GSMTAP source and return fd
317 * \param[in] gsmtap_fd file descriptor of the gsmtap socket
318 * \returns file descriptor of locally bound receive socket
319 *
320 * In case the GSMTAP socket is connected to a local destination
321 * IP/port, this function creates a corresponding receiving socket
322 * bound to that destination IP + port.
323 *
324 * In case the gsmtap socket is not connected to a local IP/port, or
325 * creation of the receiving socket fails, a negative error code is
326 * returned.
327 *
328 * The file descriptor of the receiving socket is automatically added
329 * to the libosmocore select() handling.
330 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200331int gsmtap_source_add_sink(struct gsmtap_inst *gti)
Harald Welted58ba462011-04-27 10:57:49 +0200332{
Harald Welte9d862c82016-11-26 00:10:07 +0100333 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200334
Harald Welte33cb71a2011-05-21 18:54:32 +0200335 fd = gsmtap_source_add_sink_fd(gsmtap_inst_fd(gti));
336 if (fd < 0)
337 return fd;
Harald Welted58ba462011-04-27 10:57:49 +0200338
Harald Welte33cb71a2011-05-21 18:54:32 +0200339 if (gti->ofd_wq_mode) {
340 struct osmo_fd *sink_ofd;
341
342 sink_ofd = &gti->sink_ofd;
343 sink_ofd->fd = fd;
344 sink_ofd->when = BSC_FD_READ;
345 sink_ofd->cb = gsmtap_sink_fd_cb;
346
Harald Welte9d862c82016-11-26 00:10:07 +0100347 rc = osmo_fd_register(sink_ofd);
348 if (rc < 0) {
349 close(fd);
350 return rc;
351 }
Harald Welted58ba462011-04-27 10:57:49 +0200352 }
353
Harald Welte33cb71a2011-05-21 18:54:32 +0200354 return fd;
355}
Harald Welted58ba462011-04-27 10:57:49 +0200356
Harald Welte47379ca2011-08-17 16:35:24 +0200357
358/*! \brief Open GSMTAP source socket, connect and register osmo_fd
359 * \param[in] host host name or IP address in string format
360 * \param[in] port UDP port number in host byte order
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100361 * \param[in] ofd_wq_mode Register \ref osmo_wqueue (1) or not (0)
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200362 * \return callee-allocated \ref gsmtap_inst
Harald Welte47379ca2011-08-17 16:35:24 +0200363 *
364 * Open GSMTAP source (sending) socket, connect it to host/port,
365 * allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue
366 * registration. This means it is like \ref gsmtap_init2 but integrated
367 * with libosmocore \ref select */
Harald Welte33cb71a2011-05-21 18:54:32 +0200368struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port,
369 int ofd_wq_mode)
370{
371 struct gsmtap_inst *gti;
Harald Welte9d862c82016-11-26 00:10:07 +0100372 int fd, rc;
Harald Welted58ba462011-04-27 10:57:49 +0200373
Harald Welte33cb71a2011-05-21 18:54:32 +0200374 fd = gsmtap_source_init_fd(host, port);
375 if (fd < 0)
376 return NULL;
377
378 gti = talloc_zero(NULL, struct gsmtap_inst);
379 gti->ofd_wq_mode = ofd_wq_mode;
380 gti->wq.bfd.fd = fd;
381 gti->sink_ofd.fd = -1;
382
383 if (ofd_wq_mode) {
384 osmo_wqueue_init(&gti->wq, 64);
385 gti->wq.write_cb = &gsmtap_wq_w_cb;
386
Harald Welte9d862c82016-11-26 00:10:07 +0100387 rc = osmo_fd_register(&gti->wq.bfd);
388 if (rc < 0) {
389 close(fd);
390 return NULL;
391 }
Harald Welte33cb71a2011-05-21 18:54:32 +0200392 }
393
394 return gti;
Harald Welted58ba462011-04-27 10:57:49 +0200395}
396
Harald Weltee4764422011-05-22 12:25:57 +0200397#endif /* HAVE_SYS_SOCKET_H */
Harald Weltede6e4982012-12-06 21:25:27 +0100398
399/*! @} */