blob: 7e445aa19bc7b4c4e6b8f755bd8c5eb2d4c67bdf [file] [log] [blame]
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +01001/*
2 * (C) 2014 by Holger Hans Peter Freyther
3 * (C) 2014 by sysmocom s.f.m.c. GmbH
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * 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
10 * (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
15 * GNU Affero General Public License for more details.
16 *
17 * 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/>.
19 *
20 */
Max0fcd2e22016-06-07 15:32:16 +020021
Harald Welteba874b82014-08-20 23:47:15 +020022#include <osmocom/ctrl/control_cmd.h>
Neels Hofmeyr93bafb62017-01-13 03:12:08 +010023#include <osmocom/core/utils.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020024#include <osmocom/msc/gsm_data.h>
25#include <osmocom/msc/gsm_subscriber.h>
26#include <osmocom/msc/db.h>
27#include <osmocom/msc/debug.h>
28#include <osmocom/msc/vlr.h>
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010029
Maxe6052c42016-06-30 10:25:49 +020030#include <stdbool.h>
31
Harald Welte2483f1b2016-06-19 18:06:02 +020032static struct gsm_network *msc_ctrl_net = NULL;
Holger Hans Peter Freyther9bcb1a52016-04-06 22:41:12 +020033
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010034static int verify_subscriber_modify(struct ctrl_cmd *cmd, const char *value, void *d)
35{
Harald Welte2483f1b2016-06-19 18:06:02 +020036 return 0;
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010037}
38
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010039static int set_subscriber_modify(struct ctrl_cmd *cmd, void *data)
40{
Harald Welte2483f1b2016-06-19 18:06:02 +020041 cmd->reply = "Command moved to osmo-hlr, no longer available here";
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010042 return CTRL_CMD_ERROR;
43}
44
Maxf6e51702017-01-11 18:37:55 +010045CTRL_CMD_DEFINE_WO(subscriber_modify, "subscriber-modify-v1");
Holger Hans Peter Freyther2d99eeb2014-03-23 14:01:08 +010046
47static int set_subscriber_delete(struct ctrl_cmd *cmd, void *data)
48{
Harald Welte2483f1b2016-06-19 18:06:02 +020049 cmd->reply = "Command moved to osmo-hlr, no longer available here";
50 return CTRL_CMD_ERROR;
Holger Hans Peter Freyther2d99eeb2014-03-23 14:01:08 +010051}
Maxf6e51702017-01-11 18:37:55 +010052CTRL_CMD_DEFINE_WO_NOVRF(subscriber_delete, "subscriber-delete-v1");
Holger Hans Peter Freyther2d99eeb2014-03-23 14:01:08 +010053
Holger Hans Peter Freytherd883db02014-03-23 16:22:55 +010054static int get_subscriber_list(struct ctrl_cmd *cmd, void *d)
55{
Harald Welte2483f1b2016-06-19 18:06:02 +020056 struct vlr_subscr *vsub;
57
58 if (!msc_ctrl_net) {
59 cmd->reply = "MSC CTRL commands not initialized";
60 return CTRL_CMD_ERROR;
61 }
62
63 if (!msc_ctrl_net->vlr) {
64 cmd->reply = "VLR not initialized";
65 return CTRL_CMD_ERROR;
66 }
67
Holger Hans Peter Freytherd883db02014-03-23 16:22:55 +010068 cmd->reply = talloc_strdup(cmd, "");
69
Harald Welte2483f1b2016-06-19 18:06:02 +020070 llist_for_each_entry(vsub, &msc_ctrl_net->vlr->subscribers, list) {
71 cmd->reply = talloc_asprintf_append(cmd->reply, "%s,%s\n",
72 vsub->imsi, vsub->msisdn);
73 }
74 printf("%s\n", cmd->reply); /* <-- what? */
Holger Hans Peter Freytherd883db02014-03-23 16:22:55 +010075 return CTRL_CMD_REPLY;
76}
Max50eb6692017-05-02 16:44:43 +020077CTRL_CMD_DEFINE_RO(subscriber_list, "subscriber-list-active-v1");
Holger Hans Peter Freytherd883db02014-03-23 16:22:55 +010078
Harald Welte2483f1b2016-06-19 18:06:02 +020079int msc_ctrl_cmds_install(struct gsm_network *net)
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010080{
81 int rc = 0;
Harald Welte2483f1b2016-06-19 18:06:02 +020082 msc_ctrl_net = net;
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010083
84 rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_subscriber_modify);
Holger Hans Peter Freyther2d99eeb2014-03-23 14:01:08 +010085 rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_subscriber_delete);
Holger Hans Peter Freytherd883db02014-03-23 16:22:55 +010086 rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_subscriber_list);
Holger Hans Peter Freyther9dbc3f82014-03-23 12:06:36 +010087 return rc;
88}