rtcp.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:7k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * rtcp.c: RTCP stream output support
  3.  *****************************************************************************
  4.  * Copyright © 2007 Rémi Denis-Courmont
  5.  * $Id: 39091a443315109b02e74ca7c9b6da044a9f020b $
  6.  *
  7.  * This library is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU Lesser General Public
  9.  * License as published by the Free Software Foundation; either
  10.  * version 2.1 of the License, or (at your option) any later version.
  11.  *
  12.  * This library is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * Lesser General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU Lesser General Public
  18.  * License along with this library; if not, write to the Free Software
  19.  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  20.  *****************************************************************************/
  21. /*****************************************************************************
  22.  * Preamble
  23.  *****************************************************************************/
  24. #ifdef HAVE_CONFIG_H
  25. # include "config.h"
  26. #endif
  27. #include <vlc_common.h>
  28. #include <vlc_block.h>
  29. #include <vlc_network.h>
  30. #include <vlc_sout.h>
  31. #include "rtp.h"
  32. #include <assert.h>
  33. #ifndef SOL_IP
  34. # define SOL_IP IPPROTO_IP
  35. #endif
  36. /*
  37.  * NOTE on RTCP implementation:
  38.  * - there is a single sender (us), no conferencing here! => n = sender = 1,
  39.  * - as such we need not bother to include Receiver Reports,
  40.  * - in unicast case, there is a single receiver => members = 1 + 1 = 2,
  41.  *   and obviously n > 25% of members,
  42.  * - in multicast case, we do not want to maintain the number of receivers
  43.  *   and we assume it is big (i.e. than 3) because that's what broadcasting is
  44.  *   all about,
  45.  * - it is assumed we_sent = true (could be wrong), since we are THE sender,
  46.  * - we always send SR + SDES, while running,
  47.  * - FIXME: we do not implement separate rate limiting for SDES,
  48.  * - we do not implement any profile-specific extensions for the time being.
  49.  */
  50. struct rtcp_sender_t
  51. {
  52.     size_t   length;  /* RTCP packet length */
  53.     uint8_t  payload[28 + 8 + (2 * 257) + 8];
  54.     int      handle;  /* RTCP socket handler */
  55.     uint32_t packets; /* RTP packets sent */
  56.     uint32_t bytes;   /* RTP bytes sent */
  57.     unsigned counter; /* RTP packets sent since last RTCP packet */
  58. };
  59. rtcp_sender_t *OpenRTCP (vlc_object_t *obj, int rtp_fd, int proto,
  60.                          bool mux)
  61. {
  62.     rtcp_sender_t *rtcp;
  63.     uint8_t *ptr;
  64.     int fd;
  65.     char src[NI_MAXNUMERICHOST];
  66.     int sport;
  67.     if (net_GetSockAddress (rtp_fd, src, &sport))
  68.         return NULL;
  69.     if (mux)
  70.     {
  71.         /* RTP/RTCP mux: duplicate the socket */
  72. #ifndef WIN32
  73.         fd = dup (rtp_fd);
  74. #else
  75.         WSAPROTOCOL_INFO info;
  76.         WSADuplicateSocket (rtp_fd, GetCurrentProcessId (), &info);
  77.         fd = WSASocket (info.iAddressFamily, info.iSocketType, info.iProtocol,
  78.                         &info, 0, 0);
  79. #endif
  80.     }
  81.     else
  82.     {
  83.         /* RTCP on a separate port */
  84.         char dst[NI_MAXNUMERICHOST];
  85.         int dport;
  86.         if (net_GetPeerAddress (rtp_fd, dst, &dport))
  87.             return NULL;
  88.         sport++;
  89.         dport++;
  90.         fd = net_OpenDgram (obj, src, sport, dst, dport, AF_UNSPEC, proto);
  91.         /* Copy the multicast IPv4 TTL value (useless for IPv6) */
  92.         if (fd != -1)
  93.         {
  94.             int ttl;
  95.             socklen_t len = sizeof (ttl);
  96.             if (!getsockopt (rtp_fd, SOL_IP, IP_MULTICAST_TTL, &ttl, &len))
  97.                 setsockopt (fd, SOL_IP, IP_MULTICAST_TTL, &ttl, len);
  98.         }
  99.     }
  100.     if (fd == -1)
  101.         return NULL;
  102.     rtcp = malloc (sizeof (*rtcp));
  103.     if (rtcp == NULL)
  104.     {
  105.         net_Close (fd);
  106.         return NULL;
  107.     }
  108.     rtcp->handle = fd;
  109.     rtcp->bytes = rtcp->packets = rtcp->counter = 0;
  110.     ptr = (uint8_t *)strchr (src, '%');
  111.     if (ptr != NULL)
  112.         *ptr = ''; /* remove scope ID frop IPv6 addresses */
  113.     ptr = rtcp->payload;
  114.     /* Sender report */
  115.     ptr[0] = 2 << 6; /* V = 2, P = RC = 0 */
  116.     ptr[1] = 200; /* payload type: Sender Report */
  117.     SetWBE (ptr + 2, 6); /* length = 6 (7 double words) */
  118.     memset (ptr + 4, 0, 4); /* SSRC unknown yet */
  119.     SetQWBE (ptr + 8, NTPtime64 ());
  120.     memset (ptr + 16, 0, 12); /* timestamp and counters */
  121.     ptr += 28;
  122.     /* Source description */
  123.     uint8_t *sdes = ptr;
  124.     ptr[0] = (2 << 6) | 1; /* V = 2, P = 0, SC = 1 */
  125.     ptr[1] = 202; /* payload type: Source Description */
  126.     uint8_t *lenptr = ptr + 2;
  127.     memset (ptr + 4, 0, 4); /* SSRC unknown yet */
  128.     ptr += 8;
  129.     ptr[0] = 1; /* CNAME - mandatory */
  130.     assert (NI_MAXNUMERICHOST <= 256);
  131.     ptr[1] = strlen (src);
  132.     memcpy (ptr + 2, src, ptr[1]);
  133.     ptr += ptr[1] + 2;
  134.     static const char tool[] = PACKAGE_STRING;
  135.     ptr[0] = 6; /* TOOL */
  136.     ptr[1] = (sizeof (tool) > 256) ? 255 : (sizeof (tool) - 1);
  137.     memcpy (ptr + 2, tool, ptr[1]);
  138.     ptr += ptr[1] + 2;
  139.     while ((ptr - sdes) & 3) /* 32-bits padding */
  140.         *ptr++ = 0;
  141.     SetWBE (lenptr, (ptr - sdes - 1) >> 2);
  142.     rtcp->length = ptr - rtcp->payload;
  143.     return rtcp;
  144. }
  145. void CloseRTCP (rtcp_sender_t *rtcp)
  146. {
  147.     if (rtcp == NULL)
  148.         return;
  149.     uint8_t *ptr = rtcp->payload;
  150.     uint64_t now64 = NTPtime64 ();
  151.     SetQWBE (ptr + 8, now64); /* Update the Sender Report timestamp */
  152.     /* Bye */
  153.     ptr += rtcp->length;
  154.     ptr[0] = (2 << 6) | 1; /* V = 2, P = 0, SC = 1 */
  155.     ptr[1] = 203; /* payload type: Bye */
  156.     SetWBE (ptr + 2, 1);
  157.     memcpy (ptr + 4, rtcp->payload + 4, 4); /* Copy SSRC from Sender Report */
  158.     rtcp->length += 8;
  159.     /* We are THE sender, so we are more important than anybody else, so
  160.      * we can afford not to check bandwidth constraints here. */
  161.     send (rtcp->handle, rtcp->payload, rtcp->length, 0);
  162.     net_Close (rtcp->handle);
  163.     free (rtcp);
  164. }
  165. void SendRTCP (rtcp_sender_t *restrict rtcp, const block_t *rtp)
  166. {
  167.     if ((rtcp == NULL) /* RTCP sender off */
  168.      || (rtp->i_buffer < 12)) /* too short RTP packet */
  169.         return;
  170.     /* Updates statistics */
  171.     rtcp->packets++;
  172.     rtcp->bytes += rtp->i_buffer;
  173.     rtcp->counter += rtp->i_buffer;
  174.     /* 1.25% rate limit */
  175.     if ((rtcp->counter / 80) < rtcp->length)
  176.         return;
  177.     uint8_t *ptr = rtcp->payload;
  178.     uint32_t last = GetDWBE (ptr + 8); // last RTCP SR send time
  179.     uint64_t now64 = NTPtime64 ();
  180.     if ((now64 >> 32) < (last + 5))
  181.         return; // no more than one SR every 5 seconds
  182.     memcpy (ptr + 4, rtp->p_buffer + 8, 4); /* SR SSRC */
  183.     SetQWBE (ptr + 8, now64);
  184.     memcpy (ptr + 16, rtp->p_buffer + 4, 4); /* RTP timestamp */
  185.     SetDWBE (ptr + 20, rtcp->packets);
  186.     SetDWBE (ptr + 24, rtcp->bytes);
  187.     memcpy (ptr + 28 + 4, rtp->p_buffer + 8, 4); /* SDES SSRC */
  188.     if (send (rtcp->handle, ptr, rtcp->length, 0) == (ssize_t)rtcp->length)
  189.         rtcp->counter = 0;
  190. }