File: pob-3119-rb.c

package info (click to toggle)
poc-streamer 0.4.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 924 kB
  • sloc: ansic: 8,782; makefile: 308; ruby: 152; perl: 135; yacc: 115; lex: 36; sh: 30
file content (524 lines) | stat: -rw-r--r-- 10,595 bytes parent folder | download | duplicates (4)
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
/*C
  (c) 2005 bl0rg.net
**/

#include "conf.h"

#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
#include <time.h>
#include <errno.h>

#ifdef NEED_GETOPT_H__
#include <getopt.h>
#endif /* NEED_GETOPT_H__ */

#ifdef WITH_OPENSSL
#include <openssl/x509.h>
#include <openssl/rsa.h>
#include <openssl/evp.h>
#include <openssl/pem.h>
#endif /* WITH_OPENSSL */

#include "rtp.h"
#include "rtp-rb.h"
#include "aq.h"
#include "network.h"

#ifdef WITH_OPENSSL
RSA *rsa = NULL;
#endif

#define RTP_MINSLEEP 20000 /* 200 ms */

/*M
  \emph{Structure to hold client accounting information.}

  This is used to count the number of wrong packets, duplicate
  packets, out of order packets, unauthenticated packets.
**/
typedef struct pob_stat_s {
  /*M
    Number of packets received.
  **/  
  unsigned int rcvd_pkts; 
  /*M
    Number of out of order packets received.
  **/
  unsigned int ooo_pkts; 
  /*M
    Number of duplicated packets received.
  **/
  unsigned int dup_pkts; 
  /*M
    Number of bad packets received.
  **/
  unsigned int bad_pkts;
#ifdef WITH_OPENSSL
  /*M
    Badly signed packets.
  **/
  unsigned int sign_pkts;
#endif
  /*M
    Number of buffer overflows.
  **/
  unsigned int buf_ofs; 
  /*M
    Number of buffer underflows.
  **/
  unsigned int buf_ufs;
} pob_stat_t;

static pob_stat_t pob_stats = {
  0, 0, 0, 0, 0
#ifdef WITH_OPENSSL
  ,0
#endif
};

/*M
  \emph{Timestamp of last played packet.}
**/
static unsigned long tstamp_last = 0;

/*M
**/
int pob_insert_pkt(rtp_pkt_t *pkt) {
  assert(pkt != NULL);

  /*M
    We have received a packet.
  **/
  pob_stats.rcvd_pkts++;

  /*M
    Verify packet if Openssl is activated.
  **/
#ifdef WITH_OPENSSL
  if (rsa) {
    if ((pkt->b.pt != RTP_PT_SMPA) ||
        !rtp_pkt_verify(pkt, rsa)) {
      pob_stats.sign_pkts++;
      return 0;
    }
  }
#endif

  int num = 0;
  /* insert packet into ringbuffer */
  if (rtp_rb_length() > 0) {
    /* get index of first packet */
    rtp_pkt_t *firstpkt = rtp_rb_first();
    assert(firstpkt != NULL);
    assert(firstpkt->length != 0);
    
    num = net_seqnum_diff(firstpkt->b.seq, pkt->b.seq, 1 << 16);
  }

  if (!rtp_rb_insert_pkt(pkt, num)) {
#ifdef DEBUG
    fprintf(stderr, "ring buffer full\n");
#endif
    
    rtp_rb_clear();
    tstamp_last = pkt->timestamp;
    return pob_insert_pkt(pkt);
  } else {
    return 1;
  }
}

int pob_recv_pkt(int sock, rtp_pkt_t *pkt) {
  struct timeval t_out;
  t_out.tv_sec  = 0;
  t_out.tv_usec = RTP_MINSLEEP;

  fd_set fds;
  FD_ZERO(&fds);
  FD_SET(sock, &fds);

  /*M
    Wait for network input or for timeout.
  **/
  int ret = select(sock + 1, &fds, NULL, NULL, &t_out);
  
  /*M
    Check for interrupted system call.
  **/
  if (ret == -1) {
    if ((errno == EINTR) || (errno == EAGAIN)) {
      return 0;
    } else {
      perror("select");
      return -1;
    }
  }
  
  /*M
    If there is network input, read incoming packet.
  **/
  if (FD_ISSET(sock, &fds)) {
    rtp_rfc3119_pkt_init(pkt);
    
    if (rtp_pkt_read(pkt, sock) <= 0) {
      return -1;
    } else {
      return 1;
    }
  }

  return 0;
}

unsigned long cksum(char *data, int len) {
  unsigned long res = 0;
  int i;
  for (i = 0; i < len; i++)
    res += data[i];
  return res;
}

/*M
  \emph{Simple RTP RFC3119 streaming client main loop.}

  The mainloop calls the prebuffering routine each time the receiving
  list is empty, then receives packets and writes the packets in the
  buffering queue out to standard output.
**/
int pob_mainloop(int sock, int quiet) {
  int retval = 0;
  
  /*M
    Initialize the ADU to frame ADU queue.
  **/
  aq_t frame_queue;
  aq_init(&frame_queue);
  
  int finished = 0;
  while (!finished) {
    static int prebuffering = 0;
    
    rtp_pkt_t pkt;

    if (rtp_rb_cnt == 0) {
      prebuffering = 1;
    }
    
    /*M
      Receive next packet.
    */
    switch (pob_recv_pkt(sock, &pkt)) {
    case 0:
      break;

    case -1:
      finished = 1;
      continue;

    default:
      /*M
        Insert new packet into the buffering list.
      **/
      if (!pob_insert_pkt(&pkt)) {
        retval = 0;
        goto exit;
      }
    }

    static unsigned long time_last;

    unsigned long time_now;
    struct timeval tv;
    gettimeofday(&tv, NULL);
    time_now = tv.tv_sec * 90000 +
      (unsigned long)(tv.tv_usec / 11.111);
    
    if (prebuffering == 1) {
      if (rtp_rb_cnt >= (rtp_rb_size / 2)) {
        rtp_pkt_t *firstpkt = rtp_rb_first();
        assert(firstpkt != NULL);
        assert(firstpkt->length != 0);
        
        tstamp_last = firstpkt->timestamp;
        time_last = time_now;
        
        prebuffering = 0;
        if (!quiet)
          fprintf(stderr, "\n");
      } else {
        /*M
          Print prebuffering information.
        **/
        if (!quiet)
          fprintf(stderr, "Prebuffering: %.2f%%\r",
                  (float)rtp_rb_cnt / (rtp_rb_size / 2.0) * 100.0);

        continue;
      }
    }
    
    /*M
      Print client information.
    **/
    if (!quiet) {
      static int count = 0;
      if ((count++ % 10) == 0) {
        fprintf(stderr, "pkts: %.8u\tdups: %.6u\tdrop: %.6u\tbuf: %.6u len:%.6u\t\r",
                pob_stats.rcvd_pkts,
                pob_stats.dup_pkts,
                pob_stats.ooo_pkts,
                rtp_rb_cnt,
                rtp_rb_length());
      }
    }

#ifdef DEBUG
    rtp_rb_print();
#endif

    unsigned long tstamp_now = tstamp_last + (time_now - time_last);

    while (rtp_rb_length() > 0) {
      rtp_pkt_t *pkt = rtp_rb_first();
      assert(pkt != NULL);

      if (pkt->length != 0) {
        /* boeser hack XXX */
        if (pkt->timestamp > (tstamp_now + 3000))
          break;
        
        /*M
          Unpack ADU and insert into ADU queue.
        **/
        unsigned char *ptr = pkt->data + pkt->hlen;
        if (pkt->length > ((1 << 6) - 1))
          ptr++;
        
        adu_t adu;
        memcpy(adu.raw, ptr, pkt->length);
        if (!mp3_unpack(&adu)) {
          fprintf(stderr, "Error unpacking the mp3 adu\n");
          
          pkt->length = 0;
          rtp_rb_cnt--;
          
          retval = 0;
          goto exit;
        }

        if (aq_add_adu(&frame_queue, &adu)) {
          /*M
            If a frame could be generated, write it out to standard out.
          **/
          mp3_frame_t *frame = aq_get_frame(&frame_queue);
          assert(frame != NULL);
          memset(frame->raw, 0, 4 + frame->si_size);
          
          /*M
            Write packet payload.
          **/
          if (!mp3_fill_hdr(frame) ||
              !mp3_fill_si(frame) ||
              (write(STDOUT_FILENO,
                     frame->raw,
                     frame->frame_size) < (int)frame->frame_size)) {
            fprintf(stderr, "Error writing to stdout\n");
            free(frame);
            
            pkt->length = 0;
            rtp_rb_cnt--;
            
            retval = 0;
            goto exit;
          }
          
          time_last = time_now;
          tstamp_last = tstamp_now;
          
          free(frame);
        }
      }
      
      rtp_rb_pop();
    }
  }
  
 exit:
  /*M
    Destroy the ADU queue.
  **/
  aq_destroy(&frame_queue);
  
  return retval;
}

/*M
  \emph{Print RFC3119 RTP client usage.}
**/
static void usage(void) {
  fprintf(stderr, "Usage: ./pob [-s address] [-p port] [-b size] [-t time] [-q]");
#ifdef WITH_OPENSSL
  fprintf(stderr, "[-c cert]");
#endif
  fprintf(stderr, "\n");
  fprintf(stderr, "\t-s address : destination address (default 0.0.0.0 or ff02::4)\n");
  fprintf(stderr, "\t-p port    : destination port (default 1500)\n");
  fprintf(stderr, "\t-b size    : maximal number of packets in buffer (default 128)\n");
  fprintf(stderr, "\t-q         : quiet\n");

#ifdef WITH_OPENSSL
  fprintf(stderr, "\t-c cert    : verify packets with rsa certificate\n");
#endif
}

/*M
  \emph{RFC3119 RTP client entry routine.}
**/
int main(int argc, char *argv[]) {
  char           *address = NULL;
  unsigned short port = 1500;
  unsigned int buffer_size = 128;
  int            retval = EXIT_SUCCESS, quiet = 0;
#ifdef WITH_OPENSSL
  X509     *x509 = NULL;
  EVP_PKEY *pkey = NULL;
#endif

  /*M
    Process the command line arguments.
  **/
  int c;
  while ((c = getopt(argc, argv, "hs:p:b:t:q"
#ifdef WITH_OPENSSL
    "c:"
#endif
      )) >= 0) {
    switch (c) {
    case 's':
      if (address != NULL)
        free(address);

      address = strdup(optarg);
      break;

    case 'p':
      port = atoi(optarg);
      break;

    case 'b':
      buffer_size = (unsigned short)atoi(optarg);
      break;

    case 'q':
      quiet = 1;
      break;

      /*M
        If Openssl is used, read in the RSA certificate.
      **/
#ifdef WITH_OPENSSL
    case 'c':
      {
        FILE *f;

        if (x509) {
          X509_free(x509);
          x509 = NULL;
        }
        if (pkey) {
          EVP_PKEY_free(pkey);
          pkey = NULL;
          rsa = NULL;
        }

        if (!(f = fopen(optarg, "r")) ||
            !PEM_read_X509(f, &x509, NULL, NULL) ||
            !(pkey = X509_get_pubkey(x509))) {
          fprintf(stderr,
                  "Could not read certificate %s\n",
                  optarg);
          if (f)
            fclose(f);
          retval = EXIT_FAILURE;
          goto exit;
        }

        fclose(f);

        if (pkey->type != EVP_PKEY_RSA) {
          fprintf(stderr, "Key is not a RSA key\n");
          retval = EXIT_FAILURE;
          goto exit;
        }

        rsa = pkey->pkey.rsa;

        break;
      }
#endif
      
    case 'h':
    default:
      usage();
      retval = EXIT_SUCCESS;
      goto exit;
    }
  }

  /*M
    Initialize the ring buffer.
  **/
  rtp_rb_init(buffer_size);

  if (address == NULL) {
#ifdef WITH_IPV6
    address = strdup("ff02::4");
#else
    address = strdup("0.0.0.0");
#endif /* WITH_IPV6 */
  }
   
  /*M
    Create the receiving socket.
  **/
  int sock;
#ifdef WITH_IPV6
  sock = net_udp6_recv_socket(address, port);
#else
  sock = net_udp4_recv_socket(address, port);  
#endif /* WITH_IPV6 */
  if (sock < 0) {
    fprintf(stderr, "Could not open socket\n");
    retval = EXIT_FAILURE;
    goto exit;
  }

  if (!pob_mainloop(sock, quiet))
    retval = EXIT_FAILURE;

  if (close(sock) < 0)
    perror("close");
  
 exit:
  rtp_rb_destroy();
  
#ifdef WITH_OPENSSL
  if (pkey)
    EVP_PKEY_free(pkey);
  if (x509)
    X509_free(x509);
#endif
  
  if (address != NULL)
    free(address);

  return retval;
}

/*C
**/