blob: 03c06fde9a8a20c61a14f1a83cb9e4f0bf69c9b8 [file] [log] [blame]
Harald Welteeac38c32017-05-29 18:02:53 +02001/* GSM MS Testing Layer 3 messages
2 * 3GPP TS 44.014 / GSM TS 04.14 */
3
4/* (C) 2017 by Harald Welte <laforge@gnumonks.org>
5 *
6 * All Rights Reserved
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 <stdlib.h>
24#include <string.h>
25#include <sys/types.h>
26
Neels Hofmeyr90843962017-09-04 15:04:35 +020027#include <osmocom/msc/debug.h>
28#include <osmocom/msc/gsm_data.h>
29#include <osmocom/msc/gsm_subscriber.h>
30#include <osmocom/msc/gsm_04_08.h>
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010031#include <osmocom/msc/msc_a.h>
Harald Welteeac38c32017-05-29 18:02:53 +020032
33#include <osmocom/gsm/gsm48.h>
34#include <osmocom/gsm/gsm_utils.h>
35#include <osmocom/gsm/protocol/gsm_04_14.h>
36#include <osmocom/gsm/tlv.h>
37#include <osmocom/core/msgb.h>
38#include <osmocom/core/talloc.h>
39#include <osmocom/core/utils.h>
40
41static struct msgb *create_gsm0414_msg(uint8_t msg_type)
42{
43 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.14");
44 struct gsm48_hdr *gh;
45
Vadim Yanitskiy72e0f092020-07-29 05:28:42 +070046 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welteeac38c32017-05-29 18:02:53 +020047 gh->proto_discr = GSM48_PDISC_TEST;
48 gh->msg_type = msg_type;
49 return msg;
50}
51
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010052static int gsm0414_conn_sendmsg(struct msc_a *msc_a, struct msgb *msg)
Harald Welteeac38c32017-05-29 18:02:53 +020053{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010054 return msc_a_tx_dtap_to_i(msc_a, msg);
Harald Welteeac38c32017-05-29 18:02:53 +020055}
56
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010057static int gsm0414_tx_simple(struct msc_a *msc_a, uint8_t msg_type)
Harald Welteeac38c32017-05-29 18:02:53 +020058{
59 struct msgb *msg = create_gsm0414_msg(msg_type);
60
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010061 return gsm0414_conn_sendmsg(msc_a, msg);
Harald Welteeac38c32017-05-29 18:02:53 +020062}
63
64
65/* Send a CLOSE_TCH_LOOOP_CMD according to Section 8.1 */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010066int gsm0414_tx_close_tch_loop_cmd(struct msc_a *msc_a,
Harald Welteeac38c32017-05-29 18:02:53 +020067 enum gsm414_tch_loop_mode loop_mode)
68{
69 struct msgb *msg = create_gsm0414_msg(GSM414_MT_CLOSE_TCH_LOOP_CMD);
70 uint8_t subch;
71
72 subch = (loop_mode << 1);
73 msgb_put_u8(msg, subch);
74
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010075 return gsm0414_conn_sendmsg(msc_a, msg);
Harald Welteeac38c32017-05-29 18:02:53 +020076}
77
78/* Send a OPEN_LOOP_CMD according to Section 8.3 */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010079int gsm0414_tx_open_loop_cmd(struct msc_a *msc_a)
Harald Welteeac38c32017-05-29 18:02:53 +020080{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010081 return gsm0414_tx_simple(msc_a, GSM414_MT_OPEN_LOOP_CMD);
Harald Welteeac38c32017-05-29 18:02:53 +020082}
83
84/* Send a ACT_EMMI_CMD according to Section 8.8 */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010085int gsm0414_tx_act_emmi_cmd(struct msc_a *msc_a)
Harald Welteeac38c32017-05-29 18:02:53 +020086{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010087 return gsm0414_tx_simple(msc_a, GSM414_MT_ACT_EMMI_CMD);
Harald Welteeac38c32017-05-29 18:02:53 +020088}
89
90/* Send a DEACT_EMMI_CMD according to Section 8.10 */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010091int gsm0414_tx_deact_emmi_cmd(struct msc_a *msc_a)
Harald Welteeac38c32017-05-29 18:02:53 +020092{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010093 return gsm0414_tx_simple(msc_a, GSM414_MT_DEACT_EMMI_CMD);
Harald Welteeac38c32017-05-29 18:02:53 +020094}
95
96/* Send a TEST_INTERFACE according to Section 8.11 */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010097int gsm0414_tx_test_interface(struct msc_a *msc_a,
Harald Welteeac38c32017-05-29 18:02:53 +020098 uint8_t tested_devs)
99{
100 struct msgb *msg = create_gsm0414_msg(GSM414_MT_TEST_INTERFACE);
101 msgb_put_u8(msg, tested_devs);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100102 return gsm0414_conn_sendmsg(msc_a, msg);
Harald Welteeac38c32017-05-29 18:02:53 +0200103}
104
105/* Send a RESET_MS_POSITION_STORED according to Section 8.11 */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100106int gsm0414_tx_reset_ms_pos_store(struct msc_a *msc_a,
Harald Welteeac38c32017-05-29 18:02:53 +0200107 uint8_t technology)
108{
109 struct msgb *msg = create_gsm0414_msg(GSM414_MT_RESET_MS_POS_STORED);
110 msgb_put_u8(msg, technology);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100111 return gsm0414_conn_sendmsg(msc_a, msg);
Harald Welteeac38c32017-05-29 18:02:53 +0200112}
113
114
115
116/* Entry point for incoming GSM48_PDISC_TEST received from MS */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100117int gsm0414_rcv_test(struct msc_a *msc_a,
Harald Welteeac38c32017-05-29 18:02:53 +0200118 struct msgb *msg)
119{
120 struct gsm48_hdr *gh = msgb_l3(msg);
121
122 if (msgb_l3len(msg) < sizeof(*gh))
123 return -1;
124
125 LOGP(DMM, LOGL_NOTICE, "%s: Received TEST class message '%s'\n", "FIXME",
126 get_value_string(gsm414_msgt_names, gh->msg_type));
127
128 return 0;
129}