blob: 31715d506bc993c80ede4e197d80df7ed31ac92e [file] [log] [blame]
Harald Welted32cbbb2015-11-11 21:23:23 +01001/* osmobts_sock.cpp
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +04002 *
3 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20#include <stdio.h>
21#include <unistd.h>
22#include <stdlib.h>
23#include <string.h>
24#include <errno.h>
25#include <assert.h>
26#include <sys/socket.h>
27#include <sys/un.h>
28extern "C" {
29#include <osmocom/core/talloc.h>
30#include <osmocom/core/select.h>
31#include <osmocom/core/msgb.h>
32}
33
34#include <gprs_rlcmac.h>
35#include <pcu_l1_if.h>
36#include <gprs_debug.h>
37#include <gprs_bssgp_pcu.h>
Harald Welte68fc1272016-11-16 22:48:33 +010038#include <osmocom/pcu/pcuif_proto.h>
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020039#include <bts.h>
Holger Hans Peter Freyther9e21d842013-10-16 17:48:12 +020040#include <tbf.h>
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040041
Andreas Eversberge266bd42012-07-13 14:00:21 +020042extern void *tall_pcu_ctx;
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040043
Andreas Eversberg0f4541b2013-01-16 09:17:24 +010044extern "C" {
45int l1if_close_pdch(void *obj);
46}
47
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040048/*
Harald Welted32cbbb2015-11-11 21:23:23 +010049 * osmo-bts PCU socket functions
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040050 */
51
52struct pcu_sock_state {
53 struct osmo_fd conn_bfd; /* fd for connection to lcr */
54 struct osmo_timer_list timer; /* socket connect retry timer */
55 struct llist_head upqueue; /* queue for sending messages */
56} *pcu_sock_state = NULL;
57
58static void pcu_sock_timeout(void *_priv);
59
60int pcu_sock_send(struct msgb *msg)
61{
62 struct pcu_sock_state *state = pcu_sock_state;
63 struct osmo_fd *conn_bfd;
64
65 if (!state) {
66 LOGP(DL1IF, LOGL_NOTICE, "PCU socket not created, dropping "
67 "message\n");
68 return -EINVAL;
69 }
70 conn_bfd = &state->conn_bfd;
71 if (conn_bfd->fd <= 0) {
72 LOGP(DL1IF, LOGL_NOTICE, "PCU socket not connected, dropping "
73 "message\n");
74 return -EIO;
75 }
76 msgb_enqueue(&state->upqueue, msg);
77 conn_bfd->when |= BSC_FD_WRITE;
78
79 return 0;
80}
81
Andreas Eversberga3c12fb2012-09-28 22:46:33 +020082static void pcu_sock_close(struct pcu_sock_state *state, int lost)
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040083{
84 struct osmo_fd *bfd = &state->conn_bfd;
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +020085 struct gprs_rlcmac_bts *bts = bts_main_data();
Holger Hans Peter Freyther964ddb62013-10-16 17:53:23 +020086 uint8_t trx, ts;
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040087
Andreas Eversberga3c12fb2012-09-28 22:46:33 +020088 LOGP(DL1IF, LOGL_NOTICE, "PCU socket has %s connection\n",
89 (lost) ? "LOST" : "closed");
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040090
91 close(bfd->fd);
92 bfd->fd = -1;
93 osmo_fd_unregister(bfd);
94
95 /* flush the queue */
96 while (!llist_empty(&state->upqueue)) {
97 struct msgb *msg = msgb_dequeue(&state->upqueue);
98 msgb_free(msg);
99 }
100
101 /* disable all slots, kick all TBFs */
102 for (trx = 0; trx < 8; trx++) {
Maxcad867e2016-04-21 14:35:55 +0200103#ifdef ENABLE_DIRECT_PHY
Andreas Eversberg0f4541b2013-01-16 09:17:24 +0100104 if (bts->trx[trx].fl1h) {
105 l1if_close_pdch(bts->trx[trx].fl1h);
106 bts->trx[trx].fl1h = NULL;
107 }
Andreas Eversberg3afe56d2013-01-25 07:22:59 +0100108#endif
Andreas Eversbergadb2f182012-08-07 17:06:08 +0200109 for (ts = 0; ts < 8; ts++)
Holger Hans Peter Freyther17b0d832013-10-19 17:37:48 +0200110 bts->trx[trx].pdch[ts].disable();
Max5a6bcfb2017-09-01 14:36:44 +0200111/* FIXME: NOT ALL RESOURCES are freed in this case... inconsistent with the other code. Share the code with pcu_l1if.c
112for the reset. */
Holger Hans Peter Freyther964ddb62013-10-16 17:53:23 +0200113 gprs_rlcmac_tbf::free_all(&bts->trx[trx]);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400114 }
115
Daniel Willmann6d8884d2014-06-04 18:30:59 +0200116 gprs_bssgp_destroy();
117 exit(0);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400118}
119
120static int pcu_sock_read(struct osmo_fd *bfd)
121{
122 struct pcu_sock_state *state = (struct pcu_sock_state *)bfd->data;
123 struct gsm_pcu_if *pcu_prim;
124 struct msgb *msg;
125 int rc;
126
127 msg = msgb_alloc(sizeof(*pcu_prim), "pcu_sock_rx");
128 if (!msg)
129 return -ENOMEM;
130
131 pcu_prim = (struct gsm_pcu_if *) msg->tail;
132
133 rc = recv(bfd->fd, msg->tail, msgb_tailroom(msg), 0);
134 if (rc == 0)
135 goto close;
136
137 if (rc < 0) {
138 if (errno == EAGAIN)
139 return 0;
140 goto close;
141 }
142
143 rc = pcu_rx(pcu_prim->msg_type, pcu_prim);
144
145 /* as we always synchronously process the message in pcu_rx() and
146 * its callbacks, we can free the message here. */
147 msgb_free(msg);
148
149 return rc;
150
151close:
152 msgb_free(msg);
Andreas Eversberga3c12fb2012-09-28 22:46:33 +0200153 pcu_sock_close(state, 1);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400154 return -1;
155}
156
157static int pcu_sock_write(struct osmo_fd *bfd)
158{
159 struct pcu_sock_state *state = (struct pcu_sock_state *)bfd->data;
160 int rc;
161
162 while (!llist_empty(&state->upqueue)) {
163 struct msgb *msg, *msg2;
164 struct gsm_pcu_if *pcu_prim;
165
166 /* peek at the beginning of the queue */
167 msg = llist_entry(state->upqueue.next, struct msgb, list);
168 pcu_prim = (struct gsm_pcu_if *)msg->data;
169
170 bfd->when &= ~BSC_FD_WRITE;
171
172 /* bug hunter 8-): maybe someone forgot msgb_put(...) ? */
173 if (!msgb_length(msg)) {
174 LOGP(DL1IF, LOGL_ERROR, "message type (%d) with ZERO "
175 "bytes!\n", pcu_prim->msg_type);
176 goto dontsend;
177 }
178
179 /* try to send it over the socket */
180 rc = write(bfd->fd, msgb_data(msg), msgb_length(msg));
181 if (rc == 0)
182 goto close;
183 if (rc < 0) {
184 if (errno == EAGAIN) {
185 bfd->when |= BSC_FD_WRITE;
186 break;
187 }
188 goto close;
189 }
190
191dontsend:
192 /* _after_ we send it, we can deueue */
193 msg2 = msgb_dequeue(&state->upqueue);
194 assert(msg == msg2);
195 msgb_free(msg);
196 }
197 return 0;
198
199close:
Andreas Eversberga3c12fb2012-09-28 22:46:33 +0200200 pcu_sock_close(state, 1);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400201
202 return -1;
203}
204
205static int pcu_sock_cb(struct osmo_fd *bfd, unsigned int flags)
206{
207 int rc = 0;
208
209 if (flags & BSC_FD_READ)
210 rc = pcu_sock_read(bfd);
211 if (rc < 0)
212 return rc;
213
214 if (flags & BSC_FD_WRITE)
215 rc = pcu_sock_write(bfd);
216
217 return rc;
218}
219
220int pcu_l1if_open(void)
221{
222 struct pcu_sock_state *state;
223 struct osmo_fd *bfd;
224 struct sockaddr_un local;
225 unsigned int namelen;
226 int rc;
Pau Espin Pedrolc4178e52017-08-08 15:03:50 +0200227 struct gprs_rlcmac_bts *bts = bts_main_data();
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400228
Harald Welte21848272015-11-12 01:07:41 +0100229 LOGP(DL1IF, LOGL_INFO, "Opening OsmoPCU L1 interface to OsmoBTS\n");
230
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400231 state = pcu_sock_state;
232 if (!state) {
Andreas Eversberge266bd42012-07-13 14:00:21 +0200233 state = talloc_zero(tall_pcu_ctx, struct pcu_sock_state);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400234 if (!state)
235 return -ENOMEM;
236 INIT_LLIST_HEAD(&state->upqueue);
237 }
238
239 bfd = &state->conn_bfd;
240
241 bfd->fd = socket(AF_UNIX, SOCK_SEQPACKET, 0);
242 if (bfd->fd < 0) {
Harald Welted32cbbb2015-11-11 21:23:23 +0100243 LOGP(DL1IF, LOGL_ERROR, "Failed to create PCU socket.\n");
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400244 talloc_free(state);
245 return -1;
246 }
247
248 local.sun_family = AF_UNIX;
Pau Espin Pedrolc4178e52017-08-08 15:03:50 +0200249 strncpy(local.sun_path, bts->pcu_sock_path, sizeof(local.sun_path));
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400250 local.sun_path[sizeof(local.sun_path) - 1] = '\0';
251
252 /* we use the same magic that X11 uses in Xtranssock.c for
253 * calculating the proper length of the sockaddr */
254#if defined(BSD44SOCKETS) || defined(__UNIXWARE__)
255 local.sun_len = strlen(local.sun_path);
256#endif
257#if defined(BSD44SOCKETS) || defined(SUN_LEN)
258 namelen = SUN_LEN(&local);
259#else
260 namelen = strlen(local.sun_path) +
261 offsetof(struct sockaddr_un, sun_path);
262#endif
263 rc = connect(bfd->fd, (struct sockaddr *) &local, namelen);
264 if (rc != 0) {
Harald Welted32cbbb2015-11-11 21:23:23 +0100265 LOGP(DL1IF, LOGL_ERROR, "Failed to connect to the osmo-bts"
Harald Welte19d1e922015-11-12 01:08:19 +0100266 " PCU socket, delaying... '%s'\n", local.sun_path);
Andreas Eversberga3c12fb2012-09-28 22:46:33 +0200267 pcu_sock_state = state;
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400268 close(bfd->fd);
269 bfd->fd = -1;
270 state->timer.cb = pcu_sock_timeout;
271 osmo_timer_schedule(&state->timer, 5, 0);
272 return 0;
273 }
274
275 bfd->when = BSC_FD_READ;
276 bfd->cb = pcu_sock_cb;
277 bfd->data = state;
278
279 rc = osmo_fd_register(bfd);
280 if (rc < 0) {
281 LOGP(DL1IF, LOGL_ERROR, "Could not register PCU fd: %d\n", rc);
282 close(bfd->fd);
283 talloc_free(state);
284 return rc;
285 }
286
Maxb3df5862017-01-06 17:20:57 +0100287 LOGP(DL1IF, LOGL_NOTICE, "osmo-bts PCU socket %s has been connected\n",
288 local.sun_path);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400289
290 pcu_sock_state = state;
291
Max0a8fae82017-03-08 18:53:30 +0100292 LOGP(DL1IF, LOGL_INFO, "Sending version %s to BTS.\n", PACKAGE_VERSION);
293 pcu_tx_txt_ind(PCU_VERSION, "%s", PACKAGE_VERSION);
294
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400295 return 0;
296}
297
298void pcu_l1if_close(void)
299{
300 struct pcu_sock_state *state = pcu_sock_state;
301 struct osmo_fd *bfd;
302
303 if (!state)
304 return;
305
Holger Hans Peter Freyther51c57042013-07-13 11:52:50 +0200306 osmo_timer_del(&state->timer);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400307
308 bfd = &state->conn_bfd;
309 if (bfd->fd > 0)
Andreas Eversberga3c12fb2012-09-28 22:46:33 +0200310 pcu_sock_close(state, 0);
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +0400311 talloc_free(state);
312 pcu_sock_state = NULL;
313}
314
315static void pcu_sock_timeout(void *_priv)
316{
317 pcu_l1if_open();
318}