blob: 8035585d7ba5eb0973164c37b087b7df229ad704 [file] [log] [blame]
Harald Welte3fb0b6f2010-05-19 19:02:52 +02001#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__
9#define VTY_PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
10#else
11#define VTY_PRINTF_ATTRIBUTE(a,b)
12#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
24/* Vty events */
25enum event {
26 VTY_SERV,
27 VTY_READ,
28 VTY_WRITE,
29 VTY_CLOSED,
30 VTY_TIMEOUT_RESET,
31#ifdef VTYSH
32 VTYSH_SERV,
33 VTYSH_READ,
34 VTYSH_WRITE
35#endif /* VTYSH */
36};
37
38struct vty {
39 FILE *file;
40
41 /* private data, specified by creator */
42 void *priv;
43
44 /* 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
Harald Welte237f6242010-05-25 23:00:45 +0200130struct vty_app_info {
Holger Hans Peter Freytherdd195272010-06-08 16:12:58 +0800131 const char *name;
132 const char *version;
133 const char *copyright;
Harald Welte237f6242010-05-25 23:00:45 +0200134 void *tall_ctx;
135 enum node_type (*go_parent_cb)(struct vty *vty);
Holger Hans Peter Freyther8f09f012010-08-25 17:34:56 +0800136 int (*is_config_node)(struct vty *vty, int node);
Harald Welte237f6242010-05-25 23:00:45 +0200137};
138
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200139/* Prototypes. */
Harald Welte237f6242010-05-25 23:00:45 +0200140void vty_init(struct vty_app_info *app_info);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200141int vty_read_config_file(const char *file_name, void *priv);
142void vty_init_vtysh (void);
143void vty_reset (void);
144struct vty *vty_new (void);
145struct vty *vty_create (int vty_sock, void *priv);
146int vty_out (struct vty *, const char *, ...) VTY_PRINTF_ATTRIBUTE(2, 3);
147int vty_out_newline(struct vty *);
148int vty_read(struct vty *vty);
149//void vty_time_print (struct vty *, int);
150void vty_close (struct vty *);
151char *vty_get_cwd (void);
152void vty_log (const char *level, const char *proto, const char *fmt, va_list);
153int vty_config_lock (struct vty *);
154int vty_config_unlock (struct vty *);
155int vty_shell (struct vty *);
156int vty_shell_serv (struct vty *);
157void vty_hello (struct vty *);
Holger Hans Peter Freyther08aaded2010-09-14 02:24:03 +0800158void *vty_current_index(struct vty *);
159int vty_current_node(struct vty *vty);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200160
Holger Hans Peter Freyther4aaccd72010-08-31 17:09:44 +0800161extern void *tall_vty_ctx;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200162#endif