forked from traviscross/mtr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.c
316 lines (268 loc) · 7.95 KB
/
report.c
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
/*
mtr -- a network diagnostic tool
Copyright (C) 1997,1998 Matt Kimball
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <config.h>
#include <sys/types.h>
#include <stdio.h>
#include <netdb.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <string.h>
#include <strings.h>
#include <time.h>
#include "mtr.h"
#include "report.h"
#include "net.h"
#include "dns.h"
#define MAXLOADBAL 5
extern int dns;
extern char LocalHostname[];
extern char *Hostname;
extern int fstTTL;
extern int maxTTL;
extern int cpacketsize;
extern int bitpattern;
extern int tos;
extern int MaxPing;
extern int af;
extern int reportwide;
char *get_time_string (void)
{
time_t now;
char *t;
now = time (NULL);
t = ctime (&now);
t [ strlen (t) -1] = 0; // remove the trailing newline
return t;
}
void report_open(void)
{
printf ("Start: %s\n", get_time_string ());
}
static size_t snprint_addr(char *dst, size_t dst_len, ip_t *addr)
{
if(addrcmp((void *) addr, (void *) &unspec_addr, af)) {
struct hostent *host = dns ? addr2host((void *) addr, af) : NULL;
if (!host) return snprintf(dst, dst_len, "%s", strlongip(addr));
else if (dns && show_ips)
return snprintf(dst, dst_len, "%s (%s)", host->h_name, strlongip(addr));
else return snprintf(dst, dst_len, "%s", host->h_name);
} else return snprintf(dst, dst_len, "%s", "???");
}
void report_close(void)
{
int i, j, k, at, max, z, w;
struct mplslen *mpls, *mplss;
ip_t *addr;
ip_t *addr2 = NULL;
char name[81];
char buf[1024];
char fmt[16];
int len=0;
int len_hosts = 33;
if (reportwide)
{
// get the longest hostname
len_hosts = strlen(LocalHostname);
max = net_max();
at = net_min();
for (; at < max; at++) {
int nlen;
addr = net_addr(at);
if ((nlen = snprint_addr(name, sizeof(name), addr)))
if (len_hosts < nlen)
len_hosts = nlen;
}
}
snprintf( fmt, sizeof(fmt), "HOST: %%-%ds", len_hosts);
snprintf(buf, sizeof(buf), fmt, LocalHostname);
len = reportwide ? strlen(buf) : len_hosts;
for( i=0; i<MAXFLD; i++ ) {
j = fld_index[fld_active[i]];
if (j < 0) continue;
snprintf( fmt, sizeof(fmt), "%%%ds", data_fields[j].length );
snprintf( buf + len, sizeof(buf), fmt, data_fields[j].title );
len += data_fields[j].length;
}
printf("%s\n",buf);
max = net_max();
at = net_min();
for(; at < max; at++) {
addr = net_addr(at);
mpls = net_mpls(at);
snprint_addr(name, sizeof(name), addr);
snprintf( fmt, sizeof(fmt), " %%2d.|-- %%-%ds", len_hosts);
snprintf(buf, sizeof(buf), fmt, at+1, name);
len = reportwide ? strlen(buf) : len_hosts;
for( i=0; i<MAXFLD; i++ ) {
j = fld_index[fld_active [i]];
if (j < 0) continue;
/* 1000.0 is a temporay hack for stats usec to ms, impacted net_loss. */
if( index( data_fields[j].format, 'f' ) ) {
snprintf( buf + len, sizeof(buf), data_fields[j].format,
data_fields[j].net_xxx(at) /1000.0 );
} else {
snprintf( buf + len, sizeof(buf), data_fields[j].format,
data_fields[j].net_xxx(at) );
}
len += data_fields[j].length;
}
printf("%s\n",buf);
/* This feature shows 'loadbalances' on routes */
/* z is starting at 1 because addrs[0] is the same that addr */
for (z = 1; z < MAXPATH ; z++) {
addr2 = net_addrs(at, z);
mplss = net_mplss(at, z);
int found = 0;
if ((addrcmp ((void *) &unspec_addr, (void *) addr2, af)) == 0)
break;
for (w = 0; w < z; w++)
/* Ok... checking if there are ips repeated on same hop */
if ((addrcmp ((void *) addr2, (void *) net_addrs (at,w), af)) == 0) {
found = 1;
break;
}
if (!found) {
if (mpls->labels && z == 1 && enablempls) {
for (k=0; k < mpls->labels; k++) {
printf(" | |+-- [MPLS: Lbl %lu Exp %u S %u TTL %u]\n", mpls->label[k], mpls->exp[k], mpls->s[k], mpls->ttl[k]);
}
}
if (z == 1) {
printf (" | `|-- %s\n", strlongip(addr2));
for (k=0; k < mplss->labels && enablempls; k++) {
printf(" | +-- [MPLS: Lbl %lu Exp %u S %u TTL %u]\n", mplss->label[k], mplss->exp[k], mplss->s[k], mplss->ttl[k]);
}
} else {
printf (" | |-- %s\n", strlongip(addr2));
for (k=0; k < mplss->labels && enablempls; k++) {
printf(" | +-- [MPLS: Lbl %lu Exp %u S %u TTL %u]\n", mplss->label[k], mplss->exp[k], mplss->s[k], mplss->ttl[k]);
}
}
}
}
/* No multipath */
if(mpls->labels && z == 1 && enablempls) {
for (k=0; k < mpls->labels; k++) {
printf(" | +-- [MPLS: Lbl %lu Exp %u S %u TTL %u]\n", mpls->label[k], mpls->exp[k], mpls->s[k], mpls->ttl[k]);
}
}
}
}
void txt_open(void)
{
}
void txt_close(void)
{
report_close();
}
void xml_open(void)
{
}
void xml_close(void)
{
int i, j, at, max;
ip_t *addr;
char name[81];
printf("<MTR SRC=%s DST=%s", LocalHostname, Hostname);
printf(" TOS=0x%X", tos);
if(cpacketsize >= 0) {
printf(" PSIZE=%d", cpacketsize);
} else {
printf(" PSIZE=rand(%d-%d)",MINPACKET, -cpacketsize);
}
if( bitpattern>=0 ) {
printf(" BITPATTERN=0x%02X", (unsigned char)(bitpattern));
} else {
printf(" BITPATTERN=rand(0x00-FF)");
}
printf(" TESTS=%d>\n", MaxPing);
max = net_max();
at = net_min();
for(; at < max; at++) {
addr = net_addr(at);
snprint_addr(name, sizeof(name), addr);
printf(" <HUB COUNT=%d HOST=%s>\n", at+1, name);
for( i=0; i<MAXFLD; i++ ) {
j = fld_index[fld_active[i]];
if (j < 0) continue;
strcpy(name, " <%s>");
strcat(name, data_fields[j].format);
strcat(name, "</%s>\n");
/* 1000.0 is a temporay hack for stats usec to ms, impacted net_loss. */
if( index( data_fields[j].format, 'f' ) ) {
printf( name,
data_fields[j].title,
data_fields[j].net_xxx(at) /1000.0,
data_fields[j].title );
} else {
printf( name,
data_fields[j].title,
data_fields[j].net_xxx(at),
data_fields[j].title );
}
}
printf(" </HUB>\n");
}
printf("</MTR>\n");
}
void csv_open(void)
{
}
void csv_close(void)
{
int i, j, at, max;
ip_t *addr;
char name[81];
/* Caption */
printf("<SRC=%s DST=%s", LocalHostname, Hostname);
printf(" TOS=0x%X", tos);
if(cpacketsize >= 0) {
printf(" PSIZE=%d", cpacketsize);
} else {
printf(" PSIZE=rand(%d-%d)",MINPACKET, -cpacketsize);
}
if( bitpattern>=0 ) {
printf(" BITPATTERN=0x%02X", (unsigned char)(bitpattern));
} else {
printf(" BITPATTERN=rand(0x00-FF)");
}
printf(" TESTS=%d>\n", MaxPing);
/* Header */
printf("HUPCOUNT, HOST");
for( i=0; i<MAXFLD; i++ ) {
j = fld_index[fld_active[i]];
if (j < 0) continue;
printf( ", %s", data_fields[j].title );
}
printf("\n");
max = net_max();
at = net_min();
for(; at < max; at++) {
addr = net_addr(at);
snprint_addr(name, sizeof(name), addr);
printf("%d, %s", at+1, name);
for( i=0; i<MAXFLD; i++ ) {
j = fld_index[fld_active[j]];
if (j < 0) continue;
/* 1000.0 is a temporay hack for stats usec to ms, impacted net_loss. */
if( index( data_fields[j].format, 'f' ) ) {
printf( ", %.2f", data_fields[j].net_xxx(at) / 1000.0);
} else {
printf( ", %d", data_fields[j].net_xxx(at) );
}
}
printf("\n");
}
}