]> git.proxmox.com Git - mirror_frr.git/blame - lib/vty.c
lib: Fix some *bsd build issues introduced by EIGRP code
[mirror_frr.git] / lib / vty.c
CommitLineData
718e3744 1/*
2 * Virtual terminal [aka TeletYpe] interface routine.
3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
d0bfb22c 20 * 02111-1307, USA.
718e3744 21 */
22
23#include <zebra.h>
24
25#include "linklist.h"
b21b19c5 26#include "thread.h"
718e3744 27#include "buffer.h"
5e4fa164 28#include <lib/version.h>
718e3744 29#include "command.h"
30#include "sockunion.h"
718e3744 31#include "memory.h"
718e3744 32#include "log.h"
33#include "prefix.h"
34#include "filter.h"
b21b19c5 35#include "vty.h"
edd7c245 36#include "privs.h"
9fc7ebf1 37#include "network.h"
38
39#include <arpa/telnet.h>
b510a06e 40#include <termios.h>
718e3744 41
4a1ab8e4
DL
42DEFINE_MTYPE_STATIC(LIB, VTY, "VTY")
43DEFINE_MTYPE_STATIC(LIB, VTY_OUT_BUF, "VTY output buffer")
44DEFINE_MTYPE_STATIC(LIB, VTY_HIST, "VTY history")
45
718e3744 46/* Vty events */
d0bfb22c 47enum event
718e3744 48{
49 VTY_SERV,
50 VTY_READ,
51 VTY_WRITE,
52 VTY_TIMEOUT_RESET,
53#ifdef VTYSH
54 VTYSH_SERV,
49ff6d9d 55 VTYSH_READ,
56 VTYSH_WRITE
718e3744 57#endif /* VTYSH */
58};
59
60static void vty_event (enum event, int, struct vty *);
61
62/* Extern host structure from command.c */
63extern struct host host;
6b0655a2 64
718e3744 65/* Vector which store each vty structure. */
66static vector vtyvec;
67
68/* Vty timeout value. */
69static unsigned long vty_timeout_val = VTY_TIMEOUT_DEFAULT;
70
71/* Vty access-class command */
72static char *vty_accesslist_name = NULL;
73
74/* Vty access-calss for IPv6. */
75static char *vty_ipv6_accesslist_name = NULL;
76
77/* VTY server thread. */
677bcbbf 78static vector Vvty_serv_thread;
718e3744 79
80/* Current directory. */
81char *vty_cwd = NULL;
82
83/* Configure lock. */
84static int vty_config;
cc933ef9 85static int vty_config_is_lockless = 0;
718e3744 86
87/* Login password check. */
88static int no_password_check = 0;
89
90/* Integrated configuration file path */
91char integrate_default[] = SYSCONFDIR INTEGRATE_DEFAULT_CONFIG;
92
da688ecd 93static int do_log_commands = 0;
6b0655a2 94
718e3744 95/* VTY standard output function. */
96int
97vty_out (struct vty *vty, const char *format, ...)
98{
99 va_list args;
100 int len = 0;
101 int size = 1024;
102 char buf[1024];
103 char *p = NULL;
718e3744 104
105 if (vty_shell (vty))
d246bd96 106 {
107 va_start (args, format);
108 vprintf (format, args);
109 va_end (args);
110 }
718e3744 111 else
112 {
113 /* Try to write to initial buffer. */
d246bd96 114 va_start (args, format);
1035065f 115 len = vsnprintf (buf, sizeof(buf), format, args);
d246bd96 116 va_end (args);
718e3744 117
118 /* Initial buffer is not enough. */
119 if (len < 0 || len >= size)
d0bfb22c
QY
120 {
121 while (1)
122 {
123 if (len > -1)
124 size = len + 1;
125 else
126 size = size * 2;
127
128 p = XREALLOC (MTYPE_VTY_OUT_BUF, p, size);
129 if (! p)
130 return -1;
131
132 va_start (args, format);
133 len = vsnprintf (p, size, format, args);
134 va_end (args);
135
136 if (len > -1 && len < size)
137 break;
138 }
139 }
718e3744 140
141 /* When initial buffer is enough to store all output. */
142 if (! p)
d0bfb22c 143 p = buf;
718e3744 144
145 /* Pointer p must point out buffer. */
9fc7ebf1 146 buffer_put (vty->obuf, (u_char *) p, len);
718e3744 147
148 /* If p is not different with buf, it is allocated buffer. */
149 if (p != buf)
d0bfb22c 150 XFREE (MTYPE_VTY_OUT_BUF, p);
718e3744 151 }
152
718e3744 153 return len;
154}
155
d246bd96 156static int
274a4a44 157vty_log_out (struct vty *vty, const char *level, const char *proto_str,
d0bfb22c 158 const char *format, struct timestamp_control *ctl, va_list va)
718e3744 159{
9fc7ebf1 160 int ret;
718e3744 161 int len;
162 char buf[1024];
08942da5 163
1ed72e0b
AS
164 if (!ctl->already_rendered)
165 {
166 ctl->len = quagga_timestamp(ctl->precision, ctl->buf, sizeof(ctl->buf));
167 ctl->already_rendered = 1;
168 }
169 if (ctl->len+1 >= sizeof(buf))
170 return -1;
171 memcpy(buf, ctl->buf, len = ctl->len);
172 buf[len++] = ' ';
173 buf[len] = '\0';
718e3744 174
274a4a44 175 if (level)
08942da5 176 ret = snprintf(buf+len, sizeof(buf)-len, "%s: %s: ", level, proto_str);
274a4a44 177 else
08942da5
AS
178 ret = snprintf(buf+len, sizeof(buf)-len, "%s: ", proto_str);
179 if ((ret < 0) || ((size_t)(len += ret) >= sizeof(buf)))
9fc7ebf1 180 return -1;
718e3744 181
9fc7ebf1 182 if (((ret = vsnprintf(buf+len, sizeof(buf)-len, format, va)) < 0) ||
183 ((size_t)((len += ret)+2) > sizeof(buf)))
718e3744 184 return -1;
718e3744 185
9fc7ebf1 186 buf[len++] = '\r';
187 buf[len++] = '\n';
718e3744 188
c5e69a02 189 if (write(vty->wfd, buf, len) < 0)
9fc7ebf1 190 {
191 if (ERRNO_IO_RETRY(errno))
d0bfb22c
QY
192 /* Kernel buffer is full, probably too much debugging output, so just
193 drop the data and ignore. */
194 return -1;
9fc7ebf1 195 /* Fatal I/O error. */
74542d73 196 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
9fc7ebf1 197 zlog_warn("%s: write failed to vty client fd %d, closing: %s",
d0bfb22c 198 __func__, vty->fd, safe_strerror(errno));
9fc7ebf1 199 buffer_reset(vty->obuf);
9d0a3260
AS
200 /* cannot call vty_close, because a parent routine may still try
201 to access the vty struct */
202 vty->status = VTY_CLOSE;
203 shutdown(vty->fd, SHUT_RDWR);
9fc7ebf1 204 return -1;
205 }
206 return 0;
718e3744 207}
208
209/* Output current time to the vty. */
210void
211vty_time_print (struct vty *vty, int cr)
212{
ae616d60 213 char buf[QUAGGA_TIMESTAMP_LEN];
d0bfb22c 214
1ed72e0b 215 if (quagga_timestamp(0, buf, sizeof(buf)) == 0)
718e3744 216 {
4525281a 217 zlog_info("quagga_timestamp error");
718e3744 218 return;
219 }
220 if (cr)
221 vty_out (vty, "%s\n", buf);
222 else
223 vty_out (vty, "%s ", buf);
224
225 return;
226}
227
228/* Say hello to vty interface. */
229void
230vty_hello (struct vty *vty)
231{
3b0c5d9a 232 if (host.motdfile)
233 {
234 FILE *f;
235 char buf[4096];
22085181 236
3b0c5d9a 237 f = fopen (host.motdfile, "r");
238 if (f)
d0bfb22c
QY
239 {
240 while (fgets (buf, sizeof (buf), f))
241 {
242 char *s;
243 /* work backwards to ignore trailling isspace() */
244 for (s = buf + strlen (buf); (s > buf) && isspace ((int)*(s - 1));
245 s--);
246 *s = '\0';
247 vty_out (vty, "%s%s", buf, VTY_NEWLINE);
248 }
249 fclose (f);
250 }
3b0c5d9a 251 else
d0bfb22c 252 vty_out (vty, "MOTD file not found%s", VTY_NEWLINE);
3b0c5d9a 253 }
254 else if (host.motd)
b830c89a 255 vty_out (vty, "%s", host.motd);
718e3744 256}
257
258/* Put out prompt and wait input from user. */
259static void
260vty_prompt (struct vty *vty)
261{
262 struct utsname names;
263 const char*hostname;
264
265 if (vty->type == VTY_TERM)
266 {
267 hostname = host.name;
268 if (!hostname)
d0bfb22c
QY
269 {
270 uname (&names);
271 hostname = names.nodename;
272 }
718e3744 273 vty_out (vty, cmd_prompt (vty->node), hostname);
274 }
275}
276
277/* Send WILL TELOPT_ECHO to remote server. */
9fc7ebf1 278static void
718e3744 279vty_will_echo (struct vty *vty)
280{
02ff83c5 281 unsigned char cmd[] = { IAC, WILL, TELOPT_ECHO, '\0' };
718e3744 282 vty_out (vty, "%s", cmd);
283}
284
285/* Make suppress Go-Ahead telnet option. */
286static void
287vty_will_suppress_go_ahead (struct vty *vty)
288{
02ff83c5 289 unsigned char cmd[] = { IAC, WILL, TELOPT_SGA, '\0' };
718e3744 290 vty_out (vty, "%s", cmd);
291}
292
293/* Make don't use linemode over telnet. */
294static void
295vty_dont_linemode (struct vty *vty)
296{
02ff83c5 297 unsigned char cmd[] = { IAC, DONT, TELOPT_LINEMODE, '\0' };
718e3744 298 vty_out (vty, "%s", cmd);
299}
300
301/* Use window size. */
302static void
303vty_do_window_size (struct vty *vty)
304{
02ff83c5 305 unsigned char cmd[] = { IAC, DO, TELOPT_NAWS, '\0' };
718e3744 306 vty_out (vty, "%s", cmd);
307}
308
309#if 0 /* Currently not used. */
310/* Make don't use lflow vty interface. */
311static void
312vty_dont_lflow_ahead (struct vty *vty)
313{
02ff83c5 314 unsigned char cmd[] = { IAC, DONT, TELOPT_LFLOW, '\0' };
718e3744 315 vty_out (vty, "%s", cmd);
316}
317#endif /* 0 */
318
319/* Allocate new vty struct. */
320struct vty *
321vty_new ()
322{
323 struct vty *new = XCALLOC (MTYPE_VTY, sizeof (struct vty));
324
d0bfb22c 325 new->obuf = buffer_new(0); /* Use default buffer size. */
718e3744 326 new->buf = XCALLOC (MTYPE_VTY, VTY_BUFSIZ);
5689fe5f 327 new->error_buf = XCALLOC (MTYPE_VTY, VTY_BUFSIZ);
718e3744 328 new->max = VTY_BUFSIZ;
718e3744 329
330 return new;
331}
332
333/* Authentication of vty */
334static void
335vty_auth (struct vty *vty, char *buf)
336{
337 char *passwd = NULL;
338 enum node_type next_node = 0;
339 int fail;
340 char *crypt (const char *, const char *);
341
342 switch (vty->node)
343 {
344 case AUTH_NODE:
345 if (host.encrypt)
d0bfb22c 346 passwd = host.password_encrypt;
718e3744 347 else
d0bfb22c 348 passwd = host.password;
718e3744 349 if (host.advanced)
d0bfb22c 350 next_node = host.enable ? VIEW_NODE : ENABLE_NODE;
718e3744 351 else
d0bfb22c 352 next_node = VIEW_NODE;
718e3744 353 break;
354 case AUTH_ENABLE_NODE:
355 if (host.encrypt)
d0bfb22c 356 passwd = host.enable_encrypt;
718e3744 357 else
d0bfb22c 358 passwd = host.enable;
718e3744 359 next_node = ENABLE_NODE;
360 break;
361 }
362
363 if (passwd)
364 {
365 if (host.encrypt)
d0bfb22c 366 fail = strcmp (crypt(buf, passwd), passwd);
718e3744 367 else
d0bfb22c 368 fail = strcmp (buf, passwd);
718e3744 369 }
370 else
371 fail = 1;
372
373 if (! fail)
374 {
375 vty->fail = 0;
d0bfb22c 376 vty->node = next_node; /* Success ! */
718e3744 377 }
378 else
379 {
380 vty->fail++;
381 if (vty->fail >= 3)
d0bfb22c
QY
382 {
383 if (vty->node == AUTH_NODE)
384 {
385 vty_out (vty, "%% Bad passwords, too many failures!%s", VTY_NEWLINE);
386 vty->status = VTY_CLOSE;
387 }
388 else
389 {
390 /* AUTH_ENABLE_NODE */
391 vty->fail = 0;
392 vty_out (vty, "%% Bad enable passwords, too many failures!%s", VTY_NEWLINE);
3c8ab49f 393 vty->status = VTY_CLOSE;
d0bfb22c
QY
394 }
395 }
718e3744 396 }
397}
398
399/* Command execution over the vty interface. */
9fc7ebf1 400static int
718e3744 401vty_command (struct vty *vty, char *buf)
402{
403 int ret;
404 vector vline;
fbf5d033 405 const char *protocolname;
da688ecd 406 char *cp = NULL;
718e3744 407
1035065f
LB
408 /*
409 * Log non empty command lines
410 */
da688ecd
LB
411 if (do_log_commands)
412 cp = buf;
1035065f
LB
413 if (cp != NULL)
414 {
415 /* Skip white spaces. */
416 while (isspace ((int) *cp) && *cp != '\0')
417 cp++;
418 }
419 if (cp != NULL && *cp != '\0')
420 {
421 unsigned i;
d0bfb22c 422 char vty_str[VTY_BUFSIZ];
1035065f
LB
423 char prompt_str[VTY_BUFSIZ];
424
425 /* format the base vty info */
426 snprintf(vty_str, sizeof(vty_str), "vty[??]@%s", vty->address);
427 if (vty)
428 for (i = 0; i < vector_active (vtyvec); i++)
429 if (vty == vector_slot (vtyvec, i))
430 {
431 snprintf(vty_str, sizeof(vty_str), "vty[%d]@%s",
432 i, vty->address);
433 break;
434 }
435
436 /* format the prompt */
437 snprintf(prompt_str, sizeof(prompt_str), cmd_prompt (vty->node), vty_str);
438
439 /* now log the command */
4525281a 440 zlog_err("%s%s", prompt_str, buf);
1035065f 441 }
718e3744 442 /* Split readline string up into the vector */
443 vline = cmd_make_strvec (buf);
444
445 if (vline == NULL)
446 return CMD_SUCCESS;
447
924b9229 448#ifdef CONSUMED_TIME_CHECK
449 {
450 RUSAGE_T before;
451 RUSAGE_T after;
8b70d0b0 452 unsigned long realtime, cputime;
924b9229 453
454 GETRUSAGE(&before);
455#endif /* CONSUMED_TIME_CHECK */
456
87d683b0 457 ret = cmd_execute_command (vline, vty, NULL, 0);
718e3744 458
fbf5d033 459 /* Get the name of the protocol if any */
deaa50db 460 protocolname = zlog_protoname();
d0bfb22c 461
924b9229 462#ifdef CONSUMED_TIME_CHECK
463 GETRUSAGE(&after);
8b70d0b0 464 if ((realtime = thread_consumed_time(&after, &before, &cputime)) >
d0bfb22c 465 CONSUMED_TIME_CHECK)
924b9229 466 /* Warn about CPU hog that must be fixed. */
8b70d0b0 467 zlog_warn("SLOW COMMAND: command took %lums (cpu time %lums): %s",
d0bfb22c 468 realtime/1000, cputime/1000, buf);
924b9229 469 }
470#endif /* CONSUMED_TIME_CHECK */
471
718e3744 472 if (ret != CMD_SUCCESS)
473 switch (ret)
474 {
475 case CMD_WARNING:
d0bfb22c
QY
476 if (vty->type == VTY_FILE)
477 vty_out (vty, "Warning...%s", VTY_NEWLINE);
478 break;
718e3744 479 case CMD_ERR_AMBIGUOUS:
d0bfb22c
QY
480 vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
481 break;
718e3744 482 case CMD_ERR_NO_MATCH:
d0bfb22c
QY
483 vty_out (vty, "%% [%s] Unknown command: %s%s", protocolname, buf, VTY_NEWLINE);
484 break;
718e3744 485 case CMD_ERR_INCOMPLETE:
d0bfb22c
QY
486 vty_out (vty, "%% Command incomplete.%s", VTY_NEWLINE);
487 break;
718e3744 488 }
489 cmd_free_strvec (vline);
490
491 return ret;
492}
6b0655a2 493
9fc7ebf1 494static const char telnet_backward_char = 0x08;
495static const char telnet_space_char = ' ';
718e3744 496
497/* Basic function to write buffer to vty. */
498static void
9fc7ebf1 499vty_write (struct vty *vty, const char *buf, size_t nbytes)
718e3744 500{
501 if ((vty->node == AUTH_NODE) || (vty->node == AUTH_ENABLE_NODE))
502 return;
503
504 /* Should we do buffering here ? And make vty_flush (vty) ? */
9fc7ebf1 505 buffer_put (vty->obuf, buf, nbytes);
718e3744 506}
507
718e3744 508/* Basic function to insert character into vty. */
509static void
510vty_self_insert (struct vty *vty, char c)
511{
512 int i;
513 int length;
514
d1e4a518 515 if (vty->length + 1 >= VTY_BUFSIZ)
2af38873
QY
516 return;
517
718e3744 518 length = vty->length - vty->cp;
519 memmove (&vty->buf[vty->cp + 1], &vty->buf[vty->cp], length);
520 vty->buf[vty->cp] = c;
521
522 vty_write (vty, &vty->buf[vty->cp], length + 1);
523 for (i = 0; i < length; i++)
524 vty_write (vty, &telnet_backward_char, 1);
525
526 vty->cp++;
527 vty->length++;
d1e4a518
QY
528
529 vty->buf[vty->length] = '\0';
718e3744 530}
531
532/* Self insert character 'c' in overwrite mode. */
533static void
534vty_self_insert_overwrite (struct vty *vty, char c)
535{
2af38873
QY
536 if (vty->cp == vty->length)
537 {
538 vty_self_insert (vty, c);
539 return;
540 }
718e3744 541
2af38873 542 vty->buf[vty->cp++] = c;
718e3744 543 vty_write (vty, &c, 1);
544}
545
2af38873
QY
546/**
547 * Insert a string into vty->buf at the current cursor position.
548 *
549 * If the resultant string would be larger than VTY_BUFSIZ it is
550 * truncated to fit.
551 */
718e3744 552static void
553vty_insert_word_overwrite (struct vty *vty, char *str)
554{
d1e4a518
QY
555 if (vty->cp == VTY_BUFSIZ)
556 return;
557
558 size_t nwrite = MIN ((int) strlen (str), VTY_BUFSIZ - vty->cp - 1);
559 memcpy (&vty->buf[vty->cp], str, nwrite);
2af38873 560 vty->cp += nwrite;
d1e4a518
QY
561 vty->length = MAX (vty->cp, vty->length);
562 vty->buf[vty->length] = '\0';
563 vty_write (vty, str, nwrite);
718e3744 564}
565
566/* Forward character. */
567static void
568vty_forward_char (struct vty *vty)
569{
570 if (vty->cp < vty->length)
571 {
572 vty_write (vty, &vty->buf[vty->cp], 1);
573 vty->cp++;
574 }
575}
576
577/* Backward character. */
578static void
579vty_backward_char (struct vty *vty)
580{
581 if (vty->cp > 0)
582 {
583 vty->cp--;
584 vty_write (vty, &telnet_backward_char, 1);
585 }
586}
587
588/* Move to the beginning of the line. */
589static void
590vty_beginning_of_line (struct vty *vty)
591{
592 while (vty->cp)
593 vty_backward_char (vty);
594}
595
596/* Move to the end of the line. */
597static void
598vty_end_of_line (struct vty *vty)
599{
600 while (vty->cp < vty->length)
601 vty_forward_char (vty);
602}
603
604static void vty_kill_line_from_beginning (struct vty *);
605static void vty_redraw_line (struct vty *);
606
607/* Print command line history. This function is called from
608 vty_next_line and vty_previous_line. */
609static void
610vty_history_print (struct vty *vty)
611{
612 int length;
613
614 vty_kill_line_from_beginning (vty);
615
616 /* Get previous line from history buffer */
617 length = strlen (vty->hist[vty->hp]);
618 memcpy (vty->buf, vty->hist[vty->hp], length);
619 vty->cp = vty->length = length;
d1e4a518 620 vty->buf[vty->length] = '\0';
718e3744 621
622 /* Redraw current line */
623 vty_redraw_line (vty);
624}
625
626/* Show next command line history. */
9fc7ebf1 627static void
718e3744 628vty_next_line (struct vty *vty)
629{
630 int try_index;
631
632 if (vty->hp == vty->hindex)
633 return;
634
635 /* Try is there history exist or not. */
636 try_index = vty->hp;
637 if (try_index == (VTY_MAXHIST - 1))
638 try_index = 0;
639 else
640 try_index++;
641
642 /* If there is not history return. */
643 if (vty->hist[try_index] == NULL)
644 return;
645 else
646 vty->hp = try_index;
647
648 vty_history_print (vty);
649}
650
651/* Show previous command line history. */
9fc7ebf1 652static void
718e3744 653vty_previous_line (struct vty *vty)
654{
655 int try_index;
656
657 try_index = vty->hp;
658 if (try_index == 0)
659 try_index = VTY_MAXHIST - 1;
660 else
661 try_index--;
662
663 if (vty->hist[try_index] == NULL)
664 return;
665 else
666 vty->hp = try_index;
667
668 vty_history_print (vty);
669}
670
671/* This function redraw all of the command line character. */
672static void
673vty_redraw_line (struct vty *vty)
674{
675 vty_write (vty, vty->buf, vty->length);
676 vty->cp = vty->length;
677}
678
679/* Forward word. */
680static void
681vty_forward_word (struct vty *vty)
682{
683 while (vty->cp != vty->length && vty->buf[vty->cp] != ' ')
684 vty_forward_char (vty);
d0bfb22c 685
718e3744 686 while (vty->cp != vty->length && vty->buf[vty->cp] == ' ')
687 vty_forward_char (vty);
688}
689
690/* Backward word without skipping training space. */
691static void
692vty_backward_pure_word (struct vty *vty)
693{
694 while (vty->cp > 0 && vty->buf[vty->cp - 1] != ' ')
695 vty_backward_char (vty);
696}
697
698/* Backward word. */
699static void
700vty_backward_word (struct vty *vty)
701{
702 while (vty->cp > 0 && vty->buf[vty->cp - 1] == ' ')
703 vty_backward_char (vty);
704
705 while (vty->cp > 0 && vty->buf[vty->cp - 1] != ' ')
706 vty_backward_char (vty);
707}
708
709/* When '^D' is typed at the beginning of the line we move to the down
710 level. */
711static void
712vty_down_level (struct vty *vty)
713{
714 vty_out (vty, "%s", VTY_NEWLINE);
0b84f294 715 cmd_exit (vty);
718e3744 716 vty_prompt (vty);
717 vty->cp = 0;
718}
719
720/* When '^Z' is received from vty, move down to the enable mode. */
9fc7ebf1 721static void
718e3744 722vty_end_config (struct vty *vty)
723{
724 vty_out (vty, "%s", VTY_NEWLINE);
725
726 switch (vty->node)
727 {
728 case VIEW_NODE:
729 case ENABLE_NODE:
730 /* Nothing to do. */
731 break;
732 case CONFIG_NODE:
733 case INTERFACE_NODE:
734 case ZEBRA_NODE:
735 case RIP_NODE:
736 case RIPNG_NODE:
7f57883e 737 case EIGRP_NODE:
718e3744 738 case BGP_NODE:
739 case BGP_VPNV4_NODE:
8ecd3266 740 case BGP_VPNV6_NODE:
8b1fb8be
LB
741 case BGP_ENCAP_NODE:
742 case BGP_ENCAPV6_NODE:
5ff06872 743 case BGP_VRF_POLICY_NODE:
65efcfce
LB
744 case BGP_VNC_DEFAULTS_NODE:
745 case BGP_VNC_NVE_GROUP_NODE:
746 case BGP_VNC_L2_GROUP_NODE:
718e3744 747 case BGP_IPV4_NODE:
748 case BGP_IPV4M_NODE:
749 case BGP_IPV6_NODE:
1e836590 750 case BGP_IPV6M_NODE:
9e6df0b7 751 case BGP_EVPN_NODE:
718e3744 752 case RMAP_NODE:
753 case OSPF_NODE:
754 case OSPF6_NODE:
eac6e3f0
RW
755 case LDP_NODE:
756 case LDP_IPV4_NODE:
757 case LDP_IPV6_NODE:
758 case LDP_IPV4_IFACE_NODE:
759 case LDP_IPV6_IFACE_NODE:
760 case LDP_L2VPN_NODE:
761 case LDP_PSEUDOWIRE_NODE:
9e867fe6 762 case ISIS_NODE:
718e3744 763 case KEYCHAIN_NODE:
764 case KEYCHAIN_KEY_NODE:
765 case MASC_NODE:
12e41d03 766 case PIM_NODE:
718e3744 767 case VTY_NODE:
768 vty_config_unlock (vty);
769 vty->node = ENABLE_NODE;
770 break;
771 default:
772 /* Unknown node, we have to ignore it. */
773 break;
774 }
775
776 vty_prompt (vty);
777 vty->cp = 0;
778}
779
780/* Delete a charcter at the current point. */
781static void
782vty_delete_char (struct vty *vty)
783{
784 int i;
785 int size;
786
718e3744 787 if (vty->length == 0)
788 {
789 vty_down_level (vty);
790 return;
791 }
792
793 if (vty->cp == vty->length)
d0bfb22c 794 return; /* completion need here? */
718e3744 795
796 size = vty->length - vty->cp;
797
798 vty->length--;
799 memmove (&vty->buf[vty->cp], &vty->buf[vty->cp + 1], size - 1);
800 vty->buf[vty->length] = '\0';
d0bfb22c 801
7f794f2b
R
802 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
803 return;
718e3744 804
805 vty_write (vty, &vty->buf[vty->cp], size - 1);
806 vty_write (vty, &telnet_space_char, 1);
807
808 for (i = 0; i < size; i++)
809 vty_write (vty, &telnet_backward_char, 1);
810}
811
812/* Delete a character before the point. */
813static void
814vty_delete_backward_char (struct vty *vty)
815{
816 if (vty->cp == 0)
817 return;
818
819 vty_backward_char (vty);
820 vty_delete_char (vty);
821}
822
823/* Kill rest of line from current point. */
824static void
825vty_kill_line (struct vty *vty)
826{
827 int i;
828 int size;
829
830 size = vty->length - vty->cp;
d0bfb22c 831
718e3744 832 if (size == 0)
833 return;
834
835 for (i = 0; i < size; i++)
836 vty_write (vty, &telnet_space_char, 1);
837 for (i = 0; i < size; i++)
838 vty_write (vty, &telnet_backward_char, 1);
839
840 memset (&vty->buf[vty->cp], 0, size);
841 vty->length = vty->cp;
842}
843
844/* Kill line from the beginning. */
845static void
846vty_kill_line_from_beginning (struct vty *vty)
847{
848 vty_beginning_of_line (vty);
849 vty_kill_line (vty);
850}
851
852/* Delete a word before the point. */
853static void
854vty_forward_kill_word (struct vty *vty)
855{
856 while (vty->cp != vty->length && vty->buf[vty->cp] == ' ')
857 vty_delete_char (vty);
858 while (vty->cp != vty->length && vty->buf[vty->cp] != ' ')
859 vty_delete_char (vty);
860}
861
862/* Delete a word before the point. */
863static void
864vty_backward_kill_word (struct vty *vty)
865{
866 while (vty->cp > 0 && vty->buf[vty->cp - 1] == ' ')
867 vty_delete_backward_char (vty);
868 while (vty->cp > 0 && vty->buf[vty->cp - 1] != ' ')
869 vty_delete_backward_char (vty);
870}
871
872/* Transpose chars before or at the point. */
873static void
874vty_transpose_chars (struct vty *vty)
875{
876 char c1, c2;
877
878 /* If length is short or point is near by the beginning of line then
879 return. */
880 if (vty->length < 2 || vty->cp < 1)
881 return;
882
883 /* In case of point is located at the end of the line. */
884 if (vty->cp == vty->length)
885 {
886 c1 = vty->buf[vty->cp - 1];
887 c2 = vty->buf[vty->cp - 2];
888
889 vty_backward_char (vty);
890 vty_backward_char (vty);
891 vty_self_insert_overwrite (vty, c1);
892 vty_self_insert_overwrite (vty, c2);
893 }
894 else
895 {
896 c1 = vty->buf[vty->cp];
897 c2 = vty->buf[vty->cp - 1];
898
899 vty_backward_char (vty);
900 vty_self_insert_overwrite (vty, c1);
901 vty_self_insert_overwrite (vty, c2);
902 }
903}
904
905/* Do completion at vty interface. */
906static void
907vty_complete_command (struct vty *vty)
908{
909 int i;
910 int ret;
911 char **matched = NULL;
912 vector vline;
913
914 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
915 return;
916
917 vline = cmd_make_strvec (vty->buf);
918 if (vline == NULL)
919 return;
920
921 /* In case of 'help \t'. */
922 if (isspace ((int) vty->buf[vty->length - 1]))
7bf5d992 923 vector_set (vline, NULL);
718e3744 924
ebacb4ed 925 matched = cmd_complete_command (vline, vty, &ret);
d0bfb22c 926
718e3744 927 cmd_free_strvec (vline);
928
929 vty_out (vty, "%s", VTY_NEWLINE);
930 switch (ret)
931 {
932 case CMD_ERR_AMBIGUOUS:
933 vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
934 vty_prompt (vty);
935 vty_redraw_line (vty);
936 break;
937 case CMD_ERR_NO_MATCH:
938 /* vty_out (vty, "%% There is no matched command.%s", VTY_NEWLINE); */
939 vty_prompt (vty);
940 vty_redraw_line (vty);
941 break;
942 case CMD_COMPLETE_FULL_MATCH:
745e2754
DL
943 if (!matched[0])
944 {
945 /* 2016-11-28 equinox -- need to debug, SEGV here */
946 vty_out (vty, "%% CLI BUG: FULL_MATCH with NULL str%s", VTY_NEWLINE);
947 vty_prompt (vty);
948 vty_redraw_line (vty);
949 break;
950 }
718e3744 951 vty_prompt (vty);
952 vty_redraw_line (vty);
953 vty_backward_pure_word (vty);
954 vty_insert_word_overwrite (vty, matched[0]);
955 vty_self_insert (vty, ' ');
956 XFREE (MTYPE_TMP, matched[0]);
957 break;
958 case CMD_COMPLETE_MATCH:
959 vty_prompt (vty);
960 vty_redraw_line (vty);
961 vty_backward_pure_word (vty);
962 vty_insert_word_overwrite (vty, matched[0]);
963 XFREE (MTYPE_TMP, matched[0]);
718e3744 964 break;
965 case CMD_COMPLETE_LIST_MATCH:
966 for (i = 0; matched[i] != NULL; i++)
d0bfb22c
QY
967 {
968 if (i != 0 && ((i % 6) == 0))
969 vty_out (vty, "%s", VTY_NEWLINE);
970 vty_out (vty, "%-10s ", matched[i]);
971 XFREE (MTYPE_TMP, matched[i]);
972 }
718e3744 973 vty_out (vty, "%s", VTY_NEWLINE);
974
975 vty_prompt (vty);
976 vty_redraw_line (vty);
977 break;
978 case CMD_ERR_NOTHING_TODO:
979 vty_prompt (vty);
980 vty_redraw_line (vty);
981 break;
982 default:
983 break;
984 }
985 if (matched)
66d29a54 986 XFREE (MTYPE_TMP, matched);
718e3744 987}
988
9fc7ebf1 989static void
718e3744 990vty_describe_fold (struct vty *vty, int cmd_width,
d0bfb22c 991 unsigned int desc_width, struct cmd_token *token)
718e3744 992{
8c328f11 993 char *buf;
994 const char *cmd, *p;
718e3744 995 int pos;
996
aa1c90a4 997 cmd = token->text;
718e3744 998
999 if (desc_width <= 0)
1000 {
cd40b329 1001 vty_out (vty, " %-*s %s%s", cmd_width, cmd, token->desc, VTY_NEWLINE);
718e3744 1002 return;
1003 }
1004
cd40b329 1005 buf = XCALLOC (MTYPE_TMP, strlen (token->desc) + 1);
718e3744 1006
cd40b329 1007 for (p = token->desc; strlen (p) > desc_width; p += pos + 1)
718e3744 1008 {
1009 for (pos = desc_width; pos > 0; pos--)
1010 if (*(p + pos) == ' ')
1011 break;
1012
1013 if (pos == 0)
1014 break;
1015
1016 strncpy (buf, p, pos);
1017 buf[pos] = '\0';
1018 vty_out (vty, " %-*s %s%s", cmd_width, cmd, buf, VTY_NEWLINE);
1019
1020 cmd = "";
1021 }
1022
1023 vty_out (vty, " %-*s %s%s", cmd_width, cmd, p, VTY_NEWLINE);
1024
1025 XFREE (MTYPE_TMP, buf);
1026}
1027
1028/* Describe matched command function. */
1029static void
1030vty_describe_command (struct vty *vty)
1031{
1032 int ret;
1033 vector vline;
1034 vector describe;
8c328f11 1035 unsigned int i, width, desc_width;
cd40b329 1036 struct cmd_token *token, *token_cr = NULL;
718e3744 1037
1038 vline = cmd_make_strvec (vty->buf);
1039
1040 /* In case of '> ?'. */
1041 if (vline == NULL)
1042 {
1043 vline = vector_init (1);
7bf5d992 1044 vector_set (vline, NULL);
718e3744 1045 }
d0bfb22c 1046 else
718e3744 1047 if (isspace ((int) vty->buf[vty->length - 1]))
7bf5d992 1048 vector_set (vline, NULL);
718e3744 1049
1050 describe = cmd_describe_command (vline, vty, &ret);
1051
1052 vty_out (vty, "%s", VTY_NEWLINE);
1053
1054 /* Ambiguous error. */
1055 switch (ret)
1056 {
1057 case CMD_ERR_AMBIGUOUS:
718e3744 1058 vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
2fe8aba3 1059 goto out;
718e3744 1060 break;
1061 case CMD_ERR_NO_MATCH:
718e3744 1062 vty_out (vty, "%% There is no matched command.%s", VTY_NEWLINE);
2fe8aba3 1063 goto out;
718e3744 1064 break;
d0bfb22c 1065 }
718e3744 1066
1067 /* Get width of command string. */
1068 width = 0;
55468c86 1069 for (i = 0; i < vector_active (describe); i++)
cd40b329 1070 if ((token = vector_slot (describe, i)) != NULL)
718e3744 1071 {
d0bfb22c 1072 unsigned int len;
718e3744 1073
d0bfb22c
QY
1074 if (token->text[0] == '\0')
1075 continue;
718e3744 1076
d0bfb22c 1077 len = strlen (token->text);
718e3744 1078
d0bfb22c
QY
1079 if (width < len)
1080 width = len;
718e3744 1081 }
1082
1083 /* Get width of description string. */
1084 desc_width = vty->width - (width + 6);
1085
1086 /* Print out description. */
55468c86 1087 for (i = 0; i < vector_active (describe); i++)
cd40b329 1088 if ((token = vector_slot (describe, i)) != NULL)
718e3744 1089 {
d0bfb22c
QY
1090 if (token->text[0] == '\0')
1091 continue;
1092
1093 if (strcmp (token->text, CMD_CR_TEXT) == 0)
1094 {
1095 token_cr = token;
1096 continue;
1097 }
1098
1099 if (!token->desc)
1100 vty_out (vty, " %-s%s",
1101 token->text,
1102 VTY_NEWLINE);
1103 else if (desc_width >= strlen (token->desc))
1104 vty_out (vty, " %-*s %s%s", width,
1105 token->text,
1106 token->desc, VTY_NEWLINE);
1107 else
1108 vty_describe_fold (vty, width, desc_width, token);
718e3744 1109
1110#if 0
d0bfb22c
QY
1111 vty_out (vty, " %-*s %s%s", width
1112 desc->cmd[0] == '.' ? desc->cmd + 1 : desc->cmd,
1113 desc->str ? desc->str : "", VTY_NEWLINE);
718e3744 1114#endif /* 0 */
1115 }
1116
cd40b329 1117 if ((token = token_cr))
718e3744 1118 {
cd40b329 1119 if (!token->desc)
d0bfb22c
QY
1120 vty_out (vty, " %-s%s",
1121 token->text,
1122 VTY_NEWLINE);
cd40b329 1123 else if (desc_width >= strlen (token->desc))
d0bfb22c
QY
1124 vty_out (vty, " %-*s %s%s", width,
1125 token->text,
1126 token->desc, VTY_NEWLINE);
718e3744 1127 else
d0bfb22c 1128 vty_describe_fold (vty, width, desc_width, token);
718e3744 1129 }
1130
2fe8aba3 1131out:
718e3744 1132 cmd_free_strvec (vline);
d16e0433
PJ
1133 if (describe)
1134 vector_free (describe);
718e3744 1135
1136 vty_prompt (vty);
1137 vty_redraw_line (vty);
1138}
1139
9fc7ebf1 1140static void
718e3744 1141vty_clear_buf (struct vty *vty)
1142{
1143 memset (vty->buf, 0, vty->max);
1144}
1145
1146/* ^C stop current input and do not add command line to the history. */
1147static void
1148vty_stop_input (struct vty *vty)
1149{
1150 vty->cp = vty->length = 0;
1151 vty_clear_buf (vty);
1152 vty_out (vty, "%s", VTY_NEWLINE);
1153
1154 switch (vty->node)
1155 {
1156 case VIEW_NODE:
1157 case ENABLE_NODE:
1158 /* Nothing to do. */
1159 break;
1160 case CONFIG_NODE:
1161 case INTERFACE_NODE:
1162 case ZEBRA_NODE:
1163 case RIP_NODE:
1164 case RIPNG_NODE:
7f57883e 1165 case EIGRP_NODE:
718e3744 1166 case BGP_NODE:
1167 case RMAP_NODE:
1168 case OSPF_NODE:
1169 case OSPF6_NODE:
eac6e3f0
RW
1170 case LDP_NODE:
1171 case LDP_IPV4_NODE:
1172 case LDP_IPV6_NODE:
1173 case LDP_IPV4_IFACE_NODE:
1174 case LDP_IPV6_IFACE_NODE:
1175 case LDP_L2VPN_NODE:
1176 case LDP_PSEUDOWIRE_NODE:
9e867fe6 1177 case ISIS_NODE:
718e3744 1178 case KEYCHAIN_NODE:
1179 case KEYCHAIN_KEY_NODE:
1180 case MASC_NODE:
12e41d03 1181 case PIM_NODE:
718e3744 1182 case VTY_NODE:
1183 vty_config_unlock (vty);
1184 vty->node = ENABLE_NODE;
1185 break;
1186 default:
1187 /* Unknown node, we have to ignore it. */
1188 break;
1189 }
1190 vty_prompt (vty);
1191
1192 /* Set history pointer to the latest one. */
1193 vty->hp = vty->hindex;
1194}
1195
1196/* Add current command line to the history buffer. */
1197static void
1198vty_hist_add (struct vty *vty)
1199{
1200 int index;
1201
1202 if (vty->length == 0)
1203 return;
1204
1205 index = vty->hindex ? vty->hindex - 1 : VTY_MAXHIST - 1;
1206
1207 /* Ignore the same string as previous one. */
1208 if (vty->hist[index])
1209 if (strcmp (vty->buf, vty->hist[index]) == 0)
1210 {
1211 vty->hp = vty->hindex;
1212 return;
1213 }
1214
1215 /* Insert history entry. */
1216 if (vty->hist[vty->hindex])
1217 XFREE (MTYPE_VTY_HIST, vty->hist[vty->hindex]);
1218 vty->hist[vty->hindex] = XSTRDUP (MTYPE_VTY_HIST, vty->buf);
1219
1220 /* History index rotation. */
1221 vty->hindex++;
1222 if (vty->hindex == VTY_MAXHIST)
1223 vty->hindex = 0;
1224
1225 vty->hp = vty->hindex;
1226}
1227
1228/* #define TELNET_OPTION_DEBUG */
1229
1230/* Get telnet window size. */
1231static int
1232vty_telnet_option (struct vty *vty, unsigned char *buf, int nbytes)
1233{
1234#ifdef TELNET_OPTION_DEBUG
1235 int i;
1236
1237 for (i = 0; i < nbytes; i++)
1238 {
1239 switch (buf[i])
d0bfb22c
QY
1240 {
1241 case IAC:
1242 vty_out (vty, "IAC ");
1243 break;
1244 case WILL:
1245 vty_out (vty, "WILL ");
1246 break;
1247 case WONT:
1248 vty_out (vty, "WONT ");
1249 break;
1250 case DO:
1251 vty_out (vty, "DO ");
1252 break;
1253 case DONT:
1254 vty_out (vty, "DONT ");
1255 break;
1256 case SB:
1257 vty_out (vty, "SB ");
1258 break;
1259 case SE:
1260 vty_out (vty, "SE ");
1261 break;
1262 case TELOPT_ECHO:
1263 vty_out (vty, "TELOPT_ECHO %s", VTY_NEWLINE);
1264 break;
1265 case TELOPT_SGA:
1266 vty_out (vty, "TELOPT_SGA %s", VTY_NEWLINE);
1267 break;
1268 case TELOPT_NAWS:
1269 vty_out (vty, "TELOPT_NAWS %s", VTY_NEWLINE);
1270 break;
1271 default:
1272 vty_out (vty, "%x ", buf[i]);
1273 break;
1274 }
718e3744 1275 }
1276 vty_out (vty, "%s", VTY_NEWLINE);
1277
1278#endif /* TELNET_OPTION_DEBUG */
1279
1280 switch (buf[0])
1281 {
1282 case SB:
9fc7ebf1 1283 vty->sb_len = 0;
718e3744 1284 vty->iac_sb_in_progress = 1;
1285 return 0;
1286 break;
d0bfb22c 1287 case SE:
718e3744 1288 {
d0bfb22c
QY
1289 if (!vty->iac_sb_in_progress)
1290 return 0;
1291
1292 if ((vty->sb_len == 0) || (vty->sb_buf[0] == '\0'))
1293 {
1294 vty->iac_sb_in_progress = 0;
1295 return 0;
1296 }
1297 switch (vty->sb_buf[0])
1298 {
1299 case TELOPT_NAWS:
1300 if (vty->sb_len != TELNET_NAWS_SB_LEN)
1301 zlog_warn("RFC 1073 violation detected: telnet NAWS option "
1302 "should send %d characters, but we received %lu",
1303 TELNET_NAWS_SB_LEN, (u_long)vty->sb_len);
1304 else if (sizeof(vty->sb_buf) < TELNET_NAWS_SB_LEN)
1305 zlog_err("Bug detected: sizeof(vty->sb_buf) %lu < %d, "
1306 "too small to handle the telnet NAWS option",
1307 (u_long)sizeof(vty->sb_buf), TELNET_NAWS_SB_LEN);
1308 else
1309 {
1310 vty->width = ((vty->sb_buf[1] << 8)|vty->sb_buf[2]);
1311 vty->height = ((vty->sb_buf[3] << 8)|vty->sb_buf[4]);
9fc7ebf1 1312#ifdef TELNET_OPTION_DEBUG
d0bfb22c
QY
1313 vty_out(vty, "TELNET NAWS window size negotiation completed: "
1314 "width %d, height %d%s",
1315 vty->width, vty->height, VTY_NEWLINE);
9fc7ebf1 1316#endif
d0bfb22c
QY
1317 }
1318 break;
1319 }
1320 vty->iac_sb_in_progress = 0;
1321 return 0;
1322 break;
718e3744 1323 }
1324 default:
1325 break;
1326 }
1327 return 1;
1328}
1329
1330/* Execute current command line. */
1331static int
1332vty_execute (struct vty *vty)
1333{
1334 int ret;
1335
1336 ret = CMD_SUCCESS;
1337
1338 switch (vty->node)
1339 {
1340 case AUTH_NODE:
1341 case AUTH_ENABLE_NODE:
1342 vty_auth (vty, vty->buf);
1343 break;
1344 default:
1345 ret = vty_command (vty, vty->buf);
1346 if (vty->type == VTY_TERM)
d0bfb22c 1347 vty_hist_add (vty);
718e3744 1348 break;
1349 }
1350
1351 /* Clear command line buffer. */
1352 vty->cp = vty->length = 0;
1353 vty_clear_buf (vty);
1354
5a646650 1355 if (vty->status != VTY_CLOSE )
718e3744 1356 vty_prompt (vty);
1357
1358 return ret;
1359}
1360
1361#define CONTROL(X) ((X) - '@')
1362#define VTY_NORMAL 0
1363#define VTY_PRE_ESCAPE 1
1364#define VTY_ESCAPE 2
1365
1366/* Escape character command map. */
1367static void
1368vty_escape_map (unsigned char c, struct vty *vty)
1369{
1370 switch (c)
1371 {
1372 case ('A'):
1373 vty_previous_line (vty);
1374 break;
1375 case ('B'):
1376 vty_next_line (vty);
1377 break;
1378 case ('C'):
1379 vty_forward_char (vty);
1380 break;
1381 case ('D'):
1382 vty_backward_char (vty);
1383 break;
1384 default:
1385 break;
1386 }
1387
1388 /* Go back to normal mode. */
1389 vty->escape = VTY_NORMAL;
1390}
1391
1392/* Quit print out to the buffer. */
1393static void
1394vty_buffer_reset (struct vty *vty)
1395{
1396 buffer_reset (vty->obuf);
1397 vty_prompt (vty);
1398 vty_redraw_line (vty);
1399}
1400
1401/* Read data via vty socket. */
1402static int
1403vty_read (struct thread *thread)
1404{
1405 int i;
718e3744 1406 int nbytes;
1407 unsigned char buf[VTY_READ_BUFSIZ];
1408
1409 int vty_sock = THREAD_FD (thread);
1410 struct vty *vty = THREAD_ARG (thread);
1411 vty->t_read = NULL;
1412
1413 /* Read raw data from socket */
9fc7ebf1 1414 if ((nbytes = read (vty->fd, buf, VTY_READ_BUFSIZ)) <= 0)
1415 {
1416 if (nbytes < 0)
d0bfb22c
QY
1417 {
1418 if (ERRNO_IO_RETRY(errno))
1419 {
1420 vty_event (VTY_READ, vty_sock, vty);
1421 return 0;
1422 }
1423 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
1424 zlog_warn("%s: read error on vty client fd %d, closing: %s",
1425 __func__, vty->fd, safe_strerror(errno));
009a4a07 1426 buffer_reset(vty->obuf);
d0bfb22c 1427 }
9fc7ebf1 1428 vty->status = VTY_CLOSE;
1429 }
718e3744 1430
d0bfb22c 1431 for (i = 0; i < nbytes; i++)
718e3744 1432 {
1433 if (buf[i] == IAC)
d0bfb22c
QY
1434 {
1435 if (!vty->iac)
1436 {
1437 vty->iac = 1;
1438 continue;
1439 }
1440 else
1441 {
1442 vty->iac = 0;
1443 }
1444 }
1445
718e3744 1446 if (vty->iac_sb_in_progress && !vty->iac)
d0bfb22c
QY
1447 {
1448 if (vty->sb_len < sizeof(vty->sb_buf))
1449 vty->sb_buf[vty->sb_len] = buf[i];
1450 vty->sb_len++;
1451 continue;
1452 }
718e3744 1453
1454 if (vty->iac)
d0bfb22c
QY
1455 {
1456 /* In case of telnet command */
1457 int ret = 0;
1458 ret = vty_telnet_option (vty, buf + i, nbytes - i);
1459 vty->iac = 0;
1460 i += ret;
1461 continue;
1462 }
1463
718e3744 1464
1465 if (vty->status == VTY_MORE)
d0bfb22c
QY
1466 {
1467 switch (buf[i])
1468 {
1469 case CONTROL('C'):
1470 case 'q':
1471 case 'Q':
1472 vty_buffer_reset (vty);
1473 break;
718e3744 1474#if 0 /* More line does not work for "show ip bgp". */
d0bfb22c
QY
1475 case '\n':
1476 case '\r':
1477 vty->status = VTY_MORELINE;
1478 break;
718e3744 1479#endif
d0bfb22c
QY
1480 default:
1481 break;
1482 }
1483 continue;
1484 }
718e3744 1485
1486 /* Escape character. */
1487 if (vty->escape == VTY_ESCAPE)
d0bfb22c
QY
1488 {
1489 vty_escape_map (buf[i], vty);
1490 continue;
1491 }
718e3744 1492
1493 /* Pre-escape status. */
1494 if (vty->escape == VTY_PRE_ESCAPE)
d0bfb22c
QY
1495 {
1496 switch (buf[i])
1497 {
1498 case '[':
1499 vty->escape = VTY_ESCAPE;
1500 break;
1501 case 'b':
1502 vty_backward_word (vty);
1503 vty->escape = VTY_NORMAL;
1504 break;
1505 case 'f':
1506 vty_forward_word (vty);
1507 vty->escape = VTY_NORMAL;
1508 break;
1509 case 'd':
1510 vty_forward_kill_word (vty);
1511 vty->escape = VTY_NORMAL;
1512 break;
1513 case CONTROL('H'):
1514 case 0x7f:
1515 vty_backward_kill_word (vty);
1516 vty->escape = VTY_NORMAL;
1517 break;
1518 default:
1519 vty->escape = VTY_NORMAL;
1520 break;
1521 }
1522 continue;
1523 }
718e3744 1524
1525 switch (buf[i])
d0bfb22c
QY
1526 {
1527 case CONTROL('A'):
1528 vty_beginning_of_line (vty);
1529 break;
1530 case CONTROL('B'):
1531 vty_backward_char (vty);
1532 break;
1533 case CONTROL('C'):
1534 vty_stop_input (vty);
1535 break;
1536 case CONTROL('D'):
1537 vty_delete_char (vty);
1538 break;
1539 case CONTROL('E'):
1540 vty_end_of_line (vty);
1541 break;
1542 case CONTROL('F'):
1543 vty_forward_char (vty);
1544 break;
1545 case CONTROL('H'):
1546 case 0x7f:
1547 vty_delete_backward_char (vty);
1548 break;
1549 case CONTROL('K'):
1550 vty_kill_line (vty);
1551 break;
1552 case CONTROL('N'):
1553 vty_next_line (vty);
1554 break;
1555 case CONTROL('P'):
1556 vty_previous_line (vty);
1557 break;
1558 case CONTROL('T'):
1559 vty_transpose_chars (vty);
1560 break;
1561 case CONTROL('U'):
1562 vty_kill_line_from_beginning (vty);
1563 break;
1564 case CONTROL('W'):
1565 vty_backward_kill_word (vty);
1566 break;
1567 case CONTROL('Z'):
1568 vty_end_config (vty);
1569 break;
1570 case '\n':
1571 case '\r':
1572 vty_out (vty, "%s", VTY_NEWLINE);
1573 vty_execute (vty);
1574 break;
1575 case '\t':
1576 vty_complete_command (vty);
1577 break;
1578 case '?':
1579 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
1580 vty_self_insert (vty, buf[i]);
1581 else
1582 vty_describe_command (vty);
1583 break;
1584 case '\033':
1585 if (i + 1 < nbytes && buf[i + 1] == '[')
1586 {
1587 vty->escape = VTY_ESCAPE;
1588 i++;
1589 }
1590 else
1591 vty->escape = VTY_PRE_ESCAPE;
1592 break;
1593 default:
1594 if (buf[i] > 31 && buf[i] < 127)
1595 vty_self_insert (vty, buf[i]);
1596 break;
1597 }
718e3744 1598 }
1599
1600 /* Check status. */
1601 if (vty->status == VTY_CLOSE)
1602 vty_close (vty);
1603 else
1604 {
c5e69a02 1605 vty_event (VTY_WRITE, vty->wfd, vty);
718e3744 1606 vty_event (VTY_READ, vty_sock, vty);
1607 }
1608 return 0;
1609}
1610
1611/* Flush buffer to the vty. */
1612static int
1613vty_flush (struct thread *thread)
1614{
1615 int erase;
9fc7ebf1 1616 buffer_status_t flushrc;
718e3744 1617 int vty_sock = THREAD_FD (thread);
1618 struct vty *vty = THREAD_ARG (thread);
9fc7ebf1 1619
718e3744 1620 vty->t_write = NULL;
1621
1622 /* Tempolary disable read thread. */
9fc7ebf1 1623 if ((vty->lines == 0) && vty->t_read)
1624 {
1625 thread_cancel (vty->t_read);
1626 vty->t_read = NULL;
1627 }
718e3744 1628
1629 /* Function execution continue. */
9fc7ebf1 1630 erase = ((vty->status == VTY_MORE || vty->status == VTY_MORELINE));
1631
1632 /* N.B. if width is 0, that means we don't know the window size. */
1035065f 1633 if ((vty->lines == 0) || (vty->width == 0) || (vty->height == 0))
c5e69a02 1634 flushrc = buffer_flush_available(vty->obuf, vty_sock);
9fc7ebf1 1635 else if (vty->status == VTY_MORELINE)
c5e69a02 1636 flushrc = buffer_flush_window(vty->obuf, vty_sock, vty->width,
d0bfb22c 1637 1, erase, 0);
9fc7ebf1 1638 else
c5e69a02 1639 flushrc = buffer_flush_window(vty->obuf, vty_sock, vty->width,
d0bfb22c
QY
1640 vty->lines >= 0 ? vty->lines :
1641 vty->height,
1642 erase, 0);
9fc7ebf1 1643 switch (flushrc)
1644 {
1645 case BUFFER_ERROR:
74542d73 1646 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
9fc7ebf1 1647 zlog_warn("buffer_flush failed on vty client fd %d, closing",
d0bfb22c 1648 vty->fd);
9fc7ebf1 1649 buffer_reset(vty->obuf);
1650 vty_close(vty);
1651 return 0;
1652 case BUFFER_EMPTY:
1653 if (vty->status == VTY_CLOSE)
d0bfb22c 1654 vty_close (vty);
718e3744 1655 else
d0bfb22c
QY
1656 {
1657 vty->status = VTY_NORMAL;
1658 if (vty->lines == 0)
1659 vty_event (VTY_READ, vty_sock, vty);
1660 }
9fc7ebf1 1661 break;
1662 case BUFFER_PENDING:
1663 /* There is more data waiting to be written. */
1664 vty->status = VTY_MORE;
1665 if (vty->lines == 0)
d0bfb22c 1666 vty_event (VTY_WRITE, vty_sock, vty);
9fc7ebf1 1667 break;
1668 }
718e3744 1669
1670 return 0;
1671}
1672
b7642925
DL
1673/* allocate and initialise vty */
1674static struct vty *
1675vty_new_init (int vty_sock)
1676{
1677 struct vty *vty;
1678
1679 vty = vty_new ();
1680 vty->fd = vty_sock;
1681 vty->wfd = vty_sock;
1682 vty->type = VTY_TERM;
1683 vty->node = AUTH_NODE;
1684 vty->fail = 0;
1685 vty->cp = 0;
1686 vty_clear_buf (vty);
1687 vty->length = 0;
1688 memset (vty->hist, 0, sizeof (vty->hist));
1689 vty->hp = 0;
1690 vty->hindex = 0;
1691 vector_set_index (vtyvec, vty_sock, vty);
1692 vty->status = VTY_NORMAL;
1693 vty->lines = -1;
1694 vty->iac = 0;
1695 vty->iac_sb_in_progress = 0;
1696 vty->sb_len = 0;
1697
1698 return vty;
1699}
1700
718e3744 1701/* Create new vty structure. */
9fc7ebf1 1702static struct vty *
718e3744 1703vty_create (int vty_sock, union sockunion *su)
1704{
d227617a 1705 char buf[SU_ADDRSTRLEN];
718e3744 1706 struct vty *vty;
1707
d227617a
JBD
1708 sockunion2str(su, buf, SU_ADDRSTRLEN);
1709
718e3744 1710 /* Allocate new vty structure and set up default values. */
b7642925
DL
1711 vty = vty_new_init (vty_sock);
1712
1713 /* configurable parameters not part of basic init */
1714 vty->v_timeout = vty_timeout_val;
d227617a 1715 strcpy (vty->address, buf);
718e3744 1716 if (no_password_check)
1717 {
3c8ab49f 1718 if (host.advanced)
d0bfb22c 1719 vty->node = ENABLE_NODE;
718e3744 1720 else
d0bfb22c 1721 vty->node = VIEW_NODE;
718e3744 1722 }
718e3744 1723 if (host.lines >= 0)
1724 vty->lines = host.lines;
718e3744 1725
1726 if (! no_password_check)
1727 {
1728 /* Vty is not available if password isn't set. */
1729 if (host.password == NULL && host.password_encrypt == NULL)
d0bfb22c
QY
1730 {
1731 vty_out (vty, "Vty password is not set.%s", VTY_NEWLINE);
1732 vty->status = VTY_CLOSE;
1733 vty_close (vty);
1734 return NULL;
1735 }
718e3744 1736 }
1737
1738 /* Say hello to the world. */
1739 vty_hello (vty);
1740 if (! no_password_check)
1741 vty_out (vty, "%sUser Access Verification%s%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
1742
1743 /* Setting up terminal. */
1744 vty_will_echo (vty);
1745 vty_will_suppress_go_ahead (vty);
1746
1747 vty_dont_linemode (vty);
1748 vty_do_window_size (vty);
1749 /* vty_dont_lflow_ahead (vty); */
1750
1751 vty_prompt (vty);
1752
1753 /* Add read/write thread. */
1754 vty_event (VTY_WRITE, vty_sock, vty);
1755 vty_event (VTY_READ, vty_sock, vty);
1756
1757 return vty;
1758}
1759
b7642925 1760/* create vty for stdio */
b510a06e
DL
1761static struct termios stdio_orig_termios;
1762static struct vty *stdio_vty = NULL;
dbf78092 1763static void (*stdio_vty_atclose)(void);
b510a06e
DL
1764
1765static void
1766vty_stdio_reset (void)
1767{
1768 if (stdio_vty)
1769 {
1770 tcsetattr (0, TCSANOW, &stdio_orig_termios);
1771 stdio_vty = NULL;
dbf78092
DL
1772
1773 if (stdio_vty_atclose)
1774 stdio_vty_atclose ();
1775 stdio_vty_atclose = NULL;
b510a06e
DL
1776 }
1777}
1778
b7642925 1779struct vty *
dbf78092 1780vty_stdio (void (*atclose)())
b7642925
DL
1781{
1782 struct vty *vty;
b510a06e 1783 struct termios termios;
b7642925 1784
b510a06e
DL
1785 /* refuse creating two vtys on stdio */
1786 if (stdio_vty)
1787 return NULL;
1788
1789 vty = stdio_vty = vty_new_init (0);
dbf78092 1790 stdio_vty_atclose = atclose;
b7642925
DL
1791 vty->wfd = 1;
1792
1793 /* always have stdio vty in a known _unchangeable_ state, don't want config
1794 * to have any effect here to make sure scripting this works as intended */
1795 vty->node = ENABLE_NODE;
1796 vty->v_timeout = 0;
1797 strcpy (vty->address, "console");
1798
b510a06e
DL
1799 if (!tcgetattr (0, &stdio_orig_termios))
1800 {
1801 termios = stdio_orig_termios;
1802 termios.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP
1803 | INLCR | IGNCR | ICRNL | IXON);
1804 termios.c_oflag &= ~OPOST;
1805 termios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
1806 termios.c_cflag &= ~(CSIZE | PARENB);
1807 termios.c_cflag |= CS8;
1808 tcsetattr (0, TCSANOW, &termios);
1809 }
1810
b7642925
DL
1811 vty_prompt (vty);
1812
1813 /* Add read/write thread. */
1814 vty_event (VTY_WRITE, 1, vty);
1815 vty_event (VTY_READ, 0, vty);
1816
1817 return vty;
1818}
1819
718e3744 1820/* Accept connection from the network. */
1821static int
1822vty_accept (struct thread *thread)
1823{
1824 int vty_sock;
718e3744 1825 union sockunion su;
1826 int ret;
1827 unsigned int on;
1828 int accept_sock;
40ee54a7 1829 struct prefix p;
718e3744 1830 struct access_list *acl = NULL;
d227617a 1831 char buf[SU_ADDRSTRLEN];
718e3744 1832
1833 accept_sock = THREAD_FD (thread);
1834
1835 /* We continue hearing vty socket. */
1836 vty_event (VTY_SERV, accept_sock, NULL);
1837
1838 memset (&su, 0, sizeof (union sockunion));
1839
1840 /* We can handle IPv4 or IPv6 socket. */
1841 vty_sock = sockunion_accept (accept_sock, &su);
1842 if (vty_sock < 0)
1843 {
6099b3b5 1844 zlog_warn ("can't accept vty socket : %s", safe_strerror (errno));
718e3744 1845 return -1;
1846 }
9fc7ebf1 1847 set_nonblocking(vty_sock);
2da59394 1848 set_cloexec(vty_sock);
718e3744 1849
40ee54a7 1850 sockunion2hostprefix (&su, &p);
718e3744 1851
1852 /* VTY's accesslist apply. */
40ee54a7 1853 if (p.family == AF_INET && vty_accesslist_name)
718e3744 1854 {
1855 if ((acl = access_list_lookup (AFI_IP, vty_accesslist_name)) &&
d0bfb22c
QY
1856 (access_list_apply (acl, &p) == FILTER_DENY))
1857 {
4525281a
DL
1858 zlog_info ("Vty connection refused from %s",
1859 sockunion2str (&su, buf, SU_ADDRSTRLEN));
d0bfb22c
QY
1860 close (vty_sock);
1861
1862 /* continue accepting connections */
1863 vty_event (VTY_SERV, accept_sock, NULL);
1864
1865 return 0;
1866 }
718e3744 1867 }
1868
718e3744 1869 /* VTY's ipv6 accesslist apply. */
40ee54a7 1870 if (p.family == AF_INET6 && vty_ipv6_accesslist_name)
718e3744 1871 {
1872 if ((acl = access_list_lookup (AFI_IP6, vty_ipv6_accesslist_name)) &&
d0bfb22c
QY
1873 (access_list_apply (acl, &p) == FILTER_DENY))
1874 {
4525281a
DL
1875 zlog_info ("Vty connection refused from %s",
1876 sockunion2str (&su, buf, SU_ADDRSTRLEN));
d0bfb22c
QY
1877 close (vty_sock);
1878
1879 /* continue accepting connections */
1880 vty_event (VTY_SERV, accept_sock, NULL);
1881
1882 return 0;
1883 }
718e3744 1884 }
d0bfb22c 1885
718e3744 1886 on = 1;
d0bfb22c
QY
1887 ret = setsockopt (vty_sock, IPPROTO_TCP, TCP_NODELAY,
1888 (char *) &on, sizeof (on));
718e3744 1889 if (ret < 0)
4525281a
DL
1890 zlog_info ("can't set sockopt to vty_sock : %s",
1891 safe_strerror (errno));
718e3744 1892
4525281a
DL
1893 zlog_info ("Vty connection from %s",
1894 sockunion2str (&su, buf, SU_ADDRSTRLEN));
78e6cd98 1895
9206f9ec 1896 vty_create (vty_sock, &su);
718e3744 1897
1898 return 0;
1899}
1900
9fc7ebf1 1901static void
718e3744 1902vty_serv_sock_addrinfo (const char *hostname, unsigned short port)
1903{
1904 int ret;
1905 struct addrinfo req;
1906 struct addrinfo *ainfo;
1907 struct addrinfo *ainfo_save;
1908 int sock;
1909 char port_str[BUFSIZ];
1910
1911 memset (&req, 0, sizeof (struct addrinfo));
1912 req.ai_flags = AI_PASSIVE;
1913 req.ai_family = AF_UNSPEC;
1914 req.ai_socktype = SOCK_STREAM;
1915 sprintf (port_str, "%d", port);
1916 port_str[sizeof (port_str) - 1] = '\0';
1917
1918 ret = getaddrinfo (hostname, port_str, &req, &ainfo);
1919
1920 if (ret != 0)
1921 {
1922 fprintf (stderr, "getaddrinfo failed: %s\n", gai_strerror (ret));
1923 exit (1);
1924 }
1925
1926 ainfo_save = ainfo;
1927
1928 do
1929 {
1930 if (ainfo->ai_family != AF_INET
d0bfb22c 1931 && ainfo->ai_family != AF_INET6
d0bfb22c
QY
1932 )
1933 continue;
718e3744 1934
1935 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
1936 if (sock < 0)
d0bfb22c 1937 continue;
718e3744 1938
ca051269 1939 sockopt_v6only (ainfo->ai_family, sock);
718e3744 1940 sockopt_reuseaddr (sock);
1941 sockopt_reuseport (sock);
2da59394 1942 set_cloexec (sock);
718e3744 1943
1944 ret = bind (sock, ainfo->ai_addr, ainfo->ai_addrlen);
1945 if (ret < 0)
d0bfb22c
QY
1946 {
1947 close (sock); /* Avoid sd leak. */
1948 continue;
1949 }
718e3744 1950
1951 ret = listen (sock, 3);
d0bfb22c
QY
1952 if (ret < 0)
1953 {
1954 close (sock); /* Avoid sd leak. */
1955 continue;
1956 }
718e3744 1957
1958 vty_event (VTY_SERV, sock, NULL);
1959 }
1960 while ((ainfo = ainfo->ai_next) != NULL);
1961
1962 freeaddrinfo (ainfo_save);
1963}
718e3744 1964
1965#ifdef VTYSH
1966/* For sockaddr_un. */
1967#include <sys/un.h>
1968
1969/* VTY shell UNIX domain socket. */
9fc7ebf1 1970static void
6ad96ea1 1971vty_serv_un (const char *path)
718e3744 1972{
1973 int ret;
75e15fe4 1974 int sock, len;
718e3744 1975 struct sockaddr_un serv;
1976 mode_t old_mask;
edd7c245 1977 struct zprivs_ids_t ids;
d0bfb22c 1978
718e3744 1979 /* First of all, unlink existing socket */
1980 unlink (path);
1981
1982 /* Set umask */
1921e6f8 1983 old_mask = umask (0007);
718e3744 1984
1985 /* Make UNIX domain socket. */
1986 sock = socket (AF_UNIX, SOCK_STREAM, 0);
1987 if (sock < 0)
1988 {
6a52d0d1 1989 zlog_err("Cannot create unix stream socket: %s", safe_strerror(errno));
718e3744 1990 return;
1991 }
1992
1993 /* Make server socket. */
1994 memset (&serv, 0, sizeof (struct sockaddr_un));
1995 serv.sun_family = AF_UNIX;
14878121 1996 strlcpy (serv.sun_path, path, sizeof (serv.sun_path));
6f0e3f6e 1997#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
718e3744 1998 len = serv.sun_len = SUN_LEN(&serv);
1999#else
2000 len = sizeof (serv.sun_family) + strlen (serv.sun_path);
6f0e3f6e 2001#endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */
718e3744 2002
2da59394
DL
2003 set_cloexec (sock);
2004
718e3744 2005 ret = bind (sock, (struct sockaddr *) &serv, len);
2006 if (ret < 0)
2007 {
6a52d0d1 2008 zlog_err("Cannot bind path %s: %s", path, safe_strerror(errno));
d0bfb22c 2009 close (sock); /* Avoid sd leak. */
718e3744 2010 return;
2011 }
2012
2013 ret = listen (sock, 5);
2014 if (ret < 0)
2015 {
6a52d0d1 2016 zlog_err("listen(fd %d) failed: %s", sock, safe_strerror(errno));
d0bfb22c 2017 close (sock); /* Avoid sd leak. */
718e3744 2018 return;
2019 }
2020
2021 umask (old_mask);
2022
edd7c245 2023 zprivs_get_ids(&ids);
d0bfb22c 2024
38657f2e
MW
2025 /* Hack: ids.gid_vty is actually a uint, but we stored -1 in it
2026 earlier for the case when we don't need to chown the file
2027 type casting it here to make a compare */
2028 if ((int)ids.gid_vty > 0)
edd7c245 2029 {
2030 /* set group of socket */
2031 if ( chown (path, -1, ids.gid_vty) )
2032 {
2033 zlog_err ("vty_serv_un: could chown socket, %s",
6099b3b5 2034 safe_strerror (errno) );
edd7c245 2035 }
2036 }
2037
718e3744 2038 vty_event (VTYSH_SERV, sock, NULL);
2039}
2040
2041/* #define VTYSH_DEBUG 1 */
2042
2043static int
2044vtysh_accept (struct thread *thread)
2045{
2046 int accept_sock;
2047 int sock;
2048 int client_len;
2049 struct sockaddr_un client;
2050 struct vty *vty;
d0bfb22c 2051
718e3744 2052 accept_sock = THREAD_FD (thread);
2053
2054 vty_event (VTYSH_SERV, accept_sock, NULL);
2055
2056 memset (&client, 0, sizeof (struct sockaddr_un));
2057 client_len = sizeof (struct sockaddr_un);
2058
e473b032 2059 sock = accept (accept_sock, (struct sockaddr *) &client,
d0bfb22c 2060 (socklen_t *) &client_len);
718e3744 2061
2062 if (sock < 0)
2063 {
6099b3b5 2064 zlog_warn ("can't accept vty socket : %s", safe_strerror (errno));
718e3744 2065 return -1;
2066 }
2067
9fc7ebf1 2068 if (set_nonblocking(sock) < 0)
75e15fe4 2069 {
9fc7ebf1 2070 zlog_warn ("vtysh_accept: could not set vty socket %d to non-blocking,"
2071 " %s, closing", sock, safe_strerror (errno));
75e15fe4 2072 close (sock);
2073 return -1;
2074 }
2da59394
DL
2075 set_cloexec(sock);
2076
718e3744 2077#ifdef VTYSH_DEBUG
2078 printf ("VTY shell accept\n");
2079#endif /* VTYSH_DEBUG */
2080
2081 vty = vty_new ();
2082 vty->fd = sock;
c5e69a02 2083 vty->wfd = sock;
718e3744 2084 vty->type = VTY_SHELL_SERV;
2085 vty->node = VIEW_NODE;
2086
2087 vty_event (VTYSH_READ, sock, vty);
2088
2089 return 0;
2090}
2091
9fc7ebf1 2092static int
2093vtysh_flush(struct vty *vty)
2094{
c5e69a02 2095 switch (buffer_flush_available(vty->obuf, vty->wfd))
9fc7ebf1 2096 {
2097 case BUFFER_PENDING:
c5e69a02 2098 vty_event(VTYSH_WRITE, vty->wfd, vty);
9fc7ebf1 2099 break;
2100 case BUFFER_ERROR:
74542d73 2101 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
9fc7ebf1 2102 zlog_warn("%s: write error to fd %d, closing", __func__, vty->fd);
2103 buffer_reset(vty->obuf);
2104 vty_close(vty);
2105 return -1;
2106 break;
2107 case BUFFER_EMPTY:
2108 break;
2109 }
2110 return 0;
2111}
2112
718e3744 2113static int
2114vtysh_read (struct thread *thread)
2115{
2116 int ret;
2117 int sock;
2118 int nbytes;
2119 struct vty *vty;
2120 unsigned char buf[VTY_READ_BUFSIZ];
9fc7ebf1 2121 unsigned char *p;
718e3744 2122 u_char header[4] = {0, 0, 0, 0};
2123
2124 sock = THREAD_FD (thread);
2125 vty = THREAD_ARG (thread);
2126 vty->t_read = NULL;
2127
9fc7ebf1 2128 if ((nbytes = read (sock, buf, VTY_READ_BUFSIZ)) <= 0)
718e3744 2129 {
9fc7ebf1 2130 if (nbytes < 0)
d0bfb22c
QY
2131 {
2132 if (ERRNO_IO_RETRY(errno))
2133 {
2134 vty_event (VTYSH_READ, sock, vty);
2135 return 0;
2136 }
2137 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
2138 zlog_warn("%s: read failed on vtysh client fd %d, closing: %s",
2139 __func__, sock, safe_strerror(errno));
2140 }
9fc7ebf1 2141 buffer_reset(vty->obuf);
718e3744 2142 vty_close (vty);
2143#ifdef VTYSH_DEBUG
2144 printf ("close vtysh\n");
2145#endif /* VTYSH_DEBUG */
2146 return 0;
2147 }
2148
2149#ifdef VTYSH_DEBUG
9fc7ebf1 2150 printf ("line: %.*s\n", nbytes, buf);
718e3744 2151#endif /* VTYSH_DEBUG */
2152
d1e4a518 2153 if (vty->length + nbytes >= VTY_BUFSIZ)
2af38873
QY
2154 {
2155 /* Clear command line buffer. */
2156 vty->cp = vty->length = 0;
2157 vty_clear_buf (vty);
2158 vty_out (vty, "%% Command is too long.%s", VTY_NEWLINE);
2159 }
2160 else
9fc7ebf1 2161 {
2af38873 2162 for (p = buf; p < buf+nbytes; p++)
d0bfb22c 2163 {
2af38873
QY
2164 vty->buf[vty->length++] = *p;
2165 if (*p == '\0')
2166 {
2167 /* Pass this line to parser. */
2168 ret = vty_execute (vty);
2169 /* Note that vty_execute clears the command buffer and resets
2170 vty->length to 0. */
718e3744 2171
2af38873 2172 /* Return result. */
718e3744 2173#ifdef VTYSH_DEBUG
2af38873
QY
2174 printf ("result: %d\n", ret);
2175 printf ("vtysh node: %d\n", vty->node);
718e3744 2176#endif /* VTYSH_DEBUG */
2177
2af38873
QY
2178 /* hack for asynchronous "write integrated"
2179 * - other commands in "buf" will be ditched
2180 * - input during pending config-write is "unsupported" */
2181 if (ret == CMD_SUSPEND)
2182 break;
95c4aff2 2183
2af38873
QY
2184 /* warning: watchquagga hardcodes this result write */
2185 header[3] = ret;
2186 buffer_put(vty->obuf, header, 4);
9fc7ebf1 2187
2af38873
QY
2188 if (!vty->t_write && (vtysh_flush(vty) < 0))
2189 /* Try to flush results; exit if a write error occurs. */
2190 return 0;
2191 }
d0bfb22c 2192 }
9fc7ebf1 2193 }
718e3744 2194
2195 vty_event (VTYSH_READ, sock, vty);
2196
2197 return 0;
2198}
49ff6d9d 2199
2200static int
2201vtysh_write (struct thread *thread)
2202{
2203 struct vty *vty = THREAD_ARG (thread);
2204
2205 vty->t_write = NULL;
9fc7ebf1 2206 vtysh_flush(vty);
976d8c73 2207 return 0;
49ff6d9d 2208}
2209
718e3744 2210#endif /* VTYSH */
2211
2212/* Determine address family to bind. */
2213void
6ad96ea1 2214vty_serv_sock (const char *addr, unsigned short port, const char *path)
718e3744 2215{
2216 /* If port is set to 0, do not listen on TCP/IP at all! */
2217 if (port)
56c1f7d8 2218 vty_serv_sock_addrinfo (addr, port);
718e3744 2219
2220#ifdef VTYSH
2221 vty_serv_un (path);
2222#endif /* VTYSH */
2223}
2224
9d0a3260
AS
2225/* Close vty interface. Warning: call this only from functions that
2226 will be careful not to access the vty afterwards (since it has
2227 now been freed). This is safest from top-level functions (called
2228 directly by the thread dispatcher). */
718e3744 2229void
2230vty_close (struct vty *vty)
2231{
2232 int i;
3d217741 2233 bool was_stdio = false;
718e3744 2234
2235 /* Cancel threads.*/
2236 if (vty->t_read)
2237 thread_cancel (vty->t_read);
2238 if (vty->t_write)
2239 thread_cancel (vty->t_write);
2240 if (vty->t_timeout)
2241 thread_cancel (vty->t_timeout);
718e3744 2242
2243 /* Flush buffer. */
c5e69a02 2244 buffer_flush_all (vty->obuf, vty->wfd);
718e3744 2245
2246 /* Free input buffer. */
2247 buffer_free (vty->obuf);
2248
718e3744 2249 /* Free command history. */
2250 for (i = 0; i < VTY_MAXHIST; i++)
2251 if (vty->hist[i])
2252 XFREE (MTYPE_VTY_HIST, vty->hist[i]);
2253
2254 /* Unset vector. */
2255 vector_unset (vtyvec, vty->fd);
2256
056cfe49
DL
2257 if (vty->wfd > 0 && vty->type == VTY_FILE)
2258 fsync (vty->wfd);
2259
718e3744 2260 /* Close socket. */
2261 if (vty->fd > 0)
056cfe49
DL
2262 {
2263 close (vty->fd);
2264 if (vty->wfd > 0 && vty->wfd != vty->fd)
2265 close (vty->wfd);
2266 }
b510a06e 2267 else
dd03f8ca 2268 was_stdio = true;
718e3744 2269
718e3744 2270 if (vty->buf)
2271 XFREE (MTYPE_VTY, vty->buf);
2272
5689fe5f
DW
2273 if (vty->error_buf)
2274 XFREE (MTYPE_VTY, vty->error_buf);
2275
718e3744 2276 /* Check configure. */
2277 vty_config_unlock (vty);
2278
2279 /* OK free vty. */
2280 XFREE (MTYPE_VTY, vty);
dd03f8ca
DL
2281
2282 if (was_stdio)
2283 vty_stdio_reset ();
718e3744 2284}
2285
2286/* When time out occur output message then close connection. */
2287static int
2288vty_timeout (struct thread *thread)
2289{
2290 struct vty *vty;
2291
2292 vty = THREAD_ARG (thread);
2293 vty->t_timeout = NULL;
2294 vty->v_timeout = 0;
2295
2296 /* Clear buffer*/
2297 buffer_reset (vty->obuf);
2298 vty_out (vty, "%sVty connection is timed out.%s", VTY_NEWLINE, VTY_NEWLINE);
2299
2300 /* Close connection. */
2301 vty->status = VTY_CLOSE;
2302 vty_close (vty);
2303
2304 return 0;
2305}
2306
2307/* Read up configuration file from file_name. */
2308static void
2309vty_read_file (FILE *confp)
2310{
2311 int ret;
2312 struct vty *vty;
13fbc82d 2313 unsigned int line_num = 0;
718e3744 2314
2315 vty = vty_new ();
c5e69a02
DL
2316 vty->wfd = dup(STDERR_FILENO); /* vty_close() will close this */
2317 if (vty->wfd < 0)
13fbc82d
SH
2318 {
2319 /* Fine, we couldn't make a new fd. vty_close doesn't close stdout. */
c5e69a02 2320 vty->wfd = STDOUT_FILENO;
13fbc82d 2321 }
c5e69a02 2322 vty->fd = STDIN_FILENO;
13fbc82d 2323 vty->type = VTY_FILE;
718e3744 2324 vty->node = CONFIG_NODE;
d0bfb22c 2325
718e3744 2326 /* Execute configuration file */
13fbc82d
SH
2327 ret = config_from_file (vty, confp, &line_num);
2328
2329 /* Flush any previous errors before printing messages below */
2330 buffer_flush_all (vty->obuf, vty->fd);
718e3744 2331
d0bfb22c 2332 if ( !((ret == CMD_SUCCESS) || (ret == CMD_ERR_NOTHING_TODO)) )
718e3744 2333 {
cbd7259d 2334 const char *message = NULL;
718e3744 2335 switch (ret)
7021c425 2336 {
2337 case CMD_ERR_AMBIGUOUS:
cbd7259d 2338 message = "*** Error reading config: Ambiguous command.";
7021c425 2339 break;
2340 case CMD_ERR_NO_MATCH:
cbd7259d 2341 message = "*** Error reading config: There is no such command.";
7021c425 2342 break;
2343 }
cbd7259d
QY
2344 fprintf (stderr, "%s\n", message);
2345 zlog_err ("%s", message);
2346 fprintf (stderr, "*** Error occurred processing line %u, below:\n%s\n",
d0bfb22c 2347 line_num, vty->error_buf);
cbd7259d
QY
2348 zlog_err ("*** Error occurred processing line %u, below:\n%s",
2349 line_num, vty->error_buf);
718e3744 2350 }
2351
2352 vty_close (vty);
2353}
2354
9fc7ebf1 2355static FILE *
eb05883f 2356vty_use_backup_config (const char *fullpath)
718e3744 2357{
2358 char *fullpath_sav, *fullpath_tmp;
2359 FILE *ret = NULL;
718e3744 2360 int tmp, sav;
2361 int c;
2362 char buffer[512];
d0bfb22c 2363
718e3744 2364 fullpath_sav = malloc (strlen (fullpath) + strlen (CONF_BACKUP_EXT) + 1);
2365 strcpy (fullpath_sav, fullpath);
2366 strcat (fullpath_sav, CONF_BACKUP_EXT);
6de46906
DL
2367
2368 sav = open (fullpath_sav, O_RDONLY);
2369 if (sav < 0)
718e3744 2370 {
2371 free (fullpath_sav);
2372 return NULL;
2373 }
2374
2375 fullpath_tmp = malloc (strlen (fullpath) + 8);
2376 sprintf (fullpath_tmp, "%s.XXXXXX", fullpath);
d0bfb22c 2377
718e3744 2378 /* Open file to configuration write. */
2379 tmp = mkstemp (fullpath_tmp);
2380 if (tmp < 0)
6de46906 2381 goto out_close_sav;
718e3744 2382
6de46906
DL
2383 if (fchmod (tmp, CONFIGFILE_MASK) != 0)
2384 goto out_close;
d0bfb22c 2385
718e3744 2386 while((c = read (sav, buffer, 512)) > 0)
77f24551
DS
2387 {
2388 if (write (tmp, buffer, c) <= 0)
6de46906 2389 goto out_close;
77f24551 2390 }
718e3744 2391 close (sav);
2392 close (tmp);
d0bfb22c 2393
6de46906
DL
2394 if (rename (fullpath_tmp, fullpath) == 0)
2395 ret = fopen (fullpath, "r");
2396 else
2397 unlink (fullpath_tmp);
2398
2399 if (0)
aa593d5e 2400 {
6de46906
DL
2401out_close:
2402 close (tmp);
3dbf9969 2403 unlink (fullpath_tmp);
6de46906
DL
2404out_close_sav:
2405 close (sav);
aa593d5e 2406 }
d0bfb22c 2407
718e3744 2408 free (fullpath_sav);
2409 free (fullpath_tmp);
12f6ea23 2410 return ret;
718e3744 2411}
2412
2413/* Read up configuration file from file_name. */
2414void
eb05883f 2415vty_read_config (const char *config_file,
320ec10a 2416 char *config_default_dir)
718e3744 2417{
ccc9235e 2418 char cwd[MAXPATHLEN];
718e3744 2419 FILE *confp = NULL;
eb05883f 2420 const char *fullpath;
05865c90 2421 char *tmp = NULL;
718e3744 2422
2423 /* If -f flag specified. */
2424 if (config_file != NULL)
2425 {
2426 if (! IS_DIRECTORY_SEP (config_file[0]))
320ec10a 2427 {
77f24551 2428 if (getcwd (cwd, MAXPATHLEN) == NULL)
d0bfb22c
QY
2429 {
2430 fprintf (stderr, "Failure to determine Current Working Directory %d!\n", errno);
2431 exit (1);
2432 }
2433 tmp = XMALLOC (MTYPE_TMP,
2434 strlen (cwd) + strlen (config_file) + 2);
05865c90 2435 sprintf (tmp, "%s/%s", cwd, config_file);
2436 fullpath = tmp;
320ec10a 2437 }
718e3744 2438 else
320ec10a 2439 fullpath = config_file;
718e3744 2440
2441 confp = fopen (fullpath, "r");
2442
2443 if (confp == NULL)
320ec10a 2444 {
3d1dc857 2445 fprintf (stderr, "%s: failed to open configuration file %s: %s\n",
2446 __func__, fullpath, safe_strerror (errno));
d0bfb22c 2447
320ec10a 2448 confp = vty_use_backup_config (fullpath);
2449 if (confp)
2450 fprintf (stderr, "WARNING: using backup configuration file!\n");
2451 else
2452 {
d0bfb22c
QY
2453 fprintf (stderr, "can't open configuration file [%s]\n",
2454 config_file);
320ec10a 2455 exit(1);
2456 }
2457 }
718e3744 2458 }
2459 else
2460 {
a7222276 2461
e4421165 2462 host_config_set (config_default_dir);
a7222276 2463
718e3744 2464#ifdef VTYSH
320ec10a 2465 int ret;
2466 struct stat conf_stat;
2467
2468 /* !!!!PLEASE LEAVE!!!!
2469 * This is NEEDED for use with vtysh -b, or else you can get
2470 * a real configuration food fight with a lot garbage in the
2471 * merged configuration file it creates coming from the per
2472 * daemon configuration files. This also allows the daemons
2473 * to start if there default configuration file is not
2474 * present or ignore them, as needed when using vtysh -b to
2475 * configure the daemons at boot - MAG
2476 */
2477
2478 /* Stat for vtysh Zebra.conf, if found startup and wait for
2479 * boot configuration
2480 */
2481
2482 if ( strstr(config_default_dir, "vtysh") == NULL)
2483 {
2484 ret = stat (integrate_default, &conf_stat);
2485 if (ret >= 0)
d0bfb22c 2486 goto tmp_free_and_out;
320ec10a 2487 }
a7222276 2488#endif /* VTYSH */
e4421165
DS
2489 confp = fopen (config_default_dir, "r");
2490 if (confp == NULL)
2491 {
2492 fprintf (stderr, "%s: failed to open configuration file %s: %s\n",
2493 __func__, config_default_dir, safe_strerror (errno));
d0bfb22c 2494
e4421165
DS
2495 confp = vty_use_backup_config (config_default_dir);
2496 if (confp)
2497 {
2498 fprintf (stderr, "WARNING: using backup configuration file!\n");
2499 fullpath = config_default_dir;
2500 }
2501 else
2502 {
2503 fprintf (stderr, "can't open configuration file [%s]\n",
d0bfb22c
QY
2504 config_default_dir);
2505 goto tmp_free_and_out;
e4421165 2506 }
d0bfb22c 2507 }
e4421165
DS
2508 else
2509 fullpath = config_default_dir;
2510 }
2511
718e3744 2512 vty_read_file (confp);
2513
2514 fclose (confp);
2515
2516 host_config_set (fullpath);
6eda6425
DS
2517
2518tmp_free_and_out:
05865c90 2519 if (tmp)
eb05883f 2520 XFREE (MTYPE_TMP, tmp);
718e3744 2521}
2522
2523/* Small utility function which output log to the VTY. */
2524void
274a4a44 2525vty_log (const char *level, const char *proto_str,
d0bfb22c 2526 const char *format, struct timestamp_control *ctl, va_list va)
718e3744 2527{
8c328f11 2528 unsigned int i;
718e3744 2529 struct vty *vty;
d0bfb22c 2530
a4b30303
PJ
2531 if (!vtyvec)
2532 return;
718e3744 2533
55468c86 2534 for (i = 0; i < vector_active (vtyvec); i++)
718e3744 2535 if ((vty = vector_slot (vtyvec, i)) != NULL)
2536 if (vty->monitor)
d0bfb22c
QY
2537 {
2538 va_list ac;
2539 va_copy(ac, va);
2540 vty_log_out (vty, level, proto_str, format, ctl, ac);
2541 va_end(ac);
2542 }
718e3744 2543}
2544
274a4a44 2545/* Async-signal-safe version of vty_log for fixed strings. */
2546void
24873f0c 2547vty_log_fixed (char *buf, size_t len)
274a4a44 2548{
2549 unsigned int i;
9fc7ebf1 2550 struct iovec iov[2];
24873f0c 2551 char crlf[4] = "\r\n";
9fc7ebf1 2552
a4b30303
PJ
2553 /* vty may not have been initialised */
2554 if (!vtyvec)
2555 return;
d0bfb22c 2556
1f9a9fff 2557 iov[0].iov_base = buf;
9fc7ebf1 2558 iov[0].iov_len = len;
24873f0c 2559 iov[1].iov_base = crlf;
9fc7ebf1 2560 iov[1].iov_len = 2;
274a4a44 2561
55468c86 2562 for (i = 0; i < vector_active (vtyvec); i++)
274a4a44 2563 {
2564 struct vty *vty;
9fc7ebf1 2565 if (((vty = vector_slot (vtyvec, i)) != NULL) && vty->monitor)
d0bfb22c
QY
2566 /* N.B. We don't care about the return code, since process is
2567 most likely just about to die anyway. */
2568 if (writev(vty->wfd, iov, 2) == -1)
2569 {
2570 fprintf(stderr, "Failure to writev: %d\n", errno);
2571 exit(-1);
2572 }
274a4a44 2573 }
2574}
2575
718e3744 2576int
2577vty_config_lock (struct vty *vty)
2578{
cc933ef9
DL
2579 if (vty_config_is_lockless)
2580 return 1;
718e3744 2581 if (vty_config == 0)
2582 {
2583 vty->config = 1;
2584 vty_config = 1;
2585 }
2586 return vty->config;
2587}
2588
2589int
2590vty_config_unlock (struct vty *vty)
2591{
cc933ef9
DL
2592 if (vty_config_is_lockless)
2593 return 0;
718e3744 2594 if (vty_config == 1 && vty->config == 1)
2595 {
2596 vty->config = 0;
2597 vty_config = 0;
2598 }
2599 return vty->config;
2600}
6b0655a2 2601
cc933ef9
DL
2602void
2603vty_config_lockless (void)
2604{
2605 vty_config_is_lockless = 1;
2606}
2607
718e3744 2608/* Master of the threads. */
79159516 2609static struct thread_master *vty_master;
718e3744 2610
2611static void
2612vty_event (enum event event, int sock, struct vty *vty)
2613{
2614 struct thread *vty_serv_thread;
2615
2616 switch (event)
2617 {
2618 case VTY_SERV:
79159516 2619 vty_serv_thread = thread_add_read (vty_master, vty_accept, vty, sock);
718e3744 2620 vector_set_index (Vvty_serv_thread, sock, vty_serv_thread);
2621 break;
2622#ifdef VTYSH
2623 case VTYSH_SERV:
79159516 2624 vty_serv_thread = thread_add_read (vty_master, vtysh_accept, vty, sock);
677bcbbf 2625 vector_set_index (Vvty_serv_thread, sock, vty_serv_thread);
718e3744 2626 break;
2627 case VTYSH_READ:
79159516 2628 vty->t_read = thread_add_read (vty_master, vtysh_read, vty, sock);
49ff6d9d 2629 break;
2630 case VTYSH_WRITE:
79159516 2631 vty->t_write = thread_add_write (vty_master, vtysh_write, vty, sock);
718e3744 2632 break;
2633#endif /* VTYSH */
2634 case VTY_READ:
79159516 2635 vty->t_read = thread_add_read (vty_master, vty_read, vty, sock);
718e3744 2636
2637 /* Time out treatment. */
2638 if (vty->v_timeout)
d0bfb22c
QY
2639 {
2640 if (vty->t_timeout)
2641 thread_cancel (vty->t_timeout);
2642 vty->t_timeout =
2643 thread_add_timer (vty_master, vty_timeout, vty, vty->v_timeout);
2644 }
718e3744 2645 break;
2646 case VTY_WRITE:
2647 if (! vty->t_write)
d0bfb22c 2648 vty->t_write = thread_add_write (vty_master, vty_flush, vty, sock);
718e3744 2649 break;
2650 case VTY_TIMEOUT_RESET:
2651 if (vty->t_timeout)
d0bfb22c
QY
2652 {
2653 thread_cancel (vty->t_timeout);
2654 vty->t_timeout = NULL;
2655 }
718e3744 2656 if (vty->v_timeout)
d0bfb22c
QY
2657 {
2658 vty->t_timeout =
2659 thread_add_timer (vty_master, vty_timeout, vty, vty->v_timeout);
2660 }
718e3744 2661 break;
2662 }
2663}
6b0655a2 2664
505e5056 2665DEFUN_NOSH (config_who,
718e3744 2666 config_who_cmd,
2667 "who",
2668 "Display who is on vty\n")
2669{
8c328f11 2670 unsigned int i;
718e3744 2671 struct vty *v;
2672
55468c86 2673 for (i = 0; i < vector_active (vtyvec); i++)
718e3744 2674 if ((v = vector_slot (vtyvec, i)) != NULL)
2675 vty_out (vty, "%svty[%d] connected from %s.%s",
d0bfb22c
QY
2676 v->config ? "*" : " ",
2677 i, v->address, VTY_NEWLINE);
718e3744 2678 return CMD_SUCCESS;
2679}
2680
2681/* Move to vty configuration mode. */
505e5056 2682DEFUN_NOSH (line_vty,
718e3744 2683 line_vty_cmd,
2684 "line vty",
2685 "Configure a terminal line\n"
2686 "Virtual terminal\n")
2687{
2688 vty->node = VTY_NODE;
2689 return CMD_SUCCESS;
2690}
2691
2692/* Set time out value. */
9fc7ebf1 2693static int
9035efaa 2694exec_timeout (struct vty *vty, const char *min_str, const char *sec_str)
718e3744 2695{
2696 unsigned long timeout = 0;
2697
2698 /* min_str and sec_str are already checked by parser. So it must be
2699 all digit string. */
2700 if (min_str)
2701 {
2702 timeout = strtol (min_str, NULL, 10);
2703 timeout *= 60;
2704 }
2705 if (sec_str)
2706 timeout += strtol (sec_str, NULL, 10);
2707
2708 vty_timeout_val = timeout;
2709 vty->v_timeout = timeout;
2710 vty_event (VTY_TIMEOUT_RESET, 0, vty);
2711
2712
2713 return CMD_SUCCESS;
2714}
2715
2716DEFUN (exec_timeout_min,
2717 exec_timeout_min_cmd,
aa1c90a4 2718 "exec-timeout (0-35791)",
718e3744 2719 "Set timeout value\n"
2720 "Timeout value in minutes\n")
2721{
c349116d
DW
2722 int idx_number = 1;
2723 return exec_timeout (vty, argv[idx_number]->arg, NULL);
718e3744 2724}
2725
2726DEFUN (exec_timeout_sec,
2727 exec_timeout_sec_cmd,
aa1c90a4 2728 "exec-timeout (0-35791) (0-2147483)",
718e3744 2729 "Set the EXEC timeout\n"
2730 "Timeout in minutes\n"
2731 "Timeout in seconds\n")
2732{
c349116d
DW
2733 int idx_number = 1;
2734 int idx_number_2 = 2;
2735 return exec_timeout (vty, argv[idx_number]->arg, argv[idx_number_2]->arg);
718e3744 2736}
2737
2738DEFUN (no_exec_timeout,
2739 no_exec_timeout_cmd,
2740 "no exec-timeout",
2741 NO_STR
2742 "Set the EXEC timeout\n")
2743{
2744 return exec_timeout (vty, NULL, NULL);
2745}
2746
2747/* Set vty access class. */
2748DEFUN (vty_access_class,
2749 vty_access_class_cmd,
2750 "access-class WORD",
2751 "Filter connections based on an IP access list\n"
2752 "IP access list\n")
2753{
c349116d 2754 int idx_word = 1;
718e3744 2755 if (vty_accesslist_name)
2756 XFREE(MTYPE_VTY, vty_accesslist_name);
2757
c349116d 2758 vty_accesslist_name = XSTRDUP(MTYPE_VTY, argv[idx_word]->arg);
718e3744 2759
2760 return CMD_SUCCESS;
2761}
2762
2763/* Clear vty access class. */
2764DEFUN (no_vty_access_class,
2765 no_vty_access_class_cmd,
2766 "no access-class [WORD]",
2767 NO_STR
2768 "Filter connections based on an IP access list\n"
2769 "IP access list\n")
2770{
c349116d
DW
2771 int idx_word = 2;
2772 const char *accesslist = (argc == 3) ? argv[idx_word]->arg : NULL;
abddf075 2773 if (! vty_accesslist_name || (argc == 3 && strcmp(vty_accesslist_name, accesslist)))
718e3744 2774 {
2775 vty_out (vty, "Access-class is not currently applied to vty%s",
d0bfb22c 2776 VTY_NEWLINE);
718e3744 2777 return CMD_WARNING;
2778 }
2779
2780 XFREE(MTYPE_VTY, vty_accesslist_name);
2781
2782 vty_accesslist_name = NULL;
2783
2784 return CMD_SUCCESS;
2785}
2786
718e3744 2787/* Set vty access class. */
2788DEFUN (vty_ipv6_access_class,
2789 vty_ipv6_access_class_cmd,
2790 "ipv6 access-class WORD",
2791 IPV6_STR
2792 "Filter connections based on an IP access list\n"
2793 "IPv6 access list\n")
2794{
c349116d 2795 int idx_word = 2;
718e3744 2796 if (vty_ipv6_accesslist_name)
2797 XFREE(MTYPE_VTY, vty_ipv6_accesslist_name);
2798
c349116d 2799 vty_ipv6_accesslist_name = XSTRDUP(MTYPE_VTY, argv[idx_word]->arg);
718e3744 2800
2801 return CMD_SUCCESS;
2802}
2803
2804/* Clear vty access class. */
2805DEFUN (no_vty_ipv6_access_class,
2806 no_vty_ipv6_access_class_cmd,
2807 "no ipv6 access-class [WORD]",
2808 NO_STR
2809 IPV6_STR
2810 "Filter connections based on an IP access list\n"
2811 "IPv6 access list\n")
2812{
c349116d
DW
2813 int idx_word = 3;
2814 const char *accesslist = (argc == 4) ? argv[idx_word]->arg : NULL;
aa1c90a4 2815
718e3744 2816 if (! vty_ipv6_accesslist_name ||
abddf075 2817 (argc == 4 && strcmp(vty_ipv6_accesslist_name, accesslist)))
718e3744 2818 {
2819 vty_out (vty, "IPv6 access-class is not currently applied to vty%s",
d0bfb22c 2820 VTY_NEWLINE);
718e3744 2821 return CMD_WARNING;
2822 }
2823
2824 XFREE(MTYPE_VTY, vty_ipv6_accesslist_name);
2825
2826 vty_ipv6_accesslist_name = NULL;
2827
2828 return CMD_SUCCESS;
2829}
718e3744 2830
2831/* vty login. */
2832DEFUN (vty_login,
2833 vty_login_cmd,
2834 "login",
2835 "Enable password checking\n")
2836{
2837 no_password_check = 0;
2838 return CMD_SUCCESS;
2839}
2840
2841DEFUN (no_vty_login,
2842 no_vty_login_cmd,
2843 "no login",
2844 NO_STR
2845 "Enable password checking\n")
2846{
2847 no_password_check = 1;
2848 return CMD_SUCCESS;
2849}
2850
2851DEFUN (service_advanced_vty,
2852 service_advanced_vty_cmd,
2853 "service advanced-vty",
2854 "Set up miscellaneous service\n"
2855 "Enable advanced mode vty interface\n")
2856{
2857 host.advanced = 1;
2858 return CMD_SUCCESS;
2859}
2860
2861DEFUN (no_service_advanced_vty,
2862 no_service_advanced_vty_cmd,
2863 "no service advanced-vty",
2864 NO_STR
2865 "Set up miscellaneous service\n"
2866 "Enable advanced mode vty interface\n")
2867{
2868 host.advanced = 0;
2869 return CMD_SUCCESS;
2870}
2871
505e5056 2872DEFUN_NOSH (terminal_monitor,
718e3744 2873 terminal_monitor_cmd,
2874 "terminal monitor",
2875 "Set terminal line parameters\n"
2876 "Copy debug output to the current terminal line\n")
2877{
2878 vty->monitor = 1;
2879 return CMD_SUCCESS;
2880}
2881
505e5056 2882DEFUN_NOSH (terminal_no_monitor,
718e3744 2883 terminal_no_monitor_cmd,
2884 "terminal no monitor",
2885 "Set terminal line parameters\n"
2886 NO_STR
2887 "Copy debug output to the current terminal line\n")
2888{
2889 vty->monitor = 0;
2890 return CMD_SUCCESS;
2891}
2892
505e5056 2893DEFUN_NOSH (no_terminal_monitor,
789f78ac 2894 no_terminal_monitor_cmd,
2895 "no terminal monitor",
2896 NO_STR
2897 "Set terminal line parameters\n"
2898 "Copy debug output to the current terminal line\n")
f667a580
QY
2899{
2900 return terminal_no_monitor (self, vty, argc, argv);
2901}
2902
789f78ac 2903
505e5056 2904DEFUN_NOSH (show_history,
718e3744 2905 show_history_cmd,
2906 "show history",
2907 SHOW_STR
2908 "Display the session command history\n")
2909{
2910 int index;
2911
2912 for (index = vty->hindex + 1; index != vty->hindex;)
2913 {
2914 if (index == VTY_MAXHIST)
d0bfb22c
QY
2915 {
2916 index = 0;
2917 continue;
2918 }
718e3744 2919
2920 if (vty->hist[index] != NULL)
d0bfb22c 2921 vty_out (vty, " %s%s", vty->hist[index], VTY_NEWLINE);
718e3744 2922
2923 index++;
2924 }
2925
2926 return CMD_SUCCESS;
2927}
2928
da688ecd
LB
2929/* vty login. */
2930DEFUN (log_commands,
2931 log_commands_cmd,
2932 "log commands",
2933 "Logging control\n"
2934 "Log all commands (can't be unset without restart)\n")
2935{
2936 do_log_commands = 1;
2937 return CMD_SUCCESS;
2938}
2939
718e3744 2940/* Display current configuration. */
9fc7ebf1 2941static int
718e3744 2942vty_config_write (struct vty *vty)
2943{
2944 vty_out (vty, "line vty%s", VTY_NEWLINE);
2945
2946 if (vty_accesslist_name)
2947 vty_out (vty, " access-class %s%s",
d0bfb22c 2948 vty_accesslist_name, VTY_NEWLINE);
718e3744 2949
2950 if (vty_ipv6_accesslist_name)
2951 vty_out (vty, " ipv6 access-class %s%s",
d0bfb22c 2952 vty_ipv6_accesslist_name, VTY_NEWLINE);
718e3744 2953
2954 /* exec-timeout */
2955 if (vty_timeout_val != VTY_TIMEOUT_DEFAULT)
d0bfb22c
QY
2956 vty_out (vty, " exec-timeout %ld %ld%s",
2957 vty_timeout_val / 60,
2958 vty_timeout_val % 60, VTY_NEWLINE);
718e3744 2959
2960 /* login */
2961 if (no_password_check)
2962 vty_out (vty, " no login%s", VTY_NEWLINE);
da688ecd
LB
2963
2964 if (do_log_commands)
2965 vty_out (vty, "log commands%s", VTY_NEWLINE);
d0bfb22c 2966
718e3744 2967 vty_out (vty, "!%s", VTY_NEWLINE);
2968
2969 return CMD_SUCCESS;
2970}
2971
2972struct cmd_node vty_node =
2973{
2974 VTY_NODE,
2975 "%s(config-line)# ",
e7168df4 2976 1,
718e3744 2977};
2978
2979/* Reset all VTY status. */
2980void
2981vty_reset ()
2982{
8c328f11 2983 unsigned int i;
718e3744 2984 struct vty *vty;
2985 struct thread *vty_serv_thread;
2986
55468c86 2987 for (i = 0; i < vector_active (vtyvec); i++)
718e3744 2988 if ((vty = vector_slot (vtyvec, i)) != NULL)
2989 {
d0bfb22c
QY
2990 buffer_reset (vty->obuf);
2991 vty->status = VTY_CLOSE;
2992 vty_close (vty);
718e3744 2993 }
2994
55468c86 2995 for (i = 0; i < vector_active (Vvty_serv_thread); i++)
718e3744 2996 if ((vty_serv_thread = vector_slot (Vvty_serv_thread, i)) != NULL)
2997 {
d0bfb22c
QY
2998 thread_cancel (vty_serv_thread);
2999 vector_slot (Vvty_serv_thread, i) = NULL;
718e3744 3000 close (i);
3001 }
3002
3003 vty_timeout_val = VTY_TIMEOUT_DEFAULT;
3004
3005 if (vty_accesslist_name)
3006 {
3007 XFREE(MTYPE_VTY, vty_accesslist_name);
3008 vty_accesslist_name = NULL;
3009 }
3010
3011 if (vty_ipv6_accesslist_name)
3012 {
3013 XFREE(MTYPE_VTY, vty_ipv6_accesslist_name);
3014 vty_ipv6_accesslist_name = NULL;
3015 }
3016}
3017
9fc7ebf1 3018static void
3019vty_save_cwd (void)
718e3744 3020{
79ad2798 3021 char cwd[MAXPATHLEN];
ccc9235e 3022 char *c;
79ad2798 3023
ccc9235e 3024 c = getcwd (cwd, MAXPATHLEN);
718e3744 3025
ccc9235e 3026 if (!c)
79ad2798 3027 {
77f24551
DS
3028 /*
3029 * At this point if these go wrong, more than likely
3030 * the whole world is coming down around us
3031 * Hence not worrying about it too much.
3032 */
3033 if (!chdir (SYSCONFDIR))
d0bfb22c
QY
3034 {
3035 fprintf(stderr, "Failure to chdir to %s, errno: %d\n", SYSCONFDIR, errno);
3036 exit(-1);
3037 }
77f24551 3038 if (getcwd (cwd, MAXPATHLEN) == NULL)
d0bfb22c
QY
3039 {
3040 fprintf(stderr, "Failure to getcwd, errno: %d\n", errno);
3041 exit(-1);
3042 }
79ad2798 3043 }
718e3744 3044
3045 vty_cwd = XMALLOC (MTYPE_TMP, strlen (cwd) + 1);
3046 strcpy (vty_cwd, cwd);
3047}
3048
3049char *
3050vty_get_cwd ()
3051{
3052 return vty_cwd;
3053}
3054
3055int
3056vty_shell (struct vty *vty)
3057{
3058 return vty->type == VTY_SHELL ? 1 : 0;
3059}
3060
3061int
3062vty_shell_serv (struct vty *vty)
3063{
3064 return vty->type == VTY_SHELL_SERV ? 1 : 0;
3065}
3066
3067void
3068vty_init_vtysh ()
3069{
3070 vtyvec = vector_init (VECTOR_MIN_SIZE);
3071}
3072
3073/* Install vty's own commands like `who' command. */
3074void
b21b19c5 3075vty_init (struct thread_master *master_thread)
718e3744 3076{
3077 /* For further configuration read, preserve current directory. */
3078 vty_save_cwd ();
3079
3080 vtyvec = vector_init (VECTOR_MIN_SIZE);
3081
79159516 3082 vty_master = master_thread;
b21b19c5 3083
b510a06e
DL
3084 atexit (vty_stdio_reset);
3085
718e3744 3086 /* Initilize server thread vector. */
3087 Vvty_serv_thread = vector_init (VECTOR_MIN_SIZE);
3088
3089 /* Install bgp top node. */
3090 install_node (&vty_node, vty_config_write);
3091
3092 install_element (VIEW_NODE, &config_who_cmd);
3093 install_element (VIEW_NODE, &show_history_cmd);
718e3744 3094 install_element (CONFIG_NODE, &line_vty_cmd);
3095 install_element (CONFIG_NODE, &service_advanced_vty_cmd);
3096 install_element (CONFIG_NODE, &no_service_advanced_vty_cmd);
3097 install_element (CONFIG_NODE, &show_history_cmd);
da688ecd 3098 install_element (CONFIG_NODE, &log_commands_cmd);
718e3744 3099 install_element (ENABLE_NODE, &terminal_monitor_cmd);
3100 install_element (ENABLE_NODE, &terminal_no_monitor_cmd);
789f78ac 3101 install_element (ENABLE_NODE, &no_terminal_monitor_cmd);
718e3744 3102
3103 install_default (VTY_NODE);
3104 install_element (VTY_NODE, &exec_timeout_min_cmd);
3105 install_element (VTY_NODE, &exec_timeout_sec_cmd);
3106 install_element (VTY_NODE, &no_exec_timeout_cmd);
3107 install_element (VTY_NODE, &vty_access_class_cmd);
3108 install_element (VTY_NODE, &no_vty_access_class_cmd);
3109 install_element (VTY_NODE, &vty_login_cmd);
3110 install_element (VTY_NODE, &no_vty_login_cmd);
718e3744 3111 install_element (VTY_NODE, &vty_ipv6_access_class_cmd);
3112 install_element (VTY_NODE, &no_vty_ipv6_access_class_cmd);
718e3744 3113}
228da428
CC
3114
3115void
3116vty_terminate (void)
3117{
3118 if (vty_cwd)
3119 XFREE (MTYPE_TMP, vty_cwd);
3120
3121 if (vtyvec && Vvty_serv_thread)
3122 {
3123 vty_reset ();
3124 vector_free (vtyvec);
3125 vector_free (Vvty_serv_thread);
6253a46a
LB
3126 vtyvec = NULL;
3127 Vvty_serv_thread = NULL;
228da428
CC
3128 }
3129}
eac6e3f0
RW
3130
3131/* Utility functions to get arguments from commands generated
3132 by the xml2cli.pl script. */
3133const char *
3134vty_get_arg_value (struct vty_arg *args[], const char *arg)
3135{
3136 while (*args)
3137 {
3138 if (strcmp ((*args)->name, arg) == 0)
3139 return (*args)->value;
3140 args++;
3141 }
3142 return NULL;
3143}
3144
3145struct vty_arg *
3146vty_get_arg (struct vty_arg *args[], const char *arg)
3147{
3148 while (*args)
3149 {
3150 if (strcmp ((*args)->name, arg) == 0)
3151 return *args;
3152 args++;
3153 }
3154 return NULL;
3155}