blob: 54c3884ddf659df3d898a67f7dcfba0b6019db47 [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>
Neels Hofmeyr5aeb4382018-05-04 16:02:44 +020030#include <osmocom/gsm/apn.h>
Maxea8b0d42017-02-14 16:53:04 +010031
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;
Stefan Sperling8f840142018-03-29 18:10:56 +0200111 osmo_timer_setup(&luop->timer, lu_op_timer_cb, luop);
Maxea8b0d42017-02-14 16:53:04 +0100112
113 return luop;
114}
115
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200116void lu_op_free(struct lu_operation *luop)
117{
118 /* Only attempt to remove when it was ever added to a list. */
119 if (luop->list.next)
120 llist_del(&luop->list);
Stefan Sperling8f840142018-03-29 18:10:56 +0200121
122 /* Delete timer just in case it is still pending. */
123 osmo_timer_del(&luop->timer);
124
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200125 talloc_free(luop);
126}
127
Maxea8b0d42017-02-14 16:53:04 +0100128struct lu_operation *lu_op_alloc_conn(struct osmo_gsup_conn *conn)
129{
130 uint8_t *peer_addr;
131 struct lu_operation *luop = lu_op_alloc(conn->server);
132 int rc = osmo_gsup_conn_ccm_get(conn, &peer_addr, IPAC_IDTAG_SERNR);
Neels Hofmeyre86437c2017-10-17 01:46:45 +0200133 if (rc < 0) {
134 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100135 return NULL;
Neels Hofmeyre86437c2017-10-17 01:46:45 +0200136 }
Maxea8b0d42017-02-14 16:53:04 +0100137
138 luop->peer = talloc_memdup(luop, peer_addr, rc);
139
140 return luop;
141}
142
143/* FIXME: this doesn't seem to work at all */
144struct lu_operation *lu_op_by_imsi(const char *imsi,
145 const struct llist_head *lst)
146{
147 struct lu_operation *luop;
148
149 llist_for_each_entry(luop, lst, list) {
150 if (!strcmp(imsi, luop->subscr.imsi))
151 return luop;
152 }
153 return NULL;
154}
155
156void lu_op_statechg(struct lu_operation *luop, enum lu_state new_state)
157{
158 enum lu_state old_state = luop->state;
159
160 DEBUGP(DMAIN, "LU OP state change: %s -> ",
161 get_value_string(lu_state_names, old_state));
162 DEBUGPC(DMAIN, "%s\n",
163 get_value_string(lu_state_names, new_state));
164
165 luop->state = new_state;
166}
167
168/* Send a msgb to a given address using routing */
169int osmo_gsup_addr_send(struct osmo_gsup_server *gs,
170 const uint8_t *addr, size_t addrlen,
171 struct msgb *msg)
172{
173 struct osmo_gsup_conn *conn;
174
175 conn = gsup_route_find(gs, addr, addrlen);
176 if (!conn) {
177 DEBUGP(DMAIN, "Cannot find route for addr %s\n", addr);
178 msgb_free(msg);
179 return -ENODEV;
180 }
181
182 return osmo_gsup_conn_send(conn, msg);
183}
184
185/*! Transmit UPD_LOC_ERROR and destroy lu_operation */
186void lu_op_tx_error(struct lu_operation *luop, enum gsm48_gmm_cause cause)
187{
188 struct osmo_gsup_message gsup;
189
190 DEBUGP(DMAIN, "%s: LU OP Tx Error (cause %s)\n",
191 luop->subscr.imsi, get_value_string(gsm48_gmm_cause_names,
192 cause));
193
194 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR);
195 gsup.cause = cause;
196
197 _luop_tx_gsup(luop, &gsup);
198
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200199 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100200}
201
202/*! Transmit UPD_LOC_RESULT and destroy lu_operation */
203void lu_op_tx_ack(struct lu_operation *luop)
204{
205 struct osmo_gsup_message gsup;
206
207 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT);
208 //FIXME gsup.hlr_enc;
209
210 _luop_tx_gsup(luop, &gsup);
211
Neels Hofmeyr200f56e2017-10-17 01:46:04 +0200212 lu_op_free(luop);
Maxea8b0d42017-02-14 16:53:04 +0100213}
214
215/*! Send Cancel Location to old VLR/SGSN */
216void lu_op_tx_cancel_old(struct lu_operation *luop)
217{
218 struct osmo_gsup_message gsup;
219
220 OSMO_ASSERT(luop->state == LU_S_LU_RECEIVED);
221
222 fill_gsup_msg(&gsup, NULL, OSMO_GSUP_MSGT_LOCATION_CANCEL_REQUEST);
223 //gsup.cause = FIXME;
224 //gsup.cancel_type = FIXME;
225
226 _luop_tx_gsup(luop, &gsup);
227
228 lu_op_statechg(luop, LU_S_CANCEL_SENT);
229 osmo_timer_schedule(&luop->timer, CANCEL_TIMEOUT_SECS, 0);
230}
231
232/*! Transmit Insert Subscriber Data to new VLR/SGSN */
233void lu_op_tx_insert_subscr_data(struct lu_operation *luop)
234{
235 struct osmo_gsup_message gsup;
Maxea8b0d42017-02-14 16:53:04 +0100236 uint8_t msisdn_enc[43]; /* TODO use constant; TS 24.008 10.5.4.7 */
Neels Hofmeyr5aeb4382018-05-04 16:02:44 +0200237 uint8_t apn[APN_MAXLEN];
Maxea8b0d42017-02-14 16:53:04 +0100238 int l;
239
240 OSMO_ASSERT(luop->state == LU_S_LU_RECEIVED ||
241 luop->state == LU_S_CANCEL_ACK_RECEIVED);
242
243 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_INSERT_DATA_REQUEST);
244
245 l = gsm48_encode_bcd_number(msisdn_enc, sizeof(msisdn_enc), 0,
246 luop->subscr.msisdn);
247 if (l < 1) {
248 LOGP(DMAIN, LOGL_ERROR,
249 "%s: Error: cannot encode MSISDN '%s'\n",
250 luop->subscr.imsi, luop->subscr.msisdn);
251 lu_op_tx_error(luop, GMM_CAUSE_PROTO_ERR_UNSPEC);
252 return;
253 }
254 gsup.msisdn_enc = msisdn_enc;
255 gsup.msisdn_enc_len = l;
256
Pau Espin Pedrolfc96f682017-12-15 19:05:08 +0100257 #pragma message "FIXME: deal with encoding the following data: gsup.hlr_enc"
Maxea8b0d42017-02-14 16:53:04 +0100258
259 if (luop->is_ps) {
260 /* FIXME: PDP infos - use more fine-grained access control
261 instead of wildcard APN */
Neels Hofmeyr5aeb4382018-05-04 16:02:44 +0200262 osmo_gsup_configure_wildcard_apn(&gsup, apn, sizeof(apn));
Maxea8b0d42017-02-14 16:53:04 +0100263 }
264
265 /* Send ISD to new VLR/SGSN */
266 _luop_tx_gsup(luop, &gsup);
267
268 lu_op_statechg(luop, LU_S_ISD_SENT);
269 osmo_timer_schedule(&luop->timer, ISD_TIMEOUT_SECS, 0);
270}
Max9cacb6f2017-02-20 17:22:56 +0100271
Neels Hofmeyr7ae8d872017-10-17 01:46:50 +0200272/*! Transmit Delete Subscriber Data to new VLR/SGSN.
273 * The luop is not freed. */
Max9cacb6f2017-02-20 17:22:56 +0100274void lu_op_tx_del_subscr_data(struct lu_operation *luop)
275{
276 struct osmo_gsup_message gsup;
277
278 fill_gsup_msg(&gsup, luop, OSMO_GSUP_MSGT_DELETE_DATA_REQUEST);
279
280 gsup.cn_domain = OSMO_GSUP_CN_DOMAIN_PS;
281
282 /* Send ISD to new VLR/SGSN */
283 _luop_tx_gsup(luop, &gsup);
284}