forked from ossobv/rtpsniff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
out_rtpsniff.c
280 lines (255 loc) · 9.11 KB
/
out_rtpsniff.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
/* vim: set ts=8 sw=4 sts=4 et: */
/*======================================================================
Copyright (C) 2008,2009,2014,2019 OSSO B.V. <[email protected]>
This file is part of RTPSniff.
RTPSniff is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
RTPSniff 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 RTPSniff. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
#include "rtpsniff.h"
#include <stdio.h>
#include <stdlib.h>
static char *out__filename = NULL;
static char out__filename_tmp[4096];
void out_help() {
printf(
"/*********************"
" module: out (stream) ***********************************/\n"
"This is the console/stream output module.\n"
"It will stream the response to stdout and optionally to a status\n"
"file, defined by the OUT_STATUS envvar.\n"
"For example OUT_STATUS=/run/rtpsniff/iface1.status\n"
"\n"
);
}
int out_open() {
out__filename = getenv("OUT_STATUS");
if (out__filename && !*out__filename)
out__filename = NULL;
if (out__filename) {
int ret;
FILE *testfp;
if ((ret = snprintf(out__filename_tmp, sizeof(out__filename_tmp) - 1,
"%s.tmp", out__filename)) < 0 ||
ret >= sizeof(out__filename_tmp)) {
return 1;
}
if ((testfp = fopen(out__filename_tmp, "w")) == NULL) {
perror("error opening temp status file");
return 1;
}
if (fprintf(testfp, "test\n") != 5) {
perror("error writing temp status file");
fclose(testfp);
return 1;
}
fclose(testfp);
fprintf(stderr, "Selected output file: %s\n", out__filename);
}
return 0;
}
void out_close() {
}
void out_write(uint32_t unixtime_begin, uint32_t interval, struct rtpstat_t *memory) {
FILE *fps[3] = {stdout, NULL, NULL};
FILE **fp;
char src_ip[16];
char dst_ip[16];
unsigned streams = 0;
unsigned packets = 0;
unsigned lost = 0;
unsigned late = 0;
unsigned gaps = 0;
unsigned jumps = 0;
unsigned printed;
struct rtpstat_t *class_c = NULL, *rtpstat, *tmp;
/* Open temp file */
if (out__filename) {
if ((fps[1] = fopen(out__filename_tmp, "w")) == NULL) {
perror("error opening temp status file");
}
}
/* {"info": ... */
for (fp = fps; *fp; ++fp) {
fprintf(
*fp,
"{\"info\": {\"mod\": \"out_rtpsniff\", "
"\"begin_time\": %" SCNu32 ", "
"\"interval\": %" SCNu32 ", \"memory\": \"%p\"}\n",
unixtime_begin, interval, memory);
}
/* Show per-stream summary; and find larger networks */
/* "streams": ... */
printed = 0;
for (fp = fps; *fp; ++fp)
fprintf(*fp, ",\"streams\": [");
HASH_ITER(hh, memory, rtpstat, tmp) {
float miss_percent;
/* Calculate summary */
streams += 1;
packets += rtpstat->packets;
lost += rtpstat->missed;
late += rtpstat->late;
gaps += rtpstat->gaps;
jumps += rtpstat->jumps;
/* Find class_c networks */
{
struct rtpstat_t find = {.src_ip = rtpstat->src_ip & 0xFFFFFF00};
struct rtpstat_t *old;
HASH_FIND(hh, class_c, &find.HASH_FIRST, HASH_SIZE(find), old);
if (!old) {
struct rtpstat_t *new = malloc(sizeof(*new));
if (new) {
memcpy(new, &find, sizeof(*new));
/* ignore: rtp->stamp, rtp->req */
new->seq = 1; /* abuse "seq" for "streams" */
new->packets = rtpstat->packets;
new->missed = rtpstat->missed;
new->late = rtpstat->late;
new->gaps = rtpstat->gaps;
new->jumps = rtpstat->jumps;
HASH_ADD(hh, class_c, HASH_FIRST, HASH_SIZE(*new), new);
}
} else {
old->seq += 1;
old->packets += rtpstat->packets;
old->missed += rtpstat->missed;
old->late += rtpstat->late;
old->gaps += rtpstat->gaps;
old->jumps += rtpstat->jumps;
}
}
//#if 0
/* Streams with significant amounts of packets */
if ((rtpstat->packets + rtpstat->missed) < 20)
continue;
/* Streams with issues */
if (rtpstat->gaps == 0 && rtpstat->late == 0 && rtpstat->jumps == 0)
continue;
/* Packets lost minimum 5% */
if (rtpstat->missed * 100 / (rtpstat->packets + rtpstat->missed) < 5)
continue;
//#endif
sprintf(src_ip, "%hhu.%hhu.%hhu.%hhu",
rtpstat->src_ip >> 24, (rtpstat->src_ip >> 16) & 0xff,
(rtpstat->src_ip >> 8) & 0xff, rtpstat->src_ip & 0xff);
sprintf(dst_ip, "%hhu.%hhu.%hhu.%hhu",
rtpstat->dst_ip >> 24, (rtpstat->dst_ip >> 16) & 0xff,
(rtpstat->dst_ip >> 8) & 0xff, rtpstat->dst_ip & 0xff);
miss_percent = (
100.0 * rtpstat->missed / (rtpstat->packets + rtpstat->missed));
for (fp = fps; *fp; ++fp) {
fprintf(
*fp,
"\n%c{\"from\": \"%s:%hu\", \"to\": \"%s:%hu\""
", \"ssrc\": %" PRIu32
", \"seq\": %" PRIu16
", \"not-lost\": %" PRIu32
", \"lost\": %" PRIu16
", \"lost-percent\": %.1f"
", \"late-or-dupe\": %" PRIu16
", \"gaps\": %" PRIu16
", \"jumps\": %" PRIu16
"}",
(printed == 0 ? ' ' : ','),
src_ip, rtpstat->src_port,
dst_ip, rtpstat->dst_port,
rtpstat->ssrc,
rtpstat->seq,
rtpstat->packets,
rtpstat->missed,
miss_percent,
rtpstat->late,
rtpstat->gaps,
rtpstat->jumps);
}
++printed;
}
for (fp = fps; *fp; ++fp)
fprintf(*fp, "]\n");
/* Class C summary */
/* "class_c": ... */
printed = 0;
for (fp = fps; *fp; ++fp)
fprintf(*fp, ",\"class_c\": [");
HASH_ITER(hh, class_c, rtpstat, tmp) {
float miss_percent;
/* Streams with significant amounts of packets */
if ((rtpstat->packets + rtpstat->missed) < 20)
continue;
/* Streams with issues */
if (rtpstat->gaps == 0 && rtpstat->late == 0 && rtpstat->jumps == 0)
continue;
#if 0
/* Packets lost minimum 5% */
if (rtpstat->missed * 100 / (rtpstat->packets + rtpstat->missed) < 5)
continue;
#endif
sprintf(src_ip, "%hhu.%hhu.%hhu.%hhu",
rtpstat->src_ip >> 24, (rtpstat->src_ip >> 16) & 0xff,
(rtpstat->src_ip >> 8) & 0xff, rtpstat->src_ip & 0xff);
miss_percent = (
100.0 * rtpstat->missed / (rtpstat->packets + rtpstat->missed));
for (fp = fps; *fp; ++fp) {
fprintf(
*fp,
"\n%c{\"from\": \"%s/24\""
", \"streams\": %" PRIu16
", \"not-lost\": %" PRIu32
", \"lost\": %" PRIu16
", \"lost-percent\": %.1f"
", \"late-or-dupe\": %" PRIu16
", \"gaps\": %" PRIu16
", \"jumps\": %" PRIu16
"}",
(printed == 0 ? ' ' : ','),
src_ip,
rtpstat->seq, /* abused "seq" */
rtpstat->packets,
rtpstat->missed,
miss_percent,
rtpstat->late,
rtpstat->gaps,
rtpstat->jumps);
}
++printed;
}
for (fp = fps; *fp; ++fp)
fprintf(*fp, "]\n");
HASH_ITER(hh, class_c, rtpstat, tmp) {
HASH_DEL(class_c, rtpstat);
free(rtpstat);
}
/* End output */
for (fp = fps; *fp; ++fp) {
if (!packets) {
fprintf(*fp, ",\"summary\": null\n}\n");
} else {
fprintf(
*fp,
",\"summary\": {"
"\"streams\": %u, "
"\"not-lost\": %u, "
"\"lost\": %u, "
"\"lost-percent\": %.2f, "
"\"late-or-dupe\": %u, "
"\"gaps\": %u, "
"\"jumps\": %u}\n}\n",
streams, packets, lost, 100.0 * lost / (lost + packets),
late, gaps, jumps);
}
fflush(*fp);
}
/* Flush/close/rename */
if (fps[1]) {
fclose(fps[1]);
rename(out__filename_tmp, out__filename);
}
}