1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
/* $OpenBSD: output.c,v 1.6 2020/03/06 17:36:42 benno Exp $ */
/*
* Copyright (c) 2019 Theo de Raadt <deraadt@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/stat.h>
#include <err.h>
#include <fcntl.h>
#include <signal.h>
#include <string.h>
#include <limits.h>
#include <unistd.h>
#include <openssl/x509v3.h>
#include "extern.h"
char *outputdir;
char output_tmpname[PATH_MAX];
char output_name[PATH_MAX];
int outformats;
struct outputs {
int format;
char *name;
int (*fn)(FILE *, struct vrp_tree *);
} outputs[] = {
{ FORMAT_OPENBGPD, "openbgpd", output_bgpd },
{ FORMAT_BIRD, "bird1v4", output_bird1v4 },
{ FORMAT_BIRD, "bird1v6", output_bird1v6 },
{ FORMAT_BIRD, "bird", output_bird2 },
{ FORMAT_CSV, "csv", output_csv },
{ FORMAT_JSON, "json", output_json },
{ 0, NULL }
};
void sig_handler(int);
void set_signal_handler(void);
int
outputfiles(struct vrp_tree *v)
{
int i, rc = 0;
atexit(output_cleantmp);
set_signal_handler();
for (i = 0; outputs[i].name; i++) {
FILE *fout;
if (!(outformats & outputs[i].format))
continue;
fout = output_createtmp(outputs[i].name);
if (fout == NULL) {
logx("cannot create %s", outputs[i].name);
rc = 1;
continue;
}
if ((*outputs[i].fn)(fout, v) != 0) {
logx("output for %s format failed", outputs[i].name);
fclose(fout);
output_cleantmp();
rc = 1;
continue;
}
output_finish(fout);
}
return rc;
}
FILE *
output_createtmp(char *name)
{
FILE *f;
int fd, r;
r = snprintf(output_name, sizeof output_name,
"%s/%s", outputdir, name);
if (r < 0 || r > (int)sizeof(output_name))
err(1, "path too long");
r = snprintf(output_tmpname, sizeof output_tmpname,
"%s.XXXXXXXXXXX", output_name);
if (r < 0 || r > (int)sizeof(output_tmpname))
err(1, "path too long");
fd = mkostemp(output_tmpname, O_CLOEXEC);
if (fd == -1)
err(1, "mkostemp");
(void) fchmod(fd, 0644);
f = fdopen(fd, "w");
if (f == NULL)
err(1, "fdopen");
return f;
}
void
output_finish(FILE *out)
{
fclose(out);
out = NULL;
rename(output_tmpname, output_name);
output_tmpname[0] = '\0';
}
void
output_cleantmp(void)
{
if (*output_tmpname)
unlink(output_tmpname);
output_tmpname[0] = '\0';
}
/*
* Signal handler that clears the temporary files.
*/
void
sig_handler(int sig __unused)
{
output_cleantmp();
_exit(2);
}
/*
* Set signal handler on panic signals.
*/
void
set_signal_handler(void)
{
struct sigaction sa;
int i, signals[] = {SIGTERM, SIGHUP, SIGINT, SIGUSR1, SIGUSR2,
SIGPIPE, SIGXCPU, SIGXFSZ, 0};
memset(&sa, 0, sizeof(sa));
sigfillset(&sa.sa_mask);
sa.sa_flags = SA_RESTART;
sa.sa_handler = sig_handler;
for (i = 0; signals[i] != 0; i++) {
if (sigaction(signals[i], &sa, NULL) == -1) {
warn("sigaction(%s)", strsignal(signals[i]));
continue;
}
}
}
|