1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2013 David Strauss
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
29 #include <sys/socket.h>
33 #include "sd-daemon.h"
35 #include "sd-resolve.h"
37 #include "alloc-util.h"
40 #include "path-util.h"
42 #include "socket-util.h"
43 #include "string-util.h"
46 #define BUFFER_SIZE (256 * 1024)
47 #define CONNECTIONS_MAX 256
49 static const char *arg_remote_host
= NULL
;
51 typedef struct Context
{
59 typedef struct Connection
{
62 int server_fd
, client_fd
;
63 int server_to_client_buffer
[2]; /* a pipe */
64 int client_to_server_buffer
[2]; /* a pipe */
66 size_t server_to_client_buffer_full
, client_to_server_buffer_full
;
67 size_t server_to_client_buffer_size
, client_to_server_buffer_size
;
69 sd_event_source
*server_event_source
, *client_event_source
;
71 sd_resolve_query
*resolve_query
;
74 static void connection_free(Connection
*c
) {
78 set_remove(c
->context
->connections
, c
);
80 sd_event_source_unref(c
->server_event_source
);
81 sd_event_source_unref(c
->client_event_source
);
83 safe_close(c
->server_fd
);
84 safe_close(c
->client_fd
);
86 safe_close_pair(c
->server_to_client_buffer
);
87 safe_close_pair(c
->client_to_server_buffer
);
89 sd_resolve_query_unref(c
->resolve_query
);
94 static void context_free(Context
*context
) {
100 while ((es
= set_steal_first(context
->listen
)))
101 sd_event_source_unref(es
);
103 while ((c
= set_first(context
->connections
)))
106 set_free(context
->listen
);
107 set_free(context
->connections
);
109 sd_event_unref(context
->event
);
110 sd_resolve_unref(context
->resolve
);
113 static int connection_create_pipes(Connection
*c
, int buffer
[2], size_t *sz
) {
123 r
= pipe2(buffer
, O_CLOEXEC
|O_NONBLOCK
);
125 return log_error_errno(errno
, "Failed to allocate pipe buffer: %m");
127 (void) fcntl(buffer
[0], F_SETPIPE_SZ
, BUFFER_SIZE
);
129 r
= fcntl(buffer
[0], F_GETPIPE_SZ
);
131 return log_error_errno(errno
, "Failed to get pipe buffer size: %m");
139 static int connection_shovel(
141 int *from
, int buffer
[2], int *to
,
142 size_t *full
, size_t *sz
,
143 sd_event_source
**from_source
, sd_event_source
**to_source
) {
150 assert(buffer
[0] >= 0);
151 assert(buffer
[1] >= 0);
163 if (*full
< *sz
&& *from
>= 0 && *to
>= 0) {
164 z
= splice(*from
, NULL
, buffer
[1], NULL
, *sz
- *full
, SPLICE_F_MOVE
|SPLICE_F_NONBLOCK
);
168 } else if (z
== 0 || errno
== EPIPE
|| errno
== ECONNRESET
) {
169 *from_source
= sd_event_source_unref(*from_source
);
170 *from
= safe_close(*from
);
171 } else if (errno
!= EAGAIN
&& errno
!= EINTR
)
172 return log_error_errno(errno
, "Failed to splice: %m");
175 if (*full
> 0 && *to
>= 0) {
176 z
= splice(buffer
[0], NULL
, *to
, NULL
, *full
, SPLICE_F_MOVE
|SPLICE_F_NONBLOCK
);
180 } else if (z
== 0 || errno
== EPIPE
|| errno
== ECONNRESET
) {
181 *to_source
= sd_event_source_unref(*to_source
);
182 *to
= safe_close(*to
);
183 } else if (errno
!= EAGAIN
&& errno
!= EINTR
)
184 return log_error_errno(errno
, "Failed to splice: %m");
191 static int connection_enable_event_sources(Connection
*c
);
193 static int traffic_cb(sd_event_source
*s
, int fd
, uint32_t revents
, void *userdata
) {
194 Connection
*c
= userdata
;
201 r
= connection_shovel(c
,
202 &c
->server_fd
, c
->server_to_client_buffer
, &c
->client_fd
,
203 &c
->server_to_client_buffer_full
, &c
->server_to_client_buffer_size
,
204 &c
->server_event_source
, &c
->client_event_source
);
208 r
= connection_shovel(c
,
209 &c
->client_fd
, c
->client_to_server_buffer
, &c
->server_fd
,
210 &c
->client_to_server_buffer_full
, &c
->client_to_server_buffer_size
,
211 &c
->client_event_source
, &c
->server_event_source
);
215 /* EOF on both sides? */
216 if (c
->server_fd
== -1 && c
->client_fd
== -1)
219 /* Server closed, and all data written to client? */
220 if (c
->server_fd
== -1 && c
->server_to_client_buffer_full
<= 0)
223 /* Client closed, and all data written to server? */
224 if (c
->client_fd
== -1 && c
->client_to_server_buffer_full
<= 0)
227 r
= connection_enable_event_sources(c
);
235 return 0; /* ignore errors, continue serving */
238 static int connection_enable_event_sources(Connection
*c
) {
239 uint32_t a
= 0, b
= 0;
244 if (c
->server_to_client_buffer_full
> 0)
246 if (c
->server_to_client_buffer_full
< c
->server_to_client_buffer_size
)
249 if (c
->client_to_server_buffer_full
> 0)
251 if (c
->client_to_server_buffer_full
< c
->client_to_server_buffer_size
)
254 if (c
->server_event_source
)
255 r
= sd_event_source_set_io_events(c
->server_event_source
, a
);
256 else if (c
->server_fd
>= 0)
257 r
= sd_event_add_io(c
->context
->event
, &c
->server_event_source
, c
->server_fd
, a
, traffic_cb
, c
);
262 return log_error_errno(r
, "Failed to set up server event source: %m");
264 if (c
->client_event_source
)
265 r
= sd_event_source_set_io_events(c
->client_event_source
, b
);
266 else if (c
->client_fd
>= 0)
267 r
= sd_event_add_io(c
->context
->event
, &c
->client_event_source
, c
->client_fd
, b
, traffic_cb
, c
);
272 return log_error_errno(r
, "Failed to set up client event source: %m");
277 static int connection_complete(Connection
*c
) {
282 r
= connection_create_pipes(c
, c
->server_to_client_buffer
, &c
->server_to_client_buffer_size
);
286 r
= connection_create_pipes(c
, c
->client_to_server_buffer
, &c
->client_to_server_buffer_size
);
290 r
= connection_enable_event_sources(c
);
298 return 0; /* ignore errors, continue serving */
301 static int connect_cb(sd_event_source
*s
, int fd
, uint32_t revents
, void *userdata
) {
302 Connection
*c
= userdata
;
310 solen
= sizeof(error
);
311 r
= getsockopt(fd
, SOL_SOCKET
, SO_ERROR
, &error
, &solen
);
313 log_error_errno(errno
, "Failed to issue SO_ERROR: %m");
318 log_error_errno(error
, "Failed to connect to remote host: %m");
322 c
->client_event_source
= sd_event_source_unref(c
->client_event_source
);
324 return connection_complete(c
);
328 return 0; /* ignore errors, continue serving */
331 static int connection_start(Connection
*c
, struct sockaddr
*sa
, socklen_t salen
) {
338 c
->client_fd
= socket(sa
->sa_family
, SOCK_STREAM
|SOCK_NONBLOCK
|SOCK_CLOEXEC
, 0);
339 if (c
->client_fd
< 0) {
340 log_error_errno(errno
, "Failed to get remote socket: %m");
344 r
= connect(c
->client_fd
, sa
, salen
);
346 if (errno
== EINPROGRESS
) {
347 r
= sd_event_add_io(c
->context
->event
, &c
->client_event_source
, c
->client_fd
, EPOLLOUT
, connect_cb
, c
);
349 log_error_errno(r
, "Failed to add connection socket: %m");
353 r
= sd_event_source_set_enabled(c
->client_event_source
, SD_EVENT_ONESHOT
);
355 log_error_errno(r
, "Failed to enable oneshot event source: %m");
359 log_error_errno(errno
, "Failed to connect to remote host: %m");
363 r
= connection_complete(c
);
372 return 0; /* ignore errors, continue serving */
375 static int resolve_cb(sd_resolve_query
*q
, int ret
, const struct addrinfo
*ai
, void *userdata
) {
376 Connection
*c
= userdata
;
382 log_error("Failed to resolve host: %s", gai_strerror(ret
));
386 c
->resolve_query
= sd_resolve_query_unref(c
->resolve_query
);
388 return connection_start(c
, ai
->ai_addr
, ai
->ai_addrlen
);
392 return 0; /* ignore errors, continue serving */
395 static int resolve_remote(Connection
*c
) {
397 static const struct addrinfo hints
= {
398 .ai_family
= AF_UNSPEC
,
399 .ai_socktype
= SOCK_STREAM
,
400 .ai_flags
= AI_ADDRCONFIG
403 union sockaddr_union sa
= {};
404 const char *node
, *service
;
408 if (path_is_absolute(arg_remote_host
)) {
409 sa
.un
.sun_family
= AF_UNIX
;
410 strncpy(sa
.un
.sun_path
, arg_remote_host
, sizeof(sa
.un
.sun_path
)-1);
411 sa
.un
.sun_path
[sizeof(sa
.un
.sun_path
)-1] = 0;
413 salen
= offsetof(union sockaddr_union
, un
.sun_path
) + strlen(sa
.un
.sun_path
);
415 return connection_start(c
, &sa
.sa
, salen
);
418 if (arg_remote_host
[0] == '@') {
419 sa
.un
.sun_family
= AF_UNIX
;
420 sa
.un
.sun_path
[0] = 0;
421 strncpy(sa
.un
.sun_path
+1, arg_remote_host
+1, sizeof(sa
.un
.sun_path
)-2);
422 sa
.un
.sun_path
[sizeof(sa
.un
.sun_path
)-1] = 0;
424 salen
= offsetof(union sockaddr_union
, un
.sun_path
) + 1 + strlen(sa
.un
.sun_path
+ 1);
426 return connection_start(c
, &sa
.sa
, salen
);
429 service
= strrchr(arg_remote_host
, ':');
431 node
= strndupa(arg_remote_host
, service
- arg_remote_host
);
434 node
= arg_remote_host
;
438 log_debug("Looking up address info for %s:%s", node
, service
);
439 r
= sd_resolve_getaddrinfo(c
->context
->resolve
, &c
->resolve_query
, node
, service
, &hints
, resolve_cb
, c
);
441 log_error_errno(r
, "Failed to resolve remote host: %m");
449 return 0; /* ignore errors, continue serving */
452 static int add_connection_socket(Context
*context
, int fd
) {
459 if (set_size(context
->connections
) > CONNECTIONS_MAX
) {
460 log_warning("Hit connection limit, refusing connection.");
465 r
= set_ensure_allocated(&context
->connections
, NULL
);
471 c
= new0(Connection
, 1);
477 c
->context
= context
;
480 c
->server_to_client_buffer
[0] = c
->server_to_client_buffer
[1] = -1;
481 c
->client_to_server_buffer
[0] = c
->client_to_server_buffer
[1] = -1;
483 r
= set_put(context
->connections
, c
);
490 return resolve_remote(c
);
493 static int accept_cb(sd_event_source
*s
, int fd
, uint32_t revents
, void *userdata
) {
494 _cleanup_free_
char *peer
= NULL
;
495 Context
*context
= userdata
;
500 assert(revents
& EPOLLIN
);
503 nfd
= accept4(fd
, NULL
, NULL
, SOCK_NONBLOCK
|SOCK_CLOEXEC
);
505 if (errno
!= -EAGAIN
)
506 log_warning_errno(errno
, "Failed to accept() socket: %m");
508 getpeername_pretty(nfd
, &peer
);
509 log_debug("New connection from %s", strna(peer
));
511 r
= add_connection_socket(context
, nfd
);
513 log_error_errno(r
, "Failed to accept connection, ignoring: %m");
518 r
= sd_event_source_set_enabled(s
, SD_EVENT_ONESHOT
);
520 log_error_errno(r
, "Error while re-enabling listener with ONESHOT: %m");
521 sd_event_exit(context
->event
, r
);
528 static int add_listen_socket(Context
*context
, int fd
) {
529 sd_event_source
*source
;
535 r
= set_ensure_allocated(&context
->listen
, NULL
);
541 r
= sd_is_socket(fd
, 0, SOCK_STREAM
, 1);
543 return log_error_errno(r
, "Failed to determine socket type: %m");
545 log_error("Passed in socket is not a stream socket.");
549 r
= fd_nonblock(fd
, true);
551 return log_error_errno(r
, "Failed to mark file descriptor non-blocking: %m");
553 r
= sd_event_add_io(context
->event
, &source
, fd
, EPOLLIN
, accept_cb
, context
);
555 return log_error_errno(r
, "Failed to add event source: %m");
557 r
= set_put(context
->listen
, source
);
559 log_error_errno(r
, "Failed to add source to set: %m");
560 sd_event_source_unref(source
);
564 /* Set the watcher to oneshot in case other processes are also
565 * watching to accept(). */
566 r
= sd_event_source_set_enabled(source
, SD_EVENT_ONESHOT
);
568 return log_error_errno(r
, "Failed to enable oneshot mode: %m");
573 static void help(void) {
574 printf("%1$s [HOST:PORT]\n"
576 "Bidirectionally proxy local sockets to another (possibly remote) socket.\n\n"
577 " -h --help Show this help\n"
578 " --version Show package version\n",
579 program_invocation_short_name
);
582 static int parse_argv(int argc
, char *argv
[]) {
589 static const struct option options
[] = {
590 { "help", no_argument
, NULL
, 'h' },
591 { "version", no_argument
, NULL
, ARG_VERSION
},
600 while ((c
= getopt_long(argc
, argv
, "h", options
, NULL
)) >= 0)
615 assert_not_reached("Unhandled option");
618 if (optind
>= argc
) {
619 log_error("Not enough parameters.");
623 if (argc
!= optind
+1) {
624 log_error("Too many parameters.");
628 arg_remote_host
= argv
[optind
];
632 int main(int argc
, char *argv
[]) {
633 Context context
= {};
636 log_parse_environment();
639 r
= parse_argv(argc
, argv
);
643 r
= sd_event_default(&context
.event
);
645 log_error_errno(r
, "Failed to allocate event loop: %m");
649 r
= sd_resolve_default(&context
.resolve
);
651 log_error_errno(r
, "Failed to allocate resolver: %m");
655 r
= sd_resolve_attach_event(context
.resolve
, context
.event
, 0);
657 log_error_errno(r
, "Failed to attach resolver: %m");
661 sd_event_set_watchdog(context
.event
, true);
663 n
= sd_listen_fds(1);
665 log_error("Failed to receive sockets from parent.");
669 log_error("Didn't get any sockets passed in.");
674 for (fd
= SD_LISTEN_FDS_START
; fd
< SD_LISTEN_FDS_START
+ n
; fd
++) {
675 r
= add_listen_socket(&context
, fd
);
680 r
= sd_event_loop(context
.event
);
682 log_error_errno(r
, "Failed to run event loop: %m");
687 context_free(&context
);
689 return r
< 0 ? EXIT_FAILURE
: EXIT_SUCCESS
;