blob: 3bedbaa7523cb88d499789d37680ebf9857e771b [file] [log] [blame]
Maxea8b0d42017-02-14 16:53:04 +01001/* OsmoHLR TX/RX lu operations */
2
3/* (C) 2017 sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Harald Welte <laforge@gnumonks.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#include <stdbool.h>
24#include <string.h>
25#include <errno.h>
26
27#include <osmocom/core/logging.h>
28#include <osmocom/gsm/gsm48_ie.h>
29#include <osmocom/gsm/gsup.h>
30#include <osmocom/gsm/apn.h>
31
32#include "gsup_server.h"
33#include "gsup_router.h"
34#include "logging.h"
35#include "luop.h"
36
37const struct value_string lu_state_names[] = {
38 { LU_S_NULL, "NULL" },
39 { LU_S_LU_RECEIVED, "LU RECEIVED" },
40 { LU_S_CANCEL_SENT, "CANCEL SENT" },
41 { LU_S_CANCEL_ACK_RECEIVED, "CANCEL-ACK RECEIVED" },
42 { LU_S_ISD_SENT, "ISD SENT" },
43 { LU_S_ISD_ACK_RECEIVED, "ISD-ACK RECEIVED" },
44 { LU_S_COMPLETE, "COMPLETE" },
45 { 0, NULL }
46};
47
48/* Transmit a given GSUP message for the given LU operation */
49static void _luop_tx_gsup(struct lu_operation *luop,
50 const struct osmo_gsup_message *gsup)
51{
52 struct msgb *msg_out;
53
54 msg_out = msgb_alloc_headroom(1024+16, 16, "GSUP LUOP");
55 osmo_gsup_encode(msg_out, gsup);
56
57 osmo_gsup_addr_send(luop->gsup_server, luop->peer,
58 talloc_total_size(luop->peer),
59 msg_out);
60}
61
62static inline void fill_gsup_msg(struct osmo_gsup_message *out,
63 const struct lu_operation *lu,
64 enum osmo_gsup_message_type mt)
65{
66 memset(out, 0, sizeof(struct osmo_gsup_message));
67 if (lu)
68 osmo_strlcpy(out->imsi, lu->subscr.imsi,
69 GSM23003_IMSI_MAX_DIGITS + 1);
70 out->message_type = mt;
71}
72
73/* timer call-back in case LU operation doesn't receive an response */
74static void lu_op_timer_cb(void *data)
75{
76 struct lu_operation *luop = data;
77
78 DEBUGP(DMAIN, "LU OP timer expired in state %s\n",
79 get_value_string(lu_state_names, luop->state));
80
81 switch (luop->state) {
82 case LU_S_CANCEL_SENT:
83 break;
84 case LU_S_ISD_SENT:
85 break;
86 default:
87 break;
88 }
89
90 lu_op_tx_error(luop, GMM_CAUSE_NET_FAIL);
91}
92
93bool lu_op_fill_subscr(struct lu_operation *luop, struct db_context *dbc,
94 const char *imsi)
95{
96 struct hlr_subscriber *subscr = &luop->subscr;
97
Neels Hofmeyr518335e2017-10-06 03:20:14 +020098 if (db_subscr_get_by_imsi(dbc, imsi, subscr) < 0)
Maxea8b0d42017-02-14 16:53:04 +010099 return false;
100
101 return true;
102}
103
104struct lu_operation *lu_op_alloc(struct osmo_gsup_server *srv)
105{
106 struct lu_operation *luop;
107
108 luop = talloc_zero(srv, struct lu_operation);
109 OSMO_ASSERT(luop);
110 luop->gsup_server = srv;
111 luop->timer.cb = lu_op_timer_cb;
112 luop->timer.data = luop;
113
114 return luop;
115}
116
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200117void lu_op_free(struct lu_operation *luop)
118{
119 /* Only attempt to remove when it was ever added to a list. */
120 if (luop->list.next)
121 llist_del(&luop->list);
122 talloc_free(luop);
123}
124
Maxea8b0d42017-02-14 16:53:04 +0100125struct lu_operation *lu_op_alloc_conn(struct osmo_gsup_conn *conn)
126{
127 uint8_t *peer_addr;
128 struct lu_operation *luop = lu_op_alloc(conn->server);
129 int rc = osmo_gsup_conn_ccm_get(conn, &peer_addr, IPAC_IDTAG_SERNR);
130 if (rc < 0)
131 return NULL;
132
133 luop->peer = talloc_memdup(luop, peer_addr, rc);
134
135 return luop;
136}
137
138/* FIXME: this doesn't seem to work at all */
139struct lu_operation *lu_op_by_imsi(const char *imsi,
140 const struct llist_head *lst)
141{
142 struct lu_operation *luop;
143
144 llist_for_each_entry(luop, lst, list) {
145 if (!strcmp(imsi, luop->subscr.imsi))
146 return luop;
147 }
148 return NULL;
149}
150
151void lu_op_statechg(struct lu_operation *luop, enum lu_state new_state)
152{
153 enum lu_state old_state = luop->state;
154
155 DEBUGP(DMAIN, "LU OP state change: %s -> ",
156 get_value_string(lu_state_names, old_state));
157 DEBUGPC(DMAIN, "%s\n",
158 get_value_string(lu_state_names, new_state));
159
160 luop->state = new_state;
161}
162
163/* Send a msgb to a given address using routing */
164int osmo_gsup_addr_send(struct osmo_gsup_server *gs,
165 const uint8_t *addr, size_t addrlen,
166 struct msgb *msg)
167{
168 struct osmo_gsup_conn *conn;
169
170 conn = gsup_route_find(gs, addr, addrlen);
171 if (!conn) {
172 DEBUGP(DMAIN, "Cannot find route for addr %s\n", addr);
173 msgb_free(msg);
174 return -ENODEV;
175 }
176
177 return osmo_gsup_conn_send(conn, msg);
178}
179
180/*! Transmit UPD_LOC_ERROR and destroy lu_operation */
181void lu_op_tx_error(struct lu_operation *luop, enum gsm48_gmm_cause cause)
182{
183 struct osmo_gsup_message gsup;
184
185 DEBUGP(DMAIN, "%s: LU OP Tx Error (cause %s)\n",
186 luop->subscr.imsi, get_value_string(gsm48_gmm_cause_names,
187 cause));
188
189 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR);
190 gsup.cause = cause;
191
192 _luop_tx_gsup(luop, &gsup);
193
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200194 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100195}
196
197/*! Transmit UPD_LOC_RESULT and destroy lu_operation */
198void lu_op_tx_ack(struct lu_operation *luop)
199{
200 struct osmo_gsup_message gsup;
201
202 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT);
203 //FIXME gsup.hlr_enc;
204
205 _luop_tx_gsup(luop, &gsup);
206
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200207 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100208}
209
210/*! Send Cancel Location to old VLR/SGSN */
211void lu_op_tx_cancel_old(struct lu_operation *luop)
212{
213 struct osmo_gsup_message gsup;
214
215 OSMO_ASSERT(luop->state == LU_S_LU_RECEIVED);
216
217 fill_gsup_msg(&gsup, NULL, OSMO_GSUP_MSGT_LOCATION_CANCEL_REQUEST);
218 //gsup.cause = FIXME;
219 //gsup.cancel_type = FIXME;
220
221 _luop_tx_gsup(luop, &gsup);
222
223 lu_op_statechg(luop, LU_S_CANCEL_SENT);
224 osmo_timer_schedule(&luop->timer, CANCEL_TIMEOUT_SECS, 0);
225}
226
227/*! Transmit Insert Subscriber Data to new VLR/SGSN */
228void lu_op_tx_insert_subscr_data(struct lu_operation *luop)
229{
230 struct osmo_gsup_message gsup;
231 uint8_t apn[APN_MAXLEN];
232 uint8_t msisdn_enc[43]; /* TODO use constant; TS 24.008 10.5.4.7 */
233 int l;
234
235 OSMO_ASSERT(luop->state == LU_S_LU_RECEIVED ||
236 luop->state == LU_S_CANCEL_ACK_RECEIVED);
237
238 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_INSERT_DATA_REQUEST);
239
240 l = gsm48_encode_bcd_number(msisdn_enc, sizeof(msisdn_enc), 0,
241 luop->subscr.msisdn);
242 if (l < 1) {
243 LOGP(DMAIN, LOGL_ERROR,
244 "%s: Error: cannot encode MSISDN '%s'\n",
245 luop->subscr.imsi, luop->subscr.msisdn);
246 lu_op_tx_error(luop, GMM_CAUSE_PROTO_ERR_UNSPEC);
247 return;
248 }
249 gsup.msisdn_enc = msisdn_enc;
250 gsup.msisdn_enc_len = l;
251
252 /* FIXME: deal with encoding the following data */
253 gsup.hlr_enc;
254
255 if (luop->is_ps) {
256 /* FIXME: PDP infos - use more fine-grained access control
257 instead of wildcard APN */
258 l = osmo_apn_from_str(apn, sizeof(apn), "*");
259 if (l > 0) {
260 gsup.pdp_infos[0].apn_enc = apn;
261 gsup.pdp_infos[0].apn_enc_len = l;
262 gsup.pdp_infos[0].have_info = 1;
263 gsup.num_pdp_infos = 1;
264 /* FIXME: use real value: */
265 gsup.pdp_infos[0].context_id = 1;
266 }
267 }
268
269 /* Send ISD to new VLR/SGSN */
270 _luop_tx_gsup(luop, &gsup);
271
272 lu_op_statechg(luop, LU_S_ISD_SENT);
273 osmo_timer_schedule(&luop->timer, ISD_TIMEOUT_SECS, 0);
274}
Max9cacb6f2017-02-20 17:22:56 +0100275
276/*! Transmit Delete Subscriber Data to new VLR/SGSN */
277void lu_op_tx_del_subscr_data(struct lu_operation *luop)
278{
279 struct osmo_gsup_message gsup;
280
281 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_DELETE_DATA_REQUEST);
282
283 gsup.cn_domain = OSMO_GSUP_CN_DOMAIN_PS;
284
285 /* Send ISD to new VLR/SGSN */
286 _luop_tx_gsup(luop, &gsup);
287}