Files
UltraGrid/src/compat/platform_pipe.cpp
2021-11-08 15:43:14 +01:00

235 lines
7.5 KiB
C++

/**
* @file compat/platform_pipe.cpp
* @author Martin Pulec <pulec@cesnet.cz>
*/
/*
* Copyright (c) 2015-2021 CESNET, z. s. p. o.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, is permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. 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.
*
* 3. Neither the name of CESNET 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 AUTHORS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESSED 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 AUTHORS 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H
#include "config_unix.h"
#include "config_win32.h"
#include "compat/platform_pipe.h"
#include "rtp/net_udp.h" // socket_error
#include <thread>
using std::thread;
#ifdef _WIN32
#define DECLARE_TIMEOUT(name, init_val_s) DWORD name = init_val_s * 1000
typedef char *sockopt_t;
#else
#define DECLARE_TIMEOUT(name, init_val_s) struct timeval name = { init_val_s, 0 }
typedef void *sockopt_t;
#endif
#ifndef HAVE_CONFIG_H // compiled outside of UltraGrid
#define socket_error(...) fprintf(stderr, __VA_ARGS__)
#endif
static fd_t open_socket(int *port)
{
fd_t sock;
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock == INVALID_SOCKET) {
return INVALID_SOCKET;
}
struct sockaddr_in s_in;
memset(&s_in, 0, sizeof(s_in));
s_in.sin_family = AF_INET;
s_in.sin_addr.s_addr = htonl(INADDR_ANY);
s_in.sin_port = htons(0);
if (::bind(sock, (const struct sockaddr *) &s_in,
sizeof(s_in)) != 0) {
CLOSESOCKET(sock);
return INVALID_SOCKET;
}
if (listen(sock, 10) != 0) {
CLOSESOCKET(sock);
return INVALID_SOCKET;
}
socklen_t len = sizeof(s_in);
if (getsockname(sock, (struct sockaddr *) &s_in, &len) != 0) {
CLOSESOCKET(sock);
return INVALID_SOCKET;
}
*port = ntohs(s_in.sin_port);
return sock;
}
static fd_t connect_to_socket(int local_port)
{
struct sockaddr_in s_in;
memset(&s_in, 0, sizeof(s_in));
s_in.sin_family = AF_INET;
s_in.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
s_in.sin_port = htons(local_port);
fd_t fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd == INVALID_SOCKET) {
return INVALID_SOCKET;
}
int ret;
DECLARE_TIMEOUT(timeout, 1);
DECLARE_TIMEOUT(old_timeout, 0);
socklen_t old_timeout_len = sizeof old_timeout;
if (getsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, reinterpret_cast<sockopt_t>(&old_timeout), &old_timeout_len) != 0) {
socket_error("pipe getsockopt");
}
if (setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, reinterpret_cast<sockopt_t>(&timeout), sizeof timeout) != 0) {
socket_error("pipe setsockopt");
}
ret = connect(fd, (struct sockaddr *) &s_in,
sizeof(s_in));
if (ret != 0) {
socket_error("pipe connect");
CLOSESOCKET(fd);
return INVALID_SOCKET;
}
if (setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, reinterpret_cast<sockopt_t>(&old_timeout), old_timeout_len) != 0) {
socket_error("pipe setsockopt");
}
return fd;
}
struct params {
int port;
fd_t sock;
};
static void * worker(void *args)
{
struct params *p = (struct params *) args;
p->sock = connect_to_socket(p->port);
return NULL;
}
/// @brief return regular pipe if available if our implementation fails
static int system_pipe(fd_t p[2])
{
#ifdef _WIN32
(void) p;
return -1;
#else
fprintf(stderr, "Using native pipe instead of custom implementaton.\n");
return pipe(p);
#endif
}
int platform_pipe_init(fd_t p[2])
{
#ifdef WIN32
// This needs to be called twice, indeed, since WSACleanup will be run
// on both ends. This call is also required because not all pipes are
// destroyed before common_cleanup which calls WSACleanup
WSADATA wsaData;
int err = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (err != 0) {
fprintf(stderr, "WSAStartup failed with error %d.", err);
return -1;
}
if (LOBYTE(wsaData.wVersion) != 2 || HIBYTE(wsaData.wVersion) != 2) {
fprintf(stderr, "Counld not found usable version of Winsock.\n");
WSACleanup();
return -1;
}
err = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (err != 0) {
fprintf(stderr, "WSAStartup failed with error %d.", err);
WSACleanup();
return -1;
}
if (LOBYTE(wsaData.wVersion) != 2 || HIBYTE(wsaData.wVersion) != 2) {
fprintf(stderr, "Counld not found usable version of Winsock.\n");
WSACleanup();
WSACleanup();
return -1;
}
#endif
struct params par{};
fd_t sock = open_socket(&par.port);
if (sock == INVALID_SOCKET) {
perror("open_socket");
return system_pipe(p);
}
DECLARE_TIMEOUT(timeout, 1);
DECLARE_TIMEOUT(old_timeout, 0);
socklen_t old_timeout_len = sizeof old_timeout;
if (getsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, reinterpret_cast<sockopt_t>(&old_timeout), &old_timeout_len) != 0) {
socket_error("pipe getsockopt");
}
if (setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, reinterpret_cast<sockopt_t>(&timeout), sizeof timeout) != 0) {
socket_error("pipe setsockopt");
}
thread thr(worker, &par);
p[0] = accept(sock, NULL, NULL);
if (p[0] == INVALID_SOCKET) {
perror("pipe accept");
thr.join();
CLOSESOCKET(sock);
return system_pipe(p);
}
thr.join();
if (setsockopt(p[0], SOL_SOCKET, SO_RCVTIMEO, reinterpret_cast<sockopt_t>(&old_timeout), old_timeout_len) != 0) {
socket_error("pipe setsockopt");
}
p[1] = par.sock;
if (p[1] == INVALID_SOCKET) {
CLOSESOCKET(sock);
perror("accept");
return system_pipe(p);
}
CLOSESOCKET(sock);
return 0;
}
void platform_pipe_close(fd_t pipe)
{
CLOSESOCKET(pipe);
#ifdef WIN32
WSACleanup();
#endif
}