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 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
|
/*
* client.c -- Outbound calls
*
* client.c is a part of binkd project
*
* Copyright (C) 1996-1998 Dima Maloff, 5047/13
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. See COPYING.
*/
/*
* $Id: client.c,v 2.39.2.2 2004/08/03 19:52:56 gul Exp $
*
* $Log: client.c,v $
* Revision 2.39.2.2 2004/08/03 19:52:56 gul
* Change SIGCHLD handling, make signal handler more clean,
* prevent occasional hanging (mutex deadlock) under linux kernel 2.6.
*
* Revision 2.39.2.1 2003/09/14 12:20:04 gul
* Clean use pointers to pNod array
*
* Revision 2.39 2003/06/02 14:10:17 gul
* write domain and IP to logfile on outgoing connections
*
* Revision 2.38 2003/04/30 13:38:17 gul
* Avoid warnings
*
* Revision 2.37 2003/04/28 07:30:16 gul
* Bugfix: Log() changes TCPERRNO
*
* Revision 2.36 2003/04/25 12:51:18 gul
* Fix diagnostics on exit
*
* Revision 2.35 2003/04/22 22:26:17 gul
* Fix previous patch
*
* Revision 2.34 2003/04/22 20:13:49 gul
* Fixed possible premature exit in -p mode
*
* Revision 2.33 2003/04/18 08:30:33 hbrew
* Fix memory fault when use proxy. Path from Stas Degteff 2:5080/102
*
* Revision 2.32 2003/04/06 13:50:11 gul
* dos sleep() realization
*
* Revision 2.31 2003/04/06 08:38:47 gul
* Log port number for outgoing connections to non-standard port
*
* Revision 2.30 2003/03/31 16:28:09 gul
* Fix previous patch
*
* Revision 2.29 2003/03/28 14:01:10 gul
* Do not call _endthread() without _beginthread() in client only mode
*
* Revision 2.28 2003/03/26 10:44:40 gul
* Code cleanup
*
* Revision 2.27 2003/03/25 20:37:46 gul
* free_hostent() function
*
* Revision 2.26 2003/03/19 14:36:03 gul
* Fix typo
*
* Revision 2.25 2003/03/14 21:58:33 gul
* Changed function SLEEP() to define for multithread version
*
* Revision 2.24 2003/03/11 14:11:01 gul
* Bugfix
*
* Revision 2.23 2003/03/11 11:42:23 gul
* Use event semaphores for exit threads
*
* Revision 2.22 2003/03/11 00:04:25 gul
* Use patches for compile under MSDOS by MSC 6.0 with IBMTCPIP
*
* Revision 2.21 2003/03/10 15:57:52 gul
* Fixed segfault on unresolvable host
*
* Revision 2.20 2003/03/10 12:16:53 gul
* Use HAVE_DOS_H macro
*
* Revision 2.19 2003/03/10 10:39:23 gul
* New include file common.h
*
* Revision 2.18 2003/03/10 08:38:07 gul
* Make n_servers/n_clients changes thread-safe
*
* Revision 2.17 2003/03/06 18:24:00 gul
* Fix exitfunc with threads
*
* Revision 2.16 2003/03/05 13:21:50 gul
* Fix warnings
*
* Revision 2.15 2003/03/05 11:40:12 gul
* Fix win32 compilation
*
* Revision 2.14 2003/03/04 09:56:00 gul
* Fix threads compilation
*
* Revision 2.13 2003/03/03 23:41:20 gul
* Try to resolve problem with active threads while exitproc running
*
* Revision 2.12 2003/03/01 20:16:27 gul
* OS/2 IBM C support
*
* Revision 2.11 2003/03/01 15:55:02 gul
* Current outgoing address is now attibute of session, but not node
*
* Revision 2.10 2003/02/28 20:39:08 gul
* Code cleanup:
* change "()" to "(void)" in function declarations;
* change C++-style comments to C-style
*
* Revision 2.9 2003/02/28 08:53:38 gul
* Fixed proxy usage
*
* Revision 2.8 2003/02/27 20:34:37 gul
* Fix proxy usage
*
* Revision 2.7 2003/02/27 18:52:37 gul
* bugfix in proxy using
*
* Revision 2.6 2003/02/23 07:20:11 gul
* Restore lost comment
*
* Revision 2.5 2003/02/22 19:30:22 gul
* Fix compiler warning
*
* Revision 2.4 2003/02/22 12:12:33 gul
* Cleanup sources
*
* Revision 2.3 2003/02/22 11:45:41 gul
* Do not resolve hosts if proxy or socks5 using
*
* Revision 2.2 2002/04/02 13:10:32 gul
* Put real remote addr to log "session with ..." if connect via socks or proxy
*
* Revision 2.1 2001/09/14 07:24:20 gul
* bindaddr works on outgoing connections now
*
* Revision 2.0 2001/01/10 12:12:37 gul
* Binkd is under CVS again
*
* Revision 1.12 1998/06/19 05:21:12 mff
* Oport was broken
*
* Revision 1.11 1997/11/04 23:33:55 mff
* Fixed a minor bug in walking through hostlists
*
* Revision 1.10 1997/10/23 04:16:36 mff
* host lists, more?
*
* Revision 1.9 1997/03/09 07:17:59 mff
* Support for -p key
*
* Revision 1.8 1997/02/07 07:11:53 mff
* We now restart sleep() after signals
*
* Revision 1.7 1997/02/01 05:55:24 mff
* Changed SIGCHLD support
*
* Revision 1.6 1997/02/01 05:37:22 mff
* Support for new queue scanning
*
* Revision 1.4 1996/12/14 07:03:26 mff
* Now we use branch()
*
* Revision 1.3 1996/12/09 03:37:21 mff
* Changed call-out logic
*
* Revision 1.2 1996/12/07 12:03:02 mff
* Now fork()'s or _beginthread()'s
*/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#ifdef HAVE_FORK
#include <signal.h>
#include <setjmp.h>
#elif defined(HAVE_THREADS)
#ifdef HAVE_DOS_H
#include <dos.h>
#endif
#include <process.h>
#elif !defined(DOS)
#error Must define either HAVE_FORK or HAVE_THREADS!
#endif
#include "Config.h"
#include "sys.h"
#include "iphdr.h"
#include "client.h"
#include "readcfg.h"
#include "common.h"
#include "iptools.h"
#include "ftnq.h"
#include "tools.h"
#include "protocol.h"
#include "bsy.h"
#include "assert.h"
#include "setpttl.h"
#include "sem.h"
#ifdef HTTPS
#include "https.h"
#endif
static void call (void *arg);
int n_clients = 0;
#ifdef HAVE_FORK
static jmp_buf jmpbuf;
static void chld (int signo)
{
if (signo == SIGALRM)
longjmp(jmpbuf, 1);
#define CHILDCOUNT n_clients
#include "reapchld.inc"
}
#endif
#if defined(HAVE_THREADS)
#define SLEEP(x) WaitSem(&exitcmgr, x)
#elif defined(VOID_SLEEP) || !defined(HAVE_FORK)
#define SLEEP(x) sleep(x)
#else
void SLEEP (time_t s)
{
while ((s = sleep (s)) > 0 && !binkd_exit);
}
#endif
#if defined(HAVE_THREADS) && defined(OS2)
void rel_grow_handles(int nh)
{ LONG addfh=0;
static ULONG curmaxfh=0;
LockSem(&fhsem);
if (curmaxfh == 0)
{ if (DosSetRelMaxFH(&addfh, &curmaxfh))
{ Log(1, "Cannot DosSetRelMaxFH");
return;
}
}
#ifdef __WATCOMC__
if ((addfh=_grow_handles((int)(curmaxfh += nh))) < curmaxfh)
#else
addfh=nh;
if (DosSetRelMaxFH(&addfh, &curmaxfh))
#endif
Log(1, "Cannot grow handles to %ld (now %ld): %s", curmaxfh, addfh, strerror(errno));
else
Log(6, "Set MaxFH to %ld (res %ld)", curmaxfh, addfh);
ReleaseSem(&fhsem);
}
#endif
void clientmgr (void *arg)
{
int pid;
int q_empty = 1;
int n_cl = n_clients;
#ifdef HAVE_FORK
pidcmgr = 0;
signal (SIGCHLD, chld);
#elif HAVE_THREADS
pidcmgr = PID();
#endif
setproctitle ("client manager");
Log (4, "clientmgr started");
while (!binkd_exit)
{
FTN_NODE r;
blockchld();
if (checkcfg_flag && client_flag && !server_flag && !poll_flag)
checkcfg();
if (q_empty)
{
q_free (SCAN_LISTED);
if (printq)
Log (-1, "scan\r");
n_cl = n_clients;
q_scan (SCAN_LISTED);
q_empty = !q_not_empty (NULL);
if (printq)
{
q_list (stderr, SCAN_LISTED);
Log (-1, "idle\r");
}
}
if (n_clients < max_clients)
{
if (q_next_node (&r) != 0 &&
bsy_test (&r.fa, F_BSY) &&
bsy_test (&r.fa, F_CSY))
{
rel_grow_handles (6);
threadsafe(++n_clients);
if ((pid = branch (call, (void *) &r, sizeof (r))) < 0)
{
rel_grow_handles (-6);
threadsafe(--n_clients);
PostSem(&eothread);
Log (1, "cannot branch out");
unblockchld();
SLEEP(1);
}
else
{
Log (5, "started client #%i, id=%i", n_clients, pid);
}
}
else
{
if (poll_flag && n_cl <= 0 && n_clients <= 0 && q_not_empty (NULL) == 0)
{
Log (4, "the queue is empty, quitting...");
break;
}
q_empty = 1;
unblockchld();
SLEEP (rescan_delay);
}
}
else
{
unblockchld();
SLEEP (call_delay);
}
}
unblockchld();
#ifdef HAVE_THREADS
pidcmgr = 0;
if (server_flag) {
PostSem(&eothread);
_endthread();
}
#else
exit (0);
#endif
}
static int call0 (FTN_NODE *node)
{
int sockfd = INVALID_SOCKET;
struct hostent he;
struct hostent *hp = NULL; /* prevent compiler warning */
struct sockaddr_in sin;
char **cp;
char szDestAddr[FTN_ADDR_SZ + 1];
struct in_addr defaddr;
int i, rc;
char host[MAXHOSTNAMELEN + 5 + 1]; /* current host/port */
unsigned short port;
const char *save_err;
ftnaddress_to_str (szDestAddr, &node->fa);
Log (2, "call to %s", szDestAddr);
setproctitle ("call to %s", szDestAddr);
memset(&sin, 0, sizeof(sin));
#ifdef HTTPS
if (proxy[0] || socks[0])
{
char *sp, *sport;
strncpy(host, proxy[0] ? proxy: socks, sizeof(host));
if ((sp=strchr(host, ':')) != NULL)
{
*sp++ = '\0';
sport = sp;
if ((sp=strchr(sp, '/')) != NULL)
*sp++ = '\0';
}
else
{
if((sp=strchr(host, '/')) != NULL)
*sp++ = '\0';
sport = proxy[0] ? "squid" : "socks"; /* default port */
}
if (!isdigit(*sport))
{ struct servent *se;
lockhostsem();
if ((se = getservbyname(sport, "tcp")) == NULL)
{
Log(2, "Port %s not found, try default %d", sp, proxy[0] ? 3128 : 1080);
sin.sin_port = htons((unsigned short)(proxy[0] ? 3128 : 1080));
} else
sin.sin_port = se->s_port;
releasehostsem();
}
else
sin.sin_port = htons((unsigned short)atoi(sport));
/* resolve proxy host */
if ((hp = find_host(host, &he, &defaddr)) == NULL)
{
Log(1, "%s host %s not found", proxy[0] ? "Proxy" : "Socks", host);
return 0;
}
}
#endif
for (i = 1; sockfd == INVALID_SOCKET
&& (rc = get_host_and_port
(i, host, &port, node->hosts, &node->fa)) != -1; ++i)
{
if (rc == 0)
{
Log (1, "%s: %i: error parsing host list", node->hosts, i);
continue;
}
#ifdef HTTPS
if (!proxy[0] && !socks[0]) /* don't resolve if proxy or socks specified */
#endif
{
if ((hp = find_host(host, &he, &defaddr)) == NULL)
{
bad_try(&node->fa, "Cannot gethostbyname");
continue;
}
sin.sin_port = htons(port);
}
/* Trying... */
for (cp = hp->h_addr_list; cp && *cp; cp++)
{
if ((sockfd = socket (hp->h_addrtype, SOCK_STREAM, 0)) == INVALID_SOCKET)
{
Log (1, "socket: %s", TCPERR ());
return 0;
}
add_socket(sockfd);
sin.sin_addr = *((struct in_addr *) * cp);
sin.sin_family = hp->h_addrtype;
lockhostsem();
#ifdef HTTPS
if (proxy[0] || socks[0])
{
char *sp = strchr(host, ':');
if (sp) *sp = '\0';
if (port == oport)
Log (4, "trying %s via %s %s:%u...", host,
proxy[0] ? "proxy" : "socks", inet_ntoa (sin.sin_addr),
ntohs(sin.sin_port));
else
Log (4, "trying %s:%u via %s %s:%u...", host, port,
proxy[0] ? "proxy" : "socks", inet_ntoa (sin.sin_addr),
ntohs(sin.sin_port));
sprintf(host+strlen(host), ":%u", port);
}
else
#endif
{
if (port == oport)
Log (4, "trying %s...", inet_ntoa (sin.sin_addr));
else
Log (4, "trying %s:%u...", inet_ntoa (sin.sin_addr), port);
}
releasehostsem();
if (bindaddr[0])
{
struct sockaddr_in src_sin;
memset(&src_sin, 0, sizeof(src_sin));
src_sin.sin_addr.s_addr = inet_addr(bindaddr);
src_sin.sin_family = AF_INET;
if (bind(sockfd, (struct sockaddr *)&src_sin, sizeof(src_sin)))
Log(4, "bind: %s", TCPERR());
}
#ifdef HAVE_FORK
if (connect_timeout)
{
if (setjmp(jmpbuf))
{
save_err = strerror (ETIMEDOUT);
goto badtry;
}
signal(SIGALRM, chld);
alarm(connect_timeout);
}
#endif
if (connect (sockfd, (struct sockaddr *) & sin, sizeof (sin)) == 0)
{
#ifdef HAVE_FORK
alarm(0);
signal(SIGALRM, SIG_DFL);
#endif
Log (4, "connected");
break;
}
save_err = TCPERR ();
#ifdef HAVE_FORK
badtry:
alarm(0);
signal(SIGALRM, SIG_DFL);
#endif
if (!binkd_exit)
{
Log (1, "unable to connect: %s", save_err);
bad_try (&node->fa, save_err);
}
del_socket(sockfd);
soclose (sockfd);
sockfd = INVALID_SOCKET;
}
#ifdef HAVE_THREADS
#ifdef HTTPS
if (!proxy[0] && !socks[0])
#endif
free_hostent(hp);
#endif
#ifdef HTTPS
if (sockfd != INVALID_SOCKET && (proxy[0] || socks[0])) {
if (h_connect(sockfd, host) != 0) {
if (!binkd_exit)
bad_try (&node->fa, TCPERR ());
del_socket(sockfd);
soclose (sockfd);
sockfd = INVALID_SOCKET;
}
else if (port == oport) {
char *pp;
if( (pp = strchr(host, ':')) ){
*pp = '\0';
}
}
}
#endif
}
#if defined(HAVE_THREADS) && defined(HTTPS)
if (proxy[0] || socks[0])
free_hostent(hp);
#endif
if (sockfd == INVALID_SOCKET)
return 0;
protocol (sockfd, node, host);
del_socket(sockfd);
soclose (sockfd);
return 1;
}
static void call (void *arg)
{
FTN_NODE *node = (FTN_NODE *) arg;
if (bsy_add (&node->fa, F_CSY))
{
call0 (node);
bsy_remove (&node->fa, F_CSY);
}
free (arg);
rel_grow_handles(-6);
#ifdef HAVE_THREADS
threadsafe(--n_clients);
PostSem(&eothread);
_endthread();
#elif defined(DOS)
--n_clients;
#endif
}
|