]> git.proxmox.com Git - mirror_frr.git/blame - vtysh/vtysh.h
lib: add cli preprocessor for `|` actions
[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
e5c83d9b
DS
27#define VTYSH_ZEBRA 0x0001
28#define VTYSH_RIPD 0x0002
29#define VTYSH_RIPNGD 0x0004
30#define VTYSH_OSPFD 0x0008
31#define VTYSH_OSPF6D 0x0010
32#define VTYSH_BGPD 0x0020
33#define VTYSH_ISISD 0x0040
34#define VTYSH_PIMD 0x0080
35#define VTYSH_LDPD 0x0100
36#define VTYSH_WATCHFRR 0x0200
37#define VTYSH_NHRPD 0x0400
38#define VTYSH_EIGRPD 0x0800
39#define VTYSH_BABELD 0x1000
40#define VTYSH_SHARPD 0x2000
41#define VTYSH_PBRD 0x4000
8a71d93d 42
67736451
MS
43#define VTYSH_WAS_ACTIVE (-2)
44
4a96e944
DL
45/* commands in REALLYALL are crucial to correct vtysh operation */
46#define VTYSH_REALLYALL ~0U
9473e340 47/* watchfrr is not in ALL since library CLI functions should not be
4a96e944
DL
48 * run on it (logging & co. should stay in a fixed/frozen config, and
49 * things like prefix lists are not even initialised) */
e5c83d9b 50#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
1753f727 51#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_EIGRPD|VTYSH_SHARPD
e5c83d9b 52#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
13460c44 53#define VTYSH_NS VTYSH_ZEBRA
6f2f0be8 54#define VTYSH_VRF VTYSH_ZEBRA|VTYSH_PIMD
718e3744 55
039eaca3
CF
56enum vtysh_write_integrated {
57 WRITE_INTEGRATED_UNSPECIFIED,
58 WRITE_INTEGRATED_NO,
59 WRITE_INTEGRATED_YES
60};
61
62extern enum vtysh_write_integrated vtysh_write_integrated;
63
9b8a8249
DL
64extern char frr_config[];
65extern char vtydir[];
cb947ba3 66
d62a17ae 67void vtysh_init_vty(void);
193a5a95 68void vtysh_uninit(void);
d62a17ae 69void vtysh_init_cmd(void);
70extern int vtysh_connect_all(const char *optional_daemon_name);
71void vtysh_readline_init(void);
72void vtysh_user_init(void);
718e3744 73
d62a17ae 74int vtysh_execute(const char *);
75int vtysh_execute_no_pager(const char *);
a4364a44 76int vtysh_execute_command_questionmark(char *input);
718e3744 77
d62a17ae 78char *vtysh_prompt(void);
718e3744 79
d62a17ae 80void vtysh_config_write(void);
718e3744 81
d62a17ae 82int vtysh_config_from_file(struct vty *, FILE *);
718e3744 83
d62a17ae 84void config_add_line(struct list *, const char *);
4201dd11 85
c0e8c16f 86int vtysh_mark_file(const char *filename);
0846286b 87
d62a17ae 88int vtysh_read_config(const char *);
89int vtysh_write_config_integrated(void);
718e3744 90
d62a17ae 91void vtysh_config_parse_line(void *, const char *);
718e3744 92
d62a17ae 93void vtysh_config_dump(FILE *);
718e3744 94
d62a17ae 95void vtysh_config_init(void);
718e3744 96
d62a17ae 97void vtysh_pager_init(void);
718e3744 98
32f3268f
DL
99void suid_on(void);
100void suid_off(void);
101
718e3744 102/* Child process execution flag. */
103extern int execute_flag;
104
105extern struct vty *vty;
106
186f6af2
LB
107extern int user_mode;
108
718e3744 109#endif /* VTYSH_H */