net.cc 48 KB

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