blob: 2a5c1aad62e46bc24359701958884b4a1ed94455 [file] [log] [blame]
Harald Welteeab84a12009-12-13 10:53:12 +01001/* Radio Resource LCS (Location) Protocol, GMS TS 04.31 */
Harald Welte (local)b8afe812009-08-16 13:18:51 +02002
3/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Harald Welte (local)b8afe812009-08-16 13:18:51 +020010 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Harald Welte (local)b8afe812009-08-16 13:18:51 +020016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte (local)b8afe812009-08-16 13:18:51 +020019 *
20 */
21
Vadim Yanitskiy096be502018-08-04 01:06:46 +070022#include <stdint.h>
Harald Welte (local)b8afe812009-08-16 13:18:51 +020023
Vadim Yanitskiy1b891302018-08-04 01:33:08 +070024#include <osmocom/core/utils.h>
25
Neels Hofmeyr90843962017-09-04 15:04:35 +020026#include <osmocom/msc/gsm_04_08.h>
27#include <osmocom/msc/signal.h>
Vadim Yanitskiy6cc377d2018-08-04 01:37:50 +070028#include <osmocom/msc/debug.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020029#include <osmocom/msc/gsm_subscriber.h>
Harald Welte (local)b8afe812009-08-16 13:18:51 +020030
Harald Welteeab84a12009-12-13 10:53:12 +010031/* RRLP msPositionReq, nsBased,
32 * Accuracy=60, Method=gps, ResponseTime=2, oneSet */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020033static const uint8_t ms_based_pos_req[] = { 0x40, 0x01, 0x78, 0xa8 };
Harald Welte (local)b8afe812009-08-16 13:18:51 +020034
Harald Welteeab84a12009-12-13 10:53:12 +010035/* RRLP msPositionReq, msBasedPref,
36 Accuracy=60, Method=gpsOrEOTD, ResponseTime=5, multipleSets */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020037static const uint8_t ms_pref_pos_req[] = { 0x40, 0x02, 0x79, 0x50 };
Harald Welteeab84a12009-12-13 10:53:12 +010038
39/* RRLP msPositionReq, msAssistedPref,
40 Accuracy=60, Method=gpsOrEOTD, ResponseTime=5, multipleSets */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020041static const uint8_t ass_pref_pos_req[] = { 0x40, 0x03, 0x79, 0x50 };
Harald Welteeab84a12009-12-13 10:53:12 +010042
Vadim Yanitskiy1b891302018-08-04 01:33:08 +070043static const struct value_string rrlp_mode_names[] = {
44 { RRLP_MODE_NONE, "none" },
45 { RRLP_MODE_MS_BASED, "ms-based" },
46 { RRLP_MODE_MS_PREF, "ms-preferred" },
47 { RRLP_MODE_ASS_PREF, "ass-preferred" },
48 { 0, NULL }
49};
50
51enum rrlp_mode msc_rrlp_mode_parse(const char *arg)
52{
53 return get_string_value(rrlp_mode_names, arg);
54}
55
56const char *msc_rrlp_mode_name(enum rrlp_mode mode)
57{
58 return get_value_string(rrlp_mode_names, mode);
59}
60
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080061static int send_rrlp_req(struct gsm_subscriber_connection *conn)
Harald Welteeab84a12009-12-13 10:53:12 +010062{
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +020063 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020064 const uint8_t *req;
Harald Welteeab84a12009-12-13 10:53:12 +010065
66 switch (net->rrlp.mode) {
67 case RRLP_MODE_MS_BASED:
68 req = ms_based_pos_req;
69 break;
70 case RRLP_MODE_MS_PREF:
71 req = ms_pref_pos_req;
72 break;
73 case RRLP_MODE_ASS_PREF:
74 req = ass_pref_pos_req;
75 break;
76 case RRLP_MODE_NONE:
77 default:
78 return 0;
79 }
80
Vadim Yanitskiy6cc377d2018-08-04 01:37:50 +070081 LOGP(DRR, LOGL_INFO, "Sending '%s' RRLP position request\n",
82 msc_rrlp_mode_name(net->rrlp.mode));
83
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080084 return gsm48_send_rr_app_info(conn, 0x00,
Harald Welteeab84a12009-12-13 10:53:12 +010085 sizeof(ms_based_pos_req), req);
86}
87
Harald Welte (local)b8afe812009-08-16 13:18:51 +020088static int subscr_sig_cb(unsigned int subsys, unsigned int signal,
89 void *handler_data, void *signal_data)
90{
Harald Welte2483f1b2016-06-19 18:06:02 +020091 struct vlr_subscr *vsub;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +080092 struct gsm_subscriber_connection *conn;
Harald Welte (local)b8afe812009-08-16 13:18:51 +020093
94 switch (signal) {
95 case S_SUBSCR_ATTACHED:
96 /* A subscriber has attached. */
Harald Welte2483f1b2016-06-19 18:06:02 +020097 vsub = signal_data;
98 conn = connection_for_subscr(vsub);
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +080099 if (!conn)
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200100 break;
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +0800101 send_rrlp_req(conn);
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200102 break;
103 }
104 return 0;
105}
106
107static int paging_sig_cb(unsigned int subsys, unsigned int signal,
108 void *handler_data, void *signal_data)
109{
110 struct paging_signal_data *psig_data = signal_data;
111
112 switch (signal) {
Sylvain Munautef24dff2009-12-19 12:38:10 +0100113 case S_PAGING_SUCCEEDED:
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200114 /* A subscriber has attached. */
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +0800115 send_rrlp_req(psig_data->conn);
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200116 break;
Sylvain Munautef24dff2009-12-19 12:38:10 +0100117 case S_PAGING_EXPIRED:
118 break;
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200119 }
120 return 0;
121}
122
Vadim Yanitskiyd01b5942018-08-04 01:13:49 +0700123void msc_rrlp_init(void)
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200124{
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200125 osmo_signal_register_handler(SS_SUBSCR, subscr_sig_cb, NULL);
126 osmo_signal_register_handler(SS_PAGING, paging_sig_cb, NULL);
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200127}