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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
|
/* $OpenBSD: log.c,v 1.17 2004/01/22 03:18:04 henning Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@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/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <err.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "bgpd.h"
#include "session.h"
#include "log.h"
int debug;
static const char *eventnames[] = {
"None",
"Start",
"Stop",
"Connection opened",
"Connection closed",
"Connection open failed",
"Fatal error",
"ConnectRetryTimer expired",
"HoldTimer expired",
"KeepaliveTimer expired",
"OPEN message received",
"KEEPALIVE message received",
"UPDATE message received",
"NOTIFICATION received"
};
static const char *errnames[] = {
"none",
"Header error",
"error in OPEN message",
"error in UPDATE message",
"HoldTimer expired",
"Finite State Machine error",
"Cease"
};
static const char *suberr_header_names[] = {
"none",
"synchronization error",
"wrong length",
"unknown message type"
};
static const char *suberr_open_names[] = {
"none",
"version mismatch",
"AS unacceptable",
"BGPID invalid",
"optional parameter error",
"Authentication error",
"unacceptable holdtime"
};
static const char *suberr_update_names[] = {
"none",
"attribute list error",
"unknown well-known attribute",
"well-known attribute missing",
"attribute flags error",
"attribute length wrong",
"origin unacceptable",
"loop detected",
"nexthop unacceptable",
"optional attribute error",
"network unacceptable",
"AS-Path unacceptable"
};
static const char *procnames[] = {
"parent",
"SE",
"RDE"
};
char *log_fmt_peer(const struct peer *);
char *
log_fmt_peer(const struct peer *peer)
{
char *ip;
char *pfmt;
ip = inet_ntoa(peer->conf.remote_addr.sin_addr);
if (peer->conf.descr[0]) {
if (asprintf(&pfmt, "neighbor %s (%s)", ip, peer->conf.descr) ==
-1)
fatal(NULL);
} else {
if (asprintf(&pfmt, "neighbor %s", ip) == -1)
fatal(NULL);
}
return (pfmt);
}
void
log_init(int n_debug)
{
debug = n_debug;
if (!debug)
openlog("bgpd", LOG_PID | LOG_NDELAY, LOG_DAEMON);
}
void
logit(int pri, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vlog(pri, fmt, ap);
va_end(ap);
}
void
vlog(int pri, const char *fmt, va_list ap)
{
char *nfmt;
if (debug) {
/* best effort in out of mem situations */
if (asprintf(&nfmt, "%s\n", fmt) == -1) {
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
} else {
vfprintf(stderr, nfmt, ap);
free(nfmt);
}
} else
vsyslog(pri, fmt, ap);
}
void
log_peer_err(const struct peer *peer, const char *emsg, ...)
{
char *p, *nfmt;
va_list ap;
p = log_fmt_peer(peer);
if (emsg == NULL) {
if (asprintf(&nfmt, "%s: %s", p, strerror(errno)) == -1)
fatal(NULL);
} else {
if (asprintf(&nfmt, "%s: %s: %s", p, emsg, strerror(errno)) ==
-1)
fatal(NULL);
}
va_start(ap, emsg);
vlog(LOG_CRIT, nfmt, ap);
va_end(ap);
free(p);
free(nfmt);
}
void
log_peer_errx(const struct peer *peer, const char *emsg, ...)
{
char *p, *nfmt;
va_list ap;
p = log_fmt_peer(peer);
if (asprintf(&nfmt, "%s: %s", p, emsg) == -1)
fatal(NULL);
va_start(ap, emsg);
vlog(LOG_CRIT, nfmt, ap);
va_end(ap);
free(p);
free(nfmt);
}
void
log_warn(const char *emsg, ...)
{
char *nfmt;
va_list ap;
/* best effort to even work in out of memory situations */
if (emsg == NULL)
logit(LOG_CRIT, "%s", strerror(errno));
else {
va_start(ap, emsg);
if (asprintf(&nfmt, "%s: %s", emsg, strerror(errno)) == -1) {
/* we tried it... */
vlog(LOG_CRIT, emsg, ap);
logit(LOG_CRIT, "%s", strerror(errno));
} else {
vlog(LOG_CRIT, nfmt, ap);
free(nfmt);
}
va_end(ap);
}
}
void
fatal(const char *emsg)
{
if (emsg == NULL)
logit(LOG_CRIT, "fatal in %s: %s", procnames[bgpd_process],
strerror(errno));
else
if (errno)
logit(LOG_CRIT, "fatal in %s: %s: %s",
procnames[bgpd_process], emsg, strerror(errno));
else
logit(LOG_CRIT, "fatal in %s: %s",
procnames[bgpd_process], emsg);
if (bgpd_process == PROC_MAIN)
exit(1);
else /* parent copes via SIGCHLD */
_exit(1);
}
void
fatalx(const char *emsg)
{
errno = 0;
fatal(emsg);
}
void
fatal_ensure(const char *file, int line, const char *cond)
{
logit(LOG_CRIT, "ENSURE (%s) failed in file %s on line %d",
cond, file, line);
/* XXX check which process we are and notify others! */
sleep(10);
_exit(1);
}
void
log_statechange(const struct peer *peer, enum session_state nstate,
enum session_events event)
{
char *p;
p = log_fmt_peer(peer);
logit(LOG_INFO, "%s: state change %s -> %s, reason: %s",
p, statenames[peer->state], statenames[nstate], eventnames[event]);
free(p);
}
void
log_notification(const struct peer *peer, u_int8_t errcode, u_int8_t subcode,
u_char *data, u_int16_t datalen)
{
char *p;
const char *suberrname = NULL;
int uk = 0;
p = log_fmt_peer(peer);
switch (errcode) {
case ERR_HEADER:
if (subcode > sizeof(suberr_header_names)/sizeof(char *))
uk = 1;
else
suberrname = suberr_header_names[subcode];
break;
case ERR_OPEN:
if (subcode > sizeof(suberr_open_names)/sizeof(char *))
uk = 1;
else
suberrname = suberr_open_names[subcode];
break;
case ERR_UPDATE:
if (subcode > sizeof(suberr_update_names)/sizeof(char *))
uk = 1;
else
suberrname = suberr_update_names[subcode];
break;
case ERR_HOLDTIMEREXPIRED:
case ERR_FSM:
case ERR_CEASE:
uk = 1;
break;
default:
logit(LOG_CRIT, "%s: received notification, unknown errcode "
"%u, subcode %u", p, errcode, subcode);
free(p);
return;
}
if (uk)
logit(LOG_CRIT,
"%s: received notification: %s, unknown subcode %u",
p, errnames[errcode], subcode);
else {
if (suberrname == NULL)
logit(LOG_CRIT, "%s: received notification: %s",
p, errnames[errcode]);
else
logit(LOG_CRIT, "%s: received notification: %s, %s",
p, errnames[errcode], suberrname);
}
free(p);
}
void
log_conn_attempt(const struct peer *peer, struct in_addr remote)
{
char *p;
if (peer == NULL) /* connection from non-peer, drop */
logit(LOG_INFO, "connection from non-peer %s refused",
inet_ntoa(remote));
else {
p = log_fmt_peer(peer);
logit(LOG_INFO, "Connection attempt from %s while session is "
"in state %s", p, statenames[peer->state]);
free(p);
}
}
char *
log_ntoa(in_addr_t ip)
{
struct in_addr ina;
ina.s_addr = ip;
return (inet_ntoa(ina));
}
|