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.
24 #include <sys/types.h>
25 #include <sys/socket.h>
29 extern const char *winerror(int);
30 #define strerror(x) ((x)>0?strerror(x):winerror(GetLastError()))
31 #define sockerrno WSAGetLastError()
32 #define sockstrerror(x) winerror(x)
34 #define sockerrno errno
35 #define sockstrerror(x) strerror(x)
38 int main(int argc, char *argv[]) {
40 fprintf(stderr, "Usage: %s name1 host1 port1 name2 host2 port2 [protocol]\n", argv[0]);
53 static struct WSAData wsa_state;
55 if(WSAStartup(MAKEWORD(2, 2), &wsa_state)) {
63 struct addrinfo *ai, hint;
64 memset(&hint, 0, sizeof(hint));
66 hint.ai_family = AF_UNSPEC;
67 hint.ai_socktype = SOCK_STREAM;
68 hint.ai_protocol = IPPROTO_TCP;
71 for (int i = 0; i < 2; i++) {
72 if(getaddrinfo(argv[2 + 3 * i], argv[3 + 3 * i], &hint, &ai) || !ai) {
73 fprintf(stderr, "getaddrinfo() failed: %s\n", sockstrerror(sockerrno));
77 sock[i] = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
80 fprintf(stderr, "Could not create socket: %s\n", sockstrerror(sockerrno));
84 if(connect(sock[i], ai->ai_addr, ai->ai_addrlen)) {
85 fprintf(stderr, "Could not connect to %s: %s\n", argv[i + 3 * i], sockstrerror(sockerrno));
89 fprintf(stderr, "Connected to %s\n", argv[1 + 3 * i]);
91 /* Pretend to be the other one */
92 int len = snprintf(buf, sizeof buf, "0 %s %s\n", argv[4 - 3 * i], protocol);
93 if (send(sock[i], buf, len, 0) != len) {
94 fprintf(stderr, "Error sending data to %s: %s\n", argv[1 + 3 * i], sockstrerror(sockerrno));
98 /* Ignore the response */
100 if (recv(sock[i], buf, 1, 0) != 1) {
101 fprintf(stderr, "Error reading data from %s: %s\n", argv[1 + 3 * i], sockstrerror(sockerrno));
104 } while(*buf != '\n');
107 fprintf(stderr, "Splicing...\n");
109 int nfds = (sock[0] > sock[1] ? sock[0] : sock[1]) + 1;
114 FD_SET(sock[0], &fds);
115 FD_SET(sock[1], &fds);
117 if(select(nfds, &fds, NULL, NULL, NULL) <= 0) {
121 for(int i = 0; i < 2; i++ ) {
122 if(FD_ISSET(sock[i], &fds)) {
123 ssize_t len = recv(sock[i], buf, sizeof buf, 0);
126 fprintf(stderr, "Error while reading from %s: %s\n", argv[1 + i * 3], sockstrerror(sockerrno));
131 fprintf(stderr, "Connection closed by %s\n", argv[1 + i * 3]);
135 if(send(sock[i ^ 1], buf, len, 0) != len) {
136 fprintf(stderr, "Error while writing to %s: %s\n", argv[4 - i * 3], sockstrerror(sockerrno));