net.cc 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698
  1. /*
  2. * Copyright (C) 1997 Robey Pointer
  3. * Copyright (C) 1999 - 2002 Eggheads Development Team
  4. * Copyright (C) 2002 - 2014 Bryan Drewery
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. */
  20. /*
  21. * net.c -- handles:
  22. * all raw network i/o
  23. *
  24. */
  25. #include <fcntl.h>
  26. #include "common.h"
  27. #include "net.h"
  28. #include "socket.h"
  29. #include "misc.h"
  30. #include "main.h"
  31. #include "debug.h"
  32. #include "dccutil.h"
  33. #include "enclink.h"
  34. #include "egg_timer.h"
  35. #include "traffic.h"
  36. #include "adns.h"
  37. #include <bdlib/src/String.h>
  38. #include <bdlib/src/Stream.h>
  39. #include <limits.h>
  40. #include <string.h>
  41. #include <netdb.h>
  42. #include <signal.h>
  43. #include <sys/types.h>
  44. #include <sys/socket.h>
  45. #include <setjmp.h>
  46. #if HAVE_SYS_SELECT_H
  47. # include <sys/select.h>
  48. #endif /* HAVE_SYS_SELECT_H */
  49. #include <netinet/in.h>
  50. #include <arpa/inet.h>
  51. #include <errno.h>
  52. #include <sys/stat.h>
  53. #if HAVE_UNISTD_H
  54. # include <unistd.h>
  55. #endif /* HAVE_UNITSTD_H */
  56. extern egg_traffic_t traffic;
  57. union sockaddr_union cached_myip4_so;
  58. #ifdef USE_IPV6
  59. union sockaddr_union cached_myip6_so;
  60. #endif /* USE_IPV6 */
  61. bool cached_ip = 0; /* Set to 1 after cache_my_ip is called */
  62. bool identd_hack = 0; /* identd_open() won't work on most servers, dont even bother warning. */
  63. char botuser[21] = ""; /* Username of the user running the bot */
  64. int socks_total = 0; /* total number of sockets */
  65. sock_list *socklist = NULL; /* Enough to be safe */
  66. int MAXSOCKS = 0;
  67. jmp_buf alarmret; /* Env buffer for alarm() returns */
  68. /* This *MUST* be an ip */
  69. char firewall[121] = ""; /* Socks server for firewall */
  70. in_port_t firewallport = 1080; /* Default port of Sock4/5 firewalls */
  71. /* Types of proxy */
  72. #define PROXY_SOCKS 1
  73. #define PROXY_SUN 2
  74. #define PROXY_HTTP 3
  75. /* I need an UNSIGNED long for dcc type stuff
  76. */
  77. unsigned long my_atoul(const char *s)
  78. {
  79. unsigned long ret = 0;
  80. while ((*s >= '0') && (*s <= '9')) {
  81. ret *= 10;
  82. ret += ((*s) - '0');
  83. ++s;
  84. }
  85. return ret;
  86. }
  87. /* get the protocol used on a socket */
  88. int sockprotocol(int sock)
  89. {
  90. struct sockaddr sa;
  91. socklen_t socklen = sizeof(sa);
  92. bzero(&sa, socklen);
  93. if (getsockname(sock, &sa, &socklen))
  94. return -1;
  95. else
  96. return sa.sa_family;
  97. }
  98. /* AF_INET-independent resolving routine */
  99. static int get_ip(char *hostname, union sockaddr_union *so, int dns_type)
  100. {
  101. if (!hostname || (hostname && !hostname[0]))
  102. return 1;
  103. memset(so, 0, sizeof(union sockaddr_union));
  104. debug1("get_ip(%s)", hostname);
  105. bd::Array<bd::String> hosts = dns_lookup_block(hostname, 10, dns_type);
  106. if (hosts.length() == 0)
  107. return -1;
  108. my_addr_t addr;
  109. get_addr(bd::String(hosts[0]).c_str(), &addr);
  110. if (addr.family == AF_INET) {
  111. so->sin.sin_family = AF_INET;
  112. memcpy(&so->sin.sin_addr, &addr.u.addr, sizeof(addr.u.addr));
  113. #ifdef USE_IPV6
  114. } else if (addr.family == AF_INET6) {
  115. so->sin6.sin6_family = AF_INET6;
  116. memcpy(&so->sin6.sin6_addr, &addr.u.addr6, sizeof(addr.u.addr6));
  117. #endif
  118. }
  119. return 0;
  120. }
  121. /* Initialize the socklist
  122. */
  123. void init_net()
  124. {
  125. MAXSOCKS = max_dcc + 10;
  126. if (socklist)
  127. socklist = (sock_list *) my_realloc((void *) socklist, sizeof(sock_list) * MAXSOCKS);
  128. else
  129. socklist = (sock_list *) my_calloc(1, sizeof(sock_list) * MAXSOCKS);
  130. for (int i = 0; i < MAXSOCKS; i++) {
  131. bzero(&socklist[i], sizeof(socklist[i]));
  132. socklist[i].flags = SOCK_UNUSED;
  133. #ifdef EGG_SSL_EXT
  134. socklist[i].ssl = NULL;
  135. #endif
  136. socklist[i].sock = -1;
  137. }
  138. }
  139. /* Get my ipv? ip
  140. */
  141. char *myipstr(int af_type)
  142. {
  143. if (cached_ip) {
  144. #ifdef USE_IPV6
  145. if (af_type == AF_INET6) {
  146. static char s[UHOSTLEN + 1] = "";
  147. inet_ntop(AF_INET6, &cached_myip6_so.sin6.sin6_addr, s, 119);
  148. s[120] = 0;
  149. return s;
  150. } else
  151. #endif /* USE_IPV6 */
  152. if (af_type == AF_INET) {
  153. static char s[UHOSTLEN + 1] = "";
  154. inet_ntop(AF_INET, &cached_myip4_so.sin.sin_addr, s, 119);
  155. s[120] = 0;
  156. return s;
  157. }
  158. }
  159. return "";
  160. }
  161. /* Get my ip number
  162. */
  163. in_addr_t getmyip() {
  164. return cached_myip4_so.sin.sin_addr.s_addr;
  165. }
  166. /* see if it's necessary to set inaddr_any... because if we can't resolve, we die anyway */
  167. void cache_my_ip()
  168. {
  169. #ifdef no
  170. cached_myip6_so.sin6.sin6_family = AF_INET6;
  171. cached_myip6_so.sin6.sin6_addr = in6addr_any;
  172. cached_myip4_so.sin.sin_family = AF_INET;
  173. cached_myip4_so.sin.sin_addr.s_addr = INADDR_ANY;
  174. #endif
  175. int error = 0;
  176. debug0("cache_my_ip()");
  177. memset(&cached_myip4_so, 0, sizeof(union sockaddr_union));
  178. #ifdef USE_IPV6
  179. bool any = 0;
  180. memset(&cached_myip6_so, 0, sizeof(union sockaddr_union));
  181. if (conf.bot->net.ip6) {
  182. if (get_ip(conf.bot->net.ip6, &cached_myip6_so, DNS_LOOKUP_AAAA))
  183. any = 1;
  184. } else if (conf.bot->net.host6) {
  185. if (get_ip(conf.bot->net.host6, &cached_myip6_so, DNS_LOOKUP_AAAA))
  186. any = 1;
  187. } else
  188. any = 1;
  189. if (any) {
  190. cached_myip6_so.sin6.sin6_family = AF_INET6;
  191. cached_myip6_so.sin6.sin6_addr = in6addr_any;
  192. }
  193. #endif /* USE_IPV6 */
  194. if (conf.bot->net.ip) {
  195. if (get_ip(conf.bot->net.ip, &cached_myip4_so, DNS_LOOKUP_A))
  196. error = 1;
  197. } else if (conf.bot->net.host) {
  198. if (get_ip(conf.bot->net.host, &cached_myip4_so, DNS_LOOKUP_A))
  199. error = 2;
  200. } else {
  201. /*
  202. char s[121] = "";
  203. gethostname(s, sizeof(s));
  204. if (get_ip(s, &cached_myip4_so)) {
  205. */
  206. /* error = 3; */
  207. cached_myip4_so.sin.sin_family = AF_INET;
  208. cached_myip4_so.sin.sin_addr.s_addr = INADDR_ANY;
  209. // }
  210. }
  211. if (error) {
  212. putlog(LOG_DEBUG, "*", "Hostname self-lookup error: %d", error);
  213. fatal("Hostname self-lookup failed.", 0);
  214. }
  215. cached_ip = 1;
  216. }
  217. /* Sets/Unsets options for a specific socket.
  218. *
  219. * Returns: 0 - on success
  220. * -1 - socket not found
  221. * -2 - illegal operation
  222. */
  223. int sockoptions(int sock, int operation, int sock_options)
  224. {
  225. int i = -1;
  226. if ((i = findanysnum(sock)) != -1) {
  227. if (operation == EGG_OPTION_SET)
  228. socklist[i].flags |= sock_options;
  229. else if (operation == EGG_OPTION_UNSET)
  230. socklist[i].flags &= ~sock_options;
  231. else
  232. return -2;
  233. return 0;
  234. }
  235. return -1;
  236. }
  237. int
  238. sock_read(bd::Stream& stream)
  239. {
  240. int fd = -1;
  241. bd::String buf, type;
  242. while (stream.tell() < stream.length()) {
  243. buf = stream.getline().chomp();
  244. if (buf == STR("+sock"))
  245. return fd;
  246. type = newsplit(buf);
  247. if (type == STR("sock")) {
  248. int sock = atoi(newsplit(buf).c_str()), options = atoi(newsplit(buf).c_str());
  249. fd = allocsock(sock, options);
  250. }
  251. if (fd >= 0) {
  252. #ifdef USE_IPV6
  253. if (type == STR("af"))
  254. socklist[fd].af = atoi(buf.c_str());
  255. #endif
  256. if (type == STR("host"))
  257. socklist[fd].host = strdup(buf.c_str());
  258. if (type == STR("port"))
  259. socklist[fd].port = atoi(buf.c_str());
  260. }
  261. }
  262. return -1;
  263. }
  264. void
  265. sock_write(bd::Stream &stream, int fd)
  266. {
  267. if (socklist[fd].sock > 0) {
  268. bd::String buf;
  269. stream << bd::String::printf(STR("-sock\n"));
  270. stream << bd::String::printf(STR("sock %d %d\n"), socklist[fd].sock, socklist[fd].flags);
  271. #ifdef USE_IPV6
  272. stream << bd::String::printf(STR("af %u\n"), socklist[fd].af);
  273. #endif
  274. if (socklist[fd].host)
  275. stream << bd::String::printf(STR("host %s\n"), socklist[fd].host);
  276. if (socklist[fd].port)
  277. stream << bd::String::printf(STR("port %d\n"), socklist[fd].port);
  278. stream << bd::String::printf(STR("+sock\n"));
  279. }
  280. }
  281. /* Return a free entry in the socket entry
  282. */
  283. int allocsock(int sock, int options)
  284. {
  285. for (int i = 0; i < MAXSOCKS; i++) {
  286. if (socklist[i].flags & SOCK_UNUSED) {
  287. /* yay! there is table space */
  288. socklist[i].inbuf = NULL;
  289. socklist[i].outbuf = NULL;
  290. socklist[i].flags = options;
  291. socklist[i].sock = sock;
  292. socklist[i].encstatus = 0;
  293. socklist[i].enclink = -1;
  294. socklist[i].gz = 0;
  295. bzero(&(socklist[i].okey), ENC_KEY_LEN + 1);
  296. bzero(&(socklist[i].ikey), ENC_KEY_LEN + 1);
  297. socks_total++;
  298. sdprintf("allocsock(%d) = %d", i, sock);
  299. return i;
  300. }
  301. }
  302. fatal("Socket table is full!", 0);
  303. return -1; /* Never reached */
  304. }
  305. /* Request a normal socket for i/o
  306. */
  307. void setsock(int sock, int options)
  308. {
  309. int i = allocsock(sock, options);
  310. bool parm;
  311. if (((sock != STDOUT) || backgrd) && !(socklist[i].flags & SOCK_NONSOCK)) {
  312. parm = 1;
  313. setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *) &parm, sizeof(int));
  314. parm = 0;
  315. setsockopt(sock, SOL_SOCKET, SO_LINGER, (void *) &parm, sizeof(int));
  316. }
  317. if (options & SOCK_LISTEN) {
  318. /* Tris says this lets us grab the same port again next time */
  319. parm = 1;
  320. setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *) &parm, sizeof(int));
  321. }
  322. /* Yay async i/o ! */
  323. fcntl(sock, F_SETFL, O_NONBLOCK);
  324. }
  325. #ifdef USE_IPV6
  326. int real_getsock(int options, int af_def, const char *fname, int line)
  327. {
  328. #else
  329. int real_getsock(int options, const char *fname, int line)
  330. {
  331. int af_def = AF_INET;
  332. #endif /* USE_IPV6 */
  333. int sock = -1;
  334. if (!af_def)
  335. af_def = AF_INET;
  336. sock = socket(af_def, SOCK_STREAM, 0);
  337. if (sock >= 0)
  338. setsock(sock, options);
  339. else if (!identd_hack)
  340. putlog(LOG_WARNING, "*", "Warning: Can't create new socket! (%s:%d): %s", fname, line, strerror(errno));
  341. else if (identd_hack)
  342. identd_hack = 0;
  343. return sock;
  344. }
  345. /* Done with a socket
  346. */
  347. void real_killsock(int sock, const char *file, int line)
  348. {
  349. if (sock < 0) {
  350. putlog(LOG_ERRORS, "*", "Attempt to kill socket -1 %s:%d", file, line);
  351. return;
  352. }
  353. int i = -1;
  354. if ((i = findanysnum(sock)) != -1) {
  355. #ifdef EGG_SSL_EXT
  356. if (socklist[i].ssl) {
  357. SSL_shutdown(socklist[i].ssl);
  358. SSL_free(socklist[i].ssl);
  359. socklist[i].ssl = NULL;
  360. }
  361. #endif
  362. close(socklist[i].sock);
  363. if (socklist[i].inbuf != NULL) {
  364. delete socklist[i].inbuf;
  365. socklist[i].inbuf = NULL;
  366. }
  367. if (socklist[i].outbuf != NULL) {
  368. delete socklist[i].outbuf;
  369. socklist[i].outbuf = NULL;
  370. }
  371. if (socklist[i].host)
  372. free(socklist[i].host);
  373. bzero(&socklist[i], sizeof(socklist[i]));
  374. socklist[i].flags = SOCK_UNUSED;
  375. socks_total--;
  376. sdprintf("killsock(%d, %s, %d) (socklist: %d)", sock, file, line, i);
  377. return;
  378. }
  379. putlog(LOG_MISC, "*", "Attempt to kill un-allocated socket %d %s:%d !!", sock, file, line);
  380. }
  381. /* Send connection request to proxy
  382. */
  383. static int proxy_connect(int sock, const char *ip, in_port_t port, int proxy_type)
  384. {
  385. sdprintf("proxy_connect(%d, %s, %d, %d)", sock, ip, port, proxy_type);
  386. #ifdef USE_IPV6
  387. unsigned char x[32] = "";
  388. int af_ty = sockprotocol(sock);
  389. #else
  390. unsigned char x[10] = "";
  391. #endif /* USE_IPV6 */
  392. char s[256] = "";
  393. /* socks proxy */
  394. if (proxy_type == PROXY_SOCKS) {
  395. /* numeric IP? */
  396. if (is_dotted_ip(ip)) {
  397. in_addr_t ipaddr = ((in_addr_t) inet_addr(ip));
  398. memcpy(x, &ipaddr, 4);
  399. } else { /* if not resolved, resolve it with blocking calls.. (shouldn't happen ever) */
  400. return -1;
  401. }
  402. int i = -1;
  403. if ((i = findanysnum(sock)) != -1)
  404. socklist[i].flags |= SOCK_PROXYWAIT;
  405. #ifdef USE_IPV6
  406. if (af_ty == AF_INET6)
  407. simple_snprintf(s, sizeof s,
  408. "\004\001%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%s",
  409. (port >> 8) % 256, (port % 256), x[0], x[1], x[2], x[3],
  410. x[4], x[5], x[6], x[7], x[9], x[9], x[10], x[11], x[12],
  411. x[13], x[14], x[15], botuser);
  412. else
  413. #endif /* USE_IPV6 */
  414. simple_snprintf(s, sizeof s, "\004\001%c%c%c%c%c%c%s", (port >> 8) % 256,
  415. (port % 256), x[0], x[1], x[2], x[3], botuser);
  416. tputs(sock, s, strlen(botuser) + 9);
  417. } else if (proxy_type == PROXY_SUN) {
  418. size_t len = simple_snprintf(s, sizeof s, "%s %d\n", ip, port);
  419. tputs(sock, s, len);
  420. } else if (proxy_type == PROXY_HTTP) {
  421. size_t len = simple_snprintf(s, sizeof s, "CONNECT %s:%d\n\n", ip, port);
  422. tputs(sock, s, len);
  423. }
  424. return sock;
  425. }
  426. /* FIXME: REPLACE WITH SOCK_NAME() */
  427. void initialize_sockaddr(int af_type, const char *host, in_port_t port, union sockaddr_union *so)
  428. {
  429. bzero(so, sizeof(*so));
  430. so->sa.sa_family = af_type;
  431. if (af_type == AF_INET) {
  432. so->sin.sin_family = AF_INET;
  433. if (host) {
  434. inet_pton(AF_INET, host, &so->sin.sin_addr);
  435. so->sin.sin_port = htons(port);
  436. } else {
  437. so->sin.sin_addr.s_addr = getmyip();
  438. }
  439. #ifdef USE_IPV6
  440. } else {
  441. so->sin6.sin6_family = AF_INET6;
  442. if (host) {
  443. inet_pton(AF_INET6, host, &so->sin6.sin6_addr);
  444. so->sin6.sin6_port = htons(port);
  445. } else {
  446. memcpy(&so->sin6.sin6_addr, &cached_myip6_so.sin6.sin6_addr, 16);
  447. }
  448. #endif /* USE_IPV6 */
  449. }
  450. }
  451. /* Starts a connection attempt to a socket
  452. *
  453. * If given a normal hostname, this will be resolved to the corresponding
  454. * IP address first. PLEASE try to use the non-blocking dns functions
  455. * instead and then call this function with the IP address to avoid blocking.
  456. *
  457. * returns <0 if connection refused:
  458. * -1 strerror()/errno type error
  459. * -2 can't resolve hostname
  460. */
  461. int open_telnet_raw(int sock, const char *ipIn, in_port_t sport, bool proxy_on, int identd)
  462. {
  463. static in_port_t port = 0;
  464. union sockaddr_union so;
  465. char ip[121] = "";
  466. int is_resolved = 0;
  467. int proxy_type = 0, proxy = proxy_on;
  468. /* firewall? use socks */
  469. if (proxy) {
  470. switch (firewall[0]) {
  471. case '!':
  472. proxy_type = PROXY_SUN;
  473. strlcpy(ip, &firewall[1], sizeof(ip));
  474. break;
  475. case '@':
  476. proxy_type = PROXY_HTTP;
  477. strlcpy(ip, &firewall[1], sizeof(ip));
  478. break;
  479. default:
  480. proxy_type = PROXY_SOCKS;
  481. strlcpy(ip, firewall, sizeof(ip));
  482. break;
  483. }
  484. port = firewallport;
  485. } else {
  486. proxy_type = 0;
  487. strlcpy(ip, ipIn, sizeof(ip));
  488. port = sport;
  489. }
  490. socklen_t socklen;
  491. if (sport) {
  492. /* figure out which ip to bind to locally (v4 or v6) based on what the host ip is .. */
  493. if ((is_resolved = is_dotted_ip(ip))) { /* already resolved */
  494. /* bind to our cached ip for v4/v6 depending on what the ip is */
  495. initialize_sockaddr(is_resolved, NULL, 0, &so);
  496. if (bind(sock, &so.sa, SIZEOF_SOCKADDR(so)) < 0) {
  497. putlog(LOG_DEBUG, "*", "Failed to bind to socket %d: %s", sock, strerror(errno));
  498. killsock(sock);
  499. return -1;
  500. }
  501. /* initialize so for connect using the host/port */
  502. initialize_sockaddr(is_resolved, ip, port, &so);
  503. } else { /* if not resolved, resolve it with blocking calls.. (shouldn't happen ever) */
  504. sdprintf("WARNING: open_telnet_raw(%s,%d) was passed an unresolved hostname.", ip, port);
  505. killsock(sock);
  506. return -1;
  507. }
  508. socklen = SIZEOF_SOCKADDR(so);
  509. } else { // Unix domain socket
  510. so.sock_un.sun_family = AF_UNIX;
  511. strcpy(so.sock_un.sun_path, ip);
  512. socklen = SUN_LEN(&so.sock_un);
  513. }
  514. int i = -1;
  515. if ((i = findanysnum(sock)) != -1) {
  516. socklist[i].flags = (socklist[i].flags & ~SOCK_VIRTUAL) | SOCK_CONNECT;
  517. socklist[i].host = strdup(ipIn);
  518. socklist[i].port = port;
  519. }
  520. if (identd && sport) //Only open identd if not a unix domain socket
  521. identd_open(myipstr(is_resolved), ipIn, identd);
  522. int rc = -1;
  523. /* make the connect attempt */
  524. rc = connect(sock, (struct sockaddr *)&so.sa, socklen);
  525. if (rc < 0) {
  526. if (errno == EINPROGRESS) {
  527. debug3("net: connect(%d, %s, %d)", sock, ipIn, sport);
  528. /* Firewall? announce connect attempt to proxy */
  529. if (proxy)
  530. return proxy_connect(sock, ipIn, sport, proxy_type);
  531. return sock; /* async success! */
  532. } else {
  533. sdprintf("connect(%d, %s, %d) failed: %s", sock, ip, sport, strerror(errno));
  534. killsock(sock);
  535. return -1;
  536. }
  537. }
  538. /* Synchronous? :/ */
  539. debug3("net: (BLOCKING) connect(%d, %s, %d)", sock, ipIn, sport);
  540. if (proxy)
  541. return proxy_connect(sock, ipIn, sport, proxy_type);
  542. return sock;
  543. }
  544. #ifdef EGG_SSL_EXT
  545. int net_switch_to_ssl(int sock) {
  546. int i = 0;
  547. debug0("net_switch_to_ssl()");
  548. sleep(3); // Give some time to let the connect() go through.
  549. i = findanysnum(sock);
  550. if (i == MAXSOCKS) {
  551. debug0("Error while swithing to SSL - sock not found in list");
  552. return 0;
  553. }
  554. if (socklist[i].ssl) {
  555. debug0("Error while swithing to SSL - already in ssl");
  556. return 0;
  557. }
  558. socklist[i].ssl = SSL_new(ssl_ctx);
  559. if (!socklist[i].ssl) {
  560. debug0("Error while swithing to SSL - SSL_new() error");
  561. return 0;
  562. }
  563. SSL_set_fd(socklist[i].ssl, socklist[i].sock);
  564. int err = 0, timeout = 0;
  565. while ((err = SSL_connect(socklist[i].ssl)) <= 0) {
  566. if (timeout++ > 500) {
  567. err = 0;
  568. break;
  569. }
  570. int errs = SSL_get_error(socklist[i].ssl,err);
  571. if ((errs != SSL_ERROR_WANT_READ) && (errs != SSL_ERROR_WANT_WRITE) && (errs != SSL_ERROR_WANT_X509_LOOKUP)) {
  572. putlog(LOG_DEBUG, "*", "SSL_connect() = %d, %s", err, (char *)ERR_error_string(ERR_get_error(), NULL));
  573. goto error;
  574. }
  575. usleep(1000);
  576. }
  577. if (err == 1) {
  578. debug0("SSL_connect() success");
  579. return 1;
  580. }
  581. error:
  582. debug0("Error while SSL_connect()");
  583. SSL_shutdown(socklist[i].ssl);
  584. SSL_free(socklist[i].ssl);
  585. socklist[i].ssl = NULL;
  586. return 0;
  587. }
  588. #endif
  589. /* Ordinary non-binary connection attempt */
  590. int open_telnet(const char *ip, in_port_t port, bool proxy, int identd)
  591. {
  592. int sock = -1;
  593. #ifdef USE_IPV6
  594. sock = getsock(0, is_dotted_ip(ip));
  595. #else
  596. sock = getsock(0);
  597. #endif /* USE_IPV6 */
  598. if (sock >= 0)
  599. return open_telnet_raw(sock, ip, port, proxy, identd);
  600. return -1;
  601. }
  602. /* Returns a socket number for a listening socket that will accept any
  603. * connection on a certain address -- port # is returned in port
  604. *
  605. * 'addr' is ignored if af_def is AF_INET6 -poptix (02/03/03)
  606. */
  607. #ifdef USE_IPV6
  608. int open_address_listen(const char* ip, int af_def, in_port_t *port) {
  609. #else
  610. int open_address_listen(const char* ip, in_port_t *port) {
  611. int af_def = AF_INET;
  612. #endif /* USE_IPV6 */
  613. // if (firewall[0]) {
  614. // /* FIXME: can't do listen port thru firewall yet */
  615. // putlog(LOG_MISC, "*", "!! Cant open a listen port (you are using a firewall)");
  616. // return -1;
  617. // }
  618. int sock = 0;
  619. socklen_t addrlen;
  620. union sockaddr_union name;
  621. #ifdef USE_IPV6
  622. if (af_def == AF_INET6) {
  623. struct sockaddr_in6 name6;
  624. sock = getsock(SOCK_LISTEN, af_def);
  625. if (sock < 0)
  626. return -1;
  627. debug2("Opening listen socket on port %d with AF_INET6, sock: %d", *port, sock);
  628. bzero((char *) &name6, sizeof(name6));
  629. name6.sin6_family = af_def;
  630. name6.sin6_port = htons(*port); /* 0 = just assign us a port */
  631. /* memcpy(&name6.sin6_addr, &in6addr_any, 16); */ /* this is the only way to get ipv6+ipv4 in 1 socket */
  632. memcpy(&name6.sin6_addr, &cached_myip6_so.sin6.sin6_addr, 16);
  633. if (bind(sock, (struct sockaddr *) &name6, sizeof(name6)) < 0) {
  634. if (!(identd_hack && *port == 113))
  635. putlog(LOG_DEBUG, "*", "Failed to bind to socket %d for listen on port %d: %s", sock, *port, strerror(errno));
  636. killsock(sock);
  637. return -1;
  638. }
  639. addrlen = sizeof(name6);
  640. if (getsockname(sock, (struct sockaddr *) &name6, &addrlen) < 0) {
  641. if (!(identd_hack && *port == 113))
  642. putlog(LOG_DEBUG, "*", "Failed to getsockname on socket %d for listen on port %d: %s", sock, *port, strerror(errno));
  643. killsock(sock);
  644. return -1;
  645. }
  646. *port = ntohs(name6.sin6_port);
  647. if (listen(sock, 1) < 0) {
  648. if (!(identd_hack && *port == 113))
  649. putlog(LOG_DEBUG, "*", "Failed to listen on socket %d for listen on port %d: %s", sock, *port, strerror(errno));
  650. killsock(sock);
  651. return -1;
  652. }
  653. } else {
  654. sock = getsock(SOCK_LISTEN, af_def);
  655. #else
  656. sock = getsock(SOCK_LISTEN);
  657. #endif /* USE_IPV6 */
  658. if (sock < 0)
  659. return -1;
  660. if (af_def == AF_UNIX)
  661. debug2("Opening listen socket on %s, sock: %d", ip, sock);
  662. else
  663. debug3("Opening listen socket on %s:%d with AF_INET, sock: %d", ip, *port, sock);
  664. bzero((char *) &name, sizeof(struct sockaddr *));
  665. if (af_def == AF_UNIX) {
  666. name.sock_un.sun_family = AF_UNIX;
  667. strcpy(name.sock_un.sun_path, ip);
  668. unlink(name.sock_un.sun_path);
  669. addrlen = SUN_LEN(&name.sock_un);
  670. } else {
  671. name.sin.sin_family = af_def;
  672. name.sin.sin_port = htons(*port); /* 0 = just assign us a port */
  673. name.sin.sin_addr.s_addr = inet_addr(ip);
  674. addrlen = sizeof(struct sockaddr_in);
  675. }
  676. if (bind(sock, (struct sockaddr *) &name, addrlen) < 0) {
  677. if (!(identd_hack && *port == 113)) {
  678. if (af_def == AF_UNIX)
  679. putlog(LOG_DEBUG, "*", "Failed to bind to socket %d for listen on %s: %s", sock, ip, strerror(errno));
  680. else
  681. putlog(LOG_DEBUG, "*", "Failed to bind to socket %d for listen on %s:%d: %s", sock, ip, *port, strerror(errno));
  682. }
  683. killsock(sock);
  684. return -1;
  685. }
  686. if (af_def != AF_UNIX) {
  687. /* what port are we on? */
  688. if (getsockname(sock, (struct sockaddr *) &name, &addrlen) < 0) {
  689. if (!(identd_hack && *port == 113))
  690. putlog(LOG_DEBUG, "*", "Failed to getsockname on socket %d for listen on port %d: %s", sock, *port, strerror(errno));
  691. killsock(sock);
  692. return -1;
  693. }
  694. *port = ntohs(name.sin.sin_port);
  695. }
  696. if (listen(sock, 1) < 0) {
  697. if (!(identd_hack && *port == 113) && af_def != AF_UNIX)
  698. putlog(LOG_DEBUG, "*", "Failed to listen on socket %d for on port %d: %s", sock, *port, strerror(errno));
  699. killsock(sock);
  700. return -1;
  701. }
  702. #ifdef USE_IPV6
  703. }
  704. #endif /* USE_IPV6 */
  705. if (af_def == AF_UNIX)
  706. debug2("Opened listen socket on %s, sock: %d", ip, sock);
  707. else
  708. debug3("Opened listen socket on %s:%d with AF_INET, sock: %d", ip, *port, sock);
  709. return sock;
  710. }
  711. /* Returns a socket number for a listening socket that will accept any
  712. * connection -- port # is returned in port
  713. */
  714. int open_listen(in_port_t *port)
  715. {
  716. #ifdef USE_IPV6
  717. return open_address_listen(iptostr(getmyip()), AF_INET, port);
  718. #else
  719. return open_address_listen(iptostr(getmyip()), port);
  720. #endif /* USE_IPV6 */
  721. }
  722. /* Same as above, except this one can be called with an AF_ type
  723. * the above is being left in for compatibility, and should NOT LONGER BE USED IN THE CORE CODE.
  724. */
  725. int open_listen_by_af(in_port_t *port, int af_def)
  726. {
  727. #ifdef USE_IPV6
  728. return open_address_listen(iptostr(getmyip()), af_def, port);
  729. #else
  730. return -1;
  731. #endif /* USE_IPV6 */
  732. }
  733. int open_listen_addr_by_af(const char *ip, in_port_t *port, int af_def)
  734. {
  735. if (!ip)
  736. ip = iptostr(getmyip());
  737. #ifdef USE_IPV6
  738. return open_address_listen(ip, af_def, port);
  739. #else
  740. return -1;
  741. #endif /* USE_IPV6 */
  742. }
  743. /* Returns the given network byte order IP address in the
  744. * dotted format - "##.##.##.##"
  745. */
  746. char *iptostr(in_addr_t ip)
  747. {
  748. static char ipbuf[32];
  749. struct in_addr a;
  750. a.s_addr = ip;
  751. return (char *) inet_ntop(AF_INET, &a, ipbuf, sizeof(ipbuf));
  752. }
  753. /* Short routine to answer a connect received on a socket made previously
  754. * by open_listen ... returns hostname of the caller & the new socket
  755. * does NOT dispose of old "public" socket!
  756. */
  757. int answer(int sock, char *caller, in_addr_t *ip, in_port_t *port, int binary)
  758. {
  759. int new_sock;
  760. socklen_t addrlen;
  761. struct sockaddr_in from;
  762. int af_ty = sockprotocol(sock);
  763. #ifdef USE_IPV6
  764. struct sockaddr_in6 from6;
  765. bzero(&from6, sizeof(struct sockaddr_in6));
  766. if (af_ty == AF_INET6) {
  767. addrlen = sizeof(from6);
  768. new_sock = accept(sock, (struct sockaddr *) &from6, &addrlen);
  769. } else {
  770. #endif /* USE_IPV6 */
  771. addrlen = sizeof(struct sockaddr);
  772. new_sock = accept(sock, (struct sockaddr *) &from, &addrlen);
  773. #ifdef USE_IPV6
  774. }
  775. #endif /* USE_IPV6 */
  776. if (new_sock < 0)
  777. return -1;
  778. if (ip != NULL) {
  779. #ifdef USE_IPV6
  780. /* Detect IPv4 in IPv6 mapped address .... */
  781. if (af_ty == AF_INET6 && (!IN6_IS_ADDR_V4MAPPED(&from6.sin6_addr))) {
  782. inet_ntop(AF_INET6, &from6.sin6_addr, caller, 119);
  783. caller[120] = 0;
  784. *ip = 0L;
  785. } else if (IN6_IS_ADDR_V4MAPPED(&from6.sin6_addr)) { /* ...and convert it to plain (AF_INET) IPv4 address (openssh) */
  786. struct sockaddr_in *from4 = (struct sockaddr_in *)&from6;
  787. struct in_addr addr;
  788. memcpy(&addr, ((char *)&from6.sin6_addr) + 12, sizeof(addr));
  789. memset(&from, 0, sizeof(from));
  790. from4->sin_family = AF_INET;
  791. addrlen = sizeof(*from4);
  792. memcpy(&from4->sin_addr, &addr, sizeof(addr));
  793. *ip = from4->sin_addr.s_addr;
  794. strlcpy(caller, iptostr(*ip), 121);
  795. *ip = ntohl(*ip);
  796. } else {
  797. #endif /* USE_IPV6 */
  798. if (af_ty == AF_UNIX) {
  799. struct sockaddr_un sock_un;
  800. socklen_t socklen = sizeof(sock_un);
  801. bzero(&sock_un, socklen);
  802. getsockname(sock, (struct sockaddr*) &sock_un, &socklen);
  803. strcpy(caller, sock_un.sun_path);
  804. *port = 0;
  805. } else {
  806. *ip = from.sin_addr.s_addr;
  807. strlcpy(caller, iptostr(*ip), 121);
  808. *ip = ntohl(*ip);
  809. }
  810. #ifdef USE_IPV6
  811. }
  812. #endif /* USE_IPV6 */
  813. }
  814. if (port != NULL) {
  815. #ifdef USE_IPV6
  816. if (af_ty == AF_INET6)
  817. *port = ntohs(from6.sin6_port);
  818. else if (af_ty == AF_INET)
  819. #endif /* USE_IPV6 */
  820. *port = ntohs(from.sin_port);
  821. }
  822. /* Set up all the normal socket crap */
  823. setsock(new_sock, (binary ? SOCK_BINARY : 0));
  824. sdprintf("Answered socket %d: %s", new_sock, caller);
  825. return new_sock;
  826. }
  827. /* Like open_telnet, but uses ip & port specifications of dcc
  828. Take a longip and make into dotted form
  829. */
  830. int open_telnet_dcc(int sock, char *ip, char *port)
  831. {
  832. in_port_t p;
  833. unsigned long addr;
  834. char sv[100] = "";
  835. unsigned char c[4] = "";
  836. #ifdef DEBUG_IPV6
  837. debug1("open_telnet_dcc %s", ip);
  838. #endif /* DEBUG_IPV6 */
  839. if (port != NULL)
  840. p = atoi(port);
  841. else
  842. p = 2000;
  843. #ifdef USE_IPV6
  844. if (sockprotocol(sock) == AF_INET6) {
  845. # ifdef DEBUG_IPV6
  846. debug0("open_telnet_dcc, af_inet6!");
  847. # endif /* DEBUG_IPV6 */
  848. strlcpy(sv, ip, sizeof(sv));
  849. } else {
  850. #endif /* USE_IPV6 */
  851. if (ip != NULL)
  852. addr = my_atoul(ip);
  853. else
  854. addr = 0L;
  855. if (addr < (1 << 24))
  856. return -3; /* fake address */
  857. c[0] = (addr >> 24) & 0xff;
  858. c[1] = (addr >> 16) & 0xff;
  859. c[2] = (addr >> 8) & 0xff;
  860. c[3] = addr & 0xff;
  861. simple_snprintf(sv, sizeof(sv), "%u.%u.%u.%u", c[0], c[1], c[2], c[3]);
  862. #ifdef USE_IPV6
  863. }
  864. /* strcpy(sv,hostnamefromip(addr)); */
  865. # ifdef DEBUG_IPV6
  866. debug3("open_telnet_raw %s %d %d", sv, sock, p);
  867. # endif /* DEBUG_IPV6 */
  868. #endif /* USE_IPV6 */
  869. return open_telnet_raw(sock, sv, p, 0);
  870. }
  871. /* Attempts to read from all the sockets in socklist
  872. * fills s with up to 511 bytes if available, and returns the array index
  873. *
  874. * on EOF: returns -1, with socket in len
  875. * on socket error: returns -2
  876. * if nothing is ready: returns -3
  877. */
  878. static int sockread(char *s, int *len)
  879. {
  880. fd_set fd;
  881. int fds = 0, i, fdtmp, x;
  882. struct timeval t;
  883. int grab = SGRAB + 1;
  884. egg_timeval_t howlong;
  885. if (unlikely(timer_get_shortest(&howlong))) {
  886. /* No timer, default to 1 second. */
  887. t.tv_sec = 1;
  888. t.tv_usec = 0;
  889. }
  890. else {
  891. t.tv_sec = howlong.sec;
  892. t.tv_usec = howlong.usec;
  893. }
  894. FD_ZERO(&fd);
  895. for (i = 0; i < MAXSOCKS; i++) {
  896. if (!(socklist[i].flags & (SOCK_UNUSED | SOCK_VIRTUAL))) {
  897. if (unlikely((socklist[i].sock == STDOUT) && !backgrd))
  898. fdtmp = STDIN;
  899. else
  900. fdtmp = socklist[i].sock;
  901. if (fdtmp > fds)
  902. fds = fdtmp;
  903. FD_SET(fdtmp, &fd);
  904. }
  905. }
  906. fds++;
  907. x = select(fds, &fd, NULL, NULL, &t);
  908. if (x > 0) {
  909. /* Something happened */
  910. for (i = 0; i < MAXSOCKS; i++) {
  911. if ((!(socklist[i].flags & SOCK_UNUSED)) && ((FD_ISSET(socklist[i].sock, &fd)) ||
  912. #ifdef EGG_SSL_EXT
  913. ((socklist[i].ssl) && (SSL_pending(socklist[i].ssl))) ||
  914. #endif
  915. ((socklist[i].sock == STDOUT) && (!backgrd) && (FD_ISSET(STDIN, &fd))))) {
  916. if (socklist[i].flags & (SOCK_LISTEN | SOCK_CONNECT)) {
  917. /* Listening socket -- don't read, just return activity */
  918. /* Same for connection attempt */
  919. /* (for strong connections, require a read to succeed first) */
  920. if (socklist[i].flags & SOCK_PROXYWAIT) { /* drummer */
  921. /* Hang around to get the return code from proxy */
  922. grab = 10;
  923. } else if (!(socklist[i].flags & SOCK_STRONGCONN)) {
  924. debug1("net: connect! sock %d", socklist[i].sock);
  925. s[0] = 0;
  926. *len = 0;
  927. return i;
  928. }
  929. } else if (socklist[i].flags & SOCK_PASS) {
  930. s[0] = 0;
  931. *len = 0;
  932. return i;
  933. }
  934. errno = 0;
  935. if (unlikely((socklist[i].sock == STDOUT) && !backgrd)) {
  936. x = read(STDIN, s, grab);
  937. #ifdef EGG_SSL_EXT
  938. } else if (socklist[i].ssl) {
  939. x = SSL_read(socklist[i].ssl,s,grab);
  940. if (x <= 0) {
  941. int err = SSL_get_error(socklist[i].ssl, x);
  942. x = -1;
  943. switch (err) {
  944. case SSL_ERROR_WANT_READ:
  945. case SSL_ERROR_WANT_WRITE:
  946. case SSL_ERROR_WANT_X509_LOOKUP:
  947. errno = EAGAIN;
  948. break;
  949. case SSL_ERROR_SYSCALL:
  950. switch (ERR_get_error()) {
  951. case 0:
  952. // EOF
  953. break;
  954. default:
  955. putlog(LOG_DEBUG, "*", "SSL_read() unknown error: %s", strerror(errno));
  956. break;
  957. }
  958. break;
  959. case SSL_ERROR_SSL:
  960. putlog(LOG_DEBUG, "*", "SSL_read() = %d, %s", err, (char *)ERR_error_string(ERR_get_error(), NULL));
  961. break;
  962. }
  963. }
  964. #endif
  965. } else
  966. x = read(socklist[i].sock, s, grab);
  967. if (x <= 0) { /* eof */
  968. if (errno != EAGAIN) { /* EAGAIN happens when the operation would block
  969. on a non-blocking socket, if the socket is going
  970. to die, it will die later, otherwise it will connect */
  971. *len = socklist[i].sock;
  972. socklist[i].flags &= ~SOCK_CONNECT;
  973. debug1("net: eof!(read) socket %d", socklist[i].sock);
  974. return -1;
  975. } else {
  976. debug3("sockread EAGAIN: %d %d (%s)", socklist[i].sock, errno, strerror(errno));
  977. continue; /* EAGAIN */
  978. }
  979. }
  980. s[x] = 0;
  981. *len = x;
  982. if (socklist[i].flags & SOCK_PROXYWAIT) {
  983. debug2("net: socket: %d proxy errno: %d", socklist[i].sock, s[1]);
  984. socklist[i].flags &= ~(SOCK_CONNECT | SOCK_PROXYWAIT);
  985. switch (s[1]) {
  986. case 90: /* Success */
  987. s[0] = 0;
  988. *len = 0;
  989. return i;
  990. case 91: /* Failed */
  991. errno = ECONNREFUSED;
  992. break;
  993. case 92: /* No identd */
  994. case 93: /* Identd said wrong username */
  995. /* A better error message would be "socks misconfigured"
  996. * or "identd not working" but this is simplest.
  997. */
  998. errno = ENETUNREACH;
  999. break;
  1000. }
  1001. *len = socklist[i].sock;
  1002. return -1;
  1003. }
  1004. return i;
  1005. }
  1006. }
  1007. } else if (x == -1)
  1008. return -2; /* socket error */
  1009. else {
  1010. s[0] = 0;
  1011. *len = 0;
  1012. }
  1013. return -3;
  1014. }
  1015. /* sockgets: buffer and read from sockets
  1016. *
  1017. * Attempts to read from all registered sockets for up to one second. if
  1018. * after one second, no complete data has been received from any of the
  1019. * sockets, 's' will be empty, 'len' will be 0, and sockgets will return -3.
  1020. * if there is returnable data received from a socket, the data will be
  1021. * in 's' (null-terminated if non-binary), the length will be returned
  1022. * in len, and the socket number will be returned.
  1023. * normal sockets have their input buffered, and each call to sockgets
  1024. * will return one line terminated with a '\n'. binary sockets are not
  1025. * buffered and return whatever coems in as soon as it arrives.
  1026. * listening sockets will return an empty string when a connection comes in.
  1027. * connecting sockets will return an empty string on a successful connect,
  1028. * or EOF on a failed connect.
  1029. * if an EOF is detected from any of the sockets, that socket number will be
  1030. * put in len, and -1 will be returned.
  1031. * the maximum length of the string returned is 512 (including null)
  1032. *
  1033. * Returns -4 if we handled something that shouldn't be handled by the
  1034. * dcc functions. Simply ignore it.
  1035. */
  1036. int sockgets(char *s, int *len)
  1037. {
  1038. char xx[SGRAB + 4] = "", *p = NULL;
  1039. int ret;
  1040. size_t newline_index = size_t(-1);
  1041. bool was_crlf = 0;
  1042. for (int i = 0; i < MAXSOCKS; i++) {
  1043. /* Check for stored-up data waiting to be processed */
  1044. if (!(socklist[i].flags & SOCK_UNUSED) && !(socklist[i].flags & SOCK_BUFFER) && (socklist[i].inbuf != NULL)) {
  1045. if (!(socklist[i].flags & SOCK_BINARY)) {
  1046. /* Find EOL */
  1047. newline_index = socklist[i].inbuf->find('\n');
  1048. if (newline_index != size_t(-1) && newline_index != 0 && socklist[i].inbuf->charAt(newline_index - 1) == '\r') {
  1049. --newline_index;
  1050. was_crlf = 1;
  1051. }
  1052. if (newline_index != size_t(-1)) {
  1053. // Split off a line
  1054. bd::String line(socklist[i].inbuf->substring(0, newline_index));
  1055. strlcpy(s, line.c_str(), SGRAB + 1);
  1056. *(socklist[i].inbuf) += newline_index + 1;
  1057. if (was_crlf)
  1058. *(socklist[i].inbuf) += static_cast<size_t>(1);
  1059. if (s[0] && socklist[i].encstatus)
  1060. link_read(i, s);
  1061. *len = strlen(s);
  1062. return socklist[i].sock;
  1063. }
  1064. } else {
  1065. if (!socklist[i].inbuf)
  1066. socklist[i].inbuf = new bd::String();
  1067. /* i dont think any of this is *ever* called */
  1068. /* Handling buffered binary data (must have been SOCK_BUFFER before). */
  1069. if (socklist[i].inbuf->length() <= SGRAB) {
  1070. *len = socklist[i].inbuf->length();
  1071. memcpy(s, socklist[i].inbuf->data(), socklist[i].inbuf->length());
  1072. delete socklist[i].inbuf;
  1073. socklist[i].inbuf = NULL;
  1074. } else {
  1075. /* Split up into chunks of SGRAB bytes. */
  1076. *len = SGRAB;
  1077. memcpy(s, socklist[i].inbuf->data(), *len);
  1078. *(socklist[i].inbuf) += static_cast<size_t>(*len);
  1079. }
  1080. return socklist[i].sock;
  1081. }
  1082. }
  1083. /* Also check any sockets that might have EOF'd during write */
  1084. if (!(socklist[i].flags & SOCK_UNUSED)
  1085. && (socklist[i].flags & SOCK_EOFD)) {
  1086. s[0] = 0;
  1087. *len = socklist[i].sock;
  1088. return -1;
  1089. }
  1090. }
  1091. /* No pent-up data of any worth -- down to business */
  1092. *len = 0;
  1093. ret = sockread(xx, len);
  1094. if (ret < 0) {
  1095. s[0] = 0;
  1096. return ret;
  1097. }
  1098. /* Binary, listening and passed on sockets don't get buffered. */
  1099. if (socklist[ret].flags & SOCK_CONNECT) {
  1100. if (socklist[ret].flags & SOCK_STRONGCONN) {
  1101. socklist[ret].flags &= ~SOCK_STRONGCONN;
  1102. /* Buffer any data that came in, for future read. */
  1103. socklist[ret].inbuf = new bd::String(xx, *len);
  1104. }
  1105. socklist[ret].flags &= ~SOCK_CONNECT;
  1106. s[0] = 0;
  1107. return socklist[ret].sock;
  1108. }
  1109. if (socklist[ret].flags & SOCK_BINARY) {
  1110. memcpy(s, xx, *len);
  1111. return socklist[ret].sock;
  1112. }
  1113. if ((socklist[ret].flags & SOCK_LISTEN) || (socklist[ret].flags & SOCK_PASS))
  1114. return socklist[ret].sock;
  1115. if (socklist[ret].flags & SOCK_BUFFER) {
  1116. if (!socklist[ret].inbuf)
  1117. socklist[ret].inbuf = new bd::String(xx, *len);
  1118. else
  1119. *(socklist[ret].inbuf) += bd::String(xx, *len);
  1120. return -4; /* Ignore this one. */
  1121. }
  1122. /* Might be necessary to prepend stored-up data! */
  1123. if (socklist[ret].inbuf != NULL) {
  1124. *(socklist[ret].inbuf) += bd::String(xx);
  1125. if (socklist[ret].inbuf->length() < (SGRAB + 2)) {
  1126. strlcpy(xx, socklist[ret].inbuf->c_str(), sizeof(xx));
  1127. delete socklist[ret].inbuf;
  1128. socklist[ret].inbuf = NULL;
  1129. } else {
  1130. // Take out an SGRAB sized chunk and advance the buffer
  1131. strlcpy(xx, socklist[ret].inbuf->c_str(), SGRAB + 1);
  1132. *(socklist[ret].inbuf) += static_cast<size_t>(SGRAB);
  1133. /* (leave the rest to be post-pended later) */
  1134. }
  1135. }
  1136. bool data = 0;
  1137. /* Look for EOL marker; if it's there, i have something to show */
  1138. p = strchr(xx, '\n');
  1139. if (p == NULL)
  1140. p = strchr(xx, '\r');
  1141. if (p != NULL) {
  1142. *p = 0;
  1143. strlcpy(s, xx, SGRAB + 10); //buf@main.c
  1144. memmove(xx, p + 1, strlen(p + 1) + 1);
  1145. /* if (s[0] && strlen(s) && (s[strlen(s) - 1] == '\r')) */
  1146. if (strlen(s) && s[strlen(s) - 1] == '\r')
  1147. s[strlen(s) - 1] = 0;
  1148. data = 1; /* DCC_CHAT may now need to process a blank line */
  1149. /* NO! */
  1150. /* if (!s[0]) strcpy(s," "); */
  1151. } else {
  1152. s[0] = 0;
  1153. if (strlen(xx) >= SGRAB) {
  1154. /* String is too long, so just insert fake \n */
  1155. strlcpy(s, xx, SGRAB + 10); //buf@main.c
  1156. xx[0] = 0;
  1157. data = 1;
  1158. }
  1159. }
  1160. if (s[0] && socklist[ret].encstatus)
  1161. link_read(ret, s);
  1162. *len = strlen(s);
  1163. /* Anything left that needs to be saved? */
  1164. if (!xx[0]) {
  1165. if (data)
  1166. return socklist[ret].sock;
  1167. else
  1168. return -3;
  1169. }
  1170. /* Prepend old data back */
  1171. if (socklist[ret].inbuf != NULL) {
  1172. socklist[ret].inbuf->insert(0, xx);
  1173. } else {
  1174. socklist[ret].inbuf = new bd::String(xx);
  1175. }
  1176. if (data) {
  1177. return socklist[ret].sock;
  1178. } else {
  1179. return -3;
  1180. }
  1181. }
  1182. /* Dump something to a socket
  1183. *
  1184. * NOTE: Do NOT put Contexts in here if you want DEBUG to be meaningful!!
  1185. */
  1186. void tputs(int z, const char *s, size_t len)
  1187. {
  1188. if (z < 0) /* um... HELLO?! sanity check please! */
  1189. return;
  1190. if (((z == STDOUT) || (z == STDERR)) && (!backgrd || use_stderr)) {
  1191. if (write(z, s, len) == -1) {
  1192. ;
  1193. }
  1194. return;
  1195. }
  1196. int x, idx;
  1197. int i = -1;
  1198. if ((i = findanysnum(z)) != -1) {
  1199. if ((idx = findanyidx(z)) != -1 && dcc[idx].type->name) {
  1200. if (!strncmp(dcc[idx].type->name, "BOT", 3))
  1201. traffic.out_today.bn += len;
  1202. else if (!strcmp(dcc[idx].type->name, "SERVER"))
  1203. traffic.out_today.irc += len;
  1204. else if (!strncmp(dcc[idx].type->name, "CHAT", 4))
  1205. traffic.out_today.dcc += len;
  1206. else if (!strncmp(dcc[idx].type->name, "FILES", 5))
  1207. traffic.out_today.filesys += len;
  1208. else if (!strcmp(dcc[idx].type->name, "SEND"))
  1209. traffic.out_today.trans += len;
  1210. else if (!strncmp(dcc[idx].type->name, "GET", 3))
  1211. traffic.out_today.trans += len;
  1212. else
  1213. traffic.out_today.unknown += len;
  1214. }
  1215. if (len && socklist[i].encstatus)
  1216. s = link_write(i, s, &len);
  1217. #ifdef HAVE_ZLIB_H
  1218. /*
  1219. if (socklist[i].gz) {
  1220. FILE *fp;
  1221. fp = gzdopen(z, "wb0");
  1222. x = gzwrite(fp, s, len);
  1223. } else
  1224. */
  1225. #endif /* HAVE_ZLIB_H */
  1226. if (socklist[i].outbuf != NULL) {
  1227. /* Already queueing: just add it */
  1228. *(socklist[i].outbuf) += bd::String(s, len);
  1229. return;
  1230. }
  1231. #ifdef EGG_SSL_EXT
  1232. if (socklist[i].ssl) {
  1233. x = SSL_write(socklist[i].ssl,s,len);
  1234. if (x <= 0) {
  1235. int err = SSL_get_error(socklist[i].ssl, x);
  1236. x = -1;
  1237. switch (err) {
  1238. case SSL_ERROR_WANT_READ:
  1239. case SSL_ERROR_WANT_WRITE:
  1240. case SSL_ERROR_WANT_X509_LOOKUP:
  1241. errno = EAGAIN;
  1242. break;
  1243. case SSL_ERROR_SYSCALL:
  1244. switch (ERR_get_error()) {
  1245. case 0:
  1246. // EOF
  1247. break;
  1248. default:
  1249. putlog(LOG_DEBUG, "*", "SSL_write() unknown error: %s", strerror(errno));
  1250. break;
  1251. }
  1252. break;
  1253. case SSL_ERROR_SSL:
  1254. putlog(LOG_DEBUG, "*", "SSL_write() = %d, %s", err, (char *)ERR_error_string(ERR_get_error(), NULL));
  1255. break;
  1256. }
  1257. }
  1258. } else
  1259. #endif
  1260. /* Try. */
  1261. x = write(z, s, len);
  1262. if (x == -1)
  1263. x = 0;
  1264. if ((size_t) x < len) {
  1265. /* Socket is full, queue it */
  1266. socklist[i].outbuf = new bd::String(&s[x], len - x);
  1267. }
  1268. // if (socklist[i].encstatus && s)
  1269. // free(s);
  1270. return;
  1271. }
  1272. /* Make sure we don't cause a crash by looping here */
  1273. static int inhere = 0;
  1274. if (unlikely(!inhere)) {
  1275. inhere = 1;
  1276. putlog(LOG_MISC, "*", "!!! writing to nonexistent socket: %d", z);
  1277. if (strlen(s)) {
  1278. char *tmp = strdup(s); /* To null-terminate */
  1279. putlog(LOG_MISC, "*", "!-> '%s'", tmp);
  1280. free(tmp);
  1281. }
  1282. inhere = 0;
  1283. }
  1284. /* if (socklist[i].encstatus > 0)
  1285. free(s);
  1286. */
  1287. }
  1288. int findanysnum(int sock)
  1289. {
  1290. int i = 0;
  1291. if (sock != -1)
  1292. for (i = 0; i < MAXSOCKS; i++)
  1293. if ((socklist[i].sock == sock) && !(socklist[i].flags & SOCK_UNUSED))
  1294. return i;
  1295. return -1;
  1296. }
  1297. int findanyidx(int sock)
  1298. {
  1299. if (sock != -1)
  1300. for (int idx = 0; idx < dcc_total; ++idx)
  1301. if (dcc[idx].type && dcc[idx].sock == sock)
  1302. return idx;
  1303. return -1;
  1304. }
  1305. /* tputs might queue data for sockets, let's dump as much of it as
  1306. * possible.
  1307. */
  1308. void dequeue_sockets()
  1309. {
  1310. int i, x, z = 0, fds = 0;
  1311. fd_set wfds;
  1312. struct timeval tv;
  1313. /* ^-- start poptix test code, this should avoid writes to sockets not ready to be written to. */
  1314. FD_ZERO(&wfds);
  1315. tv.tv_sec = 0;
  1316. tv.tv_usec = 0; /* we only want to see if it's ready for writing, no need to actually wait.. */
  1317. for (i = 0; i < MAXSOCKS; i++) {
  1318. if (!(socklist[i].flags & SOCK_UNUSED) && socklist[i].outbuf != NULL) {
  1319. FD_SET(socklist[i].sock, &wfds);
  1320. if (socklist[i].sock > fds)
  1321. fds = socklist[i].sock;
  1322. z = 1;
  1323. }
  1324. }
  1325. if (!z)
  1326. return; /* nothing to write */
  1327. fds++;
  1328. select(fds, NULL, &wfds, NULL, &tv);
  1329. /* end poptix */
  1330. for (i = 0; i < MAXSOCKS; i++) {
  1331. if (!(socklist[i].flags & SOCK_UNUSED) &&
  1332. (socklist[i].outbuf != NULL) && (FD_ISSET(socklist[i].sock, &wfds))) {
  1333. /* Trick tputs into doing the work */
  1334. errno = 0;
  1335. #ifdef EGG_SSL_EXT
  1336. if (socklist[i].ssl) {
  1337. x = SSL_write(socklist[i].ssl, socklist[i].outbuf->data(), socklist[i].outbuf->length());
  1338. if (x <= 0) {
  1339. int err = SSL_get_error(socklist[i].ssl, x);
  1340. x = -1;
  1341. switch (err) {
  1342. case SSL_ERROR_WANT_READ:
  1343. case SSL_ERROR_WANT_WRITE:
  1344. case SSL_ERROR_WANT_X509_LOOKUP:
  1345. errno = EAGAIN;
  1346. break;
  1347. case SSL_ERROR_SYSCALL:
  1348. switch (ERR_get_error()) {
  1349. case 0:
  1350. // EOF
  1351. break;
  1352. default:
  1353. putlog(LOG_DEBUG, "*", "SSL_write() unknown error: %s", strerror(errno));
  1354. break;
  1355. }
  1356. break;
  1357. case SSL_ERROR_SSL:
  1358. putlog(LOG_DEBUG, "*", "SSL_write()/dequeue_sockets() = %d, %s", err, (char *)ERR_error_string(ERR_get_error(), NULL));
  1359. break;
  1360. }
  1361. }
  1362. } else
  1363. #endif
  1364. x = write(socklist[i].sock, socklist[i].outbuf->data(), socklist[i].outbuf->length());
  1365. if ((x < 0) && (errno != EAGAIN)
  1366. #ifdef EBADSLT
  1367. && (errno != EBADSLT)
  1368. #endif /* EBADSLT */
  1369. #ifdef ENOTCONN
  1370. && (errno != ENOTCONN)
  1371. #endif /* EBADSLT */
  1372. ) {
  1373. /* This detects an EOF during writing */
  1374. debug3("net: eof!(write) socket %d (%s,%d)", socklist[i].sock, strerror(errno), errno);
  1375. socklist[i].flags |= SOCK_EOFD;
  1376. } else if ((size_t) x == socklist[i].outbuf->length()) {
  1377. /* If the whole buffer was sent, nuke it */
  1378. delete socklist[i].outbuf;
  1379. socklist[i].outbuf = NULL;
  1380. } else if (x > 0) {
  1381. *(socklist[i].outbuf) += static_cast<size_t>(x);
  1382. } else {
  1383. debug3("dequeue_sockets(): errno = %d (%s) on %d", errno, strerror(errno), socklist[i].sock);
  1384. }
  1385. /* All queued data was sent. Call handler if one exists and the
  1386. * dcc entry wants it.
  1387. */
  1388. if (!socklist[i].outbuf) {
  1389. int idx = findanyidx(socklist[i].sock);
  1390. if (idx >= 0 && dcc[idx].type && dcc[idx].type->outdone)
  1391. dcc[idx].type->outdone(idx);
  1392. }
  1393. }
  1394. }
  1395. }
  1396. /*
  1397. * Debugging stuff
  1398. */
  1399. void tell_netdebug(int idx)
  1400. {
  1401. char s[80] = "";
  1402. dprintf(idx, "Open sockets:");
  1403. for (int i = 0; i < MAXSOCKS; i++) {
  1404. if (!(socklist[i].flags & SOCK_UNUSED)) {
  1405. simple_snprintf(s, sizeof(s), " %d", socklist[i].sock);
  1406. if (socklist[i].flags & SOCK_BINARY)
  1407. strlcat(s, " (binary)", sizeof(s));
  1408. if (socklist[i].flags & SOCK_LISTEN)
  1409. strlcat(s, " (listen)", sizeof(s));
  1410. if (socklist[i].flags & SOCK_PASS)
  1411. strlcat(s, " (passed on)", sizeof(s));
  1412. if (socklist[i].flags & SOCK_CONNECT)
  1413. strlcat(s, " (connecting)", sizeof(s));
  1414. if (socklist[i].flags & SOCK_STRONGCONN)
  1415. strlcat(s, " (strong)", sizeof(s));
  1416. if (socklist[i].flags & SOCK_NONSOCK)
  1417. strlcat(s, " (file)", sizeof(s));
  1418. if (socklist[i].inbuf != NULL)
  1419. simple_sprintf(&s[strlen(s)], " (inbuf: %zu)", socklist[i].inbuf ? socklist[i].inbuf->length() : 0);
  1420. if (socklist[i].outbuf != NULL)
  1421. simple_sprintf(&s[strlen(s)], " (outbuf: %zu)", socklist[i].outbuf ? socklist[i].outbuf->length() : 0);
  1422. if (socklist[i].host)
  1423. simple_sprintf(&s[strlen(s)], " (%s:%d)", socklist[i].host, socklist[i].port);
  1424. strlcat(s, ",", sizeof(s));
  1425. dprintf(idx, "%s", s);
  1426. }
  1427. }
  1428. dprintf(idx, " done.\n");
  1429. }
  1430. /* Checks wether the referenced socket has data queued.
  1431. *
  1432. * Returns true if the incoming/outgoing (depending on 'type') queues
  1433. * contain data, otherwise false.
  1434. */
  1435. bool sock_has_data(int type, int sock)
  1436. {
  1437. bool ret = 0;
  1438. int i = -1;
  1439. if ((i = findanysnum(sock)) != -1) {
  1440. switch (type) {
  1441. case SOCK_DATA_OUTGOING:
  1442. ret = (socklist[i].outbuf != NULL);
  1443. break;
  1444. case SOCK_DATA_INCOMING:
  1445. ret = (socklist[i].inbuf != NULL);
  1446. break;
  1447. }
  1448. } else
  1449. debug1("sock_has_data: could not find socket #%d, returning false.", sock);
  1450. return ret;
  1451. }
  1452. bool socket_run() {
  1453. static int socket_cleanup = 0;
  1454. char buf[SGRAB + 10] = "";
  1455. int i = 0, idx = 0;
  1456. /* Only do this every so often. */
  1457. if (!socket_cleanup) {
  1458. socket_cleanup = 5;
  1459. /* Check for server or dcc activity. */
  1460. dequeue_sockets();
  1461. } else
  1462. --socket_cleanup;
  1463. int xx = sockgets(buf, &i);
  1464. if (xx >= 0) { /* Non-error */
  1465. if ((idx = findanyidx(xx)) != -1) {
  1466. if (likely(dcc[idx].type->activity)) {
  1467. /* Traffic stats */
  1468. if (dcc[idx].type->name) {
  1469. ContextNote(dcc[idx].type->name, buf);
  1470. if (!strncmp(dcc[idx].type->name, "BOT", 3))
  1471. traffic.in_today.bn += i + 1;
  1472. else if (!strcmp(dcc[idx].type->name, "SERVER"))
  1473. traffic.in_today.irc += i + 1;
  1474. else if (!strncmp(dcc[idx].type->name, "CHAT", 4))
  1475. traffic.in_today.dcc += i + 1;
  1476. else if (!strncmp(dcc[idx].type->name, "FILES", 5))
  1477. traffic.in_today.dcc += i + 1;
  1478. else if (!strcmp(dcc[idx].type->name, "SEND"))
  1479. traffic.in_today.trans += i + 1;
  1480. else if (!strncmp(dcc[idx].type->name, "GET", 3))
  1481. traffic.in_today.trans += i + 1;
  1482. else
  1483. traffic.in_today.unknown += i + 1;
  1484. }
  1485. dcc[idx].type->activity(idx, buf, (size_t) i);
  1486. } else
  1487. putlog(LOG_MISC, "*",
  1488. STR("!!! untrapped dcc activity: type %s, sock %d"),
  1489. dcc[idx].type->name, dcc[idx].sock);
  1490. }
  1491. } else if (unlikely(xx == -1)) { /* EOF from someone */
  1492. if (unlikely(i == STDOUT && !backgrd))
  1493. fatal(STR("END OF FILE ON TERMINAL"), 0);
  1494. if ((idx = findanyidx(i)) != -1) {
  1495. sdprintf(STR("EOF on '%s' idx: %d"), dcc[idx].type ? dcc[idx].type->name : "unknown", idx);
  1496. if (likely(dcc[idx].type->eof))
  1497. dcc[idx].type->eof(idx);
  1498. else {
  1499. putlog(LOG_MISC, "*",
  1500. STR("*** ATTENTION: DEAD SOCKET (%d) OF TYPE %s UNTRAPPED"),
  1501. i, dcc[idx].type ? dcc[idx].type->name : "*UNKNOWN*");
  1502. killsock(i);
  1503. lostdcc(idx);
  1504. }
  1505. } else if (unlikely(idx == -1)) {
  1506. putlog(LOG_MISC, "*", STR("(@) EOF socket %d, not a dcc socket, not anything."), i);
  1507. close(i);
  1508. killsock(i);
  1509. }
  1510. } else if (unlikely(xx == -2 && errno != EINTR)) { /* select() error */
  1511. putlog(LOG_MISC, "*", STR("* Socket error #%d; recovering."), errno);
  1512. for (i = 0; i < dcc_total; i++) {
  1513. if (dcc[i].type && dcc[i].sock != -1 && (fcntl(dcc[i].sock, F_GETFD, 0) == -1) && (errno = EBADF)) {
  1514. putlog(LOG_MISC, "*",
  1515. STR("DCC socket %d (type %s, name '%s') expired -- pfft"),
  1516. dcc[i].sock, dcc[i].type->name, dcc[i].nick);
  1517. killsock(dcc[i].sock);
  1518. lostdcc(i);
  1519. i--;
  1520. }
  1521. }
  1522. } else if (xx == -3) { /* Idle */
  1523. socket_cleanup = 0; /* If we've been idle, cleanup & flush */
  1524. return 1;
  1525. }
  1526. return 0;
  1527. }
  1528. /* vim: set sts=2 sw=2 ts=8 et: */