]> git.proxmox.com Git - mirror_frr.git/blame - staticd/static_main.c
staticd, zebra: Fix up code warnings
[mirror_frr.git] / staticd / static_main.c
CommitLineData
7e24fdf3
DS
1/*
2 * STATICd - main code
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
8d5cbee9
DS
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)
9 * any later version.
7e24fdf3 10 *
8d5cbee9
DS
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
14 * more details.
7e24fdf3
DS
15 *
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
19 */
20#include <zebra.h>
21
22#include <lib/version.h>
23#include "getopt.h"
24#include "thread.h"
25#include "command.h"
26#include "log.h"
27#include "memory.h"
28#include "privs.h"
29#include "sigevent.h"
30#include "libfrr.h"
31#include "vrf.h"
32#include "nexthop.h"
33
34#include "static_vrf.h"
35#include "static_vty.h"
36#include "static_routes.h"
37#include "static_zebra.h"
38
ad3489a0
DS
39char backup_config_file[256];
40
7e24fdf3
DS
41bool mpls_enabled;
42
43zebra_capabilities_t _caps_p[] = {
44};
45
46struct zebra_privs_t static_privs = {
47#if defined(FRR_USER) && defined(FRR_GROUP)
48 .user = FRR_USER,
49 .group = FRR_GROUP,
50#endif
51#if defined(VTY_GROUP)
52 .vty_group = VTY_GROUP,
53#endif
54 .caps_p = _caps_p,
55 .cap_num_p = array_size(_caps_p),
56 .cap_num_i = 0};
57
58struct option longopts[] = { { 0 } };
59
60/* Master of threads. */
61struct thread_master *master;
62
63/* SIGHUP handler. */
64static void sighup(void)
65{
66 zlog_info("SIGHUP received");
67}
68
69/* SIGINT / SIGTERM handler. */
70static void sigint(void)
71{
72 zlog_notice("Terminating on signal");
73
74 exit(0);
75}
76
77/* SIGUSR1 handler. */
78static void sigusr1(void)
79{
80 zlog_rotate();
81}
82
83struct quagga_signal_t static_signals[] = {
84 {
85 .signal = SIGHUP,
86 .handler = &sighup,
87 },
88 {
89 .signal = SIGUSR1,
90 .handler = &sigusr1,
91 },
92 {
93 .signal = SIGINT,
94 .handler = &sigint,
95 },
96 {
97 .signal = SIGTERM,
98 .handler = &sigint,
99 },
100};
101
102#define STATIC_VTY_PORT 2616
103
104FRR_DAEMON_INFO(staticd, STATIC, .vty_port = STATIC_VTY_PORT,
105
106 .proghelp = "Implementation of STATIC.",
107
108 .signals = static_signals,
109 .n_signals = array_size(static_signals),
110
111 .privs = &static_privs, )
112
113int main(int argc, char **argv, char **envp)
114{
115 frr_preinit(&staticd_di, argc, argv);
116 frr_opt_add("", longopts, "");
117
118 while (1) {
119 int opt;
120
121 opt = frr_getopt(argc, argv, NULL);
122
123 if (opt == EOF)
124 break;
125
126 switch (opt) {
127 case 0:
128 break;
129 default:
130 frr_help_exit(1);
131 break;
132 }
133 }
134
135 master = frr_init();
136
137 static_vrf_init();
138
139 static_zebra_init();
140 static_vty_init();
141
ad3489a0
DS
142 snprintf(backup_config_file, sizeof(backup_config_file),
143 "%s/zebra.conf", frr_sysconfdir);
144 staticd_di.backup_config_file = backup_config_file;
145
7e24fdf3
DS
146 frr_config_fork();
147 frr_run(master);
148
149 /* Not reached. */
150 return 0;
151}