-
Notifications
You must be signed in to change notification settings - Fork 20
/
simple-tcp-proxy.c
313 lines (274 loc) · 6.37 KB
/
simple-tcp-proxy.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*
* $Id: simple-tcp-proxy.c,v 1.11 2006/08/03 20:30:48 wessels Exp $
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <netdb.h>
#include <string.h>
#include <signal.h>
#include <assert.h>
#include <syslog.h>
#include <err.h>
#include <sys/types.h>
#include <sys/select.h>
#include <sys/file.h>
#include <sys/ioctl.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <netinet/in.h>
#include <arpa/ftp.h>
#include <arpa/inet.h>
#include <arpa/telnet.h>
#define BUF_SIZE 4096
char client_hostname[64];
void
cleanup(int sig)
{
syslog(LOG_NOTICE, "Cleaning up...");
exit(0);
}
void
sigreap(int sig)
{
int status;
pid_t p;
signal(SIGCHLD, sigreap);
while ((p = waitpid(-1, &status, WNOHANG)) > 0);
/* no debugging in signal handler! */
}
void
set_nonblock(int fd)
{
int fl;
int x;
fl = fcntl(fd, F_GETFL, 0);
if (fl < 0) {
syslog(LOG_ERR, "fcntl F_GETFL: FD %d: %s", fd, strerror(errno));
exit(1);
}
x = fcntl(fd, F_SETFL, fl | O_NONBLOCK);
if (x < 0) {
syslog(LOG_ERR, "fcntl F_SETFL: FD %d: %s", fd, strerror(errno));
exit(1);
}
}
int
create_server_sock(char *addr, int port)
{
int addrlen, s, on = 1, x;
static struct sockaddr_in client_addr;
s = socket(AF_INET, SOCK_STREAM, 0);
if (s < 0)
err(1, "socket");
addrlen = sizeof(client_addr);
memset(&client_addr, '\0', addrlen);
client_addr.sin_family = AF_INET;
client_addr.sin_addr.s_addr = inet_addr(addr);
client_addr.sin_port = htons(port);
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, 4);
x = bind(s, (struct sockaddr *) &client_addr, addrlen);
if (x < 0)
err(1, "bind %s:%d", addr, port);
x = listen(s, 5);
if (x < 0)
err(1, "listen %s:%d", addr, port);
syslog(LOG_NOTICE, "listening on %s port %d", addr, port);
return s;
}
int
open_remote_host(char *host, int port)
{
struct sockaddr_in rem_addr;
int len, s, x;
struct hostent *H;
int on = 1;
H = gethostbyname(host);
if (!H)
return (-2);
len = sizeof(rem_addr);
s = socket(AF_INET, SOCK_STREAM, 0);
if (s < 0)
return s;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, 4);
len = sizeof(rem_addr);
memset(&rem_addr, '\0', len);
rem_addr.sin_family = AF_INET;
memcpy(&rem_addr.sin_addr, H->h_addr, H->h_length);
rem_addr.sin_port = htons(port);
x = connect(s, (struct sockaddr *) &rem_addr, len);
if (x < 0) {
close(s);
return x;
}
set_nonblock(s);
return s;
}
int
get_hinfo_from_sockaddr(struct sockaddr_in addr, int len, char *fqdn)
{
struct hostent *hostinfo;
hostinfo = gethostbyaddr((char *) &addr.sin_addr.s_addr, len, AF_INET);
if (!hostinfo) {
sprintf(fqdn, "%s", inet_ntoa(addr.sin_addr));
return 0;
}
if (hostinfo && fqdn)
sprintf(fqdn, "%s [%s]", hostinfo->h_name, inet_ntoa(addr.sin_addr));
return 0;
}
int
wait_for_connection(int s)
{
static int newsock;
static socklen_t len;
static struct sockaddr_in peer;
len = sizeof(struct sockaddr);
syslog(LOG_INFO, "calling accept FD %d", s);
newsock = accept(s, (struct sockaddr *) &peer, &len);
/* dump_sockaddr (peer, len); */
if (newsock < 0) {
if (errno != EINTR) {
syslog(LOG_NOTICE, "accept FD %d: %s", s, strerror(errno));
return -1;
}
}
get_hinfo_from_sockaddr(peer, len, client_hostname);
set_nonblock(newsock);
return (newsock);
}
int
mywrite(int fd, char *buf, int *len)
{
int x = write(fd, buf, *len);
if (x < 0)
return x;
if (x == 0)
return x;
if (x != *len)
memmove(buf, buf+x, (*len)-x);
*len -= x;
return x;
}
void
service_client(int cfd, int sfd)
{
int maxfd;
char *sbuf;
char *cbuf;
int x, n;
int cbo = 0;
int sbo = 0;
fd_set R;
sbuf = malloc(BUF_SIZE);
cbuf = malloc(BUF_SIZE);
maxfd = cfd > sfd ? cfd : sfd;
maxfd++;
while (1) {
struct timeval to;
if (cbo) {
if (mywrite(sfd, cbuf, &cbo) < 0 && errno != EWOULDBLOCK) {
syslog(LOG_ERR, "write %d: %s", sfd, strerror(errno));
exit(1);
}
}
if (sbo) {
if (mywrite(cfd, sbuf, &sbo) < 0 && errno != EWOULDBLOCK) {
syslog(LOG_ERR, "write %d: %s", cfd, strerror(errno));
exit(1);
}
}
FD_ZERO(&R);
if (cbo < BUF_SIZE)
FD_SET(cfd, &R);
if (sbo < BUF_SIZE)
FD_SET(sfd, &R);
to.tv_sec = 0;
to.tv_usec = 1000;
x = select(maxfd+1, &R, 0, 0, &to);
if (x > 0) {
if (FD_ISSET(cfd, &R)) {
n = read(cfd, cbuf+cbo, BUF_SIZE-cbo);
syslog(LOG_INFO, "read %d bytes from CLIENT (%d)", n, cfd);
if (n > 0) {
cbo += n;
} else {
close(cfd);
close(sfd);
syslog(LOG_INFO, "exiting");
_exit(0);
}
}
if (FD_ISSET(sfd, &R)) {
n = read(sfd, sbuf+sbo, BUF_SIZE-sbo);
syslog(LOG_INFO, "read %d bytes from SERVER (%d)", n, sfd);
if (n > 0) {
sbo += n;
} else {
close(sfd);
close(cfd);
syslog(LOG_INFO, "exiting");
_exit(0);
}
}
} else if (x < 0 && errno != EINTR) {
syslog(LOG_NOTICE, "select: %s", strerror(errno));
close(sfd);
close(cfd);
syslog(LOG_NOTICE, "exiting");
_exit(0);
}
}
}
int
main(int argc, char *argv[])
{
char *localaddr = NULL;
int localport = -1;
char *remoteaddr = NULL;
int remoteport = -1;
int client = -1;
int server = -1;
int master_sock = -1;
if (5 != argc) {
fprintf(stderr, "usage: %s laddr lport rhost rport\n", argv[0]);
exit(1);
}
localaddr = strdup(argv[1]);
localport = atoi(argv[2]);
remoteaddr = strdup(argv[3]);
remoteport = atoi(argv[4]);
assert(localaddr);
assert(localport > 0);
assert(remoteaddr);
assert(remoteport > 0);
openlog(argv[0], LOG_PID, LOG_LOCAL4);
signal(SIGINT, cleanup);
signal(SIGCHLD, sigreap);
master_sock = create_server_sock(localaddr, localport);
for (;;) {
if ((client = wait_for_connection(master_sock)) < 0)
continue;
if ((server = open_remote_host(remoteaddr, remoteport)) < 0) {
close(client);
client = -1;
continue;
}
if (0 == fork()) {
/* child */
syslog(LOG_NOTICE, "connection from %s fd=%d", client_hostname, client);
syslog(LOG_INFO, "connected to %s:%d fd=%d", remoteaddr, remoteport, server);
close(master_sock);
service_client(client, server);
abort();
}
close(client);
client = -1;
close(server);
server = -1;
}
}