blob: 40a0a10072736f40e1e10c0c50eef63a0379ed27 [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>
28#include <osmocom/msc/gsm_subscriber.h>
Harald Welte (local)b8afe812009-08-16 13:18:51 +020029
Harald Welteeab84a12009-12-13 10:53:12 +010030/* RRLP msPositionReq, nsBased,
31 * Accuracy=60, Method=gps, ResponseTime=2, oneSet */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020032static const uint8_t ms_based_pos_req[] = { 0x40, 0x01, 0x78, 0xa8 };
Harald Welte (local)b8afe812009-08-16 13:18:51 +020033
Harald Welteeab84a12009-12-13 10:53:12 +010034/* RRLP msPositionReq, msBasedPref,
35 Accuracy=60, Method=gpsOrEOTD, ResponseTime=5, multipleSets */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020036static const uint8_t ms_pref_pos_req[] = { 0x40, 0x02, 0x79, 0x50 };
Harald Welteeab84a12009-12-13 10:53:12 +010037
38/* RRLP msPositionReq, msAssistedPref,
39 Accuracy=60, Method=gpsOrEOTD, ResponseTime=5, multipleSets */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020040static const uint8_t ass_pref_pos_req[] = { 0x40, 0x03, 0x79, 0x50 };
Harald Welteeab84a12009-12-13 10:53:12 +010041
Vadim Yanitskiy1b891302018-08-04 01:33:08 +070042static const struct value_string rrlp_mode_names[] = {
43 { RRLP_MODE_NONE, "none" },
44 { RRLP_MODE_MS_BASED, "ms-based" },
45 { RRLP_MODE_MS_PREF, "ms-preferred" },
46 { RRLP_MODE_ASS_PREF, "ass-preferred" },
47 { 0, NULL }
48};
49
50enum rrlp_mode msc_rrlp_mode_parse(const char *arg)
51{
52 return get_string_value(rrlp_mode_names, arg);
53}
54
55const char *msc_rrlp_mode_name(enum rrlp_mode mode)
56{
57 return get_value_string(rrlp_mode_names, mode);
58}
59
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080060static int send_rrlp_req(struct gsm_subscriber_connection *conn)
Harald Welteeab84a12009-12-13 10:53:12 +010061{
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +020062 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020063 const uint8_t *req;
Harald Welteeab84a12009-12-13 10:53:12 +010064
65 switch (net->rrlp.mode) {
66 case RRLP_MODE_MS_BASED:
67 req = ms_based_pos_req;
68 break;
69 case RRLP_MODE_MS_PREF:
70 req = ms_pref_pos_req;
71 break;
72 case RRLP_MODE_ASS_PREF:
73 req = ass_pref_pos_req;
74 break;
75 case RRLP_MODE_NONE:
76 default:
77 return 0;
78 }
79
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080080 return gsm48_send_rr_app_info(conn, 0x00,
Harald Welteeab84a12009-12-13 10:53:12 +010081 sizeof(ms_based_pos_req), req);
82}
83
Harald Welte (local)b8afe812009-08-16 13:18:51 +020084static int subscr_sig_cb(unsigned int subsys, unsigned int signal,
85 void *handler_data, void *signal_data)
86{
Harald Welte2483f1b2016-06-19 18:06:02 +020087 struct vlr_subscr *vsub;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +080088 struct gsm_subscriber_connection *conn;
Harald Welte (local)b8afe812009-08-16 13:18:51 +020089
90 switch (signal) {
91 case S_SUBSCR_ATTACHED:
92 /* A subscriber has attached. */
Harald Welte2483f1b2016-06-19 18:06:02 +020093 vsub = signal_data;
94 conn = connection_for_subscr(vsub);
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +080095 if (!conn)
Harald Welte (local)b8afe812009-08-16 13:18:51 +020096 break;
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080097 send_rrlp_req(conn);
Harald Welte (local)b8afe812009-08-16 13:18:51 +020098 break;
99 }
100 return 0;
101}
102
103static int paging_sig_cb(unsigned int subsys, unsigned int signal,
104 void *handler_data, void *signal_data)
105{
106 struct paging_signal_data *psig_data = signal_data;
107
108 switch (signal) {
Sylvain Munautef24dff2009-12-19 12:38:10 +0100109 case S_PAGING_SUCCEEDED:
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200110 /* A subscriber has attached. */
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +0800111 send_rrlp_req(psig_data->conn);
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200112 break;
Sylvain Munautef24dff2009-12-19 12:38:10 +0100113 case S_PAGING_EXPIRED:
114 break;
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200115 }
116 return 0;
117}
118
Vadim Yanitskiyd01b5942018-08-04 01:13:49 +0700119void msc_rrlp_init(void)
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200120{
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200121 osmo_signal_register_handler(SS_SUBSCR, subscr_sig_cb, NULL);
122 osmo_signal_register_handler(SS_PAGING, paging_sig_cb, NULL);
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200123}