ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1 | /* |
paul | eb820af | 2005-09-05 11:54:13 +0000 | [diff] [blame] | 2 | $Id: command.c,v 1.50 2005/09/05 11:54:13 paul Exp $ |
paul | 9e92eea | 2005-03-09 13:39:26 +0000 | [diff] [blame] | 3 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 4 | Command interpreter routine for virtual terminal [aka TeletYpe] |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 5 | Copyright (C) 1997, 98, 99 Kunihiro Ishiguro |
| 6 | |
| 7 | This file is part of GNU Zebra. |
| 8 | |
| 9 | GNU Zebra is free software; you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published |
| 11 | by the Free Software Foundation; either version 2, or (at your |
| 12 | option) any later version. |
| 13 | |
| 14 | GNU Zebra is distributed in the hope that it will be useful, but |
| 15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
| 20 | along with GNU Zebra; see the file COPYING. If not, write to the |
| 21 | Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 22 | Boston, MA 02111-1307, USA. */ |
| 23 | |
| 24 | #include <zebra.h> |
| 25 | |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 26 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 27 | #include "memory.h" |
| 28 | #include "log.h" |
gdt | 5e4fa16 | 2004-03-16 14:38:36 +0000 | [diff] [blame] | 29 | #include <lib/version.h> |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 30 | #include "thread.h" |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 31 | #include "vector.h" |
| 32 | #include "vty.h" |
| 33 | #include "command.h" |
paul | 354d119 | 2005-04-25 16:26:42 +0000 | [diff] [blame] | 34 | #include "workqueue.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 35 | |
| 36 | /* Command vector which includes some level of command lists. Normally |
| 37 | each daemon maintains each own cmdvec. */ |
paul | eb820af | 2005-09-05 11:54:13 +0000 | [diff] [blame] | 38 | vector cmdvec = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 39 | |
| 40 | /* Host information structure. */ |
| 41 | struct host host; |
| 42 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 43 | /* Standard command node structures. */ |
| 44 | struct cmd_node auth_node = |
| 45 | { |
| 46 | AUTH_NODE, |
| 47 | "Password: ", |
| 48 | }; |
| 49 | |
| 50 | struct cmd_node view_node = |
| 51 | { |
| 52 | VIEW_NODE, |
| 53 | "%s> ", |
| 54 | }; |
| 55 | |
| 56 | struct cmd_node auth_enable_node = |
| 57 | { |
| 58 | AUTH_ENABLE_NODE, |
| 59 | "Password: ", |
| 60 | }; |
| 61 | |
| 62 | struct cmd_node enable_node = |
| 63 | { |
| 64 | ENABLE_NODE, |
| 65 | "%s# ", |
| 66 | }; |
| 67 | |
| 68 | struct cmd_node config_node = |
| 69 | { |
| 70 | CONFIG_NODE, |
| 71 | "%s(config)# ", |
| 72 | 1 |
| 73 | }; |
hasso | 6590f2c | 2004-10-19 20:40:08 +0000 | [diff] [blame] | 74 | |
| 75 | /* Default motd string. */ |
| 76 | const char *default_motd = |
| 77 | "\r\n\ |
| 78 | Hello, this is " QUAGGA_PROGNAME " (version " QUAGGA_VERSION ").\r\n\ |
| 79 | " QUAGGA_COPYRIGHT "\r\n\ |
| 80 | \r\n"; |
| 81 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 82 | |
| 83 | static struct facility_map { |
| 84 | int facility; |
| 85 | const char *name; |
| 86 | size_t match; |
| 87 | } syslog_facilities[] = |
| 88 | { |
| 89 | { LOG_KERN, "kern", 1 }, |
| 90 | { LOG_USER, "user", 2 }, |
| 91 | { LOG_MAIL, "mail", 1 }, |
| 92 | { LOG_DAEMON, "daemon", 1 }, |
| 93 | { LOG_AUTH, "auth", 1 }, |
| 94 | { LOG_SYSLOG, "syslog", 1 }, |
| 95 | { LOG_LPR, "lpr", 2 }, |
| 96 | { LOG_NEWS, "news", 1 }, |
| 97 | { LOG_UUCP, "uucp", 2 }, |
| 98 | { LOG_CRON, "cron", 1 }, |
| 99 | #ifdef LOG_FTP |
| 100 | { LOG_FTP, "ftp", 1 }, |
| 101 | #endif |
| 102 | { LOG_LOCAL0, "local0", 6 }, |
| 103 | { LOG_LOCAL1, "local1", 6 }, |
| 104 | { LOG_LOCAL2, "local2", 6 }, |
| 105 | { LOG_LOCAL3, "local3", 6 }, |
| 106 | { LOG_LOCAL4, "local4", 6 }, |
| 107 | { LOG_LOCAL5, "local5", 6 }, |
| 108 | { LOG_LOCAL6, "local6", 6 }, |
| 109 | { LOG_LOCAL7, "local7", 6 }, |
| 110 | { 0, NULL, 0 }, |
| 111 | }; |
| 112 | |
| 113 | static const char * |
| 114 | facility_name(int facility) |
| 115 | { |
| 116 | struct facility_map *fm; |
| 117 | |
| 118 | for (fm = syslog_facilities; fm->name; fm++) |
| 119 | if (fm->facility == facility) |
| 120 | return fm->name; |
| 121 | return ""; |
| 122 | } |
| 123 | |
| 124 | static int |
| 125 | facility_match(const char *str) |
| 126 | { |
| 127 | struct facility_map *fm; |
| 128 | |
| 129 | for (fm = syslog_facilities; fm->name; fm++) |
| 130 | if (!strncmp(str,fm->name,fm->match)) |
| 131 | return fm->facility; |
| 132 | return -1; |
| 133 | } |
| 134 | |
| 135 | static int |
| 136 | level_match(const char *s) |
| 137 | { |
| 138 | int level ; |
| 139 | |
| 140 | for ( level = 0 ; zlog_priority [level] != NULL ; level ++ ) |
| 141 | if (!strncmp (s, zlog_priority[level], 2)) |
| 142 | return level; |
| 143 | return ZLOG_DISABLED; |
| 144 | } |
| 145 | |
ajs | cb585b6 | 2005-01-14 17:09:38 +0000 | [diff] [blame] | 146 | /* This is called from main when a daemon is invoked with -v or --version. */ |
hasso | 6590f2c | 2004-10-19 20:40:08 +0000 | [diff] [blame] | 147 | void |
| 148 | print_version (const char *progname) |
| 149 | { |
ajs | cb585b6 | 2005-01-14 17:09:38 +0000 | [diff] [blame] | 150 | printf ("%s version %s\n", progname, QUAGGA_VERSION); |
| 151 | printf ("%s\n", QUAGGA_COPYRIGHT); |
hasso | 6590f2c | 2004-10-19 20:40:08 +0000 | [diff] [blame] | 152 | } |
| 153 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 154 | |
| 155 | /* Utility function to concatenate argv argument into a single string |
| 156 | with inserting ' ' character between each argument. */ |
| 157 | char * |
paul | 42d4986 | 2004-10-13 05:22:18 +0000 | [diff] [blame] | 158 | argv_concat (const char **argv, int argc, int shift) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 159 | { |
| 160 | int i; |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 161 | size_t len; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 162 | char *str; |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 163 | char *p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 164 | |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 165 | len = 0; |
| 166 | for (i = shift; i < argc; i++) |
| 167 | len += strlen(argv[i])+1; |
| 168 | if (!len) |
| 169 | return NULL; |
| 170 | p = str = XMALLOC(MTYPE_TMP, len); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 171 | for (i = shift; i < argc; i++) |
| 172 | { |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 173 | size_t arglen; |
| 174 | memcpy(p, argv[i], (arglen = strlen(argv[i]))); |
| 175 | p += arglen; |
| 176 | *p++ = ' '; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 177 | } |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 178 | *(p-1) = '\0'; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 179 | return str; |
| 180 | } |
| 181 | |
| 182 | /* Install top node of command vector. */ |
| 183 | void |
| 184 | install_node (struct cmd_node *node, |
| 185 | int (*func) (struct vty *)) |
| 186 | { |
| 187 | vector_set_index (cmdvec, node->node, node); |
| 188 | node->func = func; |
| 189 | node->cmd_vector = vector_init (VECTOR_MIN_SIZE); |
| 190 | } |
| 191 | |
| 192 | /* Compare two command's string. Used in sort_node (). */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 193 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 194 | cmp_node (const void *p, const void *q) |
| 195 | { |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 196 | const struct cmd_element *a = *(struct cmd_element **)p; |
| 197 | const struct cmd_element *b = *(struct cmd_element **)q; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 198 | |
| 199 | return strcmp (a->string, b->string); |
| 200 | } |
| 201 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 202 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 203 | cmp_desc (const void *p, const void *q) |
| 204 | { |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 205 | const struct desc *a = *(struct desc **)p; |
| 206 | const struct desc *b = *(struct desc **)q; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 207 | |
| 208 | return strcmp (a->cmd, b->cmd); |
| 209 | } |
| 210 | |
| 211 | /* Sort each node's command element according to command string. */ |
| 212 | void |
| 213 | sort_node () |
| 214 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 215 | unsigned int i, j; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 216 | struct cmd_node *cnode; |
| 217 | vector descvec; |
| 218 | struct cmd_element *cmd_element; |
| 219 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 220 | for (i = 0; i < vector_active (cmdvec); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 221 | if ((cnode = vector_slot (cmdvec, i)) != NULL) |
| 222 | { |
| 223 | vector cmd_vector = cnode->cmd_vector; |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 224 | qsort (cmd_vector->index, vector_active (cmd_vector), |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 225 | sizeof (void *), cmp_node); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 226 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 227 | for (j = 0; j < vector_active (cmd_vector); j++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 228 | if ((cmd_element = vector_slot (cmd_vector, j)) != NULL |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 229 | && vector_active (cmd_element->strvec)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 230 | { |
| 231 | descvec = vector_slot (cmd_element->strvec, |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 232 | vector_active (cmd_element->strvec) - 1); |
| 233 | qsort (descvec->index, vector_active (descvec), |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 234 | sizeof (void *), cmp_desc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | /* Breaking up string into each command piece. I assume given |
| 240 | character is separated by a space character. Return value is a |
| 241 | vector which includes char ** data element. */ |
| 242 | vector |
hasso | ea8e9d9 | 2004-10-07 21:32:14 +0000 | [diff] [blame] | 243 | cmd_make_strvec (const char *string) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 244 | { |
hasso | ea8e9d9 | 2004-10-07 21:32:14 +0000 | [diff] [blame] | 245 | const char *cp, *start; |
| 246 | char *token; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 247 | int strlen; |
| 248 | vector strvec; |
| 249 | |
| 250 | if (string == NULL) |
| 251 | return NULL; |
| 252 | |
| 253 | cp = string; |
| 254 | |
| 255 | /* Skip white spaces. */ |
| 256 | while (isspace ((int) *cp) && *cp != '\0') |
| 257 | cp++; |
| 258 | |
| 259 | /* Return if there is only white spaces */ |
| 260 | if (*cp == '\0') |
| 261 | return NULL; |
| 262 | |
| 263 | if (*cp == '!' || *cp == '#') |
| 264 | return NULL; |
| 265 | |
| 266 | /* Prepare return vector. */ |
| 267 | strvec = vector_init (VECTOR_MIN_SIZE); |
| 268 | |
| 269 | /* Copy each command piece and set into vector. */ |
| 270 | while (1) |
| 271 | { |
| 272 | start = cp; |
| 273 | while (!(isspace ((int) *cp) || *cp == '\r' || *cp == '\n') && |
| 274 | *cp != '\0') |
| 275 | cp++; |
| 276 | strlen = cp - start; |
| 277 | token = XMALLOC (MTYPE_STRVEC, strlen + 1); |
| 278 | memcpy (token, start, strlen); |
| 279 | *(token + strlen) = '\0'; |
| 280 | vector_set (strvec, token); |
| 281 | |
| 282 | while ((isspace ((int) *cp) || *cp == '\n' || *cp == '\r') && |
| 283 | *cp != '\0') |
| 284 | cp++; |
| 285 | |
| 286 | if (*cp == '\0') |
| 287 | return strvec; |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | /* Free allocated string vector. */ |
| 292 | void |
| 293 | cmd_free_strvec (vector v) |
| 294 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 295 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 296 | char *cp; |
| 297 | |
| 298 | if (!v) |
| 299 | return; |
| 300 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 301 | for (i = 0; i < vector_active (v); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 302 | if ((cp = vector_slot (v, i)) != NULL) |
| 303 | XFREE (MTYPE_STRVEC, cp); |
| 304 | |
| 305 | vector_free (v); |
| 306 | } |
| 307 | |
| 308 | /* Fetch next description. Used in cmd_make_descvec(). */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 309 | static char * |
hasso | 6ad96ea | 2004-10-07 19:33:46 +0000 | [diff] [blame] | 310 | cmd_desc_str (const char **string) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 311 | { |
hasso | 6ad96ea | 2004-10-07 19:33:46 +0000 | [diff] [blame] | 312 | const char *cp, *start; |
| 313 | char *token; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 314 | int strlen; |
| 315 | |
| 316 | cp = *string; |
| 317 | |
| 318 | if (cp == NULL) |
| 319 | return NULL; |
| 320 | |
| 321 | /* Skip white spaces. */ |
| 322 | while (isspace ((int) *cp) && *cp != '\0') |
| 323 | cp++; |
| 324 | |
| 325 | /* Return if there is only white spaces */ |
| 326 | if (*cp == '\0') |
| 327 | return NULL; |
| 328 | |
| 329 | start = cp; |
| 330 | |
| 331 | while (!(*cp == '\r' || *cp == '\n') && *cp != '\0') |
| 332 | cp++; |
| 333 | |
| 334 | strlen = cp - start; |
| 335 | token = XMALLOC (MTYPE_STRVEC, strlen + 1); |
| 336 | memcpy (token, start, strlen); |
| 337 | *(token + strlen) = '\0'; |
| 338 | |
| 339 | *string = cp; |
| 340 | |
| 341 | return token; |
| 342 | } |
| 343 | |
| 344 | /* New string vector. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 345 | static vector |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 346 | cmd_make_descvec (const char *string, const char *descstr) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 347 | { |
| 348 | int multiple = 0; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 349 | const char *sp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 350 | char *token; |
| 351 | int len; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 352 | const char *cp; |
| 353 | const char *dp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 354 | vector allvec; |
| 355 | vector strvec = NULL; |
| 356 | struct desc *desc; |
| 357 | |
| 358 | cp = string; |
| 359 | dp = descstr; |
| 360 | |
| 361 | if (cp == NULL) |
| 362 | return NULL; |
| 363 | |
| 364 | allvec = vector_init (VECTOR_MIN_SIZE); |
| 365 | |
| 366 | while (1) |
| 367 | { |
| 368 | while (isspace ((int) *cp) && *cp != '\0') |
| 369 | cp++; |
| 370 | |
| 371 | if (*cp == '(') |
| 372 | { |
| 373 | multiple = 1; |
| 374 | cp++; |
| 375 | } |
| 376 | if (*cp == ')') |
| 377 | { |
| 378 | multiple = 0; |
| 379 | cp++; |
| 380 | } |
| 381 | if (*cp == '|') |
| 382 | { |
| 383 | if (! multiple) |
| 384 | { |
| 385 | fprintf (stderr, "Command parse error!: %s\n", string); |
| 386 | exit (1); |
| 387 | } |
| 388 | cp++; |
| 389 | } |
| 390 | |
| 391 | while (isspace ((int) *cp) && *cp != '\0') |
| 392 | cp++; |
| 393 | |
| 394 | if (*cp == '(') |
| 395 | { |
| 396 | multiple = 1; |
| 397 | cp++; |
| 398 | } |
| 399 | |
| 400 | if (*cp == '\0') |
| 401 | return allvec; |
| 402 | |
| 403 | sp = cp; |
| 404 | |
| 405 | while (! (isspace ((int) *cp) || *cp == '\r' || *cp == '\n' || *cp == ')' || *cp == '|') && *cp != '\0') |
| 406 | cp++; |
| 407 | |
| 408 | len = cp - sp; |
| 409 | |
| 410 | token = XMALLOC (MTYPE_STRVEC, len + 1); |
| 411 | memcpy (token, sp, len); |
| 412 | *(token + len) = '\0'; |
| 413 | |
| 414 | desc = XCALLOC (MTYPE_DESC, sizeof (struct desc)); |
| 415 | desc->cmd = token; |
| 416 | desc->str = cmd_desc_str (&dp); |
| 417 | |
| 418 | if (multiple) |
| 419 | { |
| 420 | if (multiple == 1) |
| 421 | { |
| 422 | strvec = vector_init (VECTOR_MIN_SIZE); |
| 423 | vector_set (allvec, strvec); |
| 424 | } |
| 425 | multiple++; |
| 426 | } |
| 427 | else |
| 428 | { |
| 429 | strvec = vector_init (VECTOR_MIN_SIZE); |
| 430 | vector_set (allvec, strvec); |
| 431 | } |
| 432 | vector_set (strvec, desc); |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | /* Count mandantory string vector size. This is to determine inputed |
| 437 | command has enough command length. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 438 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 439 | cmd_cmdsize (vector strvec) |
| 440 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 441 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 442 | int size = 0; |
| 443 | vector descvec; |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 444 | struct desc *desc; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 445 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 446 | for (i = 0; i < vector_active (strvec); i++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 447 | if ((descvec = vector_slot (strvec, i)) != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 448 | { |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 449 | if ((vector_active (descvec)) == 1 |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 450 | && (desc = vector_slot (descvec, 0)) != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 451 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 452 | if (desc->cmd == NULL || CMD_OPTION (desc->cmd)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 453 | return size; |
| 454 | else |
| 455 | size++; |
| 456 | } |
| 457 | else |
| 458 | size++; |
| 459 | } |
| 460 | return size; |
| 461 | } |
| 462 | |
| 463 | /* Return prompt character of specified node. */ |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 464 | const char * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 465 | cmd_prompt (enum node_type node) |
| 466 | { |
| 467 | struct cmd_node *cnode; |
| 468 | |
| 469 | cnode = vector_slot (cmdvec, node); |
| 470 | return cnode->prompt; |
| 471 | } |
| 472 | |
| 473 | /* Install a command into a node. */ |
| 474 | void |
| 475 | install_element (enum node_type ntype, struct cmd_element *cmd) |
| 476 | { |
| 477 | struct cmd_node *cnode; |
paul | eb820af | 2005-09-05 11:54:13 +0000 | [diff] [blame] | 478 | |
| 479 | /* cmd_init hasn't been called */ |
| 480 | if (!cmdvec) |
| 481 | return; |
| 482 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 483 | cnode = vector_slot (cmdvec, ntype); |
| 484 | |
| 485 | if (cnode == NULL) |
| 486 | { |
| 487 | fprintf (stderr, "Command node %d doesn't exist, please check it\n", |
| 488 | ntype); |
| 489 | exit (1); |
| 490 | } |
| 491 | |
| 492 | vector_set (cnode->cmd_vector, cmd); |
| 493 | |
| 494 | cmd->strvec = cmd_make_descvec (cmd->string, cmd->doc); |
| 495 | cmd->cmdsize = cmd_cmdsize (cmd->strvec); |
| 496 | } |
| 497 | |
| 498 | static unsigned char itoa64[] = |
| 499 | "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; |
| 500 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 501 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 502 | to64(char *s, long v, int n) |
| 503 | { |
| 504 | while (--n >= 0) |
| 505 | { |
| 506 | *s++ = itoa64[v&0x3f]; |
| 507 | v >>= 6; |
| 508 | } |
| 509 | } |
| 510 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 511 | static char * |
| 512 | zencrypt (const char *passwd) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 513 | { |
| 514 | char salt[6]; |
| 515 | struct timeval tv; |
| 516 | char *crypt (const char *, const char *); |
| 517 | |
| 518 | gettimeofday(&tv,0); |
| 519 | |
| 520 | to64(&salt[0], random(), 3); |
| 521 | to64(&salt[3], tv.tv_usec, 3); |
| 522 | salt[5] = '\0'; |
| 523 | |
| 524 | return crypt (passwd, salt); |
| 525 | } |
| 526 | |
| 527 | /* This function write configuration of this host. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 528 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 529 | config_write_host (struct vty *vty) |
| 530 | { |
| 531 | if (host.name) |
| 532 | vty_out (vty, "hostname %s%s", host.name, VTY_NEWLINE); |
| 533 | |
| 534 | if (host.encrypt) |
| 535 | { |
| 536 | if (host.password_encrypt) |
| 537 | vty_out (vty, "password 8 %s%s", host.password_encrypt, VTY_NEWLINE); |
| 538 | if (host.enable_encrypt) |
| 539 | vty_out (vty, "enable password 8 %s%s", host.enable_encrypt, VTY_NEWLINE); |
| 540 | } |
| 541 | else |
| 542 | { |
| 543 | if (host.password) |
| 544 | vty_out (vty, "password %s%s", host.password, VTY_NEWLINE); |
| 545 | if (host.enable) |
| 546 | vty_out (vty, "enable password %s%s", host.enable, VTY_NEWLINE); |
| 547 | } |
| 548 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 549 | if (zlog_default->default_lvl != LOG_DEBUG) |
ajs | 82146b8 | 2004-12-07 17:15:55 +0000 | [diff] [blame] | 550 | { |
| 551 | vty_out (vty, "! N.B. The 'log trap' command is deprecated.%s", |
| 552 | VTY_NEWLINE); |
| 553 | vty_out (vty, "log trap %s%s", |
| 554 | zlog_priority[zlog_default->default_lvl], VTY_NEWLINE); |
| 555 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 556 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 557 | if (host.logfile && (zlog_default->maxlvl[ZLOG_DEST_FILE] != ZLOG_DISABLED)) |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 558 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 559 | vty_out (vty, "log file %s", host.logfile); |
| 560 | if (zlog_default->maxlvl[ZLOG_DEST_FILE] != zlog_default->default_lvl) |
| 561 | vty_out (vty, " %s", |
| 562 | zlog_priority[zlog_default->maxlvl[ZLOG_DEST_FILE]]); |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 563 | vty_out (vty, "%s", VTY_NEWLINE); |
| 564 | } |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 565 | |
| 566 | if (zlog_default->maxlvl[ZLOG_DEST_STDOUT] != ZLOG_DISABLED) |
| 567 | { |
| 568 | vty_out (vty, "log stdout"); |
| 569 | if (zlog_default->maxlvl[ZLOG_DEST_STDOUT] != zlog_default->default_lvl) |
| 570 | vty_out (vty, " %s", |
| 571 | zlog_priority[zlog_default->maxlvl[ZLOG_DEST_STDOUT]]); |
| 572 | vty_out (vty, "%s", VTY_NEWLINE); |
| 573 | } |
| 574 | |
| 575 | if (zlog_default->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED) |
| 576 | vty_out(vty,"no log monitor%s",VTY_NEWLINE); |
| 577 | else if (zlog_default->maxlvl[ZLOG_DEST_MONITOR] != zlog_default->default_lvl) |
| 578 | vty_out(vty,"log monitor %s%s", |
| 579 | zlog_priority[zlog_default->maxlvl[ZLOG_DEST_MONITOR]],VTY_NEWLINE); |
| 580 | |
| 581 | if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != ZLOG_DISABLED) |
| 582 | { |
| 583 | vty_out (vty, "log syslog"); |
| 584 | if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != zlog_default->default_lvl) |
| 585 | vty_out (vty, " %s", |
| 586 | zlog_priority[zlog_default->maxlvl[ZLOG_DEST_SYSLOG]]); |
| 587 | vty_out (vty, "%s", VTY_NEWLINE); |
| 588 | } |
| 589 | |
| 590 | if (zlog_default->facility != LOG_DAEMON) |
| 591 | vty_out (vty, "log facility %s%s", |
| 592 | facility_name(zlog_default->facility), VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 593 | |
| 594 | if (zlog_default->record_priority == 1) |
| 595 | vty_out (vty, "log record-priority%s", VTY_NEWLINE); |
| 596 | |
| 597 | if (host.advanced) |
| 598 | vty_out (vty, "service advanced-vty%s", VTY_NEWLINE); |
| 599 | |
| 600 | if (host.encrypt) |
| 601 | vty_out (vty, "service password-encryption%s", VTY_NEWLINE); |
| 602 | |
| 603 | if (host.lines >= 0) |
| 604 | vty_out (vty, "service terminal-length %d%s", host.lines, |
| 605 | VTY_NEWLINE); |
| 606 | |
paul | 3b0c5d9 | 2005-03-08 10:43:43 +0000 | [diff] [blame] | 607 | if (host.motdfile) |
| 608 | vty_out (vty, "banner motd file %s%s", host.motdfile, VTY_NEWLINE); |
| 609 | else if (! host.motd) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 610 | vty_out (vty, "no banner motd%s", VTY_NEWLINE); |
| 611 | |
| 612 | return 1; |
| 613 | } |
| 614 | |
| 615 | /* Utility function for getting command vector. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 616 | static vector |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 617 | cmd_node_vector (vector v, enum node_type ntype) |
| 618 | { |
| 619 | struct cmd_node *cnode = vector_slot (v, ntype); |
| 620 | return cnode->cmd_vector; |
| 621 | } |
| 622 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 623 | #if 0 |
| 624 | /* Filter command vector by symbol. This function is not actually used; |
| 625 | * should it be deleted? */ |
| 626 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 627 | cmd_filter_by_symbol (char *command, char *symbol) |
| 628 | { |
| 629 | int i, lim; |
| 630 | |
| 631 | if (strcmp (symbol, "IPV4_ADDRESS") == 0) |
| 632 | { |
| 633 | i = 0; |
| 634 | lim = strlen (command); |
| 635 | while (i < lim) |
| 636 | { |
| 637 | if (! (isdigit ((int) command[i]) || command[i] == '.' || command[i] == '/')) |
| 638 | return 1; |
| 639 | i++; |
| 640 | } |
| 641 | return 0; |
| 642 | } |
| 643 | if (strcmp (symbol, "STRING") == 0) |
| 644 | { |
| 645 | i = 0; |
| 646 | lim = strlen (command); |
| 647 | while (i < lim) |
| 648 | { |
| 649 | if (! (isalpha ((int) command[i]) || command[i] == '_' || command[i] == '-')) |
| 650 | return 1; |
| 651 | i++; |
| 652 | } |
| 653 | return 0; |
| 654 | } |
| 655 | if (strcmp (symbol, "IFNAME") == 0) |
| 656 | { |
| 657 | i = 0; |
| 658 | lim = strlen (command); |
| 659 | while (i < lim) |
| 660 | { |
| 661 | if (! isalnum ((int) command[i])) |
| 662 | return 1; |
| 663 | i++; |
| 664 | } |
| 665 | return 0; |
| 666 | } |
| 667 | return 0; |
| 668 | } |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 669 | #endif |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 670 | |
| 671 | /* Completion match types. */ |
| 672 | enum match_type |
| 673 | { |
| 674 | no_match, |
| 675 | extend_match, |
| 676 | ipv4_prefix_match, |
| 677 | ipv4_match, |
| 678 | ipv6_prefix_match, |
| 679 | ipv6_match, |
| 680 | range_match, |
| 681 | vararg_match, |
| 682 | partly_match, |
| 683 | exact_match |
| 684 | }; |
| 685 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 686 | static enum match_type |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 687 | cmd_ipv4_match (const char *str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 688 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 689 | const char *sp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 690 | int dots = 0, nums = 0; |
| 691 | char buf[4]; |
| 692 | |
| 693 | if (str == NULL) |
| 694 | return partly_match; |
| 695 | |
| 696 | for (;;) |
| 697 | { |
| 698 | memset (buf, 0, sizeof (buf)); |
| 699 | sp = str; |
| 700 | while (*str != '\0') |
| 701 | { |
| 702 | if (*str == '.') |
| 703 | { |
| 704 | if (dots >= 3) |
| 705 | return no_match; |
| 706 | |
| 707 | if (*(str + 1) == '.') |
| 708 | return no_match; |
| 709 | |
| 710 | if (*(str + 1) == '\0') |
| 711 | return partly_match; |
| 712 | |
| 713 | dots++; |
| 714 | break; |
| 715 | } |
| 716 | if (!isdigit ((int) *str)) |
| 717 | return no_match; |
| 718 | |
| 719 | str++; |
| 720 | } |
| 721 | |
| 722 | if (str - sp > 3) |
| 723 | return no_match; |
| 724 | |
| 725 | strncpy (buf, sp, str - sp); |
| 726 | if (atoi (buf) > 255) |
| 727 | return no_match; |
| 728 | |
| 729 | nums++; |
| 730 | |
| 731 | if (*str == '\0') |
| 732 | break; |
| 733 | |
| 734 | str++; |
| 735 | } |
| 736 | |
| 737 | if (nums < 4) |
| 738 | return partly_match; |
| 739 | |
| 740 | return exact_match; |
| 741 | } |
| 742 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 743 | static enum match_type |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 744 | cmd_ipv4_prefix_match (const char *str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 745 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 746 | const char *sp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 747 | int dots = 0; |
| 748 | char buf[4]; |
| 749 | |
| 750 | if (str == NULL) |
| 751 | return partly_match; |
| 752 | |
| 753 | for (;;) |
| 754 | { |
| 755 | memset (buf, 0, sizeof (buf)); |
| 756 | sp = str; |
| 757 | while (*str != '\0' && *str != '/') |
| 758 | { |
| 759 | if (*str == '.') |
| 760 | { |
| 761 | if (dots == 3) |
| 762 | return no_match; |
| 763 | |
| 764 | if (*(str + 1) == '.' || *(str + 1) == '/') |
| 765 | return no_match; |
| 766 | |
| 767 | if (*(str + 1) == '\0') |
| 768 | return partly_match; |
| 769 | |
| 770 | dots++; |
| 771 | break; |
| 772 | } |
| 773 | |
| 774 | if (!isdigit ((int) *str)) |
| 775 | return no_match; |
| 776 | |
| 777 | str++; |
| 778 | } |
| 779 | |
| 780 | if (str - sp > 3) |
| 781 | return no_match; |
| 782 | |
| 783 | strncpy (buf, sp, str - sp); |
| 784 | if (atoi (buf) > 255) |
| 785 | return no_match; |
| 786 | |
| 787 | if (dots == 3) |
| 788 | { |
| 789 | if (*str == '/') |
| 790 | { |
| 791 | if (*(str + 1) == '\0') |
| 792 | return partly_match; |
| 793 | |
| 794 | str++; |
| 795 | break; |
| 796 | } |
| 797 | else if (*str == '\0') |
| 798 | return partly_match; |
| 799 | } |
| 800 | |
| 801 | if (*str == '\0') |
| 802 | return partly_match; |
| 803 | |
| 804 | str++; |
| 805 | } |
| 806 | |
| 807 | sp = str; |
| 808 | while (*str != '\0') |
| 809 | { |
| 810 | if (!isdigit ((int) *str)) |
| 811 | return no_match; |
| 812 | |
| 813 | str++; |
| 814 | } |
| 815 | |
| 816 | if (atoi (sp) > 32) |
| 817 | return no_match; |
| 818 | |
| 819 | return exact_match; |
| 820 | } |
| 821 | |
| 822 | #define IPV6_ADDR_STR "0123456789abcdefABCDEF:.%" |
| 823 | #define IPV6_PREFIX_STR "0123456789abcdefABCDEF:.%/" |
| 824 | #define STATE_START 1 |
| 825 | #define STATE_COLON 2 |
| 826 | #define STATE_DOUBLE 3 |
| 827 | #define STATE_ADDR 4 |
| 828 | #define STATE_DOT 5 |
| 829 | #define STATE_SLASH 6 |
| 830 | #define STATE_MASK 7 |
| 831 | |
paul | 22e0a9e | 2003-07-11 17:55:46 +0000 | [diff] [blame] | 832 | #ifdef HAVE_IPV6 |
| 833 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 834 | static enum match_type |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 835 | cmd_ipv6_match (const char *str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 836 | { |
| 837 | int state = STATE_START; |
| 838 | int colons = 0, nums = 0, double_colon = 0; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 839 | const char *sp = NULL; |
hasso | 726f9b2 | 2003-05-25 21:04:54 +0000 | [diff] [blame] | 840 | struct sockaddr_in6 sin6_dummy; |
| 841 | int ret; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 842 | |
| 843 | if (str == NULL) |
| 844 | return partly_match; |
| 845 | |
| 846 | if (strspn (str, IPV6_ADDR_STR) != strlen (str)) |
| 847 | return no_match; |
| 848 | |
hasso | 726f9b2 | 2003-05-25 21:04:54 +0000 | [diff] [blame] | 849 | /* use inet_pton that has a better support, |
| 850 | * for example inet_pton can support the automatic addresses: |
| 851 | * ::1.2.3.4 |
| 852 | */ |
| 853 | ret = inet_pton(AF_INET6, str, &sin6_dummy.sin6_addr); |
| 854 | |
| 855 | if (ret == 1) |
| 856 | return exact_match; |
| 857 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 858 | while (*str != '\0') |
| 859 | { |
| 860 | switch (state) |
| 861 | { |
| 862 | case STATE_START: |
| 863 | if (*str == ':') |
| 864 | { |
| 865 | if (*(str + 1) != ':' && *(str + 1) != '\0') |
| 866 | return no_match; |
| 867 | colons--; |
| 868 | state = STATE_COLON; |
| 869 | } |
| 870 | else |
| 871 | { |
| 872 | sp = str; |
| 873 | state = STATE_ADDR; |
| 874 | } |
| 875 | |
| 876 | continue; |
| 877 | case STATE_COLON: |
| 878 | colons++; |
| 879 | if (*(str + 1) == ':') |
| 880 | state = STATE_DOUBLE; |
| 881 | else |
| 882 | { |
| 883 | sp = str + 1; |
| 884 | state = STATE_ADDR; |
| 885 | } |
| 886 | break; |
| 887 | case STATE_DOUBLE: |
| 888 | if (double_colon) |
| 889 | return no_match; |
| 890 | |
| 891 | if (*(str + 1) == ':') |
| 892 | return no_match; |
| 893 | else |
| 894 | { |
| 895 | if (*(str + 1) != '\0') |
| 896 | colons++; |
| 897 | sp = str + 1; |
| 898 | state = STATE_ADDR; |
| 899 | } |
| 900 | |
| 901 | double_colon++; |
| 902 | nums++; |
| 903 | break; |
| 904 | case STATE_ADDR: |
| 905 | if (*(str + 1) == ':' || *(str + 1) == '\0') |
| 906 | { |
| 907 | if (str - sp > 3) |
| 908 | return no_match; |
| 909 | |
| 910 | nums++; |
| 911 | state = STATE_COLON; |
| 912 | } |
| 913 | if (*(str + 1) == '.') |
| 914 | state = STATE_DOT; |
| 915 | break; |
| 916 | case STATE_DOT: |
| 917 | state = STATE_ADDR; |
| 918 | break; |
| 919 | default: |
| 920 | break; |
| 921 | } |
| 922 | |
| 923 | if (nums > 8) |
| 924 | return no_match; |
| 925 | |
| 926 | if (colons > 7) |
| 927 | return no_match; |
| 928 | |
| 929 | str++; |
| 930 | } |
| 931 | |
| 932 | #if 0 |
| 933 | if (nums < 11) |
| 934 | return partly_match; |
| 935 | #endif /* 0 */ |
| 936 | |
| 937 | return exact_match; |
| 938 | } |
| 939 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 940 | static enum match_type |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 941 | cmd_ipv6_prefix_match (const char *str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 942 | { |
| 943 | int state = STATE_START; |
| 944 | int colons = 0, nums = 0, double_colon = 0; |
| 945 | int mask; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 946 | const char *sp = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 947 | char *endptr = NULL; |
| 948 | |
| 949 | if (str == NULL) |
| 950 | return partly_match; |
| 951 | |
| 952 | if (strspn (str, IPV6_PREFIX_STR) != strlen (str)) |
| 953 | return no_match; |
| 954 | |
| 955 | while (*str != '\0' && state != STATE_MASK) |
| 956 | { |
| 957 | switch (state) |
| 958 | { |
| 959 | case STATE_START: |
| 960 | if (*str == ':') |
| 961 | { |
| 962 | if (*(str + 1) != ':' && *(str + 1) != '\0') |
| 963 | return no_match; |
| 964 | colons--; |
| 965 | state = STATE_COLON; |
| 966 | } |
| 967 | else |
| 968 | { |
| 969 | sp = str; |
| 970 | state = STATE_ADDR; |
| 971 | } |
| 972 | |
| 973 | continue; |
| 974 | case STATE_COLON: |
| 975 | colons++; |
| 976 | if (*(str + 1) == '/') |
| 977 | return no_match; |
| 978 | else if (*(str + 1) == ':') |
| 979 | state = STATE_DOUBLE; |
| 980 | else |
| 981 | { |
| 982 | sp = str + 1; |
| 983 | state = STATE_ADDR; |
| 984 | } |
| 985 | break; |
| 986 | case STATE_DOUBLE: |
| 987 | if (double_colon) |
| 988 | return no_match; |
| 989 | |
| 990 | if (*(str + 1) == ':') |
| 991 | return no_match; |
| 992 | else |
| 993 | { |
| 994 | if (*(str + 1) != '\0' && *(str + 1) != '/') |
| 995 | colons++; |
| 996 | sp = str + 1; |
| 997 | |
| 998 | if (*(str + 1) == '/') |
| 999 | state = STATE_SLASH; |
| 1000 | else |
| 1001 | state = STATE_ADDR; |
| 1002 | } |
| 1003 | |
| 1004 | double_colon++; |
| 1005 | nums += 1; |
| 1006 | break; |
| 1007 | case STATE_ADDR: |
| 1008 | if (*(str + 1) == ':' || *(str + 1) == '.' |
| 1009 | || *(str + 1) == '\0' || *(str + 1) == '/') |
| 1010 | { |
| 1011 | if (str - sp > 3) |
| 1012 | return no_match; |
| 1013 | |
| 1014 | for (; sp <= str; sp++) |
| 1015 | if (*sp == '/') |
| 1016 | return no_match; |
| 1017 | |
| 1018 | nums++; |
| 1019 | |
| 1020 | if (*(str + 1) == ':') |
| 1021 | state = STATE_COLON; |
| 1022 | else if (*(str + 1) == '.') |
| 1023 | state = STATE_DOT; |
| 1024 | else if (*(str + 1) == '/') |
| 1025 | state = STATE_SLASH; |
| 1026 | } |
| 1027 | break; |
| 1028 | case STATE_DOT: |
| 1029 | state = STATE_ADDR; |
| 1030 | break; |
| 1031 | case STATE_SLASH: |
| 1032 | if (*(str + 1) == '\0') |
| 1033 | return partly_match; |
| 1034 | |
| 1035 | state = STATE_MASK; |
| 1036 | break; |
| 1037 | default: |
| 1038 | break; |
| 1039 | } |
| 1040 | |
| 1041 | if (nums > 11) |
| 1042 | return no_match; |
| 1043 | |
| 1044 | if (colons > 7) |
| 1045 | return no_match; |
| 1046 | |
| 1047 | str++; |
| 1048 | } |
| 1049 | |
| 1050 | if (state < STATE_MASK) |
| 1051 | return partly_match; |
| 1052 | |
| 1053 | mask = strtol (str, &endptr, 10); |
| 1054 | if (*endptr != '\0') |
| 1055 | return no_match; |
| 1056 | |
| 1057 | if (mask < 0 || mask > 128) |
| 1058 | return no_match; |
| 1059 | |
| 1060 | /* I don't know why mask < 13 makes command match partly. |
| 1061 | Forgive me to make this comments. I Want to set static default route |
| 1062 | because of lack of function to originate default in ospf6d; sorry |
| 1063 | yasu |
| 1064 | if (mask < 13) |
| 1065 | return partly_match; |
| 1066 | */ |
| 1067 | |
| 1068 | return exact_match; |
| 1069 | } |
| 1070 | |
paul | 22e0a9e | 2003-07-11 17:55:46 +0000 | [diff] [blame] | 1071 | #endif /* HAVE_IPV6 */ |
| 1072 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1073 | #define DECIMAL_STRLEN_MAX 10 |
| 1074 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1075 | static int |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1076 | cmd_range_match (const char *range, const char *str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1077 | { |
| 1078 | char *p; |
| 1079 | char buf[DECIMAL_STRLEN_MAX + 1]; |
| 1080 | char *endptr = NULL; |
| 1081 | unsigned long min, max, val; |
| 1082 | |
| 1083 | if (str == NULL) |
| 1084 | return 1; |
| 1085 | |
| 1086 | val = strtoul (str, &endptr, 10); |
| 1087 | if (*endptr != '\0') |
| 1088 | return 0; |
| 1089 | |
| 1090 | range++; |
| 1091 | p = strchr (range, '-'); |
| 1092 | if (p == NULL) |
| 1093 | return 0; |
| 1094 | if (p - range > DECIMAL_STRLEN_MAX) |
| 1095 | return 0; |
| 1096 | strncpy (buf, range, p - range); |
| 1097 | buf[p - range] = '\0'; |
| 1098 | min = strtoul (buf, &endptr, 10); |
| 1099 | if (*endptr != '\0') |
| 1100 | return 0; |
| 1101 | |
| 1102 | range = p + 1; |
| 1103 | p = strchr (range, '>'); |
| 1104 | if (p == NULL) |
| 1105 | return 0; |
| 1106 | if (p - range > DECIMAL_STRLEN_MAX) |
| 1107 | return 0; |
| 1108 | strncpy (buf, range, p - range); |
| 1109 | buf[p - range] = '\0'; |
| 1110 | max = strtoul (buf, &endptr, 10); |
| 1111 | if (*endptr != '\0') |
| 1112 | return 0; |
| 1113 | |
| 1114 | if (val < min || val > max) |
| 1115 | return 0; |
| 1116 | |
| 1117 | return 1; |
| 1118 | } |
| 1119 | |
| 1120 | /* Make completion match and return match type flag. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1121 | static enum match_type |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1122 | cmd_filter_by_completion (char *command, vector v, unsigned int index) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1123 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1124 | unsigned int i; |
| 1125 | const char *str; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1126 | struct cmd_element *cmd_element; |
| 1127 | enum match_type match_type; |
| 1128 | vector descvec; |
| 1129 | struct desc *desc; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1130 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1131 | match_type = no_match; |
| 1132 | |
| 1133 | /* If command and cmd_element string does not match set NULL to vector */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1134 | for (i = 0; i < vector_active (v); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1135 | if ((cmd_element = vector_slot (v, i)) != NULL) |
| 1136 | { |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1137 | if (index >= vector_active (cmd_element->strvec)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1138 | vector_slot (v, i) = NULL; |
| 1139 | else |
| 1140 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1141 | unsigned int j; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1142 | int matched = 0; |
| 1143 | |
| 1144 | descvec = vector_slot (cmd_element->strvec, index); |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1145 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1146 | for (j = 0; j < vector_active (descvec); j++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1147 | if ((desc = vector_slot (descvec, j))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1148 | { |
| 1149 | str = desc->cmd; |
| 1150 | |
| 1151 | if (CMD_VARARG (str)) |
| 1152 | { |
| 1153 | if (match_type < vararg_match) |
| 1154 | match_type = vararg_match; |
| 1155 | matched++; |
| 1156 | } |
| 1157 | else if (CMD_RANGE (str)) |
| 1158 | { |
| 1159 | if (cmd_range_match (str, command)) |
| 1160 | { |
| 1161 | if (match_type < range_match) |
| 1162 | match_type = range_match; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1163 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1164 | matched++; |
| 1165 | } |
| 1166 | } |
paul | 22e0a9e | 2003-07-11 17:55:46 +0000 | [diff] [blame] | 1167 | #ifdef HAVE_IPV6 |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1168 | else if (CMD_IPV6 (str)) |
| 1169 | { |
| 1170 | if (cmd_ipv6_match (command)) |
| 1171 | { |
| 1172 | if (match_type < ipv6_match) |
| 1173 | match_type = ipv6_match; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1174 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1175 | matched++; |
| 1176 | } |
| 1177 | } |
| 1178 | else if (CMD_IPV6_PREFIX (str)) |
| 1179 | { |
| 1180 | if (cmd_ipv6_prefix_match (command)) |
| 1181 | { |
| 1182 | if (match_type < ipv6_prefix_match) |
| 1183 | match_type = ipv6_prefix_match; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1184 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1185 | matched++; |
| 1186 | } |
| 1187 | } |
| 1188 | #endif /* HAVE_IPV6 */ |
| 1189 | else if (CMD_IPV4 (str)) |
| 1190 | { |
| 1191 | if (cmd_ipv4_match (command)) |
| 1192 | { |
| 1193 | if (match_type < ipv4_match) |
| 1194 | match_type = ipv4_match; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1195 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1196 | matched++; |
| 1197 | } |
| 1198 | } |
| 1199 | else if (CMD_IPV4_PREFIX (str)) |
| 1200 | { |
| 1201 | if (cmd_ipv4_prefix_match (command)) |
| 1202 | { |
| 1203 | if (match_type < ipv4_prefix_match) |
| 1204 | match_type = ipv4_prefix_match; |
| 1205 | matched++; |
| 1206 | } |
| 1207 | } |
| 1208 | else |
| 1209 | /* Check is this point's argument optional ? */ |
| 1210 | if (CMD_OPTION (str) || CMD_VARIABLE (str)) |
| 1211 | { |
| 1212 | if (match_type < extend_match) |
| 1213 | match_type = extend_match; |
| 1214 | matched++; |
| 1215 | } |
| 1216 | else if (strncmp (command, str, strlen (command)) == 0) |
| 1217 | { |
| 1218 | if (strcmp (command, str) == 0) |
| 1219 | match_type = exact_match; |
| 1220 | else |
| 1221 | { |
| 1222 | if (match_type < partly_match) |
| 1223 | match_type = partly_match; |
| 1224 | } |
| 1225 | matched++; |
| 1226 | } |
| 1227 | } |
| 1228 | if (!matched) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1229 | vector_slot (v, i) = NULL; |
| 1230 | } |
| 1231 | } |
| 1232 | return match_type; |
| 1233 | } |
| 1234 | |
| 1235 | /* Filter vector by command character with index. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1236 | static enum match_type |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1237 | cmd_filter_by_string (char *command, vector v, unsigned int index) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1238 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1239 | unsigned int i; |
| 1240 | const char *str; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1241 | struct cmd_element *cmd_element; |
| 1242 | enum match_type match_type; |
| 1243 | vector descvec; |
| 1244 | struct desc *desc; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1245 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1246 | match_type = no_match; |
| 1247 | |
| 1248 | /* If command and cmd_element string does not match set NULL to vector */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1249 | for (i = 0; i < vector_active (v); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1250 | if ((cmd_element = vector_slot (v, i)) != NULL) |
| 1251 | { |
| 1252 | /* If given index is bigger than max string vector of command, |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1253 | set NULL */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1254 | if (index >= vector_active (cmd_element->strvec)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1255 | vector_slot (v, i) = NULL; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1256 | else |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1257 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1258 | unsigned int j; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1259 | int matched = 0; |
| 1260 | |
| 1261 | descvec = vector_slot (cmd_element->strvec, index); |
| 1262 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1263 | for (j = 0; j < vector_active (descvec); j++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1264 | if ((desc = vector_slot (descvec, j))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1265 | { |
| 1266 | str = desc->cmd; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1267 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1268 | if (CMD_VARARG (str)) |
| 1269 | { |
| 1270 | if (match_type < vararg_match) |
| 1271 | match_type = vararg_match; |
| 1272 | matched++; |
| 1273 | } |
| 1274 | else if (CMD_RANGE (str)) |
| 1275 | { |
| 1276 | if (cmd_range_match (str, command)) |
| 1277 | { |
| 1278 | if (match_type < range_match) |
| 1279 | match_type = range_match; |
| 1280 | matched++; |
| 1281 | } |
| 1282 | } |
paul | 22e0a9e | 2003-07-11 17:55:46 +0000 | [diff] [blame] | 1283 | #ifdef HAVE_IPV6 |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1284 | else if (CMD_IPV6 (str)) |
| 1285 | { |
| 1286 | if (cmd_ipv6_match (command) == exact_match) |
| 1287 | { |
| 1288 | if (match_type < ipv6_match) |
| 1289 | match_type = ipv6_match; |
| 1290 | matched++; |
| 1291 | } |
| 1292 | } |
| 1293 | else if (CMD_IPV6_PREFIX (str)) |
| 1294 | { |
| 1295 | if (cmd_ipv6_prefix_match (command) == exact_match) |
| 1296 | { |
| 1297 | if (match_type < ipv6_prefix_match) |
| 1298 | match_type = ipv6_prefix_match; |
| 1299 | matched++; |
| 1300 | } |
| 1301 | } |
paul | 22e0a9e | 2003-07-11 17:55:46 +0000 | [diff] [blame] | 1302 | #endif /* HAVE_IPV6 */ |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1303 | else if (CMD_IPV4 (str)) |
| 1304 | { |
| 1305 | if (cmd_ipv4_match (command) == exact_match) |
| 1306 | { |
| 1307 | if (match_type < ipv4_match) |
| 1308 | match_type = ipv4_match; |
| 1309 | matched++; |
| 1310 | } |
| 1311 | } |
| 1312 | else if (CMD_IPV4_PREFIX (str)) |
| 1313 | { |
| 1314 | if (cmd_ipv4_prefix_match (command) == exact_match) |
| 1315 | { |
| 1316 | if (match_type < ipv4_prefix_match) |
| 1317 | match_type = ipv4_prefix_match; |
| 1318 | matched++; |
| 1319 | } |
| 1320 | } |
| 1321 | else if (CMD_OPTION (str) || CMD_VARIABLE (str)) |
| 1322 | { |
| 1323 | if (match_type < extend_match) |
| 1324 | match_type = extend_match; |
| 1325 | matched++; |
| 1326 | } |
| 1327 | else |
| 1328 | { |
| 1329 | if (strcmp (command, str) == 0) |
| 1330 | { |
| 1331 | match_type = exact_match; |
| 1332 | matched++; |
| 1333 | } |
| 1334 | } |
| 1335 | } |
| 1336 | if (!matched) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1337 | vector_slot (v, i) = NULL; |
| 1338 | } |
| 1339 | } |
| 1340 | return match_type; |
| 1341 | } |
| 1342 | |
| 1343 | /* Check ambiguous match */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1344 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1345 | is_cmd_ambiguous (char *command, vector v, int index, enum match_type type) |
| 1346 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1347 | unsigned int i; |
| 1348 | unsigned int j; |
| 1349 | const char *str = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1350 | struct cmd_element *cmd_element; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1351 | const char *matched = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1352 | vector descvec; |
| 1353 | struct desc *desc; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1354 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1355 | for (i = 0; i < vector_active (v); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1356 | if ((cmd_element = vector_slot (v, i)) != NULL) |
| 1357 | { |
| 1358 | int match = 0; |
| 1359 | |
| 1360 | descvec = vector_slot (cmd_element->strvec, index); |
| 1361 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1362 | for (j = 0; j < vector_active (descvec); j++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1363 | if ((desc = vector_slot (descvec, j))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1364 | { |
| 1365 | enum match_type ret; |
| 1366 | |
| 1367 | str = desc->cmd; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1368 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1369 | switch (type) |
| 1370 | { |
| 1371 | case exact_match: |
| 1372 | if (!(CMD_OPTION (str) || CMD_VARIABLE (str)) |
| 1373 | && strcmp (command, str) == 0) |
| 1374 | match++; |
| 1375 | break; |
| 1376 | case partly_match: |
| 1377 | if (!(CMD_OPTION (str) || CMD_VARIABLE (str)) |
| 1378 | && strncmp (command, str, strlen (command)) == 0) |
| 1379 | { |
| 1380 | if (matched && strcmp (matched, str) != 0) |
| 1381 | return 1; /* There is ambiguous match. */ |
| 1382 | else |
| 1383 | matched = str; |
| 1384 | match++; |
| 1385 | } |
| 1386 | break; |
| 1387 | case range_match: |
| 1388 | if (cmd_range_match (str, command)) |
| 1389 | { |
| 1390 | if (matched && strcmp (matched, str) != 0) |
| 1391 | return 1; |
| 1392 | else |
| 1393 | matched = str; |
| 1394 | match++; |
| 1395 | } |
| 1396 | break; |
| 1397 | #ifdef HAVE_IPV6 |
| 1398 | case ipv6_match: |
| 1399 | if (CMD_IPV6 (str)) |
| 1400 | match++; |
| 1401 | break; |
| 1402 | case ipv6_prefix_match: |
| 1403 | if ((ret = cmd_ipv6_prefix_match (command)) != no_match) |
| 1404 | { |
| 1405 | if (ret == partly_match) |
| 1406 | return 2; /* There is incomplete match. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1407 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1408 | match++; |
| 1409 | } |
| 1410 | break; |
| 1411 | #endif /* HAVE_IPV6 */ |
| 1412 | case ipv4_match: |
| 1413 | if (CMD_IPV4 (str)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1414 | match++; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1415 | break; |
| 1416 | case ipv4_prefix_match: |
| 1417 | if ((ret = cmd_ipv4_prefix_match (command)) != no_match) |
| 1418 | { |
| 1419 | if (ret == partly_match) |
| 1420 | return 2; /* There is incomplete match. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1421 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1422 | match++; |
| 1423 | } |
| 1424 | break; |
| 1425 | case extend_match: |
| 1426 | if (CMD_OPTION (str) || CMD_VARIABLE (str)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1427 | match++; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1428 | break; |
| 1429 | case no_match: |
| 1430 | default: |
| 1431 | break; |
| 1432 | } |
| 1433 | } |
| 1434 | if (!match) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1435 | vector_slot (v, i) = NULL; |
| 1436 | } |
| 1437 | return 0; |
| 1438 | } |
| 1439 | |
| 1440 | /* If src matches dst return dst string, otherwise return NULL */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1441 | static const char * |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1442 | cmd_entry_function (const char *src, const char *dst) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1443 | { |
| 1444 | /* Skip variable arguments. */ |
| 1445 | if (CMD_OPTION (dst) || CMD_VARIABLE (dst) || CMD_VARARG (dst) || |
| 1446 | CMD_IPV4 (dst) || CMD_IPV4_PREFIX (dst) || CMD_RANGE (dst)) |
| 1447 | return NULL; |
| 1448 | |
| 1449 | /* In case of 'command \t', given src is NULL string. */ |
| 1450 | if (src == NULL) |
| 1451 | return dst; |
| 1452 | |
| 1453 | /* Matched with input string. */ |
| 1454 | if (strncmp (src, dst, strlen (src)) == 0) |
| 1455 | return dst; |
| 1456 | |
| 1457 | return NULL; |
| 1458 | } |
| 1459 | |
| 1460 | /* If src matches dst return dst string, otherwise return NULL */ |
| 1461 | /* This version will return the dst string always if it is |
| 1462 | CMD_VARIABLE for '?' key processing */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1463 | static const char * |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1464 | cmd_entry_function_desc (const char *src, const char *dst) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1465 | { |
| 1466 | if (CMD_VARARG (dst)) |
| 1467 | return dst; |
| 1468 | |
| 1469 | if (CMD_RANGE (dst)) |
| 1470 | { |
| 1471 | if (cmd_range_match (dst, src)) |
| 1472 | return dst; |
| 1473 | else |
| 1474 | return NULL; |
| 1475 | } |
| 1476 | |
paul | 22e0a9e | 2003-07-11 17:55:46 +0000 | [diff] [blame] | 1477 | #ifdef HAVE_IPV6 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1478 | if (CMD_IPV6 (dst)) |
| 1479 | { |
| 1480 | if (cmd_ipv6_match (src)) |
| 1481 | return dst; |
| 1482 | else |
| 1483 | return NULL; |
| 1484 | } |
| 1485 | |
| 1486 | if (CMD_IPV6_PREFIX (dst)) |
| 1487 | { |
| 1488 | if (cmd_ipv6_prefix_match (src)) |
| 1489 | return dst; |
| 1490 | else |
| 1491 | return NULL; |
| 1492 | } |
paul | 22e0a9e | 2003-07-11 17:55:46 +0000 | [diff] [blame] | 1493 | #endif /* HAVE_IPV6 */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1494 | |
| 1495 | if (CMD_IPV4 (dst)) |
| 1496 | { |
| 1497 | if (cmd_ipv4_match (src)) |
| 1498 | return dst; |
| 1499 | else |
| 1500 | return NULL; |
| 1501 | } |
| 1502 | |
| 1503 | if (CMD_IPV4_PREFIX (dst)) |
| 1504 | { |
| 1505 | if (cmd_ipv4_prefix_match (src)) |
| 1506 | return dst; |
| 1507 | else |
| 1508 | return NULL; |
| 1509 | } |
| 1510 | |
| 1511 | /* Optional or variable commands always match on '?' */ |
| 1512 | if (CMD_OPTION (dst) || CMD_VARIABLE (dst)) |
| 1513 | return dst; |
| 1514 | |
| 1515 | /* In case of 'command \t', given src is NULL string. */ |
| 1516 | if (src == NULL) |
| 1517 | return dst; |
| 1518 | |
| 1519 | if (strncmp (src, dst, strlen (src)) == 0) |
| 1520 | return dst; |
| 1521 | else |
| 1522 | return NULL; |
| 1523 | } |
| 1524 | |
| 1525 | /* Check same string element existence. If it isn't there return |
| 1526 | 1. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1527 | static int |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1528 | cmd_unique_string (vector v, const char *str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1529 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1530 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1531 | char *match; |
| 1532 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1533 | for (i = 0; i < vector_active (v); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1534 | if ((match = vector_slot (v, i)) != NULL) |
| 1535 | if (strcmp (match, str) == 0) |
| 1536 | return 0; |
| 1537 | return 1; |
| 1538 | } |
| 1539 | |
| 1540 | /* Compare string to description vector. If there is same string |
| 1541 | return 1 else return 0. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1542 | static int |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1543 | desc_unique_string (vector v, const char *str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1544 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1545 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1546 | struct desc *desc; |
| 1547 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1548 | for (i = 0; i < vector_active (v); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1549 | if ((desc = vector_slot (v, i)) != NULL) |
| 1550 | if (strcmp (desc->cmd, str) == 0) |
| 1551 | return 1; |
| 1552 | return 0; |
| 1553 | } |
| 1554 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1555 | static int |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1556 | cmd_try_do_shortcut (enum node_type node, char* first_word) { |
| 1557 | if ( first_word != NULL && |
| 1558 | node != AUTH_NODE && |
| 1559 | node != VIEW_NODE && |
| 1560 | node != AUTH_ENABLE_NODE && |
| 1561 | node != ENABLE_NODE && |
| 1562 | 0 == strcmp( "do", first_word ) ) |
| 1563 | return 1; |
| 1564 | return 0; |
| 1565 | } |
| 1566 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1567 | /* '?' describe command support. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1568 | static vector |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1569 | cmd_describe_command_real (vector vline, struct vty *vty, int *status) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1570 | { |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1571 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1572 | vector cmd_vector; |
| 1573 | #define INIT_MATCHVEC_SIZE 10 |
| 1574 | vector matchvec; |
| 1575 | struct cmd_element *cmd_element; |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1576 | unsigned int index; |
paul | 54aba54 | 2003-08-21 20:28:24 +0000 | [diff] [blame] | 1577 | int ret; |
| 1578 | enum match_type match; |
| 1579 | char *command; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1580 | static struct desc desc_cr = { "<cr>", "" }; |
| 1581 | |
| 1582 | /* Set index. */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1583 | if (vector_active (vline) == 0) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1584 | { |
| 1585 | *status = CMD_ERR_NO_MATCH; |
| 1586 | return NULL; |
| 1587 | } |
| 1588 | else |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1589 | index = vector_active (vline) - 1; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1590 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1591 | /* Make copy vector of current node's command vector. */ |
| 1592 | cmd_vector = vector_copy (cmd_node_vector (cmdvec, vty->node)); |
| 1593 | |
| 1594 | /* Prepare match vector */ |
| 1595 | matchvec = vector_init (INIT_MATCHVEC_SIZE); |
| 1596 | |
| 1597 | /* Filter commands. */ |
paul | 54aba54 | 2003-08-21 20:28:24 +0000 | [diff] [blame] | 1598 | /* Only words precedes current word will be checked in this loop. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1599 | for (i = 0; i < index; i++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1600 | if ((command = vector_slot (vline, i))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1601 | { |
| 1602 | match = cmd_filter_by_completion (command, cmd_vector, i); |
| 1603 | |
| 1604 | if (match == vararg_match) |
| 1605 | { |
| 1606 | struct cmd_element *cmd_element; |
| 1607 | vector descvec; |
| 1608 | unsigned int j, k; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1609 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1610 | for (j = 0; j < vector_active (cmd_vector); j++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1611 | if ((cmd_element = vector_slot (cmd_vector, j)) != NULL |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1612 | && (vector_active (cmd_element->strvec))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1613 | { |
| 1614 | descvec = vector_slot (cmd_element->strvec, |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1615 | vector_active (cmd_element->strvec) - 1); |
| 1616 | for (k = 0; k < vector_active (descvec); k++) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1617 | { |
| 1618 | struct desc *desc = vector_slot (descvec, k); |
| 1619 | vector_set (matchvec, desc); |
| 1620 | } |
| 1621 | } |
| 1622 | |
| 1623 | vector_set (matchvec, &desc_cr); |
| 1624 | vector_free (cmd_vector); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1625 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1626 | return matchvec; |
| 1627 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1628 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1629 | if ((ret = is_cmd_ambiguous (command, cmd_vector, i, match)) == 1) |
| 1630 | { |
| 1631 | vector_free (cmd_vector); |
| 1632 | *status = CMD_ERR_AMBIGUOUS; |
| 1633 | return NULL; |
| 1634 | } |
| 1635 | else if (ret == 2) |
| 1636 | { |
| 1637 | vector_free (cmd_vector); |
| 1638 | *status = CMD_ERR_NO_MATCH; |
| 1639 | return NULL; |
| 1640 | } |
| 1641 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1642 | |
| 1643 | /* Prepare match vector */ |
| 1644 | /* matchvec = vector_init (INIT_MATCHVEC_SIZE); */ |
| 1645 | |
paul | 54aba54 | 2003-08-21 20:28:24 +0000 | [diff] [blame] | 1646 | /* Make sure that cmd_vector is filtered based on current word */ |
| 1647 | command = vector_slot (vline, index); |
| 1648 | if (command) |
| 1649 | match = cmd_filter_by_completion (command, cmd_vector, index); |
| 1650 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1651 | /* Make description vector. */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1652 | for (i = 0; i < vector_active (cmd_vector); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1653 | if ((cmd_element = vector_slot (cmd_vector, i)) != NULL) |
| 1654 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1655 | const char *string = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1656 | vector strvec = cmd_element->strvec; |
| 1657 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1658 | /* if command is NULL, index may be equal to vector_active */ |
| 1659 | if (command && index >= vector_active (strvec)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1660 | vector_slot (cmd_vector, i) = NULL; |
| 1661 | else |
| 1662 | { |
paul | 54aba54 | 2003-08-21 20:28:24 +0000 | [diff] [blame] | 1663 | /* Check if command is completed. */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1664 | if (command == NULL && index == vector_active (strvec)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1665 | { |
| 1666 | string = "<cr>"; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1667 | if (!desc_unique_string (matchvec, string)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1668 | vector_set (matchvec, &desc_cr); |
| 1669 | } |
| 1670 | else |
| 1671 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1672 | unsigned int j; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1673 | vector descvec = vector_slot (strvec, index); |
| 1674 | struct desc *desc; |
| 1675 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1676 | for (j = 0; j < vector_active (descvec); j++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1677 | if ((desc = vector_slot (descvec, j))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1678 | { |
| 1679 | string = cmd_entry_function_desc (command, desc->cmd); |
| 1680 | if (string) |
| 1681 | { |
| 1682 | /* Uniqueness check */ |
| 1683 | if (!desc_unique_string (matchvec, string)) |
| 1684 | vector_set (matchvec, desc); |
| 1685 | } |
| 1686 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1687 | } |
| 1688 | } |
| 1689 | } |
| 1690 | vector_free (cmd_vector); |
| 1691 | |
| 1692 | if (vector_slot (matchvec, 0) == NULL) |
| 1693 | { |
| 1694 | vector_free (matchvec); |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1695 | *status = CMD_ERR_NO_MATCH; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1696 | } |
| 1697 | else |
| 1698 | *status = CMD_SUCCESS; |
| 1699 | |
| 1700 | return matchvec; |
| 1701 | } |
| 1702 | |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1703 | vector |
| 1704 | cmd_describe_command (vector vline, struct vty *vty, int *status) |
| 1705 | { |
| 1706 | vector ret; |
| 1707 | |
| 1708 | if ( cmd_try_do_shortcut(vty->node, vector_slot(vline, 0) ) ) |
| 1709 | { |
| 1710 | enum node_type onode; |
| 1711 | vector shifted_vline; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1712 | unsigned int index; |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1713 | |
| 1714 | onode = vty->node; |
| 1715 | vty->node = ENABLE_NODE; |
| 1716 | /* We can try it on enable node, cos' the vty is authenticated */ |
| 1717 | |
| 1718 | shifted_vline = vector_init (vector_count(vline)); |
| 1719 | /* use memcpy? */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1720 | for (index = 1; index < vector_active (vline); index++) |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1721 | { |
| 1722 | vector_set_index (shifted_vline, index-1, vector_lookup(vline, index)); |
| 1723 | } |
| 1724 | |
| 1725 | ret = cmd_describe_command_real (shifted_vline, vty, status); |
| 1726 | |
| 1727 | vector_free(shifted_vline); |
| 1728 | vty->node = onode; |
| 1729 | return ret; |
| 1730 | } |
| 1731 | |
| 1732 | |
| 1733 | return cmd_describe_command_real (vline, vty, status); |
| 1734 | } |
| 1735 | |
| 1736 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1737 | /* Check LCD of matched command. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1738 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1739 | cmd_lcd (char **matched) |
| 1740 | { |
| 1741 | int i; |
| 1742 | int j; |
| 1743 | int lcd = -1; |
| 1744 | char *s1, *s2; |
| 1745 | char c1, c2; |
| 1746 | |
| 1747 | if (matched[0] == NULL || matched[1] == NULL) |
| 1748 | return 0; |
| 1749 | |
| 1750 | for (i = 1; matched[i] != NULL; i++) |
| 1751 | { |
| 1752 | s1 = matched[i - 1]; |
| 1753 | s2 = matched[i]; |
| 1754 | |
| 1755 | for (j = 0; (c1 = s1[j]) && (c2 = s2[j]); j++) |
| 1756 | if (c1 != c2) |
| 1757 | break; |
| 1758 | |
| 1759 | if (lcd < 0) |
| 1760 | lcd = j; |
| 1761 | else |
| 1762 | { |
| 1763 | if (lcd > j) |
| 1764 | lcd = j; |
| 1765 | } |
| 1766 | } |
| 1767 | return lcd; |
| 1768 | } |
| 1769 | |
| 1770 | /* Command line completion support. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1771 | static char ** |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1772 | cmd_complete_command_real (vector vline, struct vty *vty, int *status) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1773 | { |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1774 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1775 | vector cmd_vector = vector_copy (cmd_node_vector (cmdvec, vty->node)); |
| 1776 | #define INIT_MATCHVEC_SIZE 10 |
| 1777 | vector matchvec; |
| 1778 | struct cmd_element *cmd_element; |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1779 | unsigned int index; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1780 | char **match_str; |
| 1781 | struct desc *desc; |
| 1782 | vector descvec; |
| 1783 | char *command; |
| 1784 | int lcd; |
| 1785 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1786 | if (vector_active (vline) == 0) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1787 | { |
| 1788 | *status = CMD_ERR_NO_MATCH; |
| 1789 | return NULL; |
| 1790 | } |
| 1791 | else |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1792 | index = vector_active (vline) - 1; |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1793 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1794 | /* First, filter by preceeding command string */ |
| 1795 | for (i = 0; i < index; i++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1796 | if ((command = vector_slot (vline, i))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1797 | { |
| 1798 | enum match_type match; |
| 1799 | int ret; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1800 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1801 | /* First try completion match, if there is exactly match return 1 */ |
| 1802 | match = cmd_filter_by_completion (command, cmd_vector, i); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1803 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1804 | /* If there is exact match then filter ambiguous match else check |
| 1805 | ambiguousness. */ |
| 1806 | if ((ret = is_cmd_ambiguous (command, cmd_vector, i, match)) == 1) |
| 1807 | { |
| 1808 | vector_free (cmd_vector); |
| 1809 | *status = CMD_ERR_AMBIGUOUS; |
| 1810 | return NULL; |
| 1811 | } |
| 1812 | /* |
| 1813 | else if (ret == 2) |
| 1814 | { |
| 1815 | vector_free (cmd_vector); |
| 1816 | *status = CMD_ERR_NO_MATCH; |
| 1817 | return NULL; |
| 1818 | } |
| 1819 | */ |
| 1820 | } |
| 1821 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1822 | /* Prepare match vector. */ |
| 1823 | matchvec = vector_init (INIT_MATCHVEC_SIZE); |
| 1824 | |
| 1825 | /* Now we got into completion */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1826 | for (i = 0; i < vector_active (cmd_vector); i++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1827 | if ((cmd_element = vector_slot (cmd_vector, i))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1828 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1829 | const char *string; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1830 | vector strvec = cmd_element->strvec; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1831 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1832 | /* Check field length */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1833 | if (index >= vector_active (strvec)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1834 | vector_slot (cmd_vector, i) = NULL; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1835 | else |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1836 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1837 | unsigned int j; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1838 | |
| 1839 | descvec = vector_slot (strvec, index); |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1840 | for (j = 0; j < vector_active (descvec); j++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1841 | if ((desc = vector_slot (descvec, j))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1842 | { |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1843 | if ((string = |
| 1844 | cmd_entry_function (vector_slot (vline, index), |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1845 | desc->cmd))) |
| 1846 | if (cmd_unique_string (matchvec, string)) |
| 1847 | vector_set (matchvec, XSTRDUP (MTYPE_TMP, string)); |
| 1848 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1849 | } |
| 1850 | } |
| 1851 | |
| 1852 | /* We don't need cmd_vector any more. */ |
| 1853 | vector_free (cmd_vector); |
| 1854 | |
| 1855 | /* No matched command */ |
| 1856 | if (vector_slot (matchvec, 0) == NULL) |
| 1857 | { |
| 1858 | vector_free (matchvec); |
| 1859 | |
| 1860 | /* In case of 'command \t' pattern. Do you need '?' command at |
| 1861 | the end of the line. */ |
| 1862 | if (vector_slot (vline, index) == '\0') |
| 1863 | *status = CMD_ERR_NOTHING_TODO; |
| 1864 | else |
| 1865 | *status = CMD_ERR_NO_MATCH; |
| 1866 | return NULL; |
| 1867 | } |
| 1868 | |
| 1869 | /* Only one matched */ |
| 1870 | if (vector_slot (matchvec, 1) == NULL) |
| 1871 | { |
| 1872 | match_str = (char **) matchvec->index; |
| 1873 | vector_only_wrapper_free (matchvec); |
| 1874 | *status = CMD_COMPLETE_FULL_MATCH; |
| 1875 | return match_str; |
| 1876 | } |
| 1877 | /* Make it sure last element is NULL. */ |
| 1878 | vector_set (matchvec, NULL); |
| 1879 | |
| 1880 | /* Check LCD of matched strings. */ |
| 1881 | if (vector_slot (vline, index) != NULL) |
| 1882 | { |
| 1883 | lcd = cmd_lcd ((char **) matchvec->index); |
| 1884 | |
| 1885 | if (lcd) |
| 1886 | { |
| 1887 | int len = strlen (vector_slot (vline, index)); |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1888 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1889 | if (len < lcd) |
| 1890 | { |
| 1891 | char *lcdstr; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1892 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1893 | lcdstr = XMALLOC (MTYPE_TMP, lcd + 1); |
| 1894 | memcpy (lcdstr, matchvec->index[0], lcd); |
| 1895 | lcdstr[lcd] = '\0'; |
| 1896 | |
| 1897 | /* match_str = (char **) &lcdstr; */ |
| 1898 | |
| 1899 | /* Free matchvec. */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1900 | for (i = 0; i < vector_active (matchvec); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1901 | { |
| 1902 | if (vector_slot (matchvec, i)) |
| 1903 | XFREE (MTYPE_TMP, vector_slot (matchvec, i)); |
| 1904 | } |
| 1905 | vector_free (matchvec); |
| 1906 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 1907 | /* Make new matchvec. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1908 | matchvec = vector_init (INIT_MATCHVEC_SIZE); |
| 1909 | vector_set (matchvec, lcdstr); |
| 1910 | match_str = (char **) matchvec->index; |
| 1911 | vector_only_wrapper_free (matchvec); |
| 1912 | |
| 1913 | *status = CMD_COMPLETE_MATCH; |
| 1914 | return match_str; |
| 1915 | } |
| 1916 | } |
| 1917 | } |
| 1918 | |
| 1919 | match_str = (char **) matchvec->index; |
| 1920 | vector_only_wrapper_free (matchvec); |
| 1921 | *status = CMD_COMPLETE_LIST_MATCH; |
| 1922 | return match_str; |
| 1923 | } |
| 1924 | |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1925 | char ** |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 1926 | cmd_complete_command (vector vline, struct vty *vty, int *status) |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1927 | { |
| 1928 | char **ret; |
| 1929 | |
| 1930 | if ( cmd_try_do_shortcut(vty->node, vector_slot(vline, 0) ) ) |
| 1931 | { |
| 1932 | enum node_type onode; |
| 1933 | vector shifted_vline; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1934 | unsigned int index; |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1935 | |
| 1936 | onode = vty->node; |
| 1937 | vty->node = ENABLE_NODE; |
| 1938 | /* We can try it on enable node, cos' the vty is authenticated */ |
| 1939 | |
| 1940 | shifted_vline = vector_init (vector_count(vline)); |
| 1941 | /* use memcpy? */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 1942 | for (index = 1; index < vector_active (vline); index++) |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1943 | { |
| 1944 | vector_set_index (shifted_vline, index-1, vector_lookup(vline, index)); |
| 1945 | } |
| 1946 | |
| 1947 | ret = cmd_complete_command_real (shifted_vline, vty, status); |
| 1948 | |
| 1949 | vector_free(shifted_vline); |
| 1950 | vty->node = onode; |
| 1951 | return ret; |
| 1952 | } |
| 1953 | |
| 1954 | |
| 1955 | return cmd_complete_command_real (vline, vty, status); |
| 1956 | } |
| 1957 | |
| 1958 | /* return parent node */ |
| 1959 | /* MUST eventually converge on CONFIG_NODE */ |
hasso | 13bfca7 | 2005-01-23 21:42:25 +0000 | [diff] [blame] | 1960 | enum node_type |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1961 | node_parent ( enum node_type node ) |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1962 | { |
| 1963 | enum node_type ret; |
| 1964 | |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 1965 | assert (node > CONFIG_NODE); |
| 1966 | |
| 1967 | switch (node) |
| 1968 | { |
| 1969 | case BGP_VPNV4_NODE: |
| 1970 | case BGP_IPV4_NODE: |
| 1971 | case BGP_IPV4M_NODE: |
| 1972 | case BGP_IPV6_NODE: |
paul | 1e83659 | 2005-08-22 22:39:56 +0000 | [diff] [blame] | 1973 | case BGP_IPV6M_NODE: |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 1974 | ret = BGP_NODE; |
| 1975 | break; |
| 1976 | case KEYCHAIN_KEY_NODE: |
| 1977 | ret = KEYCHAIN_NODE; |
| 1978 | break; |
| 1979 | default: |
| 1980 | ret = CONFIG_NODE; |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 1981 | } |
| 1982 | |
| 1983 | return ret; |
| 1984 | } |
| 1985 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1986 | /* Execute command by argument vline vector. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 1987 | static int |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 1988 | cmd_execute_command_real (vector vline, struct vty *vty, |
| 1989 | struct cmd_element **cmd) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1990 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 1991 | unsigned int i; |
| 1992 | unsigned int index; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1993 | vector cmd_vector; |
| 1994 | struct cmd_element *cmd_element; |
| 1995 | struct cmd_element *matched_element; |
| 1996 | unsigned int matched_count, incomplete_count; |
| 1997 | int argc; |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 1998 | const char *argv[CMD_ARGC_MAX]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1999 | enum match_type match = 0; |
| 2000 | int varflag; |
| 2001 | char *command; |
| 2002 | |
| 2003 | /* Make copy of command elements. */ |
| 2004 | cmd_vector = vector_copy (cmd_node_vector (cmdvec, vty->node)); |
| 2005 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2006 | for (index = 0; index < vector_active (vline); index++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 2007 | if ((command = vector_slot (vline, index))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2008 | { |
| 2009 | int ret; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2010 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2011 | match = cmd_filter_by_completion (command, cmd_vector, index); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2012 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2013 | if (match == vararg_match) |
| 2014 | break; |
| 2015 | |
| 2016 | ret = is_cmd_ambiguous (command, cmd_vector, index, match); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2017 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2018 | if (ret == 1) |
| 2019 | { |
| 2020 | vector_free (cmd_vector); |
| 2021 | return CMD_ERR_AMBIGUOUS; |
| 2022 | } |
| 2023 | else if (ret == 2) |
| 2024 | { |
| 2025 | vector_free (cmd_vector); |
| 2026 | return CMD_ERR_NO_MATCH; |
| 2027 | } |
| 2028 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2029 | |
| 2030 | /* Check matched count. */ |
| 2031 | matched_element = NULL; |
| 2032 | matched_count = 0; |
| 2033 | incomplete_count = 0; |
| 2034 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2035 | for (i = 0; i < vector_active (cmd_vector); i++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 2036 | if ((cmd_element = vector_slot (cmd_vector, i))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2037 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2038 | if (match == vararg_match || index >= cmd_element->cmdsize) |
| 2039 | { |
| 2040 | matched_element = cmd_element; |
| 2041 | #if 0 |
| 2042 | printf ("DEBUG: %s\n", cmd_element->string); |
| 2043 | #endif |
| 2044 | matched_count++; |
| 2045 | } |
| 2046 | else |
| 2047 | { |
| 2048 | incomplete_count++; |
| 2049 | } |
| 2050 | } |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2051 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2052 | /* Finish of using cmd_vector. */ |
| 2053 | vector_free (cmd_vector); |
| 2054 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2055 | /* To execute command, matched_count must be 1. */ |
| 2056 | if (matched_count == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2057 | { |
| 2058 | if (incomplete_count) |
| 2059 | return CMD_ERR_INCOMPLETE; |
| 2060 | else |
| 2061 | return CMD_ERR_NO_MATCH; |
| 2062 | } |
| 2063 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2064 | if (matched_count > 1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2065 | return CMD_ERR_AMBIGUOUS; |
| 2066 | |
| 2067 | /* Argument treatment */ |
| 2068 | varflag = 0; |
| 2069 | argc = 0; |
| 2070 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2071 | for (i = 0; i < vector_active (vline); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2072 | { |
| 2073 | if (varflag) |
| 2074 | argv[argc++] = vector_slot (vline, i); |
| 2075 | else |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2076 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2077 | vector descvec = vector_slot (matched_element->strvec, i); |
| 2078 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2079 | if (vector_active (descvec) == 1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2080 | { |
| 2081 | struct desc *desc = vector_slot (descvec, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2082 | |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2083 | if (CMD_VARARG (desc->cmd)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2084 | varflag = 1; |
| 2085 | |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2086 | if (varflag || CMD_VARIABLE (desc->cmd) || CMD_OPTION (desc->cmd)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2087 | argv[argc++] = vector_slot (vline, i); |
| 2088 | } |
| 2089 | else |
| 2090 | argv[argc++] = vector_slot (vline, i); |
| 2091 | } |
| 2092 | |
| 2093 | if (argc >= CMD_ARGC_MAX) |
| 2094 | return CMD_ERR_EXEED_ARGC_MAX; |
| 2095 | } |
| 2096 | |
| 2097 | /* For vtysh execution. */ |
| 2098 | if (cmd) |
| 2099 | *cmd = matched_element; |
| 2100 | |
| 2101 | if (matched_element->daemon) |
| 2102 | return CMD_SUCCESS_DAEMON; |
| 2103 | |
| 2104 | /* Execute matched command. */ |
| 2105 | return (*matched_element->func) (matched_element, vty, argc, argv); |
| 2106 | } |
| 2107 | |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2108 | int |
hasso | 87d683b | 2005-01-16 23:31:54 +0000 | [diff] [blame] | 2109 | cmd_execute_command (vector vline, struct vty *vty, struct cmd_element **cmd, |
| 2110 | int vtysh) { |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2111 | int ret, saved_ret, tried = 0; |
| 2112 | enum node_type onode, try_node; |
| 2113 | |
| 2114 | onode = try_node = vty->node; |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2115 | |
| 2116 | if ( cmd_try_do_shortcut(vty->node, vector_slot(vline, 0) ) ) |
| 2117 | { |
| 2118 | vector shifted_vline; |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2119 | unsigned int index; |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2120 | |
| 2121 | vty->node = ENABLE_NODE; |
| 2122 | /* We can try it on enable node, cos' the vty is authenticated */ |
| 2123 | |
| 2124 | shifted_vline = vector_init (vector_count(vline)); |
| 2125 | /* use memcpy? */ |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2126 | for (index = 1; index < vector_active (vline); index++) |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2127 | { |
| 2128 | vector_set_index (shifted_vline, index-1, vector_lookup(vline, index)); |
| 2129 | } |
| 2130 | |
| 2131 | ret = cmd_execute_command_real (shifted_vline, vty, cmd); |
| 2132 | |
| 2133 | vector_free(shifted_vline); |
| 2134 | vty->node = onode; |
| 2135 | return ret; |
| 2136 | } |
| 2137 | |
| 2138 | |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2139 | saved_ret = ret = cmd_execute_command_real (vline, vty, cmd); |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2140 | |
hasso | 87d683b | 2005-01-16 23:31:54 +0000 | [diff] [blame] | 2141 | if (vtysh) |
| 2142 | return saved_ret; |
| 2143 | |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2144 | /* This assumes all nodes above CONFIG_NODE are childs of CONFIG_NODE */ |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2145 | while ( ret != CMD_SUCCESS && ret != CMD_WARNING |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2146 | && vty->node > CONFIG_NODE ) |
| 2147 | { |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2148 | try_node = node_parent(try_node); |
| 2149 | vty->node = try_node; |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2150 | ret = cmd_execute_command_real (vline, vty, cmd); |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2151 | tried = 1; |
| 2152 | if (ret == CMD_SUCCESS || ret == CMD_WARNING) |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2153 | { |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2154 | /* succesfull command, leave the node as is */ |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2155 | return ret; |
| 2156 | } |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2157 | } |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2158 | /* no command succeeded, reset the vty to the original node and |
| 2159 | return the error for this node */ |
| 2160 | if ( tried ) |
| 2161 | vty->node = onode; |
| 2162 | return saved_ret; |
paul | eda031f | 2003-01-18 00:39:19 +0000 | [diff] [blame] | 2163 | } |
| 2164 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2165 | /* Execute command by argument readline. */ |
| 2166 | int |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2167 | cmd_execute_command_strict (vector vline, struct vty *vty, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2168 | struct cmd_element **cmd) |
| 2169 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2170 | unsigned int i; |
| 2171 | unsigned int index; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2172 | vector cmd_vector; |
| 2173 | struct cmd_element *cmd_element; |
| 2174 | struct cmd_element *matched_element; |
| 2175 | unsigned int matched_count, incomplete_count; |
| 2176 | int argc; |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 2177 | const char *argv[CMD_ARGC_MAX]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2178 | int varflag; |
| 2179 | enum match_type match = 0; |
| 2180 | char *command; |
| 2181 | |
| 2182 | /* Make copy of command element */ |
| 2183 | cmd_vector = vector_copy (cmd_node_vector (cmdvec, vty->node)); |
| 2184 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2185 | for (index = 0; index < vector_active (vline); index++) |
paul | b896147 | 2005-03-14 17:35:52 +0000 | [diff] [blame] | 2186 | if ((command = vector_slot (vline, index))) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2187 | { |
| 2188 | int ret; |
| 2189 | |
| 2190 | match = cmd_filter_by_string (vector_slot (vline, index), |
| 2191 | cmd_vector, index); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2192 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2193 | /* If command meets '.VARARG' then finish matching. */ |
| 2194 | if (match == vararg_match) |
| 2195 | break; |
| 2196 | |
| 2197 | ret = is_cmd_ambiguous (command, cmd_vector, index, match); |
| 2198 | if (ret == 1) |
| 2199 | { |
| 2200 | vector_free (cmd_vector); |
| 2201 | return CMD_ERR_AMBIGUOUS; |
| 2202 | } |
| 2203 | if (ret == 2) |
| 2204 | { |
| 2205 | vector_free (cmd_vector); |
| 2206 | return CMD_ERR_NO_MATCH; |
| 2207 | } |
| 2208 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2209 | |
| 2210 | /* Check matched count. */ |
| 2211 | matched_element = NULL; |
| 2212 | matched_count = 0; |
| 2213 | incomplete_count = 0; |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2214 | for (i = 0; i < vector_active (cmd_vector); i++) |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2215 | if (vector_slot (cmd_vector, i) != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2216 | { |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2217 | cmd_element = vector_slot (cmd_vector, i); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2218 | |
| 2219 | if (match == vararg_match || index >= cmd_element->cmdsize) |
| 2220 | { |
| 2221 | matched_element = cmd_element; |
| 2222 | matched_count++; |
| 2223 | } |
| 2224 | else |
| 2225 | incomplete_count++; |
| 2226 | } |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2227 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2228 | /* Finish of using cmd_vector. */ |
| 2229 | vector_free (cmd_vector); |
| 2230 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2231 | /* To execute command, matched_count must be 1. */ |
| 2232 | if (matched_count == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2233 | { |
| 2234 | if (incomplete_count) |
| 2235 | return CMD_ERR_INCOMPLETE; |
| 2236 | else |
| 2237 | return CMD_ERR_NO_MATCH; |
| 2238 | } |
| 2239 | |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2240 | if (matched_count > 1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2241 | return CMD_ERR_AMBIGUOUS; |
| 2242 | |
| 2243 | /* Argument treatment */ |
| 2244 | varflag = 0; |
| 2245 | argc = 0; |
| 2246 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2247 | for (i = 0; i < vector_active (vline); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2248 | { |
| 2249 | if (varflag) |
| 2250 | argv[argc++] = vector_slot (vline, i); |
| 2251 | else |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2252 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2253 | vector descvec = vector_slot (matched_element->strvec, i); |
| 2254 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2255 | if (vector_active (descvec) == 1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2256 | { |
| 2257 | struct desc *desc = vector_slot (descvec, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2258 | |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2259 | if (CMD_VARARG (desc->cmd)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2260 | varflag = 1; |
paul | 909a215 | 2005-03-14 17:41:45 +0000 | [diff] [blame] | 2261 | |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2262 | if (varflag || CMD_VARIABLE (desc->cmd) || CMD_OPTION (desc->cmd)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2263 | argv[argc++] = vector_slot (vline, i); |
| 2264 | } |
| 2265 | else |
| 2266 | argv[argc++] = vector_slot (vline, i); |
| 2267 | } |
| 2268 | |
| 2269 | if (argc >= CMD_ARGC_MAX) |
| 2270 | return CMD_ERR_EXEED_ARGC_MAX; |
| 2271 | } |
| 2272 | |
| 2273 | /* For vtysh execution. */ |
| 2274 | if (cmd) |
| 2275 | *cmd = matched_element; |
| 2276 | |
| 2277 | if (matched_element->daemon) |
| 2278 | return CMD_SUCCESS_DAEMON; |
| 2279 | |
| 2280 | /* Now execute matched command */ |
| 2281 | return (*matched_element->func) (matched_element, vty, argc, argv); |
| 2282 | } |
| 2283 | |
| 2284 | /* Configration make from file. */ |
| 2285 | int |
| 2286 | config_from_file (struct vty *vty, FILE *fp) |
| 2287 | { |
| 2288 | int ret; |
| 2289 | vector vline; |
| 2290 | |
| 2291 | while (fgets (vty->buf, VTY_BUFSIZ, fp)) |
| 2292 | { |
| 2293 | vline = cmd_make_strvec (vty->buf); |
| 2294 | |
| 2295 | /* In case of comment line */ |
| 2296 | if (vline == NULL) |
| 2297 | continue; |
| 2298 | /* Execute configuration command : this is strict match */ |
| 2299 | ret = cmd_execute_command_strict (vline, vty, NULL); |
| 2300 | |
| 2301 | /* Try again with setting node to CONFIG_NODE */ |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2302 | while (ret != CMD_SUCCESS && ret != CMD_WARNING |
hasso | ddd85ed | 2004-10-13 08:18:07 +0000 | [diff] [blame] | 2303 | && ret != CMD_ERR_NOTHING_TODO && vty->node != CONFIG_NODE) |
| 2304 | { |
paul | b92938a | 2002-12-13 21:20:42 +0000 | [diff] [blame] | 2305 | vty->node = node_parent(vty->node); |
hasso | ddd85ed | 2004-10-13 08:18:07 +0000 | [diff] [blame] | 2306 | ret = cmd_execute_command_strict (vline, vty, NULL); |
| 2307 | } |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 2308 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2309 | cmd_free_strvec (vline); |
| 2310 | |
hasso | ddd85ed | 2004-10-13 08:18:07 +0000 | [diff] [blame] | 2311 | if (ret != CMD_SUCCESS && ret != CMD_WARNING |
| 2312 | && ret != CMD_ERR_NOTHING_TODO) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2313 | return ret; |
| 2314 | } |
| 2315 | return CMD_SUCCESS; |
| 2316 | } |
| 2317 | |
| 2318 | /* Configration from terminal */ |
| 2319 | DEFUN (config_terminal, |
| 2320 | config_terminal_cmd, |
| 2321 | "configure terminal", |
| 2322 | "Configuration from vty interface\n" |
| 2323 | "Configuration terminal\n") |
| 2324 | { |
| 2325 | if (vty_config_lock (vty)) |
| 2326 | vty->node = CONFIG_NODE; |
| 2327 | else |
| 2328 | { |
| 2329 | vty_out (vty, "VTY configuration is locked by other VTY%s", VTY_NEWLINE); |
| 2330 | return CMD_WARNING; |
| 2331 | } |
| 2332 | return CMD_SUCCESS; |
| 2333 | } |
| 2334 | |
| 2335 | /* Enable command */ |
| 2336 | DEFUN (enable, |
| 2337 | config_enable_cmd, |
| 2338 | "enable", |
| 2339 | "Turn on privileged mode command\n") |
| 2340 | { |
| 2341 | /* If enable password is NULL, change to ENABLE_NODE */ |
| 2342 | if ((host.enable == NULL && host.enable_encrypt == NULL) || |
| 2343 | vty->type == VTY_SHELL_SERV) |
| 2344 | vty->node = ENABLE_NODE; |
| 2345 | else |
| 2346 | vty->node = AUTH_ENABLE_NODE; |
| 2347 | |
| 2348 | return CMD_SUCCESS; |
| 2349 | } |
| 2350 | |
| 2351 | /* Disable command */ |
| 2352 | DEFUN (disable, |
| 2353 | config_disable_cmd, |
| 2354 | "disable", |
| 2355 | "Turn off privileged mode command\n") |
| 2356 | { |
| 2357 | if (vty->node == ENABLE_NODE) |
| 2358 | vty->node = VIEW_NODE; |
| 2359 | return CMD_SUCCESS; |
| 2360 | } |
| 2361 | |
| 2362 | /* Down vty node level. */ |
| 2363 | DEFUN (config_exit, |
| 2364 | config_exit_cmd, |
| 2365 | "exit", |
| 2366 | "Exit current mode and down to previous mode\n") |
| 2367 | { |
| 2368 | switch (vty->node) |
| 2369 | { |
| 2370 | case VIEW_NODE: |
| 2371 | case ENABLE_NODE: |
| 2372 | if (vty_shell (vty)) |
| 2373 | exit (0); |
| 2374 | else |
| 2375 | vty->status = VTY_CLOSE; |
| 2376 | break; |
| 2377 | case CONFIG_NODE: |
| 2378 | vty->node = ENABLE_NODE; |
| 2379 | vty_config_unlock (vty); |
| 2380 | break; |
| 2381 | case INTERFACE_NODE: |
| 2382 | case ZEBRA_NODE: |
| 2383 | case BGP_NODE: |
| 2384 | case RIP_NODE: |
| 2385 | case RIPNG_NODE: |
| 2386 | case OSPF_NODE: |
| 2387 | case OSPF6_NODE: |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 2388 | case ISIS_NODE: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2389 | case KEYCHAIN_NODE: |
| 2390 | case MASC_NODE: |
| 2391 | case RMAP_NODE: |
| 2392 | case VTY_NODE: |
| 2393 | vty->node = CONFIG_NODE; |
| 2394 | break; |
| 2395 | case BGP_VPNV4_NODE: |
| 2396 | case BGP_IPV4_NODE: |
| 2397 | case BGP_IPV4M_NODE: |
| 2398 | case BGP_IPV6_NODE: |
paul | 1e83659 | 2005-08-22 22:39:56 +0000 | [diff] [blame] | 2399 | case BGP_IPV6M_NODE: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2400 | vty->node = BGP_NODE; |
| 2401 | break; |
| 2402 | case KEYCHAIN_KEY_NODE: |
| 2403 | vty->node = KEYCHAIN_NODE; |
| 2404 | break; |
| 2405 | default: |
| 2406 | break; |
| 2407 | } |
| 2408 | return CMD_SUCCESS; |
| 2409 | } |
| 2410 | |
| 2411 | /* quit is alias of exit. */ |
| 2412 | ALIAS (config_exit, |
| 2413 | config_quit_cmd, |
| 2414 | "quit", |
| 2415 | "Exit current mode and down to previous mode\n") |
| 2416 | |
| 2417 | /* End of configuration. */ |
| 2418 | DEFUN (config_end, |
| 2419 | config_end_cmd, |
| 2420 | "end", |
| 2421 | "End current mode and change to enable mode.") |
| 2422 | { |
| 2423 | switch (vty->node) |
| 2424 | { |
| 2425 | case VIEW_NODE: |
| 2426 | case ENABLE_NODE: |
| 2427 | /* Nothing to do. */ |
| 2428 | break; |
| 2429 | case CONFIG_NODE: |
| 2430 | case INTERFACE_NODE: |
| 2431 | case ZEBRA_NODE: |
| 2432 | case RIP_NODE: |
| 2433 | case RIPNG_NODE: |
| 2434 | case BGP_NODE: |
| 2435 | case BGP_VPNV4_NODE: |
| 2436 | case BGP_IPV4_NODE: |
| 2437 | case BGP_IPV4M_NODE: |
| 2438 | case BGP_IPV6_NODE: |
paul | 1e83659 | 2005-08-22 22:39:56 +0000 | [diff] [blame] | 2439 | case BGP_IPV6M_NODE: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2440 | case RMAP_NODE: |
| 2441 | case OSPF_NODE: |
| 2442 | case OSPF6_NODE: |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 2443 | case ISIS_NODE: |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2444 | case KEYCHAIN_NODE: |
| 2445 | case KEYCHAIN_KEY_NODE: |
| 2446 | case MASC_NODE: |
| 2447 | case VTY_NODE: |
| 2448 | vty_config_unlock (vty); |
| 2449 | vty->node = ENABLE_NODE; |
| 2450 | break; |
| 2451 | default: |
| 2452 | break; |
| 2453 | } |
| 2454 | return CMD_SUCCESS; |
| 2455 | } |
| 2456 | |
| 2457 | /* Show version. */ |
| 2458 | DEFUN (show_version, |
| 2459 | show_version_cmd, |
| 2460 | "show version", |
| 2461 | SHOW_STR |
| 2462 | "Displays zebra version\n") |
| 2463 | { |
hasso | 12f6ea2 | 2005-03-07 08:35:39 +0000 | [diff] [blame] | 2464 | vty_out (vty, "Quagga %s (%s).%s", QUAGGA_VERSION, host.name?host.name:"", |
| 2465 | VTY_NEWLINE); |
hasso | 6590f2c | 2004-10-19 20:40:08 +0000 | [diff] [blame] | 2466 | vty_out (vty, "%s%s", QUAGGA_COPYRIGHT, VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2467 | |
| 2468 | return CMD_SUCCESS; |
| 2469 | } |
| 2470 | |
| 2471 | /* Help display function for all node. */ |
| 2472 | DEFUN (config_help, |
| 2473 | config_help_cmd, |
| 2474 | "help", |
| 2475 | "Description of the interactive help system\n") |
| 2476 | { |
| 2477 | vty_out (vty, |
hasso | 6590f2c | 2004-10-19 20:40:08 +0000 | [diff] [blame] | 2478 | "Quagga VTY provides advanced help feature. When you need help,%s\ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2479 | anytime at the command line please press '?'.%s\ |
| 2480 | %s\ |
| 2481 | If nothing matches, the help list will be empty and you must backup%s\ |
| 2482 | until entering a '?' shows the available options.%s\ |
| 2483 | Two styles of help are provided:%s\ |
| 2484 | 1. Full help is available when you are ready to enter a%s\ |
| 2485 | command argument (e.g. 'show ?') and describes each possible%s\ |
| 2486 | argument.%s\ |
| 2487 | 2. Partial help is provided when an abbreviated argument is entered%s\ |
| 2488 | and you want to know what arguments match the input%s\ |
| 2489 | (e.g. 'show me?'.)%s%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, |
| 2490 | VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, |
| 2491 | VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE); |
| 2492 | return CMD_SUCCESS; |
| 2493 | } |
| 2494 | |
| 2495 | /* Help display function for all node. */ |
| 2496 | DEFUN (config_list, |
| 2497 | config_list_cmd, |
| 2498 | "list", |
| 2499 | "Print command list\n") |
| 2500 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2501 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2502 | struct cmd_node *cnode = vector_slot (cmdvec, vty->node); |
| 2503 | struct cmd_element *cmd; |
| 2504 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2505 | for (i = 0; i < vector_active (cnode->cmd_vector); i++) |
paul | 4275b1d | 2005-03-09 13:42:23 +0000 | [diff] [blame] | 2506 | if ((cmd = vector_slot (cnode->cmd_vector, i)) != NULL |
| 2507 | && !(cmd->attr == CMD_ATTR_DEPRECATED |
| 2508 | || cmd->attr == CMD_ATTR_HIDDEN)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2509 | vty_out (vty, " %s%s", cmd->string, |
| 2510 | VTY_NEWLINE); |
| 2511 | return CMD_SUCCESS; |
| 2512 | } |
| 2513 | |
| 2514 | /* Write current configuration into file. */ |
| 2515 | DEFUN (config_write_file, |
| 2516 | config_write_file_cmd, |
| 2517 | "write file", |
| 2518 | "Write running configuration to memory, network, or terminal\n" |
| 2519 | "Write to configuration file\n") |
| 2520 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2521 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2522 | int fd; |
| 2523 | struct cmd_node *node; |
| 2524 | char *config_file; |
| 2525 | char *config_file_tmp = NULL; |
| 2526 | char *config_file_sav = NULL; |
| 2527 | struct vty *file_vty; |
| 2528 | |
| 2529 | /* Check and see if we are operating under vtysh configuration */ |
| 2530 | if (host.config == NULL) |
| 2531 | { |
| 2532 | vty_out (vty, "Can't save to configuration file, using vtysh.%s", |
| 2533 | VTY_NEWLINE); |
| 2534 | return CMD_WARNING; |
| 2535 | } |
| 2536 | |
| 2537 | /* Get filename. */ |
| 2538 | config_file = host.config; |
| 2539 | |
| 2540 | config_file_sav = malloc (strlen (config_file) + strlen (CONF_BACKUP_EXT) + 1); |
| 2541 | strcpy (config_file_sav, config_file); |
| 2542 | strcat (config_file_sav, CONF_BACKUP_EXT); |
| 2543 | |
| 2544 | |
| 2545 | config_file_tmp = malloc (strlen (config_file) + 8); |
| 2546 | sprintf (config_file_tmp, "%s.XXXXXX", config_file); |
| 2547 | |
| 2548 | /* Open file to configuration write. */ |
| 2549 | fd = mkstemp (config_file_tmp); |
| 2550 | if (fd < 0) |
| 2551 | { |
| 2552 | vty_out (vty, "Can't open configuration file %s.%s", config_file_tmp, |
| 2553 | VTY_NEWLINE); |
| 2554 | free (config_file_tmp); |
| 2555 | free (config_file_sav); |
| 2556 | return CMD_WARNING; |
| 2557 | } |
| 2558 | |
| 2559 | /* Make vty for configuration file. */ |
| 2560 | file_vty = vty_new (); |
| 2561 | file_vty->fd = fd; |
| 2562 | file_vty->type = VTY_FILE; |
| 2563 | |
| 2564 | /* Config file header print. */ |
| 2565 | vty_out (file_vty, "!\n! Zebra configuration saved from vty\n! "); |
| 2566 | vty_time_print (file_vty, 1); |
| 2567 | vty_out (file_vty, "!\n"); |
| 2568 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2569 | for (i = 0; i < vector_active (cmdvec); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2570 | if ((node = vector_slot (cmdvec, i)) && node->func) |
| 2571 | { |
| 2572 | if ((*node->func) (file_vty)) |
| 2573 | vty_out (file_vty, "!\n"); |
| 2574 | } |
| 2575 | vty_close (file_vty); |
| 2576 | |
| 2577 | if (unlink (config_file_sav) != 0) |
| 2578 | if (errno != ENOENT) |
| 2579 | { |
| 2580 | vty_out (vty, "Can't unlink backup configuration file %s.%s", config_file_sav, |
| 2581 | VTY_NEWLINE); |
| 2582 | free (config_file_sav); |
| 2583 | free (config_file_tmp); |
| 2584 | unlink (config_file_tmp); |
| 2585 | return CMD_WARNING; |
| 2586 | } |
| 2587 | if (link (config_file, config_file_sav) != 0) |
| 2588 | { |
| 2589 | vty_out (vty, "Can't backup old configuration file %s.%s", config_file_sav, |
| 2590 | VTY_NEWLINE); |
| 2591 | free (config_file_sav); |
| 2592 | free (config_file_tmp); |
| 2593 | unlink (config_file_tmp); |
| 2594 | return CMD_WARNING; |
| 2595 | } |
| 2596 | sync (); |
| 2597 | if (unlink (config_file) != 0) |
| 2598 | { |
| 2599 | vty_out (vty, "Can't unlink configuration file %s.%s", config_file, |
| 2600 | VTY_NEWLINE); |
| 2601 | free (config_file_sav); |
| 2602 | free (config_file_tmp); |
| 2603 | unlink (config_file_tmp); |
| 2604 | return CMD_WARNING; |
| 2605 | } |
| 2606 | if (link (config_file_tmp, config_file) != 0) |
| 2607 | { |
| 2608 | vty_out (vty, "Can't save configuration file %s.%s", config_file, |
| 2609 | VTY_NEWLINE); |
| 2610 | free (config_file_sav); |
| 2611 | free (config_file_tmp); |
| 2612 | unlink (config_file_tmp); |
| 2613 | return CMD_WARNING; |
| 2614 | } |
| 2615 | unlink (config_file_tmp); |
| 2616 | sync (); |
| 2617 | |
| 2618 | free (config_file_sav); |
| 2619 | free (config_file_tmp); |
gdt | aa593d5 | 2003-12-22 20:15:53 +0000 | [diff] [blame] | 2620 | |
| 2621 | if (chmod (config_file, CONFIGFILE_MASK) != 0) |
| 2622 | { |
| 2623 | vty_out (vty, "Can't chmod configuration file %s: %s (%d).%s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 2624 | config_file, safe_strerror(errno), errno, VTY_NEWLINE); |
gdt | aa593d5 | 2003-12-22 20:15:53 +0000 | [diff] [blame] | 2625 | return CMD_WARNING; |
| 2626 | } |
| 2627 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2628 | vty_out (vty, "Configuration saved to %s%s", config_file, |
| 2629 | VTY_NEWLINE); |
| 2630 | return CMD_SUCCESS; |
| 2631 | } |
| 2632 | |
| 2633 | ALIAS (config_write_file, |
| 2634 | config_write_cmd, |
| 2635 | "write", |
| 2636 | "Write running configuration to memory, network, or terminal\n") |
| 2637 | |
| 2638 | ALIAS (config_write_file, |
| 2639 | config_write_memory_cmd, |
| 2640 | "write memory", |
| 2641 | "Write running configuration to memory, network, or terminal\n" |
| 2642 | "Write configuration to the file (same as write file)\n") |
| 2643 | |
| 2644 | ALIAS (config_write_file, |
| 2645 | copy_runningconfig_startupconfig_cmd, |
| 2646 | "copy running-config startup-config", |
| 2647 | "Copy configuration\n" |
| 2648 | "Copy running config to... \n" |
| 2649 | "Copy running config to startup config (same as write file)\n") |
| 2650 | |
| 2651 | /* Write current configuration into the terminal. */ |
| 2652 | DEFUN (config_write_terminal, |
| 2653 | config_write_terminal_cmd, |
| 2654 | "write terminal", |
| 2655 | "Write running configuration to memory, network, or terminal\n" |
| 2656 | "Write to terminal\n") |
| 2657 | { |
hasso | 8c328f1 | 2004-10-05 21:01:23 +0000 | [diff] [blame] | 2658 | unsigned int i; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2659 | struct cmd_node *node; |
| 2660 | |
| 2661 | if (vty->type == VTY_SHELL_SERV) |
| 2662 | { |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2663 | for (i = 0; i < vector_active (cmdvec); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2664 | if ((node = vector_slot (cmdvec, i)) && node->func && node->vtysh) |
| 2665 | { |
| 2666 | if ((*node->func) (vty)) |
| 2667 | vty_out (vty, "!%s", VTY_NEWLINE); |
| 2668 | } |
| 2669 | } |
| 2670 | else |
| 2671 | { |
| 2672 | vty_out (vty, "%sCurrent configuration:%s", VTY_NEWLINE, |
| 2673 | VTY_NEWLINE); |
| 2674 | vty_out (vty, "!%s", VTY_NEWLINE); |
| 2675 | |
paul | 55468c8 | 2005-03-14 20:19:01 +0000 | [diff] [blame] | 2676 | for (i = 0; i < vector_active (cmdvec); i++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2677 | if ((node = vector_slot (cmdvec, i)) && node->func) |
| 2678 | { |
| 2679 | if ((*node->func) (vty)) |
| 2680 | vty_out (vty, "!%s", VTY_NEWLINE); |
| 2681 | } |
| 2682 | vty_out (vty, "end%s",VTY_NEWLINE); |
| 2683 | } |
| 2684 | return CMD_SUCCESS; |
| 2685 | } |
| 2686 | |
| 2687 | /* Write current configuration into the terminal. */ |
| 2688 | ALIAS (config_write_terminal, |
| 2689 | show_running_config_cmd, |
| 2690 | "show running-config", |
| 2691 | SHOW_STR |
| 2692 | "running configuration\n") |
| 2693 | |
| 2694 | /* Write startup configuration into the terminal. */ |
| 2695 | DEFUN (show_startup_config, |
| 2696 | show_startup_config_cmd, |
| 2697 | "show startup-config", |
| 2698 | SHOW_STR |
| 2699 | "Contentes of startup configuration\n") |
| 2700 | { |
| 2701 | char buf[BUFSIZ]; |
| 2702 | FILE *confp; |
| 2703 | |
| 2704 | confp = fopen (host.config, "r"); |
| 2705 | if (confp == NULL) |
| 2706 | { |
| 2707 | vty_out (vty, "Can't open configuration file [%s]%s", |
| 2708 | host.config, VTY_NEWLINE); |
| 2709 | return CMD_WARNING; |
| 2710 | } |
| 2711 | |
| 2712 | while (fgets (buf, BUFSIZ, confp)) |
| 2713 | { |
| 2714 | char *cp = buf; |
| 2715 | |
| 2716 | while (*cp != '\r' && *cp != '\n' && *cp != '\0') |
| 2717 | cp++; |
| 2718 | *cp = '\0'; |
| 2719 | |
| 2720 | vty_out (vty, "%s%s", buf, VTY_NEWLINE); |
| 2721 | } |
| 2722 | |
| 2723 | fclose (confp); |
| 2724 | |
| 2725 | return CMD_SUCCESS; |
| 2726 | } |
| 2727 | |
| 2728 | /* Hostname configuration */ |
| 2729 | DEFUN (config_hostname, |
| 2730 | hostname_cmd, |
| 2731 | "hostname WORD", |
| 2732 | "Set system's network name\n" |
| 2733 | "This system's network name\n") |
| 2734 | { |
| 2735 | if (!isalpha((int) *argv[0])) |
| 2736 | { |
| 2737 | vty_out (vty, "Please specify string starting with alphabet%s", VTY_NEWLINE); |
| 2738 | return CMD_WARNING; |
| 2739 | } |
| 2740 | |
| 2741 | if (host.name) |
| 2742 | XFREE (0, host.name); |
| 2743 | |
| 2744 | host.name = strdup (argv[0]); |
| 2745 | return CMD_SUCCESS; |
| 2746 | } |
| 2747 | |
| 2748 | DEFUN (config_no_hostname, |
| 2749 | no_hostname_cmd, |
| 2750 | "no hostname [HOSTNAME]", |
| 2751 | NO_STR |
| 2752 | "Reset system's network name\n" |
| 2753 | "Host name of this router\n") |
| 2754 | { |
| 2755 | if (host.name) |
| 2756 | XFREE (0, host.name); |
| 2757 | host.name = NULL; |
| 2758 | return CMD_SUCCESS; |
| 2759 | } |
| 2760 | |
| 2761 | /* VTY interface password set. */ |
| 2762 | DEFUN (config_password, password_cmd, |
| 2763 | "password (8|) WORD", |
| 2764 | "Assign the terminal connection password\n" |
| 2765 | "Specifies a HIDDEN password will follow\n" |
| 2766 | "dummy string \n" |
| 2767 | "The HIDDEN line password string\n") |
| 2768 | { |
| 2769 | /* Argument check. */ |
| 2770 | if (argc == 0) |
| 2771 | { |
| 2772 | vty_out (vty, "Please specify password.%s", VTY_NEWLINE); |
| 2773 | return CMD_WARNING; |
| 2774 | } |
| 2775 | |
| 2776 | if (argc == 2) |
| 2777 | { |
| 2778 | if (*argv[0] == '8') |
| 2779 | { |
| 2780 | if (host.password) |
| 2781 | XFREE (0, host.password); |
| 2782 | host.password = NULL; |
| 2783 | if (host.password_encrypt) |
| 2784 | XFREE (0, host.password_encrypt); |
| 2785 | host.password_encrypt = XSTRDUP (0, strdup (argv[1])); |
| 2786 | return CMD_SUCCESS; |
| 2787 | } |
| 2788 | else |
| 2789 | { |
| 2790 | vty_out (vty, "Unknown encryption type.%s", VTY_NEWLINE); |
| 2791 | return CMD_WARNING; |
| 2792 | } |
| 2793 | } |
| 2794 | |
| 2795 | if (!isalnum ((int) *argv[0])) |
| 2796 | { |
| 2797 | vty_out (vty, |
| 2798 | "Please specify string starting with alphanumeric%s", VTY_NEWLINE); |
| 2799 | return CMD_WARNING; |
| 2800 | } |
| 2801 | |
| 2802 | if (host.password) |
| 2803 | XFREE (0, host.password); |
| 2804 | host.password = NULL; |
| 2805 | |
| 2806 | if (host.encrypt) |
| 2807 | { |
| 2808 | if (host.password_encrypt) |
| 2809 | XFREE (0, host.password_encrypt); |
| 2810 | host.password_encrypt = XSTRDUP (0, zencrypt (argv[0])); |
| 2811 | } |
| 2812 | else |
| 2813 | host.password = XSTRDUP (0, argv[0]); |
| 2814 | |
| 2815 | return CMD_SUCCESS; |
| 2816 | } |
| 2817 | |
| 2818 | ALIAS (config_password, password_text_cmd, |
| 2819 | "password LINE", |
| 2820 | "Assign the terminal connection password\n" |
| 2821 | "The UNENCRYPTED (cleartext) line password\n") |
| 2822 | |
| 2823 | /* VTY enable password set. */ |
| 2824 | DEFUN (config_enable_password, enable_password_cmd, |
| 2825 | "enable password (8|) WORD", |
| 2826 | "Modify enable password parameters\n" |
| 2827 | "Assign the privileged level password\n" |
| 2828 | "Specifies a HIDDEN password will follow\n" |
| 2829 | "dummy string \n" |
| 2830 | "The HIDDEN 'enable' password string\n") |
| 2831 | { |
| 2832 | /* Argument check. */ |
| 2833 | if (argc == 0) |
| 2834 | { |
| 2835 | vty_out (vty, "Please specify password.%s", VTY_NEWLINE); |
| 2836 | return CMD_WARNING; |
| 2837 | } |
| 2838 | |
| 2839 | /* Crypt type is specified. */ |
| 2840 | if (argc == 2) |
| 2841 | { |
| 2842 | if (*argv[0] == '8') |
| 2843 | { |
| 2844 | if (host.enable) |
| 2845 | XFREE (0, host.enable); |
| 2846 | host.enable = NULL; |
| 2847 | |
| 2848 | if (host.enable_encrypt) |
| 2849 | XFREE (0, host.enable_encrypt); |
| 2850 | host.enable_encrypt = XSTRDUP (0, argv[1]); |
| 2851 | |
| 2852 | return CMD_SUCCESS; |
| 2853 | } |
| 2854 | else |
| 2855 | { |
| 2856 | vty_out (vty, "Unknown encryption type.%s", VTY_NEWLINE); |
| 2857 | return CMD_WARNING; |
| 2858 | } |
| 2859 | } |
| 2860 | |
| 2861 | if (!isalnum ((int) *argv[0])) |
| 2862 | { |
| 2863 | vty_out (vty, |
| 2864 | "Please specify string starting with alphanumeric%s", VTY_NEWLINE); |
| 2865 | return CMD_WARNING; |
| 2866 | } |
| 2867 | |
| 2868 | if (host.enable) |
| 2869 | XFREE (0, host.enable); |
| 2870 | host.enable = NULL; |
| 2871 | |
| 2872 | /* Plain password input. */ |
| 2873 | if (host.encrypt) |
| 2874 | { |
| 2875 | if (host.enable_encrypt) |
| 2876 | XFREE (0, host.enable_encrypt); |
| 2877 | host.enable_encrypt = XSTRDUP (0, zencrypt (argv[0])); |
| 2878 | } |
| 2879 | else |
| 2880 | host.enable = XSTRDUP (0, argv[0]); |
| 2881 | |
| 2882 | return CMD_SUCCESS; |
| 2883 | } |
| 2884 | |
| 2885 | ALIAS (config_enable_password, |
| 2886 | enable_password_text_cmd, |
| 2887 | "enable password LINE", |
| 2888 | "Modify enable password parameters\n" |
| 2889 | "Assign the privileged level password\n" |
| 2890 | "The UNENCRYPTED (cleartext) 'enable' password\n") |
| 2891 | |
| 2892 | /* VTY enable password delete. */ |
| 2893 | DEFUN (no_config_enable_password, no_enable_password_cmd, |
| 2894 | "no enable password", |
| 2895 | NO_STR |
| 2896 | "Modify enable password parameters\n" |
| 2897 | "Assign the privileged level password\n") |
| 2898 | { |
| 2899 | if (host.enable) |
| 2900 | XFREE (0, host.enable); |
| 2901 | host.enable = NULL; |
| 2902 | |
| 2903 | if (host.enable_encrypt) |
| 2904 | XFREE (0, host.enable_encrypt); |
| 2905 | host.enable_encrypt = NULL; |
| 2906 | |
| 2907 | return CMD_SUCCESS; |
| 2908 | } |
| 2909 | |
| 2910 | DEFUN (service_password_encrypt, |
| 2911 | service_password_encrypt_cmd, |
| 2912 | "service password-encryption", |
| 2913 | "Set up miscellaneous service\n" |
| 2914 | "Enable encrypted passwords\n") |
| 2915 | { |
| 2916 | if (host.encrypt) |
| 2917 | return CMD_SUCCESS; |
| 2918 | |
| 2919 | host.encrypt = 1; |
| 2920 | |
| 2921 | if (host.password) |
| 2922 | { |
| 2923 | if (host.password_encrypt) |
| 2924 | XFREE (0, host.password_encrypt); |
| 2925 | host.password_encrypt = XSTRDUP (0, zencrypt (host.password)); |
| 2926 | } |
| 2927 | if (host.enable) |
| 2928 | { |
| 2929 | if (host.enable_encrypt) |
| 2930 | XFREE (0, host.enable_encrypt); |
| 2931 | host.enable_encrypt = XSTRDUP (0, zencrypt (host.enable)); |
| 2932 | } |
| 2933 | |
| 2934 | return CMD_SUCCESS; |
| 2935 | } |
| 2936 | |
| 2937 | DEFUN (no_service_password_encrypt, |
| 2938 | no_service_password_encrypt_cmd, |
| 2939 | "no service password-encryption", |
| 2940 | NO_STR |
| 2941 | "Set up miscellaneous service\n" |
| 2942 | "Enable encrypted passwords\n") |
| 2943 | { |
| 2944 | if (! host.encrypt) |
| 2945 | return CMD_SUCCESS; |
| 2946 | |
| 2947 | host.encrypt = 0; |
| 2948 | |
| 2949 | if (host.password_encrypt) |
| 2950 | XFREE (0, host.password_encrypt); |
| 2951 | host.password_encrypt = NULL; |
| 2952 | |
| 2953 | if (host.enable_encrypt) |
| 2954 | XFREE (0, host.enable_encrypt); |
| 2955 | host.enable_encrypt = NULL; |
| 2956 | |
| 2957 | return CMD_SUCCESS; |
| 2958 | } |
| 2959 | |
| 2960 | DEFUN (config_terminal_length, config_terminal_length_cmd, |
| 2961 | "terminal length <0-512>", |
| 2962 | "Set terminal line parameters\n" |
| 2963 | "Set number of lines on a screen\n" |
| 2964 | "Number of lines on screen (0 for no pausing)\n") |
| 2965 | { |
| 2966 | int lines; |
| 2967 | char *endptr = NULL; |
| 2968 | |
| 2969 | lines = strtol (argv[0], &endptr, 10); |
| 2970 | if (lines < 0 || lines > 512 || *endptr != '\0') |
| 2971 | { |
| 2972 | vty_out (vty, "length is malformed%s", VTY_NEWLINE); |
| 2973 | return CMD_WARNING; |
| 2974 | } |
| 2975 | vty->lines = lines; |
| 2976 | |
| 2977 | return CMD_SUCCESS; |
| 2978 | } |
| 2979 | |
| 2980 | DEFUN (config_terminal_no_length, config_terminal_no_length_cmd, |
| 2981 | "terminal no length", |
| 2982 | "Set terminal line parameters\n" |
| 2983 | NO_STR |
| 2984 | "Set number of lines on a screen\n") |
| 2985 | { |
| 2986 | vty->lines = -1; |
| 2987 | return CMD_SUCCESS; |
| 2988 | } |
| 2989 | |
| 2990 | DEFUN (service_terminal_length, service_terminal_length_cmd, |
| 2991 | "service terminal-length <0-512>", |
| 2992 | "Set up miscellaneous service\n" |
| 2993 | "System wide terminal length configuration\n" |
| 2994 | "Number of lines of VTY (0 means no line control)\n") |
| 2995 | { |
| 2996 | int lines; |
| 2997 | char *endptr = NULL; |
| 2998 | |
| 2999 | lines = strtol (argv[0], &endptr, 10); |
| 3000 | if (lines < 0 || lines > 512 || *endptr != '\0') |
| 3001 | { |
| 3002 | vty_out (vty, "length is malformed%s", VTY_NEWLINE); |
| 3003 | return CMD_WARNING; |
| 3004 | } |
| 3005 | host.lines = lines; |
| 3006 | |
| 3007 | return CMD_SUCCESS; |
| 3008 | } |
| 3009 | |
| 3010 | DEFUN (no_service_terminal_length, no_service_terminal_length_cmd, |
| 3011 | "no service terminal-length [<0-512>]", |
| 3012 | NO_STR |
| 3013 | "Set up miscellaneous service\n" |
| 3014 | "System wide terminal length configuration\n" |
| 3015 | "Number of lines of VTY (0 means no line control)\n") |
| 3016 | { |
| 3017 | host.lines = -1; |
| 3018 | return CMD_SUCCESS; |
| 3019 | } |
| 3020 | |
ajs | 2885f72 | 2004-12-17 23:16:33 +0000 | [diff] [blame] | 3021 | DEFUN_HIDDEN (do_echo, |
| 3022 | echo_cmd, |
| 3023 | "echo .MESSAGE", |
| 3024 | "Echo a message back to the vty\n" |
| 3025 | "The message to echo\n") |
| 3026 | { |
| 3027 | char *message; |
| 3028 | |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 3029 | vty_out (vty, "%s%s", ((message = argv_concat(argv, argc, 0)) ? message : ""), |
| 3030 | VTY_NEWLINE); |
| 3031 | if (message) |
| 3032 | XFREE(MTYPE_TMP, message); |
ajs | 2885f72 | 2004-12-17 23:16:33 +0000 | [diff] [blame] | 3033 | return CMD_SUCCESS; |
| 3034 | } |
| 3035 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3036 | DEFUN (config_logmsg, |
| 3037 | config_logmsg_cmd, |
| 3038 | "logmsg "LOG_LEVELS" .MESSAGE", |
| 3039 | "Send a message to enabled logging destinations\n" |
| 3040 | LOG_LEVEL_DESC |
| 3041 | "The message to send\n") |
| 3042 | { |
| 3043 | int level; |
| 3044 | char *message; |
| 3045 | |
| 3046 | if ((level = level_match(argv[0])) == ZLOG_DISABLED) |
| 3047 | return CMD_ERR_NO_MATCH; |
| 3048 | |
ajs | f6834d4 | 2005-01-28 20:28:35 +0000 | [diff] [blame] | 3049 | zlog(NULL, level, ((message = argv_concat(argv, argc, 1)) ? message : "")); |
| 3050 | if (message) |
| 3051 | XFREE(MTYPE_TMP, message); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3052 | return CMD_SUCCESS; |
| 3053 | } |
| 3054 | |
| 3055 | DEFUN (show_logging, |
| 3056 | show_logging_cmd, |
| 3057 | "show logging", |
| 3058 | SHOW_STR |
| 3059 | "Show current logging configuration\n") |
| 3060 | { |
| 3061 | struct zlog *zl = zlog_default; |
| 3062 | |
| 3063 | vty_out (vty, "Syslog logging: "); |
| 3064 | if (zl->maxlvl[ZLOG_DEST_SYSLOG] == ZLOG_DISABLED) |
| 3065 | vty_out (vty, "disabled"); |
| 3066 | else |
| 3067 | vty_out (vty, "level %s, facility %s, ident %s", |
| 3068 | zlog_priority[zl->maxlvl[ZLOG_DEST_SYSLOG]], |
| 3069 | facility_name(zl->facility), zl->ident); |
| 3070 | vty_out (vty, "%s", VTY_NEWLINE); |
| 3071 | |
| 3072 | vty_out (vty, "Stdout logging: "); |
| 3073 | if (zl->maxlvl[ZLOG_DEST_STDOUT] == ZLOG_DISABLED) |
| 3074 | vty_out (vty, "disabled"); |
| 3075 | else |
| 3076 | vty_out (vty, "level %s", |
| 3077 | zlog_priority[zl->maxlvl[ZLOG_DEST_STDOUT]]); |
| 3078 | vty_out (vty, "%s", VTY_NEWLINE); |
| 3079 | |
| 3080 | vty_out (vty, "Monitor logging: "); |
| 3081 | if (zl->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED) |
| 3082 | vty_out (vty, "disabled"); |
| 3083 | else |
| 3084 | vty_out (vty, "level %s", |
| 3085 | zlog_priority[zl->maxlvl[ZLOG_DEST_MONITOR]]); |
| 3086 | vty_out (vty, "%s", VTY_NEWLINE); |
| 3087 | |
| 3088 | vty_out (vty, "File logging: "); |
| 3089 | if ((zl->maxlvl[ZLOG_DEST_FILE] == ZLOG_DISABLED) || |
| 3090 | !zl->fp) |
| 3091 | vty_out (vty, "disabled"); |
| 3092 | else |
| 3093 | vty_out (vty, "level %s, filename %s", |
| 3094 | zlog_priority[zl->maxlvl[ZLOG_DEST_FILE]], |
| 3095 | zl->filename); |
| 3096 | vty_out (vty, "%s", VTY_NEWLINE); |
| 3097 | |
| 3098 | vty_out (vty, "Protocol name: %s%s", |
| 3099 | zlog_proto_names[zl->protocol], VTY_NEWLINE); |
| 3100 | vty_out (vty, "Record priority: %s%s", |
| 3101 | (zl->record_priority ? "enabled" : "disabled"), VTY_NEWLINE); |
| 3102 | |
| 3103 | return CMD_SUCCESS; |
| 3104 | } |
| 3105 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3106 | DEFUN (config_log_stdout, |
| 3107 | config_log_stdout_cmd, |
| 3108 | "log stdout", |
| 3109 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3110 | "Set stdout logging level\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3111 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3112 | zlog_set_level (NULL, ZLOG_DEST_STDOUT, zlog_default->default_lvl); |
| 3113 | return CMD_SUCCESS; |
| 3114 | } |
| 3115 | |
| 3116 | DEFUN (config_log_stdout_level, |
| 3117 | config_log_stdout_level_cmd, |
| 3118 | "log stdout "LOG_LEVELS, |
| 3119 | "Logging control\n" |
| 3120 | "Set stdout logging level\n" |
| 3121 | LOG_LEVEL_DESC) |
| 3122 | { |
| 3123 | int level; |
| 3124 | |
| 3125 | if ((level = level_match(argv[0])) == ZLOG_DISABLED) |
| 3126 | return CMD_ERR_NO_MATCH; |
| 3127 | zlog_set_level (NULL, ZLOG_DEST_STDOUT, level); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3128 | return CMD_SUCCESS; |
| 3129 | } |
| 3130 | |
| 3131 | DEFUN (no_config_log_stdout, |
| 3132 | no_config_log_stdout_cmd, |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3133 | "no log stdout [LEVEL]", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3134 | NO_STR |
| 3135 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3136 | "Cancel logging to stdout\n" |
| 3137 | "Logging level\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3138 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3139 | zlog_set_level (NULL, ZLOG_DEST_STDOUT, ZLOG_DISABLED); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3140 | return CMD_SUCCESS; |
| 3141 | } |
| 3142 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3143 | DEFUN (config_log_monitor, |
| 3144 | config_log_monitor_cmd, |
| 3145 | "log monitor", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3146 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3147 | "Set terminal line (monitor) logging level\n") |
| 3148 | { |
| 3149 | zlog_set_level (NULL, ZLOG_DEST_MONITOR, zlog_default->default_lvl); |
| 3150 | return CMD_SUCCESS; |
| 3151 | } |
| 3152 | |
| 3153 | DEFUN (config_log_monitor_level, |
| 3154 | config_log_monitor_level_cmd, |
| 3155 | "log monitor "LOG_LEVELS, |
| 3156 | "Logging control\n" |
| 3157 | "Set terminal line (monitor) logging level\n" |
| 3158 | LOG_LEVEL_DESC) |
| 3159 | { |
| 3160 | int level; |
| 3161 | |
| 3162 | if ((level = level_match(argv[0])) == ZLOG_DISABLED) |
| 3163 | return CMD_ERR_NO_MATCH; |
| 3164 | zlog_set_level (NULL, ZLOG_DEST_MONITOR, level); |
| 3165 | return CMD_SUCCESS; |
| 3166 | } |
| 3167 | |
| 3168 | DEFUN (no_config_log_monitor, |
| 3169 | no_config_log_monitor_cmd, |
| 3170 | "no log monitor [LEVEL]", |
| 3171 | NO_STR |
| 3172 | "Logging control\n" |
| 3173 | "Disable terminal line (monitor) logging\n" |
| 3174 | "Logging level\n") |
| 3175 | { |
| 3176 | zlog_set_level (NULL, ZLOG_DEST_MONITOR, ZLOG_DISABLED); |
| 3177 | return CMD_SUCCESS; |
| 3178 | } |
| 3179 | |
| 3180 | static int |
| 3181 | set_log_file(struct vty *vty, const char *fname, int loglevel) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3182 | { |
| 3183 | int ret; |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 3184 | char *p = NULL; |
| 3185 | const char *fullpath; |
| 3186 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3187 | /* Path detection. */ |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3188 | if (! IS_DIRECTORY_SEP (*fname)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3189 | { |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 3190 | char cwd[MAXPATHLEN+1]; |
| 3191 | cwd[MAXPATHLEN] = '\0'; |
| 3192 | |
| 3193 | if (getcwd (cwd, MAXPATHLEN) == NULL) |
| 3194 | { |
| 3195 | zlog_err ("config_log_file: Unable to alloc mem!"); |
| 3196 | return CMD_WARNING; |
| 3197 | } |
| 3198 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3199 | if ( (p = XMALLOC (MTYPE_TMP, strlen (cwd) + strlen (fname) + 2)) |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 3200 | == NULL) |
| 3201 | { |
| 3202 | zlog_err ("config_log_file: Unable to alloc mem!"); |
| 3203 | return CMD_WARNING; |
| 3204 | } |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3205 | sprintf (p, "%s/%s", cwd, fname); |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 3206 | fullpath = p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3207 | } |
| 3208 | else |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3209 | fullpath = fname; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3210 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3211 | ret = zlog_set_file (NULL, fullpath, loglevel); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3212 | |
paul | 9035efa | 2004-10-10 11:56:56 +0000 | [diff] [blame] | 3213 | if (p) |
| 3214 | XFREE (MTYPE_TMP, p); |
| 3215 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3216 | if (!ret) |
| 3217 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3218 | vty_out (vty, "can't open logfile %s\n", fname); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3219 | return CMD_WARNING; |
| 3220 | } |
| 3221 | |
| 3222 | if (host.logfile) |
| 3223 | XFREE (MTYPE_TMP, host.logfile); |
| 3224 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3225 | host.logfile = XSTRDUP (MTYPE_TMP, fname); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3226 | |
| 3227 | return CMD_SUCCESS; |
| 3228 | } |
| 3229 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3230 | DEFUN (config_log_file, |
| 3231 | config_log_file_cmd, |
| 3232 | "log file FILENAME", |
| 3233 | "Logging control\n" |
| 3234 | "Logging to file\n" |
| 3235 | "Logging filename\n") |
| 3236 | { |
| 3237 | return set_log_file(vty, argv[0], zlog_default->default_lvl); |
| 3238 | } |
| 3239 | |
| 3240 | DEFUN (config_log_file_level, |
| 3241 | config_log_file_level_cmd, |
| 3242 | "log file FILENAME "LOG_LEVELS, |
| 3243 | "Logging control\n" |
| 3244 | "Logging to file\n" |
| 3245 | "Logging filename\n" |
| 3246 | LOG_LEVEL_DESC) |
| 3247 | { |
| 3248 | int level; |
| 3249 | |
| 3250 | if ((level = level_match(argv[1])) == ZLOG_DISABLED) |
| 3251 | return CMD_ERR_NO_MATCH; |
| 3252 | return set_log_file(vty, argv[0], level); |
| 3253 | } |
| 3254 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3255 | DEFUN (no_config_log_file, |
| 3256 | no_config_log_file_cmd, |
| 3257 | "no log file [FILENAME]", |
| 3258 | NO_STR |
| 3259 | "Logging control\n" |
| 3260 | "Cancel logging to file\n" |
| 3261 | "Logging file name\n") |
| 3262 | { |
| 3263 | zlog_reset_file (NULL); |
| 3264 | |
| 3265 | if (host.logfile) |
| 3266 | XFREE (MTYPE_TMP, host.logfile); |
| 3267 | |
| 3268 | host.logfile = NULL; |
| 3269 | |
| 3270 | return CMD_SUCCESS; |
| 3271 | } |
| 3272 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3273 | ALIAS (no_config_log_file, |
| 3274 | no_config_log_file_level_cmd, |
| 3275 | "no log file FILENAME LEVEL", |
| 3276 | NO_STR |
| 3277 | "Logging control\n" |
| 3278 | "Cancel logging to file\n" |
| 3279 | "Logging file name\n" |
| 3280 | "Logging level\n") |
| 3281 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3282 | DEFUN (config_log_syslog, |
| 3283 | config_log_syslog_cmd, |
| 3284 | "log syslog", |
| 3285 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3286 | "Set syslog logging level\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3287 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3288 | zlog_set_level (NULL, ZLOG_DEST_SYSLOG, zlog_default->default_lvl); |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3289 | return CMD_SUCCESS; |
| 3290 | } |
| 3291 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3292 | DEFUN (config_log_syslog_level, |
| 3293 | config_log_syslog_level_cmd, |
| 3294 | "log syslog "LOG_LEVELS, |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3295 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3296 | "Set syslog logging level\n" |
| 3297 | LOG_LEVEL_DESC) |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3298 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3299 | int level; |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3300 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3301 | if ((level = level_match(argv[0])) == ZLOG_DISABLED) |
| 3302 | return CMD_ERR_NO_MATCH; |
| 3303 | zlog_set_level (NULL, ZLOG_DEST_SYSLOG, level); |
| 3304 | return CMD_SUCCESS; |
| 3305 | } |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3306 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3307 | DEFUN_DEPRECATED (config_log_syslog_facility, |
| 3308 | config_log_syslog_facility_cmd, |
| 3309 | "log syslog facility "LOG_FACILITIES, |
| 3310 | "Logging control\n" |
| 3311 | "Logging goes to syslog\n" |
| 3312 | "(Deprecated) Facility parameter for syslog messages\n" |
| 3313 | LOG_FACILITY_DESC) |
| 3314 | { |
| 3315 | int facility; |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3316 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3317 | if ((facility = facility_match(argv[0])) < 0) |
| 3318 | return CMD_ERR_NO_MATCH; |
| 3319 | |
| 3320 | zlog_set_level (NULL, ZLOG_DEST_SYSLOG, zlog_default->default_lvl); |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3321 | zlog_default->facility = facility; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3322 | return CMD_SUCCESS; |
| 3323 | } |
| 3324 | |
| 3325 | DEFUN (no_config_log_syslog, |
| 3326 | no_config_log_syslog_cmd, |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3327 | "no log syslog [LEVEL]", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3328 | NO_STR |
| 3329 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3330 | "Cancel logging to syslog\n" |
| 3331 | "Logging level\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3332 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3333 | zlog_set_level (NULL, ZLOG_DEST_SYSLOG, ZLOG_DISABLED); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3334 | return CMD_SUCCESS; |
| 3335 | } |
| 3336 | |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3337 | ALIAS (no_config_log_syslog, |
| 3338 | no_config_log_syslog_facility_cmd, |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3339 | "no log syslog facility "LOG_FACILITIES, |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3340 | NO_STR |
| 3341 | "Logging control\n" |
| 3342 | "Logging goes to syslog\n" |
| 3343 | "Facility parameter for syslog messages\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3344 | LOG_FACILITY_DESC) |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3345 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3346 | DEFUN (config_log_facility, |
| 3347 | config_log_facility_cmd, |
| 3348 | "log facility "LOG_FACILITIES, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3349 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3350 | "Facility parameter for syslog messages\n" |
| 3351 | LOG_FACILITY_DESC) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3352 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3353 | int facility; |
| 3354 | |
| 3355 | if ((facility = facility_match(argv[0])) < 0) |
| 3356 | return CMD_ERR_NO_MATCH; |
| 3357 | zlog_default->facility = facility; |
| 3358 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3359 | } |
| 3360 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3361 | DEFUN (no_config_log_facility, |
| 3362 | no_config_log_facility_cmd, |
| 3363 | "no log facility [FACILITY]", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3364 | NO_STR |
| 3365 | "Logging control\n" |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3366 | "Reset syslog facility to default (daemon)\n" |
| 3367 | "Syslog facility\n") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3368 | { |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3369 | zlog_default->facility = LOG_DAEMON; |
| 3370 | return CMD_SUCCESS; |
| 3371 | } |
| 3372 | |
| 3373 | DEFUN_DEPRECATED (config_log_trap, |
| 3374 | config_log_trap_cmd, |
| 3375 | "log trap "LOG_LEVELS, |
| 3376 | "Logging control\n" |
| 3377 | "(Deprecated) Set logging level and default for all destinations\n" |
| 3378 | LOG_LEVEL_DESC) |
| 3379 | { |
| 3380 | int new_level ; |
| 3381 | int i; |
| 3382 | |
| 3383 | if ((new_level = level_match(argv[0])) == ZLOG_DISABLED) |
| 3384 | return CMD_ERR_NO_MATCH; |
| 3385 | |
| 3386 | zlog_default->default_lvl = new_level; |
| 3387 | for (i = 0; i < ZLOG_NUM_DESTS; i++) |
| 3388 | if (zlog_default->maxlvl[i] != ZLOG_DISABLED) |
| 3389 | zlog_default->maxlvl[i] = new_level; |
| 3390 | return CMD_SUCCESS; |
| 3391 | } |
| 3392 | |
| 3393 | DEFUN_DEPRECATED (no_config_log_trap, |
| 3394 | no_config_log_trap_cmd, |
| 3395 | "no log trap [LEVEL]", |
| 3396 | NO_STR |
| 3397 | "Logging control\n" |
| 3398 | "Permit all logging information\n" |
| 3399 | "Logging level\n") |
| 3400 | { |
| 3401 | zlog_default->default_lvl = LOG_DEBUG; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3402 | return CMD_SUCCESS; |
| 3403 | } |
| 3404 | |
| 3405 | DEFUN (config_log_record_priority, |
| 3406 | config_log_record_priority_cmd, |
| 3407 | "log record-priority", |
| 3408 | "Logging control\n" |
| 3409 | "Log the priority of the message within the message\n") |
| 3410 | { |
| 3411 | zlog_default->record_priority = 1 ; |
| 3412 | return CMD_SUCCESS; |
| 3413 | } |
| 3414 | |
| 3415 | DEFUN (no_config_log_record_priority, |
| 3416 | no_config_log_record_priority_cmd, |
| 3417 | "no log record-priority", |
| 3418 | NO_STR |
| 3419 | "Logging control\n" |
| 3420 | "Do not log the priority of the message within the message\n") |
| 3421 | { |
| 3422 | zlog_default->record_priority = 0 ; |
| 3423 | return CMD_SUCCESS; |
| 3424 | } |
| 3425 | |
paul | 3b0c5d9 | 2005-03-08 10:43:43 +0000 | [diff] [blame] | 3426 | DEFUN (banner_motd_file, |
| 3427 | banner_motd_file_cmd, |
| 3428 | "banner motd file [FILE]", |
| 3429 | "Set banner\n" |
| 3430 | "Banner for motd\n" |
| 3431 | "Banner from a file\n" |
| 3432 | "Filename\n") |
| 3433 | { |
paul | b45da6f | 2005-03-08 15:16:57 +0000 | [diff] [blame] | 3434 | if (host.motdfile) |
| 3435 | XFREE (MTYPE_TMP, host.motdfile); |
| 3436 | host.motdfile = XSTRDUP (MTYPE_TMP, argv[0]); |
| 3437 | |
paul | 3b0c5d9 | 2005-03-08 10:43:43 +0000 | [diff] [blame] | 3438 | return CMD_SUCCESS; |
| 3439 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3440 | |
| 3441 | DEFUN (banner_motd_default, |
| 3442 | banner_motd_default_cmd, |
| 3443 | "banner motd default", |
| 3444 | "Set banner string\n" |
| 3445 | "Strings for motd\n" |
| 3446 | "Default string\n") |
| 3447 | { |
| 3448 | host.motd = default_motd; |
| 3449 | return CMD_SUCCESS; |
| 3450 | } |
| 3451 | |
| 3452 | DEFUN (no_banner_motd, |
| 3453 | no_banner_motd_cmd, |
| 3454 | "no banner motd", |
| 3455 | NO_STR |
| 3456 | "Set banner string\n" |
| 3457 | "Strings for motd\n") |
| 3458 | { |
| 3459 | host.motd = NULL; |
paul | 2208518 | 2005-03-08 16:00:12 +0000 | [diff] [blame] | 3460 | if (host.motdfile) |
| 3461 | XFREE (MTYPE_TMP, host.motdfile); |
paul | 3b0c5d9 | 2005-03-08 10:43:43 +0000 | [diff] [blame] | 3462 | host.motdfile = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3463 | return CMD_SUCCESS; |
| 3464 | } |
| 3465 | |
| 3466 | /* Set config filename. Called from vty.c */ |
| 3467 | void |
| 3468 | host_config_set (char *filename) |
| 3469 | { |
| 3470 | host.config = strdup (filename); |
| 3471 | } |
| 3472 | |
| 3473 | void |
| 3474 | install_default (enum node_type node) |
| 3475 | { |
| 3476 | install_element (node, &config_exit_cmd); |
| 3477 | install_element (node, &config_quit_cmd); |
| 3478 | install_element (node, &config_end_cmd); |
| 3479 | install_element (node, &config_help_cmd); |
| 3480 | install_element (node, &config_list_cmd); |
| 3481 | |
| 3482 | install_element (node, &config_write_terminal_cmd); |
| 3483 | install_element (node, &config_write_file_cmd); |
| 3484 | install_element (node, &config_write_memory_cmd); |
| 3485 | install_element (node, &config_write_cmd); |
| 3486 | install_element (node, &show_running_config_cmd); |
| 3487 | } |
| 3488 | |
| 3489 | /* Initialize command interface. Install basic nodes and commands. */ |
| 3490 | void |
| 3491 | cmd_init (int terminal) |
| 3492 | { |
| 3493 | /* Allocate initial top vector of commands. */ |
| 3494 | cmdvec = vector_init (VECTOR_MIN_SIZE); |
| 3495 | |
| 3496 | /* Default host value settings. */ |
| 3497 | host.name = NULL; |
| 3498 | host.password = NULL; |
| 3499 | host.enable = NULL; |
| 3500 | host.logfile = NULL; |
| 3501 | host.config = NULL; |
| 3502 | host.lines = -1; |
| 3503 | host.motd = default_motd; |
paul | 3b0c5d9 | 2005-03-08 10:43:43 +0000 | [diff] [blame] | 3504 | host.motdfile = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3505 | |
| 3506 | /* Install top nodes. */ |
| 3507 | install_node (&view_node, NULL); |
| 3508 | install_node (&enable_node, NULL); |
| 3509 | install_node (&auth_node, NULL); |
| 3510 | install_node (&auth_enable_node, NULL); |
| 3511 | install_node (&config_node, config_write_host); |
| 3512 | |
| 3513 | /* Each node's basic commands. */ |
| 3514 | install_element (VIEW_NODE, &show_version_cmd); |
| 3515 | if (terminal) |
| 3516 | { |
| 3517 | install_element (VIEW_NODE, &config_list_cmd); |
| 3518 | install_element (VIEW_NODE, &config_exit_cmd); |
| 3519 | install_element (VIEW_NODE, &config_quit_cmd); |
| 3520 | install_element (VIEW_NODE, &config_help_cmd); |
| 3521 | install_element (VIEW_NODE, &config_enable_cmd); |
| 3522 | install_element (VIEW_NODE, &config_terminal_length_cmd); |
| 3523 | install_element (VIEW_NODE, &config_terminal_no_length_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3524 | install_element (VIEW_NODE, &show_logging_cmd); |
ajs | 2885f72 | 2004-12-17 23:16:33 +0000 | [diff] [blame] | 3525 | install_element (VIEW_NODE, &echo_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3526 | } |
| 3527 | |
| 3528 | if (terminal) |
| 3529 | { |
| 3530 | install_default (ENABLE_NODE); |
| 3531 | install_element (ENABLE_NODE, &config_disable_cmd); |
| 3532 | install_element (ENABLE_NODE, &config_terminal_cmd); |
| 3533 | install_element (ENABLE_NODE, ©_runningconfig_startupconfig_cmd); |
| 3534 | } |
| 3535 | install_element (ENABLE_NODE, &show_startup_config_cmd); |
| 3536 | install_element (ENABLE_NODE, &show_version_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3537 | |
| 3538 | if (terminal) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3539 | { |
hasso | e7168df | 2004-10-03 20:11:32 +0000 | [diff] [blame] | 3540 | install_element (ENABLE_NODE, &config_terminal_length_cmd); |
| 3541 | install_element (ENABLE_NODE, &config_terminal_no_length_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3542 | install_element (ENABLE_NODE, &show_logging_cmd); |
ajs | 2885f72 | 2004-12-17 23:16:33 +0000 | [diff] [blame] | 3543 | install_element (ENABLE_NODE, &echo_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3544 | install_element (ENABLE_NODE, &config_logmsg_cmd); |
hasso | e7168df | 2004-10-03 20:11:32 +0000 | [diff] [blame] | 3545 | |
| 3546 | install_default (CONFIG_NODE); |
hasso | ea8e9d9 | 2004-10-07 21:32:14 +0000 | [diff] [blame] | 3547 | } |
| 3548 | |
| 3549 | install_element (CONFIG_NODE, &hostname_cmd); |
| 3550 | install_element (CONFIG_NODE, &no_hostname_cmd); |
hasso | e7168df | 2004-10-03 20:11:32 +0000 | [diff] [blame] | 3551 | |
hasso | ea8e9d9 | 2004-10-07 21:32:14 +0000 | [diff] [blame] | 3552 | if (terminal) |
| 3553 | { |
hasso | e7168df | 2004-10-03 20:11:32 +0000 | [diff] [blame] | 3554 | install_element (CONFIG_NODE, &password_cmd); |
| 3555 | install_element (CONFIG_NODE, &password_text_cmd); |
| 3556 | install_element (CONFIG_NODE, &enable_password_cmd); |
| 3557 | install_element (CONFIG_NODE, &enable_password_text_cmd); |
| 3558 | install_element (CONFIG_NODE, &no_enable_password_cmd); |
| 3559 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3560 | install_element (CONFIG_NODE, &config_log_stdout_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3561 | install_element (CONFIG_NODE, &config_log_stdout_level_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3562 | install_element (CONFIG_NODE, &no_config_log_stdout_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3563 | install_element (CONFIG_NODE, &config_log_monitor_cmd); |
| 3564 | install_element (CONFIG_NODE, &config_log_monitor_level_cmd); |
| 3565 | install_element (CONFIG_NODE, &no_config_log_monitor_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3566 | install_element (CONFIG_NODE, &config_log_file_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3567 | install_element (CONFIG_NODE, &config_log_file_level_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3568 | install_element (CONFIG_NODE, &no_config_log_file_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3569 | install_element (CONFIG_NODE, &no_config_log_file_level_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3570 | install_element (CONFIG_NODE, &config_log_syslog_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3571 | install_element (CONFIG_NODE, &config_log_syslog_level_cmd); |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3572 | install_element (CONFIG_NODE, &config_log_syslog_facility_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3573 | install_element (CONFIG_NODE, &no_config_log_syslog_cmd); |
paul | 12ab19f | 2003-07-26 06:14:55 +0000 | [diff] [blame] | 3574 | install_element (CONFIG_NODE, &no_config_log_syslog_facility_cmd); |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 3575 | install_element (CONFIG_NODE, &config_log_facility_cmd); |
| 3576 | install_element (CONFIG_NODE, &no_config_log_facility_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3577 | install_element (CONFIG_NODE, &config_log_trap_cmd); |
| 3578 | install_element (CONFIG_NODE, &no_config_log_trap_cmd); |
| 3579 | install_element (CONFIG_NODE, &config_log_record_priority_cmd); |
| 3580 | install_element (CONFIG_NODE, &no_config_log_record_priority_cmd); |
| 3581 | install_element (CONFIG_NODE, &service_password_encrypt_cmd); |
| 3582 | install_element (CONFIG_NODE, &no_service_password_encrypt_cmd); |
| 3583 | install_element (CONFIG_NODE, &banner_motd_default_cmd); |
paul | 3b0c5d9 | 2005-03-08 10:43:43 +0000 | [diff] [blame] | 3584 | install_element (CONFIG_NODE, &banner_motd_file_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3585 | install_element (CONFIG_NODE, &no_banner_motd_cmd); |
| 3586 | install_element (CONFIG_NODE, &service_terminal_length_cmd); |
| 3587 | install_element (CONFIG_NODE, &no_service_terminal_length_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3588 | |
paul | 354d119 | 2005-04-25 16:26:42 +0000 | [diff] [blame] | 3589 | install_element (VIEW_NODE, &show_thread_cpu_cmd); |
| 3590 | install_element (ENABLE_NODE, &show_thread_cpu_cmd); |
| 3591 | install_element (VIEW_NODE, &show_work_queues_cmd); |
| 3592 | install_element (ENABLE_NODE, &show_work_queues_cmd); |
paul | 9ab6812 | 2003-01-18 01:16:20 +0000 | [diff] [blame] | 3593 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3594 | srand(time(NULL)); |
| 3595 | } |