2 splice.c -- Splice two outgoing tinc connections together
3 Copyright (C) 2018 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "../src/system.h"
23 static const char *winerror(int err) {
24 static char buf[1024], *ptr;
26 ptr = buf + snprintf(buf, sizeof(buf), "(%d) ", err);
28 if(!FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
29 NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), ptr, sizeof(buf) - (ptr - buf), NULL)) {
30 strncpy(buf, "(unable to format errormessage)", sizeof(buf));
33 if((ptr = strchr(buf, '\r'))) {
40 #define strerror(x) ((x)>0?strerror(x):winerror(GetLastError()))
41 #define sockerrno WSAGetLastError()
42 #define sockstrerror(x) winerror(x)
44 #define sockerrno errno
45 #define sockstrerror(x) strerror(x)
48 int main(int argc, char *argv[]) {
50 fprintf(stderr, "Usage: %s name1 host1 port1 name2 host2 port2 [protocol]\n", argv[0]);
63 static struct WSAData wsa_state;
65 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
73 struct addrinfo *ai, hint;
74 memset(&hint, 0, sizeof(hint));
76 hint.ai_family = AF_UNSPEC;
77 hint.ai_socktype = SOCK_STREAM;
78 hint.ai_protocol = IPPROTO_TCP;
81 for (int i = 0; i < 2; i++) {
82 if(getaddrinfo(argv[2 + 3 * i], argv[3 + 3 * i], &hint, &ai) || !ai) {
83 fprintf(stderr, "getaddrinfo() failed: %s\n", sockstrerror(sockerrno));
87 sock[i] = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
90 fprintf(stderr, "Could not create socket: %s\n", sockstrerror(sockerrno));
94 if(connect(sock[i], ai->ai_addr, ai->ai_addrlen)) {
95 fprintf(stderr, "Could not connect to %s: %s\n", argv[i + 3 * i], sockstrerror(sockerrno));
99 fprintf(stderr, "Connected to %s\n", argv[1 + 3 * i]);
101 /* Pretend to be the other one */
102 int len = snprintf(buf, sizeof buf, "0 %s %s\n", argv[4 - 3 * i], protocol);
103 if (send(sock[i], buf, len, 0) != len) {
104 fprintf(stderr, "Error sending data to %s: %s\n", argv[1 + 3 * i], sockstrerror(sockerrno));
108 /* Ignore the response */
110 if (recv(sock[i], buf, 1, 0) != 1) {
111 fprintf(stderr, "Error reading data from %s: %s\n", argv[1 + 3 * i], sockstrerror(sockerrno));
114 } while(*buf != '\n');
117 fprintf(stderr, "Splicing...\n");
119 int nfds = (sock[0] > sock[1] ? sock[0] : sock[1]) + 1;
124 FD_SET(sock[0], &fds);
125 FD_SET(sock[1], &fds);
127 if(select(nfds, &fds, NULL, NULL, NULL) <= 0) {
131 for(int i = 0; i < 2; i++ ) {
132 if(FD_ISSET(sock[i], &fds)) {
133 ssize_t len = recv(sock[i], buf, sizeof buf, 0);
136 fprintf(stderr, "Error while reading from %s: %s\n", argv[1 + i * 3], sockstrerror(sockerrno));
141 fprintf(stderr, "Connection closed by %s\n", argv[1 + i * 3]);
145 if(send(sock[i ^ 1], buf, len, 0) != len) {
146 fprintf(stderr, "Error while writing to %s: %s\n", argv[4 - i * 3], sockstrerror(sockerrno));