blob: 71e0f954cb28d454b8a43cccc68d575dbe24b44d [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
Neels Hofmeyr90843962017-09-04 15:04:35 +020024#include <osmocom/msc/gsm_04_08.h>
25#include <osmocom/msc/signal.h>
26#include <osmocom/msc/gsm_subscriber.h>
Harald Welte (local)b8afe812009-08-16 13:18:51 +020027
Harald Welteeab84a12009-12-13 10:53:12 +010028/* RRLP msPositionReq, nsBased,
29 * Accuracy=60, Method=gps, ResponseTime=2, oneSet */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020030static const uint8_t ms_based_pos_req[] = { 0x40, 0x01, 0x78, 0xa8 };
Harald Welte (local)b8afe812009-08-16 13:18:51 +020031
Harald Welteeab84a12009-12-13 10:53:12 +010032/* RRLP msPositionReq, msBasedPref,
33 Accuracy=60, Method=gpsOrEOTD, ResponseTime=5, multipleSets */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020034static const uint8_t ms_pref_pos_req[] = { 0x40, 0x02, 0x79, 0x50 };
Harald Welteeab84a12009-12-13 10:53:12 +010035
36/* RRLP msPositionReq, msAssistedPref,
37 Accuracy=60, Method=gpsOrEOTD, ResponseTime=5, multipleSets */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020038static const uint8_t ass_pref_pos_req[] = { 0x40, 0x03, 0x79, 0x50 };
Harald Welteeab84a12009-12-13 10:53:12 +010039
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080040static int send_rrlp_req(struct gsm_subscriber_connection *conn)
Harald Welteeab84a12009-12-13 10:53:12 +010041{
Neels Hofmeyra9f2bb52016-05-09 21:09:47 +020042 struct gsm_network *net = conn->network;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020043 const uint8_t *req;
Harald Welteeab84a12009-12-13 10:53:12 +010044
45 switch (net->rrlp.mode) {
46 case RRLP_MODE_MS_BASED:
47 req = ms_based_pos_req;
48 break;
49 case RRLP_MODE_MS_PREF:
50 req = ms_pref_pos_req;
51 break;
52 case RRLP_MODE_ASS_PREF:
53 req = ass_pref_pos_req;
54 break;
55 case RRLP_MODE_NONE:
56 default:
57 return 0;
58 }
59
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080060 return gsm48_send_rr_app_info(conn, 0x00,
Harald Welteeab84a12009-12-13 10:53:12 +010061 sizeof(ms_based_pos_req), req);
62}
63
Harald Welte (local)b8afe812009-08-16 13:18:51 +020064static int subscr_sig_cb(unsigned int subsys, unsigned int signal,
65 void *handler_data, void *signal_data)
66{
Harald Welte2483f1b2016-06-19 18:06:02 +020067 struct vlr_subscr *vsub;
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +080068 struct gsm_subscriber_connection *conn;
Harald Welte (local)b8afe812009-08-16 13:18:51 +020069
70 switch (signal) {
71 case S_SUBSCR_ATTACHED:
72 /* A subscriber has attached. */
Harald Welte2483f1b2016-06-19 18:06:02 +020073 vsub = signal_data;
74 conn = connection_for_subscr(vsub);
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +080075 if (!conn)
Harald Welte (local)b8afe812009-08-16 13:18:51 +020076 break;
Holger Hans Peter Freyther9ce1b272010-06-16 13:52:55 +080077 send_rrlp_req(conn);
Harald Welte (local)b8afe812009-08-16 13:18:51 +020078 break;
79 }
80 return 0;
81}
82
83static int paging_sig_cb(unsigned int subsys, unsigned int signal,
84 void *handler_data, void *signal_data)
85{
86 struct paging_signal_data *psig_data = signal_data;
87
88 switch (signal) {
Sylvain Munautef24dff2009-12-19 12:38:10 +010089 case S_PAGING_SUCCEEDED:
Harald Welte (local)b8afe812009-08-16 13:18:51 +020090 /* A subscriber has attached. */
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +080091 send_rrlp_req(psig_data->conn);
Harald Welte (local)b8afe812009-08-16 13:18:51 +020092 break;
Sylvain Munautef24dff2009-12-19 12:38:10 +010093 case S_PAGING_EXPIRED:
94 break;
Harald Welte (local)b8afe812009-08-16 13:18:51 +020095 }
96 return 0;
97}
98
99void on_dso_load_rrlp(void)
100{
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200101 osmo_signal_register_handler(SS_SUBSCR, subscr_sig_cb, NULL);
102 osmo_signal_register_handler(SS_PAGING, paging_sig_cb, NULL);
Harald Welte (local)b8afe812009-08-16 13:18:51 +0200103}