]>
git.proxmox.com Git - mirror_frr.git/blob - lib/libfrr.h
2 * libfrr overall management functions
4 * Copyright (C) 2016 David Lamparter for NetDEF, Inc.
6 * This program 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 Free
8 * Software Foundation; either version 2 of the License, or (at your option)
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
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
31 #include "northbound.h"
37 /* The following options disable specific command line options that
38 * are not applicable for a particular daemon.
40 #define FRR_NO_PRIVSEP (1 << 0)
41 #define FRR_NO_TCPVTY (1 << 1)
42 #define FRR_LIMITED_CLI (1 << 2)
43 #define FRR_NO_CFG_PID_DRY (1 << 3)
44 #define FRR_NO_ZCLIENT (1 << 4)
45 /* If FRR_DETACH_LATER is used, the daemon will keep its parent running
46 * until frr_detach() is called. Normally "somedaemon -d" returns once the
47 * main event loop is reached in the daemon; use this for extra startup bits.
49 * Does nothing if -d isn't used.
51 #define FRR_DETACH_LATER (1 << 5)
55 FRR_CLI_TRANSACTIONAL
,
58 struct frr_daemon_info
{
64 unsigned short instance
;
65 struct frrmod_runtime
*module
;
73 enum frr_cli_mode cli_mode
;
75 struct thread
*read_in
;
76 const char *config_file
;
77 const char *backup_config_file
;
83 const char *module_path
;
85 const char *pathspace
;
88 const char *early_logging
;
89 const char *early_loglevel
;
92 void (*printhelp
)(FILE *target
);
93 const char *copyright
;
96 struct quagga_signal_t
*signals
;
99 struct zebra_privs_t
*privs
;
101 const struct frr_yang_module_info
*const *yang_modules
;
102 size_t n_yang_modules
;
107 /* execname is the daemon's executable (and pidfile and configfile) name,
108 * i.e. "zebra" or "bgpd"
109 * constname is the daemons source-level name, primarily for the logging ID,
110 * i.e. "ZEBRA" or "BGP"
112 * note that this macro is also a latch-on point for other changes (e.g.
113 * upcoming module support) that need to place some per-daemon things. Each
114 * daemon should have one of these.
116 #define FRR_DAEMON_INFO(execname, constname, ...) \
117 static struct frr_daemon_info execname##_di = {.name = #execname, \
118 .logname = #constname, \
119 .module = THIS_MODULE, \
121 FRR_COREMOD_SETUP(.name = #execname, \
122 .description = #execname " daemon", \
123 .version = FRR_VERSION, ) \
126 extern void frr_init_vtydir(void);
127 extern void frr_preinit(struct frr_daemon_info
*daemon
, int argc
, char **argv
);
128 extern void frr_opt_add(const char *optstr
, const struct option
*longopts
,
129 const char *helpstr
);
130 extern int frr_getopt(int argc
, char *const argv
[], int *longindex
);
131 extern void frr_help_exit(int status
);
133 extern struct thread_master
*frr_init(void);
134 extern const char *frr_get_progname(void);
135 extern enum frr_cli_mode
frr_get_cli_mode(void);
137 DECLARE_HOOK(frr_late_init
, (struct thread_master
* tm
), (tm
))
138 extern void frr_config_fork(void);
140 extern void frr_run(struct thread_master
*master
);
141 extern void frr_detach(void);
143 extern bool frr_zclient_addr(struct sockaddr_storage
*sa
, socklen_t
*sa_len
,
146 /* these two are before the protocol daemon does its own shutdown
147 * it's named this way being the counterpart to frr_late_init */
148 DECLARE_KOOH(frr_early_fini
, (), ())
149 extern void frr_early_fini(void);
150 /* and these two are after the daemon did its own cleanup */
151 DECLARE_KOOH(frr_fini
, (), ())
152 extern void frr_fini(void);
154 extern char config_default
[512];
155 extern char frr_zclientpath
[256];
156 extern const char frr_sysconfdir
[];
157 extern char frr_vtydir
[256];
158 extern const char frr_moduledir
[];
160 extern char frr_protoname
[];
161 extern char frr_protonameinst
[];
163 extern bool debug_memstats_at_exit
;
169 #endif /* _ZEBRA_FRR_H */