blob: 3f08b9e9cfb2efd8c1a420991c19c92ae39477b9 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
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
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "linklist.h"
paulb21b19c2003-06-15 01:28:29 +000026#include "thread.h"
paul718e3742002-12-13 20:15:29 +000027#include "buffer.h"
gdt5e4fa162004-03-16 14:38:36 +000028#include <lib/version.h>
paul718e3742002-12-13 20:15:29 +000029#include "command.h"
30#include "sockunion.h"
paul718e3742002-12-13 20:15:29 +000031#include "memory.h"
32#include "str.h"
33#include "log.h"
34#include "prefix.h"
35#include "filter.h"
paulb21b19c2003-06-15 01:28:29 +000036#include "vty.h"
pauledd7c242003-06-04 13:59:38 +000037#include "privs.h"
ajs9fc7ebf2005-02-23 15:12:34 +000038#include "network.h"
39
40#include <arpa/telnet.h>
paul718e3742002-12-13 20:15:29 +000041
42/* Vty events */
43enum event
44{
45 VTY_SERV,
46 VTY_READ,
47 VTY_WRITE,
48 VTY_TIMEOUT_RESET,
49#ifdef VTYSH
50 VTYSH_SERV,
ajs49ff6d92004-11-04 19:26:16 +000051 VTYSH_READ,
52 VTYSH_WRITE
paul718e3742002-12-13 20:15:29 +000053#endif /* VTYSH */
54};
55
56static void vty_event (enum event, int, struct vty *);
57
58/* Extern host structure from command.c */
59extern struct host host;
David Lamparter6b0655a2014-06-04 06:53:35 +020060
paul718e3742002-12-13 20:15:29 +000061/* Vector which store each vty structure. */
62static vector vtyvec;
63
64/* Vty timeout value. */
65static unsigned long vty_timeout_val = VTY_TIMEOUT_DEFAULT;
66
67/* Vty access-class command */
68static char *vty_accesslist_name = NULL;
69
70/* Vty access-calss for IPv6. */
71static char *vty_ipv6_accesslist_name = NULL;
72
73/* VTY server thread. */
Christian Franke677bcbb2013-02-27 13:47:23 +000074static vector Vvty_serv_thread;
paul718e3742002-12-13 20:15:29 +000075
76/* Current directory. */
77char *vty_cwd = NULL;
78
79/* Configure lock. */
80static int vty_config;
81
82/* Login password check. */
83static int no_password_check = 0;
84
Paul Jakma62687ff2008-08-23 14:27:06 +010085/* Restrict unauthenticated logins? */
86static const u_char restricted_mode_default = 0;
87static u_char restricted_mode = 0;
88
paul718e3742002-12-13 20:15:29 +000089/* Integrated configuration file path */
90char integrate_default[] = SYSCONFDIR INTEGRATE_DEFAULT_CONFIG;
91
David Lamparter6b0655a2014-06-04 06:53:35 +020092
paul718e3742002-12-13 20:15:29 +000093/* VTY standard output function. */
94int
95vty_out (struct vty *vty, const char *format, ...)
96{
97 va_list args;
98 int len = 0;
99 int size = 1024;
100 char buf[1024];
101 char *p = NULL;
paul718e3742002-12-13 20:15:29 +0000102
103 if (vty_shell (vty))
ajsd246bd92004-11-23 17:35:08 +0000104 {
105 va_start (args, format);
106 vprintf (format, args);
107 va_end (args);
108 }
paul718e3742002-12-13 20:15:29 +0000109 else
110 {
111 /* Try to write to initial buffer. */
ajsd246bd92004-11-23 17:35:08 +0000112 va_start (args, format);
paul718e3742002-12-13 20:15:29 +0000113 len = vsnprintf (buf, sizeof buf, format, args);
ajsd246bd92004-11-23 17:35:08 +0000114 va_end (args);
paul718e3742002-12-13 20:15:29 +0000115
116 /* Initial buffer is not enough. */
117 if (len < 0 || len >= size)
118 {
119 while (1)
120 {
121 if (len > -1)
122 size = len + 1;
123 else
124 size = size * 2;
125
126 p = XREALLOC (MTYPE_VTY_OUT_BUF, p, size);
127 if (! p)
128 return -1;
129
ajsd246bd92004-11-23 17:35:08 +0000130 va_start (args, format);
paul718e3742002-12-13 20:15:29 +0000131 len = vsnprintf (p, size, format, args);
ajsd246bd92004-11-23 17:35:08 +0000132 va_end (args);
paul718e3742002-12-13 20:15:29 +0000133
134 if (len > -1 && len < size)
135 break;
136 }
137 }
138
139 /* When initial buffer is enough to store all output. */
140 if (! p)
141 p = buf;
142
143 /* Pointer p must point out buffer. */
ajs9fc7ebf2005-02-23 15:12:34 +0000144 buffer_put (vty->obuf, (u_char *) p, len);
paul718e3742002-12-13 20:15:29 +0000145
146 /* If p is not different with buf, it is allocated buffer. */
147 if (p != buf)
148 XFREE (MTYPE_VTY_OUT_BUF, p);
149 }
150
paul718e3742002-12-13 20:15:29 +0000151 return len;
152}
153
ajsd246bd92004-11-23 17:35:08 +0000154static int
ajs274a4a42004-12-07 15:39:31 +0000155vty_log_out (struct vty *vty, const char *level, const char *proto_str,
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +0000156 const char *format, struct timestamp_control *ctl, va_list va)
paul718e3742002-12-13 20:15:29 +0000157{
ajs9fc7ebf2005-02-23 15:12:34 +0000158 int ret;
paul718e3742002-12-13 20:15:29 +0000159 int len;
160 char buf[1024];
Andrew J. Schorr08942da2006-07-03 20:58:29 +0000161
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +0000162 if (!ctl->already_rendered)
163 {
164 ctl->len = quagga_timestamp(ctl->precision, ctl->buf, sizeof(ctl->buf));
165 ctl->already_rendered = 1;
166 }
167 if (ctl->len+1 >= sizeof(buf))
168 return -1;
169 memcpy(buf, ctl->buf, len = ctl->len);
170 buf[len++] = ' ';
171 buf[len] = '\0';
paul718e3742002-12-13 20:15:29 +0000172
ajs274a4a42004-12-07 15:39:31 +0000173 if (level)
Andrew J. Schorr08942da2006-07-03 20:58:29 +0000174 ret = snprintf(buf+len, sizeof(buf)-len, "%s: %s: ", level, proto_str);
ajs274a4a42004-12-07 15:39:31 +0000175 else
Andrew J. Schorr08942da2006-07-03 20:58:29 +0000176 ret = snprintf(buf+len, sizeof(buf)-len, "%s: ", proto_str);
177 if ((ret < 0) || ((size_t)(len += ret) >= sizeof(buf)))
paul718e3742002-12-13 20:15:29 +0000178 return -1;
paul718e3742002-12-13 20:15:29 +0000179
ajs9fc7ebf2005-02-23 15:12:34 +0000180 if (((ret = vsnprintf(buf+len, sizeof(buf)-len, format, va)) < 0) ||
181 ((size_t)((len += ret)+2) > sizeof(buf)))
182 return -1;
paul718e3742002-12-13 20:15:29 +0000183
ajs9fc7ebf2005-02-23 15:12:34 +0000184 buf[len++] = '\r';
185 buf[len++] = '\n';
186
187 if (write(vty->fd, buf, len) < 0)
188 {
189 if (ERRNO_IO_RETRY(errno))
190 /* Kernel buffer is full, probably too much debugging output, so just
191 drop the data and ignore. */
192 return -1;
193 /* Fatal I/O error. */
Andrew J. Schorr74542d72006-07-10 18:09:42 +0000194 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
ajs9fc7ebf2005-02-23 15:12:34 +0000195 zlog_warn("%s: write failed to vty client fd %d, closing: %s",
196 __func__, vty->fd, safe_strerror(errno));
197 buffer_reset(vty->obuf);
Andrew J. Schorr9d0a3262006-07-11 00:06:49 +0000198 /* cannot call vty_close, because a parent routine may still try
199 to access the vty struct */
200 vty->status = VTY_CLOSE;
201 shutdown(vty->fd, SHUT_RDWR);
ajs9fc7ebf2005-02-23 15:12:34 +0000202 return -1;
203 }
204 return 0;
paul718e3742002-12-13 20:15:29 +0000205}
206
207/* Output current time to the vty. */
208void
209vty_time_print (struct vty *vty, int cr)
210{
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +0000211 char buf [25];
paul718e3742002-12-13 20:15:29 +0000212
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +0000213 if (quagga_timestamp(0, buf, sizeof(buf)) == 0)
paul718e3742002-12-13 20:15:29 +0000214 {
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +0000215 zlog (NULL, LOG_INFO, "quagga_timestamp error");
paul718e3742002-12-13 20:15:29 +0000216 return;
217 }
218 if (cr)
219 vty_out (vty, "%s\n", buf);
220 else
221 vty_out (vty, "%s ", buf);
222
223 return;
224}
225
226/* Say hello to vty interface. */
227void
228vty_hello (struct vty *vty)
229{
paul3b0c5d92005-03-08 10:43:43 +0000230 if (host.motdfile)
231 {
232 FILE *f;
233 char buf[4096];
paul22085182005-03-08 16:00:12 +0000234
paul3b0c5d92005-03-08 10:43:43 +0000235 f = fopen (host.motdfile, "r");
236 if (f)
237 {
paulb45da6f2005-03-08 15:16:57 +0000238 while (fgets (buf, sizeof (buf), f))
paul3b0c5d92005-03-08 10:43:43 +0000239 {
paulb45da6f2005-03-08 15:16:57 +0000240 char *s;
paul22085182005-03-08 16:00:12 +0000241 /* work backwards to ignore trailling isspace() */
gdtf80a0162005-12-29 16:03:32 +0000242 for (s = buf + strlen (buf); (s > buf) && isspace ((int)*(s - 1));
paul22085182005-03-08 16:00:12 +0000243 s--);
244 *s = '\0';
245 vty_out (vty, "%s%s", buf, VTY_NEWLINE);
246 }
paul3b0c5d92005-03-08 10:43:43 +0000247 fclose (f);
248 }
249 else
paulb45da6f2005-03-08 15:16:57 +0000250 vty_out (vty, "MOTD file not found%s", VTY_NEWLINE);
paul3b0c5d92005-03-08 10:43:43 +0000251 }
252 else if (host.motd)
Nico Goldeb830c892010-08-01 15:24:35 +0200253 vty_out (vty, "%s", host.motd);
paul718e3742002-12-13 20:15:29 +0000254}
255
256/* Put out prompt and wait input from user. */
257static void
258vty_prompt (struct vty *vty)
259{
260 struct utsname names;
261 const char*hostname;
262
263 if (vty->type == VTY_TERM)
264 {
265 hostname = host.name;
266 if (!hostname)
267 {
268 uname (&names);
269 hostname = names.nodename;
270 }
271 vty_out (vty, cmd_prompt (vty->node), hostname);
272 }
273}
274
275/* Send WILL TELOPT_ECHO to remote server. */
ajs9fc7ebf2005-02-23 15:12:34 +0000276static void
paul718e3742002-12-13 20:15:29 +0000277vty_will_echo (struct vty *vty)
278{
paul02ff83c2004-06-11 11:27:03 +0000279 unsigned char cmd[] = { IAC, WILL, TELOPT_ECHO, '\0' };
paul718e3742002-12-13 20:15:29 +0000280 vty_out (vty, "%s", cmd);
281}
282
283/* Make suppress Go-Ahead telnet option. */
284static void
285vty_will_suppress_go_ahead (struct vty *vty)
286{
paul02ff83c2004-06-11 11:27:03 +0000287 unsigned char cmd[] = { IAC, WILL, TELOPT_SGA, '\0' };
paul718e3742002-12-13 20:15:29 +0000288 vty_out (vty, "%s", cmd);
289}
290
291/* Make don't use linemode over telnet. */
292static void
293vty_dont_linemode (struct vty *vty)
294{
paul02ff83c2004-06-11 11:27:03 +0000295 unsigned char cmd[] = { IAC, DONT, TELOPT_LINEMODE, '\0' };
paul718e3742002-12-13 20:15:29 +0000296 vty_out (vty, "%s", cmd);
297}
298
299/* Use window size. */
300static void
301vty_do_window_size (struct vty *vty)
302{
paul02ff83c2004-06-11 11:27:03 +0000303 unsigned char cmd[] = { IAC, DO, TELOPT_NAWS, '\0' };
paul718e3742002-12-13 20:15:29 +0000304 vty_out (vty, "%s", cmd);
305}
306
307#if 0 /* Currently not used. */
308/* Make don't use lflow vty interface. */
309static void
310vty_dont_lflow_ahead (struct vty *vty)
311{
paul02ff83c2004-06-11 11:27:03 +0000312 unsigned char cmd[] = { IAC, DONT, TELOPT_LFLOW, '\0' };
paul718e3742002-12-13 20:15:29 +0000313 vty_out (vty, "%s", cmd);
314}
315#endif /* 0 */
316
317/* Allocate new vty struct. */
318struct vty *
319vty_new ()
320{
321 struct vty *new = XCALLOC (MTYPE_VTY, sizeof (struct vty));
322
ajs9fc7ebf2005-02-23 15:12:34 +0000323 new->obuf = buffer_new(0); /* Use default buffer size. */
paul718e3742002-12-13 20:15:29 +0000324 new->buf = XCALLOC (MTYPE_VTY, VTY_BUFSIZ);
325 new->max = VTY_BUFSIZ;
paul718e3742002-12-13 20:15:29 +0000326
327 return new;
328}
329
330/* Authentication of vty */
331static void
332vty_auth (struct vty *vty, char *buf)
333{
334 char *passwd = NULL;
335 enum node_type next_node = 0;
336 int fail;
337 char *crypt (const char *, const char *);
338
339 switch (vty->node)
340 {
341 case AUTH_NODE:
342 if (host.encrypt)
343 passwd = host.password_encrypt;
344 else
345 passwd = host.password;
346 if (host.advanced)
347 next_node = host.enable ? VIEW_NODE : ENABLE_NODE;
348 else
349 next_node = VIEW_NODE;
350 break;
351 case AUTH_ENABLE_NODE:
352 if (host.encrypt)
353 passwd = host.enable_encrypt;
354 else
355 passwd = host.enable;
356 next_node = ENABLE_NODE;
357 break;
358 }
359
360 if (passwd)
361 {
362 if (host.encrypt)
363 fail = strcmp (crypt(buf, passwd), passwd);
364 else
365 fail = strcmp (buf, passwd);
366 }
367 else
368 fail = 1;
369
370 if (! fail)
371 {
372 vty->fail = 0;
373 vty->node = next_node; /* Success ! */
374 }
375 else
376 {
377 vty->fail++;
378 if (vty->fail >= 3)
379 {
380 if (vty->node == AUTH_NODE)
381 {
382 vty_out (vty, "%% Bad passwords, too many failures!%s", VTY_NEWLINE);
383 vty->status = VTY_CLOSE;
384 }
385 else
386 {
387 /* AUTH_ENABLE_NODE */
388 vty->fail = 0;
389 vty_out (vty, "%% Bad enable passwords, too many failures!%s", VTY_NEWLINE);
Paul Jakma62687ff2008-08-23 14:27:06 +0100390 vty->node = restricted_mode ? RESTRICTED_NODE : VIEW_NODE;
paul718e3742002-12-13 20:15:29 +0000391 }
392 }
393 }
394}
395
396/* Command execution over the vty interface. */
ajs9fc7ebf2005-02-23 15:12:34 +0000397static int
paul718e3742002-12-13 20:15:29 +0000398vty_command (struct vty *vty, char *buf)
399{
400 int ret;
401 vector vline;
vincentfbf5d032005-09-29 11:25:50 +0000402 const char *protocolname;
paul718e3742002-12-13 20:15:29 +0000403
404 /* Split readline string up into the vector */
405 vline = cmd_make_strvec (buf);
406
407 if (vline == NULL)
408 return CMD_SUCCESS;
409
ajs924b9222005-04-16 17:11:24 +0000410#ifdef CONSUMED_TIME_CHECK
411 {
412 RUSAGE_T before;
413 RUSAGE_T after;
ajs8b70d0b2005-04-28 01:31:13 +0000414 unsigned long realtime, cputime;
ajs924b9222005-04-16 17:11:24 +0000415
416 GETRUSAGE(&before);
417#endif /* CONSUMED_TIME_CHECK */
418
hasso87d683b2005-01-16 23:31:54 +0000419 ret = cmd_execute_command (vline, vty, NULL, 0);
paul718e3742002-12-13 20:15:29 +0000420
vincentfbf5d032005-09-29 11:25:50 +0000421 /* Get the name of the protocol if any */
422 if (zlog_default)
423 protocolname = zlog_proto_names[zlog_default->protocol];
424 else
425 protocolname = zlog_proto_names[ZLOG_NONE];
426
ajs924b9222005-04-16 17:11:24 +0000427#ifdef CONSUMED_TIME_CHECK
428 GETRUSAGE(&after);
ajs8b70d0b2005-04-28 01:31:13 +0000429 if ((realtime = thread_consumed_time(&after, &before, &cputime)) >
430 CONSUMED_TIME_CHECK)
ajs924b9222005-04-16 17:11:24 +0000431 /* Warn about CPU hog that must be fixed. */
ajs8b70d0b2005-04-28 01:31:13 +0000432 zlog_warn("SLOW COMMAND: command took %lums (cpu time %lums): %s",
433 realtime/1000, cputime/1000, buf);
ajs924b9222005-04-16 17:11:24 +0000434 }
435#endif /* CONSUMED_TIME_CHECK */
436
paul718e3742002-12-13 20:15:29 +0000437 if (ret != CMD_SUCCESS)
438 switch (ret)
439 {
440 case CMD_WARNING:
441 if (vty->type == VTY_FILE)
442 vty_out (vty, "Warning...%s", VTY_NEWLINE);
443 break;
444 case CMD_ERR_AMBIGUOUS:
445 vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
446 break;
447 case CMD_ERR_NO_MATCH:
vincentfbf5d032005-09-29 11:25:50 +0000448 vty_out (vty, "%% [%s] Unknown command: %s%s", protocolname, buf, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +0000449 break;
450 case CMD_ERR_INCOMPLETE:
451 vty_out (vty, "%% Command incomplete.%s", VTY_NEWLINE);
452 break;
453 }
454 cmd_free_strvec (vline);
455
456 return ret;
457}
David Lamparter6b0655a2014-06-04 06:53:35 +0200458
ajs9fc7ebf2005-02-23 15:12:34 +0000459static const char telnet_backward_char = 0x08;
460static const char telnet_space_char = ' ';
paul718e3742002-12-13 20:15:29 +0000461
462/* Basic function to write buffer to vty. */
463static void
ajs9fc7ebf2005-02-23 15:12:34 +0000464vty_write (struct vty *vty, const char *buf, size_t nbytes)
paul718e3742002-12-13 20:15:29 +0000465{
466 if ((vty->node == AUTH_NODE) || (vty->node == AUTH_ENABLE_NODE))
467 return;
468
469 /* Should we do buffering here ? And make vty_flush (vty) ? */
ajs9fc7ebf2005-02-23 15:12:34 +0000470 buffer_put (vty->obuf, buf, nbytes);
paul718e3742002-12-13 20:15:29 +0000471}
472
473/* Ensure length of input buffer. Is buffer is short, double it. */
474static void
475vty_ensure (struct vty *vty, int length)
476{
477 if (vty->max <= length)
478 {
479 vty->max *= 2;
480 vty->buf = XREALLOC (MTYPE_VTY, vty->buf, vty->max);
481 }
482}
483
484/* Basic function to insert character into vty. */
485static void
486vty_self_insert (struct vty *vty, char c)
487{
488 int i;
489 int length;
490
491 vty_ensure (vty, vty->length + 1);
492 length = vty->length - vty->cp;
493 memmove (&vty->buf[vty->cp + 1], &vty->buf[vty->cp], length);
494 vty->buf[vty->cp] = c;
495
496 vty_write (vty, &vty->buf[vty->cp], length + 1);
497 for (i = 0; i < length; i++)
498 vty_write (vty, &telnet_backward_char, 1);
499
500 vty->cp++;
501 vty->length++;
502}
503
504/* Self insert character 'c' in overwrite mode. */
505static void
506vty_self_insert_overwrite (struct vty *vty, char c)
507{
508 vty_ensure (vty, vty->length + 1);
509 vty->buf[vty->cp++] = c;
510
511 if (vty->cp > vty->length)
512 vty->length++;
513
514 if ((vty->node == AUTH_NODE) || (vty->node == AUTH_ENABLE_NODE))
515 return;
516
517 vty_write (vty, &c, 1);
518}
519
520/* Insert a word into vty interface with overwrite mode. */
521static void
522vty_insert_word_overwrite (struct vty *vty, char *str)
523{
524 int len = strlen (str);
525 vty_write (vty, str, len);
526 strcpy (&vty->buf[vty->cp], str);
527 vty->cp += len;
528 vty->length = vty->cp;
529}
530
531/* Forward character. */
532static void
533vty_forward_char (struct vty *vty)
534{
535 if (vty->cp < vty->length)
536 {
537 vty_write (vty, &vty->buf[vty->cp], 1);
538 vty->cp++;
539 }
540}
541
542/* Backward character. */
543static void
544vty_backward_char (struct vty *vty)
545{
546 if (vty->cp > 0)
547 {
548 vty->cp--;
549 vty_write (vty, &telnet_backward_char, 1);
550 }
551}
552
553/* Move to the beginning of the line. */
554static void
555vty_beginning_of_line (struct vty *vty)
556{
557 while (vty->cp)
558 vty_backward_char (vty);
559}
560
561/* Move to the end of the line. */
562static void
563vty_end_of_line (struct vty *vty)
564{
565 while (vty->cp < vty->length)
566 vty_forward_char (vty);
567}
568
569static void vty_kill_line_from_beginning (struct vty *);
570static void vty_redraw_line (struct vty *);
571
572/* Print command line history. This function is called from
573 vty_next_line and vty_previous_line. */
574static void
575vty_history_print (struct vty *vty)
576{
577 int length;
578
579 vty_kill_line_from_beginning (vty);
580
581 /* Get previous line from history buffer */
582 length = strlen (vty->hist[vty->hp]);
583 memcpy (vty->buf, vty->hist[vty->hp], length);
584 vty->cp = vty->length = length;
585
586 /* Redraw current line */
587 vty_redraw_line (vty);
588}
589
590/* Show next command line history. */
ajs9fc7ebf2005-02-23 15:12:34 +0000591static void
paul718e3742002-12-13 20:15:29 +0000592vty_next_line (struct vty *vty)
593{
594 int try_index;
595
596 if (vty->hp == vty->hindex)
597 return;
598
599 /* Try is there history exist or not. */
600 try_index = vty->hp;
601 if (try_index == (VTY_MAXHIST - 1))
602 try_index = 0;
603 else
604 try_index++;
605
606 /* If there is not history return. */
607 if (vty->hist[try_index] == NULL)
608 return;
609 else
610 vty->hp = try_index;
611
612 vty_history_print (vty);
613}
614
615/* Show previous command line history. */
ajs9fc7ebf2005-02-23 15:12:34 +0000616static void
paul718e3742002-12-13 20:15:29 +0000617vty_previous_line (struct vty *vty)
618{
619 int try_index;
620
621 try_index = vty->hp;
622 if (try_index == 0)
623 try_index = VTY_MAXHIST - 1;
624 else
625 try_index--;
626
627 if (vty->hist[try_index] == NULL)
628 return;
629 else
630 vty->hp = try_index;
631
632 vty_history_print (vty);
633}
634
635/* This function redraw all of the command line character. */
636static void
637vty_redraw_line (struct vty *vty)
638{
639 vty_write (vty, vty->buf, vty->length);
640 vty->cp = vty->length;
641}
642
643/* Forward word. */
644static void
645vty_forward_word (struct vty *vty)
646{
647 while (vty->cp != vty->length && vty->buf[vty->cp] != ' ')
648 vty_forward_char (vty);
649
650 while (vty->cp != vty->length && vty->buf[vty->cp] == ' ')
651 vty_forward_char (vty);
652}
653
654/* Backward word without skipping training space. */
655static void
656vty_backward_pure_word (struct vty *vty)
657{
658 while (vty->cp > 0 && vty->buf[vty->cp - 1] != ' ')
659 vty_backward_char (vty);
660}
661
662/* Backward word. */
663static void
664vty_backward_word (struct vty *vty)
665{
666 while (vty->cp > 0 && vty->buf[vty->cp - 1] == ' ')
667 vty_backward_char (vty);
668
669 while (vty->cp > 0 && vty->buf[vty->cp - 1] != ' ')
670 vty_backward_char (vty);
671}
672
673/* When '^D' is typed at the beginning of the line we move to the down
674 level. */
675static void
676vty_down_level (struct vty *vty)
677{
678 vty_out (vty, "%s", VTY_NEWLINE);
ajs274a4a42004-12-07 15:39:31 +0000679 (*config_exit_cmd.func)(NULL, vty, 0, NULL);
paul718e3742002-12-13 20:15:29 +0000680 vty_prompt (vty);
681 vty->cp = 0;
682}
683
684/* When '^Z' is received from vty, move down to the enable mode. */
ajs9fc7ebf2005-02-23 15:12:34 +0000685static void
paul718e3742002-12-13 20:15:29 +0000686vty_end_config (struct vty *vty)
687{
688 vty_out (vty, "%s", VTY_NEWLINE);
689
690 switch (vty->node)
691 {
692 case VIEW_NODE:
693 case ENABLE_NODE:
Paul Jakma62687ff2008-08-23 14:27:06 +0100694 case RESTRICTED_NODE:
paul718e3742002-12-13 20:15:29 +0000695 /* Nothing to do. */
696 break;
697 case CONFIG_NODE:
698 case INTERFACE_NODE:
699 case ZEBRA_NODE:
700 case RIP_NODE:
701 case RIPNG_NODE:
Paul Jakma57345092011-12-25 17:52:09 +0100702 case BABEL_NODE:
paul718e3742002-12-13 20:15:29 +0000703 case BGP_NODE:
704 case BGP_VPNV4_NODE:
705 case BGP_IPV4_NODE:
706 case BGP_IPV4M_NODE:
707 case BGP_IPV6_NODE:
paul1e836592005-08-22 22:39:56 +0000708 case BGP_IPV6M_NODE:
paul718e3742002-12-13 20:15:29 +0000709 case RMAP_NODE:
710 case OSPF_NODE:
711 case OSPF6_NODE:
jardin9e867fe2003-12-23 08:56:18 +0000712 case ISIS_NODE:
paul718e3742002-12-13 20:15:29 +0000713 case KEYCHAIN_NODE:
714 case KEYCHAIN_KEY_NODE:
715 case MASC_NODE:
716 case VTY_NODE:
717 vty_config_unlock (vty);
718 vty->node = ENABLE_NODE;
719 break;
720 default:
721 /* Unknown node, we have to ignore it. */
722 break;
723 }
724
725 vty_prompt (vty);
726 vty->cp = 0;
727}
728
729/* Delete a charcter at the current point. */
730static void
731vty_delete_char (struct vty *vty)
732{
733 int i;
734 int size;
735
paul718e3742002-12-13 20:15:29 +0000736 if (vty->length == 0)
737 {
738 vty_down_level (vty);
739 return;
740 }
741
742 if (vty->cp == vty->length)
743 return; /* completion need here? */
744
745 size = vty->length - vty->cp;
746
747 vty->length--;
748 memmove (&vty->buf[vty->cp], &vty->buf[vty->cp + 1], size - 1);
749 vty->buf[vty->length] = '\0';
Roy7f794f22008-08-13 17:27:38 +0100750
751 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
752 return;
paul718e3742002-12-13 20:15:29 +0000753
754 vty_write (vty, &vty->buf[vty->cp], size - 1);
755 vty_write (vty, &telnet_space_char, 1);
756
757 for (i = 0; i < size; i++)
758 vty_write (vty, &telnet_backward_char, 1);
759}
760
761/* Delete a character before the point. */
762static void
763vty_delete_backward_char (struct vty *vty)
764{
765 if (vty->cp == 0)
766 return;
767
768 vty_backward_char (vty);
769 vty_delete_char (vty);
770}
771
772/* Kill rest of line from current point. */
773static void
774vty_kill_line (struct vty *vty)
775{
776 int i;
777 int size;
778
779 size = vty->length - vty->cp;
780
781 if (size == 0)
782 return;
783
784 for (i = 0; i < size; i++)
785 vty_write (vty, &telnet_space_char, 1);
786 for (i = 0; i < size; i++)
787 vty_write (vty, &telnet_backward_char, 1);
788
789 memset (&vty->buf[vty->cp], 0, size);
790 vty->length = vty->cp;
791}
792
793/* Kill line from the beginning. */
794static void
795vty_kill_line_from_beginning (struct vty *vty)
796{
797 vty_beginning_of_line (vty);
798 vty_kill_line (vty);
799}
800
801/* Delete a word before the point. */
802static void
803vty_forward_kill_word (struct vty *vty)
804{
805 while (vty->cp != vty->length && vty->buf[vty->cp] == ' ')
806 vty_delete_char (vty);
807 while (vty->cp != vty->length && vty->buf[vty->cp] != ' ')
808 vty_delete_char (vty);
809}
810
811/* Delete a word before the point. */
812static void
813vty_backward_kill_word (struct vty *vty)
814{
815 while (vty->cp > 0 && vty->buf[vty->cp - 1] == ' ')
816 vty_delete_backward_char (vty);
817 while (vty->cp > 0 && vty->buf[vty->cp - 1] != ' ')
818 vty_delete_backward_char (vty);
819}
820
821/* Transpose chars before or at the point. */
822static void
823vty_transpose_chars (struct vty *vty)
824{
825 char c1, c2;
826
827 /* If length is short or point is near by the beginning of line then
828 return. */
829 if (vty->length < 2 || vty->cp < 1)
830 return;
831
832 /* In case of point is located at the end of the line. */
833 if (vty->cp == vty->length)
834 {
835 c1 = vty->buf[vty->cp - 1];
836 c2 = vty->buf[vty->cp - 2];
837
838 vty_backward_char (vty);
839 vty_backward_char (vty);
840 vty_self_insert_overwrite (vty, c1);
841 vty_self_insert_overwrite (vty, c2);
842 }
843 else
844 {
845 c1 = vty->buf[vty->cp];
846 c2 = vty->buf[vty->cp - 1];
847
848 vty_backward_char (vty);
849 vty_self_insert_overwrite (vty, c1);
850 vty_self_insert_overwrite (vty, c2);
851 }
852}
853
854/* Do completion at vty interface. */
855static void
856vty_complete_command (struct vty *vty)
857{
858 int i;
859 int ret;
860 char **matched = NULL;
861 vector vline;
862
863 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
864 return;
865
866 vline = cmd_make_strvec (vty->buf);
867 if (vline == NULL)
868 return;
869
870 /* In case of 'help \t'. */
871 if (isspace ((int) vty->buf[vty->length - 1]))
872 vector_set (vline, '\0');
873
874 matched = cmd_complete_command (vline, vty, &ret);
875
876 cmd_free_strvec (vline);
877
878 vty_out (vty, "%s", VTY_NEWLINE);
879 switch (ret)
880 {
881 case CMD_ERR_AMBIGUOUS:
882 vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
883 vty_prompt (vty);
884 vty_redraw_line (vty);
885 break;
886 case CMD_ERR_NO_MATCH:
887 /* vty_out (vty, "%% There is no matched command.%s", VTY_NEWLINE); */
888 vty_prompt (vty);
889 vty_redraw_line (vty);
890 break;
891 case CMD_COMPLETE_FULL_MATCH:
892 vty_prompt (vty);
893 vty_redraw_line (vty);
894 vty_backward_pure_word (vty);
895 vty_insert_word_overwrite (vty, matched[0]);
896 vty_self_insert (vty, ' ');
897 XFREE (MTYPE_TMP, matched[0]);
898 break;
899 case CMD_COMPLETE_MATCH:
900 vty_prompt (vty);
901 vty_redraw_line (vty);
902 vty_backward_pure_word (vty);
903 vty_insert_word_overwrite (vty, matched[0]);
904 XFREE (MTYPE_TMP, matched[0]);
905 vector_only_index_free (matched);
906 return;
907 break;
908 case CMD_COMPLETE_LIST_MATCH:
909 for (i = 0; matched[i] != NULL; i++)
910 {
911 if (i != 0 && ((i % 6) == 0))
912 vty_out (vty, "%s", VTY_NEWLINE);
913 vty_out (vty, "%-10s ", matched[i]);
914 XFREE (MTYPE_TMP, matched[i]);
915 }
916 vty_out (vty, "%s", VTY_NEWLINE);
917
918 vty_prompt (vty);
919 vty_redraw_line (vty);
920 break;
921 case CMD_ERR_NOTHING_TODO:
922 vty_prompt (vty);
923 vty_redraw_line (vty);
924 break;
925 default:
926 break;
927 }
928 if (matched)
929 vector_only_index_free (matched);
930}
931
ajs9fc7ebf2005-02-23 15:12:34 +0000932static void
paul718e3742002-12-13 20:15:29 +0000933vty_describe_fold (struct vty *vty, int cmd_width,
Christian Frankecd40b322013-09-30 12:27:51 +0000934 unsigned int desc_width, struct cmd_token *token)
paul718e3742002-12-13 20:15:29 +0000935{
hasso8c328f12004-10-05 21:01:23 +0000936 char *buf;
937 const char *cmd, *p;
paul718e3742002-12-13 20:15:29 +0000938 int pos;
939
Christian Frankecd40b322013-09-30 12:27:51 +0000940 cmd = token->cmd[0] == '.' ? token->cmd + 1 : token->cmd;
paul718e3742002-12-13 20:15:29 +0000941
942 if (desc_width <= 0)
943 {
Christian Frankecd40b322013-09-30 12:27:51 +0000944 vty_out (vty, " %-*s %s%s", cmd_width, cmd, token->desc, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +0000945 return;
946 }
947
Christian Frankecd40b322013-09-30 12:27:51 +0000948 buf = XCALLOC (MTYPE_TMP, strlen (token->desc) + 1);
paul718e3742002-12-13 20:15:29 +0000949
Christian Frankecd40b322013-09-30 12:27:51 +0000950 for (p = token->desc; strlen (p) > desc_width; p += pos + 1)
paul718e3742002-12-13 20:15:29 +0000951 {
952 for (pos = desc_width; pos > 0; pos--)
953 if (*(p + pos) == ' ')
954 break;
955
956 if (pos == 0)
957 break;
958
959 strncpy (buf, p, pos);
960 buf[pos] = '\0';
961 vty_out (vty, " %-*s %s%s", cmd_width, cmd, buf, VTY_NEWLINE);
962
963 cmd = "";
964 }
965
966 vty_out (vty, " %-*s %s%s", cmd_width, cmd, p, VTY_NEWLINE);
967
968 XFREE (MTYPE_TMP, buf);
969}
970
971/* Describe matched command function. */
972static void
973vty_describe_command (struct vty *vty)
974{
975 int ret;
976 vector vline;
977 vector describe;
hasso8c328f12004-10-05 21:01:23 +0000978 unsigned int i, width, desc_width;
Christian Frankecd40b322013-09-30 12:27:51 +0000979 struct cmd_token *token, *token_cr = NULL;
paul718e3742002-12-13 20:15:29 +0000980
981 vline = cmd_make_strvec (vty->buf);
982
983 /* In case of '> ?'. */
984 if (vline == NULL)
985 {
986 vline = vector_init (1);
987 vector_set (vline, '\0');
988 }
989 else
990 if (isspace ((int) vty->buf[vty->length - 1]))
991 vector_set (vline, '\0');
992
993 describe = cmd_describe_command (vline, vty, &ret);
994
995 vty_out (vty, "%s", VTY_NEWLINE);
996
997 /* Ambiguous error. */
998 switch (ret)
999 {
1000 case CMD_ERR_AMBIGUOUS:
paul718e3742002-12-13 20:15:29 +00001001 vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
Paul Jakma2fe8aba2006-05-12 23:22:01 +00001002 goto out;
paul718e3742002-12-13 20:15:29 +00001003 break;
1004 case CMD_ERR_NO_MATCH:
paul718e3742002-12-13 20:15:29 +00001005 vty_out (vty, "%% There is no matched command.%s", VTY_NEWLINE);
Paul Jakma2fe8aba2006-05-12 23:22:01 +00001006 goto out;
paul718e3742002-12-13 20:15:29 +00001007 break;
1008 }
1009
1010 /* Get width of command string. */
1011 width = 0;
paul55468c82005-03-14 20:19:01 +00001012 for (i = 0; i < vector_active (describe); i++)
Christian Frankecd40b322013-09-30 12:27:51 +00001013 if ((token = vector_slot (describe, i)) != NULL)
paul718e3742002-12-13 20:15:29 +00001014 {
hasso8c328f12004-10-05 21:01:23 +00001015 unsigned int len;
paul718e3742002-12-13 20:15:29 +00001016
Christian Frankecd40b322013-09-30 12:27:51 +00001017 if (token->cmd[0] == '\0')
paul718e3742002-12-13 20:15:29 +00001018 continue;
1019
Christian Frankecd40b322013-09-30 12:27:51 +00001020 len = strlen (token->cmd);
1021 if (token->cmd[0] == '.')
paul718e3742002-12-13 20:15:29 +00001022 len--;
1023
1024 if (width < len)
1025 width = len;
1026 }
1027
1028 /* Get width of description string. */
1029 desc_width = vty->width - (width + 6);
1030
1031 /* Print out description. */
paul55468c82005-03-14 20:19:01 +00001032 for (i = 0; i < vector_active (describe); i++)
Christian Frankecd40b322013-09-30 12:27:51 +00001033 if ((token = vector_slot (describe, i)) != NULL)
paul718e3742002-12-13 20:15:29 +00001034 {
Christian Frankecd40b322013-09-30 12:27:51 +00001035 if (token->cmd[0] == '\0')
paul718e3742002-12-13 20:15:29 +00001036 continue;
1037
Christian Frankecd40b322013-09-30 12:27:51 +00001038 if (strcmp (token->cmd, command_cr) == 0)
paul718e3742002-12-13 20:15:29 +00001039 {
Christian Frankecd40b322013-09-30 12:27:51 +00001040 token_cr = token;
paul718e3742002-12-13 20:15:29 +00001041 continue;
1042 }
1043
Christian Frankecd40b322013-09-30 12:27:51 +00001044 if (!token->desc)
paul718e3742002-12-13 20:15:29 +00001045 vty_out (vty, " %-s%s",
Christian Frankecd40b322013-09-30 12:27:51 +00001046 token->cmd[0] == '.' ? token->cmd + 1 : token->cmd,
paul718e3742002-12-13 20:15:29 +00001047 VTY_NEWLINE);
Christian Frankecd40b322013-09-30 12:27:51 +00001048 else if (desc_width >= strlen (token->desc))
paul718e3742002-12-13 20:15:29 +00001049 vty_out (vty, " %-*s %s%s", width,
Christian Frankecd40b322013-09-30 12:27:51 +00001050 token->cmd[0] == '.' ? token->cmd + 1 : token->cmd,
1051 token->desc, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00001052 else
Christian Frankecd40b322013-09-30 12:27:51 +00001053 vty_describe_fold (vty, width, desc_width, token);
paul718e3742002-12-13 20:15:29 +00001054
1055#if 0
1056 vty_out (vty, " %-*s %s%s", width
1057 desc->cmd[0] == '.' ? desc->cmd + 1 : desc->cmd,
1058 desc->str ? desc->str : "", VTY_NEWLINE);
1059#endif /* 0 */
1060 }
1061
Christian Frankecd40b322013-09-30 12:27:51 +00001062 if ((token = token_cr))
paul718e3742002-12-13 20:15:29 +00001063 {
Christian Frankecd40b322013-09-30 12:27:51 +00001064 if (!token->desc)
paul718e3742002-12-13 20:15:29 +00001065 vty_out (vty, " %-s%s",
Christian Frankecd40b322013-09-30 12:27:51 +00001066 token->cmd[0] == '.' ? token->cmd + 1 : token->cmd,
paul718e3742002-12-13 20:15:29 +00001067 VTY_NEWLINE);
Christian Frankecd40b322013-09-30 12:27:51 +00001068 else if (desc_width >= strlen (token->desc))
paul718e3742002-12-13 20:15:29 +00001069 vty_out (vty, " %-*s %s%s", width,
Christian Frankecd40b322013-09-30 12:27:51 +00001070 token->cmd[0] == '.' ? token->cmd + 1 : token->cmd,
1071 token->desc, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00001072 else
Christian Frankecd40b322013-09-30 12:27:51 +00001073 vty_describe_fold (vty, width, desc_width, token);
paul718e3742002-12-13 20:15:29 +00001074 }
1075
Paul Jakma2fe8aba2006-05-12 23:22:01 +00001076out:
paul718e3742002-12-13 20:15:29 +00001077 cmd_free_strvec (vline);
Paul Jakmad16e0432006-05-15 10:56:46 +00001078 if (describe)
1079 vector_free (describe);
paul718e3742002-12-13 20:15:29 +00001080
1081 vty_prompt (vty);
1082 vty_redraw_line (vty);
1083}
1084
ajs9fc7ebf2005-02-23 15:12:34 +00001085static void
paul718e3742002-12-13 20:15:29 +00001086vty_clear_buf (struct vty *vty)
1087{
1088 memset (vty->buf, 0, vty->max);
1089}
1090
1091/* ^C stop current input and do not add command line to the history. */
1092static void
1093vty_stop_input (struct vty *vty)
1094{
1095 vty->cp = vty->length = 0;
1096 vty_clear_buf (vty);
1097 vty_out (vty, "%s", VTY_NEWLINE);
1098
1099 switch (vty->node)
1100 {
1101 case VIEW_NODE:
1102 case ENABLE_NODE:
Paul Jakma62687ff2008-08-23 14:27:06 +01001103 case RESTRICTED_NODE:
paul718e3742002-12-13 20:15:29 +00001104 /* Nothing to do. */
1105 break;
1106 case CONFIG_NODE:
1107 case INTERFACE_NODE:
1108 case ZEBRA_NODE:
1109 case RIP_NODE:
1110 case RIPNG_NODE:
Paul Jakma57345092011-12-25 17:52:09 +01001111 case BABEL_NODE:
paul718e3742002-12-13 20:15:29 +00001112 case BGP_NODE:
1113 case RMAP_NODE:
1114 case OSPF_NODE:
1115 case OSPF6_NODE:
jardin9e867fe2003-12-23 08:56:18 +00001116 case ISIS_NODE:
paul718e3742002-12-13 20:15:29 +00001117 case KEYCHAIN_NODE:
1118 case KEYCHAIN_KEY_NODE:
1119 case MASC_NODE:
1120 case VTY_NODE:
1121 vty_config_unlock (vty);
1122 vty->node = ENABLE_NODE;
1123 break;
1124 default:
1125 /* Unknown node, we have to ignore it. */
1126 break;
1127 }
1128 vty_prompt (vty);
1129
1130 /* Set history pointer to the latest one. */
1131 vty->hp = vty->hindex;
1132}
1133
1134/* Add current command line to the history buffer. */
1135static void
1136vty_hist_add (struct vty *vty)
1137{
1138 int index;
1139
1140 if (vty->length == 0)
1141 return;
1142
1143 index = vty->hindex ? vty->hindex - 1 : VTY_MAXHIST - 1;
1144
1145 /* Ignore the same string as previous one. */
1146 if (vty->hist[index])
1147 if (strcmp (vty->buf, vty->hist[index]) == 0)
1148 {
1149 vty->hp = vty->hindex;
1150 return;
1151 }
1152
1153 /* Insert history entry. */
1154 if (vty->hist[vty->hindex])
1155 XFREE (MTYPE_VTY_HIST, vty->hist[vty->hindex]);
1156 vty->hist[vty->hindex] = XSTRDUP (MTYPE_VTY_HIST, vty->buf);
1157
1158 /* History index rotation. */
1159 vty->hindex++;
1160 if (vty->hindex == VTY_MAXHIST)
1161 vty->hindex = 0;
1162
1163 vty->hp = vty->hindex;
1164}
1165
1166/* #define TELNET_OPTION_DEBUG */
1167
1168/* Get telnet window size. */
1169static int
1170vty_telnet_option (struct vty *vty, unsigned char *buf, int nbytes)
1171{
1172#ifdef TELNET_OPTION_DEBUG
1173 int i;
1174
1175 for (i = 0; i < nbytes; i++)
1176 {
1177 switch (buf[i])
1178 {
1179 case IAC:
1180 vty_out (vty, "IAC ");
1181 break;
1182 case WILL:
1183 vty_out (vty, "WILL ");
1184 break;
1185 case WONT:
1186 vty_out (vty, "WONT ");
1187 break;
1188 case DO:
1189 vty_out (vty, "DO ");
1190 break;
1191 case DONT:
1192 vty_out (vty, "DONT ");
1193 break;
1194 case SB:
1195 vty_out (vty, "SB ");
1196 break;
1197 case SE:
1198 vty_out (vty, "SE ");
1199 break;
1200 case TELOPT_ECHO:
1201 vty_out (vty, "TELOPT_ECHO %s", VTY_NEWLINE);
1202 break;
1203 case TELOPT_SGA:
1204 vty_out (vty, "TELOPT_SGA %s", VTY_NEWLINE);
1205 break;
1206 case TELOPT_NAWS:
1207 vty_out (vty, "TELOPT_NAWS %s", VTY_NEWLINE);
1208 break;
1209 default:
1210 vty_out (vty, "%x ", buf[i]);
1211 break;
1212 }
1213 }
1214 vty_out (vty, "%s", VTY_NEWLINE);
1215
1216#endif /* TELNET_OPTION_DEBUG */
1217
1218 switch (buf[0])
1219 {
1220 case SB:
ajs9fc7ebf2005-02-23 15:12:34 +00001221 vty->sb_len = 0;
paul718e3742002-12-13 20:15:29 +00001222 vty->iac_sb_in_progress = 1;
1223 return 0;
1224 break;
1225 case SE:
1226 {
paul718e3742002-12-13 20:15:29 +00001227 if (!vty->iac_sb_in_progress)
1228 return 0;
1229
ajs9fc7ebf2005-02-23 15:12:34 +00001230 if ((vty->sb_len == 0) || (vty->sb_buf[0] == '\0'))
paul718e3742002-12-13 20:15:29 +00001231 {
1232 vty->iac_sb_in_progress = 0;
1233 return 0;
1234 }
ajs9fc7ebf2005-02-23 15:12:34 +00001235 switch (vty->sb_buf[0])
paul718e3742002-12-13 20:15:29 +00001236 {
1237 case TELOPT_NAWS:
ajs9fc7ebf2005-02-23 15:12:34 +00001238 if (vty->sb_len != TELNET_NAWS_SB_LEN)
1239 zlog_warn("RFC 1073 violation detected: telnet NAWS option "
1240 "should send %d characters, but we received %lu",
1241 TELNET_NAWS_SB_LEN, (u_long)vty->sb_len);
1242 else if (sizeof(vty->sb_buf) < TELNET_NAWS_SB_LEN)
1243 zlog_err("Bug detected: sizeof(vty->sb_buf) %lu < %d, "
1244 "too small to handle the telnet NAWS option",
1245 (u_long)sizeof(vty->sb_buf), TELNET_NAWS_SB_LEN);
1246 else
1247 {
1248 vty->width = ((vty->sb_buf[1] << 8)|vty->sb_buf[2]);
1249 vty->height = ((vty->sb_buf[3] << 8)|vty->sb_buf[4]);
1250#ifdef TELNET_OPTION_DEBUG
1251 vty_out(vty, "TELNET NAWS window size negotiation completed: "
1252 "width %d, height %d%s",
1253 vty->width, vty->height, VTY_NEWLINE);
1254#endif
1255 }
paul718e3742002-12-13 20:15:29 +00001256 break;
1257 }
1258 vty->iac_sb_in_progress = 0;
1259 return 0;
1260 break;
1261 }
1262 default:
1263 break;
1264 }
1265 return 1;
1266}
1267
1268/* Execute current command line. */
1269static int
1270vty_execute (struct vty *vty)
1271{
1272 int ret;
1273
1274 ret = CMD_SUCCESS;
1275
1276 switch (vty->node)
1277 {
1278 case AUTH_NODE:
1279 case AUTH_ENABLE_NODE:
1280 vty_auth (vty, vty->buf);
1281 break;
1282 default:
1283 ret = vty_command (vty, vty->buf);
1284 if (vty->type == VTY_TERM)
1285 vty_hist_add (vty);
1286 break;
1287 }
1288
1289 /* Clear command line buffer. */
1290 vty->cp = vty->length = 0;
1291 vty_clear_buf (vty);
1292
ajs5a646652004-11-05 01:25:55 +00001293 if (vty->status != VTY_CLOSE )
paul718e3742002-12-13 20:15:29 +00001294 vty_prompt (vty);
1295
1296 return ret;
1297}
1298
1299#define CONTROL(X) ((X) - '@')
1300#define VTY_NORMAL 0
1301#define VTY_PRE_ESCAPE 1
1302#define VTY_ESCAPE 2
1303
1304/* Escape character command map. */
1305static void
1306vty_escape_map (unsigned char c, struct vty *vty)
1307{
1308 switch (c)
1309 {
1310 case ('A'):
1311 vty_previous_line (vty);
1312 break;
1313 case ('B'):
1314 vty_next_line (vty);
1315 break;
1316 case ('C'):
1317 vty_forward_char (vty);
1318 break;
1319 case ('D'):
1320 vty_backward_char (vty);
1321 break;
1322 default:
1323 break;
1324 }
1325
1326 /* Go back to normal mode. */
1327 vty->escape = VTY_NORMAL;
1328}
1329
1330/* Quit print out to the buffer. */
1331static void
1332vty_buffer_reset (struct vty *vty)
1333{
1334 buffer_reset (vty->obuf);
1335 vty_prompt (vty);
1336 vty_redraw_line (vty);
1337}
1338
1339/* Read data via vty socket. */
1340static int
1341vty_read (struct thread *thread)
1342{
1343 int i;
paul718e3742002-12-13 20:15:29 +00001344 int nbytes;
1345 unsigned char buf[VTY_READ_BUFSIZ];
1346
1347 int vty_sock = THREAD_FD (thread);
1348 struct vty *vty = THREAD_ARG (thread);
1349 vty->t_read = NULL;
1350
1351 /* Read raw data from socket */
ajs9fc7ebf2005-02-23 15:12:34 +00001352 if ((nbytes = read (vty->fd, buf, VTY_READ_BUFSIZ)) <= 0)
1353 {
1354 if (nbytes < 0)
1355 {
1356 if (ERRNO_IO_RETRY(errno))
1357 {
1358 vty_event (VTY_READ, vty_sock, vty);
1359 return 0;
1360 }
Andrew J. Schorr74542d72006-07-10 18:09:42 +00001361 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
ajs9fc7ebf2005-02-23 15:12:34 +00001362 zlog_warn("%s: read error on vty client fd %d, closing: %s",
1363 __func__, vty->fd, safe_strerror(errno));
1364 }
1365 buffer_reset(vty->obuf);
1366 vty->status = VTY_CLOSE;
1367 }
paul718e3742002-12-13 20:15:29 +00001368
1369 for (i = 0; i < nbytes; i++)
1370 {
1371 if (buf[i] == IAC)
1372 {
1373 if (!vty->iac)
1374 {
1375 vty->iac = 1;
1376 continue;
1377 }
1378 else
1379 {
1380 vty->iac = 0;
1381 }
1382 }
1383
1384 if (vty->iac_sb_in_progress && !vty->iac)
1385 {
ajs9fc7ebf2005-02-23 15:12:34 +00001386 if (vty->sb_len < sizeof(vty->sb_buf))
1387 vty->sb_buf[vty->sb_len] = buf[i];
1388 vty->sb_len++;
paul718e3742002-12-13 20:15:29 +00001389 continue;
1390 }
1391
1392 if (vty->iac)
1393 {
1394 /* In case of telnet command */
paul5b8c1b02003-10-15 23:08:55 +00001395 int ret = 0;
paule9372532003-10-26 21:36:07 +00001396 ret = vty_telnet_option (vty, buf + i, nbytes - i);
paul718e3742002-12-13 20:15:29 +00001397 vty->iac = 0;
1398 i += ret;
1399 continue;
1400 }
paul5b8c1b02003-10-15 23:08:55 +00001401
paul718e3742002-12-13 20:15:29 +00001402
1403 if (vty->status == VTY_MORE)
1404 {
1405 switch (buf[i])
1406 {
1407 case CONTROL('C'):
1408 case 'q':
1409 case 'Q':
paul718e3742002-12-13 20:15:29 +00001410 vty_buffer_reset (vty);
1411 break;
1412#if 0 /* More line does not work for "show ip bgp". */
1413 case '\n':
1414 case '\r':
1415 vty->status = VTY_MORELINE;
1416 break;
1417#endif
1418 default:
paul718e3742002-12-13 20:15:29 +00001419 break;
1420 }
1421 continue;
1422 }
1423
1424 /* Escape character. */
1425 if (vty->escape == VTY_ESCAPE)
1426 {
1427 vty_escape_map (buf[i], vty);
1428 continue;
1429 }
1430
1431 /* Pre-escape status. */
1432 if (vty->escape == VTY_PRE_ESCAPE)
1433 {
1434 switch (buf[i])
1435 {
1436 case '[':
1437 vty->escape = VTY_ESCAPE;
1438 break;
1439 case 'b':
1440 vty_backward_word (vty);
1441 vty->escape = VTY_NORMAL;
1442 break;
1443 case 'f':
1444 vty_forward_word (vty);
1445 vty->escape = VTY_NORMAL;
1446 break;
1447 case 'd':
1448 vty_forward_kill_word (vty);
1449 vty->escape = VTY_NORMAL;
1450 break;
1451 case CONTROL('H'):
1452 case 0x7f:
1453 vty_backward_kill_word (vty);
1454 vty->escape = VTY_NORMAL;
1455 break;
1456 default:
1457 vty->escape = VTY_NORMAL;
1458 break;
1459 }
1460 continue;
1461 }
1462
1463 switch (buf[i])
1464 {
1465 case CONTROL('A'):
1466 vty_beginning_of_line (vty);
1467 break;
1468 case CONTROL('B'):
1469 vty_backward_char (vty);
1470 break;
1471 case CONTROL('C'):
1472 vty_stop_input (vty);
1473 break;
1474 case CONTROL('D'):
1475 vty_delete_char (vty);
1476 break;
1477 case CONTROL('E'):
1478 vty_end_of_line (vty);
1479 break;
1480 case CONTROL('F'):
1481 vty_forward_char (vty);
1482 break;
1483 case CONTROL('H'):
1484 case 0x7f:
1485 vty_delete_backward_char (vty);
1486 break;
1487 case CONTROL('K'):
1488 vty_kill_line (vty);
1489 break;
1490 case CONTROL('N'):
1491 vty_next_line (vty);
1492 break;
1493 case CONTROL('P'):
1494 vty_previous_line (vty);
1495 break;
1496 case CONTROL('T'):
1497 vty_transpose_chars (vty);
1498 break;
1499 case CONTROL('U'):
1500 vty_kill_line_from_beginning (vty);
1501 break;
1502 case CONTROL('W'):
1503 vty_backward_kill_word (vty);
1504 break;
1505 case CONTROL('Z'):
1506 vty_end_config (vty);
1507 break;
1508 case '\n':
1509 case '\r':
1510 vty_out (vty, "%s", VTY_NEWLINE);
1511 vty_execute (vty);
1512 break;
1513 case '\t':
1514 vty_complete_command (vty);
1515 break;
1516 case '?':
1517 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
1518 vty_self_insert (vty, buf[i]);
1519 else
1520 vty_describe_command (vty);
1521 break;
1522 case '\033':
1523 if (i + 1 < nbytes && buf[i + 1] == '[')
1524 {
1525 vty->escape = VTY_ESCAPE;
1526 i++;
1527 }
1528 else
1529 vty->escape = VTY_PRE_ESCAPE;
1530 break;
1531 default:
1532 if (buf[i] > 31 && buf[i] < 127)
1533 vty_self_insert (vty, buf[i]);
1534 break;
1535 }
1536 }
1537
1538 /* Check status. */
1539 if (vty->status == VTY_CLOSE)
1540 vty_close (vty);
1541 else
1542 {
1543 vty_event (VTY_WRITE, vty_sock, vty);
1544 vty_event (VTY_READ, vty_sock, vty);
1545 }
1546 return 0;
1547}
1548
1549/* Flush buffer to the vty. */
1550static int
1551vty_flush (struct thread *thread)
1552{
1553 int erase;
ajs9fc7ebf2005-02-23 15:12:34 +00001554 buffer_status_t flushrc;
paul718e3742002-12-13 20:15:29 +00001555 int vty_sock = THREAD_FD (thread);
1556 struct vty *vty = THREAD_ARG (thread);
ajs9fc7ebf2005-02-23 15:12:34 +00001557
paul718e3742002-12-13 20:15:29 +00001558 vty->t_write = NULL;
1559
1560 /* Tempolary disable read thread. */
ajs9fc7ebf2005-02-23 15:12:34 +00001561 if ((vty->lines == 0) && vty->t_read)
1562 {
1563 thread_cancel (vty->t_read);
1564 vty->t_read = NULL;
1565 }
paul718e3742002-12-13 20:15:29 +00001566
1567 /* Function execution continue. */
ajs9fc7ebf2005-02-23 15:12:34 +00001568 erase = ((vty->status == VTY_MORE || vty->status == VTY_MORELINE));
paul718e3742002-12-13 20:15:29 +00001569
ajs9fc7ebf2005-02-23 15:12:34 +00001570 /* N.B. if width is 0, that means we don't know the window size. */
1571 if ((vty->lines == 0) || (vty->width == 0))
1572 flushrc = buffer_flush_available(vty->obuf, vty->fd);
1573 else if (vty->status == VTY_MORELINE)
1574 flushrc = buffer_flush_window(vty->obuf, vty->fd, vty->width,
1575 1, erase, 0);
1576 else
1577 flushrc = buffer_flush_window(vty->obuf, vty->fd, vty->width,
1578 vty->lines >= 0 ? vty->lines :
1579 vty->height,
1580 erase, 0);
1581 switch (flushrc)
1582 {
1583 case BUFFER_ERROR:
Andrew J. Schorr74542d72006-07-10 18:09:42 +00001584 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
ajs9fc7ebf2005-02-23 15:12:34 +00001585 zlog_warn("buffer_flush failed on vty client fd %d, closing",
1586 vty->fd);
1587 buffer_reset(vty->obuf);
1588 vty_close(vty);
1589 return 0;
1590 case BUFFER_EMPTY:
1591 if (vty->status == VTY_CLOSE)
1592 vty_close (vty);
paul718e3742002-12-13 20:15:29 +00001593 else
1594 {
ajs9fc7ebf2005-02-23 15:12:34 +00001595 vty->status = VTY_NORMAL;
paul718e3742002-12-13 20:15:29 +00001596 if (vty->lines == 0)
ajs9fc7ebf2005-02-23 15:12:34 +00001597 vty_event (VTY_READ, vty_sock, vty);
paul718e3742002-12-13 20:15:29 +00001598 }
ajs9fc7ebf2005-02-23 15:12:34 +00001599 break;
1600 case BUFFER_PENDING:
1601 /* There is more data waiting to be written. */
1602 vty->status = VTY_MORE;
1603 if (vty->lines == 0)
1604 vty_event (VTY_WRITE, vty_sock, vty);
1605 break;
1606 }
paul718e3742002-12-13 20:15:29 +00001607
1608 return 0;
1609}
1610
1611/* Create new vty structure. */
ajs9fc7ebf2005-02-23 15:12:34 +00001612static struct vty *
paul718e3742002-12-13 20:15:29 +00001613vty_create (int vty_sock, union sockunion *su)
1614{
Jorge Boncompte [DTI2]d2276172012-04-10 16:57:23 +02001615 char buf[SU_ADDRSTRLEN];
paul718e3742002-12-13 20:15:29 +00001616 struct vty *vty;
1617
Jorge Boncompte [DTI2]d2276172012-04-10 16:57:23 +02001618 sockunion2str(su, buf, SU_ADDRSTRLEN);
1619
paul718e3742002-12-13 20:15:29 +00001620 /* Allocate new vty structure and set up default values. */
1621 vty = vty_new ();
1622 vty->fd = vty_sock;
1623 vty->type = VTY_TERM;
Jorge Boncompte [DTI2]d2276172012-04-10 16:57:23 +02001624 strcpy (vty->address, buf);
paul718e3742002-12-13 20:15:29 +00001625 if (no_password_check)
1626 {
Paul Jakma62687ff2008-08-23 14:27:06 +01001627 if (restricted_mode)
1628 vty->node = RESTRICTED_NODE;
1629 else if (host.advanced)
paul718e3742002-12-13 20:15:29 +00001630 vty->node = ENABLE_NODE;
1631 else
1632 vty->node = VIEW_NODE;
1633 }
1634 else
1635 vty->node = AUTH_NODE;
1636 vty->fail = 0;
1637 vty->cp = 0;
1638 vty_clear_buf (vty);
1639 vty->length = 0;
1640 memset (vty->hist, 0, sizeof (vty->hist));
1641 vty->hp = 0;
1642 vty->hindex = 0;
1643 vector_set_index (vtyvec, vty_sock, vty);
1644 vty->status = VTY_NORMAL;
1645 vty->v_timeout = vty_timeout_val;
1646 if (host.lines >= 0)
1647 vty->lines = host.lines;
1648 else
1649 vty->lines = -1;
1650 vty->iac = 0;
1651 vty->iac_sb_in_progress = 0;
ajs9fc7ebf2005-02-23 15:12:34 +00001652 vty->sb_len = 0;
paul718e3742002-12-13 20:15:29 +00001653
1654 if (! no_password_check)
1655 {
1656 /* Vty is not available if password isn't set. */
1657 if (host.password == NULL && host.password_encrypt == NULL)
1658 {
1659 vty_out (vty, "Vty password is not set.%s", VTY_NEWLINE);
1660 vty->status = VTY_CLOSE;
1661 vty_close (vty);
1662 return NULL;
1663 }
1664 }
1665
1666 /* Say hello to the world. */
1667 vty_hello (vty);
1668 if (! no_password_check)
1669 vty_out (vty, "%sUser Access Verification%s%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
1670
1671 /* Setting up terminal. */
1672 vty_will_echo (vty);
1673 vty_will_suppress_go_ahead (vty);
1674
1675 vty_dont_linemode (vty);
1676 vty_do_window_size (vty);
1677 /* vty_dont_lflow_ahead (vty); */
1678
1679 vty_prompt (vty);
1680
1681 /* Add read/write thread. */
1682 vty_event (VTY_WRITE, vty_sock, vty);
1683 vty_event (VTY_READ, vty_sock, vty);
1684
1685 return vty;
1686}
1687
1688/* Accept connection from the network. */
1689static int
1690vty_accept (struct thread *thread)
1691{
1692 int vty_sock;
paul718e3742002-12-13 20:15:29 +00001693 union sockunion su;
1694 int ret;
1695 unsigned int on;
1696 int accept_sock;
1697 struct prefix *p = NULL;
1698 struct access_list *acl = NULL;
Jorge Boncompte [DTI2]d2276172012-04-10 16:57:23 +02001699 char buf[SU_ADDRSTRLEN];
paul718e3742002-12-13 20:15:29 +00001700
1701 accept_sock = THREAD_FD (thread);
1702
1703 /* We continue hearing vty socket. */
1704 vty_event (VTY_SERV, accept_sock, NULL);
1705
1706 memset (&su, 0, sizeof (union sockunion));
1707
1708 /* We can handle IPv4 or IPv6 socket. */
1709 vty_sock = sockunion_accept (accept_sock, &su);
1710 if (vty_sock < 0)
1711 {
ajs6099b3b2004-11-20 02:06:59 +00001712 zlog_warn ("can't accept vty socket : %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001713 return -1;
1714 }
ajs9fc7ebf2005-02-23 15:12:34 +00001715 set_nonblocking(vty_sock);
paul718e3742002-12-13 20:15:29 +00001716
1717 p = sockunion2hostprefix (&su);
1718
1719 /* VTY's accesslist apply. */
1720 if (p->family == AF_INET && vty_accesslist_name)
1721 {
1722 if ((acl = access_list_lookup (AFI_IP, vty_accesslist_name)) &&
1723 (access_list_apply (acl, p) == FILTER_DENY))
1724 {
paul718e3742002-12-13 20:15:29 +00001725 zlog (NULL, LOG_INFO, "Vty connection refused from %s",
Jorge Boncompte [DTI2]d2276172012-04-10 16:57:23 +02001726 sockunion2str (&su, buf, SU_ADDRSTRLEN));
paul718e3742002-12-13 20:15:29 +00001727 close (vty_sock);
1728
1729 /* continue accepting connections */
1730 vty_event (VTY_SERV, accept_sock, NULL);
1731
1732 prefix_free (p);
1733
1734 return 0;
1735 }
1736 }
1737
1738#ifdef HAVE_IPV6
1739 /* VTY's ipv6 accesslist apply. */
1740 if (p->family == AF_INET6 && vty_ipv6_accesslist_name)
1741 {
1742 if ((acl = access_list_lookup (AFI_IP6, vty_ipv6_accesslist_name)) &&
1743 (access_list_apply (acl, p) == FILTER_DENY))
1744 {
paul718e3742002-12-13 20:15:29 +00001745 zlog (NULL, LOG_INFO, "Vty connection refused from %s",
Jorge Boncompte [DTI2]d2276172012-04-10 16:57:23 +02001746 sockunion2str (&su, buf, SU_ADDRSTRLEN));
paul718e3742002-12-13 20:15:29 +00001747 close (vty_sock);
1748
1749 /* continue accepting connections */
1750 vty_event (VTY_SERV, accept_sock, NULL);
1751
1752 prefix_free (p);
1753
1754 return 0;
1755 }
1756 }
1757#endif /* HAVE_IPV6 */
1758
1759 prefix_free (p);
1760
1761 on = 1;
1762 ret = setsockopt (vty_sock, IPPROTO_TCP, TCP_NODELAY,
1763 (char *) &on, sizeof (on));
1764 if (ret < 0)
1765 zlog (NULL, LOG_INFO, "can't set sockopt to vty_sock : %s",
ajs6099b3b2004-11-20 02:06:59 +00001766 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001767
heasley78e6cd92009-12-07 16:41:14 +03001768 zlog (NULL, LOG_INFO, "Vty connection from %s",
Jorge Boncompte [DTI2]d2276172012-04-10 16:57:23 +02001769 sockunion2str (&su, buf, SU_ADDRSTRLEN));
heasley78e6cd92009-12-07 16:41:14 +03001770
Stephen Hemminger9206f9e2011-12-18 19:43:40 +04001771 vty_create (vty_sock, &su);
paul718e3742002-12-13 20:15:29 +00001772
1773 return 0;
1774}
1775
1776#if defined(HAVE_IPV6) && !defined(NRL)
ajs9fc7ebf2005-02-23 15:12:34 +00001777static void
paul718e3742002-12-13 20:15:29 +00001778vty_serv_sock_addrinfo (const char *hostname, unsigned short port)
1779{
1780 int ret;
1781 struct addrinfo req;
1782 struct addrinfo *ainfo;
1783 struct addrinfo *ainfo_save;
1784 int sock;
1785 char port_str[BUFSIZ];
1786
1787 memset (&req, 0, sizeof (struct addrinfo));
1788 req.ai_flags = AI_PASSIVE;
1789 req.ai_family = AF_UNSPEC;
1790 req.ai_socktype = SOCK_STREAM;
1791 sprintf (port_str, "%d", port);
1792 port_str[sizeof (port_str) - 1] = '\0';
1793
1794 ret = getaddrinfo (hostname, port_str, &req, &ainfo);
1795
1796 if (ret != 0)
1797 {
1798 fprintf (stderr, "getaddrinfo failed: %s\n", gai_strerror (ret));
1799 exit (1);
1800 }
1801
1802 ainfo_save = ainfo;
1803
1804 do
1805 {
1806 if (ainfo->ai_family != AF_INET
1807#ifdef HAVE_IPV6
1808 && ainfo->ai_family != AF_INET6
1809#endif /* HAVE_IPV6 */
1810 )
1811 continue;
1812
1813 sock = socket (ainfo->ai_family, ainfo->ai_socktype, ainfo->ai_protocol);
1814 if (sock < 0)
1815 continue;
1816
David Lamparterca051262009-10-04 16:21:49 +02001817 sockopt_v6only (ainfo->ai_family, sock);
paul718e3742002-12-13 20:15:29 +00001818 sockopt_reuseaddr (sock);
1819 sockopt_reuseport (sock);
1820
1821 ret = bind (sock, ainfo->ai_addr, ainfo->ai_addrlen);
1822 if (ret < 0)
1823 {
1824 close (sock); /* Avoid sd leak. */
1825 continue;
1826 }
1827
1828 ret = listen (sock, 3);
1829 if (ret < 0)
1830 {
1831 close (sock); /* Avoid sd leak. */
1832 continue;
1833 }
1834
1835 vty_event (VTY_SERV, sock, NULL);
1836 }
1837 while ((ainfo = ainfo->ai_next) != NULL);
1838
1839 freeaddrinfo (ainfo_save);
1840}
Stephen Hemminger46901402009-12-10 17:19:09 +00001841#else /* HAVE_IPV6 && ! NRL */
paul718e3742002-12-13 20:15:29 +00001842
1843/* Make vty server socket. */
ajs9fc7ebf2005-02-23 15:12:34 +00001844static void
paul29db05b2003-05-08 20:10:22 +00001845vty_serv_sock_family (const char* addr, unsigned short port, int family)
paul718e3742002-12-13 20:15:29 +00001846{
1847 int ret;
1848 union sockunion su;
1849 int accept_sock;
paul29db05b2003-05-08 20:10:22 +00001850 void* naddr=NULL;
paul718e3742002-12-13 20:15:29 +00001851
1852 memset (&su, 0, sizeof (union sockunion));
1853 su.sa.sa_family = family;
paul29db05b2003-05-08 20:10:22 +00001854 if(addr)
1855 switch(family)
1856 {
1857 case AF_INET:
1858 naddr=&su.sin.sin_addr;
Remi Gacognea11e0122013-09-08 13:48:34 +00001859 break;
paul29db05b2003-05-08 20:10:22 +00001860#ifdef HAVE_IPV6
1861 case AF_INET6:
1862 naddr=&su.sin6.sin6_addr;
Remi Gacognea11e0122013-09-08 13:48:34 +00001863 break;
paul29db05b2003-05-08 20:10:22 +00001864#endif
1865 }
1866
1867 if(naddr)
1868 switch(inet_pton(family,addr,naddr))
1869 {
1870 case -1:
1871 zlog_err("bad address %s",addr);
1872 naddr=NULL;
1873 break;
1874 case 0:
ajs6099b3b2004-11-20 02:06:59 +00001875 zlog_err("error translating address %s: %s",addr,safe_strerror(errno));
paul29db05b2003-05-08 20:10:22 +00001876 naddr=NULL;
1877 }
paul718e3742002-12-13 20:15:29 +00001878
1879 /* Make new socket. */
1880 accept_sock = sockunion_stream_socket (&su);
1881 if (accept_sock < 0)
1882 return;
1883
1884 /* This is server, so reuse address. */
1885 sockopt_reuseaddr (accept_sock);
1886 sockopt_reuseport (accept_sock);
1887
1888 /* Bind socket to universal address and given port. */
paul29db05b2003-05-08 20:10:22 +00001889 ret = sockunion_bind (accept_sock, &su, port, naddr);
paul718e3742002-12-13 20:15:29 +00001890 if (ret < 0)
1891 {
paul29db05b2003-05-08 20:10:22 +00001892 zlog_warn("can't bind socket");
paul718e3742002-12-13 20:15:29 +00001893 close (accept_sock); /* Avoid sd leak. */
1894 return;
1895 }
1896
1897 /* Listen socket under queue 3. */
1898 ret = listen (accept_sock, 3);
1899 if (ret < 0)
1900 {
1901 zlog (NULL, LOG_WARNING, "can't listen socket");
1902 close (accept_sock); /* Avoid sd leak. */
1903 return;
1904 }
1905
1906 /* Add vty server event. */
1907 vty_event (VTY_SERV, accept_sock, NULL);
1908}
Stephen Hemminger46901402009-12-10 17:19:09 +00001909#endif /* HAVE_IPV6 && ! NRL */
paul718e3742002-12-13 20:15:29 +00001910
1911#ifdef VTYSH
1912/* For sockaddr_un. */
1913#include <sys/un.h>
1914
1915/* VTY shell UNIX domain socket. */
ajs9fc7ebf2005-02-23 15:12:34 +00001916static void
hasso6ad96ea2004-10-07 19:33:46 +00001917vty_serv_un (const char *path)
paul718e3742002-12-13 20:15:29 +00001918{
1919 int ret;
paul75e15fe2004-10-31 02:13:09 +00001920 int sock, len;
paul718e3742002-12-13 20:15:29 +00001921 struct sockaddr_un serv;
1922 mode_t old_mask;
pauledd7c242003-06-04 13:59:38 +00001923 struct zprivs_ids_t ids;
1924
paul718e3742002-12-13 20:15:29 +00001925 /* First of all, unlink existing socket */
1926 unlink (path);
1927
1928 /* Set umask */
paul1921e6f2003-05-23 08:12:36 +00001929 old_mask = umask (0007);
paul718e3742002-12-13 20:15:29 +00001930
1931 /* Make UNIX domain socket. */
1932 sock = socket (AF_UNIX, SOCK_STREAM, 0);
1933 if (sock < 0)
1934 {
ajs6a52d0d2005-01-30 18:49:28 +00001935 zlog_err("Cannot create unix stream socket: %s", safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00001936 return;
1937 }
1938
1939 /* Make server socket. */
1940 memset (&serv, 0, sizeof (struct sockaddr_un));
1941 serv.sun_family = AF_UNIX;
1942 strncpy (serv.sun_path, path, strlen (path));
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001943#ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN
paul718e3742002-12-13 20:15:29 +00001944 len = serv.sun_len = SUN_LEN(&serv);
1945#else
1946 len = sizeof (serv.sun_family) + strlen (serv.sun_path);
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001947#endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */
paul718e3742002-12-13 20:15:29 +00001948
1949 ret = bind (sock, (struct sockaddr *) &serv, len);
1950 if (ret < 0)
1951 {
ajs6a52d0d2005-01-30 18:49:28 +00001952 zlog_err("Cannot bind path %s: %s", path, safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00001953 close (sock); /* Avoid sd leak. */
1954 return;
1955 }
1956
1957 ret = listen (sock, 5);
1958 if (ret < 0)
1959 {
ajs6a52d0d2005-01-30 18:49:28 +00001960 zlog_err("listen(fd %d) failed: %s", sock, safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00001961 close (sock); /* Avoid sd leak. */
1962 return;
1963 }
1964
1965 umask (old_mask);
1966
pauledd7c242003-06-04 13:59:38 +00001967 zprivs_get_ids(&ids);
1968
1969 if (ids.gid_vty > 0)
1970 {
1971 /* set group of socket */
1972 if ( chown (path, -1, ids.gid_vty) )
1973 {
1974 zlog_err ("vty_serv_un: could chown socket, %s",
ajs6099b3b2004-11-20 02:06:59 +00001975 safe_strerror (errno) );
pauledd7c242003-06-04 13:59:38 +00001976 }
1977 }
1978
paul718e3742002-12-13 20:15:29 +00001979 vty_event (VTYSH_SERV, sock, NULL);
1980}
1981
1982/* #define VTYSH_DEBUG 1 */
1983
1984static int
1985vtysh_accept (struct thread *thread)
1986{
1987 int accept_sock;
1988 int sock;
1989 int client_len;
1990 struct sockaddr_un client;
1991 struct vty *vty;
1992
1993 accept_sock = THREAD_FD (thread);
1994
1995 vty_event (VTYSH_SERV, accept_sock, NULL);
1996
1997 memset (&client, 0, sizeof (struct sockaddr_un));
1998 client_len = sizeof (struct sockaddr_un);
1999
hassoe473b032004-09-26 16:08:11 +00002000 sock = accept (accept_sock, (struct sockaddr *) &client,
2001 (socklen_t *) &client_len);
paul718e3742002-12-13 20:15:29 +00002002
2003 if (sock < 0)
2004 {
ajs6099b3b2004-11-20 02:06:59 +00002005 zlog_warn ("can't accept vty socket : %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00002006 return -1;
2007 }
2008
ajs9fc7ebf2005-02-23 15:12:34 +00002009 if (set_nonblocking(sock) < 0)
paul75e15fe2004-10-31 02:13:09 +00002010 {
ajs9fc7ebf2005-02-23 15:12:34 +00002011 zlog_warn ("vtysh_accept: could not set vty socket %d to non-blocking,"
2012 " %s, closing", sock, safe_strerror (errno));
paul75e15fe2004-10-31 02:13:09 +00002013 close (sock);
2014 return -1;
2015 }
pauldccfb192004-10-29 08:29:36 +00002016
paul718e3742002-12-13 20:15:29 +00002017#ifdef VTYSH_DEBUG
2018 printf ("VTY shell accept\n");
2019#endif /* VTYSH_DEBUG */
2020
2021 vty = vty_new ();
2022 vty->fd = sock;
2023 vty->type = VTY_SHELL_SERV;
2024 vty->node = VIEW_NODE;
2025
2026 vty_event (VTYSH_READ, sock, vty);
2027
2028 return 0;
2029}
2030
2031static int
ajs9fc7ebf2005-02-23 15:12:34 +00002032vtysh_flush(struct vty *vty)
2033{
2034 switch (buffer_flush_available(vty->obuf, vty->fd))
2035 {
2036 case BUFFER_PENDING:
2037 vty_event(VTYSH_WRITE, vty->fd, vty);
2038 break;
2039 case BUFFER_ERROR:
Andrew J. Schorr74542d72006-07-10 18:09:42 +00002040 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
ajs9fc7ebf2005-02-23 15:12:34 +00002041 zlog_warn("%s: write error to fd %d, closing", __func__, vty->fd);
2042 buffer_reset(vty->obuf);
2043 vty_close(vty);
2044 return -1;
2045 break;
2046 case BUFFER_EMPTY:
2047 break;
2048 }
2049 return 0;
2050}
2051
2052static int
paul718e3742002-12-13 20:15:29 +00002053vtysh_read (struct thread *thread)
2054{
2055 int ret;
2056 int sock;
2057 int nbytes;
2058 struct vty *vty;
2059 unsigned char buf[VTY_READ_BUFSIZ];
ajs9fc7ebf2005-02-23 15:12:34 +00002060 unsigned char *p;
paul718e3742002-12-13 20:15:29 +00002061 u_char header[4] = {0, 0, 0, 0};
2062
2063 sock = THREAD_FD (thread);
2064 vty = THREAD_ARG (thread);
2065 vty->t_read = NULL;
2066
ajs9fc7ebf2005-02-23 15:12:34 +00002067 if ((nbytes = read (sock, buf, VTY_READ_BUFSIZ)) <= 0)
paul718e3742002-12-13 20:15:29 +00002068 {
ajs9fc7ebf2005-02-23 15:12:34 +00002069 if (nbytes < 0)
2070 {
2071 if (ERRNO_IO_RETRY(errno))
2072 {
2073 vty_event (VTYSH_READ, sock, vty);
2074 return 0;
2075 }
Andrew J. Schorr74542d72006-07-10 18:09:42 +00002076 vty->monitor = 0; /* disable monitoring to avoid infinite recursion */
ajs9fc7ebf2005-02-23 15:12:34 +00002077 zlog_warn("%s: read failed on vtysh client fd %d, closing: %s",
2078 __func__, sock, safe_strerror(errno));
2079 }
2080 buffer_reset(vty->obuf);
paul718e3742002-12-13 20:15:29 +00002081 vty_close (vty);
2082#ifdef VTYSH_DEBUG
2083 printf ("close vtysh\n");
2084#endif /* VTYSH_DEBUG */
2085 return 0;
2086 }
2087
2088#ifdef VTYSH_DEBUG
ajs9fc7ebf2005-02-23 15:12:34 +00002089 printf ("line: %.*s\n", nbytes, buf);
paul718e3742002-12-13 20:15:29 +00002090#endif /* VTYSH_DEBUG */
2091
ajs9fc7ebf2005-02-23 15:12:34 +00002092 for (p = buf; p < buf+nbytes; p++)
2093 {
2094 vty_ensure(vty, vty->length+1);
2095 vty->buf[vty->length++] = *p;
2096 if (*p == '\0')
2097 {
2098 /* Pass this line to parser. */
2099 ret = vty_execute (vty);
2100 /* Note that vty_execute clears the command buffer and resets
2101 vty->length to 0. */
paul718e3742002-12-13 20:15:29 +00002102
ajs9fc7ebf2005-02-23 15:12:34 +00002103 /* Return result. */
paul718e3742002-12-13 20:15:29 +00002104#ifdef VTYSH_DEBUG
ajs9fc7ebf2005-02-23 15:12:34 +00002105 printf ("result: %d\n", ret);
2106 printf ("vtysh node: %d\n", vty->node);
paul718e3742002-12-13 20:15:29 +00002107#endif /* VTYSH_DEBUG */
2108
ajs9fc7ebf2005-02-23 15:12:34 +00002109 header[3] = ret;
2110 buffer_put(vty->obuf, header, 4);
paul718e3742002-12-13 20:15:29 +00002111
ajs9fc7ebf2005-02-23 15:12:34 +00002112 if (!vty->t_write && (vtysh_flush(vty) < 0))
2113 /* Try to flush results; exit if a write error occurs. */
2114 return 0;
2115 }
2116 }
2117
paul718e3742002-12-13 20:15:29 +00002118 vty_event (VTYSH_READ, sock, vty);
2119
2120 return 0;
2121}
ajs49ff6d92004-11-04 19:26:16 +00002122
2123static int
2124vtysh_write (struct thread *thread)
2125{
2126 struct vty *vty = THREAD_ARG (thread);
2127
2128 vty->t_write = NULL;
ajs9fc7ebf2005-02-23 15:12:34 +00002129 vtysh_flush(vty);
ajs976d8c72004-11-10 15:40:09 +00002130 return 0;
ajs49ff6d92004-11-04 19:26:16 +00002131}
2132
paul718e3742002-12-13 20:15:29 +00002133#endif /* VTYSH */
2134
2135/* Determine address family to bind. */
2136void
hasso6ad96ea2004-10-07 19:33:46 +00002137vty_serv_sock (const char *addr, unsigned short port, const char *path)
paul718e3742002-12-13 20:15:29 +00002138{
2139 /* If port is set to 0, do not listen on TCP/IP at all! */
2140 if (port)
2141 {
2142
2143#ifdef HAVE_IPV6
2144#ifdef NRL
paul29db05b2003-05-08 20:10:22 +00002145 vty_serv_sock_family (addr, port, AF_INET);
2146 vty_serv_sock_family (addr, port, AF_INET6);
paul718e3742002-12-13 20:15:29 +00002147#else /* ! NRL */
paul29db05b2003-05-08 20:10:22 +00002148 vty_serv_sock_addrinfo (addr, port);
paul718e3742002-12-13 20:15:29 +00002149#endif /* NRL*/
2150#else /* ! HAVE_IPV6 */
paul29db05b2003-05-08 20:10:22 +00002151 vty_serv_sock_family (addr,port, AF_INET);
paul718e3742002-12-13 20:15:29 +00002152#endif /* HAVE_IPV6 */
2153 }
2154
2155#ifdef VTYSH
2156 vty_serv_un (path);
2157#endif /* VTYSH */
2158}
2159
Andrew J. Schorr9d0a3262006-07-11 00:06:49 +00002160/* Close vty interface. Warning: call this only from functions that
2161 will be careful not to access the vty afterwards (since it has
2162 now been freed). This is safest from top-level functions (called
2163 directly by the thread dispatcher). */
paul718e3742002-12-13 20:15:29 +00002164void
2165vty_close (struct vty *vty)
2166{
2167 int i;
2168
2169 /* Cancel threads.*/
2170 if (vty->t_read)
2171 thread_cancel (vty->t_read);
2172 if (vty->t_write)
2173 thread_cancel (vty->t_write);
2174 if (vty->t_timeout)
2175 thread_cancel (vty->t_timeout);
paul718e3742002-12-13 20:15:29 +00002176
2177 /* Flush buffer. */
ajs9fc7ebf2005-02-23 15:12:34 +00002178 buffer_flush_all (vty->obuf, vty->fd);
paul718e3742002-12-13 20:15:29 +00002179
2180 /* Free input buffer. */
2181 buffer_free (vty->obuf);
2182
paul718e3742002-12-13 20:15:29 +00002183 /* Free command history. */
2184 for (i = 0; i < VTY_MAXHIST; i++)
2185 if (vty->hist[i])
2186 XFREE (MTYPE_VTY_HIST, vty->hist[i]);
2187
2188 /* Unset vector. */
2189 vector_unset (vtyvec, vty->fd);
2190
2191 /* Close socket. */
2192 if (vty->fd > 0)
2193 close (vty->fd);
2194
paul718e3742002-12-13 20:15:29 +00002195 if (vty->buf)
2196 XFREE (MTYPE_VTY, vty->buf);
2197
2198 /* Check configure. */
2199 vty_config_unlock (vty);
2200
2201 /* OK free vty. */
2202 XFREE (MTYPE_VTY, vty);
2203}
2204
2205/* When time out occur output message then close connection. */
2206static int
2207vty_timeout (struct thread *thread)
2208{
2209 struct vty *vty;
2210
2211 vty = THREAD_ARG (thread);
2212 vty->t_timeout = NULL;
2213 vty->v_timeout = 0;
2214
2215 /* Clear buffer*/
2216 buffer_reset (vty->obuf);
2217 vty_out (vty, "%sVty connection is timed out.%s", VTY_NEWLINE, VTY_NEWLINE);
2218
2219 /* Close connection. */
2220 vty->status = VTY_CLOSE;
2221 vty_close (vty);
2222
2223 return 0;
2224}
2225
2226/* Read up configuration file from file_name. */
2227static void
2228vty_read_file (FILE *confp)
2229{
2230 int ret;
2231 struct vty *vty;
Steve Hillea555002009-07-28 16:36:14 -04002232 unsigned int line_num = 0;
paul718e3742002-12-13 20:15:29 +00002233
2234 vty = vty_new ();
Steve Hillea555002009-07-28 16:36:14 -04002235 vty->fd = dup(STDERR_FILENO); /* vty_close() will close this */
2236 if (vty->fd < 0)
2237 {
2238 /* Fine, we couldn't make a new fd. vty_close doesn't close stdout. */
2239 vty->fd = STDOUT_FILENO;
2240 }
2241 vty->type = VTY_FILE;
paul718e3742002-12-13 20:15:29 +00002242 vty->node = CONFIG_NODE;
2243
2244 /* Execute configuration file */
Steve Hillea555002009-07-28 16:36:14 -04002245 ret = config_from_file (vty, confp, &line_num);
2246
2247 /* Flush any previous errors before printing messages below */
2248 buffer_flush_all (vty->obuf, vty->fd);
paul718e3742002-12-13 20:15:29 +00002249
paul7021c422003-07-15 12:52:22 +00002250 if ( !((ret == CMD_SUCCESS) || (ret == CMD_ERR_NOTHING_TODO)) )
paul718e3742002-12-13 20:15:29 +00002251 {
2252 switch (ret)
paul7021c422003-07-15 12:52:22 +00002253 {
2254 case CMD_ERR_AMBIGUOUS:
Steve Hillea555002009-07-28 16:36:14 -04002255 fprintf (stderr, "*** Error reading config: Ambiguous command.\n");
paul7021c422003-07-15 12:52:22 +00002256 break;
2257 case CMD_ERR_NO_MATCH:
Steve Hillea555002009-07-28 16:36:14 -04002258 fprintf (stderr, "*** Error reading config: There is no such command.\n");
paul7021c422003-07-15 12:52:22 +00002259 break;
2260 }
Steve Hillea555002009-07-28 16:36:14 -04002261 fprintf (stderr, "*** Error occured processing line %u, below:\n%s\n",
2262 line_num, vty->buf);
paul718e3742002-12-13 20:15:29 +00002263 vty_close (vty);
2264 exit (1);
2265 }
2266
2267 vty_close (vty);
2268}
2269
ajs9fc7ebf2005-02-23 15:12:34 +00002270static FILE *
paul718e3742002-12-13 20:15:29 +00002271vty_use_backup_config (char *fullpath)
2272{
2273 char *fullpath_sav, *fullpath_tmp;
2274 FILE *ret = NULL;
2275 struct stat buf;
2276 int tmp, sav;
2277 int c;
2278 char buffer[512];
2279
2280 fullpath_sav = malloc (strlen (fullpath) + strlen (CONF_BACKUP_EXT) + 1);
2281 strcpy (fullpath_sav, fullpath);
2282 strcat (fullpath_sav, CONF_BACKUP_EXT);
2283 if (stat (fullpath_sav, &buf) == -1)
2284 {
2285 free (fullpath_sav);
2286 return NULL;
2287 }
2288
2289 fullpath_tmp = malloc (strlen (fullpath) + 8);
2290 sprintf (fullpath_tmp, "%s.XXXXXX", fullpath);
2291
2292 /* Open file to configuration write. */
2293 tmp = mkstemp (fullpath_tmp);
2294 if (tmp < 0)
2295 {
2296 free (fullpath_sav);
2297 free (fullpath_tmp);
2298 return NULL;
2299 }
2300
2301 sav = open (fullpath_sav, O_RDONLY);
2302 if (sav < 0)
2303 {
gdt3dbf9962003-12-22 20:18:18 +00002304 unlink (fullpath_tmp);
paul718e3742002-12-13 20:15:29 +00002305 free (fullpath_sav);
2306 free (fullpath_tmp);
paul718e3742002-12-13 20:15:29 +00002307 return NULL;
2308 }
2309
2310 while((c = read (sav, buffer, 512)) > 0)
2311 write (tmp, buffer, c);
2312
2313 close (sav);
2314 close (tmp);
2315
gdtaa593d52003-12-22 20:15:53 +00002316 if (chmod(fullpath_tmp, CONFIGFILE_MASK) != 0)
2317 {
gdt3dbf9962003-12-22 20:18:18 +00002318 unlink (fullpath_tmp);
gdtaa593d52003-12-22 20:15:53 +00002319 free (fullpath_sav);
2320 free (fullpath_tmp);
gdtaa593d52003-12-22 20:15:53 +00002321 return NULL;
2322 }
2323
paul718e3742002-12-13 20:15:29 +00002324 if (link (fullpath_tmp, fullpath) == 0)
2325 ret = fopen (fullpath, "r");
2326
2327 unlink (fullpath_tmp);
2328
2329 free (fullpath_sav);
2330 free (fullpath_tmp);
hasso12f6ea22005-03-07 08:35:39 +00002331 return ret;
paul718e3742002-12-13 20:15:29 +00002332}
2333
2334/* Read up configuration file from file_name. */
2335void
2336vty_read_config (char *config_file,
hasso320ec102004-06-20 19:54:37 +00002337 char *config_default_dir)
paul718e3742002-12-13 20:15:29 +00002338{
paulccc92352003-10-22 02:49:38 +00002339 char cwd[MAXPATHLEN];
paul718e3742002-12-13 20:15:29 +00002340 FILE *confp = NULL;
2341 char *fullpath;
paul05865c92005-10-26 05:49:54 +00002342 char *tmp = NULL;
paul718e3742002-12-13 20:15:29 +00002343
2344 /* If -f flag specified. */
2345 if (config_file != NULL)
2346 {
2347 if (! IS_DIRECTORY_SEP (config_file[0]))
hasso320ec102004-06-20 19:54:37 +00002348 {
2349 getcwd (cwd, MAXPATHLEN);
paul05865c92005-10-26 05:49:54 +00002350 tmp = XMALLOC (MTYPE_TMP,
hasso320ec102004-06-20 19:54:37 +00002351 strlen (cwd) + strlen (config_file) + 2);
paul05865c92005-10-26 05:49:54 +00002352 sprintf (tmp, "%s/%s", cwd, config_file);
2353 fullpath = tmp;
hasso320ec102004-06-20 19:54:37 +00002354 }
paul718e3742002-12-13 20:15:29 +00002355 else
hasso320ec102004-06-20 19:54:37 +00002356 fullpath = config_file;
paul718e3742002-12-13 20:15:29 +00002357
2358 confp = fopen (fullpath, "r");
2359
2360 if (confp == NULL)
hasso320ec102004-06-20 19:54:37 +00002361 {
paul3d1dc852005-04-05 00:45:23 +00002362 fprintf (stderr, "%s: failed to open configuration file %s: %s\n",
2363 __func__, fullpath, safe_strerror (errno));
2364
hasso320ec102004-06-20 19:54:37 +00002365 confp = vty_use_backup_config (fullpath);
2366 if (confp)
2367 fprintf (stderr, "WARNING: using backup configuration file!\n");
2368 else
2369 {
2370 fprintf (stderr, "can't open configuration file [%s]\n",
paul3d1dc852005-04-05 00:45:23 +00002371 config_file);
hasso320ec102004-06-20 19:54:37 +00002372 exit(1);
2373 }
2374 }
paul718e3742002-12-13 20:15:29 +00002375 }
2376 else
2377 {
paul718e3742002-12-13 20:15:29 +00002378#ifdef VTYSH
hasso320ec102004-06-20 19:54:37 +00002379 int ret;
2380 struct stat conf_stat;
paul718e3742002-12-13 20:15:29 +00002381
hasso320ec102004-06-20 19:54:37 +00002382 /* !!!!PLEASE LEAVE!!!!
2383 * This is NEEDED for use with vtysh -b, or else you can get
2384 * a real configuration food fight with a lot garbage in the
2385 * merged configuration file it creates coming from the per
2386 * daemon configuration files. This also allows the daemons
2387 * to start if there default configuration file is not
2388 * present or ignore them, as needed when using vtysh -b to
2389 * configure the daemons at boot - MAG
2390 */
paul718e3742002-12-13 20:15:29 +00002391
hasso320ec102004-06-20 19:54:37 +00002392 /* Stat for vtysh Zebra.conf, if found startup and wait for
2393 * boot configuration
2394 */
paul718e3742002-12-13 20:15:29 +00002395
hasso320ec102004-06-20 19:54:37 +00002396 if ( strstr(config_default_dir, "vtysh") == NULL)
2397 {
2398 ret = stat (integrate_default, &conf_stat);
2399 if (ret >= 0)
2400 return;
2401 }
paul718e3742002-12-13 20:15:29 +00002402#endif /* VTYSH */
2403
hasso320ec102004-06-20 19:54:37 +00002404 confp = fopen (config_default_dir, "r");
2405 if (confp == NULL)
2406 {
paul3d1dc852005-04-05 00:45:23 +00002407 fprintf (stderr, "%s: failed to open configuration file %s: %s\n",
2408 __func__, config_default_dir, safe_strerror (errno));
2409
hasso320ec102004-06-20 19:54:37 +00002410 confp = vty_use_backup_config (config_default_dir);
2411 if (confp)
2412 {
2413 fprintf (stderr, "WARNING: using backup configuration file!\n");
2414 fullpath = config_default_dir;
2415 }
2416 else
2417 {
2418 fprintf (stderr, "can't open configuration file [%s]\n",
2419 config_default_dir);
2420 exit (1);
paul3d1dc852005-04-05 00:45:23 +00002421 }
hasso320ec102004-06-20 19:54:37 +00002422 }
paul718e3742002-12-13 20:15:29 +00002423 else
hasso320ec102004-06-20 19:54:37 +00002424 fullpath = config_default_dir;
2425 }
2426
paul718e3742002-12-13 20:15:29 +00002427 vty_read_file (confp);
2428
2429 fclose (confp);
2430
2431 host_config_set (fullpath);
paul05865c92005-10-26 05:49:54 +00002432
2433 if (tmp)
2434 XFREE (MTYPE_TMP, fullpath);
paul718e3742002-12-13 20:15:29 +00002435}
2436
2437/* Small utility function which output log to the VTY. */
2438void
ajs274a4a42004-12-07 15:39:31 +00002439vty_log (const char *level, const char *proto_str,
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +00002440 const char *format, struct timestamp_control *ctl, va_list va)
paul718e3742002-12-13 20:15:29 +00002441{
hasso8c328f12004-10-05 21:01:23 +00002442 unsigned int i;
paul718e3742002-12-13 20:15:29 +00002443 struct vty *vty;
Paul Jakmaa4b30302006-05-28 08:18:38 +00002444
2445 if (!vtyvec)
2446 return;
paul718e3742002-12-13 20:15:29 +00002447
paul55468c82005-03-14 20:19:01 +00002448 for (i = 0; i < vector_active (vtyvec); i++)
paul718e3742002-12-13 20:15:29 +00002449 if ((vty = vector_slot (vtyvec, i)) != NULL)
2450 if (vty->monitor)
ajsd246bd92004-11-23 17:35:08 +00002451 {
2452 va_list ac;
2453 va_copy(ac, va);
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +00002454 vty_log_out (vty, level, proto_str, format, ctl, ac);
ajsd246bd92004-11-23 17:35:08 +00002455 va_end(ac);
2456 }
paul718e3742002-12-13 20:15:29 +00002457}
2458
ajs274a4a42004-12-07 15:39:31 +00002459/* Async-signal-safe version of vty_log for fixed strings. */
2460void
Paul Jakma7aa9dce2014-09-19 14:42:23 +01002461vty_log_fixed (char *buf, size_t len)
ajs274a4a42004-12-07 15:39:31 +00002462{
2463 unsigned int i;
ajs9fc7ebf2005-02-23 15:12:34 +00002464 struct iovec iov[2];
2465
Paul Jakmaa4b30302006-05-28 08:18:38 +00002466 /* vty may not have been initialised */
2467 if (!vtyvec)
2468 return;
2469
Paul Jakma7aa9dce2014-09-19 14:42:23 +01002470 iov[0].iov_base = buf;
ajs9fc7ebf2005-02-23 15:12:34 +00002471 iov[0].iov_len = len;
ajs926fe8f2005-04-08 18:50:40 +00002472 iov[1].iov_base = (void *)"\r\n";
ajs9fc7ebf2005-02-23 15:12:34 +00002473 iov[1].iov_len = 2;
ajs274a4a42004-12-07 15:39:31 +00002474
paul55468c82005-03-14 20:19:01 +00002475 for (i = 0; i < vector_active (vtyvec); i++)
ajs274a4a42004-12-07 15:39:31 +00002476 {
2477 struct vty *vty;
ajs9fc7ebf2005-02-23 15:12:34 +00002478 if (((vty = vector_slot (vtyvec, i)) != NULL) && vty->monitor)
2479 /* N.B. We don't care about the return code, since process is
2480 most likely just about to die anyway. */
2481 writev(vty->fd, iov, 2);
ajs274a4a42004-12-07 15:39:31 +00002482 }
2483}
2484
paul718e3742002-12-13 20:15:29 +00002485int
2486vty_config_lock (struct vty *vty)
2487{
2488 if (vty_config == 0)
2489 {
2490 vty->config = 1;
2491 vty_config = 1;
2492 }
2493 return vty->config;
2494}
2495
2496int
2497vty_config_unlock (struct vty *vty)
2498{
2499 if (vty_config == 1 && vty->config == 1)
2500 {
2501 vty->config = 0;
2502 vty_config = 0;
2503 }
2504 return vty->config;
2505}
David Lamparter6b0655a2014-06-04 06:53:35 +02002506
paul718e3742002-12-13 20:15:29 +00002507/* Master of the threads. */
paulb21b19c2003-06-15 01:28:29 +00002508static struct thread_master *master;
paul718e3742002-12-13 20:15:29 +00002509
2510static void
2511vty_event (enum event event, int sock, struct vty *vty)
2512{
2513 struct thread *vty_serv_thread;
2514
2515 switch (event)
2516 {
2517 case VTY_SERV:
2518 vty_serv_thread = thread_add_read (master, vty_accept, vty, sock);
2519 vector_set_index (Vvty_serv_thread, sock, vty_serv_thread);
2520 break;
2521#ifdef VTYSH
2522 case VTYSH_SERV:
Christian Franke677bcbb2013-02-27 13:47:23 +00002523 vty_serv_thread = thread_add_read (master, vtysh_accept, vty, sock);
2524 vector_set_index (Vvty_serv_thread, sock, vty_serv_thread);
paul718e3742002-12-13 20:15:29 +00002525 break;
2526 case VTYSH_READ:
ajs49ff6d92004-11-04 19:26:16 +00002527 vty->t_read = thread_add_read (master, vtysh_read, vty, sock);
2528 break;
2529 case VTYSH_WRITE:
2530 vty->t_write = thread_add_write (master, vtysh_write, vty, sock);
paul718e3742002-12-13 20:15:29 +00002531 break;
2532#endif /* VTYSH */
2533 case VTY_READ:
2534 vty->t_read = thread_add_read (master, vty_read, vty, sock);
2535
2536 /* Time out treatment. */
2537 if (vty->v_timeout)
2538 {
2539 if (vty->t_timeout)
2540 thread_cancel (vty->t_timeout);
2541 vty->t_timeout =
2542 thread_add_timer (master, vty_timeout, vty, vty->v_timeout);
2543 }
2544 break;
2545 case VTY_WRITE:
2546 if (! vty->t_write)
2547 vty->t_write = thread_add_write (master, vty_flush, vty, sock);
2548 break;
2549 case VTY_TIMEOUT_RESET:
2550 if (vty->t_timeout)
2551 {
2552 thread_cancel (vty->t_timeout);
2553 vty->t_timeout = NULL;
2554 }
2555 if (vty->v_timeout)
2556 {
2557 vty->t_timeout =
2558 thread_add_timer (master, vty_timeout, vty, vty->v_timeout);
2559 }
2560 break;
2561 }
2562}
David Lamparter6b0655a2014-06-04 06:53:35 +02002563
paul718e3742002-12-13 20:15:29 +00002564DEFUN (config_who,
2565 config_who_cmd,
2566 "who",
2567 "Display who is on vty\n")
2568{
hasso8c328f12004-10-05 21:01:23 +00002569 unsigned int i;
paul718e3742002-12-13 20:15:29 +00002570 struct vty *v;
2571
paul55468c82005-03-14 20:19:01 +00002572 for (i = 0; i < vector_active (vtyvec); i++)
paul718e3742002-12-13 20:15:29 +00002573 if ((v = vector_slot (vtyvec, i)) != NULL)
2574 vty_out (vty, "%svty[%d] connected from %s.%s",
2575 v->config ? "*" : " ",
2576 i, v->address, VTY_NEWLINE);
2577 return CMD_SUCCESS;
2578}
2579
2580/* Move to vty configuration mode. */
2581DEFUN (line_vty,
2582 line_vty_cmd,
2583 "line vty",
2584 "Configure a terminal line\n"
2585 "Virtual terminal\n")
2586{
2587 vty->node = VTY_NODE;
2588 return CMD_SUCCESS;
2589}
2590
2591/* Set time out value. */
ajs9fc7ebf2005-02-23 15:12:34 +00002592static int
paul9035efa2004-10-10 11:56:56 +00002593exec_timeout (struct vty *vty, const char *min_str, const char *sec_str)
paul718e3742002-12-13 20:15:29 +00002594{
2595 unsigned long timeout = 0;
2596
2597 /* min_str and sec_str are already checked by parser. So it must be
2598 all digit string. */
2599 if (min_str)
2600 {
2601 timeout = strtol (min_str, NULL, 10);
2602 timeout *= 60;
2603 }
2604 if (sec_str)
2605 timeout += strtol (sec_str, NULL, 10);
2606
2607 vty_timeout_val = timeout;
2608 vty->v_timeout = timeout;
2609 vty_event (VTY_TIMEOUT_RESET, 0, vty);
2610
2611
2612 return CMD_SUCCESS;
2613}
2614
2615DEFUN (exec_timeout_min,
2616 exec_timeout_min_cmd,
2617 "exec-timeout <0-35791>",
2618 "Set timeout value\n"
2619 "Timeout value in minutes\n")
2620{
2621 return exec_timeout (vty, argv[0], NULL);
2622}
2623
2624DEFUN (exec_timeout_sec,
2625 exec_timeout_sec_cmd,
2626 "exec-timeout <0-35791> <0-2147483>",
2627 "Set the EXEC timeout\n"
2628 "Timeout in minutes\n"
2629 "Timeout in seconds\n")
2630{
2631 return exec_timeout (vty, argv[0], argv[1]);
2632}
2633
2634DEFUN (no_exec_timeout,
2635 no_exec_timeout_cmd,
2636 "no exec-timeout",
2637 NO_STR
2638 "Set the EXEC timeout\n")
2639{
2640 return exec_timeout (vty, NULL, NULL);
2641}
2642
2643/* Set vty access class. */
2644DEFUN (vty_access_class,
2645 vty_access_class_cmd,
2646 "access-class WORD",
2647 "Filter connections based on an IP access list\n"
2648 "IP access list\n")
2649{
2650 if (vty_accesslist_name)
2651 XFREE(MTYPE_VTY, vty_accesslist_name);
2652
2653 vty_accesslist_name = XSTRDUP(MTYPE_VTY, argv[0]);
2654
2655 return CMD_SUCCESS;
2656}
2657
2658/* Clear vty access class. */
2659DEFUN (no_vty_access_class,
2660 no_vty_access_class_cmd,
2661 "no access-class [WORD]",
2662 NO_STR
2663 "Filter connections based on an IP access list\n"
2664 "IP access list\n")
2665{
2666 if (! vty_accesslist_name || (argc && strcmp(vty_accesslist_name, argv[0])))
2667 {
2668 vty_out (vty, "Access-class is not currently applied to vty%s",
2669 VTY_NEWLINE);
2670 return CMD_WARNING;
2671 }
2672
2673 XFREE(MTYPE_VTY, vty_accesslist_name);
2674
2675 vty_accesslist_name = NULL;
2676
2677 return CMD_SUCCESS;
2678}
2679
2680#ifdef HAVE_IPV6
2681/* Set vty access class. */
2682DEFUN (vty_ipv6_access_class,
2683 vty_ipv6_access_class_cmd,
2684 "ipv6 access-class WORD",
2685 IPV6_STR
2686 "Filter connections based on an IP access list\n"
2687 "IPv6 access list\n")
2688{
2689 if (vty_ipv6_accesslist_name)
2690 XFREE(MTYPE_VTY, vty_ipv6_accesslist_name);
2691
2692 vty_ipv6_accesslist_name = XSTRDUP(MTYPE_VTY, argv[0]);
2693
2694 return CMD_SUCCESS;
2695}
2696
2697/* Clear vty access class. */
2698DEFUN (no_vty_ipv6_access_class,
2699 no_vty_ipv6_access_class_cmd,
2700 "no ipv6 access-class [WORD]",
2701 NO_STR
2702 IPV6_STR
2703 "Filter connections based on an IP access list\n"
2704 "IPv6 access list\n")
2705{
2706 if (! vty_ipv6_accesslist_name ||
2707 (argc && strcmp(vty_ipv6_accesslist_name, argv[0])))
2708 {
2709 vty_out (vty, "IPv6 access-class is not currently applied to vty%s",
2710 VTY_NEWLINE);
2711 return CMD_WARNING;
2712 }
2713
2714 XFREE(MTYPE_VTY, vty_ipv6_accesslist_name);
2715
2716 vty_ipv6_accesslist_name = NULL;
2717
2718 return CMD_SUCCESS;
2719}
2720#endif /* HAVE_IPV6 */
2721
2722/* vty login. */
2723DEFUN (vty_login,
2724 vty_login_cmd,
2725 "login",
2726 "Enable password checking\n")
2727{
2728 no_password_check = 0;
2729 return CMD_SUCCESS;
2730}
2731
2732DEFUN (no_vty_login,
2733 no_vty_login_cmd,
2734 "no login",
2735 NO_STR
2736 "Enable password checking\n")
2737{
2738 no_password_check = 1;
2739 return CMD_SUCCESS;
2740}
2741
Paul Jakma62687ff2008-08-23 14:27:06 +01002742/* initial mode. */
2743DEFUN (vty_restricted_mode,
2744 vty_restricted_mode_cmd,
2745 "anonymous restricted",
2746 "Restrict view commands available in anonymous, unauthenticated vty\n")
2747{
2748 restricted_mode = 1;
2749 return CMD_SUCCESS;
2750}
2751
2752DEFUN (vty_no_restricted_mode,
2753 vty_no_restricted_mode_cmd,
2754 "no anonymous restricted",
2755 NO_STR
2756 "Enable password checking\n")
2757{
2758 restricted_mode = 0;
2759 return CMD_SUCCESS;
2760}
2761
paul718e3742002-12-13 20:15:29 +00002762DEFUN (service_advanced_vty,
2763 service_advanced_vty_cmd,
2764 "service advanced-vty",
2765 "Set up miscellaneous service\n"
2766 "Enable advanced mode vty interface\n")
2767{
2768 host.advanced = 1;
2769 return CMD_SUCCESS;
2770}
2771
2772DEFUN (no_service_advanced_vty,
2773 no_service_advanced_vty_cmd,
2774 "no service advanced-vty",
2775 NO_STR
2776 "Set up miscellaneous service\n"
2777 "Enable advanced mode vty interface\n")
2778{
2779 host.advanced = 0;
2780 return CMD_SUCCESS;
2781}
2782
2783DEFUN (terminal_monitor,
2784 terminal_monitor_cmd,
2785 "terminal monitor",
2786 "Set terminal line parameters\n"
2787 "Copy debug output to the current terminal line\n")
2788{
2789 vty->monitor = 1;
2790 return CMD_SUCCESS;
2791}
2792
2793DEFUN (terminal_no_monitor,
2794 terminal_no_monitor_cmd,
2795 "terminal no monitor",
2796 "Set terminal line parameters\n"
2797 NO_STR
2798 "Copy debug output to the current terminal line\n")
2799{
2800 vty->monitor = 0;
2801 return CMD_SUCCESS;
2802}
2803
paul789f78a2006-01-17 17:42:03 +00002804ALIAS (terminal_no_monitor,
2805 no_terminal_monitor_cmd,
2806 "no terminal monitor",
2807 NO_STR
2808 "Set terminal line parameters\n"
2809 "Copy debug output to the current terminal line\n")
2810
paul718e3742002-12-13 20:15:29 +00002811DEFUN (show_history,
2812 show_history_cmd,
2813 "show history",
2814 SHOW_STR
2815 "Display the session command history\n")
2816{
2817 int index;
2818
2819 for (index = vty->hindex + 1; index != vty->hindex;)
2820 {
2821 if (index == VTY_MAXHIST)
2822 {
2823 index = 0;
2824 continue;
2825 }
2826
2827 if (vty->hist[index] != NULL)
2828 vty_out (vty, " %s%s", vty->hist[index], VTY_NEWLINE);
2829
2830 index++;
2831 }
2832
2833 return CMD_SUCCESS;
2834}
2835
2836/* Display current configuration. */
ajs9fc7ebf2005-02-23 15:12:34 +00002837static int
paul718e3742002-12-13 20:15:29 +00002838vty_config_write (struct vty *vty)
2839{
2840 vty_out (vty, "line vty%s", VTY_NEWLINE);
2841
2842 if (vty_accesslist_name)
2843 vty_out (vty, " access-class %s%s",
2844 vty_accesslist_name, VTY_NEWLINE);
2845
2846 if (vty_ipv6_accesslist_name)
2847 vty_out (vty, " ipv6 access-class %s%s",
2848 vty_ipv6_accesslist_name, VTY_NEWLINE);
2849
2850 /* exec-timeout */
2851 if (vty_timeout_val != VTY_TIMEOUT_DEFAULT)
2852 vty_out (vty, " exec-timeout %ld %ld%s",
2853 vty_timeout_val / 60,
2854 vty_timeout_val % 60, VTY_NEWLINE);
2855
2856 /* login */
2857 if (no_password_check)
2858 vty_out (vty, " no login%s", VTY_NEWLINE);
Paul Jakma62687ff2008-08-23 14:27:06 +01002859
2860 if (restricted_mode != restricted_mode_default)
2861 {
2862 if (restricted_mode_default)
2863 vty_out (vty, " no anonymous restricted%s", VTY_NEWLINE);
2864 else
2865 vty_out (vty, " anonymous restricted%s", VTY_NEWLINE);
2866 }
2867
paul718e3742002-12-13 20:15:29 +00002868 vty_out (vty, "!%s", VTY_NEWLINE);
2869
2870 return CMD_SUCCESS;
2871}
2872
2873struct cmd_node vty_node =
2874{
2875 VTY_NODE,
2876 "%s(config-line)# ",
hassoe7168df2004-10-03 20:11:32 +00002877 1,
paul718e3742002-12-13 20:15:29 +00002878};
2879
2880/* Reset all VTY status. */
2881void
2882vty_reset ()
2883{
hasso8c328f12004-10-05 21:01:23 +00002884 unsigned int i;
paul718e3742002-12-13 20:15:29 +00002885 struct vty *vty;
2886 struct thread *vty_serv_thread;
2887
paul55468c82005-03-14 20:19:01 +00002888 for (i = 0; i < vector_active (vtyvec); i++)
paul718e3742002-12-13 20:15:29 +00002889 if ((vty = vector_slot (vtyvec, i)) != NULL)
2890 {
2891 buffer_reset (vty->obuf);
2892 vty->status = VTY_CLOSE;
2893 vty_close (vty);
2894 }
2895
paul55468c82005-03-14 20:19:01 +00002896 for (i = 0; i < vector_active (Vvty_serv_thread); i++)
paul718e3742002-12-13 20:15:29 +00002897 if ((vty_serv_thread = vector_slot (Vvty_serv_thread, i)) != NULL)
2898 {
2899 thread_cancel (vty_serv_thread);
2900 vector_slot (Vvty_serv_thread, i) = NULL;
2901 close (i);
2902 }
2903
2904 vty_timeout_val = VTY_TIMEOUT_DEFAULT;
2905
2906 if (vty_accesslist_name)
2907 {
2908 XFREE(MTYPE_VTY, vty_accesslist_name);
2909 vty_accesslist_name = NULL;
2910 }
2911
2912 if (vty_ipv6_accesslist_name)
2913 {
2914 XFREE(MTYPE_VTY, vty_ipv6_accesslist_name);
2915 vty_ipv6_accesslist_name = NULL;
2916 }
2917}
2918
ajs9fc7ebf2005-02-23 15:12:34 +00002919static void
2920vty_save_cwd (void)
paul718e3742002-12-13 20:15:29 +00002921{
paul79ad2792003-10-15 22:09:28 +00002922 char cwd[MAXPATHLEN];
paulccc92352003-10-22 02:49:38 +00002923 char *c;
paul718e3742002-12-13 20:15:29 +00002924
paulccc92352003-10-22 02:49:38 +00002925 c = getcwd (cwd, MAXPATHLEN);
paul79ad2792003-10-15 22:09:28 +00002926
paulccc92352003-10-22 02:49:38 +00002927 if (!c)
paul79ad2792003-10-15 22:09:28 +00002928 {
2929 chdir (SYSCONFDIR);
paulccc92352003-10-22 02:49:38 +00002930 getcwd (cwd, MAXPATHLEN);
paul79ad2792003-10-15 22:09:28 +00002931 }
paul718e3742002-12-13 20:15:29 +00002932
2933 vty_cwd = XMALLOC (MTYPE_TMP, strlen (cwd) + 1);
2934 strcpy (vty_cwd, cwd);
2935}
2936
2937char *
2938vty_get_cwd ()
2939{
2940 return vty_cwd;
2941}
2942
2943int
2944vty_shell (struct vty *vty)
2945{
2946 return vty->type == VTY_SHELL ? 1 : 0;
2947}
2948
2949int
2950vty_shell_serv (struct vty *vty)
2951{
2952 return vty->type == VTY_SHELL_SERV ? 1 : 0;
2953}
2954
2955void
2956vty_init_vtysh ()
2957{
2958 vtyvec = vector_init (VECTOR_MIN_SIZE);
2959}
2960
2961/* Install vty's own commands like `who' command. */
2962void
paulb21b19c2003-06-15 01:28:29 +00002963vty_init (struct thread_master *master_thread)
paul718e3742002-12-13 20:15:29 +00002964{
2965 /* For further configuration read, preserve current directory. */
2966 vty_save_cwd ();
2967
2968 vtyvec = vector_init (VECTOR_MIN_SIZE);
2969
paulb21b19c2003-06-15 01:28:29 +00002970 master = master_thread;
2971
paul718e3742002-12-13 20:15:29 +00002972 /* Initilize server thread vector. */
2973 Vvty_serv_thread = vector_init (VECTOR_MIN_SIZE);
2974
2975 /* Install bgp top node. */
2976 install_node (&vty_node, vty_config_write);
2977
Paul Jakma62687ff2008-08-23 14:27:06 +01002978 install_element (RESTRICTED_NODE, &config_who_cmd);
2979 install_element (RESTRICTED_NODE, &show_history_cmd);
paul718e3742002-12-13 20:15:29 +00002980 install_element (VIEW_NODE, &config_who_cmd);
2981 install_element (VIEW_NODE, &show_history_cmd);
2982 install_element (ENABLE_NODE, &config_who_cmd);
2983 install_element (CONFIG_NODE, &line_vty_cmd);
2984 install_element (CONFIG_NODE, &service_advanced_vty_cmd);
2985 install_element (CONFIG_NODE, &no_service_advanced_vty_cmd);
2986 install_element (CONFIG_NODE, &show_history_cmd);
2987 install_element (ENABLE_NODE, &terminal_monitor_cmd);
2988 install_element (ENABLE_NODE, &terminal_no_monitor_cmd);
paul789f78a2006-01-17 17:42:03 +00002989 install_element (ENABLE_NODE, &no_terminal_monitor_cmd);
paul718e3742002-12-13 20:15:29 +00002990 install_element (ENABLE_NODE, &show_history_cmd);
2991
2992 install_default (VTY_NODE);
2993 install_element (VTY_NODE, &exec_timeout_min_cmd);
2994 install_element (VTY_NODE, &exec_timeout_sec_cmd);
2995 install_element (VTY_NODE, &no_exec_timeout_cmd);
2996 install_element (VTY_NODE, &vty_access_class_cmd);
2997 install_element (VTY_NODE, &no_vty_access_class_cmd);
2998 install_element (VTY_NODE, &vty_login_cmd);
2999 install_element (VTY_NODE, &no_vty_login_cmd);
Paul Jakma62687ff2008-08-23 14:27:06 +01003000 install_element (VTY_NODE, &vty_restricted_mode_cmd);
3001 install_element (VTY_NODE, &vty_no_restricted_mode_cmd);
paul718e3742002-12-13 20:15:29 +00003002#ifdef HAVE_IPV6
3003 install_element (VTY_NODE, &vty_ipv6_access_class_cmd);
3004 install_element (VTY_NODE, &no_vty_ipv6_access_class_cmd);
3005#endif /* HAVE_IPV6 */
3006}
Chris Caputo228da422009-07-18 05:44:03 +00003007
3008void
3009vty_terminate (void)
3010{
3011 if (vty_cwd)
3012 XFREE (MTYPE_TMP, vty_cwd);
3013
3014 if (vtyvec && Vvty_serv_thread)
3015 {
3016 vty_reset ();
3017 vector_free (vtyvec);
3018 vector_free (Vvty_serv_thread);
3019 }
3020}