blob: 42b4c20f81839920b237317db9397581f196a44d [file] [log] [blame]
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +08001/* Routines to talk to the MSC using the IPA Protocol */
2/*
3 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freytherdf6143a2010-06-15 18:46:56 +08004 * (C) 2010 by On-Waves
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +08005 * 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 <openbsc/bsc_msc.h>
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +010024#include <openbsc/debug.h>
Holger Hans Peter Freytherf76e7ef2010-06-15 18:52:05 +080025#include <openbsc/ipaccess.h>
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +010026
27#include <osmocore/write_queue.h>
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080028#include <osmocore/talloc.h>
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080029
30#include <arpa/inet.h>
31#include <sys/socket.h>
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +010032#include <errno.h>
33#include <fcntl.h>
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +080034#include <stdio.h>
35#include <string.h>
36#include <unistd.h>
37
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080038static void connection_loss(struct bsc_msc_connection *con)
39{
40 struct bsc_fd *fd;
41
42 fd = &con->write_queue.bfd;
43
44 close(fd->fd);
45 fd->fd = -1;
46 fd->cb = write_queue_bfd_cb;
47 fd->when = 0;
48
49 con->is_connected = 0;
50 con->connection_loss(con);
51}
52
Holger Hans Peter Freythere47a91b2010-05-05 22:48:56 +080053static void msc_con_timeout(void *_con)
54{
55 struct bsc_msc_connection *con = _con;
56
57 LOGP(DMSC, LOGL_ERROR, "MSC Connection timeout.\n");
58 bsc_msc_lost(con);
59}
60
Holger Hans Peter Freyther0176eb42010-04-08 11:12:32 +020061static int bsc_msc_except(struct bsc_fd *bfd)
62{
63 struct write_queue *wrt;
64 struct bsc_msc_connection *con;
65
66 LOGP(DMSC, LOGL_ERROR, "Exception on the BFD. Closing down.\n");
67
68 wrt = container_of(bfd, struct write_queue, bfd);
69 con = container_of(wrt, struct bsc_msc_connection, write_queue);
70
71 connection_loss(con);
72 return 0;
73}
74
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +010075/* called in the case of a non blocking connect */
76static int msc_connection_connect(struct bsc_fd *fd, unsigned int what)
77{
78 int rc;
79 int val;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080080 struct bsc_msc_connection *con;
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +010081 struct write_queue *queue;
82
83 socklen_t len = sizeof(val);
84
85 if ((what & BSC_FD_WRITE) == 0) {
86 LOGP(DMSC, LOGL_ERROR, "Callback but not readable.\n");
87 return -1;
88 }
89
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +080090 queue = container_of(fd, struct write_queue, bfd);
91 con = container_of(queue, struct bsc_msc_connection, write_queue);
92
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +010093 /* check the socket state */
94 rc = getsockopt(fd->fd, SOL_SOCKET, SO_ERROR, &val, &len);
95 if (rc != 0) {
96 LOGP(DMSC, LOGL_ERROR, "getsockopt for the MSC socket failed.\n");
97 goto error;
98 }
99 if (val != 0) {
Holger Hans Peter Freyther9d90da92010-04-06 10:25:00 +0200100 LOGP(DMSC, LOGL_ERROR, "Not connected to the MSC: %d\n", val);
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100101 goto error;
102 }
103
104
105 /* go to full operation */
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100106 fd->cb = write_queue_bfd_cb;
Holger Hans Peter Freyther0176eb42010-04-08 11:12:32 +0200107 fd->when = BSC_FD_READ | BSC_FD_EXCEPT;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800108
109 con->is_connected = 1;
Holger Hans Peter Freythere47a91b2010-05-05 22:48:56 +0800110 bsc_del_timer(&con->timeout_timer);
Holger Hans Peter Freytherb9ac37d2010-04-05 17:58:52 +0200111 LOGP(DMSC, LOGL_NOTICE, "(Re)Connected to the MSC.\n");
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800112 if (con->connected)
113 con->connected(con);
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100114 return 0;
115
116error:
117 bsc_unregister_fd(fd);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800118 connection_loss(con);
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100119 return -1;
120}
121static void setnonblocking(struct bsc_fd *fd)
122{
123 int flags;
124
125 flags = fcntl(fd->fd, F_GETFL);
126 if (flags < 0) {
127 perror("fcntl get failed");
128 close(fd->fd);
129 fd->fd = -1;
130 return;
131 }
132
133 flags |= O_NONBLOCK;
134 flags = fcntl(fd->fd, F_SETFL, flags);
135 if (flags < 0) {
136 perror("fcntl get failed");
137 close(fd->fd);
138 fd->fd = -1;
139 return;
140 }
141}
142
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800143int bsc_msc_connect(struct bsc_msc_connection *con)
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800144{
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800145 struct bsc_fd *fd;
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800146 struct sockaddr_in sin;
147 int on = 1, ret;
148
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800149 LOGP(DMSC, LOGL_NOTICE, "Attempting to connect MSC at %s:%d\n", con->ip, con->port);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800150
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800151 con->is_connected = 0;
152
153 fd = &con->write_queue.bfd;
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800154 fd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800155 fd->data = NULL;
156 fd->priv_nr = 1;
157
158 if (fd->fd < 0) {
159 perror("Creating TCP socket failed");
160 return fd->fd;
161 }
162
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100163 /* make it non blocking */
164 setnonblocking(fd);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800165
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +0800166 /* set the socket priority */
167 ret = setsockopt(fd->fd, IPPROTO_IP, IP_TOS,
168 &con->prio, sizeof(con->prio));
169 if (ret != 0)
170 LOGP(DMSC, LOGL_ERROR, "Failed to set prio to %d. %s\n",
171 con->prio, strerror(errno));
172
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800173 memset(&sin, 0, sizeof(sin));
174 sin.sin_family = AF_INET;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800175 sin.sin_port = htons(con->port);
176 inet_aton(con->ip, &sin.sin_addr);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800177
178 setsockopt(fd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
179 ret = connect(fd->fd, (struct sockaddr *) &sin, sizeof(sin));
180
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100181 if (ret == -1 && errno == EINPROGRESS) {
182 LOGP(DMSC, LOGL_ERROR, "MSC Connection in progress\n");
183 fd->when = BSC_FD_WRITE;
184 fd->cb = msc_connection_connect;
Holger Hans Peter Freythere47a91b2010-05-05 22:48:56 +0800185 con->timeout_timer.cb = msc_con_timeout;
186 con->timeout_timer.data = con;
187 bsc_schedule_timer(&con->timeout_timer, 20, 0);
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100188 } else if (ret < 0) {
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800189 perror("Connection failed");
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800190 connection_loss(con);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800191 return ret;
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100192 } else {
Holger Hans Peter Freyther0176eb42010-04-08 11:12:32 +0200193 fd->when = BSC_FD_READ | BSC_FD_EXCEPT;
Holger Hans Peter Freyther6c0a04e2010-03-26 10:41:20 +0100194 fd->cb = write_queue_bfd_cb;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800195 con->is_connected = 1;
196 if (con->connected)
197 con->connected(con);
Holger Hans Peter Freythereef86b52010-06-15 18:45:06 +0800198 }
199
200 ret = bsc_register_fd(fd);
201 if (ret < 0) {
202 perror("Registering the fd failed");
203 close(fd->fd);
204 return ret;
205 }
206
207 return ret;
208}
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800209
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +0800210struct bsc_msc_connection *bsc_msc_create(const char *ip, int port, int prio)
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800211{
212 struct bsc_msc_connection *con;
213
214 con = talloc_zero(NULL, struct bsc_msc_connection);
215 if (!con) {
216 LOGP(DMSC, LOGL_FATAL, "Failed to create the MSC connection.\n");
217 return NULL;
218 }
219
220 con->ip = ip;
221 con->port = port;
Holger Hans Peter Freytherca999a92010-06-15 18:52:38 +0800222 con->prio = prio;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800223 write_queue_init(&con->write_queue, 100);
Holger Hans Peter Freyther0176eb42010-04-08 11:12:32 +0200224 con->write_queue.except_cb = bsc_msc_except;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800225 return con;
226}
227
228void bsc_msc_lost(struct bsc_msc_connection *con)
229{
Holger Hans Peter Freyther03ca97e2010-03-31 13:15:26 +0200230 write_queue_clear(&con->write_queue);
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800231 bsc_unregister_fd(&con->write_queue.bfd);
232 connection_loss(con);
233}
234
235static void reconnect_msc(void *_msc)
236{
237 struct bsc_msc_connection *con = _msc;
238
239 LOGP(DMSC, LOGL_NOTICE, "Attempting to reconnect to the MSC.\n");
240 bsc_msc_connect(con);
241}
242
243void bsc_msc_schedule_connect(struct bsc_msc_connection *con)
244{
245 LOGP(DMSC, LOGL_NOTICE, "Attempting to reconnect to the MSC.\n");
246 con->reconnect_timer.cb = reconnect_msc;
247 con->reconnect_timer.data = con;
248 bsc_schedule_timer(&con->reconnect_timer, 5, 0);
Holger Hans Peter Freytherf76e7ef2010-06-15 18:52:05 +0800249}
250
251struct msgb *bsc_msc_id_get_resp(const char *token)
252{
253 struct msgb *msg;
254
255 if (!token) {
256 LOGP(DMSC, LOGL_ERROR, "No token specified.\n");
257 return NULL;
258 }
259
260 msg = msgb_alloc_headroom(4096, 128, "id resp");
261 if (!msg) {
262 LOGP(DMSC, LOGL_ERROR, "Failed to create the message.\n");
263 return NULL;
264 }
265
266 msg->l2h = msgb_v_put(msg, IPAC_MSGT_ID_RESP);
267 msgb_l16tv_put(msg, strlen(token) + 1,
268 IPAC_IDTAG_UNITNAME, (u_int8_t *) token);
269 return msg;
Holger Hans Peter Freytherbaf2abe2010-06-15 18:47:29 +0800270}