-
Notifications
You must be signed in to change notification settings - Fork 18
/
mpe2ts.c
345 lines (296 loc) · 8.82 KB
/
mpe2ts.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
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
/*
* mpe2ts.c
* Uses parts of astra-sm
*
* Created on: 08.10.2018
* Author: athoik
*/
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <inttypes.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <time.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <arpa/inet.h>
/*
* mpegts/tscore.h
*/
#define TS_PACKET_SIZE 188
#define TS_HEADER_SIZE 4
#define TS_BODY_SIZE (TS_PACKET_SIZE - TS_HEADER_SIZE)
#define TS_IS_SYNC(_ts) ((_ts[0] == 0x47))
#define TS_IS_PAYLOAD(_ts) ((_ts[3] & 0x10))
#define TS_IS_PAYLOAD_START(_ts) ((TS_IS_PAYLOAD(_ts) && (_ts[1] & 0x40)))
#define TS_IS_AF(_ts) ((_ts[3] & 0x20))
#define TS_GET_PID(_ts) ((uint16_t)(((_ts[1] & 0x1F) << 8) | _ts[2]))
#define TS_GET_CC(_ts) (_ts[3] & 0x0F)
#define TS_GET_PAYLOAD(_ts) ( \
(!TS_IS_PAYLOAD(_ts)) ? (NULL) : ( \
(!TS_IS_AF(_ts)) ? (&_ts[TS_HEADER_SIZE]) : ( \
(_ts[4] >= TS_BODY_SIZE - 1) ? (NULL) : (&_ts[TS_HEADER_SIZE + 1 + _ts[4]])) \
) \
)
/*
* mpegts/psi.h
*/
#define PSI_MAX_SIZE 0x00000FFF
#define PSI_HEADER_SIZE 3
#define PSI_BUFFER_GET_SIZE(_b) \
(PSI_HEADER_SIZE + (((_b[1] & 0x0f) << 8) | _b[2]))
typedef struct
{
uint8_t cc;
uint32_t crc32;
uint16_t buffer_size;
uint16_t buffer_skip;
uint8_t buffer[PSI_MAX_SIZE];
/* extra callback parameters */
uint16_t port;
uint32_t ip;
bool debug;
} mpegts_psi_t;
/*
* mpegts/psi.c
*/
static
void callback(mpegts_psi_t *psi);
static
void process_ts(mpegts_psi_t *psi, const uint8_t *ts)
{
const uint8_t *payload = TS_GET_PAYLOAD(ts);
if(!payload)
return;
const uint8_t cc = TS_GET_CC(ts);
if(TS_IS_PAYLOAD_START(ts))
{
const uint8_t ptr_field = *payload;
++payload; // skip pointer field
if(ptr_field > 0)
{ // pointer field
if(ptr_field >= TS_BODY_SIZE)
{
psi->buffer_skip = 0;
return;
}
if(psi->buffer_skip > 0)
{
if(((psi->cc + 1) & 0x0f) != cc)
{ // discontinuity error
psi->buffer_skip = 0;
return;
}
memcpy(&psi->buffer[psi->buffer_skip], payload, ptr_field);
if(psi->buffer_size == 0)
{ // incomplete PSI header
const size_t psi_buffer_size = PSI_BUFFER_GET_SIZE(psi->buffer);
if(psi_buffer_size <= 3 || psi_buffer_size > PSI_MAX_SIZE)
{
psi->buffer_skip = 0;
return;
}
psi->buffer_size = psi_buffer_size;
}
if(psi->buffer_size != psi->buffer_skip + ptr_field)
{ // checking PSI length
psi->buffer_skip = 0;
return;
}
psi->buffer_skip = 0;
callback(psi);
}
payload += ptr_field;
}
while(((payload - ts) < TS_PACKET_SIZE) && (payload[0] != 0xff))
{
psi->buffer_size = 0;
const uint8_t remain = (ts + TS_PACKET_SIZE) - payload;
if(remain < 3)
{
memcpy(psi->buffer, payload, remain);
psi->buffer_skip = remain;
break;
}
const size_t psi_buffer_size = PSI_BUFFER_GET_SIZE(payload);
if(psi_buffer_size <= 3 || psi_buffer_size > PSI_MAX_SIZE)
break;
const size_t cpy_len = (ts + TS_PACKET_SIZE) - payload;
if(cpy_len > TS_BODY_SIZE)
break;
psi->buffer_size = psi_buffer_size;
if(psi_buffer_size > cpy_len)
{
memcpy(psi->buffer, payload, cpy_len);
psi->buffer_skip = cpy_len;
break;
}
else
{
memcpy(psi->buffer, payload, psi_buffer_size);
psi->buffer_skip = 0;
callback(psi);
payload += psi_buffer_size;
}
}
}
else
{ // !TS_PUSI(ts)
if(!psi->buffer_skip)
return;
if(((psi->cc + 1) & 0x0f) != cc)
{ // discontinuity error
psi->buffer_skip = 0;
return;
}
if(psi->buffer_size == 0)
{ // incomplete PSI header
if(psi->buffer_skip >= 3)
{
psi->buffer_skip = 0;
return;
}
memcpy(&psi->buffer[psi->buffer_skip], payload, 3 - psi->buffer_skip);
const size_t psi_buffer_size = PSI_BUFFER_GET_SIZE(psi->buffer);
if(psi_buffer_size <= 3 || psi_buffer_size > PSI_MAX_SIZE)
{
psi->buffer_skip = 0;
return;
}
psi->buffer_size = psi_buffer_size;
}
const size_t remain = psi->buffer_size - psi->buffer_skip;
if(remain <= TS_BODY_SIZE)
{
memcpy(&psi->buffer[psi->buffer_skip], payload, remain);
psi->buffer_skip = 0;
callback(psi);
}
else
{
memcpy(&psi->buffer[psi->buffer_skip], payload, TS_BODY_SIZE);
psi->buffer_skip += TS_BODY_SIZE;
}
}
psi->cc = cc;
}
/*
* main program
*/
static
void callback(mpegts_psi_t *psi)
{
if (psi->buffer[0] != 0x3e)
return;
const uint8_t *ptr = psi->buffer;
size_t len = psi->buffer_size;
/* MAC address */
unsigned char dest_mac[6];
dest_mac[5] = psi->buffer[3];
dest_mac[4] = psi->buffer[4];
dest_mac[3] = psi->buffer[8];
dest_mac[2] = psi->buffer[9];
dest_mac[1] = psi->buffer[10];
dest_mac[0] = psi->buffer[11];
if (psi->debug)
fprintf(stderr, "MAC addess: %2X:%2X:%2X:%2X:%2X:%2X\n", dest_mac[0],
dest_mac[1], dest_mac[2], dest_mac[3], dest_mac[4], dest_mac[5]);
/* Parse IP header */
unsigned char *ip = psi->buffer + 12;
/* IP version - v4 */
char version = (ip[0] & 0xF0) >> 4;
if(version != 4) {
fprintf(stderr, "Not IP packet.. ver=%d\n", version);
return;
}
/* Protocol number */
char proto = ip[9];
/* filter non-UDP packets */
if(proto != 17)
{
fprintf(stderr, "Not UDP protocol %d\n", proto);
return;
}
/* packet length */
//unsigned short len_ip = ip[2] << 8 | ip[3];
/* source IP addres */
unsigned char src_ip[4];
src_ip[0] = ip[12];
src_ip[1] = ip[13];
src_ip[2] = ip[14];
src_ip[3] = ip[15];
/* Destination IP address */
unsigned char dst_ip[4];
dst_ip[0] = ip[16];
dst_ip[1] = ip[17];
dst_ip[2] = ip[18];
dst_ip[3] = ip[19];
unsigned char *udp = ip + 20;
unsigned short src_port = (udp[0] << 8) | udp[1];
unsigned short dst_port = (udp[2] << 8) | udp[3];
unsigned short len_udp = (udp[4] << 8) | udp[5];
//unsigned short chk_udp = (udp[6] << 8) | udp[7];
if (psi->debug)
{
fprintf(stderr, "UDP %d.%d.%d.%d:%d --> %d.%d.%d.%d:%d [%d bytes payload (%zu)]\n",
src_ip[0], src_ip[1], src_ip[2], src_ip[3], src_port,
dst_ip[0], dst_ip[1], dst_ip[2], dst_ip[3], dst_port,
len_udp-8, len-40);
}
/* maybe use dst_ip[0] + dst_ip[1] << 8 + dst_ip[2] << 16 + dst_ip[3] << 24 instead? */
char dbuf[18];
sprintf(dbuf, "%u.%u.%u.%u", dst_ip[0], dst_ip[1], dst_ip[2], dst_ip[3]);
uint32_t dip;
/* skip unknown ip or port */
if (inet_pton (AF_INET, dbuf, &dip) != 1) return;
if (dip != psi->ip) return;
if (dst_port != psi->port) return;
/* skip headers: MPE + IP + UDP */
ptr += (12 + 20 + 8);
len -= (12 + 20 + 8);
while (len >= TS_PACKET_SIZE)
{
fwrite(ptr, TS_PACKET_SIZE, 1, stdout);
ptr += TS_PACKET_SIZE;
len -= TS_PACKET_SIZE;
}
}
int main(int argc, const char *argv[])
{
uint32_t pid = 0;
uint32_t ip = 0;
uint16_t port = 0;
if (argc < 3)
{
fprintf(stderr, "usage: %s <pid> <ip> <port>\n", argv[0]);
exit(EXIT_FAILURE);
}
pid = atoi(argv[1]);
if (inet_pton (AF_INET, argv[2], &ip) != 1)
{
fprintf(stderr, "invalid ip: %s\n", argv[2]);
exit(EXIT_FAILURE);
}
port = atoi(argv[3]);
fprintf(stderr, "using pid %u ip %s port %u\n", pid, argv[2], port);
mpegts_psi_t psi;
memset(&psi, 0, sizeof(psi));
/* extra parameters in callback for payload extract */
psi.ip = ip;
psi.port = port;
psi.debug = getenv("DEBUG") ? 1 : 0;
uint8_t ts[TS_PACKET_SIZE];
while (fread(ts, sizeof(ts), 1, stdin) == 1)
{
if (TS_IS_SYNC(ts) && TS_GET_PID(ts) == pid)
process_ts(&psi, ts);
}
return 0;
}