aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libmsc/msc_vty.c
blob: b9519ceeb84d5ed3f3679b10b5d778a11153b327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/* MSC interface to quagga VTY */
/* (C) 2016 by sysmocom s.m.f.c. GmbH <info@sysmocom.de>
 * Based on OpenBSC interface to quagga VTY (libmsc/vty_interface_layer3.c)
 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
 * (C) 2009-2011 by Holger Hans Peter Freyther
 * All Rights Reserved
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

/* NOTE: I would have liked to call this the MSC_NODE instead of the MSC_NODE,
 * but MSC_NODE already exists to configure a remote MSC for osmo-bsc. */

#include <inttypes.h>

#include <osmocom/vty/command.h>

#include <openbsc/vty.h>
#include <openbsc/gsm_data.h>
#include <openbsc/gsm_subscriber.h>
#include <openbsc/vlr.h>
#include <openbsc/iu.h>
#include <openbsc/a_iface.h>
#include <osmocom/sccp/sccp_types.h>

static struct cmd_node msc_node = {
	MSC_NODE,
	"%s(config-msc)# ",
	1,
};

DEFUN(cfg_msc, cfg_msc_cmd,
      "msc", "Configure MSC options")
{
	vty->node = MSC_NODE;
	return CMD_SUCCESS;
}

/* Note: limit on the parameter length is set by internal vty code limitations */
DEFUN(cfg_msc_subscr_random, cfg_msc_subscr_random_cmd,
      "subscriber-create-on-demand random <1-9999999999> <2-9999999999>",
      "Set random parameters for a new record when a subscriber is first seen.\n"
      "Set random parameters for a new record when a subscriber is first seen.\n"
      "Minimum for subscriber extension\n""Maximum for subscriber extension\n")
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);
	uint64_t mi = atoi(argv[0]), ma = atoi(argv[1]);
	gsmnet->auto_create_subscr = true;
	gsmnet->auto_assign_exten = true;
	if (mi >= ma) {
		vty_out(vty, "Incorrect range: %s >= %s, expected MIN < MAX%s",
			argv[0], argv[1], VTY_NEWLINE);
		return CMD_WARNING;
	}
	gsmnet->ext_min = mi;
	gsmnet->ext_max = ma;
        return CMD_SUCCESS;
}

DEFUN(cfg_msc_subscr_create, cfg_msc_subscr_create_cmd,
      "subscriber-create-on-demand [no-extension]",
      "Make a new record when a subscriber is first seen.\n"
      "Do not automatically assign extension to created subscribers\n")
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);
	gsmnet->auto_create_subscr = true;
	gsmnet->auto_assign_exten = argc ? false : true;
	return CMD_SUCCESS;
}

DEFUN(cfg_msc_no_subscr_create, cfg_msc_no_subscr_create_cmd,
      "no subscriber-create-on-demand",
      NO_STR "Make a new record when a subscriber is first seen.\n")
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);
	gsmnet->auto_create_subscr = false;
	return CMD_SUCCESS;
}

DEFUN(cfg_msc_assign_tmsi, cfg_msc_assign_tmsi_cmd,
      "assign-tmsi",
      "Assign TMSI during Location Updating.\n")
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);
	gsmnet->vlr->cfg.assign_tmsi = true;
	return CMD_SUCCESS;
}

DEFUN(cfg_msc_no_assign_tmsi, cfg_msc_no_assign_tmsi_cmd,
      "no assign-tmsi",
      NO_STR "Assign TMSI during Location Updating.\n")
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);
	gsmnet->vlr->cfg.assign_tmsi = false;
	return CMD_SUCCESS;
}

DEFUN(cfg_msc_register_bsc, cfg_msc_register_bsc_cmd,
      "bsc cs7-instance <0-15> calling-addr NAME called-addr NAME",
      "Register a new BSC connection to this MSC.\n"
      "Associated SS7 instance\n"
      "SS7 instance reference number\n"
      "Calling Address (local address of this MSC)\n"
      "SCCP address name\n"
      "Called Address (remote address of the BSC)\n" "SCCP address name\n")
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);
	struct osmo_sccp_addr *calling_addr;
	struct osmo_sccp_addr *called_addr;
	struct osmo_ss7_instance *inst;

	uint32_t inst_id = atoi(argv[0]);
	const char *calling_addr_name = argv[1];
	const char *called_addr_name = argv[2];

	inst = osmo_ss7_instance_find(inst_id);
	if (!inst) {
		vty_out(vty, "No SS7 instance %d found%s", inst_id,
			VTY_NEWLINE);
		return CMD_WARNING;
	}

	calling_addr = osmo_sccp_addr_by_name(calling_addr_name, inst);
	if (!calling_addr) {
		vty_out(vty, "No sccp address %s found%s", calling_addr_name,
			VTY_NEWLINE);
		return CMD_WARNING;
	}

	called_addr = osmo_sccp_addr_by_name(called_addr_name, inst);
	if (!called_addr) {
		vty_out(vty, "No sccp address %s found%s", called_addr_name,
			VTY_NEWLINE);
		return CMD_WARNING;
	}

	a_init(gsmnet, calling_addr, called_addr, inst);
	return CMD_SUCCESS;
}

DEFUN(cfg_msc_no_register_bsc, cfg_msc_no_register_bsc_cmd,
      "no bsc cs7-instance <0-15> calling-addr NAME called-addr NAME",
      NO_STR
      "Remove a BSC connection to this MSC.\n"
      "Associated SS7 instance\n"
      "SS7 instance reference number\n"
      "Calling Address (local address of this MSC)\n"
      "SCCP address name\n"
      "Called Address (remote address of the BSC)\n" "SCCP address name\n")
{
	struct osmo_sccp_addr *calling_addr;
	struct osmo_sccp_addr *called_addr;
	struct osmo_ss7_instance *inst;

	uint32_t inst_id = atoi(argv[0]);
	const char *calling_addr_name = argv[1];
	const char *called_addr_name = argv[2];

	inst = osmo_ss7_instance_find(inst_id);
	if (!inst) {
		vty_out(vty, "No SS7 instance %d found%s", inst_id,
			VTY_NEWLINE);
		return CMD_WARNING;
	}

	calling_addr = osmo_sccp_addr_by_name(calling_addr_name, inst);
	if (!calling_addr) {
		vty_out(vty, "No sccp address %s found%s", calling_addr_name,
			VTY_NEWLINE);
		return CMD_WARNING;
	}

	called_addr = osmo_sccp_addr_by_name(called_addr_name, inst);
	if (!called_addr) {
		vty_out(vty, "No sccp address %s found%s", called_addr_name,
			VTY_NEWLINE);
		return CMD_WARNING;
	}

	a_drop(calling_addr, called_addr);
	return CMD_SUCCESS;
}

static int config_write_msc(struct vty *vty)
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);
	struct bsc_context *bsc_ctx;

	vty_out(vty, "msc%s", VTY_NEWLINE);
	if (!gsmnet->auto_create_subscr)
		vty_out(vty, " no subscriber-create-on-demand%s", VTY_NEWLINE);
	else
		vty_out(vty, " subscriber-create-on-demand%s%s",
			gsmnet->auto_assign_exten ? "" : " no-extension",
			VTY_NEWLINE);

	if (gsmnet->ext_min != GSM_MIN_EXTEN || gsmnet->ext_max != GSM_MAX_EXTEN)
		vty_out(vty, " subscriber-create-on-demand random %"PRIu64" %"
			PRIu64"%s", gsmnet->ext_min, gsmnet->ext_max,
			VTY_NEWLINE);
	vty_out(vty, " %sassign-tmsi%s",
		gsmnet->vlr->cfg.assign_tmsi? "" : "no ", VTY_NEWLINE);

	mgcpgw_client_config_write(vty, " ");
	iu_vty_config_write(vty, " ");

	/* write sccp connection configuration */
	llist_for_each_entry(bsc_ctx, &gsmnet->a.bscs, list) {
		OSMO_ASSERT(bsc_ctx->ss7);
		vty_out(vty,
			" bsc cs7-instance %u calling-addr %s called-addr %s%s",
			bsc_ctx->ss7->cfg.id,
			osmo_sccp_name_by_addr(&bsc_ctx->calling_addr,
					       bsc_ctx->ss7),
			osmo_sccp_name_by_addr(&bsc_ctx->called_addr,
					       bsc_ctx->ss7), VTY_NEWLINE);
	}

	return CMD_SUCCESS;
}

static int config_write_net(struct vty *vty)
{
	struct gsm_network *gsmnet = gsmnet_from_vty(vty);

	vty_out(vty, "network%s", VTY_NEWLINE);
	vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
	vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
	vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
	vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
	vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
	vty_out(vty, " location updating reject cause %u%s",
		gsmnet->reject_cause, VTY_NEWLINE);
	vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
	vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
		VTY_NEWLINE);
	vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
	if (gsmnet->tz.override != 0) {
		if (gsmnet->tz.dst)
			vty_out(vty, " timezone %d %d %d%s",
				gsmnet->tz.hr, gsmnet->tz.mn, gsmnet->tz.dst,
				VTY_NEWLINE);
		else
			vty_out(vty, " timezone %d %d%s",
				gsmnet->tz.hr, gsmnet->tz.mn, VTY_NEWLINE);
	}
	if (gsmnet->t3212 == 0)
		vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
	else
		vty_out(vty, " periodic location update %u%s",
			gsmnet->t3212 * 6, VTY_NEWLINE);

	return CMD_SUCCESS;
}

void msc_vty_init(struct gsm_network *msc_network)
{
	common_cs_vty_init(msc_network, config_write_net);

	install_element(CONFIG_NODE, &cfg_msc_cmd);
	install_node(&msc_node, config_write_msc);
	vty_install_default(MSC_NODE);
	install_element(MSC_NODE, &cfg_msc_subscr_create_cmd);
	install_element(MSC_NODE, &cfg_msc_subscr_random_cmd);
	install_element(MSC_NODE, &cfg_msc_no_subscr_create_cmd);
	install_element(MSC_NODE, &cfg_msc_assign_tmsi_cmd);
	install_element(MSC_NODE, &cfg_msc_no_assign_tmsi_cmd);
	install_element(MSC_NODE, &cfg_msc_register_bsc_cmd);
	install_element(MSC_NODE, &cfg_msc_no_register_bsc_cmd);

	mgcpgw_client_vty_init(MSC_NODE, &msc_network->mgcpgw.conf);
	iu_vty_init(MSC_NODE, &msc_network->iu.rab_assign_addr_enc);
}