]> git.proxmox.com Git - mirror_frr.git/blob - vtysh/vtysh.h
07ba8367dec0e044834d74c07047ff1b177fb18a
[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
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22 #ifndef VTYSH_H
23 #define VTYSH_H
24
25 #include "memory.h"
26 DECLARE_MGROUP(MVTYSH)
27
28 #define VTYSH_ZEBRA 0x01
29 #define VTYSH_RIPD 0x02
30 #define VTYSH_RIPNGD 0x04
31 #define VTYSH_OSPFD 0x08
32 #define VTYSH_OSPF6D 0x10
33 #define VTYSH_BGPD 0x20
34 #define VTYSH_ISISD 0x40
35 #define VTYSH_PIMD 0x100
36 #define VTYSH_LDPD 0x200
37 #define VTYSH_WATCHFRR 0x400
38 #define VTYSH_NHRPD 0x800
39
40 /* commands in REALLYALL are crucial to correct vtysh operation */
41 #define VTYSH_REALLYALL ~0U
42 /* watchfrr is not in ALL since library CLI functions should not be
43 * run on it (logging & co. should stay in a fixed/frozen config, and
44 * things like prefix lists are not even initialised) */
45 #define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD
46 #define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_PIMD
47 #define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD
48 #define VTYSH_NS VTYSH_ZEBRA
49 #define VTYSH_VRF VTYSH_ZEBRA
50
51 /* vtysh local configuration file. */
52 #define VTYSH_DEFAULT_CONFIG "vtysh.conf"
53 #define FRR_DEFAULT_CONFIG "frr.conf"
54
55 enum vtysh_write_integrated {
56 WRITE_INTEGRATED_UNSPECIFIED,
57 WRITE_INTEGRATED_NO,
58 WRITE_INTEGRATED_YES
59 };
60
61 extern enum vtysh_write_integrated vtysh_write_integrated;
62
63 extern char *quagga_config;
64
65 void vtysh_init_vty (void);
66 void vtysh_init_cmd (void);
67 extern int vtysh_connect_all (const char *optional_daemon_name);
68 void vtysh_readline_init (void);
69 void vtysh_user_init (void);
70
71 int vtysh_execute (const char *);
72 int vtysh_execute_no_pager (const char *);
73
74 char *vtysh_prompt (void);
75
76 void vtysh_config_write (void);
77
78 int vtysh_config_from_file (struct vty *, FILE *);
79
80 void config_add_line (struct list *, const char *);
81
82 int vtysh_mark_file(const char *filename);
83
84 int vtysh_read_config (const char *);
85 int vtysh_write_config_integrated (void);
86
87 void vtysh_config_parse_line (const char *);
88
89 void vtysh_config_dump (FILE *);
90
91 void vtysh_config_init (void);
92
93 void vtysh_pager_init (void);
94
95 /* Child process execution flag. */
96 extern int execute_flag;
97
98 extern struct vty *vty;
99
100 extern const char * vty_sock_path;
101
102 #endif /* VTYSH_H */