blob: d357698daaccc1045e317a46fb0896e15f506596 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
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"
28
29/* Host configuration variable */
30struct host
31{
32 /* Host name of this router. */
33 char *name;
34
35 /* Password for vty interface. */
36 char *password;
37 char *password_encrypt;
38
39 /* Enable password */
40 char *enable;
41 char *enable_encrypt;
42
43 /* System wide terminal lines. */
44 int lines;
45
46 /* Log filename. */
47 char *logfile;
48
49 /* Log stdout. */
50 u_char log_stdout;
51
52 /* Log syslog. */
53 u_char log_syslog;
54
55 /* config file name of this host */
56 char *config;
57
58 /* Flags for services */
59 int advanced;
60 int encrypt;
61
62 /* Banner configuration. */
hasso8c328f12004-10-05 21:01:23 +000063 const char *motd;
paul718e3742002-12-13 20:15:29 +000064};
65
66/* There are some command levels which called from command node. */
67enum node_type
68{
69 AUTH_NODE, /* Authentication mode of vty interface. */
70 VIEW_NODE, /* View node. Default mode of vty interface. */
71 AUTH_ENABLE_NODE, /* Authentication mode for change enable. */
72 ENABLE_NODE, /* Enable node. */
73 CONFIG_NODE, /* Config node. Default mode of config file. */
hassoe7168df2004-10-03 20:11:32 +000074 SERVICE_NODE, /* Service node. */
paul718e3742002-12-13 20:15:29 +000075 DEBUG_NODE, /* Debug node. */
76 AAA_NODE, /* AAA node. */
77 KEYCHAIN_NODE, /* Key-chain node. */
78 KEYCHAIN_KEY_NODE, /* Key-chain key node. */
79 INTERFACE_NODE, /* Interface mode node. */
80 ZEBRA_NODE, /* zebra connection node. */
81 TABLE_NODE, /* rtm_table selection node. */
82 RIP_NODE, /* RIP protocol mode node. */
83 RIPNG_NODE, /* RIPng protocol mode node. */
84 BGP_NODE, /* BGP protocol mode which includes BGP4+ */
85 BGP_VPNV4_NODE, /* BGP MPLS-VPN PE exchange. */
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 */
89 OSPF_NODE, /* OSPF protocol mode */
90 OSPF6_NODE, /* OSPF protocol for IPv6 mode */
jardin9e867fe2003-12-23 08:56:18 +000091 ISIS_NODE, /* ISIS protocol mode */
paul718e3742002-12-13 20:15:29 +000092 MASC_NODE, /* MASC for multicast. */
93 IRDP_NODE, /* ICMP Router Discovery Protocol mode. */
94 IP_NODE, /* Static ip route node. */
95 ACCESS_NODE, /* Access list node. */
96 PREFIX_NODE, /* Prefix list node. */
97 ACCESS_IPV6_NODE, /* Access list node. */
98 PREFIX_IPV6_NODE, /* Prefix list node. */
99 AS_LIST_NODE, /* AS list node. */
100 COMMUNITY_LIST_NODE, /* Community list node. */
101 RMAP_NODE, /* Route map node. */
102 SMUX_NODE, /* SNMP configuration node. */
103 DUMP_NODE, /* Packet dump node. */
104 FORWARDING_NODE, /* IP forwarding node. */
105 VTY_NODE /* Vty node. */
106};
107
108/* Node which has some commands and prompt string and configuration
109 function pointer . */
110struct cmd_node
111{
112 /* Node index. */
113 enum node_type node;
114
115 /* Prompt character at vty interface. */
hasso8c328f12004-10-05 21:01:23 +0000116 const char *prompt;
paul718e3742002-12-13 20:15:29 +0000117
118 /* Is this node's configuration goes to vtysh ? */
119 int vtysh;
120
121 /* Node's configuration write function */
122 int (*func) (struct vty *);
123
124 /* Vector of this node's command list. */
125 vector cmd_vector;
126};
127
paul406d6712004-10-22 12:27:44 +0000128enum
129{
130 CMD_ATTR_DEPRECATED,
131 CMD_ATTR_HIDDEN,
132};
133
paul718e3742002-12-13 20:15:29 +0000134/* Structure of command element. */
135struct cmd_element
136{
hasso8c328f12004-10-05 21:01:23 +0000137 const char *string; /* Command specification by string. */
paul9035efa2004-10-10 11:56:56 +0000138 int (*func) (struct cmd_element *, struct vty *, int, const char *[]);
hasso8c328f12004-10-05 21:01:23 +0000139 const char *doc; /* Documentation of this command. */
paul718e3742002-12-13 20:15:29 +0000140 int daemon; /* Daemon to which this command belong. */
141 vector strvec; /* Pointing out each description vector. */
hasso8c328f12004-10-05 21:01:23 +0000142 unsigned int cmdsize; /* Command index count. */
paul718e3742002-12-13 20:15:29 +0000143 char *config; /* Configuration string */
144 vector subconfig; /* Sub configuration string */
paul406d6712004-10-22 12:27:44 +0000145 u_char attr; /* Command attributes */
paul718e3742002-12-13 20:15:29 +0000146};
147
148/* Command description structure. */
149struct desc
150{
hasso8c328f12004-10-05 21:01:23 +0000151 const char *cmd; /* Command string. */
152 const char *str; /* Command's description. */
paul718e3742002-12-13 20:15:29 +0000153};
154
155/* Return value of the commands. */
156#define CMD_SUCCESS 0
157#define CMD_WARNING 1
158#define CMD_ERR_NO_MATCH 2
159#define CMD_ERR_AMBIGUOUS 3
160#define CMD_ERR_INCOMPLETE 4
161#define CMD_ERR_EXEED_ARGC_MAX 5
162#define CMD_ERR_NOTHING_TODO 6
163#define CMD_COMPLETE_FULL_MATCH 7
164#define CMD_COMPLETE_MATCH 8
165#define CMD_COMPLETE_LIST_MATCH 9
166#define CMD_SUCCESS_DAEMON 10
167
168/* Argc max counts. */
169#define CMD_ARGC_MAX 25
170
171/* Turn off these macros when uisng cpp with extract.pl */
172#ifndef VTYSH_EXTRACT_PL
173
paul406d6712004-10-22 12:27:44 +0000174/* helper defines for end-user DEFUN* macros */
175#define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
paul718e3742002-12-13 20:15:29 +0000176 struct cmd_element cmdname = \
177 { \
paul9035efa2004-10-10 11:56:56 +0000178 .string = cmdstr, \
179 .func = funcname, \
paul406d6712004-10-22 12:27:44 +0000180 .doc = helpstr, \
181 .attr = attrs, \
182 .daemon = dnum, \
183 };
184
185#define DEFUN_CMD_FUNC_DECL(funcname) \
186 int funcname (struct cmd_element *, struct vty *, int, const char *[]); \
187
188#define DEFUN_CMD_FUNC_TEXT(funcname) \
paul718e3742002-12-13 20:15:29 +0000189 int funcname \
paul406d6712004-10-22 12:27:44 +0000190 (struct cmd_element *self, struct vty *vty, int argc, const char *argv[])
191
192/* DEFUN for vty command interafce. Little bit hacky ;-). */
193#define DEFUN(funcname, cmdname, cmdstr, helpstr) \
194 DEFUN_CMD_FUNC_DECL(funcname) \
195 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
196 DEFUN_CMD_FUNC_TEXT(funcname)
197
198#define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
199 DEFUN_CMD_FUNC_DECL(funcname) \
200 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
201 DEFUN_CMD_FUNC_TEXT(funcname)
202
203#define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
204 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
205
206#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
207 DEFUN (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
paul718e3742002-12-13 20:15:29 +0000208
209/* DEFUN_NOSH for commands that vtysh should ignore */
210#define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
211 DEFUN(funcname, cmdname, cmdstr, helpstr)
212
213/* DEFSH for vtysh. */
214#define DEFSH(daemon, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000215 DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
paul718e3742002-12-13 20:15:29 +0000216
217/* DEFUN + DEFSH */
218#define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000219 DEFUN_CMD_FUNC_DECL(funcname) \
220 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
221 DEFUN_CMD_FUNC_TEXT(funcname)
paul718e3742002-12-13 20:15:29 +0000222
223/* ALIAS macro which define existing command's alias. */
224#define ALIAS(funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000225 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
226
227#define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
228 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
229
230#define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
231 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
232
233#define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
234 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
paul718e3742002-12-13 20:15:29 +0000235
236#endif /* VTYSH_EXTRACT_PL */
237
238/* Some macroes */
239#define CMD_OPTION(S) ((S[0]) == '[')
240#define CMD_VARIABLE(S) (((S[0]) >= 'A' && (S[0]) <= 'Z') || ((S[0]) == '<'))
241#define CMD_VARARG(S) ((S[0]) == '.')
242#define CMD_RANGE(S) ((S[0] == '<'))
243
244#define CMD_IPV4(S) ((strcmp ((S), "A.B.C.D") == 0))
245#define CMD_IPV4_PREFIX(S) ((strcmp ((S), "A.B.C.D/M") == 0))
246#define CMD_IPV6(S) ((strcmp ((S), "X:X::X:X") == 0))
247#define CMD_IPV6_PREFIX(S) ((strcmp ((S), "X:X::X:X/M") == 0))
248
249/* Common descriptions. */
250#define SHOW_STR "Show running system information\n"
251#define IP_STR "IP information\n"
252#define IPV6_STR "IPv6 information\n"
253#define NO_STR "Negate a command or set its defaults\n"
254#define CLEAR_STR "Reset functions\n"
255#define RIP_STR "RIP information\n"
256#define BGP_STR "BGP information\n"
257#define OSPF_STR "OSPF information\n"
258#define NEIGHBOR_STR "Specify neighbor router\n"
259#define DEBUG_STR "Debugging functions (see also 'undebug')\n"
260#define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
261#define ROUTER_STR "Enable a routing process\n"
262#define AS_STR "AS number\n"
263#define MBGP_STR "MBGP information\n"
264#define MATCH_STR "Match values from routing table\n"
265#define SET_STR "Set values in destination routing protocol\n"
266#define OUT_STR "Filter outgoing routing updates\n"
267#define IN_STR "Filter incoming routing updates\n"
268#define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
269#define OSPF6_NUMBER_STR "Specify by number\n"
270#define INTERFACE_STR "Interface infomation\n"
271#define IFNAME_STR "Interface name(e.g. ep0)\n"
272#define IP6_STR "IPv6 Information\n"
273#define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
274#define OSPF6_ROUTER_STR "Enable a routing process\n"
275#define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
276#define SECONDS_STR "<1-65535> Seconds\n"
277#define ROUTE_STR "Routing Table\n"
278#define PREFIX_LIST_STR "Build a prefix list\n"
279#define OSPF6_DUMP_TYPE_LIST \
280"(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
jardin9e867fe2003-12-23 08:56:18 +0000281#define ISIS_STR "IS-IS information\n"
282#define AREA_TAG_STR "[area tag]\n"
paul718e3742002-12-13 20:15:29 +0000283
284#define CONF_BACKUP_EXT ".sav"
285
286/* IPv4 only machine should not accept IPv6 address for peer's IP
287 address. So we replace VTY command string like below. */
288#ifdef HAVE_IPV6
289#define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
290#define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
291#define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
292#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
293#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
294#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
295#else
296#define NEIGHBOR_CMD "neighbor A.B.C.D "
297#define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
298#define NEIGHBOR_ADDR_STR "Neighbor address\n"
299#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
300#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
301#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
302#endif /* HAVE_IPV6 */
303
304/* Prototypes. */
305void install_node (struct cmd_node *, int (*) (struct vty *));
306void install_default (enum node_type);
307void install_element (enum node_type, struct cmd_element *);
308void sort_node ();
309
paul42d49862004-10-13 05:22:18 +0000310char *argv_concat (const char **, int, int);
hassoea8e9d92004-10-07 21:32:14 +0000311vector cmd_make_strvec (const char *);
paul718e3742002-12-13 20:15:29 +0000312void cmd_free_strvec (vector);
313vector cmd_describe_command ();
314char **cmd_complete_command ();
hasso8c328f12004-10-05 21:01:23 +0000315const char *cmd_prompt (enum node_type);
paul718e3742002-12-13 20:15:29 +0000316int config_from_file (struct vty *, FILE *);
317int cmd_execute_command (vector, struct vty *, struct cmd_element **);
318int cmd_execute_command_strict (vector, struct vty *, struct cmd_element **);
319void config_replace_string (struct cmd_element *, char *, ...);
320void cmd_init (int);
321
322/* Export typical functions. */
323extern struct cmd_element config_end_cmd;
324extern struct cmd_element config_exit_cmd;
325extern struct cmd_element config_quit_cmd;
326extern struct cmd_element config_help_cmd;
327extern struct cmd_element config_list_cmd;
paul9035efa2004-10-10 11:56:56 +0000328int config_exit (struct cmd_element *, struct vty *, int, const char *[]);
329int config_help (struct cmd_element *, struct vty *, int, const char *[]);
paul718e3742002-12-13 20:15:29 +0000330char *host_config_file ();
331void host_config_set (char *);
332
hasso6590f2c2004-10-19 20:40:08 +0000333void print_version (const char *);
334
paul718e3742002-12-13 20:15:29 +0000335#endif /* _ZEBRA_COMMAND_H */