blob: 05f5b1e461da5e4a594ee985347169ca457102d3 [file] [log] [blame]
Harald Welte799e0c92010-04-30 21:49:24 +02001/*
2 * (C) 2010 by Harald Welte <laforge@gnumonks.org>
3 * (C) 2010 by On-Waves
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01007 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
Harald Welte799e0c92010-04-30 21:49:24 +02009 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010014 * GNU Affero General Public License for more details.
Harald Welte799e0c92010-04-30 21:49:24 +020015 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte799e0c92010-04-30 21:49:24 +020018 *
19 */
20
21#include <sys/types.h>
22#include <sys/socket.h>
23#include <netinet/in.h>
24#include <arpa/inet.h>
25
26#include <osmocore/talloc.h>
27
28#include <openbsc/debug.h>
Harald Welteb77c6972010-05-01 11:28:43 +020029#include <openbsc/gb_proxy.h>
30#include <openbsc/gprs_ns.h>
Harald Welte62ab20c2010-05-14 18:59:17 +020031#include <openbsc/vty.h>
Harald Welte799e0c92010-04-30 21:49:24 +020032
Harald Welte4b037e42010-05-19 19:45:32 +020033#include <osmocom/vty/command.h>
34#include <osmocom/vty/vty.h>
Harald Welte799e0c92010-04-30 21:49:24 +020035
Harald Welte799e0c92010-04-30 21:49:24 +020036static struct gbproxy_config *g_cfg = NULL;
37
38/*
39 * vty code for mgcp below
40 */
Harald Welteb77c6972010-05-01 11:28:43 +020041static struct cmd_node gbproxy_node = {
Harald Welte799e0c92010-04-30 21:49:24 +020042 GBPROXY_NODE,
43 "%s(gbproxy)#",
44 1,
45};
46
47static int config_write_gbproxy(struct vty *vty)
48{
Harald Welte799e0c92010-04-30 21:49:24 +020049 vty_out(vty, "gbproxy%s", VTY_NEWLINE);
50
Harald Welteff3bde82010-05-19 15:09:09 +020051 vty_out(vty, " sgsn nsei %u%s", g_cfg->nsip_sgsn_nsei,
Harald Welte799e0c92010-04-30 21:49:24 +020052 VTY_NEWLINE);
Harald Welte799e0c92010-04-30 21:49:24 +020053
54 return CMD_SUCCESS;
55}
56
Harald Welte799e0c92010-04-30 21:49:24 +020057DEFUN(cfg_gbproxy,
58 cfg_gbproxy_cmd,
59 "gbproxy",
60 "Configure the Gb proxy")
61{
62 vty->node = GBPROXY_NODE;
63 return CMD_SUCCESS;
64}
65
Harald Welte799e0c92010-04-30 21:49:24 +020066DEFUN(cfg_nsip_sgsn_nsei,
67 cfg_nsip_sgsn_nsei_cmd,
Harald Welteff3bde82010-05-19 15:09:09 +020068 "sgsn nsei <0-65534>",
Harald Welte799e0c92010-04-30 21:49:24 +020069 "Set the NSEI to be used in the connection with the SGSN")
70{
71 unsigned int port = atoi(argv[0]);
72
73 g_cfg->nsip_sgsn_nsei = port;
74 return CMD_SUCCESS;
75}
76
Harald Welte799e0c92010-04-30 21:49:24 +020077int gbproxy_vty_init(void)
78{
Harald Welte995a2d32010-05-12 16:50:52 +000079 install_element_ve(&show_gbproxy_cmd);
Harald Welte799e0c92010-04-30 21:49:24 +020080
81 install_element(CONFIG_NODE, &cfg_gbproxy_cmd);
82 install_node(&gbproxy_node, config_write_gbproxy);
83 install_default(GBPROXY_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +020084 install_element(GBPROXY_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +020085 install_element(GBPROXY_NODE, &ournode_end_cmd);
Harald Welte799e0c92010-04-30 21:49:24 +020086 install_element(GBPROXY_NODE, &cfg_nsip_sgsn_nsei_cmd);
Harald Welte799e0c92010-04-30 21:49:24 +020087
88 return 0;
89}
90
91int gbproxy_parse_config(const char *config_file, struct gbproxy_config *cfg)
92{
93 int rc;
94
95 g_cfg = cfg;
Harald Weltedcccb182010-05-16 20:52:23 +020096 rc = vty_read_config_file(config_file, NULL);
Harald Welte799e0c92010-04-30 21:49:24 +020097 if (rc < 0) {
98 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
99 return rc;
100 }
101
102 return 0;
103}
104