paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Zebra configuration command interface routine |
| 3 | * Copyright (C) 1997, 98 Kunihiro Ishiguro |
| 4 | * |
| 5 | * This file is part of GNU Zebra. |
| 6 | * |
| 7 | * GNU Zebra is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published |
| 9 | * by the Free Software Foundation; either version 2, or (at your |
| 10 | * option) any later version. |
| 11 | * |
| 12 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with GNU Zebra; see the file COPYING. If not, write to the |
| 19 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 20 | * Boston, MA 02111-1307, USA. |
| 21 | */ |
| 22 | |
| 23 | #ifndef _ZEBRA_COMMAND_H |
| 24 | #define _ZEBRA_COMMAND_H |
| 25 | |
| 26 | #include "vector.h" |
| 27 | #include "vty.h" |
Paul Jakma | 9c42a6e | 2006-06-27 07:52:03 +0000 | [diff] [blame] | 28 | #include "lib/route_types.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 29 | |
| 30 | /* Host configuration variable */ |
| 31 | struct host |
| 32 | { |
| 33 | /* Host name of this router. */ |
| 34 | char *name; |
| 35 | |
| 36 | /* Password for vty interface. */ |
| 37 | char *password; |
| 38 | char *password_encrypt; |
| 39 | |
| 40 | /* Enable password */ |
| 41 | char *enable; |
| 42 | char *enable_encrypt; |
| 43 | |
| 44 | /* System wide terminal lines. */ |
| 45 | int lines; |
| 46 | |
| 47 | /* Log filename. */ |
| 48 | char *logfile; |
| 49 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 50 | /* config file name of this host */ |
| 51 | char *config; |
| 52 | |
| 53 | /* Flags for services */ |
| 54 | int advanced; |
| 55 | int encrypt; |
| 56 | |
| 57 | /* Banner configuration. */ |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 58 | const char *motd; |
paul | 3b0c5d9 | 2005-03-08 10:43:43 +0000 | [diff] [blame] | 59 | char *motdfile; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | /* There are some command levels which called from command node. */ |
| 63 | enum node_type |
| 64 | { |
| 65 | AUTH_NODE, /* Authentication mode of vty interface. */ |
Paul Jakma | 62687ff | 2008-08-23 14:27:06 +0100 | [diff] [blame] | 66 | RESTRICTED_NODE, /* Restricted view mode */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 67 | VIEW_NODE, /* View node. Default mode of vty interface. */ |
| 68 | AUTH_ENABLE_NODE, /* Authentication mode for change enable. */ |
| 69 | ENABLE_NODE, /* Enable node. */ |
| 70 | CONFIG_NODE, /* Config node. Default mode of config file. */ |
Feng Lu | 55cfa2f | 2014-07-03 18:24:34 +0800 | [diff] [blame] | 71 | VRF_NODE, /* VRF node. */ |
hasso | e7168df | 2004-10-03 20:11:32 +0000 | [diff] [blame] | 72 | SERVICE_NODE, /* Service node. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 73 | DEBUG_NODE, /* Debug node. */ |
| 74 | AAA_NODE, /* AAA node. */ |
| 75 | KEYCHAIN_NODE, /* Key-chain node. */ |
| 76 | KEYCHAIN_KEY_NODE, /* Key-chain key node. */ |
| 77 | INTERFACE_NODE, /* Interface mode node. */ |
| 78 | ZEBRA_NODE, /* zebra connection node. */ |
| 79 | TABLE_NODE, /* rtm_table selection node. */ |
| 80 | RIP_NODE, /* RIP protocol mode node. */ |
| 81 | RIPNG_NODE, /* RIPng protocol mode node. */ |
Paul Jakma | 5734509 | 2011-12-25 17:52:09 +0100 | [diff] [blame] | 82 | BABEL_NODE, /* Babel protocol mode node. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 83 | BGP_NODE, /* BGP protocol mode which includes BGP4+ */ |
| 84 | BGP_VPNV4_NODE, /* BGP MPLS-VPN PE exchange. */ |
Lou Berger | 13c378d | 2016-01-12 13:41:56 -0500 | [diff] [blame^] | 85 | BGP_VPNV6_NODE, /* BGP MPLS-VPN PE exchange. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 86 | BGP_IPV4_NODE, /* BGP IPv4 unicast address family. */ |
| 87 | BGP_IPV4M_NODE, /* BGP IPv4 multicast address family. */ |
| 88 | BGP_IPV6_NODE, /* BGP IPv6 address family */ |
paul | 1e83659 | 2005-08-22 22:39:56 +0000 | [diff] [blame] | 89 | BGP_IPV6M_NODE, /* BGP IPv6 multicast address family. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 90 | OSPF_NODE, /* OSPF protocol mode */ |
| 91 | OSPF6_NODE, /* OSPF protocol for IPv6 mode */ |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 92 | ISIS_NODE, /* ISIS protocol mode */ |
Everton Marques | 871dbcf | 2009-08-11 15:43:05 -0300 | [diff] [blame] | 93 | PIM_NODE, /* PIM protocol mode */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 94 | MASC_NODE, /* MASC for multicast. */ |
| 95 | IRDP_NODE, /* ICMP Router Discovery Protocol mode. */ |
| 96 | IP_NODE, /* Static ip route node. */ |
| 97 | ACCESS_NODE, /* Access list node. */ |
| 98 | PREFIX_NODE, /* Prefix list node. */ |
| 99 | ACCESS_IPV6_NODE, /* Access list node. */ |
| 100 | PREFIX_IPV6_NODE, /* Prefix list node. */ |
| 101 | AS_LIST_NODE, /* AS list node. */ |
| 102 | COMMUNITY_LIST_NODE, /* Community list node. */ |
| 103 | RMAP_NODE, /* Route map node. */ |
| 104 | SMUX_NODE, /* SNMP configuration node. */ |
| 105 | DUMP_NODE, /* Packet dump node. */ |
| 106 | FORWARDING_NODE, /* IP forwarding node. */ |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 107 | PROTOCOL_NODE, /* protocol filtering node */ |
Paul Jakma | 62687ff | 2008-08-23 14:27:06 +0100 | [diff] [blame] | 108 | VTY_NODE, /* Vty node. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | /* Node which has some commands and prompt string and configuration |
| 112 | function pointer . */ |
| 113 | struct cmd_node |
| 114 | { |
| 115 | /* Node index. */ |
| 116 | enum node_type node; |
| 117 | |
| 118 | /* Prompt character at vty interface. */ |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 119 | const char *prompt; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 120 | |
| 121 | /* Is this node's configuration goes to vtysh ? */ |
| 122 | int vtysh; |
| 123 | |
| 124 | /* Node's configuration write function */ |
| 125 | int (*func) (struct vty *); |
| 126 | |
| 127 | /* Vector of this node's command list. */ |
| 128 | vector cmd_vector; |
| 129 | }; |
| 130 | |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 131 | enum |
| 132 | { |
paul | 9c5d856 | 2005-03-08 15:56:42 +0000 | [diff] [blame] | 133 | CMD_ATTR_DEPRECATED = 1, |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 134 | CMD_ATTR_HIDDEN, |
| 135 | }; |
| 136 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 137 | /* Structure of command element. */ |
| 138 | struct cmd_element |
| 139 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 140 | const char *string; /* Command specification by string. */ |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 141 | int (*func) (struct cmd_element *, struct vty *, int, const char *[]); |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 142 | const char *doc; /* Documentation of this command. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 143 | int daemon; /* Daemon to which this command belong. */ |
Christian Franke | cd40b32 | 2013-09-30 12:27:51 +0000 | [diff] [blame] | 144 | vector tokens; /* Vector of cmd_tokens */ |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 145 | u_char attr; /* Command attributes */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 146 | }; |
| 147 | |
Christian Franke | cd40b32 | 2013-09-30 12:27:51 +0000 | [diff] [blame] | 148 | |
| 149 | enum cmd_token_type |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 150 | { |
Christian Franke | cd40b32 | 2013-09-30 12:27:51 +0000 | [diff] [blame] | 151 | TOKEN_TERMINAL = 0, |
| 152 | TOKEN_MULTIPLE, |
| 153 | TOKEN_KEYWORD, |
| 154 | }; |
| 155 | |
David Lamparter | 10bac80 | 2015-05-05 11:10:20 +0200 | [diff] [blame] | 156 | enum cmd_terminal_type |
| 157 | { |
| 158 | _TERMINAL_BUG = 0, |
| 159 | TERMINAL_LITERAL, |
| 160 | TERMINAL_OPTION, |
| 161 | TERMINAL_VARIABLE, |
| 162 | TERMINAL_VARARG, |
| 163 | TERMINAL_RANGE, |
| 164 | TERMINAL_IPV4, |
| 165 | TERMINAL_IPV4_PREFIX, |
| 166 | TERMINAL_IPV6, |
| 167 | TERMINAL_IPV6_PREFIX, |
| 168 | }; |
| 169 | |
David Lamparter | 1416293 | 2015-05-12 17:18:04 +0200 | [diff] [blame] | 170 | /* argument to be recorded on argv[] if it's not a literal */ |
| 171 | #define TERMINAL_RECORD(t) ((t) >= TERMINAL_OPTION) |
| 172 | |
Christian Franke | cd40b32 | 2013-09-30 12:27:51 +0000 | [diff] [blame] | 173 | /* Command description structure. */ |
| 174 | struct cmd_token |
| 175 | { |
| 176 | enum cmd_token_type type; |
David Lamparter | 10bac80 | 2015-05-05 11:10:20 +0200 | [diff] [blame] | 177 | enum cmd_terminal_type terminal; |
Christian Franke | cd40b32 | 2013-09-30 12:27:51 +0000 | [diff] [blame] | 178 | |
| 179 | /* Used for type == MULTIPLE */ |
| 180 | vector multiple; /* vector of cmd_token, type == FINAL */ |
| 181 | |
| 182 | /* Used for type == KEYWORD */ |
| 183 | vector keyword; /* vector of vector of cmd_tokens */ |
| 184 | |
| 185 | /* Used for type == TERMINAL */ |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 186 | char *cmd; /* Command string. */ |
Christian Franke | cd40b32 | 2013-09-30 12:27:51 +0000 | [diff] [blame] | 187 | char *desc; /* Command's description. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | /* Return value of the commands. */ |
| 191 | #define CMD_SUCCESS 0 |
| 192 | #define CMD_WARNING 1 |
| 193 | #define CMD_ERR_NO_MATCH 2 |
| 194 | #define CMD_ERR_AMBIGUOUS 3 |
| 195 | #define CMD_ERR_INCOMPLETE 4 |
| 196 | #define CMD_ERR_EXEED_ARGC_MAX 5 |
| 197 | #define CMD_ERR_NOTHING_TODO 6 |
| 198 | #define CMD_COMPLETE_FULL_MATCH 7 |
| 199 | #define CMD_COMPLETE_MATCH 8 |
| 200 | #define CMD_COMPLETE_LIST_MATCH 9 |
| 201 | #define CMD_SUCCESS_DAEMON 10 |
| 202 | |
| 203 | /* Argc max counts. */ |
| 204 | #define CMD_ARGC_MAX 25 |
| 205 | |
| 206 | /* Turn off these macros when uisng cpp with extract.pl */ |
| 207 | #ifndef VTYSH_EXTRACT_PL |
| 208 | |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 209 | /* helper defines for end-user DEFUN* macros */ |
| 210 | #define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 211 | struct cmd_element cmdname = \ |
| 212 | { \ |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 213 | .string = cmdstr, \ |
| 214 | .func = funcname, \ |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 215 | .doc = helpstr, \ |
| 216 | .attr = attrs, \ |
| 217 | .daemon = dnum, \ |
| 218 | }; |
| 219 | |
| 220 | #define DEFUN_CMD_FUNC_DECL(funcname) \ |
paul | 34204aa | 2005-11-03 09:00:23 +0000 | [diff] [blame] | 221 | static int funcname (struct cmd_element *, struct vty *, int, const char *[]); |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 222 | |
| 223 | #define DEFUN_CMD_FUNC_TEXT(funcname) \ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 224 | static int funcname \ |
Paul Jakma | 6cf0cf0 | 2006-03-30 14:43:17 +0000 | [diff] [blame] | 225 | (struct cmd_element *self __attribute__ ((unused)), \ |
| 226 | struct vty *vty __attribute__ ((unused)), \ |
| 227 | int argc __attribute__ ((unused)), \ |
| 228 | const char *argv[] __attribute__ ((unused)) ) |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 229 | |
Christian Franke | cd40b32 | 2013-09-30 12:27:51 +0000 | [diff] [blame] | 230 | /* DEFUN for vty command interafce. Little bit hacky ;-). |
| 231 | * |
| 232 | * DEFUN(funcname, cmdname, cmdstr, helpstr) |
| 233 | * |
| 234 | * funcname |
| 235 | * ======== |
| 236 | * |
| 237 | * Name of the function that will be defined. |
| 238 | * |
| 239 | * cmdname |
| 240 | * ======= |
| 241 | * |
| 242 | * Name of the struct that will be defined for the command. |
| 243 | * |
| 244 | * cmdstr |
| 245 | * ====== |
| 246 | * |
| 247 | * The cmdstr defines the command syntax. It is used by the vty subsystem |
| 248 | * and vtysh to perform matching and completion in the cli. So you have to take |
| 249 | * care to construct it adhering to the following grammar. The names used |
| 250 | * for the production rules losely represent the names used in lib/command.c |
| 251 | * |
| 252 | * cmdstr = cmd_token , { " " , cmd_token } ; |
| 253 | * |
| 254 | * cmd_token = cmd_terminal |
| 255 | * | cmd_multiple |
| 256 | * | cmd_keyword ; |
| 257 | * |
| 258 | * cmd_terminal_fixed = fixed_string |
| 259 | * | variable |
| 260 | * | range |
| 261 | * | ipv4 |
| 262 | * | ipv4_prefix |
| 263 | * | ipv6 |
| 264 | * | ipv6_prefix ; |
| 265 | * |
| 266 | * cmd_terminal = cmd_terminal_fixed |
| 267 | * | option |
| 268 | * | vararg ; |
| 269 | * |
| 270 | * multiple_part = cmd_terminal_fixed ; |
| 271 | * cmd_multiple = "(" , multiple_part , ( "|" | { "|" , multiple_part } ) , ")" ; |
| 272 | * |
| 273 | * keyword_part = fixed_string , { " " , ( cmd_terminal_fixed | cmd_multiple ) } ; |
| 274 | * cmd_keyword = "{" , keyword_part , { "|" , keyword_part } , "}" ; |
| 275 | * |
| 276 | * lowercase = "a" | ... | "z" ; |
| 277 | * uppercase = "A" | ... | "Z" ; |
| 278 | * digit = "0" | ... | "9" ; |
| 279 | * number = digit , { digit } ; |
| 280 | * |
| 281 | * fixed_string = (lowercase | digit) , { lowercase | digit | uppercase | "-" | "_" } ; |
| 282 | * variable = uppercase , { uppercase | "_" } ; |
| 283 | * range = "<" , number , "-" , number , ">" ; |
| 284 | * ipv4 = "A.B.C.D" ; |
| 285 | * ipv4_prefix = "A.B.C.D/M" ; |
| 286 | * ipv6 = "X:X::X:X" ; |
| 287 | * ipv6_prefix = "X:X::X:X/M" ; |
| 288 | * option = "[" , variable , "]" ; |
| 289 | * vararg = "." , variable ; |
| 290 | * |
| 291 | * To put that all in a textual description: A cmdstr is a sequence of tokens, |
| 292 | * separated by spaces. |
| 293 | * |
| 294 | * Terminal Tokens: |
| 295 | * |
| 296 | * A very simple cmdstring would be something like: "show ip bgp". It consists |
| 297 | * of three Terminal Tokens, each containing a fixed string. When this command |
| 298 | * is called, no arguments will be passed down to the function implementing it, |
| 299 | * as it only consists of fixed strings. |
| 300 | * |
| 301 | * Apart from fixed strings, Terminal Tokens can also contain variables: |
| 302 | * An example would be "show ip bgp A.B.C.D". This command expects an IPv4 |
| 303 | * as argument. As this is a variable, the IP address entered by the user will |
| 304 | * be passed down as an argument. Apart from two exceptions, the other options |
| 305 | * for Terminal Tokens behave exactly as we just discussed and only make a |
| 306 | * difference for the CLI. The two exceptions will be discussed in the next |
| 307 | * paragraphs. |
| 308 | * |
| 309 | * A Terminal Token can contain a so called option match. This is a simple |
| 310 | * string variable that the user may omit. An example would be: |
| 311 | * "show interface [IFNAME]". If the user calls this without an interface as |
| 312 | * argument, no arguments will be passed down to the function implementing |
| 313 | * this command. Otherwise, the interface name will be provided to the function |
| 314 | * as a regular argument. |
| 315 | |
| 316 | * Also, a Terminal Token can contain a so called vararg. This is used e.g. in |
| 317 | * "show ip bgp regexp .LINE". The last token is a vararg match and will |
| 318 | * consume all the arguments the user inputs on the command line and append |
| 319 | * those to the list of arguments passed down to the function implementing this |
| 320 | * command. (Therefore, it doesn't make much sense to have any tokens after a |
| 321 | * vararg because the vararg will already consume all the words the user entered |
| 322 | * in the CLI) |
| 323 | * |
| 324 | * Multiple Tokens: |
| 325 | * |
| 326 | * The Multiple Token type can be used if there are multiple possibilities what |
| 327 | * arguments may be used for a command, but it should map to the same function |
| 328 | * nonetheless. An example would be "ip route A.B.C.D/M (reject|blackhole)" |
| 329 | * In that case both "reject" and "blackhole" would be acceptable as last |
| 330 | * arguments. The words matched by Multiple Tokens are always added to the |
| 331 | * argument list, even if they are matched by fixed strings. Such a Multiple |
| 332 | * Token can contain almost any type of token that would also be acceptable |
| 333 | * for a Terminal Token, the exception are optional variables and varag. |
| 334 | * |
| 335 | * There is one special case that is used in some places of Quagga that should be |
| 336 | * pointed out here shortly. An example would be "password (8|) WORD". This |
| 337 | * construct is used to have fixed strings communicated as arguments. (The "8" |
| 338 | * will be passed down as an argument in this case) It does not mean that |
| 339 | * the "8" is optional. Another historic and possibly surprising property of |
| 340 | * this construct is that it consumes two parts of helpstr. (Help |
| 341 | * strings will be explained later) |
| 342 | * |
| 343 | * Keyword Tokens: |
| 344 | * |
| 345 | * There are commands that take a lot of different and possibly optional arguments. |
| 346 | * An example from ospf would be the "default-information originate" command. This |
| 347 | * command takes a lot of optional arguments that may be provided in any order. |
| 348 | * To accomodate such commands, the Keyword Token has been implemented. |
| 349 | * Using the keyword token, the "default-information originate" command and all |
| 350 | * its possible options can be represented using this single cmdstr: |
| 351 | * "default-information originate \ |
| 352 | * {always|metric <0-16777214>|metric-type (1|2)|route-map WORD}" |
| 353 | * |
| 354 | * Keywords always start with a fixed string and may be followed by arguments. |
| 355 | * Except optional variables and vararg, everything is permitted here. |
| 356 | * |
| 357 | * For the special case of a keyword without arguments, either NULL or the |
| 358 | * keyword itself will be pushed as an argument, depending on whether the |
| 359 | * keyword is present. |
| 360 | * For the other keywords, arguments will be only pushed for |
| 361 | * variables/Multiple Tokens. If the keyword is not present, the arguments that |
| 362 | * would have been pushed will be substituted by NULL. |
| 363 | * |
| 364 | * A few examples: |
| 365 | * "default information originate metric-type 1 metric 1000" |
| 366 | * would yield the following arguments: |
| 367 | * { NULL, "1000", "1", NULL } |
| 368 | * |
| 369 | * "default information originate always route-map RMAP-DEFAULT" |
| 370 | * would yield the following arguments: |
| 371 | * { "always", NULL, NULL, "RMAP-DEFAULT" } |
| 372 | * |
| 373 | * helpstr |
| 374 | * ======= |
| 375 | * |
| 376 | * The helpstr is used to show a short explantion for the commands that |
| 377 | * are available when the user presses '?' on the CLI. It is the concatenation |
| 378 | * of the helpstrings for all the tokens that make up the command. |
| 379 | * |
| 380 | * There should be one helpstring for each token in the cmdstr except those |
| 381 | * containing other tokens, like Multiple or Keyword Tokens. For those, there |
| 382 | * will only be the helpstrings of the contained tokens. |
| 383 | * |
| 384 | * The individual helpstrings are expected to be in the same order as their |
| 385 | * respective Tokens appear in the cmdstr. They should each be terminated with |
| 386 | * a linefeed. The last helpstring should be terminated with a linefeed as well. |
| 387 | * |
| 388 | * Care should also be taken to avoid having similar tokens with different |
| 389 | * helpstrings. Imagine e.g. the commands "show ip ospf" and "show ip bgp". |
| 390 | * they both contain a helpstring for "show", but only one will be displayed |
| 391 | * when the user enters "sh?". If those two helpstrings differ, it is not |
| 392 | * defined which one will be shown and the behavior is therefore unpredictable. |
| 393 | */ |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 394 | #define DEFUN(funcname, cmdname, cmdstr, helpstr) \ |
| 395 | DEFUN_CMD_FUNC_DECL(funcname) \ |
| 396 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \ |
| 397 | DEFUN_CMD_FUNC_TEXT(funcname) |
| 398 | |
| 399 | #define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \ |
| 400 | DEFUN_CMD_FUNC_DECL(funcname) \ |
| 401 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \ |
| 402 | DEFUN_CMD_FUNC_TEXT(funcname) |
| 403 | |
| 404 | #define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \ |
| 405 | DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN) |
| 406 | |
| 407 | #define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \ |
hasso | 2557aed | 2004-11-28 21:16:20 +0000 | [diff] [blame] | 408 | DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 409 | |
| 410 | /* DEFUN_NOSH for commands that vtysh should ignore */ |
| 411 | #define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \ |
| 412 | DEFUN(funcname, cmdname, cmdstr, helpstr) |
| 413 | |
| 414 | /* DEFSH for vtysh. */ |
| 415 | #define DEFSH(daemon, cmdname, cmdstr, helpstr) \ |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 416 | DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 417 | |
| 418 | /* DEFUN + DEFSH */ |
| 419 | #define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \ |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 420 | DEFUN_CMD_FUNC_DECL(funcname) \ |
| 421 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \ |
| 422 | DEFUN_CMD_FUNC_TEXT(funcname) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 423 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 424 | /* DEFUN + DEFSH with attributes */ |
| 425 | #define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \ |
| 426 | DEFUN_CMD_FUNC_DECL(funcname) \ |
| 427 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \ |
| 428 | DEFUN_CMD_FUNC_TEXT(funcname) |
| 429 | |
| 430 | #define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \ |
| 431 | DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN) |
| 432 | |
| 433 | #define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \ |
| 434 | DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) |
| 435 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 436 | /* ALIAS macro which define existing command's alias. */ |
| 437 | #define ALIAS(funcname, cmdname, cmdstr, helpstr) \ |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 438 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) |
| 439 | |
| 440 | #define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 441 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) |
paul | 406d671 | 2004-10-22 12:27:44 +0000 | [diff] [blame] | 442 | |
| 443 | #define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \ |
| 444 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0) |
| 445 | |
| 446 | #define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \ |
| 447 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 448 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 449 | #define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \ |
| 450 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) |
| 451 | |
| 452 | #define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \ |
| 453 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon) |
| 454 | |
| 455 | #define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \ |
| 456 | DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon) |
| 457 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 458 | #endif /* VTYSH_EXTRACT_PL */ |
| 459 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 460 | /* Common descriptions. */ |
| 461 | #define SHOW_STR "Show running system information\n" |
| 462 | #define IP_STR "IP information\n" |
| 463 | #define IPV6_STR "IPv6 information\n" |
| 464 | #define NO_STR "Negate a command or set its defaults\n" |
Paul Jakma | 9c42a6e | 2006-06-27 07:52:03 +0000 | [diff] [blame] | 465 | #define REDIST_STR "Redistribute information from another routing protocol\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 466 | #define CLEAR_STR "Reset functions\n" |
| 467 | #define RIP_STR "RIP information\n" |
| 468 | #define BGP_STR "BGP information\n" |
| 469 | #define OSPF_STR "OSPF information\n" |
| 470 | #define NEIGHBOR_STR "Specify neighbor router\n" |
| 471 | #define DEBUG_STR "Debugging functions (see also 'undebug')\n" |
| 472 | #define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n" |
| 473 | #define ROUTER_STR "Enable a routing process\n" |
| 474 | #define AS_STR "AS number\n" |
| 475 | #define MBGP_STR "MBGP information\n" |
| 476 | #define MATCH_STR "Match values from routing table\n" |
| 477 | #define SET_STR "Set values in destination routing protocol\n" |
| 478 | #define OUT_STR "Filter outgoing routing updates\n" |
| 479 | #define IN_STR "Filter incoming routing updates\n" |
| 480 | #define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n" |
| 481 | #define OSPF6_NUMBER_STR "Specify by number\n" |
| 482 | #define INTERFACE_STR "Interface infomation\n" |
| 483 | #define IFNAME_STR "Interface name(e.g. ep0)\n" |
| 484 | #define IP6_STR "IPv6 Information\n" |
| 485 | #define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n" |
| 486 | #define OSPF6_ROUTER_STR "Enable a routing process\n" |
| 487 | #define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n" |
| 488 | #define SECONDS_STR "<1-65535> Seconds\n" |
| 489 | #define ROUTE_STR "Routing Table\n" |
| 490 | #define PREFIX_LIST_STR "Build a prefix list\n" |
| 491 | #define OSPF6_DUMP_TYPE_LIST \ |
| 492 | "(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)" |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 493 | #define ISIS_STR "IS-IS information\n" |
| 494 | #define AREA_TAG_STR "[area tag]\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 495 | |
| 496 | #define CONF_BACKUP_EXT ".sav" |
| 497 | |
| 498 | /* IPv4 only machine should not accept IPv6 address for peer's IP |
| 499 | address. So we replace VTY command string like below. */ |
| 500 | #ifdef HAVE_IPV6 |
| 501 | #define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) " |
| 502 | #define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) " |
| 503 | #define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n" |
| 504 | #define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) " |
| 505 | #define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) " |
| 506 | #define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n" |
| 507 | #else |
| 508 | #define NEIGHBOR_CMD "neighbor A.B.C.D " |
| 509 | #define NO_NEIGHBOR_CMD "no neighbor A.B.C.D " |
| 510 | #define NEIGHBOR_ADDR_STR "Neighbor address\n" |
| 511 | #define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) " |
| 512 | #define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) " |
| 513 | #define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n" |
| 514 | #endif /* HAVE_IPV6 */ |
| 515 | |
| 516 | /* Prototypes. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 517 | extern void install_node (struct cmd_node *, int (*) (struct vty *)); |
| 518 | extern void install_default (enum node_type); |
| 519 | extern void install_element (enum node_type, struct cmd_element *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 520 | |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 521 | /* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated |
| 522 | string with a space between each element (allocated using |
| 523 | XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 524 | extern char *argv_concat (const char **argv, int argc, int shift); |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 525 | |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 526 | extern vector cmd_make_strvec (const char *); |
| 527 | extern void cmd_free_strvec (vector); |
| 528 | extern vector cmd_describe_command (vector, struct vty *, int *status); |
| 529 | extern char **cmd_complete_command (vector, struct vty *, int *status); |
Lou Berger | 6729003 | 2016-01-12 13:41:46 -0500 | [diff] [blame] | 530 | extern char **cmd_complete_command_lib (vector, struct vty *, int *status, int islib); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 531 | extern const char *cmd_prompt (enum node_type); |
Donald Sharp | d8aa4be | 2015-09-28 20:10:40 -0400 | [diff] [blame] | 532 | extern int command_config_read_one_line (struct vty *vty, struct cmd_element **, int use_config_node); |
Steve Hill | ea55500 | 2009-07-28 16:36:14 -0400 | [diff] [blame] | 533 | extern int config_from_file (struct vty *, FILE *, unsigned int *line_num); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 534 | extern enum node_type node_parent (enum node_type); |
| 535 | extern int cmd_execute_command (vector, struct vty *, struct cmd_element **, int); |
| 536 | extern int cmd_execute_command_strict (vector, struct vty *, struct cmd_element **); |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 537 | extern void cmd_init (int); |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 538 | extern void cmd_terminate (void); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 539 | |
| 540 | /* Export typical functions. */ |
| 541 | extern struct cmd_element config_end_cmd; |
| 542 | extern struct cmd_element config_exit_cmd; |
| 543 | extern struct cmd_element config_quit_cmd; |
| 544 | extern struct cmd_element config_help_cmd; |
| 545 | extern struct cmd_element config_list_cmd; |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 546 | extern char *host_config_file (void); |
| 547 | extern void host_config_set (char *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 548 | |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 549 | extern void print_version (const char *); |
Paul Jakma | 86228fd | 2006-03-30 15:00:30 +0000 | [diff] [blame] | 550 | |
| 551 | /* struct host global, ick */ |
| 552 | extern struct host host; |
Chris Caputo | 228da42 | 2009-07-18 05:44:03 +0000 | [diff] [blame] | 553 | |
| 554 | /* "<cr>" global */ |
| 555 | extern char *command_cr; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 556 | #endif /* _ZEBRA_COMMAND_H */ |