blob: d34433fa5f1d629c8aa3548622df928a006b501c [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
Vadim Yanitskiyef4c5972020-10-07 13:44:31 +070033/* Flag characters reserved for global VTY attributes */
34#define VTY_CMD_ATTR_FLAGS_RESERVED \
Vadim Yanitskiy72b90882020-10-21 05:07:34 +070035 { '.', '!', '@', '^' }
Vadim Yanitskiye566bdd2020-10-06 17:41:22 +070036
Neels Hofmeyr87e45502017-06-20 00:17:59 +020037/*! VTY events */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020038enum event {
39 VTY_SERV,
40 VTY_READ,
41 VTY_WRITE,
42 VTY_CLOSED,
43 VTY_TIMEOUT_RESET,
44#ifdef VTYSH
45 VTYSH_SERV,
46 VTYSH_READ,
47 VTYSH_WRITE
48#endif /* VTYSH */
49};
50
Andreas Eversberg3c6a2ce2012-07-12 09:22:56 +020051enum vty_type {
52 VTY_TERM,
53 VTY_FILE,
54 VTY_SHELL,
55 VTY_SHELL_SERV
56};
57
Neels Hofmeyr4a31ffa2017-09-07 03:08:06 +020058struct vty_parent_node {
59 struct llist_head entry;
60
61 /*! private data, specified by creator */
62 void *priv;
63
64 /*! Node status of this vty */
65 int node;
66
67 /*! When reading from a config file, these are the indenting characters expected for children of
68 * this VTY node. */
69 char *indent;
70};
71
Harald Welte7acb30c2011-08-17 17:13:48 +020072/*! Internal representation of a single VTY */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020073struct vty {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020074 /*! underlying file (if any) */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020075 FILE *file;
76
Neels Hofmeyr87e45502017-06-20 00:17:59 +020077 /*! private data, specified by creator */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020078 void *priv;
79
Neels Hofmeyr87e45502017-06-20 00:17:59 +020080 /*! File descripter of this vty. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020081 int fd;
82
Neels Hofmeyr87e45502017-06-20 00:17:59 +020083 /*! Is this vty connect to file or not */
Andreas Eversberg3c6a2ce2012-07-12 09:22:56 +020084 enum vty_type type;
Harald Welte3fb0b6f2010-05-19 19:02:52 +020085
Neels Hofmeyr87e45502017-06-20 00:17:59 +020086 /*! Node status of this vty */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020087 int node;
88
Neels Hofmeyr87e45502017-06-20 00:17:59 +020089 /*! Failure count */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020090 int fail;
91
Neels Hofmeyr87e45502017-06-20 00:17:59 +020092 /*! Output buffer. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020093 struct buffer *obuf;
94
Neels Hofmeyr87e45502017-06-20 00:17:59 +020095 /*! Command input buffer */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020096 char *buf;
97
Neels Hofmeyr87e45502017-06-20 00:17:59 +020098 /*! Command cursor point */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020099 int cp;
100
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200101 /*! Command length */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200102 int length;
103
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200104 /*! Command max length. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200105 int max;
106
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200107 /*! Histry of command */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200108 char *hist[VTY_MAXHIST];
109
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200110 /*! History lookup current point */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200111 int hp;
112
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200113 /*! History insert end point */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200114 int hindex;
115
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200116 /*! For current referencing point of interface, route-map,
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200117 access-list etc... */
118 void *index;
119
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200120 /*! For multiple level index treatment such as key chain and key. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200121 void *index_sub;
122
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200123 /*! For escape character. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200124 unsigned char escape;
125
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200126 /*! Current vty status. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200127 enum { VTY_NORMAL, VTY_CLOSE, VTY_MORE, VTY_MORELINE } status;
128
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200129 /*! IAC handling
Harald Welte7acb30c2011-08-17 17:13:48 +0200130 *
131 * IAC handling: was the last character received the IAC
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200132 * (interpret-as-command) escape character (and therefore the next
133 * character will be the command code)? Refer to Telnet RFC 854. */
134 unsigned char iac;
135
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200136 /*! IAC SB (option subnegotiation) handling */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200137 unsigned char iac_sb_in_progress;
138 /* At the moment, we care only about the NAWS (window size) negotiation,
139 * and that requires just a 5-character buffer (RFC 1073):
140 * <NAWS char> <16-bit width> <16-bit height> */
141#define TELNET_NAWS_SB_LEN 5
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200142 /*! sub-negotiation buffer */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200143 unsigned char sb_buf[TELNET_NAWS_SB_LEN];
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200144 /*! How many subnegotiation characters have we received?
Harald Welte7acb30c2011-08-17 17:13:48 +0200145 *
146 * We just drop those that do not fit in the buffer. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200147 size_t sb_len;
148
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200149 /*! Window width */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200150 int width;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200151 /*! Widnow height */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200152 int height;
153
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200154 /*! Configure lines. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200155 int lines;
156
157 int monitor;
158
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200159 /*! In configure mode. */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200160 int config;
Neels Hofmeyr4a31ffa2017-09-07 03:08:06 +0200161
162 /*! List of parent nodes, last item is the outermost parent. */
163 struct llist_head parent_nodes;
164
165 /*! When reading from a config file, these are the indenting characters expected for children of
166 * the current VTY node. */
167 char *indent;
Vadim Yanitskiy0a2d9bd2020-10-25 16:34:57 +0700168
169 /*! Whether the expert mode is enabled. */
170 bool expert_mode;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200171};
172
173/* Small macro to determine newline is newline only or linefeed needed. */
174#define VTY_NEWLINE ((vty->type == VTY_TERM) ? "\r\n" : "\n")
175
Andreas Eversberg3c6a2ce2012-07-12 09:22:56 +0200176static inline const char *vty_newline(struct vty *vty)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200177{
178 return VTY_NEWLINE;
179}
180
Harald Welte7acb30c2011-08-17 17:13:48 +0200181/*! Information an application registers with the VTY */
Harald Welte237f6242010-05-25 23:00:45 +0200182struct vty_app_info {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200183 /*! name of the application */
Holger Hans Peter Freytherdd195272010-06-08 16:12:58 +0800184 const char *name;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200185 /*! version string of the application */
Holger Hans Peter Freytherdd195272010-06-08 16:12:58 +0800186 const char *version;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200187 /*! copyright string of the application */
Holger Hans Peter Freytherdd195272010-06-08 16:12:58 +0800188 const char *copyright;
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200189 /*! \ref talloc context */
Harald Welte237f6242010-05-25 23:00:45 +0200190 void *tall_ctx;
Neels Hofmeyrd31de232019-10-31 16:09:23 +0100191 /*! Call-back for taking actions upon exiting a node.
192 * The return value is ignored, and changes to vty->node and vty->index made in this callback are ignored.
193 * Implicit parent node tracking always sets the correct parent node and vty->index after this callback exits,
194 * so this callback can handle only those nodes that should take specific actions upon node exit, or can be left
195 * NULL entirely. */
Holger Hans Peter Freythera9e52522015-08-02 02:14:07 +0000196 int (*go_parent_cb)(struct vty *vty);
Neels Hofmeyrd31de232019-10-31 16:09:23 +0100197 /*! OBSOLETED: Implicit parent node tracking has replaced the use of this callback. This callback is no longer
198 * called, ever, and can be left NULL. */
Neels Hofmeyr70ce8712019-11-24 19:52:44 +0100199 int (*is_config_node)(struct vty *vty, int node)
200 OSMO_DEPRECATED("Implicit parent node tracking has replaced the use of this callback. This callback is"
201 " no longer called, ever, and can be left NULL.");
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200202 /*! Check if the config is consistent before write */
Holger Hans Peter Freyther9f0f9782014-11-21 10:40:07 +0100203 int (*config_is_consistent)(struct vty *vty);
Vadim Yanitskiy7f1ecd92020-08-15 22:16:30 +0700204 /*! Description of the application specific VTY attributes (optional). */
Vadim Yanitskiye566bdd2020-10-06 17:41:22 +0700205 const char * usr_attr_desc[VTY_CMD_USR_ATTR_NUM];
Vadim Yanitskiy7f1ecd92020-08-15 22:16:30 +0700206 /*! Flag letters of the application specific VTY attributes (optional). */
Vadim Yanitskiye566bdd2020-10-06 17:41:22 +0700207 char usr_attr_letters[VTY_CMD_USR_ATTR_NUM];
Harald Welte237f6242010-05-25 23:00:45 +0200208};
209
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200210/* Prototypes. */
Harald Welte237f6242010-05-25 23:00:45 +0200211void vty_init(struct vty_app_info *app_info);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200212int vty_read_config_file(const char *file_name, void *priv);
213void vty_init_vtysh (void);
214void vty_reset (void);
215struct vty *vty_new (void);
216struct vty *vty_create (int vty_sock, void *priv);
Neels Hofmeyr63053002019-04-10 02:41:53 +0200217bool vty_is_active(struct vty *vty);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200218int vty_out (struct vty *, const char *, ...) VTY_PRINTF_ATTRIBUTE(2, 3);
Neels Hofmeyrc1aa1782019-02-01 05:38:44 +0100219int vty_out_va(struct vty *vty, const char *format, va_list ap);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200220int vty_out_newline(struct vty *);
221int vty_read(struct vty *vty);
222//void vty_time_print (struct vty *, int);
223void vty_close (struct vty *);
224char *vty_get_cwd (void);
225void vty_log (const char *level, const char *proto, const char *fmt, va_list);
226int vty_config_lock (struct vty *);
227int vty_config_unlock (struct vty *);
228int vty_shell (struct vty *);
229int vty_shell_serv (struct vty *);
230void vty_hello (struct vty *);
Holger Hans Peter Freyther08aaded2010-09-14 02:24:03 +0800231void *vty_current_index(struct vty *);
232int vty_current_node(struct vty *vty);
Holger Hans Peter Freythera9e52522015-08-02 02:14:07 +0000233int vty_go_parent(struct vty *vty);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200234
Neels Hofmeyr96172f02016-02-23 14:01:41 +0100235/* Return IP address passed to the 'line vty'/'bind' command, or "127.0.0.1" */
236const char *vty_get_bind_addr(void);
Holger Hans Peter Freyther99ae4012018-12-15 17:36:41 +0000237/** Returns configured port passed to the 'line vty'/'bind' command or default_port. */
238int vty_get_bind_port(int default_port);
Neels Hofmeyr96172f02016-02-23 14:01:41 +0100239
Holger Hans Peter Freyther4aaccd72010-08-31 17:09:44 +0800240extern void *tall_vty_ctx;
Harald Welte7acb30c2011-08-17 17:13:48 +0200241
Harald Welted61d5172011-09-04 22:56:10 +0200242extern struct cmd_element cfg_description_cmd;
243extern struct cmd_element cfg_no_description_cmd;
244
Holger Hans Peter Freyther2c9168c2013-10-10 20:21:33 +0200245
246/**
247 * signal handling
248 */
249enum signal_vty {
250 S_VTY_EVENT,
251};
252
253struct vty_signal_data {
254 enum event event;
255 int sock;
256 struct vty *vty;
257};
258
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200259/*! @} */