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