]> git.proxmox.com Git - mirror_frr.git/blame - lib/libfrr.h
lib: mgmtd: add manual vty server start option and use it
[mirror_frr.git] / lib / libfrr.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
4f04a76b
DL
2/*
3 * libfrr overall management functions
4 *
5 * Copyright (C) 2016 David Lamparter for NetDEF, Inc.
4f04a76b
DL
6 */
7
8#ifndef _ZEBRA_FRR_H
9#define _ZEBRA_FRR_H
10
da2fc191 11#include "typesafe.h"
4f04a76b
DL
12#include "sigevent.h"
13#include "privs.h"
24a58196 14#include "frrevent.h"
4f04a76b
DL
15#include "log.h"
16#include "getopt.h"
30771d65 17#include "module.h"
a5b38c5b 18#include "hook.h"
1c2facd1 19#include "northbound.h"
4f04a76b 20
5e244469
RW
21#ifdef __cplusplus
22extern "C" {
23#endif
24
0a7c7856
DL
25/* The following options disable specific command line options that
26 * are not applicable for a particular daemon.
27 */
4f04a76b
DL
28#define FRR_NO_PRIVSEP (1 << 0)
29#define FRR_NO_TCPVTY (1 << 1)
857b5446 30#define FRR_LIMITED_CLI (1 << 2)
b1dc60f4
DL
31#define FRR_NO_SPLIT_CONFIG (1 << 3)
32#define FRR_NO_PID (1 << 4)
33#define FRR_NO_CFG_PID_DRY (FRR_NO_PID | FRR_NO_SPLIT_CONFIG)
34#define FRR_NO_ZCLIENT (1 << 5)
0a7c7856
DL
35/* If FRR_DETACH_LATER is used, the daemon will keep its parent running
36 * until frr_detach() is called. Normally "somedaemon -d" returns once the
37 * main event loop is reached in the daemon; use this for extra startup bits.
38 *
39 * Does nothing if -d isn't used.
40 */
b1dc60f4 41#define FRR_DETACH_LATER (1 << 6)
5ba56130
CH
42/* If FRR_MANUAL_VTY_START is used, frr_run() will not automatically start
43 * listening on for vty connection (either TCP or Unix socket based). The daemon
44 * is responsible for calling frr_vty_serv() itself.
45 */
46#define FRR_MANUAL_VTY_START (1 << 7)
4f04a76b 47
da2fc191
DL
48PREDECL_DLIST(log_args);
49struct log_arg {
50 struct log_args_item itm;
51
52 char target[0];
53};
54DECLARE_DLIST(log_args, struct log_arg, itm);
55
1c2facd1
RW
56enum frr_cli_mode {
57 FRR_CLI_CLASSIC = 0,
58 FRR_CLI_TRANSACTIONAL,
59};
60
4f04a76b
DL
61struct frr_daemon_info {
62 unsigned flags;
63
64 const char *progname;
eb05883f 65 const char *name;
bf1013e6 66 const char *logname;
4f04a76b 67 unsigned short instance;
30771d65 68 struct frrmod_runtime *module;
4f04a76b
DL
69
70 char *vty_addr;
71 int vty_port;
72 char *vty_sock_path;
eb05883f
DL
73 bool dryrun;
74 bool daemon_mode;
cff2b211 75 bool terminal;
1c2facd1 76 enum frr_cli_mode cli_mode;
9e224e60 77
e6685141 78 struct event *read_in;
eb05883f 79 const char *config_file;
573de11f 80 const char *backup_config_file;
eb05883f 81 const char *pid_file;
1c2facd1
RW
82#ifdef HAVE_SQLITE3
83 const char *db_file;
84#endif
eb05883f 85 const char *vty_path;
80b4df3b 86 const char *module_path;
e4e0229a 87 const char *script_path;
43e587c1 88
d1b4fc1f 89 const char *pathspace;
43e587c1
DS
90 bool zpathspace;
91
da2fc191 92 struct log_args_head early_logging[1];
e9b4e74a 93 const char *early_loglevel;
4f04a76b
DL
94
95 const char *proghelp;
96 void (*printhelp)(FILE *target);
97 const char *copyright;
16077f2f 98 char startinfo[128];
4f04a76b 99
7cc91e67 100 struct frr_signal_t *signals;
4f04a76b
DL
101 size_t n_signals;
102
103 struct zebra_privs_t *privs;
1c2facd1 104
0d8c7a26 105 const struct frr_yang_module_info *const *yang_modules;
1c2facd1 106 size_t n_yang_modules;
2950f5da
DS
107
108 bool log_always;
1a9f340b
MS
109
110 /* Optional upper limit on the number of fds used in select/poll */
111 uint32_t limit_fds;
4f04a76b
DL
112};
113
114/* execname is the daemon's executable (and pidfile and configfile) name,
115 * i.e. "zebra" or "bgpd"
116 * constname is the daemons source-level name, primarily for the logging ID,
117 * i.e. "ZEBRA" or "BGP"
118 *
119 * note that this macro is also a latch-on point for other changes (e.g.
30771d65 120 * upcoming module support) that need to place some per-daemon things. Each
4f04a76b
DL
121 * daemon should have one of these.
122 */
d62a17ae 123#define FRR_DAEMON_INFO(execname, constname, ...) \
124 static struct frr_daemon_info execname##_di = {.name = #execname, \
125 .logname = #constname, \
126 .module = THIS_MODULE, \
127 __VA_ARGS__}; \
128 FRR_COREMOD_SETUP(.name = #execname, \
129 .description = #execname " daemon", \
80413c20
DL
130 .version = FRR_VERSION, ); \
131 MACRO_REQUIRE_SEMICOLON() /* end */
d62a17ae 132
43e587c1 133extern void frr_init_vtydir(void);
d62a17ae 134extern void frr_preinit(struct frr_daemon_info *daemon, int argc, char **argv);
135extern void frr_opt_add(const char *optstr, const struct option *longopts,
136 const char *helpstr);
137extern int frr_getopt(int argc, char *const argv[], int *longindex);
b25b2925
RK
138
139extern __attribute__((__noreturn__)) void frr_help_exit(int status);
4f04a76b 140
cd9d0537 141extern struct event_loop *frr_init(void);
1c2facd1
RW
142extern const char *frr_get_progname(void);
143extern enum frr_cli_mode frr_get_cli_mode(void);
6e3253b9
DL
144extern uint32_t frr_get_fd_limit(void);
145extern bool frr_is_startup_fd(int fd);
4f04a76b 146
bf645e31 147/* call order of these hooks is as ordered here */
cd9d0537
DS
148DECLARE_HOOK(frr_early_init, (struct event_loop * tm), (tm));
149DECLARE_HOOK(frr_late_init, (struct event_loop * tm), (tm));
bf645e31 150/* fork() happens between late_init and config_pre */
cd9d0537
DS
151DECLARE_HOOK(frr_config_pre, (struct event_loop * tm), (tm));
152DECLARE_HOOK(frr_config_post, (struct event_loop * tm), (tm));
bf645e31 153
eb05883f
DL
154extern void frr_config_fork(void);
155
cd9d0537 156extern void frr_run(struct event_loop *master);
0a7c7856 157extern void frr_detach(void);
5ba56130
CH
158extern void frr_vty_serv_start(void);
159extern void frr_vty_serv_stop(void);
16077f2f 160
689f5a8c
DL
161extern bool frr_zclient_addr(struct sockaddr_storage *sa, socklen_t *sa_len,
162 const char *path);
163
03951374
DL
164/* these two are before the protocol daemon does its own shutdown
165 * it's named this way being the counterpart to frr_late_init */
8451921b 166DECLARE_KOOH(frr_early_fini, (), ());
03951374
DL
167extern void frr_early_fini(void);
168/* and these two are after the daemon did its own cleanup */
8451921b 169DECLARE_KOOH(frr_fini, (), ());
03951374
DL
170extern void frr_fini(void);
171
ff44f570 172extern char config_default[512];
689f5a8c 173extern char frr_zclientpath[256];
eb05883f 174extern const char frr_sysconfdir[];
43e587c1 175extern char frr_vtydir[256];
80b4df3b 176extern const char frr_moduledir[];
e4e0229a 177extern const char frr_scriptdir[];
4f04a76b 178
b85120bc
DL
179extern char frr_protoname[];
180extern char frr_protonameinst[];
38554d3a
DL
181/* always set in the spot where we *would* fork even if we don't do so */
182extern bool frr_is_after_fork;
b85120bc 183
9eed278b
DL
184extern bool debug_memstats_at_exit;
185
5e244469
RW
186#ifdef __cplusplus
187}
188#endif
189
4f04a76b 190#endif /* _ZEBRA_FRR_H */