blob: 4ef4ea3d044c248d9fc9d585a288014e0828f19d [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);
Neels Hofmeyre86437c2017-10-17 01:46:45 +0200130 if (rc < 0) {
131 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100132 return NULL;
Neels Hofmeyre86437c2017-10-17 01:46:45 +0200133 }
Maxea8b0d42017-02-14 16:53:04 +0100134
135 luop->peer = talloc_memdup(luop, peer_addr, rc);
136
137 return luop;
138}
139
140/* FIXME: this doesn't seem to work at all */
141struct lu_operation *lu_op_by_imsi(const char *imsi,
142 const struct llist_head *lst)
143{
144 struct lu_operation *luop;
145
146 llist_for_each_entry(luop, lst, list) {
147 if (!strcmp(imsi, luop->subscr.imsi))
148 return luop;
149 }
150 return NULL;
151}
152
153void lu_op_statechg(struct lu_operation *luop, enum lu_state new_state)
154{
155 enum lu_state old_state = luop->state;
156
157 DEBUGP(DMAIN, "LU OP state change: %s -> ",
158 get_value_string(lu_state_names, old_state));
159 DEBUGPC(DMAIN, "%s\n",
160 get_value_string(lu_state_names, new_state));
161
162 luop->state = new_state;
163}
164
165/* Send a msgb to a given address using routing */
166int osmo_gsup_addr_send(struct osmo_gsup_server *gs,
167 const uint8_t *addr, size_t addrlen,
168 struct msgb *msg)
169{
170 struct osmo_gsup_conn *conn;
171
172 conn = gsup_route_find(gs, addr, addrlen);
173 if (!conn) {
174 DEBUGP(DMAIN, "Cannot find route for addr %s\n", addr);
175 msgb_free(msg);
176 return -ENODEV;
177 }
178
179 return osmo_gsup_conn_send(conn, msg);
180}
181
182/*! Transmit UPD_LOC_ERROR and destroy lu_operation */
183void lu_op_tx_error(struct lu_operation *luop, enum gsm48_gmm_cause cause)
184{
185 struct osmo_gsup_message gsup;
186
187 DEBUGP(DMAIN, "%s: LU OP Tx Error (cause %s)\n",
188 luop->subscr.imsi, get_value_string(gsm48_gmm_cause_names,
189 cause));
190
191 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR);
192 gsup.cause = cause;
193
194 _luop_tx_gsup(luop, &gsup);
195
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200196 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100197}
198
199/*! Transmit UPD_LOC_RESULT and destroy lu_operation */
200void lu_op_tx_ack(struct lu_operation *luop)
201{
202 struct osmo_gsup_message gsup;
203
204 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT);
205 //FIXME gsup.hlr_enc;
206
207 _luop_tx_gsup(luop, &gsup);
208
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200209 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100210}
211
212/*! Send Cancel Location to old VLR/SGSN */
213void lu_op_tx_cancel_old(struct lu_operation *luop)
214{
215 struct osmo_gsup_message gsup;
216
217 OSMO_ASSERT(luop->state == LU_S_LU_RECEIVED);
218
219 fill_gsup_msg(&gsup, NULL, OSMO_GSUP_MSGT_LOCATION_CANCEL_REQUEST);
220 //gsup.cause = FIXME;
221 //gsup.cancel_type = FIXME;
222
223 _luop_tx_gsup(luop, &gsup);
224
225 lu_op_statechg(luop, LU_S_CANCEL_SENT);
226 osmo_timer_schedule(&luop->timer, CANCEL_TIMEOUT_SECS, 0);
227}
228
229/*! Transmit Insert Subscriber Data to new VLR/SGSN */
230void lu_op_tx_insert_subscr_data(struct lu_operation *luop)
231{
232 struct osmo_gsup_message gsup;
233 uint8_t apn[APN_MAXLEN];
234 uint8_t msisdn_enc[43]; /* TODO use constant; TS 24.008 10.5.4.7 */
235 int l;
236
237 OSMO_ASSERT(luop->state == LU_S_LU_RECEIVED ||
238 luop->state == LU_S_CANCEL_ACK_RECEIVED);
239
240 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_INSERT_DATA_REQUEST);
241
242 l = gsm48_encode_bcd_number(msisdn_enc, sizeof(msisdn_enc), 0,
243 luop->subscr.msisdn);
244 if (l < 1) {
245 LOGP(DMAIN, LOGL_ERROR,
246 "%s: Error: cannot encode MSISDN '%s'\n",
247 luop->subscr.imsi, luop->subscr.msisdn);
248 lu_op_tx_error(luop, GMM_CAUSE_PROTO_ERR_UNSPEC);
249 return;
250 }
251 gsup.msisdn_enc = msisdn_enc;
252 gsup.msisdn_enc_len = l;
253
Pau Espin Pedrolfc96f682017-12-15 19:05:08 +0100254 #pragma message "FIXME: deal with encoding the following data: gsup.hlr_enc"
Maxea8b0d42017-02-14 16:53:04 +0100255
256 if (luop->is_ps) {
257 /* FIXME: PDP infos - use more fine-grained access control
258 instead of wildcard APN */
259 l = osmo_apn_from_str(apn, sizeof(apn), "*");
260 if (l > 0) {
261 gsup.pdp_infos[0].apn_enc = apn;
262 gsup.pdp_infos[0].apn_enc_len = l;
263 gsup.pdp_infos[0].have_info = 1;
264 gsup.num_pdp_infos = 1;
265 /* FIXME: use real value: */
266 gsup.pdp_infos[0].context_id = 1;
267 }
268 }
269
270 /* Send ISD to new VLR/SGSN */
271 _luop_tx_gsup(luop, &gsup);
272
273 lu_op_statechg(luop, LU_S_ISD_SENT);
274 osmo_timer_schedule(&luop->timer, ISD_TIMEOUT_SECS, 0);
275}
Max9cacb6f2017-02-20 17:22:56 +0100276
Neels Hofmeyr7ae8d872017-10-17 01:46:50 +0200277/*! Transmit Delete Subscriber Data to new VLR/SGSN.
278 * The luop is not freed. */
Max9cacb6f2017-02-20 17:22:56 +0100279void lu_op_tx_del_subscr_data(struct lu_operation *luop)
280{
281 struct osmo_gsup_message gsup;
282
283 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_DELETE_DATA_REQUEST);
284
285 gsup.cn_domain = OSMO_GSUP_CN_DOMAIN_PS;
286
287 /* Send ISD to new VLR/SGSN */
288 _luop_tx_gsup(luop, &gsup);
289}