blob: b61a6556bef685369fcaf3f369b3b78d3aa06dd0 [file] [log] [blame]
Harald Welte34b5a952019-05-27 11:54:11 +02001/* Osmocom VTY interface functions in TTCN-3
2 * (C) 2017-2018 Harald Welte <laforge@gnumonks.org>
3 * contributions by sysmocom - s.f.m.c. GmbH
4 * All rights reserved.
5 *
6 * Released under the terms of GNU General Public License, Version 2 or
7 * (at your option) any later version.
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11
Harald Welte8542cef2017-07-19 20:06:26 +020012module Osmocom_VTY_Functions {
13 import from TELNETasp_PortType all;
Stefan Sperlingcff13562018-11-13 15:24:06 +010014 import from Osmocom_Types all;
Harald Welte8542cef2017-07-19 20:06:26 +020015
Harald Welte553f6552018-01-24 18:50:53 +010016 modulepar {
17 charstring mp_prompt_prefix := "OpenBSC";
18 }
Harald Welte8542cef2017-07-19 20:06:26 +020019
Harald Welte553f6552018-01-24 18:50:53 +010020 const charstring VTY_VIEW_SUFFIX := "> ";
21 const charstring VTY_ENABLE_SUFFIX := "# ";
22 const charstring VTY_CFG_SUFFIX := "(*)";
23
24 template charstring t_vty_unknown := pattern "*% Unknown command.";
Harald Welte8542cef2017-07-19 20:06:26 +020025
26 /* configure prompts in TELNETasp module */
Harald Weltea2663252018-09-10 10:21:44 +020027 function f_vty_set_prompts(TELNETasp_PT pt, charstring prompt_prefix := mp_prompt_prefix) {
Harald Welte553f6552018-01-24 18:50:53 +010028 var ASP_TelnetDynamicConfig vty_prompt[3] := {
29 {
30 prompt := {
31 id := 1,
Harald Weltea2663252018-09-10 10:21:44 +020032 prompt := prompt_prefix & VTY_VIEW_SUFFIX,
Harald Welte553f6552018-01-24 18:50:53 +010033 has_wildcards := false
34 }
35 }, {
36 prompt := {
37 id := 2,
Harald Weltea2663252018-09-10 10:21:44 +020038 prompt := prompt_prefix & VTY_ENABLE_SUFFIX,
Harald Welte553f6552018-01-24 18:50:53 +010039 has_wildcards := false
40 }
41 }, {
42 prompt := {
43 id := 3,
Harald Weltea2663252018-09-10 10:21:44 +020044 prompt := prompt_prefix & VTY_CFG_SUFFIX,
Harald Welte553f6552018-01-24 18:50:53 +010045 has_wildcards := true
46 }
47 }
48 };
49
Harald Welte8542cef2017-07-19 20:06:26 +020050 /* set some configuration that isn't possible to express
51 * in the config file due to syntactic restrictions (Who invents config
52 * files that don't permit regular expressions? */
53 for (var integer i := 0; i < sizeof(vty_prompt); i:= i + 1) {
Harald Welte553f6552018-01-24 18:50:53 +010054 pt.send(vty_prompt[i]);
Harald Welte8542cef2017-07-19 20:06:26 +020055 }
56 }
57
58 /* wait for any of the permitted prompts; buffer + return all intermediate output */
59 function f_vty_wait_for_prompt(TELNETasp_PT pt) return charstring {
Harald Welte8542cef2017-07-19 20:06:26 +020060 var charstring rx, buf := "";
Stefan Sperling23b45972018-07-27 17:20:38 +020061 var integer fd;
Harald Welte8542cef2017-07-19 20:06:26 +020062 timer T := 2.0;
63
64 T.start;
65 alt {
Harald Weltea2663252018-09-10 10:21:44 +020066 [] pt.receive(pattern "\w+" & VTY_VIEW_SUFFIX) { };
67 [] pt.receive(pattern "\w+\# ") { };
Vadim Yanitskiyea247d52018-10-28 22:47:24 +070068 [] pt.receive(pattern "\w+\(*\)\# ") { };
Harald Welte553f6552018-01-24 18:50:53 +010069 [] pt.receive(t_vty_unknown) {
70 testcase.stop(fail, "VTY: Unknown Command");
71 };
Harald Welte8542cef2017-07-19 20:06:26 +020072 [] pt.receive(charstring:?) -> value rx { buf := buf & rx; repeat };
Stefan Sperling23b45972018-07-27 17:20:38 +020073 [] pt.receive(integer:?) -> value fd {
74 if (fd == -1) {
75 setverdict(fail, "VTY Telnet Connection Failure");
76 mtc.stop;
77 } else {
78 repeat; /* telnet connection succeeded */
79 }
80 }
Harald Welte553f6552018-01-24 18:50:53 +010081 [] T.timeout {
82 setverdict(fail, "VTY Timeout for prompt");
Daniel Willmanne4ff5372018-07-05 17:35:03 +020083 mtc.stop;
Harald Welte553f6552018-01-24 18:50:53 +010084 };
Harald Welte8542cef2017-07-19 20:06:26 +020085 }
86 T.stop;
87 return buf;
88 }
89
90 /* send a VTY command and obtain response until prompt is received */
91 function f_vty_transceive_ret(TELNETasp_PT pt, charstring tx) return charstring {
92 pt.send(tx);
93 return f_vty_wait_for_prompt(pt);
94 }
95
96 /* send a VTY command and obtain response until prompt is received */
97 function f_vty_transceive(TELNETasp_PT pt, charstring tx) {
Harald Welte930d0a72018-03-22 22:08:40 +010098 var charstring unused := f_vty_transceive_ret(pt, tx);
Harald Welte8542cef2017-07-19 20:06:26 +020099 }
100
101 type integer BtsNr (0..255);
102 type integer BtsTrxNr (0..255);
103 type integer BtsTimeslotNr (0..7);
Philipp Maierd0e64b02019-03-13 14:15:23 +0100104 type integer MscNr (0..255);
Harald Welte8542cef2017-07-19 20:06:26 +0200105
106 type charstring BtsGprsMode ("none", "gprs", "egrps");
107
108 /* enter the'confiugration' mode of the VTY */
109 function f_vty_enter_config(TELNETasp_PT pt) {
110 f_vty_transceive(pt, "configure terminal")
111 }
112
113 function f_vty_enter_cfg_network(TELNETasp_PT pt) {
114 f_vty_enter_config(pt);
115 f_vty_transceive(pt, "network")
116 }
117
118 function f_vty_enter_cfg_bts(TELNETasp_PT pt, BtsNr bts := 0) {
119 f_vty_enter_cfg_network(pt);
120 f_vty_transceive(pt, "bts " & int2str(bts));
121 }
122
123 function f_vty_enter_cfg_trx(TELNETasp_PT pt, BtsNr bts := 0, BtsTrxNr trx := 0) {
124 f_vty_enter_cfg_bts(pt, bts);
125 f_vty_transceive(pt, "trx " & int2str(trx));
126 }
127
128 function f_vty_enter_cfg_ts(TELNETasp_PT pt, BtsNr bts := 0, BtsTrxNr trx := 0, BtsTimeslotNr ts) {
129 f_vty_enter_cfg_trx(pt, bts, trx);
130 f_vty_transceive(pt, "timeslot " & int2str(ts));
131 }
132
Philipp Maierd0e64b02019-03-13 14:15:23 +0100133 function f_vty_enter_cfg_msc(TELNETasp_PT pt, MscNr msc := 0) {
134 f_vty_enter_config(pt);
135 f_vty_transceive(pt, "msc " & int2str(msc));
136 }
137
Harald Weltef640a012018-04-14 17:49:21 +0200138type record of charstring rof_charstring;
139function f_vty_config2(TELNETasp_PT pt, rof_charstring config_nodes, charstring cmd)
Harald Welte872ce172018-02-16 22:10:33 +0100140{
141 /* enter config mode; enter node */
142 f_vty_enter_config(pt);
Harald Weltef640a012018-04-14 17:49:21 +0200143 for (var integer i := 0; i < sizeof(config_nodes); i := i+1) {
144 f_vty_transceive(pt, config_nodes[i]);
145 }
Harald Welte872ce172018-02-16 22:10:33 +0100146 /* execute command */
147 f_vty_transceive(pt, cmd);
148 /* leave config mode */
149 f_vty_transceive(pt, "end");
150}
151
152
Harald Weltef640a012018-04-14 17:49:21 +0200153function f_vty_config(TELNETasp_PT pt, charstring config_node, charstring cmd)
154{
155 f_vty_config2(pt, {config_node}, cmd);
156}
157
Alexander Couzens98aa59e2018-06-12 13:45:59 +0200158function f_vty_transceive_match(TELNETasp_PT pt, charstring cmd, template charstring exp_ret) {
159 var charstring ret := f_vty_transceive_ret(pt, cmd);
160 if (not match(ret, exp_ret)) {
161 setverdict(fail, "Non-matching VTY response: ", ret);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200162 mtc.stop;
Alexander Couzens98aa59e2018-06-12 13:45:59 +0200163 }
164}
165
Alexander Couzens1e6d9902018-06-12 13:48:26 +0200166function f_vty_transceive_not_match(TELNETasp_PT pt, charstring cmd, template charstring exp_ret) {
167 var charstring ret := f_vty_transceive_ret(pt, cmd);
168 if (match(ret, exp_ret)) {
169 setverdict(fail, "Unexpected matching VTY response: ", ret);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200170 mtc.stop;
Alexander Couzens1e6d9902018-06-12 13:48:26 +0200171 }
172}
173
Stefan Sperlingcff13562018-11-13 15:24:06 +0100174function f_vty_transceive_match_regex(TELNETasp_PT pt, charstring cmd, charstring regex, integer groupno) return charstring
175{
176 var charstring resp := f_vty_transceive_ret(pt, cmd);
177 return regexp(resp, regex, groupno);
178}
179
180function f_vty_transceive_match_regexp_retry(TELNETasp_PT pt, charstring cmd, charstring regex,
181 integer groupno, integer num_attempts, float retry_delay) return charstring
182{
183 while (num_attempts > 0) {
184 var charstring ret := f_vty_transceive_match_regex(pt, cmd, regex, groupno);
185 if (ret != "") {
186 return ret;
187 }
188 f_sleep(retry_delay);
189 num_attempts := num_attempts - 1;
190 }
191
192 setverdict(fail, "No matching VTY response for regular expression '", regex,
193 "' after ", num_attempts, " attempts." );
194 mtc.stop;
195}
Harald Weltef640a012018-04-14 17:49:21 +0200196
Harald Welte8542cef2017-07-19 20:06:26 +0200197}