]> git.proxmox.com Git - mirror_frr.git/blame - vtysh/vtysh.h
Merge pull request #3502 from donaldsharp/socket_to_me_baby
[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
DL
24#include "memory.h"
25DECLARE_MGROUP(MVTYSH)
26
c2f29cf3
RZ
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
770ccdf8 44#define VTYSH_FABRICD 0x20000
8a71d93d 45
67736451
MS
46#define VTYSH_WAS_ACTIVE (-2)
47
4a96e944
DL
48/* commands in REALLYALL are crucial to correct vtysh operation */
49#define VTYSH_REALLYALL ~0U
9473e340 50/* watchfrr is not in ALL since library CLI functions should not be
4a96e944
DL
51 * run on it (logging & co. should stay in a fixed/frozen config, and
52 * things like prefix lists are not even initialised) */
770ccdf8
CF
53#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
54#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_EIGRPD|VTYSH_SHARPD|VTYSH_FABRICD
55#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
13460c44 56#define VTYSH_NS VTYSH_ZEBRA
88d52a3f 57#define VTYSH_VRF VTYSH_ZEBRA|VTYSH_PIMD|VTYSH_STATICD
3a3a24c8 58#define VTYSH_KEYS VTYSH_RIPD|VTYSH_EIGRPD
718e3744 59
039eaca3
CF
60enum vtysh_write_integrated {
61 WRITE_INTEGRATED_UNSPECIFIED,
62 WRITE_INTEGRATED_NO,
63 WRITE_INTEGRATED_YES
64};
65
66extern enum vtysh_write_integrated vtysh_write_integrated;
67
9b8a8249
DL
68extern char frr_config[];
69extern char vtydir[];
cb947ba3 70
d62a17ae 71void vtysh_init_vty(void);
193a5a95 72void vtysh_uninit(void);
d62a17ae 73void vtysh_init_cmd(void);
74extern int vtysh_connect_all(const char *optional_daemon_name);
75void vtysh_readline_init(void);
76void vtysh_user_init(void);
718e3744 77
d62a17ae 78int vtysh_execute(const char *);
79int vtysh_execute_no_pager(const char *);
a4364a44 80int vtysh_execute_command_questionmark(char *input);
718e3744 81
d62a17ae 82char *vtysh_prompt(void);
718e3744 83
d62a17ae 84void vtysh_config_write(void);
718e3744 85
d62a17ae 86int vtysh_config_from_file(struct vty *, FILE *);
718e3744 87
d62a17ae 88void config_add_line(struct list *, const char *);
4201dd11 89
c0e8c16f 90int vtysh_mark_file(const char *filename);
0846286b 91
d62a17ae 92int vtysh_read_config(const char *);
93int vtysh_write_config_integrated(void);
718e3744 94
d62a17ae 95void vtysh_config_parse_line(void *, const char *);
718e3744 96
2cddf2ff 97void vtysh_config_dump(void);
718e3744 98
d62a17ae 99void vtysh_config_init(void);
718e3744 100
32f3268f
DL
101void suid_on(void);
102void suid_off(void);
103
718e3744 104/* Child process execution flag. */
105extern int execute_flag;
106
107extern struct vty *vty;
108
186f6af2
LB
109extern int user_mode;
110
718e3744 111#endif /* VTYSH_H */