blob: 9cadb7ac64af5030f064756e359304c8fc3667e5 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welte3fb0b6f2010-05-19 19:02:52 +02002
3#include <stdio.h>
4#include <stdarg.h>
Neels Hofmeyr63053002019-04-10 02:41:53 +02005#include <stdbool.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +02006
Neels Hofmeyr4a31ffa2017-09-07 03:08:06 +02007#include <osmocom/core/linuxlist.h>
Neels Hofmeyr70ce8712019-11-24 19:52:44 +01008#include <osmocom/core/defs.h>
Neels Hofmeyr4a31ffa2017-09-07 03:08:06 +02009
Harald Welte7acb30c2011-08-17 17:13:48 +020010/*! \defgroup vty VTY (Virtual TTY) interface
11 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020012 * \file vty.h */
Harald Welte7acb30c2011-08-17 17:13:48 +020013
Harald Welte3fb0b6f2010-05-19 19:02:52 +020014/* GCC have printf type attribute check. */
15#ifdef __GNUC__
16#define VTY_PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
17#else
18#define VTY_PRINTF_ATTRIBUTE(a,b)
19#endif /* __GNUC__ */
20
21/* Does the I/O error indicate that the operation should be retried later? */
22#define ERRNO_IO_RETRY(EN) \
23 (((EN) == EAGAIN) || ((EN) == EWOULDBLOCK) || ((EN) == EINTR))
24
25/* Vty read buffer size. */
26#define VTY_READ_BUFSIZ 512
27
28#define VTY_BUFSIZ 512
29#define VTY_MAXHIST 20
30
Vadim Yanitskiye566bdd2020-10-06 17:41:22 +070031/* Number of application / library specific VTY attributes */
32#define VTY_CMD_USR_ATTR_NUM 32
33
Neels Hofmeyr87e45502017-06-20 00:17:59 +020034/*! VTY events */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020035enum event {
36 VTY_SERV,
37 VTY_READ,
38 VTY_WRITE,
39 VTY_CLOSED,
40 VTY_TIMEOUT_RESET,
41#ifdef VTYSH
42 VTYSH_SERV,
43 VTYSH_READ,
44 VTYSH_WRITE
45#endif /* VTYSH */
46};
47
Andreas Eversberg3c6a2ce2012-07-12 09:22:56 +020048enum vty_type {
49 VTY_TERM,
50 VTY_FILE,
51 VTY_SHELL,
52 VTY_SHELL_SERV
53};
54
Neels Hofmeyr4a31ffa2017-09-07 03:08:06 +020055struct vty_parent_node {
56 struct llist_head entry;
57
58 /*! private data, specified by creator */
59 void *priv;
60
61 /*! Node status of this vty */
62 int node;
63
64 /*! When reading from a config file, these are the indenting characters expected for children of
65 * this VTY node. */
66 char *indent;
67};
68
Harald Welte7acb30c2011-08-17 17:13:48 +020069/*! Internal representation of a single VTY */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020070struct vty {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020071 /*! underlying file (if any) */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020072 FILE *file;
73
Neels Hofmeyr87e45502017-06-20 00:17:59 +020074 /*! private data, specified by creator */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020075 void *priv;
76
Neels Hofmeyr87e45502017-06-20 00:17:59 +020077 /*! File descripter of this vty. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020078 int fd;
79
Neels Hofmeyr87e45502017-06-20 00:17:59 +020080 /*! Is this vty connect to file or not */
Andreas Eversberg3c6a2ce2012-07-12 09:22:56 +020081 enum vty_type type;
Harald Welte3fb0b6f2010-05-19 19:02:52 +020082
Neels Hofmeyr87e45502017-06-20 00:17:59 +020083 /*! Node status of this vty */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020084 int node;
85
Neels Hofmeyr87e45502017-06-20 00:17:59 +020086 /*! Failure count */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020087 int fail;
88
Neels Hofmeyr87e45502017-06-20 00:17:59 +020089 /*! Output buffer. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020090 struct buffer *obuf;
91
Neels Hofmeyr87e45502017-06-20 00:17:59 +020092 /*! Command input buffer */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020093 char *buf;
94
Neels Hofmeyr87e45502017-06-20 00:17:59 +020095 /*! Command cursor point */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020096 int cp;
97
Neels Hofmeyr87e45502017-06-20 00:17:59 +020098 /*! Command length */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020099 int length;
100
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200101 /*! Command max length. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200102 int max;
103
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200104 /*! Histry of command */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200105 char *hist[VTY_MAXHIST];
106
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200107 /*! History lookup current point */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200108 int hp;
109
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200110 /*! History insert end point */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200111 int hindex;
112
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200113 /*! For current referencing point of interface, route-map,
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200114 access-list etc... */
115 void *index;
116
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200117 /*! For multiple level index treatment such as key chain and key. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200118 void *index_sub;
119
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200120 /*! For escape character. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200121 unsigned char escape;
122
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200123 /*! Current vty status. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200124 enum { VTY_NORMAL, VTY_CLOSE, VTY_MORE, VTY_MORELINE } status;
125
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200126 /*! IAC handling
Harald Welte7acb30c2011-08-17 17:13:48 +0200127 *
128 * IAC handling: was the last character received the IAC
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200129 * (interpret-as-command) escape character (and therefore the next
130 * character will be the command code)? Refer to Telnet RFC 854. */
131 unsigned char iac;
132
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200133 /*! IAC SB (option subnegotiation) handling */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200134 unsigned char iac_sb_in_progress;
135 /* At the moment, we care only about the NAWS (window size) negotiation,
136 * and that requires just a 5-character buffer (RFC 1073):
137 * <NAWS char> <16-bit width> <16-bit height> */
138#define TELNET_NAWS_SB_LEN 5
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200139 /*! sub-negotiation buffer */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200140 unsigned char sb_buf[TELNET_NAWS_SB_LEN];
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200141 /*! How many subnegotiation characters have we received?
Harald Welte7acb30c2011-08-17 17:13:48 +0200142 *
143 * We just drop those that do not fit in the buffer. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200144 size_t sb_len;
145
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200146 /*! Window width */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200147 int width;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200148 /*! Widnow height */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200149 int height;
150
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200151 /*! Configure lines. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200152 int lines;
153
154 int monitor;
155
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200156 /*! In configure mode. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200157 int config;
Neels Hofmeyr4a31ffa2017-09-07 03:08:06 +0200158
159 /*! List of parent nodes, last item is the outermost parent. */
160 struct llist_head parent_nodes;
161
162 /*! When reading from a config file, these are the indenting characters expected for children of
163 * the current VTY node. */
164 char *indent;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200165};
166
167/* Small macro to determine newline is newline only or linefeed needed. */
168#define VTY_NEWLINE ((vty->type == VTY_TERM) ? "\r\n" : "\n")
169
Andreas Eversberg3c6a2ce2012-07-12 09:22:56 +0200170static inline const char *vty_newline(struct vty *vty)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200171{
172 return VTY_NEWLINE;
173}
174
Harald Welte7acb30c2011-08-17 17:13:48 +0200175/*! Information an application registers with the VTY */
Harald Welte237f6242010-05-25 23:00:45 +0200176struct vty_app_info {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200177 /*! name of the application */
Holger Hans Peter Freytherdd195272010-06-08 16:12:58 +0800178 const char *name;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200179 /*! version string of the application */
Holger Hans Peter Freytherdd195272010-06-08 16:12:58 +0800180 const char *version;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200181 /*! copyright string of the application */
Holger Hans Peter Freytherdd195272010-06-08 16:12:58 +0800182 const char *copyright;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200183 /*! \ref talloc context */
Harald Welte237f6242010-05-25 23:00:45 +0200184 void *tall_ctx;
Neels Hofmeyrd31de232019-10-31 16:09:23 +0100185 /*! Call-back for taking actions upon exiting a node.
186 * The return value is ignored, and changes to vty->node and vty->index made in this callback are ignored.
187 * Implicit parent node tracking always sets the correct parent node and vty->index after this callback exits,
188 * so this callback can handle only those nodes that should take specific actions upon node exit, or can be left
189 * NULL entirely. */
Holger Hans Peter Freythera9e52522015-08-02 02:14:07 +0000190 int (*go_parent_cb)(struct vty *vty);
Neels Hofmeyrd31de232019-10-31 16:09:23 +0100191 /*! OBSOLETED: Implicit parent node tracking has replaced the use of this callback. This callback is no longer
192 * called, ever, and can be left NULL. */
Neels Hofmeyr70ce8712019-11-24 19:52:44 +0100193 int (*is_config_node)(struct vty *vty, int node)
194 OSMO_DEPRECATED("Implicit parent node tracking has replaced the use of this callback. This callback is"
195 " no longer called, ever, and can be left NULL.");
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200196 /*! Check if the config is consistent before write */
Holger Hans Peter Freyther9f0f9782014-11-21 10:40:07 +0100197 int (*config_is_consistent)(struct vty *vty);
Vadim Yanitskiy7f1ecd92020-08-15 22:16:30 +0700198 /*! Description of the application specific VTY attributes (optional). */
Vadim Yanitskiye566bdd2020-10-06 17:41:22 +0700199 const char * usr_attr_desc[VTY_CMD_USR_ATTR_NUM];
Vadim Yanitskiy7f1ecd92020-08-15 22:16:30 +0700200 /*! Flag letters of the application specific VTY attributes (optional). */
Vadim Yanitskiye566bdd2020-10-06 17:41:22 +0700201 char usr_attr_letters[VTY_CMD_USR_ATTR_NUM];
Harald Welte237f6242010-05-25 23:00:45 +0200202};
203
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200204/* Prototypes. */
Harald Welte237f6242010-05-25 23:00:45 +0200205void vty_init(struct vty_app_info *app_info);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200206int vty_read_config_file(const char *file_name, void *priv);
207void vty_init_vtysh (void);
208void vty_reset (void);
209struct vty *vty_new (void);
210struct vty *vty_create (int vty_sock, void *priv);
Neels Hofmeyr63053002019-04-10 02:41:53 +0200211bool vty_is_active(struct vty *vty);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200212int vty_out (struct vty *, const char *, ...) VTY_PRINTF_ATTRIBUTE(2, 3);
Neels Hofmeyrc1aa1782019-02-01 05:38:44 +0100213int vty_out_va(struct vty *vty, const char *format, va_list ap);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200214int vty_out_newline(struct vty *);
215int vty_read(struct vty *vty);
216//void vty_time_print (struct vty *, int);
217void vty_close (struct vty *);
218char *vty_get_cwd (void);
219void vty_log (const char *level, const char *proto, const char *fmt, va_list);
220int vty_config_lock (struct vty *);
221int vty_config_unlock (struct vty *);
222int vty_shell (struct vty *);
223int vty_shell_serv (struct vty *);
224void vty_hello (struct vty *);
Holger Hans Peter Freyther08aaded2010-09-14 02:24:03 +0800225void *vty_current_index(struct vty *);
226int vty_current_node(struct vty *vty);
Holger Hans Peter Freythera9e52522015-08-02 02:14:07 +0000227int vty_go_parent(struct vty *vty);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200228
Neels Hofmeyr96172f02016-02-23 14:01:41 +0100229/* Return IP address passed to the 'line vty'/'bind' command, or "127.0.0.1" */
230const char *vty_get_bind_addr(void);
Holger Hans Peter Freyther99ae4012018-12-15 17:36:41 +0000231/** Returns configured port passed to the 'line vty'/'bind' command or default_port. */
232int vty_get_bind_port(int default_port);
Neels Hofmeyr96172f02016-02-23 14:01:41 +0100233
Holger Hans Peter Freyther4aaccd72010-08-31 17:09:44 +0800234extern void *tall_vty_ctx;
Harald Welte7acb30c2011-08-17 17:13:48 +0200235
Harald Welted61d5172011-09-04 22:56:10 +0200236extern struct cmd_element cfg_description_cmd;
237extern struct cmd_element cfg_no_description_cmd;
238
Holger Hans Peter Freyther2c9168c2013-10-10 20:21:33 +0200239
240/**
241 * signal handling
242 */
243enum signal_vty {
244 S_VTY_EVENT,
245};
246
247struct vty_signal_data {
248 enum event event;
249 int sock;
250 struct vty *vty;
251};
252
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200253/*! @} */