-
Notifications
You must be signed in to change notification settings - Fork 13
/
sniff_rtp.c
313 lines (271 loc) · 9.58 KB
/
sniff_rtp.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
/* vim: set ts=8 sw=4 sts=4 et: */
/*======================================================================
Copyright (C) 2008,2009,2014 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 "endian.h"
#include <sys/socket.h>
#include <netinet/in.h>
#include <net/if.h>
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <netpacket/packet.h> /* linux-specific: struct_ll and PF_PACKET */
/* Global from libslowpoll */
extern int libslowpoll_wait;
/* Static constants (also found in linux/if_ether.h) */
#if BYTE_ORDER == LITTLE_ENDIAN
# define ETH_P_ALL 0x0300 /* all frames */
# define ETH_P_IP 0x0008 /* IP frames */
# define ETH_P_8021Q 0x0081 /* 802.1q vlan frames */
#elif BYTE_ORDER == BIG_ENDIAN
# define ETH_P_ALL 0x0003 /* all frames */
# define ETH_P_IP 0x0800 /* IP frames */
# define ETH_P_8021Q 0x8100 /* 802.1q vlan frames */
#endif
/* Ethernet header */
struct sniff_ether {
uint8_t dest[6]; /* destination host address */
uint8_t source[6]; /* source host address */
uint16_t type; /* ETH_P_* type */
uint16_t pcp_cfi_vid; /* 3bit prio, 1bit format indicator, */
/* 12bit vlan (0=no, fff=reserved) */
uint16_t type2; /* encapsulated type */
};
/* IP header */
struct sniff_ip {
/* Take care, place the bitmasks in high order first. */
uint8_t hl:4, /* header length */
ver:4; /* version */
uint8_t tos; /* type of service */
uint16_t len; /* total length */
uint16_t id; /* identification */
uint16_t off; /* fragment offset field */
#define IP_RF 0x8000 /* reserved fragment flag */
#define IP_DF 0x4000 /* dont fragment flag */
#define IP_MF 0x2000 /* more fragments flag */
#define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
uint8_t ttl; /* time to live */
uint8_t proto; /* protocol */
uint16_t sum; /* checksum */
uint32_t src; /* source address */
uint32_t dst; /* dest address */
};
#define PROTO_TCP 6
#define PROTO_UDP 17
/* UDP header */
struct sniff_udp {
uint16_t sport;
uint16_t dport;
uint16_t len;
uint16_t sum;
};
/* RTP header */
struct sniff_rtp {
/* Take care, place the bitmasks in high order first. */
uint8_t cc:4,
x:1,
p:1,
ver:2;
uint8_t pt:7,
m:1;
uint16_t seq;
uint32_t stamp;
uint32_t ssrc;
/* ... */
};
#define PT_ULAW 0
#define PT_ALAW 8
static struct memory_t *sniff__memory;
static pcap_t *sniff__handle;
static unsigned sniff__adjust_slowpoll_dropped;
static void sniff__adjust_slowpoll_wait();
static void sniff__switch_memory(int signum);
static void sniff__loop_done(int signum);
void sniff_help() {
printf(
"/*********************"
" module: sniff (pcap+rtp) *******************************/\n"
"Sniff uses libpcap to listen for all incoming and outgoing RTP"
" packets.\n"
"\n"
);
}
static void sniff_got_packet(u_char *args, const struct pcap_pkthdr *header,
const u_char *packet) {
struct sniff_ether *ether = (struct sniff_ether*)packet;
struct sniff_ip *ip;
struct sniff_udp *udp;
uint16_t sport;
uint16_t dport;
struct sniff_rtp *rtp;
if (ether->type == ETH_P_IP) {
ip = (struct sniff_ip*)(packet + 14);
} else if (ether->type == ETH_P_8021Q && ether->type2 == ETH_P_IP) {
ip = (struct sniff_ip*)(packet + 18);
} else {
/* Skip. */
return;
}
if (ip->proto != PROTO_UDP) {
return;
}
udp = (struct sniff_udp*)(ip + 1);
sport = htons(udp->sport);
dport = htons(udp->dport);
rtp = (struct sniff_rtp*)(udp + 1);
if (ntohs(udp->len) < sizeof(struct sniff_rtp)) {
return;
}
if (rtp->ver != 2) {
return;
}
{
int recently_active = sniff__memory->active;
struct rtpstat_t *curmem = sniff__memory->rtphash[recently_active];
uint16_t seq = ntohs(rtp->seq);
struct rtpstat_t find = {
.src_ip = ntohl(ip->src),
.dst_ip = ntohl(ip->dst),
.src_port = sport,
.dst_port = dport,
/* ignore: tlen, vlan */
.ssrc = ntohl(rtp->ssrc),
/* the rest: zero */
};
struct rtpstat_t *old;
#if 0
fprintf(stderr, "len: %hhu, %hhu, %hhu, %hhu, %hhu, %hhu\n",
rtp->ver, rtp->p, rtp->x, rtp->cc, rtp->m, rtp->pt);
#endif
HASH_FIND(hh, curmem, &find.HASH_FIRST, HASH_SIZE(find), old);
if (!old) {
struct rtpstat_t *rtpstat = malloc(sizeof(*rtpstat));
if (rtpstat) {
memcpy(rtpstat, &find, sizeof(*rtpstat));
/* ignore: rtp->stamp */
rtpstat->seq = seq;
rtpstat->packets = 1;
HASH_ADD(hh, curmem, HASH_FIRST, HASH_SIZE(*rtpstat), rtpstat);
}
} else {
if (old->seq + 1 == seq) {
/* Excellent! */
old->seq = seq;
} else {
int16_t diff = seq - old->seq;
if (diff < -15 || 15 < diff) {
old->jumps += 1;
old->seq = seq;
} else if (diff > 0) {
old->gaps += 1;
old->missed += (diff - 1);
old->seq = seq;
} else {
old->late += 1;
/* don't re-set seq here */
}
}
old->packets += 1;
}
/* HASH_ADD may have mutated the pointer. */
sniff__memory->rtphash[recently_active] = curmem;
}
}
int sniff_snaplen() {
return (sizeof(struct sniff_ether) +
sizeof(struct sniff_ip) +
sizeof(struct sniff_udp) +
sizeof(struct sniff_rtp));
}
void sniff_loop(pcap_t *handle, struct memory_t *memory) {
struct pcap_stat stat = {0,};
/* Set memory and other globals */
sniff__handle = handle;
sniff__memory = memory;
/* Add signal handlers */
util_signal_set(SIGUSR1, sniff__switch_memory);
util_signal_set(SIGINT, sniff__loop_done);
util_signal_set(SIGHUP, sniff__loop_done);
util_signal_set(SIGQUIT, sniff__loop_done);
util_signal_set(SIGTERM, sniff__loop_done);
#ifndef NDEBUG
fprintf(stderr, "sniff_loop: Starting loop (mem %p/%p/%i).\n",
memory->rtphash[0], memory->rtphash[1], memory->active);
#endif
/* This uses the fast PACKET_RX_RING if available. */
pcap_loop(handle, 0, sniff_got_packet, NULL);
#ifndef NDEBUG
fprintf(stderr, "sniff_loop: Ended loop at user/system request.\n");
#endif
/* Fetch grand total stats */
if (pcap_stats(handle, &stat) < 0) {
fprintf(stderr, "pcap_stats: %s\n", pcap_geterr(handle));
return;
}
fprintf(stderr, "%u packets received by filter\n", stat.ps_recv);
fprintf(stderr, "%u packets dropped by kernel\n",
stat.ps_drop - sniff__adjust_slowpoll_dropped);
fprintf(stderr, "%u packets dropped by interface\n", stat.ps_ifdrop);
/* Remove signal handlers */
util_signal_set(SIGUSR1, SIG_IGN);
util_signal_set(SIGINT, SIG_IGN);
util_signal_set(SIGHUP, SIG_IGN);
util_signal_set(SIGQUIT, SIG_IGN);
util_signal_set(SIGTERM, SIG_IGN);
}
static void sniff__switch_memory(int signum) {
int recently_active = sniff__memory->active;
sniff__memory->active = !recently_active;
#ifndef NDEBUG
fprintf(
stderr,
"sniff__switch_memory: Switched from memory %d (%p) to %d (%p).\n",
recently_active, sniff__memory->rtphash[recently_active],
!recently_active, sniff__memory->rtphash[!recently_active]);
#endif
/* Ajust wait time if needed */
sniff__adjust_slowpoll_wait();
}
static void sniff__loop_done(int signum) {
pcap_breakloop(sniff__handle);
}
void sniff_release(struct rtpstat_t **memory) {
struct rtpstat_t *rtpstat, *tmp;
HASH_ITER(hh, *memory, rtpstat, tmp) {
HASH_DEL(*memory, rtpstat);
free(rtpstat);
}
}
void sniff__adjust_slowpoll_wait() {
struct pcap_stat stat;
if (pcap_stats(sniff__handle, &stat) >= 0) {
if (stat.ps_drop > sniff__adjust_slowpoll_dropped) {
unsigned dropped = stat.ps_drop - sniff__adjust_slowpoll_dropped;
if (libslowpoll_wait > 500) {
/* Decrease slowpoll wait time */
libslowpoll_wait /= 2;
fprintf(stderr, "%u packets dropped by kernel: "
"reducing slowpoll_wait to %d\n", dropped,
libslowpoll_wait);
} else {
fprintf(stderr, "%u packets dropped by kernel: "
"your system is too slow\n", dropped);
}
}
sniff__adjust_slowpoll_dropped = stat.ps_drop;
}
}