]> git.proxmox.com Git - mirror_frr.git/blob - staticd/static_main.c
Merge pull request #2799 from adharkar/frr-zebra_cli
[mirror_frr.git] / staticd / static_main.c
1 /*
2 * STATICd - main code
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
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.
10 *
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.
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
39 char backup_config_file[256];
40
41 bool mpls_enabled;
42
43 zebra_capabilities_t _caps_p[] = {
44 };
45
46 struct 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
58 struct option longopts[] = { { 0 } };
59
60 /* Master of threads. */
61 struct thread_master *master;
62
63 /* SIGHUP handler. */
64 static void sighup(void)
65 {
66 zlog_info("SIGHUP received");
67 }
68
69 /* SIGINT / SIGTERM handler. */
70 static void sigint(void)
71 {
72 zlog_notice("Terminating on signal");
73
74 exit(0);
75 }
76
77 /* SIGUSR1 handler. */
78 static void sigusr1(void)
79 {
80 zlog_rotate();
81 }
82
83 struct 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
104 FRR_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 )
113
114 int main(int argc, char **argv, char **envp)
115 {
116 frr_preinit(&staticd_di, argc, argv);
117 frr_opt_add("", longopts, "");
118
119 while (1) {
120 int opt;
121
122 opt = frr_getopt(argc, argv, NULL);
123
124 if (opt == EOF)
125 break;
126
127 switch (opt) {
128 case 0:
129 break;
130 default:
131 frr_help_exit(1);
132 break;
133 }
134 }
135
136 master = frr_init();
137
138 static_vrf_init();
139
140 static_zebra_init();
141 static_vty_init();
142
143 snprintf(backup_config_file, sizeof(backup_config_file),
144 "%s/zebra.conf", frr_sysconfdir);
145 staticd_di.backup_config_file = backup_config_file;
146
147 frr_config_fork();
148 frr_run(master);
149
150 /* Not reached. */
151 return 0;
152 }