2014-04-30 23:22:15 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/file/udp_file.h"
|
2014-04-30 23:22:15 +00:00
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <errno.h>
|
2014-10-01 19:35:23 +00:00
|
|
|
#include <gflags/gflags.h>
|
2014-04-30 23:22:15 +00:00
|
|
|
#include <strings.h>
|
|
|
|
#include <sys/socket.h>
|
2014-07-01 17:26:43 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2014-09-30 23:52:58 +00:00
|
|
|
#include <limits>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/logging.h"
|
|
|
|
#include "packager/base/strings/string_number_conversions.h"
|
2014-04-30 23:22:15 +00:00
|
|
|
|
|
|
|
// TODO(tinskip): Adapt to work with winsock.
|
|
|
|
|
|
|
|
DEFINE_string(udp_interface_address,
|
|
|
|
"0.0.0.0",
|
|
|
|
"IP address of the interface over which to receive UDP unicast"
|
|
|
|
" or multicast streams");
|
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2014-04-30 23:22:15 +00:00
|
|
|
namespace media {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
const int kInvalidSocket(-1);
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
bool StringToIpv4Address(const std::string& addr_in, uint32_t* addr_out) {
|
2014-04-30 23:22:15 +00:00
|
|
|
DCHECK(addr_out);
|
|
|
|
|
|
|
|
*addr_out = 0;
|
|
|
|
size_t start_pos(0);
|
|
|
|
size_t end_pos(0);
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
end_pos = addr_in.find('.', start_pos);
|
|
|
|
if ((end_pos == std::string::npos) != (i == 3))
|
|
|
|
return false;
|
|
|
|
unsigned addr_byte;
|
|
|
|
if (!base::StringToUint(addr_in.substr(start_pos, end_pos - start_pos),
|
|
|
|
&addr_byte)
|
|
|
|
|| (addr_byte > 255))
|
|
|
|
return false;
|
|
|
|
*addr_out <<= 8;
|
|
|
|
*addr_out |= addr_byte;
|
|
|
|
start_pos = end_pos + 1;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StringToIpv4AddressAndPort(const std::string& addr_and_port,
|
2014-09-30 21:52:21 +00:00
|
|
|
uint32_t* addr,
|
|
|
|
uint16_t* port) {
|
2014-04-30 23:22:15 +00:00
|
|
|
DCHECK(addr);
|
|
|
|
DCHECK(port);
|
|
|
|
|
|
|
|
size_t colon_pos = addr_and_port.find(':');
|
|
|
|
if (colon_pos == std::string::npos) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!StringToIpv4Address(addr_and_port.substr(0, colon_pos), addr))
|
|
|
|
return false;
|
|
|
|
unsigned port_value;
|
|
|
|
if (!base::StringToUint(addr_and_port.substr(colon_pos + 1),
|
|
|
|
&port_value) ||
|
|
|
|
(port_value > 65535))
|
|
|
|
return false;
|
|
|
|
*port = port_value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
bool IsIpv4MulticastAddress(uint32_t addr) {
|
2014-04-30 23:22:15 +00:00
|
|
|
return (addr & 0xf0000000) == 0xe0000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
UdpFile::UdpFile(const char* file_name) :
|
|
|
|
File(file_name),
|
|
|
|
socket_(kInvalidSocket) {}
|
|
|
|
|
|
|
|
UdpFile::~UdpFile() {}
|
|
|
|
|
|
|
|
bool UdpFile::Close() {
|
|
|
|
if (socket_ != kInvalidSocket) {
|
|
|
|
close(socket_);
|
|
|
|
socket_ = kInvalidSocket;
|
|
|
|
}
|
|
|
|
delete this;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
int64_t UdpFile::Read(void* buffer, uint64_t length) {
|
2014-04-30 23:22:15 +00:00
|
|
|
DCHECK(buffer);
|
|
|
|
DCHECK_GE(length, 65535u)
|
|
|
|
<< "Buffer may be too small to read entire datagram.";
|
|
|
|
|
|
|
|
if (socket_ == kInvalidSocket)
|
|
|
|
return -1;
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
int64_t result;
|
2014-04-30 23:22:15 +00:00
|
|
|
do {
|
|
|
|
result = recvfrom(socket_, buffer, length, 0, NULL, 0);
|
|
|
|
} while ((result == -1) && (errno == EINTR));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
int64_t UdpFile::Write(const void* buffer, uint64_t length) {
|
2014-04-30 23:22:15 +00:00
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
int64_t UdpFile::Size() {
|
2014-04-30 23:22:15 +00:00
|
|
|
if (socket_ == kInvalidSocket)
|
|
|
|
return -1;
|
|
|
|
|
2014-09-30 23:52:58 +00:00
|
|
|
return std::numeric_limits<int64_t>::max();
|
2014-04-30 23:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool UdpFile::Flush() {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-05-20 17:14:36 +00:00
|
|
|
bool UdpFile::Seek(uint64_t position) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UdpFile::Tell(uint64_t* position) {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-30 23:22:15 +00:00
|
|
|
class ScopedSocket {
|
|
|
|
public:
|
|
|
|
explicit ScopedSocket(int sock_fd)
|
|
|
|
: sock_fd_(sock_fd) {}
|
|
|
|
|
|
|
|
~ScopedSocket() {
|
|
|
|
if (sock_fd_ != kInvalidSocket)
|
|
|
|
close(sock_fd_);
|
|
|
|
}
|
|
|
|
|
|
|
|
int get() { return sock_fd_; }
|
|
|
|
|
|
|
|
int release() {
|
|
|
|
int socket = sock_fd_;
|
|
|
|
sock_fd_ = kInvalidSocket;
|
|
|
|
return socket;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int sock_fd_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ScopedSocket);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool UdpFile::Open() {
|
|
|
|
DCHECK_EQ(kInvalidSocket, socket_);
|
|
|
|
|
|
|
|
// TODO(tinskip): Support IPv6 addresses.
|
2014-09-30 21:52:21 +00:00
|
|
|
uint32_t dest_addr;
|
|
|
|
uint16_t dest_port;
|
2014-04-30 23:22:15 +00:00
|
|
|
if (!StringToIpv4AddressAndPort(file_name(),
|
|
|
|
&dest_addr,
|
|
|
|
&dest_port)) {
|
|
|
|
LOG(ERROR) << "Malformed IPv4 address:port UDP stream specifier.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedSocket new_socket(socket(AF_INET, SOCK_DGRAM, 0));
|
|
|
|
if (new_socket.get() == kInvalidSocket) {
|
|
|
|
LOG(ERROR) << "Could not allocate socket.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sockaddr_in local_sock_addr;
|
|
|
|
bzero(&local_sock_addr, sizeof(local_sock_addr));
|
|
|
|
local_sock_addr.sin_family = AF_INET;
|
|
|
|
local_sock_addr.sin_port = htons(dest_port);
|
|
|
|
local_sock_addr.sin_addr.s_addr = htonl(dest_addr);
|
2016-10-04 22:51:45 +00:00
|
|
|
// We do not need to require exclusive bind of udp sockets
|
|
|
|
const int optval = 1;
|
|
|
|
if (setsockopt(new_socket.get(), SOL_SOCKET, SO_REUSEADDR, &optval,
|
|
|
|
sizeof(optval)) < 0) {
|
|
|
|
LOG(ERROR)
|
|
|
|
<< "Could not apply the SO_REUSEADDR property to the UDP socket";
|
|
|
|
return false;
|
|
|
|
}
|
2014-04-30 23:22:15 +00:00
|
|
|
if (bind(new_socket.get(),
|
|
|
|
reinterpret_cast<struct sockaddr*>(&local_sock_addr),
|
|
|
|
sizeof(local_sock_addr))) {
|
|
|
|
LOG(ERROR) << "Could not bind UDP socket";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsIpv4MulticastAddress(dest_addr)) {
|
2014-09-30 21:52:21 +00:00
|
|
|
uint32_t if_addr;
|
2014-04-30 23:22:15 +00:00
|
|
|
if (!StringToIpv4Address(FLAGS_udp_interface_address, &if_addr)) {
|
|
|
|
LOG(ERROR) << "Malformed IPv4 address for interface.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
struct ip_mreq multicast_group;
|
|
|
|
multicast_group.imr_multiaddr.s_addr = htonl(dest_addr);
|
|
|
|
multicast_group.imr_interface.s_addr = htonl(if_addr);
|
|
|
|
if (setsockopt(new_socket.get(),
|
|
|
|
IPPROTO_IP,
|
|
|
|
IP_ADD_MEMBERSHIP,
|
|
|
|
&multicast_group,
|
|
|
|
sizeof(multicast_group)) < 0) {
|
|
|
|
LOG(ERROR) << "Failed to join multicast group.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
socket_ = new_socket.release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|