]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_main.c
isisd: fix display of the "isis bfd" command
[mirror_frr.git] / eigrpd / eigrp_main.c
CommitLineData
7f57883e
DS
1/*
2 * EIGRP Main Routine.
3 * Copyright (C) 2013-2015
4 * Authors:
5 * Donnie Savage
6 * Jan Janovic
7 * Matej Perina
8 * Peter Orsag
9 * Peter Paluch
10 * Frantisek Gazo
11 * Tomas Hvorkovy
12 * Martin Kontsek
13 * Lukas Koribsky
14 *
15 * This file is part of GNU Zebra.
16 *
17 * GNU Zebra is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the
19 * Free Software Foundation; either version 2, or (at your option) any
20 * later version.
21 *
22 * GNU Zebra is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
26 *
896014f4
DL
27 * You should have received a copy of the GNU General Public License along
28 * with this program; see the file COPYING; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
7f57883e
DS
30 */
31#include <zebra.h>
32
33#include <lib/version.h>
34#include "getopt.h"
35#include "thread.h"
36#include "prefix.h"
37#include "linklist.h"
38#include "if.h"
39#include "vector.h"
40#include "vty.h"
41#include "command.h"
42#include "filter.h"
43#include "plist.h"
44#include "stream.h"
45#include "log.h"
46#include "memory.h"
47#include "privs.h"
48#include "sigevent.h"
49#include "zclient.h"
50#include "keychain.h"
51#include "distribute.h"
52#include "libfrr.h"
a72730d3 53#include "routemap.h"
7f57883e
DS
54//#include "if_rmap.h"
55
56#include "eigrpd/eigrp_structs.h"
57#include "eigrpd/eigrpd.h"
58#include "eigrpd/eigrp_dump.h"
59#include "eigrpd/eigrp_interface.h"
60#include "eigrpd/eigrp_neighbor.h"
61#include "eigrpd/eigrp_packet.h"
62#include "eigrpd/eigrp_vty.h"
63#include "eigrpd/eigrp_zebra.h"
64#include "eigrpd/eigrp_network.h"
65#include "eigrpd/eigrp_snmp.h"
66#include "eigrpd/eigrp_filter.h"
8b0a80f1 67#include "eigrpd/eigrp_errors.h"
7f57883e
DS
68//#include "eigrpd/eigrp_routemap.h"
69
70/* eigprd privileges */
d62a17ae 71zebra_capabilities_t _caps_p[] = {
9d303b37 72 ZCAP_NET_RAW, ZCAP_BIND, ZCAP_NET_ADMIN,
7f57883e
DS
73};
74
d62a17ae 75struct zebra_privs_t eigrpd_privs = {
76#if defined(FRR_USER) && defined(FRR_GROUP)
77 .user = FRR_USER,
78 .group = FRR_GROUP,
7f57883e 79#endif
d62a17ae 80#if defined(VTY_GROUP)
81 .vty_group = VTY_GROUP,
7f57883e 82#endif
d62a17ae 83 .caps_p = _caps_p,
84 .cap_num_p = array_size(_caps_p),
85 .cap_num_i = 0};
7f57883e
DS
86
87/* EIGRPd options. */
d62a17ae 88struct option longopts[] = {{0}};
7f57883e
DS
89
90/* Master of threads. */
91struct thread_master *master;
92
3e975968
RZ
93/* Forward declaration of daemon info structure. */
94static struct frr_daemon_info eigrpd_di;
95
7f57883e 96/* SIGHUP handler. */
d62a17ae 97static void sighup(void)
7f57883e 98{
d62a17ae 99 zlog_info("SIGHUP received");
3e975968
RZ
100
101 /* Reload config file. */
102 vty_read_config(NULL, eigrpd_di.config_file, config_default);
7f57883e
DS
103}
104
105/* SIGINT / SIGTERM handler. */
d62a17ae 106static void sigint(void)
7f57883e 107{
d62a17ae 108 zlog_notice("Terminating on signal");
109 eigrp_terminate();
77382984
DS
110
111 exit(0);
7f57883e
DS
112}
113
114/* SIGUSR1 handler. */
d62a17ae 115static void sigusr1(void)
7f57883e 116{
d62a17ae 117 zlog_rotate();
7f57883e
DS
118}
119
d62a17ae 120struct quagga_signal_t eigrp_signals[] = {
121 {
122 .signal = SIGHUP,
123 .handler = &sighup,
124 },
125 {
126 .signal = SIGUSR1,
127 .handler = &sigusr1,
128 },
129 {
130 .signal = SIGINT,
131 .handler = &sigint,
132 },
133 {
134 .signal = SIGTERM,
135 .handler = &sigint,
136 },
7f57883e
DS
137};
138
8fcdd0d6 139static const struct frr_yang_module_info *eigrpd_yang_modules[] = {
f25c244b 140 &frr_eigrpd_info,
a4bed468 141 &frr_interface_info,
8fcdd0d6
RW
142};
143
d62a17ae 144FRR_DAEMON_INFO(eigrpd, EIGRP, .vty_port = EIGRP_VTY_PORT,
7f57883e 145
d62a17ae 146 .proghelp = "Implementation of the EIGRP routing protocol.",
7f57883e 147
d62a17ae 148 .signals = eigrp_signals,
149 .n_signals = array_size(eigrp_signals),
7f57883e 150
8fcdd0d6
RW
151 .privs = &eigrpd_privs, .yang_modules = eigrpd_yang_modules,
152 .n_yang_modules = array_size(eigrpd_yang_modules), )
7f57883e
DS
153
154/* EIGRPd main routine. */
d62a17ae 155int main(int argc, char **argv, char **envp)
7f57883e 156{
d62a17ae 157 frr_preinit(&eigrpd_di, argc, argv);
158 frr_opt_add("", longopts, "");
159
160 while (1) {
161 int opt;
162
163 opt = frr_getopt(argc, argv, NULL);
164
165 if (opt == EOF)
166 break;
167
168 switch (opt) {
169 case 0:
170 break;
171 default:
172 frr_help_exit(1);
173 break;
174 }
175 }
176
01cbe587
DS
177 eigrp_sw_version_initialize();
178
d62a17ae 179 /* EIGRP master init. */
180 eigrp_master_init();
181 eigrp_om->master = frr_init();
182 master = eigrp_om->master;
183
8b0a80f1 184 eigrp_error_init();
ecbc5a37 185 vrf_init(NULL, NULL, NULL, NULL, NULL);
d62a17ae 186
187 /*EIGRPd init*/
188 eigrp_if_init();
189 eigrp_zebra_init();
190 eigrp_debug_init();
191
192 /* Get configuration file. */
193 /* EIGRP VTY inits */
194 eigrp_vty_init();
195 keychain_init();
196 eigrp_vty_show_init();
f25c244b 197 eigrp_cli_init();
7f57883e
DS
198
199#ifdef HAVE_SNMP
d62a17ae 200 eigrp_snmp_init();
7f57883e
DS
201#endif /* HAVE_SNMP */
202
d62a17ae 203 /* Access list install. */
204 access_list_init();
205 access_list_add_hook(eigrp_distribute_update_all_wrapper);
206 access_list_delete_hook(eigrp_distribute_update_all_wrapper);
207
208 /* Prefix list initialize.*/
209 prefix_list_init();
210 prefix_list_add_hook(eigrp_distribute_update_all);
211 prefix_list_delete_hook(eigrp_distribute_update_all);
212
a72730d3
QY
213 /*
214 * XXX: This is just to get the CLI installed to suppress VTYSH errors.
215 * Routemaps in EIGRP are not yet functional.
216 */
217 route_map_init();
d62a17ae 218 /*eigrp_route_map_init();
219 route_map_add_hook (eigrp_rmap_update);
220 route_map_delete_hook (eigrp_rmap_update);*/
4b23867c 221 /*if_rmap_init (EIGRP_NODE); */
d62a17ae 222 /* Distribute list install. */
223 distribute_list_init(EIGRP_NODE);
d62a17ae 224
225 frr_config_fork();
226 frr_run(master);
227
228 /* Not reached. */
229 return (0);
7f57883e 230}