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