summaryrefslogtreecommitdiffstats
path: root/multicat.c
blob: 3f3f80faa00122c901d0c63536f57472e7d3ef2e (plain)
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
/*****************************************************************************
 * multicat.c: netcat-equivalent for multicast
 *****************************************************************************
 * Copyright (C) 2009 VideoLAN
 * $Id: multicat.c 48 2007-11-30 14:08:21Z cmassiot $
 *
 * Authors: Christophe Massiot <massiot@via.ecp.fr>
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * 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 <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <pthread.h>

#include "util.h"

#define RTP_HEADER_MAX_SIZE (RTP_HEADER_SIZE + 15 * 4)
#define RTP_TS_TYPE 33

/*****************************************************************************
 * Local declarations
 *****************************************************************************/
static int i_input_fd = -1, i_output_fd;
FILE *p_input_aux, *p_output_aux;
static uint16_t i_pcr_pid = 0;
static bool b_overwrite_ssrc = false;
static in_addr_t i_ssrc = 0;
static bool b_input_udp = false, b_output_udp = false;
static size_t i_asked_payload_size = DEFAULT_PAYLOAD_SIZE;
static bool b_pad_output = true;

static bool b_die = false;
static uint16_t i_rtp_cc;
static uint64_t i_stc = 0; /* system time clock, used for date calculations */
static uint64_t i_pcr = 0, i_pcr_stc = 0; /* for RTP/TS output */
void (*pf_Skip)( size_t i_len, int i_nb_chunks );
ssize_t (*pf_Read)( void *p_buf, size_t i_len );
ssize_t (*pf_Write)( const void *p_buf, size_t i_len );

extern int i_verbose;

static void usage(void)
{
    msg_Raw( NULL, "Usage: multicat [-v] [-i <RT priority>] [-t <ttl>] [-p <PCR PID>] [-s <chunks>] [-n <chunks>] [-d <time>] [-a] [-S <SSRC IP>] [-u] [-U] [-P] [-m <payload size>] <input item> <output item>" );
    msg_Raw( NULL, "    item format: <file path | device path | FIFO path | network host>" );
    msg_Raw( NULL, "    host format: [<connect addr>[:<connect port>]][@[<bind addr][:<bind port>]]" );
    msg_Raw( NULL, "    -v: enable verbose output" );
    msg_Raw( NULL, "    -vv: more verbose output" );
    msg_Raw( NULL, "    -p: overwrite or create RTP timestamps using PCR PID (MPEG-2/TS)" );
    msg_Raw( NULL, "    -s: skip the first N chunks of payload" );
    msg_Raw( NULL, "    -n: exit after playing N chunks of payload" );
    msg_Raw( NULL, "    -d: exit after definite time (in 27 MHz units)" );
    msg_Raw( NULL, "    -a: append to existing destination file (risky)" );
    msg_Raw( NULL, "    -S: overwrite or create RTP SSRC" );
    msg_Raw( NULL, "    -u: source has no RTP header" );
    msg_Raw( NULL, "    -U: destination has no RTP header" );
    msg_Raw( NULL, "    -P: don't add padding to output" );
    msg_Raw( NULL, "    -m: size of the payload chunk, excluding optional RTP header (default 1316)" );
    exit(EXIT_FAILURE);
}

/*****************************************************************************
 * Signal Handler
 *****************************************************************************/
static void SigHandler( int i_signal )
{
    b_die = true;

    if ( i_input_fd >= 0 )
        close(i_input_fd);
}

/*****************************************************************************
 * udp_*: UDP socket handlers
 *****************************************************************************/
static int i_udp_nb_skips = 0;

static void udp_Skip( size_t i_len, int i_nb_chunks )
{
    i_udp_nb_skips = i_nb_chunks;
}

static ssize_t udp_Read( void *p_buf, size_t i_len )
{
    ssize_t i_ret;
    if ( (i_ret = recv( i_input_fd, p_buf, i_len, 0 )) < 0 )
    {
        if ( !b_die )
        {
            msg_Err( NULL, "recv error (%s)", strerror(errno) );
            b_die = true;
        }
        return 0;
    }

    i_stc = wall_Date();
    if ( i_udp_nb_skips )
    {
        i_udp_nb_skips--;
        return 0;
    }
    return i_ret;
}

static ssize_t udp_Write( const void *p_buf, size_t i_len )
{
    size_t i_ret;
    if ( (i_ret = send( i_output_fd, p_buf, i_len, 0 )) < 0 )
        msg_Err( NULL, "write error (%s)", strerror(errno) );
    return i_ret;
}

/*****************************************************************************
 * stream_*: FIFO and character device handlers
 *****************************************************************************/
static int i_stream_nb_skips = 0;

static void stream_Skip( size_t i_len, int i_nb_chunks )
{
    i_stream_nb_skips = i_nb_chunks;
}

static ssize_t stream_Read( void *p_buf, size_t i_len )
{
    ssize_t i_ret;
    if ( (i_ret = read( i_input_fd, p_buf, i_len )) < 0 )
    {
        if ( !b_die )
        {
            msg_Err( NULL, "read error (%s)", strerror(errno) );
            b_die = true;
        }
        return 0;
    }
    if ( i_ret == 0 )
    {
        msg_Dbg( NULL, "end of file reached" );
        b_die = true;
        return 0;
    }

    i_stc = wall_Date();
    if ( i_stream_nb_skips )
    {
        i_stream_nb_skips--;
        return 0;
    }
    return i_ret;
}

static ssize_t stream_Write( const void *p_buf, size_t i_len )
{
    size_t i_ret;
    if ( (i_ret = write( i_output_fd, p_buf, i_len )) < 0 )
        msg_Err( NULL, "write error (%s)", strerror(errno) );
    return i_ret;
}

/*****************************************************************************
 * file_*: handler for the auxiliary file format
 *****************************************************************************/
static void file_Skip( size_t i_len, int i_nb_chunks )
{
    lseek( i_input_fd, (off_t)i_len * (off_t)i_nb_chunks, SEEK_SET );
    fseeko( p_input_aux, 8 * (off_t)i_nb_chunks, SEEK_SET );
}

static ssize_t file_Read( void *p_buf, size_t i_len )
{
    /* for correct throughput without rounding approximations */
    static uint64_t i_file_first_stc = 0, i_file_first_wall = 0;

    uint8_t p_aux[8];
    uint64_t i_wall;
    ssize_t i_ret;

    if ( (i_ret = read( i_input_fd, p_buf, i_len )) < 0 )
    {
        if ( !b_die )
        {
            msg_Err( NULL, "read error (%s)", strerror(errno) );
            b_die = true;
        }
        return 0;
    }
    if ( i_ret == 0 )
    {
        msg_Dbg( NULL, "end of file reached" );
        b_die = true;
        return 0;
    }

    if ( fread( p_aux, 8, 1, p_input_aux ) != 1 )
    {
        msg_Warn( NULL, "premature end of aux file reached" );
        b_die = true;
        return 0;
    }
    i_stc = ((uint64_t)p_aux[0] << 56)
            | ((uint64_t)p_aux[1] << 48)
            | ((uint64_t)p_aux[2] << 40)
            | ((uint64_t)p_aux[3] << 32)
            | ((uint64_t)p_aux[4] << 24)
            | ((uint64_t)p_aux[5] << 16)
            | ((uint64_t)p_aux[6] << 8)
            | ((uint64_t)p_aux[7] << 0);
    i_wall = wall_Date();

    if ( !i_file_first_wall )
    {
        i_file_first_wall = i_wall;
        i_file_first_stc = i_stc;
    }

    if ( (i_stc - i_file_first_stc) > (i_wall - i_file_first_wall) )
        wall_Sleep( (i_stc - i_file_first_stc) - (i_wall - i_file_first_wall) );
    return i_ret;
}

static ssize_t file_Write( const void *p_buf, size_t i_len )
{
    uint8_t p_aux[8];
    ssize_t i_ret;

    if ( (i_ret = write( i_output_fd, p_buf, i_len )) < 0 )
    {
        msg_Err( NULL, "couldn't write to file" );
        return i_ret;
    }

    p_aux[0] = i_stc >> 56;
    p_aux[1] = (i_stc >> 48) & 0xff;
    p_aux[2] = (i_stc >> 40) & 0xff;
    p_aux[3] = (i_stc >> 32) & 0xff;
    p_aux[4] = (i_stc >> 24) & 0xff;
    p_aux[5] = (i_stc >> 16) & 0xff;
    p_aux[6] = (i_stc >> 8) & 0xff;
    p_aux[7] = (i_stc >> 0) & 0xff;
    if ( fwrite( p_aux, 8, 1, p_output_aux ) != 1 )
        msg_Err( NULL, "couldn't write to auxiliary file" );

    return i_ret;
}

/*****************************************************************************
 * GetPCR: read PCRs to align RTP timestamps with PCR scale (RFC compliance)
 *****************************************************************************/
static void GetPCR( const uint8_t *p_buffer, size_t i_read_size )
{
    while ( i_read_size >= TS_SIZE )
    {
        uint16_t i_pid = ts_GetPID( p_buffer );

        if ( !ts_CheckSync( p_buffer ) )
        {
            msg_Warn( NULL, "invalid TS packet (sync=0x%x)", p_buffer[0] );
            return;
        }
        if ( (i_pid == i_pcr_pid || i_pcr_pid == 8192)
              && ts_HasPCR( p_buffer ) )
        {
            i_pcr = ts_GetPCR( p_buffer ) * 300 + ts_GetPCRExt( p_buffer );
            i_pcr_stc = i_stc;
        }
        p_buffer += TS_SIZE;
        i_read_size -= TS_SIZE;
    }
}

/*****************************************************************************
 * Entry point
 *****************************************************************************/
int main( int i_argc, char **pp_argv )
{
    int i_priority = -1;
    int i_ttl = 0;
    int i_skip_chunks = 0, i_nb_chunks = -1;
    uint64_t i_duration = 0, i_last_stc = 0;
    bool b_append = false;
    uint8_t *p_buffer, *p_read_buffer;
    size_t i_max_read_size, i_max_write_size;
    char *p_input = "-", *p_output = "-";
    int c;

    i_verbose = VERB_WARN;

    while ( (c = getopt( i_argc, pp_argv, "vi:t:p:s:n:d:aS:uUPm:h" )) != -1 )
    {
        switch ( c )
        {
        case 'v':
            i_verbose++;
            break;

        case 'i':
            i_priority = strtol( optarg, NULL, 0 );
            break;

        case 't':
            i_ttl = strtol( optarg, NULL, 0 );
            break;

        case 'p':
            i_pcr_pid = strtol( optarg, NULL, 0 );
            break;

        case 's':
            i_skip_chunks = strtol( optarg, NULL, 0 );
            break;

        case 'n':
            i_nb_chunks = strtol( optarg, NULL, 0 );
            break;

        case 'd':
            i_duration = strtoull( optarg, NULL, 0 );
            break;

        case 'a':
            b_append = true;
            break;

        case 'S':
        {
            struct in_addr maddr;
            if ( !inet_aton( optarg, &maddr ) )
                usage();
            i_ssrc = maddr.s_addr;
            b_overwrite_ssrc = true;
            break;
        }

        case 'u':
            b_input_udp = true;
            break;

        case 'U':
            b_output_udp = true;
            break;

        case 'P':
            b_pad_output = false;
            break;

        case 'm':
            i_asked_payload_size = strtol( optarg, NULL, 0 );
            break;

        case 'h':
        default:
            usage();
            break;
        }
    }
    if ( optind < i_argc )
    {
        p_input = pp_argv[optind];
	optind++;
    }
    if ( optind < i_argc )
    {
        p_output = pp_argv[optind];
	optind++;
    }

    if ( strcmp( "-", p_input ) == 0 )
    {
        i_input_fd = STDIN_FILENO;
	pf_Read = stream_Read;
	pf_Skip = stream_Skip;
	b_input_udp = true;
    }
    else if ( (i_input_fd = OpenSocket( p_input, i_ttl, NULL )) >= 0 )
    {
        pf_Read = udp_Read;
        pf_Skip = udp_Skip;
    }
    else
    {
        bool b_stream;
        i_input_fd = OpenFile( p_input, true, false, &b_stream );
        if ( !b_stream )
        {
            p_input_aux = OpenAuxFile( p_input, true, false );
            pf_Read = file_Read;
            pf_Skip = file_Skip;
        }
        else
        {
            pf_Read = stream_Read;
            pf_Skip = stream_Skip;
        }
        b_input_udp = true; /* We don't need no, RTP header */
    }

    if ( strcmp( "-", p_output ) == 0 )
    {
        i_output_fd = STDOUT_FILENO;
	pf_Write = stream_Write;
	b_output_udp = true;
    }
    else if ( (i_output_fd = OpenSocket( p_output, i_ttl, NULL ))
           >= 0 )
        pf_Write = udp_Write;
    else
    {
        bool b_stream;
        i_output_fd = OpenFile( p_output, false, b_append, &b_stream );
        if ( !b_stream )
        {
            p_output_aux = OpenAuxFile( p_output, false, b_append );
            pf_Write = file_Write;
        }
        else
            pf_Write = stream_Write;
        b_output_udp = true; /* We don't need no, RTP header */
    }

    srand( time(NULL) * getpid() );
    i_max_read_size = i_asked_payload_size + (b_input_udp ? 0 :
                                              RTP_HEADER_MAX_SIZE);
    i_max_write_size = i_asked_payload_size + (b_output_udp ? 0 :
                                        (b_input_udp ? RTP_HEADER_SIZE :
                                         RTP_HEADER_MAX_SIZE));
    p_buffer = malloc( (i_max_read_size < i_max_write_size) ? i_max_read_size :
                       i_max_write_size );
    p_read_buffer = p_buffer + ((b_input_udp && !b_output_udp) ?
                                RTP_HEADER_SIZE : 0);
    if ( b_input_udp && !b_output_udp )
        i_rtp_cc = rand() & 0xffff;

    if ( i_skip_chunks )
        pf_Skip( i_asked_payload_size, i_skip_chunks );

    if ( i_priority > 0 )
    {
        struct sched_param param;
        int i_error;

        memset( &param, 0, sizeof(struct sched_param) );
        param.sched_priority = i_priority;
        if ( (i_error = pthread_setschedparam( pthread_self(), SCHED_RR,
                                               &param )) )
        {
            msg_Warn( NULL, "couldn't set thread priority: %s",
                      strerror(i_error) );
        }
    }

    signal( SIGTERM, SigHandler );
    signal( SIGHUP, SigHandler );
    signal( SIGINT, SigHandler );

    while ( !b_die )
    {
        ssize_t i_read_size = pf_Read( p_read_buffer, i_max_read_size );
        uint8_t *p_payload;
        size_t i_payload_size;
        uint8_t *p_write_buffer;
        size_t i_write_size;

        if ( i_read_size <= 0 ) continue;

        /* Determine start and size of payload */
        if ( !b_input_udp )
        {
            if ( !rtp_CheckHdr( p_read_buffer ) )
                msg_Warn( NULL, "invalid RTP packet received" );
            p_payload = rtp_GetPayload( p_read_buffer );
            i_payload_size = p_read_buffer + i_read_size - p_payload;
        }
        else
        {
            p_payload = p_read_buffer;
            i_payload_size = i_read_size;
        }

        /* Pad to get the asked payload size */
        while ( i_payload_size + TS_SIZE <= i_asked_payload_size && b_pad_output )
        {
            ts_Pad( &p_payload[i_payload_size] );
            i_read_size += TS_SIZE;
            i_payload_size += TS_SIZE;
        }

        /* Prepare header and size of output */
        if ( b_output_udp )
        {
            p_write_buffer = p_payload;
            i_write_size = i_payload_size;
        }
        else /* RTP output */
        {
            if ( b_input_udp )
            {
                p_write_buffer = p_buffer;
                i_write_size = i_payload_size + RTP_HEADER_SIZE;

                rtp_SetHdr( p_write_buffer, i_rtp_cc );
                i_rtp_cc++;

                if ( i_pcr_pid )
                {
                    GetPCR( p_payload, i_payload_size );
                    rtp_SetTimestamp( p_write_buffer,
                                      (i_pcr + (i_stc - i_pcr_stc)) / 300 );
                }
                else
                {
                    /* This isn't RFC-compliant but no one really cares */
                    rtp_SetTimestamp( p_write_buffer, i_stc / 300 );
                }
                rtp_SetSSRC( p_write_buffer, (uint8_t *)&i_ssrc );
            }
            else /* RTP output, RTP input */
            {
                p_write_buffer = p_read_buffer;
                i_write_size = i_read_size;

                if ( i_pcr_pid )
                {
                    if ( rtp_GetType( p_write_buffer ) != RTP_TS_TYPE )
                        msg_Warn( NULL, "input isn't MPEG transport stream" );
                    else
                        GetPCR( p_payload, i_payload_size );
                    rtp_SetTimestamp( p_write_buffer,
                                      (i_pcr + (i_stc - i_pcr_stc)) / 300 );
                }
                if ( b_overwrite_ssrc )
                    rtp_SetSSRC( p_write_buffer, (uint8_t *)&i_ssrc );
            }
        }

        pf_Write( p_write_buffer, i_write_size );

        if ( i_nb_chunks > 0 )
            i_nb_chunks--;
        if ( !i_nb_chunks )
            b_die = true;

        if ( i_duration )
        {
            if ( i_last_stc )
            {
                if ( i_last_stc <= i_stc )
                    b_die = true;
            }
            else
                i_last_stc = i_stc + i_duration;
        }
    }

    return EXIT_SUCCESS;
}