]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_main.c
Merge pull request #7248 from donaldsharp/revert_7113
[mirror_frr.git] / ospf6d / ospf6_main.c
CommitLineData
718e3744 1/*
2 * Copyright (C) 1999 Yasuhiro Ohara
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#include <zebra.h>
3b4cd3a9 22#include <lib/version.h>
c3c0ac83 23#include <stdlib.h>
508e53e2 24
718e3744 25#include "getopt.h"
26#include "thread.h"
27#include "log.h"
718e3744 28#include "command.h"
29#include "vty.h"
30#include "memory.h"
508e53e2 31#include "if.h"
32#include "filter.h"
33#include "prefix.h"
34#include "plist.h"
edd7c245 35#include "privs.h"
e42f5a37 36#include "sigevent.h"
87362ceb 37#include "zclient.h"
6a69b354 38#include "vrf.h"
567b877d 39#include "bfd.h"
4f04a76b 40#include "libfrr.h"
718e3744 41
42#include "ospf6d.h"
87362ceb
DO
43#include "ospf6_top.h"
44#include "ospf6_message.h"
d51884e6 45#include "ospf6_network.h"
87362ceb
DO
46#include "ospf6_asbr.h"
47#include "ospf6_lsa.h"
d9628728
CF
48#include "ospf6_interface.h"
49#include "ospf6_zebra.h"
718e3744 50
51/* Default configuration file name for ospf6d. */
52#define OSPF6_DEFAULT_CONFIG "ospf6d.conf"
508e53e2 53
718e3744 54/* Default port values. */
55#define OSPF6_VTY_PORT 2606
56
edd7c245 57/* ospf6d privileges */
d62a17ae 58zebra_capabilities_t _caps_p[] = {ZCAP_NET_RAW, ZCAP_BIND};
edd7c245 59
d62a17ae 60struct zebra_privs_t ospf6d_privs = {
b2f36157 61#if defined(FRR_USER)
d62a17ae 62 .user = FRR_USER,
edd7c245 63#endif
b2f36157 64#if defined FRR_GROUP
d62a17ae 65 .group = FRR_GROUP,
d81fadfd 66#endif
67#ifdef VTY_GROUP
d62a17ae 68 .vty_group = VTY_GROUP,
edd7c245 69#endif
d62a17ae 70 .caps_p = _caps_p,
71 .cap_num_p = 2,
72 .cap_num_i = 0};
edd7c245 73
718e3744 74/* ospf6d options, we use GNU getopt library. */
d62a17ae 75struct option longopts[] = {{0}};
718e3744 76
718e3744 77/* Master of threads. */
78struct thread_master *master;
79
d62a17ae 80static void __attribute__((noreturn)) ospf6_exit(int status)
ae2254aa 81{
c5d28568 82 struct vrf *vrf;
d62a17ae 83 struct interface *ifp;
ae2254aa 84
03951374
DL
85 frr_early_fini();
86
18f286ad 87 if (ospf6) {
c5d28568 88 vrf = vrf_lookup_by_id(ospf6->vrf_id);
d62a17ae 89 ospf6_delete(ospf6);
18f286ad 90 ospf6 = NULL;
c5d28568
K
91 } else
92 vrf = vrf_lookup_by_id(VRF_DEFAULT);
ae2254aa 93
d62a17ae 94 bfd_gbl_exit();
567b877d 95
451fda4f 96 FOR_ALL_INTERFACES (vrf, ifp)
d62a17ae 97 if (ifp->info != NULL)
98 ospf6_interface_delete(ifp->info);
d9628728 99
d62a17ae 100 ospf6_message_terminate();
101 ospf6_asbr_terminate();
102 ospf6_lsa_terminate();
ae2254aa 103
d51884e6 104 ospf6_serv_close();
856ae1eb
CS
105 /* reverse access_list_init */
106 access_list_reset();
107
108 /* reverse prefix_list_init */
109 prefix_list_add_hook(NULL);
110 prefix_list_delete_hook(NULL);
111 prefix_list_reset();
112
d62a17ae 113 vrf_terminate();
ae2254aa 114
d62a17ae 115 if (zclient) {
116 zclient_stop(zclient);
117 zclient_free(zclient);
118 }
ae2254aa 119
03951374 120 frr_fini();
d62a17ae 121 exit(status);
ae2254aa
TG
122}
123
718e3744 124/* SIGHUP handler. */
d62a17ae 125static void sighup(void)
718e3744 126{
d62a17ae 127 zlog_info("SIGHUP received");
718e3744 128}
129
130/* SIGINT handler. */
d62a17ae 131static void sigint(void)
718e3744 132{
d62a17ae 133 zlog_notice("Terminating on signal SIGINT");
134 ospf6_exit(0);
718e3744 135}
136
137/* SIGTERM handler. */
d62a17ae 138static void sigterm(void)
718e3744 139{
d62a17ae 140 zlog_notice("Terminating on signal SIGTERM");
d62a17ae 141 ospf6_exit(0);
718e3744 142}
143
144/* SIGUSR1 handler. */
d62a17ae 145static void sigusr1(void)
718e3744 146{
d62a17ae 147 zlog_info("SIGUSR1 received");
148 zlog_rotate();
718e3744 149}
150
d62a17ae 151struct quagga_signal_t ospf6_signals[] = {
152 {
153 .signal = SIGHUP,
154 .handler = &sighup,
155 },
156 {
157 .signal = SIGINT,
158 .handler = &sigint,
159 },
160 {
161 .signal = SIGTERM,
162 .handler = &sigterm,
163 },
164 {
165 .signal = SIGUSR1,
166 .handler = &sigusr1,
167 },
e42f5a37 168};
508e53e2 169
0d8c7a26 170static const struct frr_yang_module_info *const ospf6d_yang_modules[] = {
c2aab693 171 &frr_filter_info,
a4bed468 172 &frr_interface_info,
91835f1f 173 &frr_route_map_info,
6fd8972a 174 &frr_vrf_info,
8fcdd0d6
RW
175};
176
d62a17ae 177FRR_DAEMON_INFO(ospf6d, OSPF6, .vty_port = OSPF6_VTY_PORT,
4f04a76b 178
d62a17ae 179 .proghelp = "Implementation of the OSPFv3 routing protocol.",
4f04a76b 180
d62a17ae 181 .signals = ospf6_signals,
182 .n_signals = array_size(ospf6_signals),
4f04a76b 183
8fcdd0d6
RW
184 .privs = &ospf6d_privs, .yang_modules = ospf6d_yang_modules,
185 .n_yang_modules = array_size(ospf6d_yang_modules), )
4f04a76b 186
508e53e2 187/* Main routine of ospf6d. Treatment of argument and starting ospf finite
718e3744 188 state machine is handled here. */
d62a17ae 189int main(int argc, char *argv[], char *envp[])
718e3744 190{
d62a17ae 191 int opt;
192
193 frr_preinit(&ospf6d_di, argc, argv);
194 frr_opt_add("", longopts, "");
718e3744 195
d62a17ae 196 /* Command line argument treatment. */
197 while (1) {
198 opt = frr_getopt(argc, argv, NULL);
508e53e2 199
d62a17ae 200 if (opt == EOF)
201 break;
202
203 switch (opt) {
204 case 0:
205 break;
206 default:
207 frr_help_exit(1);
208 break;
209 }
210 }
211
212 if (geteuid() != 0) {
213 errno = EPERM;
214 perror(ospf6d_di.progname);
215 exit(1);
216 }
217
78c6ba61
CS
218 /* OSPF6 master init. */
219 ospf6_master_init();
220
d62a17ae 221 /* thread master */
222 master = frr_init();
223
ecbc5a37 224 vrf_init(NULL, NULL, NULL, NULL, NULL);
d62a17ae 225 access_list_init();
226 prefix_list_init();
227
228 /* initialize ospf6 */
229 ospf6_init();
230
231 frr_config_fork();
232 frr_run(master);
233
234 /* Not reached. */
235 ospf6_exit(0);
236}