blob: 07d4293db6712bb1e248943779a5dfb7e4515032 [file] [log] [blame]
Harald Welte288be162010-05-01 16:48:27 +02001/*
Harald Welte89837d42016-05-06 23:28:11 +02002 * (C) 2010-2016 by Harald Welte <laforge@gnumonks.org>
Harald Welte288be162010-05-01 16:48:27 +02003 * (C) 2010 by On-Waves
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02004 * (C) 2015 by Holger Hans Peter Freyther
Harald Welte288be162010-05-01 16:48:27 +02005 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * 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
Harald Welte288be162010-05-01 16:48:27 +020010 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Harald Welte288be162010-05-01 16:48:27 +020016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * 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/>.
Harald Welte288be162010-05-01 16:48:27 +020019 *
20 */
21
Harald Welte288be162010-05-01 16:48:27 +020022#include <sys/socket.h>
23#include <netinet/in.h>
24#include <arpa/inet.h>
Jacob Erlbeck207f4a52014-11-11 14:01:48 +010025#include <time.h>
Harald Welte288be162010-05-01 16:48:27 +020026
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010027#include <osmocom/core/talloc.h>
28#include <osmocom/core/utils.h>
29#include <osmocom/core/rate_ctr.h>
Harald Welte53373bc2016-04-20 17:11:43 +020030#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Harald Welte7e82b742017-08-12 13:43:54 +020031#include <osmocom/gsm/apn.h>
Harald Welte288be162010-05-01 16:48:27 +020032
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020033#include <osmocom/sgsn/debug.h>
34#include <osmocom/sgsn/sgsn.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080035#include <osmocom/gprs/gprs_ns.h>
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020036#include <osmocom/sgsn/gprs_sgsn.h>
37#include <osmocom/sgsn/vty.h>
38#include <osmocom/sgsn/gsup_client.h>
Harald Welte288be162010-05-01 16:48:27 +020039
Harald Welte4b037e42010-05-19 19:45:32 +020040#include <osmocom/vty/command.h>
41#include <osmocom/vty/vty.h>
Pablo Neira Ayuso6110a3f2011-03-28 19:35:00 +020042#include <osmocom/vty/misc.h>
Max93408ae2016-06-28 14:10:16 +020043#include <osmocom/crypt/gprs_cipher.h>
Jacob Erlbeck80547992014-12-19 19:19:46 +010044#include <osmocom/abis/ipa.h>
45
Harald Welted193cb32010-05-17 22:58:03 +020046#include <pdp.h>
Maxbaabc682017-10-20 13:39:57 +020047#include <gtp.h>
Harald Welted193cb32010-05-17 22:58:03 +020048
Neels Hofmeyr2188a772016-05-20 21:59:55 +020049#include "../../bscconfig.h"
50
51#ifdef BUILD_IU
Neels Hofmeyra7a39472017-07-05 15:19:52 +020052#include <osmocom/ranap/iu_client.h>
Neels Hofmeyr2188a772016-05-20 21:59:55 +020053#endif
54
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020055extern void *tall_bsc_ctx;
56
Harald Welte288be162010-05-01 16:48:27 +020057static struct sgsn_config *g_cfg = NULL;
58
Jacob Erlbeck106f5472014-11-04 10:08:37 +010059const struct value_string sgsn_auth_pol_strs[] = {
60 { SGSN_AUTH_POLICY_OPEN, "accept-all" },
61 { SGSN_AUTH_POLICY_CLOSED, "closed" },
62 { SGSN_AUTH_POLICY_ACL_ONLY, "acl-only" },
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +010063 { SGSN_AUTH_POLICY_REMOTE, "remote" },
Jacob Erlbeck106f5472014-11-04 10:08:37 +010064 { 0, NULL }
65};
66
Harald Welte94508822015-08-15 19:08:21 +020067/* Section 11.2.2 / Table 11.3a GPRS Mobility management timers – MS side */
68#define GSM0408_T3312_SECS (10*60) /* periodic RAU interval, default 54min */
69
70/* Section 11.2.2 / Table 11.4 MM timers netwokr side */
71#define GSM0408_T3322_SECS 6 /* DETACH_REQ -> DETACH_ACC */
72#define GSM0408_T3350_SECS 6 /* waiting for ATT/RAU/TMSI COMPL */
73#define GSM0408_T3360_SECS 6 /* waiting for AUTH/CIPH RESP */
74#define GSM0408_T3370_SECS 6 /* waiting for ID RESP */
75
Alexander Couzens5ba6fb32017-01-31 18:04:27 +010076/* Section 11.2.2 / Table 11.4a MM timers network side */
Harald Welte94508822015-08-15 19:08:21 +020077#define GSM0408_T3313_SECS 30 /* waiting for paging response */
78#define GSM0408_T3314_SECS 44 /* force to STBY on expiry, Ready timer */
79#define GSM0408_T3316_SECS 44
80
81/* Section 11.3 / Table 11.2d Timers of Session Management - network side */
82#define GSM0408_T3385_SECS 8 /* wait for ACT PDP CTX REQ */
83#define GSM0408_T3386_SECS 8 /* wait for MODIFY PDP CTX ACK */
84#define GSM0408_T3395_SECS 8 /* wait for DEACT PDP CTX ACK */
85#define GSM0408_T3397_SECS 8 /* wait for DEACT AA PDP CTX ACK */
86
87#define DECLARE_TIMER(number, doc) \
88 DEFUN(cfg_sgsn_T##number, \
89 cfg_sgsn_T##number##_cmd, \
90 "timer t" #number " <0-65535>", \
91 "Configure GPRS Timers\n" \
Holger Hans Peter Freytherfe60cfb2015-11-02 12:55:07 +010092 doc "\nTimer Value in seconds\n") \
Harald Welte94508822015-08-15 19:08:21 +020093{ \
94 int value = atoi(argv[0]); \
95 \
96 if (value < 0 || value > 65535) { \
97 vty_out(vty, "Timer value %s out of range.%s", \
98 argv[0], VTY_NEWLINE); \
99 return CMD_WARNING; \
100 } \
101 \
102 g_cfg->timers.T##number = value; \
103 return CMD_SUCCESS; \
104}
105
106DECLARE_TIMER(3312, "Periodic RA Update timer (s)")
Neels Hofmeyr65482c92015-10-19 14:37:12 +0200107DECLARE_TIMER(3322, "Detach request -> accept timer (s)")
Harald Welte94508822015-08-15 19:08:21 +0200108DECLARE_TIMER(3350, "Waiting for ATT/RAU/TMSI_COMPL timer (s)")
109DECLARE_TIMER(3360, "Waiting for AUTH/CIPH response timer (s)")
110DECLARE_TIMER(3370, "Waiting for IDENTITY response timer (s)")
111
112DECLARE_TIMER(3313, "Waiting for paging response timer (s)")
113DECLARE_TIMER(3314, "Force to STANDBY on expiry timer (s)")
Holger Hans Peter Freytherfe60cfb2015-11-02 12:55:07 +0100114DECLARE_TIMER(3316, "AA-Ready timer (s)")
Harald Welte94508822015-08-15 19:08:21 +0200115
116DECLARE_TIMER(3385, "Wait for ACT PDP CTX REQ timer (s)")
117DECLARE_TIMER(3386, "Wait for MODIFY PDP CTX ACK timer (s)")
118DECLARE_TIMER(3395, "Wait for DEACT PDP CTX ACK timer (s)")
119DECLARE_TIMER(3397, "Wait for DEACT AA PDP CTX ACK timer (s)")
120
Holger Hans Peter Freythera2730302014-03-23 18:08:26 +0100121char *gprs_pdpaddr2str(uint8_t *pdpa, uint8_t len)
Harald Weltec5d4a0c2010-07-02 22:47:59 +0200122{
123 static char str[INET6_ADDRSTRLEN + 10];
124
125 if (!pdpa || len < 2)
126 return "none";
127
128 switch (pdpa[0] & 0x0f) {
129 case PDP_TYPE_ORG_IETF:
130 switch (pdpa[1]) {
131 case PDP_TYPE_N_IETF_IPv4:
132 if (len < 2 + 4)
133 break;
134 strcpy(str, "IPv4 ");
135 inet_ntop(AF_INET, pdpa+2, str+5, sizeof(str)-5);
136 return str;
137 case PDP_TYPE_N_IETF_IPv6:
138 if (len < 2 + 8)
139 break;
140 strcpy(str, "IPv6 ");
141 inet_ntop(AF_INET6, pdpa+2, str+5, sizeof(str)-5);
142 return str;
143 default:
144 break;
145 }
146 break;
147 case PDP_TYPE_ORG_ETSI:
148 if (pdpa[1] == PDP_TYPE_N_ETSI_PPP)
149 return "PPP";
150 break;
151 default:
152 break;
153 }
154
155 return "invalid";
156}
157
Harald Welte288be162010-05-01 16:48:27 +0200158static struct cmd_node sgsn_node = {
159 SGSN_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200160 "%s(config-sgsn)# ",
Harald Welte288be162010-05-01 16:48:27 +0200161 1,
162};
163
164static int config_write_sgsn(struct vty *vty)
165{
Harald Welte77289c22010-05-18 14:32:29 +0200166 struct sgsn_ggsn_ctx *gctx;
Harald Welte7f6da482013-03-19 11:00:13 +0100167 struct imsi_acl_entry *acl;
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100168 struct apn_ctx *actx;
Holger Hans Peter Freythera5a6da42015-05-25 15:20:27 +0800169 struct ares_addr_node *server;
Harald Welte288be162010-05-01 16:48:27 +0200170
171 vty_out(vty, "sgsn%s", VTY_NEWLINE);
172
Harald Weltee300d002010-06-02 12:41:34 +0200173 vty_out(vty, " gtp local-ip %s%s",
174 inet_ntoa(g_cfg->gtp_listenaddr.sin_addr), VTY_NEWLINE);
175
Harald Welted193cb32010-05-17 22:58:03 +0200176 llist_for_each_entry(gctx, &sgsn_ggsn_ctxts, list) {
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800177 if (gctx->id == UINT32_MAX)
178 continue;
179
Harald Welteff3bde82010-05-19 15:09:09 +0200180 vty_out(vty, " ggsn %u remote-ip %s%s", gctx->id,
Harald Welted193cb32010-05-17 22:58:03 +0200181 inet_ntoa(gctx->remote_addr), VTY_NEWLINE);
Harald Welteff3bde82010-05-19 15:09:09 +0200182 vty_out(vty, " ggsn %u gtp-version %u%s", gctx->id,
Harald Welted193cb32010-05-17 22:58:03 +0200183 gctx->gtp_version, VTY_NEWLINE);
Harald Welte288be162010-05-01 16:48:27 +0200184 }
185
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800186 if (sgsn->cfg.dynamic_lookup)
187 vty_out(vty, " ggsn dynamic%s", VTY_NEWLINE);
188
Holger Hans Peter Freythera5a6da42015-05-25 15:20:27 +0800189 for (server = sgsn->ares_servers; server; server = server->next)
190 vty_out(vty, " grx-dns-add %s%s", inet_ntoa(server->addr.addr4), VTY_NEWLINE);
191
Max93408ae2016-06-28 14:10:16 +0200192 if (g_cfg->cipher != GPRS_ALGO_GEA0)
193 vty_out(vty, " encryption %s%s",
194 get_value_string(gprs_cipher_names, g_cfg->cipher),
195 VTY_NEWLINE);
Jacob Erlbeck39f040d2014-12-18 12:46:47 +0100196 if (g_cfg->gsup_server_addr.sin_addr.s_addr)
197 vty_out(vty, " gsup remote-ip %s%s",
198 inet_ntoa(g_cfg->gsup_server_addr.sin_addr), VTY_NEWLINE);
199 if (g_cfg->gsup_server_port)
200 vty_out(vty, " gsup remote-port %d%s",
201 g_cfg->gsup_server_port, VTY_NEWLINE);
Max176b62a2016-07-04 11:09:07 +0200202 vty_out(vty, " auth-policy %s%s",
203 get_value_string(sgsn_auth_pol_strs, g_cfg->auth_policy),
204 VTY_NEWLINE);
Neels Hofmeyr568a7272015-10-12 11:57:38 +0200205
206 vty_out(vty, " gsup oap-id %d%s",
207 (int)g_cfg->oap.client_id, VTY_NEWLINE);
208 if (g_cfg->oap.secret_k_present != 0)
209 vty_out(vty, " gsup oap-k %s%s",
210 osmo_hexdump_nospc(g_cfg->oap.secret_k, sizeof(g_cfg->oap.secret_k)),
211 VTY_NEWLINE);
212 if (g_cfg->oap.secret_opc_present != 0)
213 vty_out(vty, " gsup oap-opc %s%s",
214 osmo_hexdump_nospc(g_cfg->oap.secret_opc, sizeof(g_cfg->oap.secret_opc)),
215 VTY_NEWLINE);
216
Harald Welte7f6da482013-03-19 11:00:13 +0100217 llist_for_each_entry(acl, &g_cfg->imsi_acl, list)
218 vty_out(vty, " imsi-acl add %s%s", acl->imsi, VTY_NEWLINE);
219
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100220 if (llist_empty(&sgsn_apn_ctxts))
221 vty_out(vty, " ! apn * ggsn 0%s", VTY_NEWLINE);
222 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
223 if (strlen(actx->imsi_prefix) > 0)
Holger Hans Peter Freytherb7ae0b32015-05-29 15:11:55 +0200224 vty_out(vty, " apn %s imsi-prefix %s ggsn %u%s",
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100225 actx->name, actx->imsi_prefix, actx->ggsn->id,
226 VTY_NEWLINE);
227 else
Holger Hans Peter Freytherb7ae0b32015-05-29 15:11:55 +0200228 vty_out(vty, " apn %s ggsn %u%s", actx->name,
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100229 actx->ggsn->id, VTY_NEWLINE);
230 }
231
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +0200232 if (g_cfg->cdr.filename)
233 vty_out(vty, " cdr filename %s%s", g_cfg->cdr.filename, VTY_NEWLINE);
234 else
235 vty_out(vty, " no cdr filename%s", VTY_NEWLINE);
Pau Espin Pedrol2e9ea502017-11-29 14:01:35 +0100236 if (g_cfg->cdr.trap)
237 vty_out(vty, " cdr trap%s", VTY_NEWLINE);
238 else
239 vty_out(vty, " no cdr trap%s", VTY_NEWLINE);
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +0200240 vty_out(vty, " cdr interval %d%s", g_cfg->cdr.interval, VTY_NEWLINE);
241
Harald Welte94508822015-08-15 19:08:21 +0200242 vty_out(vty, " timer t3312 %d%s", g_cfg->timers.T3312, VTY_NEWLINE);
243 vty_out(vty, " timer t3322 %d%s", g_cfg->timers.T3322, VTY_NEWLINE);
244 vty_out(vty, " timer t3350 %d%s", g_cfg->timers.T3350, VTY_NEWLINE);
245 vty_out(vty, " timer t3360 %d%s", g_cfg->timers.T3360, VTY_NEWLINE);
246 vty_out(vty, " timer t3370 %d%s", g_cfg->timers.T3370, VTY_NEWLINE);
247 vty_out(vty, " timer t3313 %d%s", g_cfg->timers.T3313, VTY_NEWLINE);
248 vty_out(vty, " timer t3314 %d%s", g_cfg->timers.T3314, VTY_NEWLINE);
249 vty_out(vty, " timer t3316 %d%s", g_cfg->timers.T3316, VTY_NEWLINE);
250 vty_out(vty, " timer t3385 %d%s", g_cfg->timers.T3385, VTY_NEWLINE);
251 vty_out(vty, " timer t3386 %d%s", g_cfg->timers.T3386, VTY_NEWLINE);
252 vty_out(vty, " timer t3395 %d%s", g_cfg->timers.T3395, VTY_NEWLINE);
253 vty_out(vty, " timer t3397 %d%s", g_cfg->timers.T3397, VTY_NEWLINE);
254
Philippf1f34362016-08-26 17:00:21 +0200255 if (g_cfg->pcomp_rfc1144.active) {
256 vty_out(vty, " compression rfc1144 active slots %d%s",
257 g_cfg->pcomp_rfc1144.s01 + 1, VTY_NEWLINE);
258 } else if (g_cfg->pcomp_rfc1144.passive) {
259 vty_out(vty, " compression rfc1144 passive%s", VTY_NEWLINE);
260 } else
261 vty_out(vty, " no compression rfc1144%s", VTY_NEWLINE);
262
Philipp73f83d52016-09-02 13:38:01 +0200263 if (g_cfg->dcomp_v42bis.active && g_cfg->dcomp_v42bis.p0 == 1) {
264 vty_out(vty,
265 " compression v42bis active direction sgsn codewords %d strlen %d%s",
266 g_cfg->dcomp_v42bis.p1, g_cfg->dcomp_v42bis.p2,
267 VTY_NEWLINE);
268 } else if (g_cfg->dcomp_v42bis.active && g_cfg->dcomp_v42bis.p0 == 2) {
269 vty_out(vty,
270 " compression v42bis active direction ms codewords %d strlen %d%s",
271 g_cfg->dcomp_v42bis.p1, g_cfg->dcomp_v42bis.p2,
272 VTY_NEWLINE);
273 } else if (g_cfg->dcomp_v42bis.active && g_cfg->dcomp_v42bis.p0 == 3) {
274 vty_out(vty,
275 " compression v42bis active direction both codewords %d strlen %d%s",
276 g_cfg->dcomp_v42bis.p1, g_cfg->dcomp_v42bis.p2,
277 VTY_NEWLINE);
278 } else if (g_cfg->dcomp_v42bis.passive) {
279 vty_out(vty, " compression v42bis passive%s", VTY_NEWLINE);
280 } else
281 vty_out(vty, " no compression v42bis%s", VTY_NEWLINE);
282
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200283#ifdef BUILD_IU
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200284 ranap_iu_vty_config_write(vty, " ");
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200285#endif
286
Harald Welte288be162010-05-01 16:48:27 +0200287 return CMD_SUCCESS;
288}
289
Holger Hans Peter Freyther1491f2e2011-11-05 15:21:16 +0100290#define SGSN_STR "Configure the SGSN\n"
291#define GGSN_STR "Configure the GGSN information\n"
Harald Weltee300d002010-06-02 12:41:34 +0200292
293DEFUN(cfg_sgsn, cfg_sgsn_cmd,
294 "sgsn",
295 SGSN_STR)
Harald Welte288be162010-05-01 16:48:27 +0200296{
297 vty->node = SGSN_NODE;
298 return CMD_SUCCESS;
299}
300
Harald Weltee300d002010-06-02 12:41:34 +0200301DEFUN(cfg_sgsn_bind_addr, cfg_sgsn_bind_addr_cmd,
302 "gtp local-ip A.B.C.D",
303 "GTP Parameters\n"
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100304 "Set the IP address for the local GTP bind for the Gp interface (towards the GGSNs)."
305 " Note: in case you would like to run the GGSN on the same machine as the SGSN, you can not run"
306 " both on the same IP address, since both sides are specified to use the same GTP port numbers"
307 " (" OSMO_STRINGIFY_VAL(GTP1C_PORT) " and " OSMO_STRINGIFY_VAL(GTP1U_PORT) ")."
308 " For example, you could use 127.0.0.1 for the SGSN and 127.0.0.2 for the GGSN in such"
309 " situations.\n"
Holger Hans Peter Freyther1491f2e2011-11-05 15:21:16 +0100310 "IPv4 Address\n")
Harald Weltee300d002010-06-02 12:41:34 +0200311{
312 inet_aton(argv[0], &g_cfg->gtp_listenaddr.sin_addr);
313
314 return CMD_SUCCESS;
315}
316
Harald Welted193cb32010-05-17 22:58:03 +0200317DEFUN(cfg_ggsn_remote_ip, cfg_ggsn_remote_ip_cmd,
318 "ggsn <0-255> remote-ip A.B.C.D",
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100319 GGSN_STR "GGSN Number\n"
320 "Configure this static GGSN to use the specified remote IP address.\n"
321 "IPv4 Address\n")
Harald Welted193cb32010-05-17 22:58:03 +0200322{
323 uint32_t id = atoi(argv[0]);
Harald Welte77289c22010-05-18 14:32:29 +0200324 struct sgsn_ggsn_ctx *ggc = sgsn_ggsn_ctx_find_alloc(id);
Harald Welte288be162010-05-01 16:48:27 +0200325
Harald Welted193cb32010-05-17 22:58:03 +0200326 inet_aton(argv[1], &ggc->remote_addr);
Harald Welte288be162010-05-01 16:48:27 +0200327
Harald Welted193cb32010-05-17 22:58:03 +0200328 return CMD_SUCCESS;
329}
330
331#if 0
332DEFUN(cfg_ggsn_remote_port, cfg_ggsn_remote_port_cmd,
333 "ggsn <0-255> remote-port <0-65535>",
334 "")
335{
336 uint32_t id = atoi(argv[0]);
Harald Welte77289c22010-05-18 14:32:29 +0200337 struct sgsn_ggsn_ctx *ggc = sgsn_ggsn_ctx_find_alloc(id);
Harald Welted193cb32010-05-17 22:58:03 +0200338 uint16_t port = atoi(argv[1]);
339
340}
341#endif
342
343DEFUN(cfg_ggsn_gtp_version, cfg_ggsn_gtp_version_cmd,
344 "ggsn <0-255> gtp-version (0|1)",
Holger Hans Peter Freyther1491f2e2011-11-05 15:21:16 +0100345 GGSN_STR "GGSN Number\n" "GTP Version\n"
346 "Version 0\n" "Version 1\n")
Harald Welted193cb32010-05-17 22:58:03 +0200347{
348 uint32_t id = atoi(argv[0]);
Harald Welte77289c22010-05-18 14:32:29 +0200349 struct sgsn_ggsn_ctx *ggc = sgsn_ggsn_ctx_find_alloc(id);
Harald Welted193cb32010-05-17 22:58:03 +0200350
351 if (atoi(argv[1]))
352 ggc->gtp_version = 1;
353 else
354 ggc->gtp_version = 0;
355
356 return CMD_SUCCESS;
357}
358
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800359DEFUN(cfg_ggsn_dynamic_lookup, cfg_ggsn_dynamic_lookup_cmd,
360 "ggsn dynamic",
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100361 GGSN_STR
362 "Enable dynamic resolving of GGSNs based on DNS resolving the APN name like in a GRX-style setup."
363 " Changing this setting requires a restart.\n")
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800364{
365 sgsn->cfg.dynamic_lookup = 1;
366 return CMD_SUCCESS;
367}
368
Holger Hans Peter Freythera5a6da42015-05-25 15:20:27 +0800369DEFUN(cfg_grx_ggsn, cfg_grx_ggsn_cmd,
370 "grx-dns-add A.B.C.D",
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100371 "Use the specified IP address for DNS-resolving the AP names to GGSN IP addresses\n"
372 "IPv4 address\n")
Holger Hans Peter Freythera5a6da42015-05-25 15:20:27 +0800373{
374 struct ares_addr_node *node = talloc_zero(tall_bsc_ctx, struct ares_addr_node);
375 node->family = AF_INET;
376 inet_aton(argv[0], &node->addr.addr4);
377
378 node->next = sgsn->ares_servers;
379 sgsn->ares_servers = node;
380 return CMD_SUCCESS;
381}
382
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100383#define APN_STR "Configure the information per APN\n"
384#define APN_GW_STR "The APN gateway name optionally prefixed by '*' (wildcard)\n"
385
386static int add_apn_ggsn_mapping(struct vty *vty, const char *apn_str,
387 const char *imsi_prefix, int ggsn_id)
388{
389 struct apn_ctx *actx;
390 struct sgsn_ggsn_ctx *ggsn;
391
392 ggsn = sgsn_ggsn_ctx_by_id(ggsn_id);
393 if (ggsn == NULL) {
394 vty_out(vty, "%% a GGSN with id %d has not been defined%s",
395 ggsn_id, VTY_NEWLINE);
396 return CMD_WARNING;
397 }
398
399 actx = sgsn_apn_ctx_find_alloc(apn_str, imsi_prefix);
400 if (!actx) {
401 vty_out(vty, "%% unable to create APN context for %s/%s%s",
402 apn_str, imsi_prefix, VTY_NEWLINE);
403 return CMD_WARNING;
404 }
405
406 actx->ggsn = ggsn;
407
408 return CMD_SUCCESS;
409}
410
Harald Welted193cb32010-05-17 22:58:03 +0200411DEFUN(cfg_apn_ggsn, cfg_apn_ggsn_cmd,
412 "apn APNAME ggsn <0-255>",
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100413 APN_STR APN_GW_STR
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100414 "Select the GGSN to use for the given APN gateway prefix\n"
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100415 "The GGSN id")
Harald Welted193cb32010-05-17 22:58:03 +0200416{
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100417
418 return add_apn_ggsn_mapping(vty, argv[0], "", atoi(argv[1]));
Harald Welted193cb32010-05-17 22:58:03 +0200419}
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100420
421DEFUN(cfg_apn_imsi_ggsn, cfg_apn_imsi_ggsn_cmd,
422 "apn APNAME imsi-prefix IMSIPRE ggsn <0-255>",
423 APN_STR APN_GW_STR
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100424 "Select the GGSN to use for the given APN gateway prefix if and only if the IMSI matches the"
425 " given prefix.\n"
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100426 "An IMSI prefix\n"
427 "Select the GGSN to use when APN gateway and IMSI prefix match\n"
428 "The GGSN id")
429{
430
431 return add_apn_ggsn_mapping(vty, argv[0], argv[1], atoi(argv[2]));
432}
Harald Welted193cb32010-05-17 22:58:03 +0200433
434const struct value_string gprs_mm_st_strs[] = {
435 { GMM_DEREGISTERED, "DEREGISTERED" },
436 { GMM_COMMON_PROC_INIT, "COMMON PROCEDURE (INIT)" },
437 { GMM_REGISTERED_NORMAL, "REGISTERED (NORMAL)" },
Harald Weltebffeff82010-06-09 15:50:45 +0200438 { GMM_REGISTERED_SUSPENDED, "REGISTERED (SUSPENDED)" },
Harald Welted193cb32010-05-17 22:58:03 +0200439 { GMM_DEREGISTERED_INIT, "DEREGISTERED (INIT)" },
440 { 0, NULL }
441};
442
Maxc005db72017-10-27 18:43:29 +0200443char *sgsn_gtp_ntoa(struct ul16_t *ul)
Harald Welte471ac7d2016-12-15 19:48:58 +0100444{
Max8492c202017-12-05 17:28:15 +0100445 struct in_addr ia;
446
447 if (gsna2in_addr(&ia, ul) != 0)
Harald Welte471ac7d2016-12-15 19:48:58 +0100448 return "UNKNOWN";
Max8492c202017-12-05 17:28:15 +0100449
450 return inet_ntoa(ia);
Harald Welte471ac7d2016-12-15 19:48:58 +0100451}
452
Harald Welted193cb32010-05-17 22:58:03 +0200453static void vty_dump_pdp(struct vty *vty, const char *pfx,
454 struct sgsn_pdp_ctx *pdp)
455{
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200456 const char *imsi = pdp->mm ? pdp->mm->imsi : "(detaching)";
Harald Welte471ac7d2016-12-15 19:48:58 +0100457 vty_out(vty, "%sPDP Context IMSI: %s, SAPI: %u, NSAPI: %u, TI: %u%s",
458 pfx, imsi, pdp->sapi, pdp->nsapi, pdp->ti, VTY_NEWLINE);
Harald Weltedfbd2c82017-08-13 00:56:45 +0200459 if (pdp->lib) {
Max7933d962017-10-19 16:52:30 +0200460 char apnbuf[APN_MAXLEN + 1];
Harald Weltedfbd2c82017-08-13 00:56:45 +0200461 vty_out(vty, "%s APN: %s%s", pfx,
Max7933d962017-10-19 16:52:30 +0200462 osmo_apn_to_str(apnbuf, pdp->lib->apn_use.v, pdp->lib->apn_use.l),
Harald Weltedfbd2c82017-08-13 00:56:45 +0200463 VTY_NEWLINE);
464 vty_out(vty, "%s PDP Address: %s%s", pfx,
465 gprs_pdpaddr2str(pdp->lib->eua.v, pdp->lib->eua.l),
466 VTY_NEWLINE);
Maxb24af2b2017-12-05 17:54:42 +0100467 vty_out(vty, "%s GTPv%d Local Control(%s / TEIC: 0x%08x) ", pfx, pdp->lib->version,
Maxc005db72017-10-27 18:43:29 +0200468 sgsn_gtp_ntoa(&pdp->lib->gsnlc), pdp->lib->teic_own);
Harald Weltedfbd2c82017-08-13 00:56:45 +0200469 vty_out(vty, "Data(%s / TEID: 0x%08x)%s",
Maxc005db72017-10-27 18:43:29 +0200470 sgsn_gtp_ntoa(&pdp->lib->gsnlu), pdp->lib->teid_own, VTY_NEWLINE);
Maxb24af2b2017-12-05 17:54:42 +0100471 vty_out(vty, "%s GTPv%d Remote Control(%s / TEIC: 0x%08x) ", pfx, pdp->lib->version,
Maxc005db72017-10-27 18:43:29 +0200472 sgsn_gtp_ntoa(&pdp->lib->gsnrc), pdp->lib->teic_gn);
Harald Weltedfbd2c82017-08-13 00:56:45 +0200473 vty_out(vty, "Data(%s / TEID: 0x%08x)%s",
Maxc005db72017-10-27 18:43:29 +0200474 sgsn_gtp_ntoa(&pdp->lib->gsnru), pdp->lib->teid_gn, VTY_NEWLINE);
Harald Weltedfbd2c82017-08-13 00:56:45 +0200475 }
Harald Welte471ac7d2016-12-15 19:48:58 +0100476
Harald Welteefbdee92010-06-10 00:20:12 +0200477 vty_out_rate_ctr_group(vty, " ", pdp->ctrg);
Harald Welted193cb32010-05-17 22:58:03 +0200478}
479
480static void vty_dump_mmctx(struct vty *vty, const char *pfx,
481 struct sgsn_mm_ctx *mm, int pdp)
482{
483 vty_out(vty, "%sMM Context for IMSI %s, IMEI %s, P-TMSI %08x%s",
484 pfx, mm->imsi, mm->imei, mm->p_tmsi, VTY_NEWLINE);
Holger Hans Peter Freyther8ee13e22015-05-18 10:00:03 +0200485 vty_out(vty, "%s MSISDN: %s, TLLI: %08x%s HLR: %s",
Harald Weltef97ee042015-12-25 19:12:21 +0100486 pfx, mm->msisdn, mm->gb.tlli, mm->hlr, VTY_NEWLINE);
Neels Hofmeyr10719b72018-02-21 00:39:36 +0100487 vty_out(vty, "%s MM State: %s, Routeing Area: %s, Cell ID: %u%s",
488 pfx, get_value_string(gprs_mm_st_strs, mm->gmm_state),
489 osmo_rai_name(&mm->ra), mm->gb.cell_id, VTY_NEWLINE);
Harald Welted193cb32010-05-17 22:58:03 +0200490
Harald Welte8acd88f2010-05-18 10:57:45 +0200491 vty_out_rate_ctr_group(vty, " ", mm->ctrg);
492
Harald Welted193cb32010-05-17 22:58:03 +0200493 if (pdp) {
494 struct sgsn_pdp_ctx *pdp;
495
496 llist_for_each_entry(pdp, &mm->pdp_list, list)
497 vty_dump_pdp(vty, " ", pdp);
498 }
499}
500
501DEFUN(show_sgsn, show_sgsn_cmd, "show sgsn",
502 SHOW_STR "Display information about the SGSN")
503{
Jacob Erlbeck80547992014-12-19 19:19:46 +0100504 if (sgsn->gsup_client) {
505 struct ipa_client_conn *link = sgsn->gsup_client->link;
506 vty_out(vty,
507 " Remote authorization: %sconnected to %s:%d via GSUP%s",
508 sgsn->gsup_client->is_connected ? "" : "not ",
509 link->addr, link->port,
510 VTY_NEWLINE);
511 }
Maxbaabc682017-10-20 13:39:57 +0200512 if (sgsn->gsn)
513 vty_out(vty, " GSN: signalling %s, user traffic %s%s",
514 inet_ntoa(sgsn->gsn->gsnc), inet_ntoa(sgsn->gsn->gsnu), VTY_NEWLINE);
515
Harald Welted193cb32010-05-17 22:58:03 +0200516 /* FIXME: statistics */
517 return CMD_SUCCESS;
518}
519
520#define MMCTX_STR "MM Context\n"
521#define INCLUDE_PDP_STR "Include PDP Context Information\n"
522
523#if 0
524DEFUN(show_mmctx_tlli, show_mmctx_tlli_cmd,
525 "show mm-context tlli HEX [pdp]",
526 SHOW_STR MMCTX_STR "Identify by TLLI\n" "TLLI\n" INCLUDE_PDP_STR)
527{
528 uint32_t tlli;
529 struct sgsn_mm_ctx *mm;
530
531 tlli = strtoul(argv[0], NULL, 16);
532 mm = sgsn_mm_ctx_by_tlli(tlli);
533 if (!mm) {
534 vty_out(vty, "No MM context for TLLI %08x%s",
535 tlli, VTY_NEWLINE);
536 return CMD_WARNING;
537 }
538 vty_dump_mmctx(vty, "", mm, argv[1] ? 1 : 0);
539 return CMD_SUCCESS;
540}
541#endif
542
543DEFUN(swow_mmctx_imsi, show_mmctx_imsi_cmd,
544 "show mm-context imsi IMSI [pdp]",
545 SHOW_STR MMCTX_STR "Identify by IMSI\n" "IMSI of the MM Context\n"
546 INCLUDE_PDP_STR)
547{
548 struct sgsn_mm_ctx *mm;
549
550 mm = sgsn_mm_ctx_by_imsi(argv[0]);
551 if (!mm) {
552 vty_out(vty, "No MM context for IMSI %s%s",
553 argv[0], VTY_NEWLINE);
554 return CMD_WARNING;
555 }
556 vty_dump_mmctx(vty, "", mm, argv[1] ? 1 : 0);
557 return CMD_SUCCESS;
558}
559
560DEFUN(swow_mmctx_all, show_mmctx_all_cmd,
561 "show mm-context all [pdp]",
562 SHOW_STR MMCTX_STR "All MM Contexts\n" INCLUDE_PDP_STR)
563{
564 struct sgsn_mm_ctx *mm;
565
566 llist_for_each_entry(mm, &sgsn_mm_ctxts, list)
567 vty_dump_mmctx(vty, "", mm, argv[0] ? 1 : 0);
568
569 return CMD_SUCCESS;
570}
571
Harald Welted193cb32010-05-17 22:58:03 +0200572DEFUN(show_pdpctx_all, show_pdpctx_all_cmd,
573 "show pdp-context all",
Holger Hans Peter Freyther1491f2e2011-11-05 15:21:16 +0100574 SHOW_STR "Display information on PDP Context\n" "Show everything\n")
Harald Welted193cb32010-05-17 22:58:03 +0200575{
576 struct sgsn_pdp_ctx *pdp;
577
578 llist_for_each_entry(pdp, &sgsn_pdp_ctxts, g_list)
579 vty_dump_pdp(vty, "", pdp);
580
581 return CMD_SUCCESS;
582}
Harald Welte288be162010-05-01 16:48:27 +0200583
Harald Welte7f6da482013-03-19 11:00:13 +0100584
585DEFUN(imsi_acl, cfg_imsi_acl_cmd,
586 "imsi-acl (add|del) IMSI",
587 "Access Control List of foreign IMSIs\n"
588 "Add IMSI to ACL\n"
589 "Remove IMSI from ACL\n"
590 "IMSI of subscriber\n")
591{
Philipp Maier6ee49d82017-02-28 16:53:07 +0100592 char imsi_sanitized[GSM23003_IMSI_MAX_DIGITS+1];
Harald Welte7f6da482013-03-19 11:00:13 +0100593 const char *op = argv[0];
Philipp Maier6ee49d82017-02-28 16:53:07 +0100594 const char *imsi = imsi_sanitized;
Harald Welte7f6da482013-03-19 11:00:13 +0100595 int rc;
596
Philipp Maier6ee49d82017-02-28 16:53:07 +0100597 /* Sanitize IMSI */
598 if (strlen(argv[1]) > GSM23003_IMSI_MAX_DIGITS) {
599 vty_out(vty, "%% IMSI (%s) too long -- ignored!%s",
600 argv[1], VTY_NEWLINE);
601 return CMD_WARNING;
602 }
603 memset(imsi_sanitized, '0', sizeof(imsi_sanitized));
604 strcpy(imsi_sanitized+GSM23003_IMSI_MAX_DIGITS-strlen(argv[1]),argv[1]);
605
Harald Welte7f6da482013-03-19 11:00:13 +0100606 if (!strcmp(op, "add"))
Jacob Erlbeck3b5d4072014-10-24 15:11:03 +0200607 rc = sgsn_acl_add(imsi, g_cfg);
Harald Welte7f6da482013-03-19 11:00:13 +0100608 else
Jacob Erlbeck3b5d4072014-10-24 15:11:03 +0200609 rc = sgsn_acl_del(imsi, g_cfg);
Harald Welte7f6da482013-03-19 11:00:13 +0100610
611 if (rc < 0) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100612 vty_out(vty, "%% unable to %s ACL%s", op, VTY_NEWLINE);
Harald Welte7f6da482013-03-19 11:00:13 +0100613 return CMD_WARNING;
614 }
615
616 return CMD_SUCCESS;
617}
618
Max93408ae2016-06-28 14:10:16 +0200619DEFUN(cfg_encrypt, cfg_encrypt_cmd,
620 "encryption (GEA0|GEA1|GEA2|GEA3|GEA4)",
621 "Set encryption algorithm for SGSN\n"
622 "Use GEA0 (no encryption)\n"
623 "Use GEA1\nUse GEA2\nUse GEA3\nUse GEA4\n")
624{
Max93408ae2016-06-28 14:10:16 +0200625 enum gprs_ciph_algo c = get_string_value(gprs_cipher_names, argv[0]);
Max086067f2017-05-02 13:03:28 +0200626 if (c != GPRS_ALGO_GEA0) {
627 if (!gprs_cipher_supported(c)) {
628 vty_out(vty, "%% cipher %s is unsupported in current version%s", argv[0], VTY_NEWLINE);
629 return CMD_WARNING;
630 }
631
632 if (!g_cfg->require_authentication) {
633 vty_out(vty, "%% unable to use encryption %s without authentication: please adjust auth-policy%s",
634 argv[0], VTY_NEWLINE);
635 return CMD_WARNING;
636 }
Max93408ae2016-06-28 14:10:16 +0200637 }
638
639 g_cfg->cipher = c;
640
641 return CMD_SUCCESS;
642}
643
Harald Welte3dfb5492013-03-19 11:48:54 +0100644DEFUN(cfg_auth_policy, cfg_auth_policy_cmd,
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100645 "auth-policy (accept-all|closed|acl-only|remote)",
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100646 "Configure the Authorization policy of the SGSN. This setting determines which subscribers are"
647 " permitted to register to the network.\n"
Jacob Erlbeck106f5472014-11-04 10:08:37 +0100648 "Accept all IMSIs (DANGEROUS)\n"
649 "Accept only home network subscribers or those in the ACL\n"
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100650 "Accept only subscribers in the ACL\n"
651 "Use remote subscription data only (HLR)\n")
Harald Welte3dfb5492013-03-19 11:48:54 +0100652{
Jacob Erlbeck106f5472014-11-04 10:08:37 +0100653 int val = get_string_value(sgsn_auth_pol_strs, argv[0]);
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100654 OSMO_ASSERT(val >= SGSN_AUTH_POLICY_OPEN && val <= SGSN_AUTH_POLICY_REMOTE);
Jacob Erlbeck106f5472014-11-04 10:08:37 +0100655 g_cfg->auth_policy = val;
Jacob Erlbeck9d4f46c2014-12-17 13:20:08 +0100656 g_cfg->require_authentication = (val == SGSN_AUTH_POLICY_REMOTE);
Jacob Erlbeck771573c2014-12-19 18:08:48 +0100657 g_cfg->require_update_location = (val == SGSN_AUTH_POLICY_REMOTE);
Harald Welte3dfb5492013-03-19 11:48:54 +0100658
659 return CMD_SUCCESS;
660}
661
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100662/* Subscriber */
Neels Hofmeyr396f2e62017-09-04 15:13:25 +0200663#include <osmocom/sgsn/gprs_subscriber.h>
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100664
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100665static void subscr_dump_full_vty(struct vty *vty, struct gprs_subscr *gsub, int pending)
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100666{
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100667#if 0
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100668 char expire_time[200];
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100669#endif
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100670 struct gsm_auth_tuple *at;
671 int at_idx;
Jacob Erlbeck0e8add62014-12-17 14:03:35 +0100672 struct sgsn_subscriber_pdp_data *pdp;
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100673
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100674 vty_out(vty, " Authorized: %d%s",
675 gsub->authorized, VTY_NEWLINE);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100676 vty_out(vty, " LAC: %d/0x%x%s",
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100677 gsub->lac, gsub->lac, VTY_NEWLINE);
678 vty_out(vty, " IMSI: %s%s", gsub->imsi, VTY_NEWLINE);
679 if (gsub->tmsi != GSM_RESERVED_TMSI)
680 vty_out(vty, " TMSI: %08X%s", gsub->tmsi,
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100681 VTY_NEWLINE);
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100682 if (gsub->sgsn_data->msisdn_len > 0)
Holger Hans Peter Freytherf7b38262015-04-23 16:58:33 -0400683 vty_out(vty, " MSISDN (BCD): %s%s",
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100684 osmo_hexdump(gsub->sgsn_data->msisdn,
685 gsub->sgsn_data->msisdn_len),
Holger Hans Peter Freytherf7b38262015-04-23 16:58:33 -0400686 VTY_NEWLINE);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100687
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100688 if (strlen(gsub->imei) > 0)
689 vty_out(vty, " IMEI: %s%s", gsub->imei, VTY_NEWLINE);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100690
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100691 for (at_idx = 0; at_idx < ARRAY_SIZE(gsub->sgsn_data->auth_triplets);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100692 at_idx++) {
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100693 at = &gsub->sgsn_data->auth_triplets[at_idx];
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100694 if (at->key_seq == GSM_KEY_SEQ_INVAL)
695 continue;
696
697 vty_out(vty, " A3A8 tuple (used %d times): ",
698 at->use_count);
Harald Welte89837d42016-05-06 23:28:11 +0200699 vty_out(vty, " CKSN: %d, ",
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100700 at->key_seq);
Harald Welte89837d42016-05-06 23:28:11 +0200701 if (at->vec.auth_types & OSMO_AUTH_TYPE_GSM) {
702 vty_out(vty, "RAND: %s, ",
703 osmo_hexdump(at->vec.rand,
704 sizeof(at->vec.rand)));
705 vty_out(vty, "SRES: %s, ",
706 osmo_hexdump(at->vec.sres,
707 sizeof(at->vec.sres)));
708 vty_out(vty, "Kc: %s%s",
709 osmo_hexdump(at->vec.kc,
710 sizeof(at->vec.kc)), VTY_NEWLINE);
711 }
712 if (at->vec.auth_types & OSMO_AUTH_TYPE_UMTS) {
713 vty_out(vty, " AUTN: %s, ",
714 osmo_hexdump(at->vec.autn,
715 sizeof(at->vec.autn)));
716 vty_out(vty, "RES: %s, ",
717 osmo_hexdump(at->vec.res, at->vec.res_len));
718 vty_out(vty, "IK: %s, ",
719 osmo_hexdump(at->vec.ik, sizeof(at->vec.ik)));
720 vty_out(vty, "CK: %s, ",
721 osmo_hexdump(at->vec.ck, sizeof(at->vec.ck)));
722 }
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100723 }
724
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100725 llist_for_each_entry(pdp, &gsub->sgsn_data->pdp_list, list) {
Holger Hans Peter Freytherd05e0692015-04-23 16:59:04 -0400726 vty_out(vty, " PDP info: Id: %d, Type: 0x%04x, APN: '%s' QoS: %s%s",
Jacob Erlbeck0e8add62014-12-17 14:03:35 +0100727 pdp->context_id, pdp->pdp_type, pdp->apn_str,
Holger Hans Peter Freytherd05e0692015-04-23 16:59:04 -0400728 osmo_hexdump(pdp->qos_subscribed, pdp->qos_subscribed_len),
Jacob Erlbeck0e8add62014-12-17 14:03:35 +0100729 VTY_NEWLINE);
730 }
731
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100732#if 0
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100733 /* print the expiration time of a subscriber */
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100734 if (gsub->expire_lu) {
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100735 strftime(expire_time, sizeof(expire_time),
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100736 "%a, %d %b %Y %T %z", localtime(&gsub->expire_lu));
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100737 expire_time[sizeof(expire_time) - 1] = '\0';
738 vty_out(vty, " Expiration Time: %s%s", expire_time, VTY_NEWLINE);
739 }
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100740#endif
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100741
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100742 if (gsub->flags)
Jacob Erlbeck65fa3f72015-01-06 16:32:41 +0100743 vty_out(vty, " Flags: %s%s%s%s%s%s",
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100744 gsub->flags & GPRS_SUBSCRIBER_FIRST_CONTACT ?
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100745 "FIRST_CONTACT " : "",
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100746 gsub->flags & GPRS_SUBSCRIBER_CANCELLED ?
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100747 "CANCELLED " : "",
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100748 gsub->flags & GPRS_SUBSCRIBER_UPDATE_LOCATION_PENDING ?
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100749 "UPDATE_LOCATION_PENDING " : "",
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100750 gsub->flags & GPRS_SUBSCRIBER_UPDATE_AUTH_INFO_PENDING ?
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100751 "AUTH_INFO_PENDING " : "",
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100752 gsub->flags & GPRS_SUBSCRIBER_ENABLE_PURGE ?
Jacob Erlbeck65fa3f72015-01-06 16:32:41 +0100753 "ENABLE_PURGE " : "",
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100754 VTY_NEWLINE);
755
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100756 vty_out(vty, " Use count: %u%s", gsub->use_count, VTY_NEWLINE);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100757}
758
759DEFUN(show_subscr_cache,
760 show_subscr_cache_cmd,
761 "show subscriber cache",
762 SHOW_STR "Show information about subscribers\n"
763 "Display contents of subscriber cache\n")
764{
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100765 struct gprs_subscr *subscr;
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100766
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100767 llist_for_each_entry(subscr, gprs_subscribers, entry) {
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100768 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
769 subscr_dump_full_vty(vty, subscr, 0);
770 }
771
772 return CMD_SUCCESS;
773}
774
775#define UPDATE_SUBSCR_STR "update-subscriber imsi IMSI "
776#define UPDATE_SUBSCR_HELP "Update subscriber list\n" \
777 "Use the IMSI to select the subscriber\n" \
778 "The IMSI\n"
779
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100780#define UPDATE_SUBSCR_INSERT_HELP "Insert data into the subscriber record\n"
781
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100782DEFUN(update_subscr_insert_auth_triplet, update_subscr_insert_auth_triplet_cmd,
783 UPDATE_SUBSCR_STR "insert auth-triplet <1-5> sres SRES rand RAND kc KC",
784 UPDATE_SUBSCR_HELP
785 UPDATE_SUBSCR_INSERT_HELP
786 "Update authentication triplet\n"
787 "Triplet index\n"
788 "Set SRES value\nSRES value (4 byte) in hex\n"
789 "Set RAND value\nRAND value (16 byte) in hex\n"
790 "Set Kc value\nKc value (8 byte) in hex\n")
791{
792 const char *imsi = argv[0];
793 const int cksn = atoi(argv[1]) - 1;
794 const char *sres_str = argv[2];
795 const char *rand_str = argv[3];
796 const char *kc_str = argv[4];
797 struct gsm_auth_tuple at = {0,};
798
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100799 struct gprs_subscr *subscr;
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100800
Jacob Erlbeckd9193432015-01-19 14:11:46 +0100801 subscr = gprs_subscr_get_by_imsi(imsi);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100802 if (!subscr) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100803 vty_out(vty, "%% unable get subscriber record for %s%s",
804 imsi, VTY_NEWLINE);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100805 return CMD_WARNING;
806 }
807
808 OSMO_ASSERT(subscr->sgsn_data);
809
Harald Welte121e9a42016-04-20 13:13:19 +0200810 if (osmo_hexparse(sres_str, &at.vec.sres[0], sizeof(at.vec.sres)) < 0) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100811 vty_out(vty, "%% invalid SRES value '%s'%s",
812 sres_str, VTY_NEWLINE);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100813 goto failed;
814 }
Harald Welte121e9a42016-04-20 13:13:19 +0200815 if (osmo_hexparse(rand_str, &at.vec.rand[0], sizeof(at.vec.rand)) < 0) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100816 vty_out(vty, "%% invalid RAND value '%s'%s",
817 rand_str, VTY_NEWLINE);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100818 goto failed;
819 }
Harald Welte121e9a42016-04-20 13:13:19 +0200820 if (osmo_hexparse(kc_str, &at.vec.kc[0], sizeof(at.vec.kc)) < 0) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100821 vty_out(vty, "%% invalid Kc value '%s'%s",
822 kc_str, VTY_NEWLINE);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100823 goto failed;
824 }
825 at.key_seq = cksn;
826
827 subscr->sgsn_data->auth_triplets[cksn] = at;
828 subscr->sgsn_data->auth_triplets_updated = 1;
829
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100830 gprs_subscr_put(subscr);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100831
832 return CMD_SUCCESS;
833
834failed:
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100835 gprs_subscr_put(subscr);
Jacob Erlbeck7921ab12014-12-08 15:52:00 +0100836 return CMD_SUCCESS;
837}
838
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100839DEFUN(update_subscr_cancel, update_subscr_cancel_cmd,
Jacob Erlbeck8000e0e2015-01-27 14:56:40 +0100840 UPDATE_SUBSCR_STR "cancel (update-procedure|subscription-withdraw)",
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100841 UPDATE_SUBSCR_HELP
Jacob Erlbeck8000e0e2015-01-27 14:56:40 +0100842 "Cancel (remove) subscriber record\n"
843 "The MS moved to another SGSN\n"
844 "The subscription is no longer valid\n")
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100845{
846 const char *imsi = argv[0];
Jacob Erlbeck8000e0e2015-01-27 14:56:40 +0100847 const char *cancel_type = argv[1];
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100848
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100849 struct gprs_subscr *subscr;
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100850
851 subscr = gprs_subscr_get_by_imsi(imsi);
852 if (!subscr) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100853 vty_out(vty, "%% no subscriber record for %s%s",
854 imsi, VTY_NEWLINE);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100855 return CMD_WARNING;
856 }
857
Jacob Erlbeck8000e0e2015-01-27 14:56:40 +0100858 if (strcmp(cancel_type, "update-procedure") == 0)
859 subscr->sgsn_data->error_cause = SGSN_ERROR_CAUSE_NONE;
860 else
861 subscr->sgsn_data->error_cause = GMM_CAUSE_IMPL_DETACHED;
862
Jacob Erlbeck37139e52015-01-23 13:52:55 +0100863 gprs_subscr_cancel(subscr);
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100864 gprs_subscr_put(subscr);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100865
866 return CMD_SUCCESS;
867}
868
Jacob Erlbeckd9193432015-01-19 14:11:46 +0100869DEFUN(update_subscr_create, update_subscr_create_cmd,
870 UPDATE_SUBSCR_STR "create",
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100871 UPDATE_SUBSCR_HELP
Jacob Erlbeckd9193432015-01-19 14:11:46 +0100872 "Create a subscriber entry\n")
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100873{
874 const char *imsi = argv[0];
875
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100876 struct gprs_subscr *subscr;
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100877
878 subscr = gprs_subscr_get_by_imsi(imsi);
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100879 if (subscr) {
880 vty_out(vty, "%% subscriber record already exists for %s%s",
881 imsi, VTY_NEWLINE);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100882 return CMD_WARNING;
883 }
884
Jacob Erlbeckd9193432015-01-19 14:11:46 +0100885 subscr = gprs_subscr_get_or_create(imsi);
886 subscr->keep_in_ram = 1;
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100887 gprs_subscr_put(subscr);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100888
889 return CMD_SUCCESS;
890}
891
Jacob Erlbecke988ae42015-01-27 12:41:19 +0100892DEFUN(update_subscr_destroy, update_subscr_destroy_cmd,
893 UPDATE_SUBSCR_STR "destroy",
894 UPDATE_SUBSCR_HELP
895 "Destroy a subscriber entry\n")
896{
897 const char *imsi = argv[0];
898
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100899 struct gprs_subscr *subscr;
Jacob Erlbecke988ae42015-01-27 12:41:19 +0100900
901 subscr = gprs_subscr_get_by_imsi(imsi);
902 if (!subscr) {
903 vty_out(vty, "%% subscriber record does not exist for %s%s",
904 imsi, VTY_NEWLINE);
905 return CMD_WARNING;
906 }
907
908 subscr->keep_in_ram = 0;
Jacob Erlbeck8000e0e2015-01-27 14:56:40 +0100909 subscr->sgsn_data->error_cause = SGSN_ERROR_CAUSE_NONE;
Jacob Erlbecke988ae42015-01-27 12:41:19 +0100910 gprs_subscr_cancel(subscr);
911 if (subscr->use_count > 1)
912 vty_out(vty, "%% subscriber is still in use%s",
913 VTY_NEWLINE);
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100914 gprs_subscr_put(subscr);
Jacob Erlbecke988ae42015-01-27 12:41:19 +0100915
916 return CMD_SUCCESS;
917}
918
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100919#define UL_ERR_STR "system-failure|data-missing|unexpected-data-value|" \
920 "unknown-subscriber|roaming-not-allowed"
921
922#define UL_ERR_HELP \
923 "Force error code SystemFailure\n" \
924 "Force error code DataMissing\n" \
925 "Force error code UnexpectedDataValue\n" \
926 "Force error code UnknownSubscriber\n" \
927 "Force error code RoamingNotAllowed\n"
928
929DEFUN(update_subscr_update_location_result, update_subscr_update_location_result_cmd,
930 UPDATE_SUBSCR_STR "update-location-result (ok|" UL_ERR_STR ")",
931 UPDATE_SUBSCR_HELP
932 "Complete the update location procedure\n"
933 "The update location request succeeded\n"
934 UL_ERR_HELP)
935{
936 const char *imsi = argv[0];
937 const char *ret_code_str = argv[1];
938
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100939 struct gprs_subscr *subscr;
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100940
Jacob Erlbeckd6267d12015-01-19 11:10:04 +0100941 const struct value_string cause_mapping[] = {
942 { GMM_CAUSE_NET_FAIL, "system-failure" },
943 { GMM_CAUSE_INV_MAND_INFO, "data-missing" },
944 { GMM_CAUSE_PROTO_ERR_UNSPEC, "unexpected-data-value" },
945 { GMM_CAUSE_IMSI_UNKNOWN, "unknown-subscriber" },
946 { GMM_CAUSE_GPRS_NOTALLOWED, "roaming-not-allowed" },
947 { 0, NULL }
948 };
949
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100950 subscr = gprs_subscr_get_by_imsi(imsi);
951 if (!subscr) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100952 vty_out(vty, "%% unable to get subscriber record for %s%s",
953 imsi, VTY_NEWLINE);
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100954 return CMD_WARNING;
955 }
Jacob Erlbeckd6267d12015-01-19 11:10:04 +0100956
957 if (strcmp(ret_code_str, "ok") == 0) {
958 subscr->sgsn_data->error_cause = SGSN_ERROR_CAUSE_NONE;
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100959 subscr->authorized = 1;
Jacob Erlbeckd6267d12015-01-19 11:10:04 +0100960 } else {
961 subscr->sgsn_data->error_cause =
962 get_string_value(cause_mapping, ret_code_str);
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100963 subscr->authorized = 0;
Jacob Erlbeckd6267d12015-01-19 11:10:04 +0100964 }
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100965
966 gprs_subscr_update(subscr);
967
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100968 gprs_subscr_put(subscr);
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100969
970 return CMD_SUCCESS;
971}
972
973DEFUN(update_subscr_update_auth_info, update_subscr_update_auth_info_cmd,
974 UPDATE_SUBSCR_STR "update-auth-info",
975 UPDATE_SUBSCR_HELP
976 "Complete the send authentication info procedure\n")
977{
978 const char *imsi = argv[0];
979
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100980 struct gprs_subscr *subscr;
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100981
982 subscr = gprs_subscr_get_by_imsi(imsi);
983 if (!subscr) {
Jacob Erlbeck15cc8c82015-01-19 14:29:43 +0100984 vty_out(vty, "%% unable to get subscriber record for %s%s",
985 imsi, VTY_NEWLINE);
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100986 return CMD_WARNING;
987 }
988
989 gprs_subscr_update_auth_info(subscr);
990
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100991 gprs_subscr_put(subscr);
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +0100992
993 return CMD_SUCCESS;
994}
995
Jacob Erlbeck39f040d2014-12-18 12:46:47 +0100996DEFUN(cfg_gsup_remote_ip, cfg_gsup_remote_ip_cmd,
997 "gsup remote-ip A.B.C.D",
998 "GSUP Parameters\n"
Neels Hofmeyr24bb7472018-03-06 16:14:26 +0100999 "Set the IP address of the remote GSUP server (e.g. OsmoHLR)."
1000 " This setting only applies if 'auth-policy remote' is used.\n"
Jacob Erlbeck39f040d2014-12-18 12:46:47 +01001001 "IPv4 Address\n")
1002{
1003 inet_aton(argv[0], &g_cfg->gsup_server_addr.sin_addr);
1004
1005 return CMD_SUCCESS;
1006}
1007
1008DEFUN(cfg_gsup_remote_port, cfg_gsup_remote_port_cmd,
1009 "gsup remote-port <0-65535>",
1010 "GSUP Parameters\n"
Neels Hofmeyr24bb7472018-03-06 16:14:26 +01001011 "Set the TCP port of the remote GSUP server, see also 'gsup remote-ip'\n"
Jacob Erlbeck39f040d2014-12-18 12:46:47 +01001012 "Remote TCP port\n")
1013{
1014 g_cfg->gsup_server_port = atoi(argv[0]);
1015
1016 return CMD_SUCCESS;
1017}
1018
Neels Hofmeyr568a7272015-10-12 11:57:38 +02001019DEFUN(cfg_gsup_oap_id, cfg_gsup_oap_id_cmd,
1020 "gsup oap-id <0-65535>",
1021 "GSUP Parameters\n"
Neels Hofmeyr24bb7472018-03-06 16:14:26 +01001022 "Set the OAP client ID for authentication on the GSUP protocol."
1023 " This setting only applies if 'auth-policy remote' is used.\n"
1024 "OAP client ID (0 == disabled)\n")
Neels Hofmeyr568a7272015-10-12 11:57:38 +02001025{
1026 /* VTY ensures range */
1027 g_cfg->oap.client_id = (uint16_t)atoi(argv[0]);
1028 return CMD_SUCCESS;
1029}
1030
1031DEFUN(cfg_gsup_oap_k, cfg_gsup_oap_k_cmd,
1032 "gsup oap-k K",
1033 "GSUP Parameters\n"
Neels Hofmeyr24bb7472018-03-06 16:14:26 +01001034 "Set the OAP shared secret key K for authentication on the GSUP protocol."
1035 " This setting only applies if auth-policy remote is used.\n"
1036 "K value (16 byte) hex\n")
Neels Hofmeyr568a7272015-10-12 11:57:38 +02001037{
1038 const char *k = argv[0];
1039
1040 g_cfg->oap.secret_k_present = 0;
1041
1042 if ((!k) || (strlen(k) == 0))
1043 goto disable;
1044
1045 int k_len = osmo_hexparse(k,
1046 g_cfg->oap.secret_k,
1047 sizeof(g_cfg->oap.secret_k));
1048 if (k_len != 16) {
1049 vty_out(vty, "%% need exactly 16 octets for oap-k, got %d.%s",
1050 k_len, VTY_NEWLINE);
1051 goto disable;
1052 }
1053
1054 g_cfg->oap.secret_k_present = 1;
1055 return CMD_SUCCESS;
1056
1057disable:
1058 if (g_cfg->oap.client_id > 0) {
1059 vty_out(vty, "%% OAP client ID set, but invalid oap-k value disables OAP.%s",
1060 VTY_NEWLINE);
1061 return CMD_WARNING;
1062 }
1063 return CMD_SUCCESS;
1064}
1065
1066DEFUN(cfg_gsup_oap_opc, cfg_gsup_oap_opc_cmd,
1067 "gsup oap-opc OPC",
1068 "GSUP Parameters\n"
Neels Hofmeyr24bb7472018-03-06 16:14:26 +01001069 "Set the OAP shared secret OPC for authentication on the GSUP protocol."
1070 " This setting only applies if auth-policy remote is used.\n"
1071 "OPC value (16 byte) hex\n")
Neels Hofmeyr568a7272015-10-12 11:57:38 +02001072{
1073 const char *opc = argv[0];
1074
1075 g_cfg->oap.secret_opc_present = 0;
1076
1077 if ((!opc) || (strlen(opc) == 0))
1078 goto disable;
1079
1080 int opc_len = osmo_hexparse(opc,
1081 g_cfg->oap.secret_opc,
1082 sizeof(g_cfg->oap.secret_opc));
1083 if (opc_len != 16) {
1084 vty_out(vty, "%% need exactly 16 octets for oap-opc, got %d.%s",
1085 opc_len, VTY_NEWLINE);
1086 goto disable;
1087 }
1088
1089 g_cfg->oap.secret_opc_present = 1;
1090 return CMD_SUCCESS;
1091
1092disable:
1093 if (g_cfg->oap.client_id > 0) {
1094 vty_out(vty, "%% OAP client ID set, but invalid oap-opc value disables OAP.%s",
1095 VTY_NEWLINE);
1096 return CMD_WARNING;
1097 }
1098 return CMD_SUCCESS;
1099}
1100
Holger Hans Peter Freyther9c20a5f2015-02-06 16:23:29 +01001101DEFUN(cfg_apn_name, cfg_apn_name_cmd,
1102 "access-point-name NAME",
Neels Hofmeyr24bb7472018-03-06 16:14:26 +01001103 "Globally allow the given APN name for all subscribers.\n"
Holger Hans Peter Freyther9c20a5f2015-02-06 16:23:29 +01001104 "Add this NAME to the list\n")
1105{
1106 return add_apn_ggsn_mapping(vty, argv[0], "", 0);
1107}
1108
1109DEFUN(cfg_no_apn_name, cfg_no_apn_name_cmd,
1110 "no access-point-name NAME",
1111 NO_STR "Configure a global list of allowed APNs\n"
1112 "Remove entry with NAME\n")
1113{
1114 struct apn_ctx *apn_ctx = sgsn_apn_ctx_by_name(argv[0], "");
1115 if (!apn_ctx)
1116 return CMD_SUCCESS;
1117
1118 sgsn_apn_ctx_free(apn_ctx);
1119 return CMD_SUCCESS;
1120}
1121
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02001122DEFUN(cfg_cdr_filename, cfg_cdr_filename_cmd,
1123 "cdr filename NAME",
Neels Hofmeyr24bb7472018-03-06 16:14:26 +01001124 "CDR\n"
1125 "Set the file name for the call-data-record file, logging the data usage of each subscriber.\n"
1126 "filename\n")
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02001127{
1128 talloc_free(g_cfg->cdr.filename);
1129 g_cfg->cdr.filename = talloc_strdup(tall_vty_ctx, argv[0]);
1130 return CMD_SUCCESS;
1131}
1132
1133DEFUN(cfg_no_cdr_filename, cfg_no_cdr_filename_cmd,
1134 "no cdr filename",
Pau Espin Pedrol2e9ea502017-11-29 14:01:35 +01001135 NO_STR "CDR\nDisable saving CDR to file\n")
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02001136{
1137 talloc_free(g_cfg->cdr.filename);
1138 g_cfg->cdr.filename = NULL;
1139 return CMD_SUCCESS;
1140}
1141
Pau Espin Pedrol2e9ea502017-11-29 14:01:35 +01001142DEFUN(cfg_cdr_trap, cfg_cdr_trap_cmd,
1143 "cdr trap",
1144 "CDR\nEnable sending CDR via TRAP CTRL messages\n")
1145{
1146 g_cfg->cdr.trap = true;
1147 return CMD_SUCCESS;
1148}
1149
1150DEFUN(cfg_no_cdr_trap, cfg_no_cdr_trap_cmd,
1151 "no cdr trap",
1152 NO_STR "CDR\nDisable sending CDR via TRAP CTRL messages\n")
1153{
1154 g_cfg->cdr.trap = false;
1155 return CMD_SUCCESS;
1156}
1157
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02001158DEFUN(cfg_cdr_interval, cfg_cdr_interval_cmd,
1159 "cdr interval <1-2147483647>",
Neels Hofmeyr24bb7472018-03-06 16:14:26 +01001160 "CDR\n"
1161 "Set the interval for the call-data-record file\n"
1162 "interval in seconds\n")
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02001163{
1164 g_cfg->cdr.interval = atoi(argv[0]);
1165 return CMD_SUCCESS;
1166}
1167
Philippf1f34362016-08-26 17:00:21 +02001168#define COMPRESSION_STR "Configure compression\n"
1169DEFUN(cfg_no_comp_rfc1144, cfg_no_comp_rfc1144_cmd,
1170 "no compression rfc1144",
1171 NO_STR COMPRESSION_STR "disable rfc1144 TCP/IP header compression\n")
1172{
1173 g_cfg->pcomp_rfc1144.active = 0;
1174 g_cfg->pcomp_rfc1144.passive = 0;
1175 return CMD_SUCCESS;
1176}
1177
1178DEFUN(cfg_comp_rfc1144, cfg_comp_rfc1144_cmd,
1179 "compression rfc1144 active slots <1-256>",
1180 COMPRESSION_STR
1181 "RFC1144 Header compresion scheme\n"
1182 "Compression is actively proposed\n"
1183 "Number of compression state slots\n"
1184 "Number of compression state slots\n")
1185{
1186 g_cfg->pcomp_rfc1144.active = 1;
1187 g_cfg->pcomp_rfc1144.passive = 1;
1188 g_cfg->pcomp_rfc1144.s01 = atoi(argv[0]) - 1;
1189 return CMD_SUCCESS;
1190}
1191
1192DEFUN(cfg_comp_rfc1144p, cfg_comp_rfc1144p_cmd,
1193 "compression rfc1144 passive",
1194 COMPRESSION_STR
1195 "RFC1144 Header compresion scheme\n"
1196 "Compression is available on request\n")
1197{
1198 g_cfg->pcomp_rfc1144.active = 0;
1199 g_cfg->pcomp_rfc1144.passive = 1;
1200 return CMD_SUCCESS;
1201}
1202
Philipp73f83d52016-09-02 13:38:01 +02001203DEFUN(cfg_no_comp_v42bis, cfg_no_comp_v42bis_cmd,
1204 "no compression v42bis",
1205 NO_STR COMPRESSION_STR "disable V.42bis data compression\n")
1206{
1207 g_cfg->dcomp_v42bis.active = 0;
1208 g_cfg->dcomp_v42bis.passive = 0;
1209 return CMD_SUCCESS;
1210}
1211
1212DEFUN(cfg_comp_v42bis, cfg_comp_v42bis_cmd,
1213 "compression v42bis active direction (ms|sgsn|both) codewords <512-65535> strlen <6-250>",
1214 COMPRESSION_STR
1215 "V.42bis data compresion scheme\n"
1216 "Compression is actively proposed\n"
1217 "Direction in which the compression shall be active (p0)\n"
1218 "Compress ms->sgsn direction only\n"
1219 "Compress sgsn->ms direction only\n"
1220 "Both directions\n"
1221 "Number of codewords (p1)\n"
1222 "Number of codewords\n"
1223 "Maximum string length (p2)\n" "Maximum string length\n")
1224{
1225 g_cfg->dcomp_v42bis.active = 1;
1226 g_cfg->dcomp_v42bis.passive = 1;
1227
1228 switch (argv[0][0]) {
1229 case 'm':
1230 g_cfg->dcomp_v42bis.p0 = 1;
1231 break;
1232 case 's':
1233 g_cfg->dcomp_v42bis.p0 = 2;
1234 break;
1235 case 'b':
1236 g_cfg->dcomp_v42bis.p0 = 3;
1237 break;
1238 }
1239
1240 g_cfg->dcomp_v42bis.p1 = atoi(argv[1]);
1241 g_cfg->dcomp_v42bis.p2 = atoi(argv[2]);
1242 return CMD_SUCCESS;
1243}
1244
1245DEFUN(cfg_comp_v42bisp, cfg_comp_v42bisp_cmd,
1246 "compression v42bis passive",
1247 COMPRESSION_STR
1248 "V.42bis data compresion scheme\n"
1249 "Compression is available on request\n")
1250{
1251 g_cfg->dcomp_v42bis.active = 0;
1252 g_cfg->dcomp_v42bis.passive = 1;
1253 return CMD_SUCCESS;
1254}
1255
Neels Hofmeyrc9a352f2017-07-20 14:41:20 +02001256int sgsn_vty_init(struct sgsn_config *cfg)
Harald Welte288be162010-05-01 16:48:27 +02001257{
Neels Hofmeyrc9a352f2017-07-20 14:41:20 +02001258 g_cfg = cfg;
1259
Harald Welted193cb32010-05-17 22:58:03 +02001260 install_element_ve(&show_sgsn_cmd);
1261 //install_element_ve(&show_mmctx_tlli_cmd);
1262 install_element_ve(&show_mmctx_imsi_cmd);
1263 install_element_ve(&show_mmctx_all_cmd);
1264 install_element_ve(&show_pdpctx_all_cmd);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +01001265 install_element_ve(&show_subscr_cache_cmd);
1266
Jacob Erlbeck7921ab12014-12-08 15:52:00 +01001267 install_element(ENABLE_NODE, &update_subscr_insert_auth_triplet_cmd);
Jacob Erlbeckd9193432015-01-19 14:11:46 +01001268 install_element(ENABLE_NODE, &update_subscr_create_cmd);
Jacob Erlbecke988ae42015-01-27 12:41:19 +01001269 install_element(ENABLE_NODE, &update_subscr_destroy_cmd);
Jacob Erlbeck207f4a52014-11-11 14:01:48 +01001270 install_element(ENABLE_NODE, &update_subscr_cancel_cmd);
Jacob Erlbeck98a95ac2014-11-28 14:55:25 +01001271 install_element(ENABLE_NODE, &update_subscr_update_location_result_cmd);
1272 install_element(ENABLE_NODE, &update_subscr_update_auth_info_cmd);
Harald Welte288be162010-05-01 16:48:27 +02001273
1274 install_element(CONFIG_NODE, &cfg_sgsn_cmd);
1275 install_node(&sgsn_node, config_write_sgsn);
Harald Weltee300d002010-06-02 12:41:34 +02001276 install_element(SGSN_NODE, &cfg_sgsn_bind_addr_cmd);
Harald Welted193cb32010-05-17 22:58:03 +02001277 install_element(SGSN_NODE, &cfg_ggsn_remote_ip_cmd);
1278 //install_element(SGSN_NODE, &cfg_ggsn_remote_port_cmd);
1279 install_element(SGSN_NODE, &cfg_ggsn_gtp_version_cmd);
Harald Welte7f6da482013-03-19 11:00:13 +01001280 install_element(SGSN_NODE, &cfg_imsi_acl_cmd);
Harald Welte3dfb5492013-03-19 11:48:54 +01001281 install_element(SGSN_NODE, &cfg_auth_policy_cmd);
Max93408ae2016-06-28 14:10:16 +02001282 install_element(SGSN_NODE, &cfg_encrypt_cmd);
Jacob Erlbeck39f040d2014-12-18 12:46:47 +01001283 install_element(SGSN_NODE, &cfg_gsup_remote_ip_cmd);
1284 install_element(SGSN_NODE, &cfg_gsup_remote_port_cmd);
Neels Hofmeyr568a7272015-10-12 11:57:38 +02001285 install_element(SGSN_NODE, &cfg_gsup_oap_id_cmd);
1286 install_element(SGSN_NODE, &cfg_gsup_oap_k_cmd);
1287 install_element(SGSN_NODE, &cfg_gsup_oap_opc_cmd);
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +01001288 install_element(SGSN_NODE, &cfg_apn_ggsn_cmd);
1289 install_element(SGSN_NODE, &cfg_apn_imsi_ggsn_cmd);
Holger Hans Peter Freyther9c20a5f2015-02-06 16:23:29 +01001290 install_element(SGSN_NODE, &cfg_apn_name_cmd);
1291 install_element(SGSN_NODE, &cfg_no_apn_name_cmd);
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02001292 install_element(SGSN_NODE, &cfg_cdr_filename_cmd);
1293 install_element(SGSN_NODE, &cfg_no_cdr_filename_cmd);
Pau Espin Pedrol2e9ea502017-11-29 14:01:35 +01001294 install_element(SGSN_NODE, &cfg_cdr_trap_cmd);
1295 install_element(SGSN_NODE, &cfg_no_cdr_trap_cmd);
Holger Hans Peter Freytherc15c61c2015-05-06 17:46:08 +02001296 install_element(SGSN_NODE, &cfg_cdr_interval_cmd);
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +08001297 install_element(SGSN_NODE, &cfg_ggsn_dynamic_lookup_cmd);
Holger Hans Peter Freythera5a6da42015-05-25 15:20:27 +08001298 install_element(SGSN_NODE, &cfg_grx_ggsn_cmd);
Harald Welte288be162010-05-01 16:48:27 +02001299
Harald Welte94508822015-08-15 19:08:21 +02001300 install_element(SGSN_NODE, &cfg_sgsn_T3312_cmd);
1301 install_element(SGSN_NODE, &cfg_sgsn_T3322_cmd);
1302 install_element(SGSN_NODE, &cfg_sgsn_T3350_cmd);
1303 install_element(SGSN_NODE, &cfg_sgsn_T3360_cmd);
1304 install_element(SGSN_NODE, &cfg_sgsn_T3370_cmd);
1305 install_element(SGSN_NODE, &cfg_sgsn_T3313_cmd);
1306 install_element(SGSN_NODE, &cfg_sgsn_T3314_cmd);
1307 install_element(SGSN_NODE, &cfg_sgsn_T3316_cmd);
1308 install_element(SGSN_NODE, &cfg_sgsn_T3385_cmd);
1309 install_element(SGSN_NODE, &cfg_sgsn_T3386_cmd);
1310 install_element(SGSN_NODE, &cfg_sgsn_T3395_cmd);
1311 install_element(SGSN_NODE, &cfg_sgsn_T3397_cmd);
1312
Philippf1f34362016-08-26 17:00:21 +02001313 install_element(SGSN_NODE, &cfg_no_comp_rfc1144_cmd);
1314 install_element(SGSN_NODE, &cfg_comp_rfc1144_cmd);
1315 install_element(SGSN_NODE, &cfg_comp_rfc1144p_cmd);
Philipp73f83d52016-09-02 13:38:01 +02001316 install_element(SGSN_NODE, &cfg_no_comp_v42bis_cmd);
1317 install_element(SGSN_NODE, &cfg_comp_v42bis_cmd);
1318 install_element(SGSN_NODE, &cfg_comp_v42bisp_cmd);
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001319
1320#ifdef BUILD_IU
Neels Hofmeyra7a39472017-07-05 15:19:52 +02001321 ranap_iu_vty_init(SGSN_NODE, &g_cfg->iu.rab_assign_addr_enc);
Neels Hofmeyr2188a772016-05-20 21:59:55 +02001322#endif
Harald Welte288be162010-05-01 16:48:27 +02001323 return 0;
1324}
1325
Neels Hofmeyrc9a352f2017-07-20 14:41:20 +02001326int sgsn_parse_config(const char *config_file)
Harald Welte288be162010-05-01 16:48:27 +02001327{
1328 int rc;
1329
Neels Hofmeyrc9a352f2017-07-20 14:41:20 +02001330 /* make sure sgsn_vty_init() was called before this */
1331 OSMO_ASSERT(g_cfg);
Harald Welte7f6da482013-03-19 11:00:13 +01001332
Harald Welte94508822015-08-15 19:08:21 +02001333 g_cfg->timers.T3312 = GSM0408_T3312_SECS;
1334 g_cfg->timers.T3322 = GSM0408_T3322_SECS;
1335 g_cfg->timers.T3350 = GSM0408_T3350_SECS;
1336 g_cfg->timers.T3360 = GSM0408_T3360_SECS;
1337 g_cfg->timers.T3370 = GSM0408_T3370_SECS;
1338 g_cfg->timers.T3313 = GSM0408_T3313_SECS;
1339 g_cfg->timers.T3314 = GSM0408_T3314_SECS;
1340 g_cfg->timers.T3316 = GSM0408_T3316_SECS;
1341 g_cfg->timers.T3385 = GSM0408_T3385_SECS;
1342 g_cfg->timers.T3386 = GSM0408_T3386_SECS;
1343 g_cfg->timers.T3395 = GSM0408_T3395_SECS;
1344 g_cfg->timers.T3397 = GSM0408_T3397_SECS;
1345
Harald Weltedcccb182010-05-16 20:52:23 +02001346 rc = vty_read_config_file(config_file, NULL);
Harald Welte288be162010-05-01 16:48:27 +02001347 if (rc < 0) {
1348 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
1349 return rc;
1350 }
1351
Neels Hofmeyr27355c92017-02-24 06:28:31 +01001352 if (g_cfg->auth_policy == SGSN_AUTH_POLICY_REMOTE
1353 && !(g_cfg->gsup_server_addr.sin_addr.s_addr
1354 && g_cfg->gsup_server_port)) {
1355 fprintf(stderr, "Configuration error:"
1356 " 'auth-policy remote' requires both"
1357 " 'gsup remote-ip' and 'gsup remote-port'\n");
1358 return -EINVAL;
1359 }
1360
Harald Welte288be162010-05-01 16:48:27 +02001361 return 0;
1362}