blob: ce722da9699a7d128e7e5db926f9c80a9cbea201 [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>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010032#include <osmocom/gsm/protocol/gsm_04_08.h>
33#include <osmocom/gsm/rsl.h>
Harald Weltee779c362010-06-29 20:51:13 +020034
Harald Welte33cb71a2011-05-21 18:54:32 +020035#include <sys/types.h>
Harald Weltee4764422011-05-22 12:25:57 +020036
37#include <arpa/inet.h>
Harald Weltee779c362010-06-29 20:51:13 +020038
39#include <stdio.h>
40#include <unistd.h>
41#include <stdint.h>
42#include <string.h>
43#include <errno.h>
44
Harald Welte47379ca2011-08-17 16:35:24 +020045/*! \addtogroup gsmtap
46 * @{
47 */
48/*! \file gsmtap_util.c */
49
50
51/*! \brief convert RSL channel number to GSMTAP channel type
52 * \param[in] rsl_cantype RSL channel type
53 * \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
102 *
103 * This function will allocate a new msgb and fill it with a GSMTAP
104 * header containing the information
105 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200106struct msgb *gsmtap_makemsg_ex(uint8_t type, uint16_t arfcn, uint8_t ts, uint8_t chan_type,
Harald Weltee34a9402010-06-29 22:31:21 +0200107 uint8_t ss, uint32_t fn, int8_t signal_dbm,
108 uint8_t snr, const uint8_t *data, unsigned int len)
Harald Weltee779c362010-06-29 20:51:13 +0200109{
110 struct msgb *msg;
111 struct gsmtap_hdr *gh;
112 uint8_t *dst;
113
Harald Weltee779c362010-06-29 20:51:13 +0200114 msg = msgb_alloc(sizeof(*gh) + len, "gsmtap_tx");
115 if (!msg)
Harald Weltee34a9402010-06-29 22:31:21 +0200116 return NULL;
Harald Weltee779c362010-06-29 20:51:13 +0200117
118 gh = (struct gsmtap_hdr *) msgb_put(msg, sizeof(*gh));
119
120 gh->version = GSMTAP_VERSION;
121 gh->hdr_len = sizeof(*gh)/4;
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200122 gh->type = type;
Harald Weltee779c362010-06-29 20:51:13 +0200123 gh->timeslot = ts;
124 gh->sub_slot = ss;
125 gh->arfcn = htons(arfcn);
126 gh->snr_db = snr;
127 gh->signal_dbm = signal_dbm;
128 gh->frame_number = htonl(fn);
129 gh->sub_type = chan_type;
130 gh->antenna_nr = 0;
131
132 dst = msgb_put(msg, len);
133 memcpy(dst, data, len);
134
Harald Weltee34a9402010-06-29 22:31:21 +0200135 return msg;
136}
137
Sylvain Munautabf66e72011-09-26 13:23:19 +0200138/*! \brief create L1/L2 data and put it into GSMTAP
139 * \param[in] arfcn GSM ARFCN (Channel Number)
140 * \param[in] ts GSM time slot
141 * \param[in] chan_type Channel Type
142 * \param[in] ss Sub-slot
143 * \param[in] fn GSM Frame Number
144 * \param[in] signal_dbm Signal Strength (dBm)
145 * \param[in] snr Signal/Noise Ratio (SNR)
146 * \param[in] data Pointer to data buffer
147 * \param[in] len Length of \ref data
148 *
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(uint16_t arfcn, uint8_t ts, uint8_t chan_type,
153 uint8_t ss, uint32_t fn, int8_t signal_dbm,
154 uint8_t snr, const uint8_t *data, unsigned int len)
155{
156 return gsmtap_makemsg_ex(GSMTAP_TYPE_UM, arfcn, ts, chan_type,
157 ss, fn, signal_dbm, snr, data, len);
158}
159
Harald Weltee4764422011-05-22 12:25:57 +0200160#ifdef HAVE_SYS_SOCKET_H
161
162#include <sys/socket.h>
163#include <netinet/in.h>
164
Harald Welte47379ca2011-08-17 16:35:24 +0200165/*! \brief Create a new (sending) GSMTAP source socket
166 * \param[in] host host name or IP address in string format
167 * \param[in] port UDP port number in host byte order
168 *
169 * Opens a GSMTAP source (sending) socket, conncet it to host/port and
170 * return resulting fd. If \a host is NULL, the destination address
171 * will be localhost. If \a port is 0, the default \ref
172 * GSMTAP_UDP_PORT will be used.
173 * */
Harald Welte33cb71a2011-05-21 18:54:32 +0200174int gsmtap_source_init_fd(const char *host, uint16_t port)
175{
176 if (port == 0)
177 port = GSMTAP_UDP_PORT;
178 if (host == NULL)
179 host = "localhost";
180
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200181 return osmo_sock_init(AF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP, host, port,
182 OSMO_SOCK_F_CONNECT);
Harald Welte33cb71a2011-05-21 18:54:32 +0200183}
184
Harald Welte47379ca2011-08-17 16:35:24 +0200185/*! \brief Add a local sink to an existing GSMTAP source and return fd */
Harald Welte33cb71a2011-05-21 18:54:32 +0200186int gsmtap_source_add_sink_fd(int gsmtap_fd)
187{
188 struct sockaddr_storage ss;
189 socklen_t ss_len = sizeof(ss);
190 int rc;
191
192 rc = getpeername(gsmtap_fd, (struct sockaddr *)&ss, &ss_len);
193 if (rc < 0)
194 return rc;
195
196 if (osmo_sockaddr_is_local((struct sockaddr *)&ss, ss_len) == 1) {
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200197 rc = osmo_sock_init_sa((struct sockaddr *)&ss, SOCK_DGRAM,
198 IPPROTO_UDP, OSMO_SOCK_F_BIND);
Harald Welte33cb71a2011-05-21 18:54:32 +0200199 if (rc >= 0)
200 return rc;
201 }
202
203 return -ENODEV;
204}
205
Harald Welte47379ca2011-08-17 16:35:24 +0200206/*! \brief Send a \ref msgb through a GSMTAP source
207 * \param[in] gti GSMTAP instance
208 * \param[in] msgb message buffer
209 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200210int gsmtap_sendmsg(struct gsmtap_inst *gti, struct msgb *msg)
211{
Harald Welte13692a62011-05-22 20:06:11 +0200212 if (!gti)
213 return -ENODEV;
214
Harald Welte33cb71a2011-05-21 18:54:32 +0200215 if (gti->ofd_wq_mode)
216 return osmo_wqueue_enqueue(&gti->wq, msg);
217 else {
218 /* try immediate send and return error if any */
219 int rc;
220
221 rc = write(gsmtap_inst_fd(gti), msg->data, msg->len);
222 if (rc <= 0) {
223 return rc;
224 } else if (rc >= msg->len) {
225 msgb_free(msg);
226 return 0;
227 } else {
228 /* short write */
229 return -EIO;
230 }
231 }
232}
233
Sylvain Munautabf66e72011-09-26 13:23:19 +0200234/*! \brief send an arbitrary type through GSMTAP.
235 * See \ref gsmtap_makemsg_ex for arguments
236 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200237int gsmtap_send_ex(struct gsmtap_inst *gti, uint8_t type, uint16_t arfcn, uint8_t ts,
Harald Welte33cb71a2011-05-21 18:54:32 +0200238 uint8_t chan_type, uint8_t ss, uint32_t fn,
239 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
240 unsigned int len)
Harald Weltee34a9402010-06-29 22:31:21 +0200241{
242 struct msgb *msg;
243
Harald Welte13692a62011-05-22 20:06:11 +0200244 if (!gti)
245 return -ENODEV;
246
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200247 msg = gsmtap_makemsg_ex(type, arfcn, ts, chan_type, ss, fn, signal_dbm,
Harald Weltee34a9402010-06-29 22:31:21 +0200248 snr, data, len);
249 if (!msg)
250 return -ENOMEM;
251
Harald Welte33cb71a2011-05-21 18:54:32 +0200252 return gsmtap_sendmsg(gti, msg);
Harald Weltee779c362010-06-29 20:51:13 +0200253}
254
Sylvain Munautabf66e72011-09-26 13:23:19 +0200255/*! \brief send a message from L1/L2 through GSMTAP.
256 * See \ref gsmtap_makemsg for arguments
257 */
Sylvain Munaut15ae7152011-09-26 13:05:07 +0200258int gsmtap_send(struct gsmtap_inst *gti, uint16_t arfcn, uint8_t ts,
259 uint8_t chan_type, uint8_t ss, uint32_t fn,
260 int8_t signal_dbm, uint8_t snr, const uint8_t *data,
261 unsigned int len)
262{
263 return gsmtap_send_ex(gti, GSMTAP_TYPE_UM, arfcn, ts, chan_type, ss, fn,
264 signal_dbm, snr, data, len);
265}
266
Harald Weltee779c362010-06-29 20:51:13 +0200267/* Callback from select layer if we can write to the socket */
Harald Welte33cb71a2011-05-21 18:54:32 +0200268static int gsmtap_wq_w_cb(struct osmo_fd *ofd, struct msgb *msg)
Harald Weltee779c362010-06-29 20:51:13 +0200269{
Harald Weltee779c362010-06-29 20:51:13 +0200270 int rc;
271
Harald Welte33cb71a2011-05-21 18:54:32 +0200272 rc = write(ofd->fd, msg->data, msg->len);
Harald Weltee779c362010-06-29 20:51:13 +0200273 if (rc < 0) {
274 perror("writing msgb to gsmtap fd");
Harald Weltee779c362010-06-29 20:51:13 +0200275 return rc;
276 }
277 if (rc != msg->len) {
278 perror("short write to gsmtap fd");
Harald Weltee779c362010-06-29 20:51:13 +0200279 return -EIO;
280 }
281
Harald Weltee779c362010-06-29 20:51:13 +0200282 return 0;
283}
284
Harald Welted58ba462011-04-27 10:57:49 +0200285/* Callback from select layer if we can read from the sink socket */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200286static int gsmtap_sink_fd_cb(struct osmo_fd *fd, unsigned int flags)
Harald Welted58ba462011-04-27 10:57:49 +0200287{
288 int rc;
289 uint8_t buf[4096];
290
291 if (!(flags & BSC_FD_READ))
292 return 0;
293
294 rc = read(fd->fd, buf, sizeof(buf));
295 if (rc < 0) {
296 perror("reading from gsmtap sink fd");
297 return rc;
298 }
299 /* simply discard any data arriving on the socket */
300
301 return 0;
302}
303
Harald Welte47379ca2011-08-17 16:35:24 +0200304/*! \brief Add a local sink to an existing GSMTAP source instance */
Harald Welte33cb71a2011-05-21 18:54:32 +0200305int gsmtap_source_add_sink(struct gsmtap_inst *gti)
Harald Welted58ba462011-04-27 10:57:49 +0200306{
Harald Welte33cb71a2011-05-21 18:54:32 +0200307 int fd;
Harald Welted58ba462011-04-27 10:57:49 +0200308
Harald Welte33cb71a2011-05-21 18:54:32 +0200309 fd = gsmtap_source_add_sink_fd(gsmtap_inst_fd(gti));
310 if (fd < 0)
311 return fd;
Harald Welted58ba462011-04-27 10:57:49 +0200312
Harald Welte33cb71a2011-05-21 18:54:32 +0200313 if (gti->ofd_wq_mode) {
314 struct osmo_fd *sink_ofd;
315
316 sink_ofd = &gti->sink_ofd;
317 sink_ofd->fd = fd;
318 sink_ofd->when = BSC_FD_READ;
319 sink_ofd->cb = gsmtap_sink_fd_cb;
320
321 osmo_fd_register(sink_ofd);
Harald Welted58ba462011-04-27 10:57:49 +0200322 }
323
Harald Welte33cb71a2011-05-21 18:54:32 +0200324 return fd;
325}
Harald Welted58ba462011-04-27 10:57:49 +0200326
Harald Welte47379ca2011-08-17 16:35:24 +0200327
328/*! \brief Open GSMTAP source socket, connect and register osmo_fd
329 * \param[in] host host name or IP address in string format
330 * \param[in] port UDP port number in host byte order
331 * \param[in] osmo_wq_mode Register \ref osmo_wqueue (1) or not (0)
332 *
333 * Open GSMTAP source (sending) socket, connect it to host/port,
334 * allocate 'struct gsmtap_inst' and optionally osmo_fd/osmo_wqueue
335 * registration. This means it is like \ref gsmtap_init2 but integrated
336 * with libosmocore \ref select */
Harald Welte33cb71a2011-05-21 18:54:32 +0200337struct gsmtap_inst *gsmtap_source_init(const char *host, uint16_t port,
338 int ofd_wq_mode)
339{
340 struct gsmtap_inst *gti;
341 int fd;
Harald Welted58ba462011-04-27 10:57:49 +0200342
Harald Welte33cb71a2011-05-21 18:54:32 +0200343 fd = gsmtap_source_init_fd(host, port);
344 if (fd < 0)
345 return NULL;
346
347 gti = talloc_zero(NULL, struct gsmtap_inst);
348 gti->ofd_wq_mode = ofd_wq_mode;
349 gti->wq.bfd.fd = fd;
350 gti->sink_ofd.fd = -1;
351
352 if (ofd_wq_mode) {
353 osmo_wqueue_init(&gti->wq, 64);
354 gti->wq.write_cb = &gsmtap_wq_w_cb;
355
356 osmo_fd_register(&gti->wq.bfd);
357 }
358
359 return gti;
Harald Welted58ba462011-04-27 10:57:49 +0200360}
361
Harald Weltee4764422011-05-22 12:25:57 +0200362#endif /* HAVE_SYS_SOCKET_H */