]> git.proxmox.com Git - mirror_frr.git/blame - vtysh/vtysh.h
vtysh: add motd command
[mirror_frr.git] / vtysh / vtysh.h
CommitLineData
718e3744 1/* Virtual terminal interface shell.
2 * Copyright (C) 2000 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#ifndef VTYSH_H
22#define VTYSH_H
23
4a1ab8e4 24#include "memory.h"
bf8d3d6a 25DECLARE_MGROUP(MVTYSH);
4a1ab8e4 26
bec667a6
DL
27struct thread_master;
28
29extern struct thread_master *master;
30
c2f29cf3
RZ
31#define VTYSH_ZEBRA 0x00001
32#define VTYSH_RIPD 0x00002
33#define VTYSH_RIPNGD 0x00004
34#define VTYSH_OSPFD 0x00008
35#define VTYSH_OSPF6D 0x00010
36#define VTYSH_BGPD 0x00020
37#define VTYSH_ISISD 0x00040
38#define VTYSH_PIMD 0x00080
39#define VTYSH_LDPD 0x00100
40#define VTYSH_WATCHFRR 0x00200
41#define VTYSH_NHRPD 0x00400
42#define VTYSH_EIGRPD 0x00800
43#define VTYSH_BABELD 0x01000
44#define VTYSH_SHARPD 0x02000
45#define VTYSH_PBRD 0x04000
46#define VTYSH_STATICD 0x08000
47#define VTYSH_BFDD 0x10000
770ccdf8 48#define VTYSH_FABRICD 0x20000
5435a2bf 49#define VTYSH_VRRPD 0x40000
4d7b695d 50#define VTYSH_PATHD 0x80000
e8515e32 51#define VTYSH_PIM6D 0x100000
8a71d93d 52
67736451
MS
53#define VTYSH_WAS_ACTIVE (-2)
54
4a96e944
DL
55/* commands in REALLYALL are crucial to correct vtysh operation */
56#define VTYSH_REALLYALL ~0U
9473e340 57/* watchfrr is not in ALL since library CLI functions should not be
4a96e944
DL
58 * run on it (logging & co. should stay in a fixed/frozen config, and
59 * things like prefix lists are not even initialised) */
e8515e32 60#define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_SHARPD|VTYSH_PBRD|VTYSH_STATICD|VTYSH_BFDD|VTYSH_FABRICD|VTYSH_VRRPD|VTYSH_PATHD
61#define VTYSH_ACL VTYSH_BFDD|VTYSH_BABELD|VTYSH_BGPD|VTYSH_EIGRPD|VTYSH_ISISD|VTYSH_FABRICD|VTYSH_LDPD|VTYSH_NHRPD|VTYSH_OSPF6D|VTYSH_OSPFD|VTYSH_PBRD|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_VRRPD|VTYSH_ZEBRA
62#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_EIGRPD|VTYSH_FABRICD
4cd690ae
PG
63#define VTYSH_INTERFACE_SUBSET \
64 VTYSH_ZEBRA | VTYSH_RIPD | VTYSH_RIPNGD | VTYSH_OSPFD | VTYSH_OSPF6D | \
65 VTYSH_ISISD | VTYSH_PIMD | VTYSH_PIM6D | VTYSH_NHRPD | \
66 VTYSH_EIGRPD | VTYSH_BABELD | VTYSH_PBRD | VTYSH_FABRICD | \
67 VTYSH_VRRPD
68#define VTYSH_INTERFACE VTYSH_INTERFACE_SUBSET | VTYSH_BGPD
69#define VTYSH_VRF VTYSH_INTERFACE_SUBSET | VTYSH_STATICD
b25bd2ad 70#define VTYSH_KEYS VTYSH_RIPD | VTYSH_EIGRPD | VTYSH_OSPF6D
7183a034
MS
71/* Daemons who can process nexthop-group configs */
72#define VTYSH_NH_GROUP VTYSH_PBRD|VTYSH_SHARPD
6c0a7c09 73#define VTYSH_SR VTYSH_ZEBRA|VTYSH_PATHD
36c3b296 74#define VTYSH_DPDK VTYSH_ZEBRA
718e3744 75
039eaca3
CF
76enum vtysh_write_integrated {
77 WRITE_INTEGRATED_UNSPECIFIED,
78 WRITE_INTEGRATED_NO,
79 WRITE_INTEGRATED_YES
80};
81
82extern enum vtysh_write_integrated vtysh_write_integrated;
83
9b8a8249
DL
84extern char frr_config[];
85extern char vtydir[];
4c92dd90 86extern bool vtysh_loop_exited;
cb947ba3 87
d62a17ae 88void vtysh_init_vty(void);
193a5a95 89void vtysh_uninit(void);
d62a17ae 90void vtysh_init_cmd(void);
91extern int vtysh_connect_all(const char *optional_daemon_name);
92void vtysh_readline_init(void);
93void vtysh_user_init(void);
718e3744 94
d62a17ae 95int vtysh_execute(const char *);
96int vtysh_execute_no_pager(const char *);
a4364a44 97int vtysh_execute_command_questionmark(char *input);
718e3744 98
d62a17ae 99char *vtysh_prompt(void);
718e3744 100
d62a17ae 101void vtysh_config_write(void);
718e3744 102
d62a17ae 103int vtysh_config_from_file(struct vty *, FILE *);
718e3744 104
d62a17ae 105void config_add_line(struct list *, const char *);
4201dd11 106
c0e8c16f 107int vtysh_mark_file(const char *filename);
0846286b 108
77f7b4b0 109int vtysh_read_config(const char *filename, bool dry_run);
d62a17ae 110int vtysh_write_config_integrated(void);
718e3744 111
d62a17ae 112void vtysh_config_parse_line(void *, const char *);
718e3744 113
2cddf2ff 114void vtysh_config_dump(void);
718e3744 115
d62a17ae 116void vtysh_config_init(void);
718e3744 117
32f3268f
DL
118void suid_on(void);
119void suid_off(void);
120
718e3744 121/* Child process execution flag. */
122extern int execute_flag;
123
124extern struct vty *vty;
125
186f6af2
LB
126extern int user_mode;
127
744bc17d
CH
128extern bool vtysh_add_timestamp;
129
718e3744 130#endif /* VTYSH_H */