blob: ec594ed1ba23bd9d0582e26acc6e1413fd324811 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/*
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>
27#include <sys/types.h>
28#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;
Harald Welte10c29f62010-05-16 19:20:24 +020060
61 const char *prog_name;
62 const char *prog_version;
63 const char *prog_copyright;
Harald Welte59b04682009-06-10 05:40:52 +080064};
65
66/* There are some command levels which called from command node. */
67enum node_type {
Harald Welte59b04682009-06-10 05:40:52 +080068 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. */
Harald Welte62868882009-08-08 16:12:58 +020075#if 0
Harald Welte59b04682009-06-10 05:40:52 +080076 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 */
91 ISIS_NODE, /* ISIS protocol mode */
92 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. */
Harald Welte62868882009-08-08 16:12:58 +0200105#endif
106 VTY_NODE, /* Vty node. */
107
108 GSMNET_NODE,
109 BTS_NODE,
110 TRX_NODE,
111 TS_NODE,
112 SUBSCR_NODE,
Holger Hans Peter Freyther9a26b7c2009-10-09 07:08:11 +0200113 MGCP_NODE,
Harald Welteaf3b0d22010-04-30 21:14:05 +0200114 GBPROXY_NODE,
Harald Welte568417b2010-05-01 16:46:11 +0200115 SGSN_NODE,
Harald Welte51cce2a2010-05-12 15:55:23 +0000116 NS_NODE,
Harald Welte59b04682009-06-10 05:40:52 +0800117};
118
119/* Node which has some commands and prompt string and configuration
120 function pointer . */
121struct cmd_node {
122 /* Node index. */
123 enum node_type node;
124
125 /* Prompt character at vty interface. */
126 const char *prompt;
127
128 /* Is this node's configuration goes to vtysh ? */
129 int vtysh;
130
131 /* Node's configuration write function */
132 int (*func) (struct vty *);
133
134 /* Vector of this node's command list. */
135 vector cmd_vector;
136};
137
138enum {
139 CMD_ATTR_DEPRECATED = 1,
140 CMD_ATTR_HIDDEN,
141};
142
143/* Structure of command element. */
144struct cmd_element {
145 const char *string; /* Command specification by string. */
146 int (*func) (struct cmd_element *, struct vty *, int, const char *[]);
147 const char *doc; /* Documentation of this command. */
148 int daemon; /* Daemon to which this command belong. */
149 vector strvec; /* Pointing out each description vector. */
150 unsigned int cmdsize; /* Command index count. */
151 char *config; /* Configuration string */
152 vector subconfig; /* Sub configuration string */
153 u_char attr; /* Command attributes */
154};
155
156/* Command description structure. */
157struct desc {
158 const char *cmd; /* Command string. */
159 const char *str; /* Command's description. */
160};
161
162/* Return value of the commands. */
163#define CMD_SUCCESS 0
164#define CMD_WARNING 1
165#define CMD_ERR_NO_MATCH 2
166#define CMD_ERR_AMBIGUOUS 3
167#define CMD_ERR_INCOMPLETE 4
168#define CMD_ERR_EXEED_ARGC_MAX 5
169#define CMD_ERR_NOTHING_TODO 6
170#define CMD_COMPLETE_FULL_MATCH 7
171#define CMD_COMPLETE_MATCH 8
172#define CMD_COMPLETE_LIST_MATCH 9
173#define CMD_SUCCESS_DAEMON 10
174
175/* Argc max counts. */
176#define CMD_ARGC_MAX 25
177
178/* Turn off these macros when uisng cpp with extract.pl */
179#ifndef VTYSH_EXTRACT_PL
180
181/* helper defines for end-user DEFUN* macros */
182#define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
Harald Weltee25a1782010-05-01 11:01:46 +0200183 static struct cmd_element cmdname = \
184 { \
185 .string = cmdstr, \
186 .func = funcname, \
187 .doc = helpstr, \
188 .attr = attrs, \
189 .daemon = dnum, \
190 };
191
192/* global (non static) cmd_element */
193#define gDEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
Harald Welte59b04682009-06-10 05:40:52 +0800194 struct cmd_element cmdname = \
195 { \
196 .string = cmdstr, \
197 .func = funcname, \
198 .doc = helpstr, \
199 .attr = attrs, \
200 .daemon = dnum, \
201 };
202
203#define DEFUN_CMD_FUNC_DECL(funcname) \
204 static int funcname (struct cmd_element *, struct vty *, int, const char *[]); \
205
206#define DEFUN_CMD_FUNC_TEXT(funcname) \
207 static int funcname \
208 (struct cmd_element *self, struct vty *vty, int argc, const char *argv[])
209
210/* DEFUN for vty command interafce. Little bit hacky ;-). */
211#define DEFUN(funcname, cmdname, cmdstr, helpstr) \
212 DEFUN_CMD_FUNC_DECL(funcname) \
213 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
214 DEFUN_CMD_FUNC_TEXT(funcname)
215
Harald Weltee25a1782010-05-01 11:01:46 +0200216/* global (non static) cmd_element */
217#define gDEFUN(funcname, cmdname, cmdstr, helpstr) \
218 DEFUN_CMD_FUNC_DECL(funcname) \
219 gDEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
220 DEFUN_CMD_FUNC_TEXT(funcname)
221
Harald Welte59b04682009-06-10 05:40:52 +0800222#define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
223 DEFUN_CMD_FUNC_DECL(funcname) \
224 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
225 DEFUN_CMD_FUNC_TEXT(funcname)
226
227#define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
228 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
229
230#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
231 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
232
233/* DEFUN_NOSH for commands that vtysh should ignore */
234#define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
235 DEFUN(funcname, cmdname, cmdstr, helpstr)
236
237/* DEFSH for vtysh. */
238#define DEFSH(daemon, cmdname, cmdstr, helpstr) \
239 DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
240
241/* DEFUN + DEFSH */
242#define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
243 DEFUN_CMD_FUNC_DECL(funcname) \
244 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
245 DEFUN_CMD_FUNC_TEXT(funcname)
246
247/* DEFUN + DEFSH with attributes */
248#define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \
249 DEFUN_CMD_FUNC_DECL(funcname) \
250 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
251 DEFUN_CMD_FUNC_TEXT(funcname)
252
253#define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
254 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
255
256#define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
257 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
258
259/* ALIAS macro which define existing command's alias. */
260#define ALIAS(funcname, cmdname, cmdstr, helpstr) \
261 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
262
Harald Weltee25a1782010-05-01 11:01:46 +0200263/* global (non static) cmd_element */
264#define gALIAS(funcname, cmdname, cmdstr, helpstr) \
265 gDEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
266
Harald Welte59b04682009-06-10 05:40:52 +0800267#define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
268 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0)
269
270#define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
271 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
272
273#define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
274 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
275
276#define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \
277 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon)
278
279#define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
280 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon)
281
282#define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
283 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon)
284
285#endif /* VTYSH_EXTRACT_PL */
286
287/* Some macroes */
288#define CMD_OPTION(S) ((S[0]) == '[')
289#define CMD_VARIABLE(S) (((S[0]) >= 'A' && (S[0]) <= 'Z') || ((S[0]) == '<'))
290#define CMD_VARARG(S) ((S[0]) == '.')
291#define CMD_RANGE(S) ((S[0] == '<'))
292
293#define CMD_IPV4(S) ((strcmp ((S), "A.B.C.D") == 0))
294#define CMD_IPV4_PREFIX(S) ((strcmp ((S), "A.B.C.D/M") == 0))
295#define CMD_IPV6(S) ((strcmp ((S), "X:X::X:X") == 0))
296#define CMD_IPV6_PREFIX(S) ((strcmp ((S), "X:X::X:X/M") == 0))
297
298/* Common descriptions. */
299#define SHOW_STR "Show running system information\n"
300#define IP_STR "IP information\n"
301#define IPV6_STR "IPv6 information\n"
302#define NO_STR "Negate a command or set its defaults\n"
303#define CLEAR_STR "Reset functions\n"
304#define RIP_STR "RIP information\n"
305#define BGP_STR "BGP information\n"
306#define OSPF_STR "OSPF information\n"
307#define NEIGHBOR_STR "Specify neighbor router\n"
308#define DEBUG_STR "Debugging functions (see also 'undebug')\n"
309#define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
310#define ROUTER_STR "Enable a routing process\n"
311#define AS_STR "AS number\n"
312#define MBGP_STR "MBGP information\n"
313#define MATCH_STR "Match values from routing table\n"
314#define SET_STR "Set values in destination routing protocol\n"
315#define OUT_STR "Filter outgoing routing updates\n"
316#define IN_STR "Filter incoming routing updates\n"
317#define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
318#define OSPF6_NUMBER_STR "Specify by number\n"
319#define INTERFACE_STR "Interface infomation\n"
320#define IFNAME_STR "Interface name(e.g. ep0)\n"
321#define IP6_STR "IPv6 Information\n"
322#define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
323#define OSPF6_ROUTER_STR "Enable a routing process\n"
324#define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
325#define SECONDS_STR "<1-65535> Seconds\n"
326#define ROUTE_STR "Routing Table\n"
327#define PREFIX_LIST_STR "Build a prefix list\n"
328#define OSPF6_DUMP_TYPE_LIST \
329"(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
330#define ISIS_STR "IS-IS information\n"
331#define AREA_TAG_STR "[area tag]\n"
332
333#define CONF_BACKUP_EXT ".sav"
334
335/* IPv4 only machine should not accept IPv6 address for peer's IP
336 address. So we replace VTY command string like below. */
337#ifdef HAVE_IPV6
338#define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
339#define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
340#define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
341#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
342#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
343#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
344#else
345#define NEIGHBOR_CMD "neighbor A.B.C.D "
346#define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
347#define NEIGHBOR_ADDR_STR "Neighbor address\n"
348#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
349#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
350#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
351#endif /* HAVE_IPV6 */
352
353/* Prototypes. */
354void install_node(struct cmd_node *, int (*)(struct vty *));
355void install_default(enum node_type);
356void install_element(enum node_type, struct cmd_element *);
Harald Welte7bc28f62010-05-12 16:10:35 +0000357void install_element_ve(struct cmd_element *cmd);
Harald Welte59b04682009-06-10 05:40:52 +0800358void sort_node();
359
360/* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated
361 string with a space between each element (allocated using
362 XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */
363char *argv_concat(const char **argv, int argc, int shift);
364
365vector cmd_make_strvec(const char *);
366void cmd_free_strvec(vector);
367vector cmd_describe_command();
368char **cmd_complete_command();
369const char *cmd_prompt(enum node_type);
370int config_from_file(struct vty *, FILE *);
371enum node_type node_parent(enum node_type);
372int cmd_execute_command(vector, struct vty *, struct cmd_element **, int);
373int cmd_execute_command_strict(vector, struct vty *, struct cmd_element **);
374void config_replace_string(struct cmd_element *, char *, ...);
375void cmd_init(int);
376
377/* Export typical functions. */
Harald Welte59b04682009-06-10 05:40:52 +0800378extern struct cmd_element config_exit_cmd;
Harald Welte59b04682009-06-10 05:40:52 +0800379extern struct cmd_element config_help_cmd;
380extern struct cmd_element config_list_cmd;
381char *host_config_file();
Holger Hans Peter Freyther9fc1c052009-08-10 08:09:54 +0200382void host_config_set(const char *);
Harald Welte59b04682009-06-10 05:40:52 +0800383
Harald Welte10c29f62010-05-16 19:20:24 +0200384/* This is called from main when a daemon is invoked with -v or --version. */
385void print_version(int print_copyright);
Harald Welte59b04682009-06-10 05:40:52 +0800386
Harald Welte0c836602009-12-24 10:51:56 +0100387extern void *tall_vty_cmd_ctx;
388
Harald Welte59b04682009-06-10 05:40:52 +0800389#endif /* _ZEBRA_COMMAND_H */