17#define VTY_PRINTF_ATTRIBUTE(a,b) __attribute__ ((__format__ (__printf__, a, b)))
19#define VTY_PRINTF_ATTRIBUTE(a,b)
23#define ERRNO_IO_RETRY(EN) \
24 (((EN) == EAGAIN) || ((EN) == EWOULDBLOCK) || ((EN) == EINTR))
27#define VTY_READ_BUFSIZ 512
33#define VTY_CMD_USR_ATTR_NUM 32
35#define VTY_CMD_ATTR_FLAGS_RESERVED \
36 { '.', '!', '@', '^' }
128#define TELNET_NAWS_SB_LEN 5
161#define VTY_NEWLINE ((vty->type == VTY_TERM) ? "\r\n" : "\n")
187 OSMO_DEPRECATED(
"Implicit parent node tracking has replaced the use of this callback. This callback is"
188 " no longer called, ever, and can be left NULL.");
215void vty_log (const
char *level, const
char *proto, const
char *fmt, va_list);
vty
Definition: tdef_vty.c:296
static struct timespec starttime
Definition: command.c:71
#define OSMO_DEPRECATED(text)
int vty_go_parent(struct vty *vty)
Definition: command.c:2484
int vty_config_lock(struct vty *)
Lock the configuration to a given VTY.
Definition: vty.c:379
vty_type
Definition: vty.h:52
struct vty * vty_new(void)
Allocate a new vty interface structure.
Definition: vty.c:116
void vty_reset(void)
Reset all VTY status.
Definition: vty.c:1784
#define VTY_MAXHIST
Definition: vty.h:30
int vty_shell_serv(struct vty *)
Definition: vty.c:1829
#define VTY_NEWLINE
Definition: vty.h:161
#define VTY_CMD_USR_ATTR_NUM
Definition: vty.h:33
int vty_read_config_filep(FILE *confp, void *priv)
Read up VTY configuration from a file stream.
Definition: vty.c:1514
#define VTY_PRINTF_ATTRIBUTE(a, b)
Definition: vty.h:19
int vty_out_uptime(struct vty *vty, const struct timespec *starttime)
calculates the time difference of a give timespec to the current time and prints in a human readable ...
Definition: vty.c:345
struct cmd_element cfg_description_cmd
void vty_init_vtysh(void)
Definition: vty.c:1834
int vty_read(struct vty *vty)
Read data via vty socket.
Definition: vty.c:1318
int vty_read_config_file(const char *file_name, void *priv)
Read the configuration file using the VTY code.
Definition: vty.c:1911
void vty_log(const char *level, const char *proto, const char *fmt, va_list)
int vty_current_node(struct vty *vty)
return the current node of a given VTY
Definition: vty.c:368
int vty_shell(struct vty *)
Return if this VTY is a shell or not.
Definition: vty.c:261
char * vty_get_cwd(void)
Definition: vty.c:1824
static const char * vty_newline(struct vty *vty)
Definition: vty.h:163
bool vty_is_active(struct vty *vty)
Definition: telnet_interface.c:219
void vty_close(struct vty *)
Close a given vty interface.
Definition: vty.c:218
void vty_hello(struct vty *)
Definition: vty.c:402
int vty_get_bind_port(int default_port)
Returns configured port passed to the 'line vty'/'bind' command or default_port.
Definition: vty.c:1684
void vty_flush(struct vty *vty)
Definition: vty.c:211
const char * vty_get_bind_addr(void)
Definition: vty.c:1677
int vty_config_unlock(struct vty *)
Unlock the configuration from a given VTY.
Definition: vty.c:392
int vty_out_newline(struct vty *)
print a newline on the given VTY
Definition: vty.c:335
struct vty * vty_create(int vty_sock, void *priv)
Create new vty structure.
Definition: vty.c:1558
struct cmd_element cfg_no_description_cmd
int int vty_out_va(struct vty *vty, const char *format, va_list ap)
Definition: vty.c:266
void * vty_current_index(struct vty *)
return the current index of a given VTY
Definition: vty.c:362
int vty_out(struct vty *, const char *,...) VTY_PRINTF_ATTRIBUTE(2
void vty_init(struct vty_app_info *app_info)
Initialize VTY layer.
Definition: vty.c:1843
signal_vty
signal handling
Definition: vty.h:239
void * tall_vty_ctx
Definition: vty.c:108
@ VTY_FILE
Definition: vty.h:54
@ VTY_SHELL
Definition: vty.h:55
@ VTY_SHELL_SERV
Definition: vty.h:56
@ VTY_TERM
Definition: vty.h:53
@ VTY_WRITE
Definition: vty.h:42
@ VTY_SERV
Definition: vty.h:40
@ VTY_READ
Definition: vty.h:41
@ VTY_CLOSED
Definition: vty.h:43
@ VTY_TIMEOUT_RESET
Definition: vty.h:44
@ S_VTY_EVENT
Definition: vty.h:240
Structure of a command element.
Definition: command.h:175
Information an application registers with the VTY.
Definition: vty.h:169
int(* config_is_consistent)(struct vty *vty)
Check if the config is consistent before write.
Definition: vty.h:190
const char * version
version string of the application
Definition: vty.h:173
const char * name
name of the application
Definition: vty.h:171
char usr_attr_letters[VTY_CMD_USR_ATTR_NUM]
Flag letters of the application specific VTY attributes (optional).
Definition: vty.h:194
const char * copyright
copyright string of the application
Definition: vty.h:175
const char * usr_attr_desc[VTY_CMD_USR_ATTR_NUM]
Description of the application specific VTY attributes (optional).
Definition: vty.h:192
int(* go_parent_cb)(struct vty *vty)
Call-back for taking actions upon exiting a node.
Definition: vty.h:183
void * tall_ctx
talloc context
Definition: vty.h:177
int(* is_config_node)(struct vty *vty, int node) OSMO_DEPRECATED("Implicit parent node tracking has replaced the use of this callback. This callback is" " no longer called
OBSOLETED: Implicit parent node tracking has replaced the use of this callback.
Definition: vty.h:186
enum event event
Definition: vty.h:244
struct vty * vty
Definition: vty.h:246
int sock
Definition: vty.h:245
Internal representation of a single VTY.
Definition: vty.h:60
struct buffer * obuf
Output buffer.
Definition: vty.h:80
int fail
Failure count.
Definition: vty.h:77
int config
In configure mode.
Definition: vty.h:147
void * priv
private data, specified by creator
Definition: vty.h:65
int length
Command length.
Definition: vty.h:89
void * index_sub
For multiple level index treatment such as key chain and key.
Definition: vty.h:108
enum vty::@2 status
Current vty status.
char * hist[VTY_MAXHIST]
Histry of command.
Definition: vty.h:95
int width
Window width.
Definition: vty.h:137
unsigned char escape
For escape character.
Definition: vty.h:111
struct llist_head parent_nodes
List of parent nodes, last item is the outermost parent.
Definition: vty.h:150
char * indent
When reading from a config file, these are the indenting characters expected for children of the curr...
Definition: vty.h:154
int hp
History lookup current point.
Definition: vty.h:98
FILE * file
underlying file (if any)
Definition: vty.h:62
unsigned char iac
IAC handling.
Definition: vty.h:121
int height
Widnow height.
Definition: vty.h:139
size_t sb_len
How many subnegotiation characters have we received?
Definition: vty.h:134
void * index
For current referencing point of interface, route-map, access-list etc...
Definition: vty.h:105
unsigned char sb_buf[TELNET_NAWS_SB_LEN]
sub-negotiation buffer
Definition: vty.h:130
int node
Node status of this vty.
Definition: vty.h:74
char * buf
Command input buffer.
Definition: vty.h:83
bool expert_mode
Whether the expert mode is enabled.
Definition: vty.h:157
int cp
Command cursor point.
Definition: vty.h:86
@ VTY_MORELINE
Definition: vty.h:114
@ VTY_NORMAL
Definition: vty.h:114
@ VTY_MORE
Definition: vty.h:114
@ VTY_CLOSE
Definition: vty.h:114
int monitor
Definition: vty.h:144
int max
Command max length.
Definition: vty.h:92
enum vty_type type
Is this vty connect to file or not.
Definition: vty.h:71
int fd
File descripter of this vty.
Definition: vty.h:68
int hindex
History insert end point.
Definition: vty.h:101
int lines
Configure lines.
Definition: vty.h:142
unsigned char iac_sb_in_progress
IAC SB (option subnegotiation) handling.
Definition: vty.h:124
#define TELNET_NAWS_SB_LEN
Definition: vty.h:128