]> git.proxmox.com Git - mirror_frr.git/blob - vtysh/vtysh.h
Merge pull request #10546 from ton31337/fix/check_for_null_inside_unintern
[mirror_frr.git] / vtysh / vtysh.h
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 *
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
19 */
20
21 #ifndef VTYSH_H
22 #define VTYSH_H
23
24 #include "memory.h"
25 DECLARE_MGROUP(MVTYSH);
26
27 #define VTYSH_ZEBRA 0x00001
28 #define VTYSH_RIPD 0x00002
29 #define VTYSH_RIPNGD 0x00004
30 #define VTYSH_OSPFD 0x00008
31 #define VTYSH_OSPF6D 0x00010
32 #define VTYSH_BGPD 0x00020
33 #define VTYSH_ISISD 0x00040
34 #define VTYSH_PIMD 0x00080
35 #define VTYSH_LDPD 0x00100
36 #define VTYSH_WATCHFRR 0x00200
37 #define VTYSH_NHRPD 0x00400
38 #define VTYSH_EIGRPD 0x00800
39 #define VTYSH_BABELD 0x01000
40 #define VTYSH_SHARPD 0x02000
41 #define VTYSH_PBRD 0x04000
42 #define VTYSH_STATICD 0x08000
43 #define VTYSH_BFDD 0x10000
44 #define VTYSH_FABRICD 0x20000
45 #define VTYSH_VRRPD 0x40000
46 #define VTYSH_PATHD 0x80000
47
48 #define VTYSH_WAS_ACTIVE (-2)
49
50 /* commands in REALLYALL are crucial to correct vtysh operation */
51 #define VTYSH_REALLYALL ~0U
52 /* watchfrr is not in ALL since library CLI functions should not be
53 * run on it (logging & co. should stay in a fixed/frozen config, and
54 * things like prefix lists are not even initialised) */
55 #define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_SHARPD|VTYSH_PBRD|VTYSH_STATICD|VTYSH_BFDD|VTYSH_FABRICD|VTYSH_VRRPD|VTYSH_PATHD
56 #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_RIPD|VTYSH_RIPNGD|VTYSH_VRRPD|VTYSH_ZEBRA
57 #define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_EIGRPD|VTYSH_FABRICD
58 #define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_PBRD|VTYSH_FABRICD|VTYSH_VRRPD
59 #define VTYSH_VRF VTYSH_INTERFACE|VTYSH_STATICD
60 #define VTYSH_KEYS VTYSH_RIPD | VTYSH_EIGRPD | VTYSH_OSPF6D
61 /* Daemons who can process nexthop-group configs */
62 #define VTYSH_NH_GROUP VTYSH_PBRD|VTYSH_SHARPD
63 #define VTYSH_SR VTYSH_ZEBRA|VTYSH_PATHD
64
65 enum vtysh_write_integrated {
66 WRITE_INTEGRATED_UNSPECIFIED,
67 WRITE_INTEGRATED_NO,
68 WRITE_INTEGRATED_YES
69 };
70
71 extern enum vtysh_write_integrated vtysh_write_integrated;
72
73 extern char frr_config[];
74 extern char vtydir[];
75
76 void vtysh_init_vty(void);
77 void vtysh_uninit(void);
78 void vtysh_init_cmd(void);
79 extern int vtysh_connect_all(const char *optional_daemon_name);
80 void vtysh_readline_init(void);
81 void vtysh_user_init(void);
82
83 int vtysh_execute(const char *);
84 int vtysh_execute_no_pager(const char *);
85 int vtysh_execute_command_questionmark(char *input);
86
87 char *vtysh_prompt(void);
88
89 void vtysh_config_write(void);
90
91 int vtysh_config_from_file(struct vty *, FILE *);
92
93 void config_add_line(struct list *, const char *);
94
95 int vtysh_mark_file(const char *filename);
96
97 int vtysh_read_config(const char *filename, bool dry_run);
98 int vtysh_write_config_integrated(void);
99
100 void vtysh_config_parse_line(void *, const char *);
101
102 void vtysh_config_dump(void);
103
104 void vtysh_config_init(void);
105
106 void suid_on(void);
107 void suid_off(void);
108
109 /* Child process execution flag. */
110 extern int execute_flag;
111
112 extern struct vty *vty;
113
114 extern int user_mode;
115
116 extern bool vtysh_add_timestamp;
117
118 #endif /* VTYSH_H */