]> git.proxmox.com Git - mirror_frr.git/blame - ripd/rip_main.c
*: add empty array of YANG modules
[mirror_frr.git] / ripd / rip_main.c
CommitLineData
718e3744 1/* RIPd main routine.
2 * Copyright (C) 1997, 98 Kunihiro Ishiguro <kunihiro@zebra.org>
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>
22
5e4fa164 23#include <lib/version.h>
718e3744 24#include "getopt.h"
25#include "thread.h"
26#include "command.h"
27#include "memory.h"
fc7948fa 28#include "memory_vty.h"
718e3744 29#include "prefix.h"
30#include "filter.h"
31#include "keychain.h"
32#include "log.h"
edd7c245 33#include "privs.h"
2d75d052 34#include "sigevent.h"
b5114685 35#include "zclient.h"
6a69b354 36#include "vrf.h"
4f04a76b 37#include "libfrr.h"
718e3744 38
39#include "ripd/ripd.h"
518e377f 40#include "ripd/rip_errors.h"
718e3744 41
42/* ripd options. */
c8dde10f
QY
43#if CONFDATE > 20190521
44 CPP_NOTICE("-r / --retain has reached deprecation EOL, remove")
45#endif
d62a17ae 46static struct option longopts[] = {{"retain", no_argument, NULL, 'r'}, {0}};
718e3744 47
edd7c245 48/* ripd privileges */
d62a17ae 49zebra_capabilities_t _caps_p[] = {ZCAP_NET_RAW, ZCAP_BIND};
edd7c245 50
d62a17ae 51struct zebra_privs_t ripd_privs = {
b2f36157 52#if defined(FRR_USER)
d62a17ae 53 .user = FRR_USER,
edd7c245 54#endif
b2f36157 55#if defined FRR_GROUP
d62a17ae 56 .group = FRR_GROUP,
d81fadfd 57#endif
58#ifdef VTY_GROUP
d62a17ae 59 .vty_group = VTY_GROUP,
edd7c245 60#endif
d62a17ae 61 .caps_p = _caps_p,
62 .cap_num_p = 2,
63 .cap_num_i = 0};
edd7c245 64
718e3744 65/* Master of threads. */
66struct thread_master *master;
67
eb05883f 68static struct frr_daemon_info ripd_di;
718e3744 69
718e3744 70/* SIGHUP handler. */
d62a17ae 71static void sighup(void)
718e3744 72{
d62a17ae 73 zlog_info("SIGHUP received");
74 rip_clean();
75 rip_reset();
76 zlog_info("ripd restarting!");
718e3744 77
d62a17ae 78 /* Reload config file. */
1c2facd1 79 vty_read_config(NULL, ripd_di.config_file, config_default);
718e3744 80
d62a17ae 81 /* Try to return to normal operation. */
718e3744 82}
83
84/* SIGINT handler. */
d62a17ae 85static void sigint(void)
718e3744 86{
d62a17ae 87 zlog_notice("Terminating on signal");
718e3744 88
c8dde10f 89 rip_clean();
718e3744 90
d62a17ae 91 rip_zclient_stop();
8879bd22 92 frr_fini();
a2f9eb82 93
d62a17ae 94 exit(0);
718e3744 95}
96
97/* SIGUSR1 handler. */
d62a17ae 98static void sigusr1(void)
718e3744 99{
d62a17ae 100 zlog_rotate();
718e3744 101}
102
d62a17ae 103static struct quagga_signal_t ripd_signals[] = {
104 {
105 .signal = SIGHUP,
106 .handler = &sighup,
107 },
108 {
109 .signal = SIGUSR1,
110 .handler = &sigusr1,
111 },
112 {
113 .signal = SIGINT,
114 .handler = &sigint,
115 },
116 {
117 .signal = SIGTERM,
118 .handler = &sigint,
119 },
120};
4f04a76b 121
8fcdd0d6
RW
122static const struct frr_yang_module_info *ripd_yang_modules[] = {
123};
124
d62a17ae 125FRR_DAEMON_INFO(ripd, RIP, .vty_port = RIP_VTY_PORT,
718e3744 126
d62a17ae 127 .proghelp = "Implementation of the RIP routing protocol.",
718e3744 128
d62a17ae 129 .signals = ripd_signals, .n_signals = array_size(ripd_signals),
718e3744 130
8fcdd0d6
RW
131 .privs = &ripd_privs, .yang_modules = ripd_yang_modules,
132 .n_yang_modules = array_size(ripd_yang_modules), )
d62a17ae 133
c8dde10f
QY
134#if CONFDATE > 20190521
135CPP_NOTICE("-r / --retain has reached deprecation EOL, remove")
136#endif
137#define DEPRECATED_OPTIONS "r"
138
d62a17ae 139/* Main routine of ripd. */
140int main(int argc, char **argv)
141{
142 frr_preinit(&ripd_di, argc, argv);
c8dde10f
QY
143
144 frr_opt_add("" DEPRECATED_OPTIONS, longopts, "");
d62a17ae 145
146 /* Command line option parse. */
147 while (1) {
148 int opt;
149
150 opt = frr_getopt(argc, argv, NULL);
151
c8dde10f
QY
152 if (opt && opt < 128 && strchr(DEPRECATED_OPTIONS, opt)) {
153 fprintf(stderr,
154 "The -%c option no longer exists.\nPlease refer to the manual.\n",
155 opt);
156 continue;
157 }
158
d62a17ae 159 if (opt == EOF)
160 break;
161
162 switch (opt) {
163 case 0:
164 break;
d62a17ae 165 default:
166 frr_help_exit(1);
167 break;
168 }
718e3744 169 }
718e3744 170
d62a17ae 171 /* Prepare master thread. */
172 master = frr_init();
718e3744 173
d62a17ae 174 /* Library initialization. */
518e377f 175 rip_error_init();
d62a17ae 176 keychain_init();
ecbc5a37 177 vrf_init(NULL, NULL, NULL, NULL, NULL);
718e3744 178
d62a17ae 179 /* RIP related initialization. */
180 rip_init();
181 rip_if_init();
182 rip_zclient_init(master);
183 rip_peer_init();
718e3744 184
d62a17ae 185 frr_config_fork();
186 frr_run(master);
718e3744 187
d62a17ae 188 /* Not reached. */
189 return (0);
718e3744 190}