blob: 82d49ca3c5e96ba2ad26967be6bba38e14480521 [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
Harald Welte799e0c92010-04-30 21:49:24 +020021#include <sys/socket.h>
22#include <netinet/in.h>
23#include <arpa/inet.h>
24
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010025#include <osmocom/core/talloc.h>
Harald Welte799e0c92010-04-30 21:49:24 +020026
Harald Welteea34a4e2012-06-16 14:59:56 +080027#include <osmocom/gprs/gprs_ns.h>
28
Harald Welte799e0c92010-04-30 21:49:24 +020029#include <openbsc/debug.h>
Harald Welteb77c6972010-05-01 11:28:43 +020030#include <openbsc/gb_proxy.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,
Harald Welte570ce242012-08-17 13:16:10 +020043 "%s(config-gbproxy)# ",
Harald Welte799e0c92010-04-30 21:49:24 +020044 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>",
Holger Hans Peter Freyther2eb6e2c2011-11-05 15:14:59 +010069 "SGSN information\n"
70 "NSEI to be used in the connection with the SGSN\n"
71 "The NSEI\n")
Harald Welte799e0c92010-04-30 21:49:24 +020072{
73 unsigned int port = atoi(argv[0]);
74
75 g_cfg->nsip_sgsn_nsei = port;
76 return CMD_SUCCESS;
77}
78
Harald Welte799e0c92010-04-30 21:49:24 +020079int gbproxy_vty_init(void)
80{
Harald Welte995a2d32010-05-12 16:50:52 +000081 install_element_ve(&show_gbproxy_cmd);
Harald Welte799e0c92010-04-30 21:49:24 +020082
Jacob Erlbeck4211d792013-10-24 12:48:23 +020083 install_element(ENABLE_NODE, &delete_gb_bvci_cmd);
84 install_element(ENABLE_NODE, &delete_gb_nsei_cmd);
Holger Hans Peter Freyther90267a92013-10-23 11:24:17 +020085
Harald Welte799e0c92010-04-30 21:49:24 +020086 install_element(CONFIG_NODE, &cfg_gbproxy_cmd);
87 install_node(&gbproxy_node, config_write_gbproxy);
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +020088 bsc_install_default(GBPROXY_NODE);
Harald Welte799e0c92010-04-30 21:49:24 +020089 install_element(GBPROXY_NODE, &cfg_nsip_sgsn_nsei_cmd);
Harald Welte799e0c92010-04-30 21:49:24 +020090
91 return 0;
92}
93
94int gbproxy_parse_config(const char *config_file, struct gbproxy_config *cfg)
95{
96 int rc;
97
98 g_cfg = cfg;
Harald Weltedcccb182010-05-16 20:52:23 +020099 rc = vty_read_config_file(config_file, NULL);
Harald Welte799e0c92010-04-30 21:49:24 +0200100 if (rc < 0) {
101 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
102 return rc;
103 }
104
105 return 0;
106}
107