mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
SRT: Build SRT from source by SRS. 4.0.115
This commit is contained in:
parent
262f0fc8c8
commit
90f1b482ab
115 changed files with 44513 additions and 19 deletions
765
trunk/3rdparty/srt-1-fit/srtcore/channel.cpp
vendored
Normal file
765
trunk/3rdparty/srt-1-fit/srtcore/channel.cpp
vendored
Normal file
|
@ -0,0 +1,765 @@
|
|||
/*
|
||||
* SRT - Secure, Reliable, Transport
|
||||
* Copyright (c) 2018 Haivision Systems Inc.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*
|
||||
*/
|
||||
|
||||
/*****************************************************************************
|
||||
Copyright (c) 2001 - 2011, The Board of Trustees of the University of Illinois.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above
|
||||
copyright notice, this list of conditions and the
|
||||
following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the
|
||||
above copyright notice, this list of conditions
|
||||
and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name of the University of Illinois
|
||||
nor the names of its contributors may be used to
|
||||
endorse or promote products derived from this
|
||||
software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
written by
|
||||
Yunhong Gu, last updated 01/27/2011
|
||||
modified by
|
||||
Haivision Systems Inc.
|
||||
*****************************************************************************/
|
||||
|
||||
#ifndef _WIN32
|
||||
#if __APPLE__
|
||||
#include "TargetConditionals.h"
|
||||
#endif
|
||||
#include <sys/socket.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <netdb.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
#include <cerrno>
|
||||
#else
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#include <mswsock.h>
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#include <iomanip> // Logging
|
||||
#include <srt_compat.h>
|
||||
#include <csignal>
|
||||
|
||||
#include "channel.h"
|
||||
#include "packet.h"
|
||||
#include "api.h" // SockaddrToString - possibly move it to somewhere else
|
||||
#include "logging.h"
|
||||
#include "utilities.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
typedef int socklen_t;
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32
|
||||
#define NET_ERROR errno
|
||||
#else
|
||||
#define NET_ERROR WSAGetLastError()
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
using namespace srt_logging;
|
||||
|
||||
CChannel::CChannel():
|
||||
m_iIPversion(AF_INET),
|
||||
m_iSockAddrSize(sizeof(sockaddr_in)),
|
||||
m_iSocket(),
|
||||
#ifdef SRT_ENABLE_IPOPTS
|
||||
m_iIpTTL(-1), /* IPv4 TTL or IPv6 HOPs [1..255] (-1:undefined) */
|
||||
m_iIpToS(-1), /* IPv4 Type of Service or IPv6 Traffic Class [0x00..0xff] (-1:undefined) */
|
||||
#endif
|
||||
m_iSndBufSize(65536),
|
||||
m_iRcvBufSize(65536),
|
||||
m_iIpV6Only(-1)
|
||||
{
|
||||
}
|
||||
|
||||
CChannel::CChannel(int version):
|
||||
m_iIPversion(version),
|
||||
m_iSocket(),
|
||||
#ifdef SRT_ENABLE_IPOPTS
|
||||
m_iIpTTL(-1),
|
||||
m_iIpToS(-1),
|
||||
#endif
|
||||
m_iSndBufSize(65536),
|
||||
m_iRcvBufSize(65536),
|
||||
m_iIpV6Only(-1),
|
||||
m_BindAddr(version)
|
||||
{
|
||||
SRT_ASSERT(version == AF_INET || version == AF_INET6);
|
||||
m_iSockAddrSize = (AF_INET == m_iIPversion) ? sizeof(sockaddr_in) : sizeof(sockaddr_in6);
|
||||
}
|
||||
|
||||
CChannel::~CChannel()
|
||||
{
|
||||
}
|
||||
|
||||
void CChannel::open(const sockaddr* addr)
|
||||
{
|
||||
// construct an socket
|
||||
m_iSocket = ::socket(m_iIPversion, SOCK_DGRAM, 0);
|
||||
|
||||
#ifdef _WIN32
|
||||
if (INVALID_SOCKET == m_iSocket)
|
||||
#else
|
||||
if (m_iSocket < 0)
|
||||
#endif
|
||||
throw CUDTException(MJ_SETUP, MN_NONE, NET_ERROR);
|
||||
|
||||
if ((m_iIpV6Only != -1) && (m_iIPversion == AF_INET6)) // (not an error if it fails)
|
||||
::setsockopt(m_iSocket, IPPROTO_IPV6, IPV6_V6ONLY, (const char*)(&m_iIpV6Only), sizeof(m_iIpV6Only));
|
||||
|
||||
if (NULL != addr)
|
||||
{
|
||||
socklen_t namelen = m_iSockAddrSize;
|
||||
|
||||
if (0 != ::bind(m_iSocket, addr, namelen))
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
memcpy(&m_BindAddr, addr, namelen);
|
||||
m_BindAddr.len = namelen;
|
||||
}
|
||||
else
|
||||
{
|
||||
//sendto or WSASendTo will also automatically bind the socket
|
||||
addrinfo hints;
|
||||
addrinfo* res;
|
||||
|
||||
memset(&hints, 0, sizeof(struct addrinfo));
|
||||
|
||||
hints.ai_flags = AI_PASSIVE;
|
||||
hints.ai_family = m_iIPversion;
|
||||
hints.ai_socktype = SOCK_DGRAM;
|
||||
|
||||
if (0 != ::getaddrinfo(NULL, "0", &hints, &res))
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
|
||||
// On Windows ai_addrlen has type size_t (unsigned), while bind takes int.
|
||||
if (0 != ::bind(m_iSocket, res->ai_addr, (socklen_t)res->ai_addrlen))
|
||||
{
|
||||
::freeaddrinfo(res);
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
}
|
||||
memcpy(&m_BindAddr, res->ai_addr, res->ai_addrlen);
|
||||
m_BindAddr.len = (socklen_t) res->ai_addrlen;
|
||||
|
||||
::freeaddrinfo(res);
|
||||
}
|
||||
|
||||
HLOGC(mglog.Debug, log << "CHANNEL: Bound to local address: " << SockaddrToString(&m_BindAddr));
|
||||
|
||||
setUDPSockOpt();
|
||||
}
|
||||
|
||||
void CChannel::attach(UDPSOCKET udpsock)
|
||||
{
|
||||
m_iSocket = udpsock;
|
||||
setUDPSockOpt();
|
||||
}
|
||||
|
||||
void CChannel::setUDPSockOpt()
|
||||
{
|
||||
#if defined(BSD) || defined(OSX) || (TARGET_OS_IOS == 1) || (TARGET_OS_TV == 1)
|
||||
// BSD system will fail setsockopt if the requested buffer size exceeds system maximum value
|
||||
int maxsize = 64000;
|
||||
if (0 != ::setsockopt(m_iSocket, SOL_SOCKET, SO_RCVBUF, (char*)&m_iRcvBufSize, sizeof(int)))
|
||||
::setsockopt(m_iSocket, SOL_SOCKET, SO_RCVBUF, (char*)&maxsize, sizeof(int));
|
||||
if (0 != ::setsockopt(m_iSocket, SOL_SOCKET, SO_SNDBUF, (char*)&m_iSndBufSize, sizeof(int)))
|
||||
::setsockopt(m_iSocket, SOL_SOCKET, SO_SNDBUF, (char*)&maxsize, sizeof(int));
|
||||
#else
|
||||
// for other systems, if requested is greated than maximum, the maximum value will be automactally used
|
||||
if ((0 != ::setsockopt(m_iSocket, SOL_SOCKET, SO_RCVBUF, (char*)&m_iRcvBufSize, sizeof(int))) ||
|
||||
(0 != ::setsockopt(m_iSocket, SOL_SOCKET, SO_SNDBUF, (char*)&m_iSndBufSize, sizeof(int))))
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
#endif
|
||||
|
||||
SRT_ASSERT(m_iIPversion == AF_INET || m_iIPversion == AF_INET6);
|
||||
|
||||
#ifdef SRT_ENABLE_IPOPTS
|
||||
if (-1 != m_iIpTTL)
|
||||
{
|
||||
if (m_iIPversion == AF_INET)
|
||||
{
|
||||
if (0 != ::setsockopt(m_iSocket, IPPROTO_IP, IP_TTL, (const char*)&m_iIpTTL, sizeof(m_iIpTTL)))
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
}
|
||||
else
|
||||
{
|
||||
// If IPv6 address is unspecified, set BOTH IP_TTL and IPV6_UNICAST_HOPS.
|
||||
|
||||
// For specified IPv6 address, set IPV6_UNICAST_HOPS ONLY UNLESS it's an IPv4-mapped-IPv6
|
||||
if (IN6_IS_ADDR_UNSPECIFIED(&m_BindAddr.sin6.sin6_addr) || !IN6_IS_ADDR_V4MAPPED(&m_BindAddr.sin6.sin6_addr))
|
||||
{
|
||||
if (0 != ::setsockopt(m_iSocket, IPPROTO_IPV6, IPV6_UNICAST_HOPS, (const char*)&m_iIpTTL, sizeof(m_iIpTTL)))
|
||||
{
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
}
|
||||
}
|
||||
// For specified IPv6 address, set IP_TTL ONLY WHEN it's an IPv4-mapped-IPv6
|
||||
if (IN6_IS_ADDR_UNSPECIFIED(&m_BindAddr.sin6.sin6_addr) || IN6_IS_ADDR_V4MAPPED(&m_BindAddr.sin6.sin6_addr))
|
||||
{
|
||||
if (0 != ::setsockopt(m_iSocket, IPPROTO_IP, IP_TTL, (const char*)&m_iIpTTL, sizeof(m_iIpTTL)))
|
||||
{
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (-1 != m_iIpToS)
|
||||
{
|
||||
if (m_iIPversion == AF_INET)
|
||||
{
|
||||
if (0 != ::setsockopt(m_iSocket, IPPROTO_IP, IP_TOS, (const char*)&m_iIpToS, sizeof(m_iIpToS)))
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
}
|
||||
else
|
||||
{
|
||||
// If IPv6 address is unspecified, set BOTH IP_TOS and IPV6_TCLASS.
|
||||
|
||||
#ifdef IPV6_TCLASS
|
||||
// For specified IPv6 address, set IPV6_TCLASS ONLY UNLESS it's an IPv4-mapped-IPv6
|
||||
if (IN6_IS_ADDR_UNSPECIFIED(&m_BindAddr.sin6.sin6_addr) || !IN6_IS_ADDR_V4MAPPED(&m_BindAddr.sin6.sin6_addr))
|
||||
{
|
||||
if (0 != ::setsockopt(m_iSocket, IPPROTO_IPV6, IPV6_TCLASS, (const char*)&m_iIpToS, sizeof(m_iIpToS)))
|
||||
{
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// For specified IPv6 address, set IP_TOS ONLY WHEN it's an IPv4-mapped-IPv6
|
||||
if (IN6_IS_ADDR_UNSPECIFIED(&m_BindAddr.sin6.sin6_addr) || IN6_IS_ADDR_V4MAPPED(&m_BindAddr.sin6.sin6_addr))
|
||||
{
|
||||
if (0 != ::setsockopt(m_iSocket, IPPROTO_IP, IP_TOS, (const char*)&m_iIpToS, sizeof(m_iIpToS)))
|
||||
{
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef UNIX
|
||||
// Set non-blocking I/O
|
||||
// UNIX does not support SO_RCVTIMEO
|
||||
int opts = ::fcntl(m_iSocket, F_GETFL);
|
||||
if (-1 == ::fcntl(m_iSocket, F_SETFL, opts | O_NONBLOCK))
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
#elif defined(_WIN32)
|
||||
u_long nonBlocking = 1;
|
||||
if (0 != ioctlsocket (m_iSocket, FIONBIO, &nonBlocking))
|
||||
throw CUDTException (MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
#else
|
||||
timeval tv;
|
||||
tv.tv_sec = 0;
|
||||
#if defined (BSD) || defined (OSX) || (TARGET_OS_IOS == 1) || (TARGET_OS_TV == 1)
|
||||
// Known BSD bug as the day I wrote this code.
|
||||
// A small time out value will cause the socket to block forever.
|
||||
tv.tv_usec = 10000;
|
||||
#else
|
||||
tv.tv_usec = 100;
|
||||
#endif
|
||||
// Set receiving time-out value
|
||||
if (0 != ::setsockopt(m_iSocket, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(timeval)))
|
||||
throw CUDTException(MJ_SETUP, MN_NORES, NET_ERROR);
|
||||
#endif
|
||||
}
|
||||
|
||||
void CChannel::close() const
|
||||
{
|
||||
#ifndef _WIN32
|
||||
::close(m_iSocket);
|
||||
#else
|
||||
::closesocket(m_iSocket);
|
||||
#endif
|
||||
}
|
||||
|
||||
int CChannel::getSndBufSize()
|
||||
{
|
||||
socklen_t size = sizeof(socklen_t);
|
||||
::getsockopt(m_iSocket, SOL_SOCKET, SO_SNDBUF, (char *)&m_iSndBufSize, &size);
|
||||
return m_iSndBufSize;
|
||||
}
|
||||
|
||||
int CChannel::getRcvBufSize()
|
||||
{
|
||||
socklen_t size = sizeof(socklen_t);
|
||||
::getsockopt(m_iSocket, SOL_SOCKET, SO_RCVBUF, (char *)&m_iRcvBufSize, &size);
|
||||
return m_iRcvBufSize;
|
||||
}
|
||||
|
||||
void CChannel::setSndBufSize(int size)
|
||||
{
|
||||
m_iSndBufSize = size;
|
||||
}
|
||||
|
||||
void CChannel::setRcvBufSize(int size)
|
||||
{
|
||||
m_iRcvBufSize = size;
|
||||
}
|
||||
|
||||
void CChannel::setIpV6Only(int ipV6Only)
|
||||
{
|
||||
m_iIpV6Only = ipV6Only;
|
||||
}
|
||||
|
||||
#ifdef SRT_ENABLE_IPOPTS
|
||||
int CChannel::getIpTTL() const
|
||||
{
|
||||
socklen_t size = sizeof(m_iIpTTL);
|
||||
if (m_iIPversion == AF_INET)
|
||||
{
|
||||
::getsockopt(m_iSocket, IPPROTO_IP, IP_TTL, (char *)&m_iIpTTL, &size);
|
||||
}
|
||||
else
|
||||
{
|
||||
::getsockopt(m_iSocket, IPPROTO_IPV6, IPV6_UNICAST_HOPS, (char *)&m_iIpTTL, &size);
|
||||
}
|
||||
return m_iIpTTL;
|
||||
}
|
||||
|
||||
int CChannel::getIpToS() const
|
||||
{
|
||||
socklen_t size = sizeof(m_iIpToS);
|
||||
if (m_iIPversion == AF_INET)
|
||||
{
|
||||
::getsockopt(m_iSocket, IPPROTO_IP, IP_TOS, (char *)&m_iIpToS, &size);
|
||||
}
|
||||
else
|
||||
{
|
||||
#ifdef IPV6_TCLASS
|
||||
::getsockopt(m_iSocket, IPPROTO_IPV6, IPV6_TCLASS, (char *)&m_iIpToS, &size);
|
||||
#endif
|
||||
}
|
||||
return m_iIpToS;
|
||||
}
|
||||
|
||||
void CChannel::setIpTTL(int ttl)
|
||||
{
|
||||
m_iIpTTL = ttl;
|
||||
}
|
||||
|
||||
void CChannel::setIpToS(int tos)
|
||||
{
|
||||
m_iIpToS = tos;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
int CChannel::ioctlQuery(int SRT_ATR_UNUSED type) const
|
||||
{
|
||||
#ifdef unix
|
||||
int value = 0;
|
||||
int res = ::ioctl(m_iSocket, type, &value);
|
||||
if ( res != -1 )
|
||||
return value;
|
||||
#endif
|
||||
return -1;
|
||||
}
|
||||
|
||||
int CChannel::sockoptQuery(int SRT_ATR_UNUSED level, int SRT_ATR_UNUSED option) const
|
||||
{
|
||||
#ifdef unix
|
||||
int value = 0;
|
||||
socklen_t len = sizeof (int);
|
||||
int res = ::getsockopt(m_iSocket, level, option, &value, &len);
|
||||
if ( res != -1 )
|
||||
return value;
|
||||
#endif
|
||||
return -1;
|
||||
}
|
||||
|
||||
void CChannel::getSockAddr(sockaddr* addr) const
|
||||
{
|
||||
socklen_t namelen = m_iSockAddrSize;
|
||||
::getsockname(m_iSocket, addr, &namelen);
|
||||
}
|
||||
|
||||
void CChannel::getPeerAddr(sockaddr* addr) const
|
||||
{
|
||||
socklen_t namelen = m_iSockAddrSize;
|
||||
::getpeername(m_iSocket, addr, &namelen);
|
||||
}
|
||||
|
||||
|
||||
int CChannel::sendto(const sockaddr* addr, CPacket& packet) const
|
||||
{
|
||||
#if ENABLE_HEAVY_LOGGING
|
||||
std::ostringstream spec;
|
||||
|
||||
if (packet.isControl())
|
||||
{
|
||||
spec << " type=CONTROL"
|
||||
<< " cmd=" << MessageTypeStr(packet.getType(), packet.getExtendedType())
|
||||
<< " arg=" << packet.header(SRT_PH_MSGNO);
|
||||
}
|
||||
else
|
||||
{
|
||||
spec << " type=DATA"
|
||||
<< " %" << packet.getSeqNo()
|
||||
<< " msgno=" << MSGNO_SEQ::unwrap(packet.m_iMsgNo)
|
||||
<< packet.MessageFlagStr()
|
||||
<< " !" << BufferStamp(packet.m_pcData, packet.getLength());
|
||||
}
|
||||
|
||||
LOGC(mglog.Debug, log << "CChannel::sendto: SENDING NOW DST=" << SockaddrToString(addr)
|
||||
<< " target=@" << packet.m_iID
|
||||
<< " size=" << packet.getLength()
|
||||
<< " pkt.ts=" << FormatTime(packet.m_iTimeStamp)
|
||||
<< spec.str());
|
||||
#endif
|
||||
|
||||
#ifdef SRT_TEST_FAKE_LOSS
|
||||
|
||||
#define FAKELOSS_STRING_0(x) #x
|
||||
#define FAKELOSS_STRING(x) FAKELOSS_STRING_0(x)
|
||||
const char* fakeloss_text = FAKELOSS_STRING(SRT_TEST_FAKE_LOSS);
|
||||
#undef FAKELOSS_STRING
|
||||
#undef FAKELOSS_WRAP
|
||||
|
||||
static int dcounter = 0;
|
||||
static int flwcounter = 0;
|
||||
|
||||
struct FakelossConfig
|
||||
{
|
||||
pair<int,int> config;
|
||||
FakelossConfig(const char* f)
|
||||
{
|
||||
vector<string> out;
|
||||
Split(f, '+', back_inserter(out));
|
||||
|
||||
config.first = atoi(out[0].c_str());
|
||||
config.second = out.size() > 1 ? atoi(out[1].c_str()) : 8;
|
||||
}
|
||||
};
|
||||
static FakelossConfig fakeloss = fakeloss_text;
|
||||
|
||||
if (!packet.isControl())
|
||||
{
|
||||
if (dcounter == 0)
|
||||
{
|
||||
timeval tv;
|
||||
gettimeofday(&tv, 0);
|
||||
srand(tv.tv_usec & 0xFFFF);
|
||||
}
|
||||
++dcounter;
|
||||
|
||||
if (flwcounter)
|
||||
{
|
||||
// This is a counter of how many packets in a row shall be lost
|
||||
--flwcounter;
|
||||
HLOGC(mglog.Debug, log << "CChannel: TEST: FAKE LOSS OF %" << packet.getSeqNo() << " (" << flwcounter << " more to drop)");
|
||||
return packet.getLength(); // fake successful sendinf
|
||||
}
|
||||
|
||||
if (dcounter > 8)
|
||||
{
|
||||
// Make a random number in the range between 8 and 24
|
||||
int rnd = rand() % 16 + SRT_TEST_FAKE_LOSS;
|
||||
|
||||
if (dcounter > rnd)
|
||||
{
|
||||
dcounter = 1;
|
||||
HLOGC(mglog.Debug, log << "CChannel: TEST: FAKE LOSS OF %" << packet.getSeqNo() << " (will drop " << fakeloss.config.first << " more)");
|
||||
flwcounter = fakeloss.config.first;
|
||||
return packet.getLength(); // fake successful sendinf
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
// convert control information into network order
|
||||
// XXX USE HtoNLA!
|
||||
if (packet.isControl())
|
||||
for (ptrdiff_t i = 0, n = packet.getLength() / 4; i < n; ++i)
|
||||
*((uint32_t *)packet.m_pcData + i) = htonl(*((uint32_t *)packet.m_pcData + i));
|
||||
|
||||
// convert packet header into network order
|
||||
//for (int j = 0; j < 4; ++ j)
|
||||
// packet.m_nHeader[j] = htonl(packet.m_nHeader[j]);
|
||||
uint32_t* p = packet.m_nHeader;
|
||||
for (int j = 0; j < 4; ++ j)
|
||||
{
|
||||
*p = htonl(*p);
|
||||
++ p;
|
||||
}
|
||||
|
||||
#ifndef _WIN32
|
||||
msghdr mh;
|
||||
mh.msg_name = (sockaddr*)addr;
|
||||
mh.msg_namelen = m_iSockAddrSize;
|
||||
mh.msg_iov = (iovec*)packet.m_PacketVector;
|
||||
mh.msg_iovlen = 2;
|
||||
mh.msg_control = NULL;
|
||||
mh.msg_controllen = 0;
|
||||
mh.msg_flags = 0;
|
||||
|
||||
int res = ::sendmsg(m_iSocket, &mh, 0);
|
||||
#else
|
||||
DWORD size = (DWORD) (CPacket::HDR_SIZE + packet.getLength());
|
||||
int addrsize = m_iSockAddrSize;
|
||||
int res = ::WSASendTo(m_iSocket, (LPWSABUF)packet.m_PacketVector, 2, &size, 0, addr, addrsize, NULL, NULL);
|
||||
res = (0 == res) ? size : -1;
|
||||
#endif
|
||||
|
||||
// convert back into local host order
|
||||
//for (int k = 0; k < 4; ++ k)
|
||||
// packet.m_nHeader[k] = ntohl(packet.m_nHeader[k]);
|
||||
p = packet.m_nHeader;
|
||||
for (int k = 0; k < 4; ++ k)
|
||||
{
|
||||
*p = ntohl(*p);
|
||||
++ p;
|
||||
}
|
||||
|
||||
if (packet.isControl())
|
||||
{
|
||||
for (ptrdiff_t l = 0, n = packet.getLength() / 4; l < n; ++ l)
|
||||
*((uint32_t *)packet.m_pcData + l) = ntohl(*((uint32_t *)packet.m_pcData + l));
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
EReadStatus CChannel::recvfrom(sockaddr* addr, CPacket& packet) const
|
||||
{
|
||||
EReadStatus status = RST_OK;
|
||||
int msg_flags = 0;
|
||||
int recv_size = -1;
|
||||
|
||||
#if defined(UNIX) || defined(_WIN32)
|
||||
fd_set set;
|
||||
timeval tv;
|
||||
FD_ZERO(&set);
|
||||
FD_SET(m_iSocket, &set);
|
||||
tv.tv_sec = 0;
|
||||
tv.tv_usec = 10000;
|
||||
const int select_ret = ::select((int) m_iSocket + 1, &set, NULL, &set, &tv);
|
||||
#else
|
||||
const int select_ret = 1; // the socket is expected to be in the blocking mode itself
|
||||
#endif
|
||||
|
||||
if (select_ret == 0) // timeout
|
||||
{
|
||||
packet.setLength(-1);
|
||||
return RST_AGAIN;
|
||||
}
|
||||
|
||||
#ifndef _WIN32
|
||||
if (select_ret > 0)
|
||||
{
|
||||
msghdr mh;
|
||||
mh.msg_name = addr;
|
||||
mh.msg_namelen = m_iSockAddrSize;
|
||||
mh.msg_iov = packet.m_PacketVector;
|
||||
mh.msg_iovlen = 2;
|
||||
mh.msg_control = NULL;
|
||||
mh.msg_controllen = 0;
|
||||
mh.msg_flags = 0;
|
||||
|
||||
recv_size = ::recvmsg(m_iSocket, &mh, 0);
|
||||
msg_flags = mh.msg_flags;
|
||||
}
|
||||
|
||||
// Note that there are exactly four groups of possible errors
|
||||
// reported by recvmsg():
|
||||
|
||||
// 1. Temporary error, can't get the data, but you can try again.
|
||||
// Codes: EAGAIN/EWOULDBLOCK, EINTR, ECONNREFUSED
|
||||
// Return: RST_AGAIN.
|
||||
//
|
||||
// 2. Problems that should never happen due to unused configurations.
|
||||
// Codes: ECONNREFUSED, ENOTCONN
|
||||
// Return: RST_ERROR, just formally treat this as IPE.
|
||||
//
|
||||
// 3. Unexpected runtime errors:
|
||||
// Codes: EINVAL, EFAULT, ENOMEM, ENOTSOCK
|
||||
// Return: RST_ERROR. Except ENOMEM, this can only be an IPE. ENOMEM
|
||||
// should make the program stop as lacking memory will kill the program anyway soon.
|
||||
//
|
||||
// 4. Expected socket closed in the meantime by another thread.
|
||||
// Codes: EBADF
|
||||
// Return: RST_ERROR. This will simply make the worker thread exit, which is
|
||||
// expected to happen after CChannel::close() is called by another thread.
|
||||
|
||||
// We do not handle <= SOCKET_ERROR as they are handled further by checking the recv_size
|
||||
if (select_ret == -1 || recv_size == -1)
|
||||
{
|
||||
const int err = NET_ERROR;
|
||||
if (err == EAGAIN || err == EINTR || err == ECONNREFUSED) // For EAGAIN, this isn't an error, just a useless call.
|
||||
{
|
||||
status = RST_AGAIN;
|
||||
}
|
||||
else
|
||||
{
|
||||
HLOGC(mglog.Debug, log << CONID() << "(sys)recvmsg: " << SysStrError(err) << " [" << err << "]");
|
||||
status = RST_ERROR;
|
||||
}
|
||||
|
||||
goto Return_error;
|
||||
}
|
||||
|
||||
#else
|
||||
// XXX REFACTORING NEEDED!
|
||||
// This procedure uses the WSARecvFrom function that just reads
|
||||
// into one buffer. On Windows, the equivalent for recvmsg, WSARecvMsg
|
||||
// uses the equivalent of msghdr - WSAMSG, which has different field
|
||||
// names and also uses the equivalet of iovec - WSABUF, which has different
|
||||
// field names and layout. It is important that this code be translated
|
||||
// to the "proper" solution, however this requires that CPacket::m_PacketVector
|
||||
// also uses the "platform independent" (or, better, platform-suitable) type
|
||||
// which can be appropriate for the appropriate system function, not just iovec
|
||||
// (see a specifically provided definition for iovec for windows in packet.h).
|
||||
//
|
||||
// For the time being, the msg_flags variable is defined in both cases
|
||||
// so that it can be checked independently, however it won't have any other
|
||||
// value one Windows than 0, unless this procedure below is rewritten
|
||||
// to use WSARecvMsg().
|
||||
|
||||
int recv_ret = SOCKET_ERROR;
|
||||
DWORD flag = 0;
|
||||
|
||||
if (select_ret > 0) // the total number of socket handles that are ready
|
||||
{
|
||||
DWORD size = (DWORD) (CPacket::HDR_SIZE + packet.getLength());
|
||||
int addrsize = m_iSockAddrSize;
|
||||
|
||||
recv_ret = ::WSARecvFrom(m_iSocket, (LPWSABUF)packet.m_PacketVector, 2, &size, &flag, addr, &addrsize, NULL, NULL);
|
||||
if (recv_ret == 0)
|
||||
recv_size = size;
|
||||
}
|
||||
|
||||
// We do not handle <= SOCKET_ERROR as they are handled further by checking the recv_size
|
||||
if (select_ret == SOCKET_ERROR || recv_ret == SOCKET_ERROR) // == SOCKET_ERROR
|
||||
{
|
||||
recv_size = -1;
|
||||
// On Windows this is a little bit more complicated, so simply treat every error
|
||||
// as an "again" situation. This should still be probably fixed, but it needs more
|
||||
// thorough research. For example, the problem usually reported from here is
|
||||
// WSAETIMEDOUT, which isn't mentioned in the documentation of WSARecvFrom at all.
|
||||
//
|
||||
// These below errors are treated as "fatal", all others are treated as "again".
|
||||
static const int fatals [] =
|
||||
{
|
||||
WSAEFAULT,
|
||||
WSAEINVAL,
|
||||
WSAENETDOWN,
|
||||
WSANOTINITIALISED,
|
||||
WSA_OPERATION_ABORTED
|
||||
};
|
||||
static const int* fatals_end = fatals + Size(fatals);
|
||||
const int err = NET_ERROR;
|
||||
if (std::find(fatals, fatals_end, err) != fatals_end)
|
||||
{
|
||||
HLOGC(mglog.Debug, log << CONID() << "(sys)WSARecvFrom: " << SysStrError(err) << " [" << err << "]");
|
||||
status = RST_ERROR;
|
||||
}
|
||||
else
|
||||
{
|
||||
status = RST_AGAIN;
|
||||
}
|
||||
|
||||
goto Return_error;
|
||||
}
|
||||
|
||||
// Not sure if this problem has ever occurred on Windows, just a sanity check.
|
||||
if (flag & MSG_PARTIAL)
|
||||
msg_flags = 1;
|
||||
#endif
|
||||
|
||||
|
||||
// Sanity check for a case when it didn't fill in even the header
|
||||
if (size_t(recv_size) < CPacket::HDR_SIZE)
|
||||
{
|
||||
status = RST_AGAIN;
|
||||
HLOGC(mglog.Debug, log << CONID() << "POSSIBLE ATTACK: received too short packet with " << recv_size << " bytes");
|
||||
goto Return_error;
|
||||
}
|
||||
|
||||
// Fix for an issue with Linux Kernel found during tests at Tencent.
|
||||
//
|
||||
// There was a bug in older Linux Kernel which caused that when the internal
|
||||
// buffer was depleted during reading from the network, not the whole buffer
|
||||
// was copied from the packet, EVEN THOUGH THE GIVEN BUFFER WAS OF ENOUGH SIZE.
|
||||
// It was still very kind of the buggy procedure, though, that at least
|
||||
// they inform the caller about that this has happened by setting MSG_TRUNC
|
||||
// flag.
|
||||
//
|
||||
// Normally this flag should be set only if there was too small buffer given
|
||||
// by the caller, so as this code knows that the size is enough, it never
|
||||
// predicted this to happen. Just for a case then when you run this on a buggy
|
||||
// system that suffers of this problem, the fix for this case is left here.
|
||||
//
|
||||
// When this happens, then you have at best a fragment of the buffer and it's
|
||||
// useless anyway. This is solved by dropping the packet and fake that no
|
||||
// packet was received, so the packet will be then retransmitted.
|
||||
if ( msg_flags != 0 )
|
||||
{
|
||||
HLOGC(mglog.Debug, log << CONID() << "NET ERROR: packet size=" << recv_size
|
||||
<< " msg_flags=0x" << hex << msg_flags << ", possibly MSG_TRUNC (0x" << hex << int(MSG_TRUNC) << ")");
|
||||
status = RST_AGAIN;
|
||||
goto Return_error;
|
||||
}
|
||||
|
||||
packet.setLength(recv_size - CPacket::HDR_SIZE);
|
||||
|
||||
// convert back into local host order
|
||||
// XXX use NtoHLA().
|
||||
//for (int i = 0; i < 4; ++ i)
|
||||
// packet.m_nHeader[i] = ntohl(packet.m_nHeader[i]);
|
||||
{
|
||||
uint32_t* p = packet.m_nHeader;
|
||||
for (size_t i = 0; i < SRT_PH__SIZE; ++ i)
|
||||
{
|
||||
*p = ntohl(*p);
|
||||
++ p;
|
||||
}
|
||||
}
|
||||
|
||||
if (packet.isControl())
|
||||
{
|
||||
for (size_t j = 0, n = packet.getLength() / sizeof (uint32_t); j < n; ++ j)
|
||||
*((uint32_t *)packet.m_pcData + j) = ntohl(*((uint32_t *)packet.m_pcData + j));
|
||||
}
|
||||
|
||||
return RST_OK;
|
||||
|
||||
Return_error:
|
||||
packet.setLength(-1);
|
||||
return status;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue