forked from oe-alliance/satip-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtp.cpp
400 lines (335 loc) · 8.99 KB
/
rtp.cpp
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*
* satip: RTP processing
*
* Copyright (C) 2014 mc.fishdish@gmail.com
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <poll.h>
#include <errno.h>
#include <iostream>
#include <fstream>
#include "rtp.h"
#include "log.h"
//#define BUFFER_SIZE ((188 / 4) * 4096) /* multiple of ts packet and page size */
#define BUFFER_SIZE 1328 // 12byte +188*7
#define PORT_BASE 45000
#define PORT_RANGE 2000
satipRTP::satipRTP(int vtuner_fd, bool tcp_data, int rtp_net_buffer_size_mb) :
m_rtp_port(-1),
m_rtp_socket(-1),
m_rtcp_port(-1),
m_rtcp_socket(-1),
m_thread(0),
m_running(false),
m_rtp_net_buffer_size_mb(rtp_net_buffer_size_mb),
m_rtp_pseq(0),
m_hasLock(false),
m_signalStrength(0),
m_signalQuality(0),
m_openok(false)
{
DEBUG(MSG_MAIN,"Create RTP.\n");
m_vtuner_fd = vtuner_fd;
m_tcp_data = tcp_data;
if (tcp_data) {
m_openok = 1;
} else {
m_openok = !openRTP();
if (!m_openok)
DEBUG(MSG_MAIN,"Create RTP failed.\n");
}
}
satipRTP::~satipRTP()
{
DEBUG(MSG_MAIN,"Destruct RTP.\n");
stop();
if (m_rtcp_socket)
close(m_rtcp_socket);
if (m_rtp_socket)
close(m_rtp_socket);
}
void satipRTP::unset()
{
m_signalStrength = 0;
m_hasLock = false;
m_signalQuality = 0;
}
int satipRTP::openRTP()
{
int rtp_sock;
int rtp_port;
int rtcp_sock;
int rtcp_port;
struct timespec ts;
int attempts = PORT_RANGE/2;
clock_gettime(CLOCK_REALTIME, &ts);
srandom(ts.tv_nsec);
while ( --attempts > 0 )
{
struct sockaddr_in inaddr;
rtp_port = PORT_BASE + ( random() % (PORT_RANGE-1) );
rtcp_port = rtp_port+1;
rtp_sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
rtcp_sock= socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
memset(&inaddr, 0, sizeof(inaddr));
inaddr.sin_family = AF_INET;
inaddr.sin_addr.s_addr = htonl(INADDR_ANY);
inaddr.sin_port = htons(rtp_port);
/* rtp bind */
if (bind(rtp_sock, reinterpret_cast<struct sockaddr*>(&inaddr), sizeof(inaddr)) < 0)
{
close(rtp_sock);
close(rtcp_sock);
continue;
}
int len = m_rtp_net_buffer_size_mb * 1024 * 1024;
if (setsockopt(rtp_sock, SOL_SOCKET, SO_RCVBUFFORCE, &len, sizeof(len)))
WARN(MSG_MAIN, "unable to set UDP buffer (force) size to %d\n", len);
if (setsockopt(rtp_sock, SOL_SOCKET, SO_RCVBUF, &len, sizeof(len)))
WARN(MSG_MAIN, "unable to set UDP buffer size to %d\n", len);
socklen_t sl = sizeof(int);
if (!getsockopt(rtp_sock, SOL_SOCKET, SO_RCVBUF, &len, &sl))
DEBUG(MSG_DATA, "UDP buffer size is %d bytes\n", len);
memset(&inaddr, 0, sizeof(inaddr));
inaddr.sin_family = AF_INET;
inaddr.sin_addr.s_addr = htonl(INADDR_ANY);
inaddr.sin_port = htons(rtcp_port);
/* rtcp bind */
if (bind(rtcp_sock, reinterpret_cast<struct sockaddr*>(&inaddr), sizeof(inaddr)) < 0)
{
close(rtp_sock);
close(rtcp_sock);
continue;
}
INFO(MSG_NET, "RTP PORT : %d, RTCP PORT : %d\n", rtp_port, rtcp_port);
break;
}
if (attempts <= 0)
return -1;
m_rtp_port = rtp_port;
m_rtp_socket = rtp_sock;
m_rtcp_port = rtcp_port;
m_rtcp_socket = rtcp_sock;
return 0;
}
void satipRTP::parseRtcpAppPayload(const char* buffer)
{
/*
APP Packet String Payload Format:
ver=<major>.<minor>;src=<srcID>;tuner=<feID>,<level>,<lock>,<quality>,<frequency>,<polarisation>,
<system>,<type>,<pilots>,<roll_off>,<symbol_rate>,<fec_inner>;pids=<pid0>,...,<pidn>
level (Signal level) : Numerical value between 0 and 255
lock (Frontend lock) : Set to one of the following values:
'0' : the frontend is not locked
'1' : the frontend if locked
quality (Signal quality) : Numerical value between 0 and 15
*/
unset();
const char* strp = strstr(buffer, ";tuner=");
if (strp)
{
static int rateLimit = 0;
int level = 0;
int lock = 0;
int quality = 0;
strp = strstr(strp, ",");
sscanf(strp, ",%d,%d,%d,%*s", &level, &lock, &quality);
m_signalStrength = (level >= 0) ? (level * 65535 / 255) : 0;
m_hasLock = lock == 1;
m_signalQuality = (m_hasLock && (quality >= 0)) ? (quality * 65535 / 15) : 0;
++rateLimit;
if (rateLimit > 3) {
rateLimit = 0;
DEBUG(MSG_MAIN, "RTCP: signalStrength : %d, hasLock : %d, signalQuality : %d\n", m_signalStrength, m_hasLock, m_signalQuality);
}
}
}
void satipRTP::rtcpData(unsigned char* a_buffer, int a_size)
{
int done = 0;
uint32_t* buffer = reinterpret_cast<uint32_t*>(a_buffer);
uint32_t val;
int pt;
int length;
DEBUG(MSG_DATA,"RTCP DATA : %s\n", buffer);
while(done < a_size)
{
val = ntohl(*buffer);
pt = ( val & 0x00ff0000 ) >> 16 ;
length = val & 0x0000ffff;
switch(pt)
{
case 204:
if (length > 1)
{
val = buffer[2];
DEBUG(MSG_DATA,"RTCP: app defined (204) name: %c%c%c%c\n",
val & 0x000000ff,
val >> 8 & 0x000000ff,
val >> 16 & 0x000000ff,
val >> 24 & 0x000000ff);
val = htonl(buffer[3]) & 0x0000ffff; // string_length
if (val > 0) {
const std::string payload(reinterpret_cast<char*>(&buffer[4]), val);
DEBUG(MSG_DATA, "RTCP APP string Payload : %s\n", payload.c_str());
parseRtcpAppPayload(payload.c_str());
}
}
break;
default:
DEBUG(MSG_DATA,"RTCP: PT : %d.. skip.\n", pt);
break;
}
buffer += length + 1;
done += (length + 1) * 4;
}
}
int satipRTP::Write(int fd, unsigned char *buffer, int size)
{
int count = 0;
// Check for begin of RTP Header, then get packet sequence number
if (buffer[0] == 0x80 && buffer[1] == 0x21) {
const uint16_t pseq = (buffer[2] << 8) + buffer[3];
++m_rtp_pseq;
m_rtp_pseq %= 0x10000;
if (m_rtp_pseq != pseq) {
DEBUG(MSG_NET, "RTP/AVP Data Continuity error. expected: %d - packet: %d\n", m_rtp_pseq, pseq);
m_rtp_pseq = pseq;
}
count = 12;
}
while(count < size) {
const auto write_res = ::write(fd, buffer + count, size - count);
if (write_res == 0) {
return -1;
}
if (write_res == -1) {
if (errno == EINTR) {
DEBUG(MSG_MAIN, "WRITE : raise EINTR..continue.\n");
continue;
}
perror("RTP Read.");
return write_res;
}
count += write_res;
}
return count;
}
ssize_t satipRTP::Read(int fd, unsigned char *buffer, int size)
{
ssize_t recv_res;
while(1)
{
recv_res = recv(fd, buffer, size, 0);
if (recv_res == -1)
{
if (errno == EINTR)
{
DEBUG(MSG_MAIN, "READ : raise EINTR..continue.\n");
continue;
}
perror("RTP Read.");
return recv_res;
}
break; /* one read */
}
return recv_res;
}
void* satipRTP::rtpDump()
{
unsigned char rx_data[BUFFER_SIZE];
struct pollfd pollfds[2];
int rx_bytes;
int wr_bytes;
pollfds[0].fd = m_rtp_socket;
pollfds[0].events = POLLIN;
pollfds[0].revents = 0;
pollfds[1].fd = m_rtcp_socket;
pollfds[1].events = POLLIN;
pollfds[1].revents = 0;
DEBUG(MSG_MAIN, "RTP LOOP START\n");
while(m_running)
{
pollfds[0].revents = 0;
pollfds[1].revents = 0;
poll(pollfds, 2, 1000);
if (pollfds[0].revents & POLLIN)
{
rx_bytes = Read(pollfds[0].fd, rx_data, sizeof(rx_data));
if (rx_bytes > 12 && rx_data[12] == 0x47) {
wr_bytes = Write(m_vtuner_fd, &rx_data[0], rx_bytes);
DEBUG(MSG_DATA, "RTP DATA : read %d bytes, write %d bytes\n", rx_bytes, wr_bytes);
}
}
if (pollfds[1].revents & POLLIN)
{
rx_bytes = recv(pollfds[1].fd, rx_data, sizeof(rx_data), 0);
if (rx_bytes > 0)
{
DEBUG(MSG_DATA,"RTCP DATA : read %d bytes\n", rx_bytes);
rtcpData(rx_data, rx_bytes);
}
}
}
DEBUG(MSG_MAIN,"RTP LOOP END.\n");
return 0;
}
void satipRTP::rtpTcpData(unsigned char *data, int size)
{
if (size <= 4 + 12) {
return;
}
if (data[1] == 0) {
const int wr = Write(m_vtuner_fd, data + 4, size - 4);
DEBUG(MSG_DATA, "RTP TCP DATA : read %d bytes, write %d bytes\n", size - 4, wr);
} else if (data[1] == 1) {
rtcpData(data + 4, size - 4);
DEBUG(MSG_DATA, "RTCP TCP DATA : read %d bytes\n", size - 4);
}
}
void *satipRTP::thread_wrapper(void *ptr)
{
return static_cast<satipRTP*>(ptr)->rtpDump();
}
void satipRTP::run()
{
m_running = true;
if (!m_tcp_data)
pthread_create( &m_thread, NULL, thread_wrapper, this);
}
void satipRTP::stop()
{
if (m_rtcp_socket != -1) {
const auto write_res = ::write(m_rtcp_socket, "end", 4);
if (write_res < 3) {
ERROR(MSG_MAIN,"RTP thread ENDED wrong.\n");
}
}
m_running = false;
m_rtp_pseq = 0;
if (m_thread) {
pthread_join(m_thread, nullptr);
DEBUG(MSG_MAIN,"RTP thread END.\n");
m_thread = 0;
}
}