blob: 26022cb028a242676da5a259750e873dd36afe5d [file] [log] [blame]
Harald Welte955049f2009-03-10 12:16:51 +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 <stdio.h>
Harald Welte12247c62009-05-21 07:23:02 +000027#include <sys/types.h>
Harald Welte955049f2009-03-10 12:16:51 +000028#include "vector.h"
29#include "vty.h"
30
31/* Host configuration variable */
32struct host {
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
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. */
58 const char *motd;
59 char *motdfile;
60};
61
62/* There are some command levels which called from command node. */
63enum node_type {
Harald Welte68628e82009-03-10 12:17:57 +000064 BTS_NODE,
65 TRX_NODE,
66 TS_NODE,
Harald Welte955049f2009-03-10 12:16:51 +000067
68 AUTH_NODE, /* Authentication mode of vty interface. */
69 VIEW_NODE, /* View node. Default mode of vty interface. */
70 AUTH_ENABLE_NODE, /* Authentication mode for change enable. */
71 ENABLE_NODE, /* Enable node. */
72 CONFIG_NODE, /* Config node. Default mode of config file. */
73 SERVICE_NODE, /* Service node. */
74 DEBUG_NODE, /* Debug node. */
75 AAA_NODE, /* AAA node. */
76 KEYCHAIN_NODE, /* Key-chain node. */
77 KEYCHAIN_KEY_NODE, /* Key-chain key node. */
78 INTERFACE_NODE, /* Interface mode node. */
79 ZEBRA_NODE, /* zebra connection node. */
80 TABLE_NODE, /* rtm_table selection node. */
81 RIP_NODE, /* RIP protocol mode node. */
82 RIPNG_NODE, /* RIPng protocol mode node. */
83 BGP_NODE, /* BGP protocol mode which includes BGP4+ */
84 BGP_VPNV4_NODE, /* BGP MPLS-VPN PE exchange. */
85 BGP_IPV4_NODE, /* BGP IPv4 unicast address family. */
86 BGP_IPV4M_NODE, /* BGP IPv4 multicast address family. */
87 BGP_IPV6_NODE, /* BGP IPv6 address family */
88 OSPF_NODE, /* OSPF protocol mode */
89 OSPF6_NODE, /* OSPF protocol for IPv6 mode */
90 ISIS_NODE, /* ISIS protocol mode */
91 MASC_NODE, /* MASC for multicast. */
92 IRDP_NODE, /* ICMP Router Discovery Protocol mode. */
93 IP_NODE, /* Static ip route node. */
94 ACCESS_NODE, /* Access list node. */
95 PREFIX_NODE, /* Prefix list node. */
96 ACCESS_IPV6_NODE, /* Access list node. */
97 PREFIX_IPV6_NODE, /* Prefix list node. */
98 AS_LIST_NODE, /* AS list node. */
99 COMMUNITY_LIST_NODE, /* Community list node. */
100 RMAP_NODE, /* Route map node. */
101 SMUX_NODE, /* SNMP configuration node. */
102 DUMP_NODE, /* Packet dump node. */
103 FORWARDING_NODE, /* IP forwarding node. */
104 VTY_NODE /* Vty node. */
105};
106
107/* Node which has some commands and prompt string and configuration
108 function pointer . */
109struct cmd_node {
110 /* Node index. */
111 enum node_type node;
112
113 /* Prompt character at vty interface. */
114 const char *prompt;
115
116 /* Is this node's configuration goes to vtysh ? */
117 int vtysh;
118
119 /* Node's configuration write function */
120 int (*func) (struct vty *);
121
122 /* Vector of this node's command list. */
123 vector cmd_vector;
124};
125
126enum {
127 CMD_ATTR_DEPRECATED = 1,
128 CMD_ATTR_HIDDEN,
129};
130
131/* Structure of command element. */
132struct cmd_element {
133 const char *string; /* Command specification by string. */
134 int (*func) (struct cmd_element *, struct vty *, int, const char *[]);
135 const char *doc; /* Documentation of this command. */
136 int daemon; /* Daemon to which this command belong. */
137 vector strvec; /* Pointing out each description vector. */
138 unsigned int cmdsize; /* Command index count. */
139 char *config; /* Configuration string */
140 vector subconfig; /* Sub configuration string */
141 u_char attr; /* Command attributes */
142};
143
144/* Command description structure. */
145struct desc {
146 const char *cmd; /* Command string. */
147 const char *str; /* Command's description. */
148};
149
150/* Return value of the commands. */
151#define CMD_SUCCESS 0
152#define CMD_WARNING 1
153#define CMD_ERR_NO_MATCH 2
154#define CMD_ERR_AMBIGUOUS 3
155#define CMD_ERR_INCOMPLETE 4
156#define CMD_ERR_EXEED_ARGC_MAX 5
157#define CMD_ERR_NOTHING_TODO 6
158#define CMD_COMPLETE_FULL_MATCH 7
159#define CMD_COMPLETE_MATCH 8
160#define CMD_COMPLETE_LIST_MATCH 9
161#define CMD_SUCCESS_DAEMON 10
162
163/* Argc max counts. */
164#define CMD_ARGC_MAX 25
165
166/* Turn off these macros when uisng cpp with extract.pl */
167#ifndef VTYSH_EXTRACT_PL
168
169/* helper defines for end-user DEFUN* macros */
170#define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
171 struct cmd_element cmdname = \
172 { \
173 .string = cmdstr, \
174 .func = funcname, \
175 .doc = helpstr, \
176 .attr = attrs, \
177 .daemon = dnum, \
178 };
179
180#define DEFUN_CMD_FUNC_DECL(funcname) \
181 static int funcname (struct cmd_element *, struct vty *, int, const char *[]); \
182
183#define DEFUN_CMD_FUNC_TEXT(funcname) \
184 static int funcname \
185 (struct cmd_element *self, struct vty *vty, int argc, const char *argv[])
186
187/* DEFUN for vty command interafce. Little bit hacky ;-). */
188#define DEFUN(funcname, cmdname, cmdstr, helpstr) \
189 DEFUN_CMD_FUNC_DECL(funcname) \
190 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
191 DEFUN_CMD_FUNC_TEXT(funcname)
192
193#define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
194 DEFUN_CMD_FUNC_DECL(funcname) \
195 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
196 DEFUN_CMD_FUNC_TEXT(funcname)
197
198#define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
199 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
200
201#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
202 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
203
204/* DEFUN_NOSH for commands that vtysh should ignore */
205#define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
206 DEFUN(funcname, cmdname, cmdstr, helpstr)
207
208/* DEFSH for vtysh. */
209#define DEFSH(daemon, cmdname, cmdstr, helpstr) \
210 DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
211
212/* DEFUN + DEFSH */
213#define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
214 DEFUN_CMD_FUNC_DECL(funcname) \
215 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
216 DEFUN_CMD_FUNC_TEXT(funcname)
217
218/* DEFUN + DEFSH with attributes */
219#define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \
220 DEFUN_CMD_FUNC_DECL(funcname) \
221 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
222 DEFUN_CMD_FUNC_TEXT(funcname)
223
224#define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
225 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
226
227#define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
228 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
229
230/* ALIAS macro which define existing command's alias. */
231#define ALIAS(funcname, cmdname, cmdstr, helpstr) \
232 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
233
234#define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
235 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0)
236
237#define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
238 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
239
240#define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
241 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
242
243#define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \
244 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon)
245
246#define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
247 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon)
248
249#define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
250 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon)
251
252#endif /* VTYSH_EXTRACT_PL */
253
254/* Some macroes */
255#define CMD_OPTION(S) ((S[0]) == '[')
256#define CMD_VARIABLE(S) (((S[0]) >= 'A' && (S[0]) <= 'Z') || ((S[0]) == '<'))
257#define CMD_VARARG(S) ((S[0]) == '.')
258#define CMD_RANGE(S) ((S[0] == '<'))
259
260#define CMD_IPV4(S) ((strcmp ((S), "A.B.C.D") == 0))
261#define CMD_IPV4_PREFIX(S) ((strcmp ((S), "A.B.C.D/M") == 0))
262#define CMD_IPV6(S) ((strcmp ((S), "X:X::X:X") == 0))
263#define CMD_IPV6_PREFIX(S) ((strcmp ((S), "X:X::X:X/M") == 0))
264
265/* Common descriptions. */
266#define SHOW_STR "Show running system information\n"
267#define IP_STR "IP information\n"
268#define IPV6_STR "IPv6 information\n"
269#define NO_STR "Negate a command or set its defaults\n"
270#define CLEAR_STR "Reset functions\n"
271#define RIP_STR "RIP information\n"
272#define BGP_STR "BGP information\n"
273#define OSPF_STR "OSPF information\n"
274#define NEIGHBOR_STR "Specify neighbor router\n"
275#define DEBUG_STR "Debugging functions (see also 'undebug')\n"
276#define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
277#define ROUTER_STR "Enable a routing process\n"
278#define AS_STR "AS number\n"
279#define MBGP_STR "MBGP information\n"
280#define MATCH_STR "Match values from routing table\n"
281#define SET_STR "Set values in destination routing protocol\n"
282#define OUT_STR "Filter outgoing routing updates\n"
283#define IN_STR "Filter incoming routing updates\n"
284#define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
285#define OSPF6_NUMBER_STR "Specify by number\n"
286#define INTERFACE_STR "Interface infomation\n"
287#define IFNAME_STR "Interface name(e.g. ep0)\n"
288#define IP6_STR "IPv6 Information\n"
289#define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
290#define OSPF6_ROUTER_STR "Enable a routing process\n"
291#define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
292#define SECONDS_STR "<1-65535> Seconds\n"
293#define ROUTE_STR "Routing Table\n"
294#define PREFIX_LIST_STR "Build a prefix list\n"
295#define OSPF6_DUMP_TYPE_LIST \
296"(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
297#define ISIS_STR "IS-IS information\n"
298#define AREA_TAG_STR "[area tag]\n"
299
300#define CONF_BACKUP_EXT ".sav"
301
302/* IPv4 only machine should not accept IPv6 address for peer's IP
303 address. So we replace VTY command string like below. */
304#ifdef HAVE_IPV6
305#define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
306#define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
307#define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
308#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
309#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
310#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
311#else
312#define NEIGHBOR_CMD "neighbor A.B.C.D "
313#define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
314#define NEIGHBOR_ADDR_STR "Neighbor address\n"
315#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
316#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
317#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
318#endif /* HAVE_IPV6 */
319
320/* Prototypes. */
321void install_node(struct cmd_node *, int (*)(struct vty *));
322void install_default(enum node_type);
323void install_element(enum node_type, struct cmd_element *);
324void sort_node();
325
326/* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated
327 string with a space between each element (allocated using
328 XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */
329char *argv_concat(const char **argv, int argc, int shift);
330
331vector cmd_make_strvec(const char *);
332void cmd_free_strvec(vector);
333vector cmd_describe_command();
334char **cmd_complete_command();
335const char *cmd_prompt(enum node_type);
336int config_from_file(struct vty *, FILE *);
337enum node_type node_parent(enum node_type);
338int cmd_execute_command(vector, struct vty *, struct cmd_element **, int);
339int cmd_execute_command_strict(vector, struct vty *, struct cmd_element **);
340void config_replace_string(struct cmd_element *, char *, ...);
341void cmd_init(int);
342
343/* Export typical functions. */
344extern struct cmd_element config_end_cmd;
345extern struct cmd_element config_exit_cmd;
346extern struct cmd_element config_quit_cmd;
347extern struct cmd_element config_help_cmd;
348extern struct cmd_element config_list_cmd;
349char *host_config_file();
350void host_config_set(char *);
351
352void print_version(const char *);
353
354#endif /* _ZEBRA_COMMAND_H */