blob: 23430d5e7f8e5c15cca51ed64d2ed8fa73103a7b [file] [log] [blame]
Harald Welte955049f2009-03-10 12:16:51 +00001#ifndef _VTY_H
2#define _VTY_H
3
4#include <stdio.h>
5#include <stdarg.h>
6
7/* GCC have printf type attribute check. */
8#ifdef __GNUC__
Holger Hans Peter Freytherd2aba272009-08-10 07:52:50 +02009#define VTY_PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
Harald Welte955049f2009-03-10 12:16:51 +000010#else
Holger Hans Peter Freytherd2aba272009-08-10 07:52:50 +020011#define VTY_PRINTF_ATTRIBUTE(a,b)
Harald Welte955049f2009-03-10 12:16:51 +000012#endif /* __GNUC__ */
13
14/* Does the I/O error indicate that the operation should be retried later? */
15#define ERRNO_IO_RETRY(EN) \
16 (((EN) == EAGAIN) || ((EN) == EWOULDBLOCK) || ((EN) == EINTR))
17
18/* Vty read buffer size. */
19#define VTY_READ_BUFSIZ 512
20
21#define VTY_BUFSIZ 512
22#define VTY_MAXHIST 20
23
Harald Weltec63e51d2009-03-10 19:46:16 +000024/* Vty events */
25enum event {
26 VTY_SERV,
27 VTY_READ,
28 VTY_WRITE,
Harald Welte2477d932009-08-07 00:32:41 +020029 VTY_CLOSED,
Harald Weltec63e51d2009-03-10 19:46:16 +000030 VTY_TIMEOUT_RESET,
31#ifdef VTYSH
32 VTYSH_SERV,
33 VTYSH_READ,
34 VTYSH_WRITE
35#endif /* VTYSH */
36};
37
Harald Welte955049f2009-03-10 12:16:51 +000038struct vty {
39 FILE *file;
40
Harald Weltec63e51d2009-03-10 19:46:16 +000041 /* private data, specified by creator */
42 void *priv;
43
Harald Welte955049f2009-03-10 12:16:51 +000044 /* File descripter of this vty. */
45 int fd;
46
47 /* Is this vty connect to file or not */
48 enum { VTY_TERM, VTY_FILE, VTY_SHELL, VTY_SHELL_SERV } type;
49
50 /* Node status of this vty */
51 int node;
52
53 /* Failure count */
54 int fail;
55
56 /* Output buffer. */
57 struct buffer *obuf;
58
59 /* Command input buffer */
60 char *buf;
61
62 /* Command cursor point */
63 int cp;
64
65 /* Command length */
66 int length;
67
68 /* Command max length. */
69 int max;
70
71 /* Histry of command */
72 char *hist[VTY_MAXHIST];
73
74 /* History lookup current point */
75 int hp;
76
77 /* History insert end point */
78 int hindex;
79
80 /* For current referencing point of interface, route-map,
81 access-list etc... */
82 void *index;
83
84 /* For multiple level index treatment such as key chain and key. */
85 void *index_sub;
86
87 /* For escape character. */
88 unsigned char escape;
89
90 /* Current vty status. */
91 enum { VTY_NORMAL, VTY_CLOSE, VTY_MORE, VTY_MORELINE } status;
92
93 /* IAC handling: was the last character received the IAC
94 * (interpret-as-command) escape character (and therefore the next
95 * character will be the command code)? Refer to Telnet RFC 854. */
96 unsigned char iac;
97
98 /* IAC SB (option subnegotiation) handling */
99 unsigned char iac_sb_in_progress;
100 /* At the moment, we care only about the NAWS (window size) negotiation,
101 * and that requires just a 5-character buffer (RFC 1073):
102 * <NAWS char> <16-bit width> <16-bit height> */
103#define TELNET_NAWS_SB_LEN 5
104 unsigned char sb_buf[TELNET_NAWS_SB_LEN];
105 /* How many subnegotiation characters have we received? We just drop
106 * those that do not fit in the buffer. */
107 size_t sb_len;
108
109 /* Window width/height. */
110 int width;
111 int height;
112
113 /* Configure lines. */
114 int lines;
115
116 int monitor;
117
118 /* In configure mode. */
119 int config;
120};
121
122/* Small macro to determine newline is newline only or linefeed needed. */
123#define VTY_NEWLINE ((vty->type == VTY_TERM) ? "\r\n" : "\n")
124
125static inline char *vty_newline(struct vty *vty)
126{
127 return VTY_NEWLINE;
128}
129
130/* Prototypes. */
Harald Welte1353f962010-05-16 19:20:24 +0200131void vty_init(const char *name, const char *version, const char *copyright);
Harald Weltec7c19822009-08-07 13:28:08 +0200132int vty_read_config_file(const char *file_name);
Harald Welte955049f2009-03-10 12:16:51 +0000133void vty_init_vtysh (void);
134void vty_reset (void);
135struct vty *vty_new (void);
Harald Weltec63e51d2009-03-10 19:46:16 +0000136struct vty *vty_create (int vty_sock, void *priv);
Holger Hans Peter Freytherd2aba272009-08-10 07:52:50 +0200137int vty_out (struct vty *, const char *, ...) VTY_PRINTF_ATTRIBUTE(2, 3);
Harald Welte955049f2009-03-10 12:16:51 +0000138int vty_out_newline(struct vty *);
139int vty_read(struct vty *vty);
Harald Weltec7c19822009-08-07 13:28:08 +0200140//void vty_time_print (struct vty *, int);
Harald Welte955049f2009-03-10 12:16:51 +0000141void vty_close (struct vty *);
142char *vty_get_cwd (void);
143void vty_log (const char *level, const char *proto, const char *fmt, va_list);
144int vty_config_lock (struct vty *);
145int vty_config_unlock (struct vty *);
146int vty_shell (struct vty *);
147int vty_shell_serv (struct vty *);
148void vty_hello (struct vty *);
149
Harald Welte0224e4d2009-08-07 13:25:41 +0200150void *tall_vty_ctx;
Harald Welte955049f2009-03-10 12:16:51 +0000151#endif