| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058 |
- /*
- * dcc.c -- handles:
- * activity on a dcc socket
- * disconnect on a dcc socket
- * ...and that's it! (but it's a LOT)
- *
- */
- #include "main.h"
- #include <ctype.h>
- #include <errno.h>
- #include "modules.h"
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #ifdef HAVE_UNAME
- #include <sys/utsname.h>
- #endif
- #include "tandem.h"
- #include <sys/stat.h>
- extern struct userrec *userlist;
- extern struct chanset_t *chanset;
- extern Tcl_Interp *interp;
- extern time_t now;
- extern int egg_numver, connect_timeout, conmask, backgrd,
- max_dcc, default_flags, debug_output,
- ignore_time;
- extern char botnetnick[], ver[], origbotname[], notify_new[], bdhash[];
- extern sock_list *socklist;
- extern int MAXSOCKS;
- int timesync = 0;
- struct dcc_t *dcc = 0; /* DCC list */
- int dcc_total = 0; /* Total dcc's */
- int allow_new_telnets = 0; /* Allow people to introduce themselves
- via telnet */
- int use_telnet_banner = 0; /* Display telnet banner? */
- char network[41] = "EFnet"; /* Name of the IRC network you're on */
- int password_timeout = 20; /* Time to wait for a password from a user */
- int auth_timeout = 40;
- int bot_timeout = 15; /* Bot timeout value */
- int identtimeout = 15; /* Timeout value for ident lookups */
- int dupwait_timeout = 5; /* Timeout for rejecting duplicate entries */
- #ifdef LEAF
- int protect_telnet = 0; /* Even bother with ident lookups :) */
- #else
- int protect_telnet = 1;
- #endif
- int flood_telnet_thr = 10; /* Number of telnet connections to be
- considered a flood */
- int flood_telnet_time = 5; /* In how many seconds? */
- char bannerfile[121] = ""; /* File displayed on telnet login */
- extern char dcc_prefix[];
- static void dcc_telnet_hostresolved(int);
- static void dcc_telnet_got_ident(int, char *);
- static void dcc_telnet_pass(int, int);
- char *rand_dccresp()
- {
- switch (random() % 10) { /* 0-5: random response, 6-9: none */
- case 0:
- return STR("sup\n");
- case 1:
- return STR("a/s/l?\ni'm 17/f/ca ;)\n");
- case 2:
- return STR("who are you?\n");
- case 3:
- return STR("uhhh do i know you?\n");
- case 4:
- return STR("what?\n");
- case 5:
- return STR("wtf do you want?\n");
- case 6:
- return STR("hold on a second, I am sort of busy..\n");
- case 7:
- return STR("mIRC v6.03 File Server\n\nUse: cd dir ls get read help exit\n[\\]\n");
- case 8:
- return STR("got any porn?\n");
- case 9:
- return STR("?\n");
- default:
- return "";
- /* there's intentionally no newline in this response. You go figure out why :) */
- }
- }
- char *rand_dccresppass()
- {
- switch (random() % 10) { /* 0-5: random response, 6-9: none */
- case 0:
- return STR("what?\n");
- case 1:
- return STR("huh?\n");
- case 2:
- return STR("no.\n");
- case 3:
- return STR("thats great..\n");
- case 4:
- return STR("hmm, ok..I've got a better idea, check this out: http://peeldmonkeys.8k.com/images/keza-_middle_finger.jpg\n");
- case 5:
- return STR("I don't remember caring..\n");
- case 6:
- return STR("good for you.\n");
- case 7:
- return STR("I'm going to report you to the RIAA!!!\n");
- default:
- return "";
- }
- }
- char *rand_dccrespbye()
- {
- switch (random() % 10) { /* 0-5: random response, 6-9: none */
- case 0:
- return STR("stop wasting my time.\n");
- case 1:
- return STR("gtg\n");
- case 2:
- return STR("go away\n");
- case 3:
- return STR("fuck off already\n");
- case 4:
- return STR("ehh..no, bye.\n");
- case 5:
- return STR("hey I'm late for a date with your mom, cya..\n");
- case 6:
- return STR("you're still here?\n");
- case 7:
- return STR("jesus loves you, but I ain't jesus. \002FUCK OFF\002\n");
- default:
- return "";
- }
- }
- static void strip_telnet(int sock, char *buf, int *len)
- {
- unsigned char *p = (unsigned char *) buf, *o = (unsigned char *) buf;
- int mark;
- while (*p != 0) {
- while ((*p != TLN_IAC) && (*p != 0)) {
- if (*p==0xA0) {
- *o++=32;
- p++;
- } else
- *o++=*p++;
- }
- if (*p == TLN_IAC) {
- p++;
- mark = 2;
- if (!*p)
- mark = 1; /* bogus */
- if ((*p >= TLN_WILL) && (*p <= TLN_DONT)) {
- mark = 3;
- if (!*(p + 1))
- mark = 2; /* bogus */
- }
- if (*p == TLN_WILL) {
- /* WILL X -> response: DONT X */
- /* except WILL ECHO which we just smile and ignore */
- if (*(p + 1) != TLN_ECHO) {
- write(sock, TLN_IAC_C TLN_DONT_C, 2);
- write(sock, p + 1, 1);
- }
- }
- if (*p == TLN_DO) {
- /* DO X -> response: WONT X */
- /* except DO ECHO which we just smile and ignore */
- if (*(p + 1) != TLN_ECHO) {
- write(sock, TLN_IAC_C TLN_WONT_C, 2);
- write(sock, p + 1, 1);
- }
- }
- if (*p == TLN_AYT) {
- /* "are you there?" */
- /* response is: "hell yes!" */
- write(sock, "\r\nHell, yes!\r\n", 14);
- }
- /* Anything else can probably be ignored */
- p += mark - 1;
- *len = *len - mark;
- }
- }
- *o = *p;
- }
- void send_timesync(idx)
- {
- /* Send timesync to idx, or all lower bots if idx<0 */
- if (idx >= 0)
- dprintf(idx, "ts %li\n", (timesync + now));
- else {
- #ifdef HUB
- char s[30];
- int i;
- sprintf(s, STR("ts %li\n"), (timesync + now));
- for (i = 0; i < dcc_total; i++) {
- if ((dcc[i].type == &DCC_BOT) && (bot_aggressive_to(dcc[i].user))) {
- dprintf(i, s);
- lower_bot_linked(i);
- }
- }
- #else
- putlog(LOG_ERRORS, "*", "I'm a leaf - where should i send timesync?");
- #endif /* HUB */
- }
- }
- static void greet_new_bot(int idx)
- {
- int i;
- char *sysname = NULL;
- #ifdef HAVE_UNAME
- struct utsname un;
- #endif /* HAVE_UNAME */
- dcc[idx].timeval = now;
- dcc[idx].u.bot->version[0] = 0;
- dcc[idx].u.bot->sysname[0] = 0;
- dcc[idx].u.bot->numver = 0;
- #ifdef HUB
- if (dcc[idx].user && (!(dcc[idx].user->flags & USER_OP))) {
- putlog(LOG_BOTS, "*", "Rejecting link from %s", dcc[idx].nick);
- dprintf(idx, "error You are being rejected.\n");
- dprintf(idx, "bye\n");
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- #endif /* HUB */
- if (bot_hublevel(dcc[idx].user) == 999)
- dcc[idx].status |= STAT_LEAF;
- dcc[idx].status |= STAT_LINKING;
- #ifdef HAVE_UNAME
- if (uname(&un) < 0)
- sysname = "*";
- else
- sysname = un.sysname;
- #endif /* HAVE_UNAME */
- dprintf(idx, "v %d %d %s <%s>\n", egg_numver, HANDLEN, ver, network);
- dprintf(idx, "vs %s\n", sysname);
- for (i = 0; i < dcc_total; i++)
- if (dcc[i].type == &DCC_FORK_BOT) {
- killsock(dcc[i].sock);
- lostdcc(i);
- }
- }
- static void bot_version(int idx, char *par)
- {
- char x[1024];
- int l;
- dcc[idx].timeval = now;
- if (in_chain(dcc[idx].nick)) {
- dprintf(idx, "error Sorry, already connected.\n");
- dprintf(idx, "bye\n");
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- if ((par[0] >= '0') && (par[0] <= '9')) {
- char *work;
- work = newsplit(&par);
- dcc[idx].u.bot->numver = atoi(work);
- } else
- dcc[idx].u.bot->numver = 0;
- dprintf(idx, "tb %s\n", botnetnick);
- l = atoi(newsplit(&par));
- if (l != HANDLEN) {
- putlog(LOG_BOTS, "*", "Non-matching handle lengths with %s, they use %d characters.",
- dcc[idx].nick, l);
- dprintf(idx, "error Non-matching handle length: mine %d, yours %d\n",
- HANDLEN, l);
- dprintf(idx, "bye %s\n", "bad handlen");
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- strncpyz(dcc[idx].u.bot->version, par, 120);
- #ifdef HUB
- putlog(LOG_BOTS, "*", DCC_LINKED, dcc[idx].nick);
- chatout("*** Linked to %s\n", dcc[idx].nick);
- #else
- putlog(LOG_BOTS, "*", "Linked to botnet.");
- chatout("*** Linked to botnet.\n");
- #endif
- botnet_send_nlinked(idx, dcc[idx].nick, botnetnick, '!',
- dcc[idx].u.bot->numver);
- touch_laston(dcc[idx].user, "linked", now);
- dump_links(idx);
- dcc[idx].type = &DCC_BOT;
- addbot(dcc[idx].nick, dcc[idx].nick, botnetnick, '-',
- dcc[idx].u.bot->numver);
- check_tcl_link(dcc[idx].nick, botnetnick);
- egg_snprintf(x, sizeof x, "v %d", dcc[idx].u.bot->numver);
- bot_shareupdate(idx, x);
- bot_share(idx, x);
- dprintf(idx, "el\n");
- }
- void failed_link(int idx)
- {
- char s[81], s1[512];
- if (dcc[idx].u.bot->linker[0]) {
- egg_snprintf(s, sizeof s, "Couldn't link to %s.", dcc[idx].nick);
- strcpy(s1, dcc[idx].u.bot->linker);
- add_note(s1, botnetnick, s, -2, 0);
- }
- if (dcc[idx].u.bot->numver >= (-1))
- putlog(LOG_BOTS, "*", DCC_LINKFAIL, dcc[idx].nick);
- killsock(dcc[idx].sock);
- strcpy(s, dcc[idx].nick);
- lostdcc(idx);
- autolink_cycle(s); /* Check for more auto-connections */
- }
- static void cont_link(int idx, char *buf, int ii)
- {
- /* Now set the initial link key (incoming only, we're not sending more until we get an OK)... */
- struct sockaddr_in sa;
- char tmp[256], bufout[SHA_HASH_LENGTH];
- SHA_CTX ctx;
- int i;
- int snum = -1;
- for (i = 0; i < MAXSOCKS; i++) {
- if ((socklist[i].sock == dcc[idx].sock) && !(socklist[i].flags & SOCK_UNUSED)) {
- snum = i;
- }
- }
- if (snum >= 0) {
- int i;
- /* If we're already connected somewhere, unlink and idle a sec */
- for (i = 0; i < dcc_total; i++) {
- if ((dcc[i].type == &DCC_BOT) && (!bot_aggressive_to(dcc[i].user))) {
- putlog(LOG_BOTS, "*", STR("Unlinking %s - restructure"), dcc[i].nick);
- botnet_send_unlinked(i, dcc[i].nick, STR("Restructure"));
- killsock(dcc[i].sock);
- lostdcc(i);
- usleep(1000 * 500);
- break;
- }
- }
- //. ssl_link(dcc[idx].sock, CONNECT_SSL);
- dcc[idx].type = &DCC_BOT_NEW;
- dcc[idx].u.bot->numver = 0;
- dprintf(idx, "%s\n", botnetnick);
- i = sizeof(sa);
- /* initkey-gen leaf */
- /* bdhash myport hubnick mynick */
- getsockname(socklist[snum].sock, (struct sockaddr *) &sa, &i);
- sprintf(tmp,"%s@%4x@%s@%s", bdhash, sa.sin_port, dcc[idx].nick, botnetnick);
- SHA1_Init(&ctx);
- SHA1_Update(&ctx, tmp, strlen(tmp));
- SHA1_Final(bufout, &ctx);
- strncpyz(socklist[snum].ikey, btoh(bufout, SHA_HASH_LENGTH), 32 + 1);
- putlog(LOG_DEBUG, "@", "Link hash for %s: %s", dcc[idx].nick, tmp);
- putlog(LOG_DEBUG, "@", "initkey (%d): %s", strlen(socklist[snum].ikey), socklist[snum].ikey);
- /* We've send our botnetnick and set the key for the link on the sock, wait for 'elink' back to verify key */
- socklist[snum].encstatus = 1;
- socklist[snum].gz = 1;
- } else {
- lostdcc(idx);
- killsock(dcc[idx].sock);
- }
- return;
- }
- static void dcc_bot_new(int idx, char *buf, int x)
- {
- /* struct userrec *u = get_user_by_handle(userlist, dcc[idx].nick); */
- char *code;
- int i;
- strip_telnet(dcc[idx].sock, buf, &x);
- code = newsplit(&buf);
- if (!egg_strcasecmp(code, "goodbye!")) {
- greet_new_bot(idx);
- } else if (!egg_strcasecmp(code, "v")) {
- bot_version(idx, buf);
- } else if (!egg_strcasecmp(code, "elink")) {
- int snum = -1;
- putlog(LOG_DEBUG, "*", "Got elink: %s %s", code, buf);
- /* Set the socket key and we're linked */
- for (i = 0; i < MAXSOCKS; i++) {
- if (!(socklist[i].flags & SOCK_UNUSED) && (socklist[i].sock == dcc[idx].sock)) {
- snum = i;
- break;
- }
- }
- if (snum >= 0) {
- char *tmp, *p;
- Context;
- p = newsplit(&buf);
- tmp = decrypt_string(SALT2, p);
- strncpyz(socklist[snum].okey, tmp, sizeof(socklist[snum].okey) + 1);
- strncpyz(socklist[snum].ikey, socklist[snum].okey, sizeof(socklist[snum].ikey) + 1);
- socklist[snum].iseed = atoi(buf);
- socklist[snum].oseed = atoi(buf);
- dprintf(idx, "elinkdone\n");
- putlog(LOG_BOTS, "*", "Handshake with %s succeeded, we're linked.", dcc[idx].nick);
- nfree(tmp);
- }
- } else if (!egg_strcasecmp(code, "error")) {
- putlog(LOG_MISC, "*", "ERROR linking %s: %s", dcc[idx].nick, buf);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- } else if (strcmp(code, "")) {
- /* Invalid password/digest on leaf */
- putlog(LOG_WARN, "*", "%s failed encrypted link handshake", dcc[idx].nick);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- /* Ignore otherwise */
- }
- static void eof_dcc_bot_new(int idx)
- {
- putlog(LOG_BOTS, "*", DCC_LOSTBOT, dcc[idx].nick, dcc[idx].port);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void timeout_dcc_bot_new(int idx)
- {
- #ifdef LEAF
- putlog(LOG_BOTS, "*", "Timeout: bot link to %s", dcc[idx].nick);
- #else
- putlog(LOG_BOTS, "*", DCC_TIMEOUT, dcc[idx].nick,
- dcc[idx].host, dcc[idx].port);
- #endif
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void display_dcc_bot_new(int idx, char *buf)
- {
- sprintf(buf, "bot* waited %lus", now - dcc[idx].timeval);
- }
- static int expmem_dcc_bot_(void *x)
- {
- return sizeof(struct bot_info);
- }
- static void free_dcc_bot_(int n, void *x)
- {
- if (dcc[n].type == &DCC_BOT) {
- unvia(n, findbot(dcc[n].nick));
- rembot(dcc[n].nick);
- }
- nfree(x);
- }
- struct dcc_table DCC_BOT_NEW =
- {
- "BOT_NEW",
- 0,
- eof_dcc_bot_new,
- dcc_bot_new,
- &bot_timeout,
- timeout_dcc_bot_new,
- display_dcc_bot_new,
- expmem_dcc_bot_,
- free_dcc_bot_,
- NULL
- };
- /* Hash function for tandem bot commands */
- extern botcmd_t C_bot[];
- static void dcc_bot(int idx, char *code, int i)
- {
- char *msg;
- int f;
- strip_telnet(dcc[idx].sock, code, &i);
- if (debug_output) {
- // if (code[0] != 'z' && code[1] != 'b' && code[2] != ' ') {
- if (code[0] == 's')
- putlog(LOG_BOTSHARE, "@", "{%s} %s", dcc[idx].nick, code + 2);
- else
- putlog(LOG_BOTNET, "@", "[%s] %s", dcc[idx].nick, code);
- // }
- }
- msg = strchr(code, ' ');
- if (msg) {
- *msg = 0;
- msg++;
- } else
- msg = "";
- for (f = i = 0; C_bot[i].name && !f; i++) {
- int y = egg_strcasecmp(code, C_bot[i].name);
- if (!y) {
- /* Found a match */
- (C_bot[i].func)(idx, msg);
- f = 1;
- } else if (y < 0)
- return;
- }
- }
- static void eof_dcc_bot(int idx)
- {
- char x[1024];
- int bots, users;
- bots = bots_in_subtree(findbot(dcc[idx].nick));
- users = users_in_subtree(findbot(dcc[idx].nick));
- egg_snprintf(x, sizeof x,
- "Lost bot: %s (lost %d bot%s and %d user%s)",
- dcc[idx].nick, bots, (bots != 1) ? "s" : "", users,
- (users != 1) ? "s" : "");
- putlog(LOG_BOTS, "*", "%s.", x);
- chatout("*** %s\n", x);
- botnet_send_unlinked(idx, dcc[idx].nick, x);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void display_dcc_bot(int idx, char *buf)
- {
- int i = simple_sprintf(buf, "bot flags: ");
- buf[i++] = b_status(idx) & STAT_PINGED ? 'P' : 'p';
- buf[i++] = b_status(idx) & STAT_SHARE ? 'U' : 'u';
- buf[i++] = b_status(idx) & STAT_CALLED ? 'C' : 'c';
- buf[i++] = b_status(idx) & STAT_OFFERED ? 'O' : 'o';
- buf[i++] = b_status(idx) & STAT_SENDING ? 'S' : 's';
- buf[i++] = b_status(idx) & STAT_GETTING ? 'G' : 'g';
- buf[i++] = b_status(idx) & STAT_WARNED ? 'W' : 'w';
- buf[i++] = b_status(idx) & STAT_LEAF ? 'L' : 'l';
- buf[i++] = b_status(idx) & STAT_LINKING ? 'I' : 'i';
- buf[i++] = b_status(idx) & STAT_AGGRESSIVE ? 'a' : 'A';
- buf[i++] = b_status(idx) & STAT_OFFEREDU ? 'B' : 'b';
- buf[i++] = b_status(idx) & STAT_SENDINGU ? 'D' : 'd';
- buf[i++] = b_status(idx) & STAT_GETTINGU ? 'E' : 'e';
- #ifdef USE_IPV6
- if (sockprotocol(dcc[idx].sock) == AF_INET6 && dcc[idx].addr6[0])
- buf[i++] = '6';
- #endif /* USE_IPV6 */
- buf[i++] = 0;
- }
- static void display_dcc_fork_bot(int idx, char *buf)
- {
- sprintf(buf, "conn bot");
- }
- struct dcc_table DCC_BOT =
- {
- "BOT",
- DCT_BOT,
- eof_dcc_bot,
- dcc_bot,
- NULL,
- NULL,
- display_dcc_bot,
- expmem_dcc_bot_,
- free_dcc_bot_,
- NULL
- };
- struct dcc_table DCC_FORK_BOT =
- {
- "FORK_BOT",
- 0,
- failed_link,
- cont_link,
- &connect_timeout,
- failed_link,
- display_dcc_fork_bot,
- expmem_dcc_bot_,
- free_dcc_bot_,
- NULL
- };
- static void dcc_chat_secpass(int idx, char *buf, int atr)
- {
- #ifdef S_AUTH
- char check[50];
- if (!atr)
- return;
- strip_telnet(dcc[idx].sock, buf, &atr);
- atr = dcc[idx].user ? dcc[idx].user->flags : 0;
- sprintf(check, "+Auth %s", dcc[idx].hash);
- if (!strcmp(check, buf)) {
- //+secpass
- #endif /* S_AUTH */
- putlog(LOG_MISC, "*", DCC_LOGGEDIN, dcc[idx].nick,
- dcc[idx].host, dcc[idx].port);
- if (dcc[idx].u.chat->away) {
- nfree(dcc[idx].u.chat->away);
- dcc[idx].u.chat->away = NULL;
- }
- dcc[idx].type = &DCC_CHAT;
- dcc[idx].status &= ~STAT_CHAT;
- dcc[idx].u.chat->channel = -2;
- /* Turn echo back on for telnet sessions (send IAC WON'T ECHO). */
- if (dcc[idx].status & STAT_TELNET)
- dprintf(idx, TLN_IAC_C TLN_WONT_C TLN_ECHO_C "\n");
- stats_add(dcc[idx].user, 1, 0);
- dcc_chatter(idx);
- #ifdef S_AUTH
- } else { /* bad auth */
- dprintf(idx, "%s", rand_dccrespbye());
- putlog(LOG_MISC, "*", DCC_BADAUTH, dcc[idx].nick,
- dcc[idx].host, dcc[idx].port);
- if (dcc[idx].u.chat->away) { /* su from a dumb user */
- /* Turn echo back on for telnet sessions (send IAC WON'T ECHO). */
- if (dcc[idx].status & STAT_TELNET)
- dprintf(idx, TLN_IAC_C TLN_WONT_C TLN_ECHO_C "\n");
- dcc[idx].user = get_user_by_handle(userlist, dcc[idx].u.chat->away);
- strcpy(dcc[idx].nick, dcc[idx].u.chat->away);
- nfree(dcc[idx].u.chat->away);
- nfree(dcc[idx].u.chat->su_nick);
- dcc[idx].u.chat->away = NULL;
- dcc[idx].u.chat->su_nick = NULL;
- dcc[idx].type = &DCC_CHAT;
- if (dcc[idx].u.chat->channel < GLOBAL_CHANS)
- botnet_send_join_idx(idx, -1);
- chanout_but(-1, dcc[idx].u.chat->channel, DCC_JOIN, dcc[idx].nick);
- } else {
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- }
- #endif /* S_AUTH */
- }
- struct dcc_table DCC_CHAT_SECPASS;
- static void dcc_chat_pass(int idx, char *buf, int atr)
- {
- if (!atr)
- return;
- strip_telnet(dcc[idx].sock, buf, &atr);
- atr = dcc[idx].user ? dcc[idx].user->flags : 0;
- if (atr & USER_BOT) {
- if (!egg_strcasecmp(buf, "elinkdone")) {
- nfree(dcc[idx].u.chat);
- dcc[idx].type = &DCC_BOT_NEW;
- dcc[idx].u.bot = get_data_ptr(sizeof(struct bot_info));
- dcc[idx].status = STAT_CALLED;
- dprintf(idx, "goodbye!\n");
- greet_new_bot(idx);
- send_timesync(idx);
- } else {
- /* Invalid password/digest on hub */
- putlog(LOG_WARN, "*", "%s failed encrypted link handshake", dcc[idx].nick);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- return;
- }
- if (u_pass_match(dcc[idx].user, buf)) {
- #ifdef S_AUTH
- char rand[50];
- make_rand_str(rand, 50);
- strcpy(dcc[idx].hash, makehash(dcc[idx].user, rand));
- dcc[idx].type = &DCC_CHAT_SECPASS;
- dcc[idx].timeval = now;
- dprintf(idx, "-Auth %s %s\n", rand, botnetnick);
- #else
- dcc_chat_secpass(idx, buf, atr);
- #endif /* S_AUTH */
- } else {
- dprintf(idx, "%s", rand_dccrespbye());
- putlog(LOG_MISC, "*", DCC_BADLOGIN, dcc[idx].nick,
- dcc[idx].host, dcc[idx].port);
- if (dcc[idx].u.chat->away) { /* su from a dumb user */
- /* Turn echo back on for telnet sessions (send IAC WON'T ECHO). */
- if (dcc[idx].status & STAT_TELNET)
- dprintf(idx, TLN_IAC_C TLN_WONT_C TLN_ECHO_C "\n");
- dcc[idx].user = get_user_by_handle(userlist, dcc[idx].u.chat->away);
- strcpy(dcc[idx].nick, dcc[idx].u.chat->away);
- nfree(dcc[idx].u.chat->away);
- nfree(dcc[idx].u.chat->su_nick);
- dcc[idx].u.chat->away = NULL;
- dcc[idx].u.chat->su_nick = NULL;
- dcc[idx].type = &DCC_CHAT;
- if (dcc[idx].u.chat->channel < GLOBAL_CHANS)
- botnet_send_join_idx(idx, -1);
- chanout_but(-1, dcc[idx].u.chat->channel, DCC_JOIN, dcc[idx].nick);
- } else {
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- }
- }
- static void eof_dcc_general(int idx)
- {
- putlog(LOG_MISC, "*", DCC_LOSTDCC, dcc[idx].nick,
- dcc[idx].host, dcc[idx].port);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void tout_dcc_chat_secpass(int idx)
- {
- putlog(LOG_MISC, "*", DCC_SPWDTIMEOUT, dcc[idx].nick,
- dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void display_dcc_chat_secpass(int idx, char *buf)
- {
- sprintf(buf, "secpass waited %lus", now - dcc[idx].timeval);
- }
- static void tout_dcc_chat_pass(int idx)
- {
- putlog(LOG_MISC, "*", DCC_PWDTIMEOUT, dcc[idx].nick,
- dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void display_dcc_chat_pass(int idx, char *buf)
- {
- sprintf(buf, "pass waited %lus", now - dcc[idx].timeval);
- }
- static int expmem_dcc_general(void *x)
- {
- register struct chat_info *p = (struct chat_info *) x;
- int tot = sizeof(struct chat_info);
- if (p->away)
- tot += strlen(p->away) + 1;
- if (p->buffer) {
- struct msgq *q = p->buffer;
- while (q) {
- tot += sizeof(struct list_type);
- tot += q->len + 1;
- q = q->next;
- }
- }
- if (p->su_nick)
- tot += strlen(p->su_nick) + 1;
- return tot;
- }
- static void kill_dcc_general(int idx, void *x)
- {
- register struct chat_info *p = (struct chat_info *) x;
- if (p) {
- if (p->buffer) {
- struct msgq *r, *q;
- for (r = dcc[idx].u.chat->buffer; r; r = q) {
- q = r->next;
- nfree(r->msg);
- nfree(r);
- }
- }
- if (p->away) {
- nfree(p->away);
- }
- nfree(p);
- }
- }
- /* Remove the color control codes that mIRC,pIRCh etc use to make
- * their client seem so fecking cool! (Sorry, Khaled, you are a nice
- * guy, but when you added this feature you forced people to either
- * use your *SHAREWARE* client or face screenfulls of crap!)
- */
- static void strip_mirc_codes(int flags, char *text)
- {
- char *dd = text;
- while (*text) {
- switch (*text) {
- case 2: /* Bold text */
- if (flags & STRIP_BOLD) {
- text++;
- continue;
- }
- break;
- case 3: /* mIRC colors? */
- if (flags & STRIP_COLOR) {
- if (egg_isdigit(text[1])) { /* Is the first char a number? */
- text += 2; /* Skip over the ^C and the first digit */
- if (egg_isdigit(*text))
- text++; /* Is this a double digit number? */
- if (*text == ',') { /* Do we have a background color next? */
- if (egg_isdigit(text[1]))
- text += 2; /* Skip over the first background digit */
- if (egg_isdigit(*text))
- text++; /* Is it a double digit? */
- }
- } else
- text++;
- continue;
- }
- break;
- case 7:
- if (flags & STRIP_BELLS) {
- text++;
- continue;
- }
- break;
- case 0x16: /* Reverse video */
- if (flags & STRIP_REV) {
- text++;
- continue;
- }
- break;
- case 0x1f: /* Underlined text */
- if (flags & STRIP_UNDER) {
- text++;
- continue;
- }
- break;
- case 033:
- if (flags & STRIP_ANSI) {
- text++;
- if (*text == '[') {
- text++;
- while ((*text == ';') || egg_isdigit(*text))
- text++;
- if (*text)
- text++; /* also kill the following char */
- }
- continue;
- }
- break;
- }
- *dd++ = *text++; /* Move on to the next char */
- }
- *dd = 0;
- }
- static void append_line(int idx, char *line)
- {
- int l = strlen(line);
- struct msgq *p, *q;
- struct chat_info *c = (dcc[idx].type == &DCC_CHAT) ? dcc[idx].u.chat :
- dcc[idx].u.file->chat;
- if (c->current_lines > 1000) {
- /* They're probably trying to fill up the bot nuke the sods :) */
- for (p = c->buffer; p; p = q) {
- q = p->next;
- nfree(p->msg);
- nfree(p);
- }
- c->buffer = 0;
- dcc[idx].status &= ~STAT_PAGE;
- do_boot(idx, botnetnick, "too many pages - senq full");
- return;
- }
- if ((c->line_count < c->max_line) && (c->buffer == NULL)) {
- c->line_count++;
- tputs(dcc[idx].sock, line, l);
- } else {
- c->current_lines++;
- if (c->buffer == NULL)
- q = NULL;
- else
- for (q = c->buffer; q->next; q = q->next);
- p = get_data_ptr(sizeof(struct msgq));
- p->len = l;
- p->msg = get_data_ptr(l + 1);
- p->next = NULL;
- strcpy(p->msg, line);
- if (q == NULL)
- c->buffer = p;
- else
- q->next = p;
- }
- }
- static void out_dcc_general(int idx, char *buf, void *x)
- {
- register struct chat_info *p = (struct chat_info *) x;
- char *y = buf;
- strip_mirc_codes(p->strip_flags, buf);
- if (dcc[idx].status & STAT_TELNET)
- y = add_cr(buf);
- if (dcc[idx].status & STAT_PAGE)
- append_line(idx, y);
- else
- tputs(dcc[idx].sock, y, strlen(y));
- }
- struct dcc_table DCC_CHAT_SECPASS =
- {
- "CHAT_SECPASS",
- 0,
- eof_dcc_general,
- dcc_chat_secpass,
- &auth_timeout,
- tout_dcc_chat_secpass,
- display_dcc_chat_secpass,
- expmem_dcc_general,
- kill_dcc_general,
- out_dcc_general
- };
- struct dcc_table DCC_CHAT_PASS =
- {
- "CHAT_PASS",
- 0,
- eof_dcc_general,
- dcc_chat_pass,
- &password_timeout,
- tout_dcc_chat_pass,
- display_dcc_chat_pass,
- expmem_dcc_general,
- kill_dcc_general,
- out_dcc_general
- };
- /* Make sure ansi code is just for color-changing
- */
- /* compat
- static int check_ansi(char *v)
- {
- int count = 2;
- if (*v++ != '\033')
- return 1;
- if (*v++ != '[')
- return 1;
- while (*v) {
- if (*v == 'm')
- return 0;
- if ((*v != ';') && ((*v < '0') || (*v > '9')))
- return count;
- v++;
- count++;
- }
- return count;
- }
- */
- static void eof_dcc_chat(int idx)
- {
- putlog(LOG_MISC, "*", DCC_LOSTDCC, dcc[idx].nick,
- dcc[idx].host, dcc[idx].port);
- if (dcc[idx].u.chat->channel >= 0) {
- chanout_but(idx, dcc[idx].u.chat->channel, "*** %s lost dcc link.\n",
- dcc[idx].nick);
- if (dcc[idx].u.chat->channel < GLOBAL_CHANS)
- botnet_send_part_idx(idx, "lost dcc link");
- check_tcl_chpt(botnetnick, dcc[idx].nick, dcc[idx].sock,
- dcc[idx].u.chat->channel);
- }
- check_tcl_chof(dcc[idx].nick, dcc[idx].sock);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void dcc_chat(int idx, char *buf, int i)
- {
- int nathan = 0, fixed = 0;
- char *v, *d;
- strip_telnet(dcc[idx].sock, buf, &i);
- if (buf[0] && (buf[0] != '.') &&
- detect_dcc_flood(&dcc[idx].timeval, dcc[idx].u.chat, idx))
- return;
- dcc[idx].timeval = now;
- if (buf[0])
- strcpy(buf, check_tcl_filt(idx, buf));
- if (buf[0]) {
- /* Check for beeps and cancel annoying ones */
- v = buf;
- d = buf;
- while (*v)
- switch (*v) {
- case 7: /* Beep - no more than 3 */
- nathan++;
- if (nathan > 3)
- v++;
- else
- *d++ = *v++;
- break;
- case 8: /* Backspace - for lame telnet's :) */
- if (d > buf) {
- d--;
- }
- v++;
- break;
- /*
- case 27: // ESC - ansi code?
- doron = check_ansi(v);
- // If it's valid, append a return-to-normal code at the end
- if (!doron) {
- *d++ = *v++;
- fixed = 1;
- } else
- v += doron;
- break;
- */
- case '\r': /* Weird pseudo-linefeed */
- v++;
- break;
- default:
- *d++ = *v++;
- }
- if (fixed)
- strcpy(d, "\033[0m");
- else
- *d = 0;
- if (buf[0]) { /* Nothing to say - maybe paging... */
- if (u_pass_match(dcc[idx].user, buf)) { //user said their password :)
- dprintf(idx, "Sure you want that going to the partyline? ;) (msg to partyline halted.)\n");
- } else if ((!strncmp(buf,dcc_prefix,strlen(dcc_prefix))) || (dcc[idx].u.chat->channel < 0)) {
- if (!strncmp(buf, dcc_prefix,strlen(dcc_prefix)))
- buf++;
- v = newsplit(&buf);
- rmspace(buf);
- if (check_tcl_dcc(v, idx, buf)) {
- if (dcc[idx].u.chat->channel >= 0)
- check_tcl_chpt(botnetnick, dcc[idx].nick, dcc[idx].sock,
- dcc[idx].u.chat->channel);
- check_tcl_chof(dcc[idx].nick, dcc[idx].sock);
- flush_lines(idx, dcc[idx].u.chat);
- putlog(LOG_MISC, "*", DCC_CLOSED, dcc[idx].nick,
- dcc[idx].host);
- if (dcc[idx].u.chat->channel >= 0) {
- chanout_but(-1, dcc[idx].u.chat->channel,
- "*** %s left the party line%s%s\n",
- dcc[idx].nick, buf[0] ? ": " : ".", buf);
- if (dcc[idx].u.chat->channel < GLOBAL_CHANS)
- botnet_send_part_idx(idx, buf);
- }
- if (dcc[idx].u.chat->su_nick) {
- dcc[idx].user = get_user_by_handle(userlist,
- dcc[idx].u.chat->su_nick);
- strcpy(dcc[idx].nick, dcc[idx].u.chat->su_nick);
- dcc[idx].type = &DCC_CHAT;
- dprintf(idx, "Returning to real nick %s!\n",
- dcc[idx].u.chat->su_nick);
- nfree(dcc[idx].u.chat->su_nick);
- dcc[idx].u.chat->su_nick = NULL;
- dcc_chatter(idx);
- if (dcc[idx].u.chat->channel < GLOBAL_CHANS &&
- dcc[idx].u.chat->channel >= 0)
- botnet_send_join_idx(idx, -1);
- return;
- } else if ((dcc[idx].sock != STDOUT) || backgrd) {
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- } else {
- dprintf(DP_STDOUT, "\n### SIMULATION RESET\n\n");
- dcc_chatter(idx);
- return;
- }
- }
- } else if (buf[0] == ',') {
- int me = 0;
- if ((buf[1] == 'm') && (buf[2] == 'e') && buf[3] == ' ')
- me = 1;
- for (i = 0; i < dcc_total; i++) {
- int ok = 0;
- if (dcc[i].type->flags & DCT_MASTER) {
- if ((dcc[i].type != &DCC_CHAT) ||
- (dcc[i].u.chat->channel >= 0))
- if ((i != idx) || (dcc[idx].status & STAT_ECHO))
- ok = 1;
- }
- if (ok) {
- struct userrec *u = get_user_by_handle(userlist, dcc[i].nick);
- if (u && (u->flags & USER_MASTER)) {
- if (me)
- dprintf(i, "-> %s%s\n", dcc[idx].nick, buf + 3);
- else
- dprintf(i, "-%s-> %s\n", dcc[idx].nick, buf + 1);
- }
- }
- }
- } else if (buf[0] == '\'') {
- int me = 0;
- if ((buf[1] == 'm') && (buf[2] == 'e') &&
- ((buf[3] == ' ') || (buf[3] == '\'') || (buf[3] == ',')))
- me = 1;
- for (i = 0; i < dcc_total; i++) {
- if (dcc[i].type->flags & DCT_CHAT) {
- if (me)
- dprintf(i, "=> %s%s\n", dcc[idx].nick, buf + 3);
- else
- dprintf(i, "=%s=> %s\n", dcc[idx].nick, buf + 1);
- }
- }
- } else {
- if (dcc[idx].u.chat->away != NULL)
- not_away(idx);
- if (dcc[idx].status & STAT_ECHO)
- chanout_but(-1, dcc[idx].u.chat->channel,
- "<%s> %s\n", dcc[idx].nick, buf);
- else
- chanout_but(idx, dcc[idx].u.chat->channel, "<%s> %s\n",
- dcc[idx].nick, buf);
- botnet_send_chan(-1, botnetnick, dcc[idx].nick,
- dcc[idx].u.chat->channel, buf);
- check_tcl_chat(dcc[idx].nick, dcc[idx].u.chat->channel, buf);
- }
- }
- }
- if (dcc[idx].type == &DCC_CHAT) /* Could have change to files */
- if (dcc[idx].status & STAT_PAGE)
- flush_lines(idx, dcc[idx].u.chat);
- }
- static void display_dcc_chat(int idx, char *buf)
- {
- int i = simple_sprintf(buf, "chat flags: ");
- buf[i++] = dcc[idx].status & STAT_CHAT ? 'C' : 'c';
- buf[i++] = dcc[idx].status & STAT_PARTY ? 'P' : 'p';
- buf[i++] = dcc[idx].status & STAT_TELNET ? 'T' : 't';
- buf[i++] = dcc[idx].status & STAT_ECHO ? 'E' : 'e';
- buf[i++] = dcc[idx].status & STAT_PAGE ? 'P' : 'p';
- buf[i++] = dcc[idx].status & STAT_COLORM ? 'M' : 'm';
- buf[i++] = dcc[idx].status & STAT_COLORA ? 'A' : 'a';
- #ifdef USE_IPV6
- if (sockprotocol(dcc[idx].sock) == AF_INET6 && dcc[idx].addr6[0])
- buf[i++] = '6';
- #endif /* USE_IPV6 */
- simple_sprintf(buf + i, "/%d", dcc[idx].u.chat->channel);
- }
- struct dcc_table DCC_CHAT =
- {
- "CHAT",
- DCT_CHAT | DCT_MASTER | DCT_SHOWWHO | DCT_VALIDIDX | DCT_SIMUL |
- DCT_CANBOOT | DCT_REMOTEWHO,
- eof_dcc_chat,
- dcc_chat,
- NULL,
- NULL,
- display_dcc_chat,
- expmem_dcc_general,
- kill_dcc_general,
- out_dcc_general
- };
- static int lasttelnets;
- static char lasttelnethost[81];
- static time_t lasttelnettime;
- /* A modified detect_flood for incoming telnet flood protection.
- */
- static int detect_telnet_flood(char *floodhost)
- {
- struct flag_record fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0, 0, 0};
- get_user_flagrec(get_user_by_host(floodhost), &fr, NULL);
- if (!flood_telnet_thr || glob_noflood(fr))
- return 0; /* No flood protection */
- if (egg_strcasecmp(lasttelnethost, floodhost)) { /* New... */
- strcpy(lasttelnethost, floodhost);
- lasttelnettime = now;
- lasttelnets = 0;
- return 0;
- }
- if (lasttelnettime < now - flood_telnet_time) {
- /* Flood timer expired, reset it */
- lasttelnettime = now;
- lasttelnets = 0;
- return 0;
- }
- lasttelnets++;
- if (lasttelnets >= flood_telnet_thr) { /* FLOOD! */
- /* Reset counters */
- lasttelnets = 0;
- lasttelnettime = 0;
- lasttelnethost[0] = 0;
- putlog(LOG_MISC, "*", IRC_TELNETFLOOD, floodhost);
- addignore(floodhost, origbotname, "Telnet connection flood",
- now + (60 * ignore_time));
- return 1;
- }
- return 0;
- }
- static void dcc_telnet(int idx, char *buf, int i)
- {
- unsigned long ip;
- unsigned short port;
- int j = 0, sock;
- char s[UHOSTLEN + 1];
- if (dcc_total + 1 > max_dcc) {
- j = answer(dcc[idx].sock, s, &ip, &port, 0);
- if (j != -1) {
- dprintf(-j, "Sorry, too many connections already.\r\n");
- killsock(j);
- }
- return;
- }
- sock = answer(dcc[idx].sock, s, &ip, &port, 0);
- while ((sock == -1) && (errno == EAGAIN))
- sock = answer(sock, s, &ip, &port, 0);
- //. ssl_link ACCEPT_SSL should go here!!!!
- if (sock < 0) {
- neterror(s);
- putlog(LOG_MISC, "*", DCC_FAILED, s);
- return;
- }
- /* Buffer data received on this socket. */
- sockoptions(sock, EGG_OPTION_SET, SOCK_BUFFER);
- if (port < 1024 || port > 65535) {
- putlog(LOG_BOTS, "*", DCC_BADSRC, s, port);
- killsock(sock);
- return;
- }
- i = new_dcc(&DCC_DNSWAIT, sizeof(struct dns_info));
- dcc[i].sock = sock;
- dcc[i].addr = ip;
- #ifdef USE_IPV6
- if (sockprotocol(sock) == AF_INET6)
- strcpy(dcc[i].addr6, s);
- #endif /* USE_IPV6 */
- dcc[i].port = port;
- dcc[i].timeval = now;
- strcpy(dcc[i].nick, "*");
- dcc[i].u.dns->ip = ip;
- dcc[i].u.dns->dns_success = dcc_telnet_hostresolved;
- dcc[i].u.dns->dns_failure = dcc_telnet_hostresolved;
- dcc[i].u.dns->dns_type = RES_HOSTBYIP;
- dcc[i].u.dns->ibuf = dcc[idx].sock;
- dcc[i].u.dns->type = &DCC_IDENTWAIT;
- #ifdef USE_IPV6
- if (sockprotocol(sock) == AF_INET6)
- dcc_telnet_hostresolved(i);
- else
- #endif /* USE_IPV6 */
- dcc_dnshostbyip(ip);
- }
- static void dcc_telnet_hostresolved(int i)
- {
- int idx;
- int j = 0, sock;
- char s[UHOSTLEN], s2[UHOSTLEN + 20];
- #ifdef USE_IPV6
- if (sockprotocol(dcc[i].sock) == AF_INET6 && dcc[i].addr6[0])
- strncpyz(dcc[i].host, dcc[i].addr6, UHOSTLEN);
- else
- #endif /* USE_IPV6 */
- strncpyz(dcc[i].host, dcc[i].u.dns->host, UHOSTLEN);
- for (idx = 0; idx < dcc_total; idx++)
- if ((dcc[idx].type == &DCC_TELNET) &&
- (dcc[idx].sock == dcc[i].u.dns->ibuf)) {
- break;
- }
- if (dcc_total == idx) {
- putlog(LOG_BOTS, "*", "Lost listening socket while resolving %s",
- dcc[i].host);
- killsock(dcc[i].sock);
- lostdcc(i);
- return;
- }
- if (dcc[idx].host[0] == '@') {
- /* Restrict by hostname */
- if (!wild_match(dcc[idx].host + 1, dcc[i].host)) {
- putlog(LOG_BOTS, "*", DCC_BADHOST, s);
- killsock(dcc[i].sock);
- lostdcc(i);
- return;
- }
- }
- sprintf(s2, "-telnet!telnet@%s", dcc[i].host);
- if (match_ignore(s2) || detect_telnet_flood(s2)) {
- killsock(dcc[i].sock);
- lostdcc(i);
- return;
- }
- //. ssl_link(dcc[i].sock, ACCEPT_SSL);
- changeover_dcc(i, &DCC_IDENTWAIT, 0);
- dcc[i].timeval = now;
- dcc[i].u.ident_sock = dcc[idx].sock;
- #ifdef USE_IPV6
- if (sockprotocol(dcc[idx].sock) == AF_INET6)
- sock = open_telnet(dcc[i].host, 113);
- else
- #endif /* USE_IPV6 */
- sock = open_telnet(iptostr(htonl(dcc[i].addr)), 113);
- putlog(LOG_MISC, "*", DCC_TELCONN, dcc[i].host, dcc[i].port);
- s[0] = 0;
- if (sock < 0) {
- if (sock == -2)
- strcpy(s, "DNS lookup failed for ident");
- else
- neterror(s);
- } else {
- j = new_dcc(&DCC_IDENT, 0);
- if (j < 0) {
- killsock(sock);
- strcpy(s, "No Free DCC's");
- }
- }
- if (s[0]) {
- putlog(LOG_MISC, "*", DCC_IDENTFAIL, dcc[i].host, s);
- sprintf(s, "telnet@%s", dcc[i].host);
- dcc_telnet_got_ident(i, s);
- return;
- }
- dcc[j].sock = sock;
- dcc[j].port = 113;
- dcc[j].addr = dcc[i].addr;
- strcpy(dcc[j].host, dcc[i].host);
- strcpy(dcc[j].nick, "*");
- dcc[j].u.ident_sock = dcc[i].sock;
- dcc[j].timeval = now;
- dprintf(j, "%d, %d\n", dcc[i].port, dcc[idx].port);
- }
- static void eof_dcc_telnet(int idx)
- {
- putlog(LOG_MISC, "*", DCC_PORTDIE,
- dcc[idx].port);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void display_telnet(int idx, char *buf)
- {
- sprintf(buf, "lstn %d%s", dcc[idx].port,
- (dcc[idx].status & LSTN_PUBLIC) ? " pub" : "");
- }
- struct dcc_table DCC_TELNET =
- {
- "TELNET",
- DCT_LISTEN,
- eof_dcc_telnet,
- dcc_telnet,
- NULL,
- NULL,
- display_telnet,
- NULL,
- NULL,
- NULL
- };
- static void eof_dcc_dupwait(int idx)
- {
- putlog(LOG_BOTS, "*", DCC_LOSTDUP, dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void dcc_dupwait(int idx, char *buf, int i)
- {
- /* We just ignore any data at this point. */
- return;
- }
- /* We now check again. If the bot is still marked as duplicate, there is no
- * botnet lag we could push it on, so we just drop the connection.
- */
- static void timeout_dupwait(int idx)
- {
- char x[100];
- /* Still duplicate? */
- if (in_chain(dcc[idx].nick)) {
- egg_snprintf(x, sizeof x, "%s!%s", dcc[idx].nick, dcc[idx].host);
- dprintf(idx, "error Already connected.\n");
- putlog(LOG_BOTS, "*", DCC_DUPLICATE, x);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- } else {
- /* Ha! Now it's gone and we can grant this bot access. */
- dcc_telnet_pass(idx, dcc[idx].u.dupwait->atr);
- }
- }
- static void display_dupwait(int idx, char *buf)
- {
- sprintf(buf, "wait duplicate?");
- }
- static int expmem_dupwait(void *x)
- {
- register struct dupwait_info *p = (struct dupwait_info *) x;
- int tot = sizeof(struct dupwait_info);
- if (p && p->chat && DCC_CHAT.expmem)
- tot += DCC_CHAT.expmem(p->chat);
- return tot;
- }
- static void kill_dupwait(int idx, void *x)
- {
- register struct dupwait_info *p = (struct dupwait_info *) x;
- if (p) {
- if (p->chat && DCC_CHAT.kill)
- DCC_CHAT.kill(idx, p->chat);
- nfree(p);
- }
- }
- struct dcc_table DCC_DUPWAIT =
- {
- "DUPWAIT",
- DCT_VALIDIDX,
- eof_dcc_dupwait,
- dcc_dupwait,
- &dupwait_timeout,
- timeout_dupwait,
- display_dupwait,
- expmem_dupwait,
- kill_dupwait,
- NULL
- };
- /* This function is called if a bot gets removed from the list. It checks
- * wether we have a pending duplicate connection for that bot and continues
- * with the login in that case.
- */
- void dupwait_notify(char *who)
- {
- register int idx;
- Assert(who);
- for (idx = 0; idx < dcc_total; idx++)
- if ((dcc[idx].type == &DCC_DUPWAIT) &&
- !egg_strcasecmp(dcc[idx].nick, who)) {
- dcc_telnet_pass(idx, dcc[idx].u.dupwait->atr);
- break;
- }
- }
- static void dcc_telnet_id(int idx, char *buf, int atr)
- {
- int ok = 0;
- struct flag_record fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0, 0, 0};
- strip_telnet(dcc[idx].sock, buf, &atr);
- buf[HANDLEN] = 0;
- /* Toss out bad nicknames */
- if ((dcc[idx].nick[0] != '@') && (!wild_match(dcc[idx].nick, buf))) {
- dprintf(idx, "Sorry, that nickname format is invalid.\n");
- putlog(LOG_BOTS, "*", DCC_BADNICK, dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- dcc[idx].user = get_user_by_handle(userlist, buf);
- get_user_flagrec(dcc[idx].user, &fr, NULL);
- /* Make sure users-only/bots-only connects are honored */
- if ((dcc[idx].status & STAT_BOTONLY) && !glob_bot(fr)) {
- dprintf(idx, "This telnet port is for bots only.\n");
- putlog(LOG_BOTS, "*", DCC_NONBOT, dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- if ((dcc[idx].status & STAT_USRONLY) && glob_bot(fr)) {
- dprintf(idx, "error Only users may connect at this port.\n");
- putlog(LOG_BOTS, "*", DCC_NONUSER, dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- dcc[idx].status &= ~(STAT_BOTONLY | STAT_USRONLY);
- /* if (!ok && glob_party(fr))
- ok = 1;*/
- ok = 1;
- #ifdef HUB
- if (!glob_huba(fr))
- ok = 0;
- #endif
- #ifdef LEAF
- /* if I am a chanhub and they dont have +c then drop */
- if (ischanhub() && !glob_chuba(fr))
- ok = 0;
- if (!ischanhub())
- ok = 0;
- #endif
- if (!ok && glob_bot(fr))
- ok = 1;
- if (!ok) {
- putlog(LOG_BOTS, "*", DCC_INVHANDLE, dcc[idx].host, buf);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- correct_handle(buf);
- strcpy(dcc[idx].nick, buf);
- if (glob_bot(fr)) {
- if (!egg_strcasecmp(botnetnick, dcc[idx].nick)) {
- dprintf(idx, "error You cannot link using my botnetnick.\n");
- putlog(LOG_BOTS, "*", DCC_MYBOTNETNICK, dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- } else if (in_chain(dcc[idx].nick)) {
- struct chat_info *ci;
- ci = dcc[idx].u.chat;
- dcc[idx].type = &DCC_DUPWAIT;
- dcc[idx].u.dupwait = get_data_ptr(sizeof(struct dupwait_info));
- dcc[idx].u.dupwait->chat = ci;
- dcc[idx].u.dupwait->atr = atr;
- return;
- }
- }
- dcc_telnet_pass(idx, atr);
- }
- static void dcc_telnet_pass(int idx, int atr)
- {
- int ok = 0, i, ok2;
- struct flag_record fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0, 0, 0};
- get_user_flagrec(dcc[idx].user, &fr, NULL);
- /* No password set? */
- if (!glob_bot(fr) && (u_pass_match(dcc[idx].user, "-"))) {
- dprintf(idx, "Can't telnet until you have a password set.\r\n");
- putlog(LOG_MISC, "*", DCC_NOPASS, dcc[idx].nick, dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- ok = 0;
- if (dcc[idx].type == &DCC_DUPWAIT) {
- struct chat_info *ci;
- ci = dcc[idx].u.dupwait->chat;
- nfree(dcc[idx].u.dupwait);
- dcc[idx].u.chat = ci;
- }
- dcc[idx].type = &DCC_CHAT_PASS;
- dcc[idx].timeval = now;
- ok2 = 1;
- #ifdef HUB
- if (!glob_huba(fr))
- ok2 = 0;
- #endif
- #ifdef LEAF
- if (ischanhub() && !glob_chuba(fr))
- ok2 = 0;
- #endif
- if (ok2) {
- ok = 1;
- dcc[idx].status |= STAT_PARTY;
- }
- if (glob_bot(fr))
- ok = 1;
- if (!ok) {
- struct chat_info *ci;
- ci = dcc[idx].u.chat;
- dcc[idx].u.file = get_data_ptr(sizeof(struct file_info));
- dcc[idx].u.file->chat = ci;
- }
- if (glob_bot(fr)) {
- int snum = -1;
- for (i = 0; i < MAXSOCKS; i++) {
- if (!(socklist[i].flags & SOCK_UNUSED)
- && (socklist[i].sock == dcc[idx].sock)) {
- snum = i;
- break;
- }
- }
- if (snum >= 0) {
- char initkey[32], *tmp2;
- char tmp[256], buf[40];
- SHA_CTX ctx;
-
- /* initkey-gen hub */
- /* bdhash port mynick botnetnick */
- sprintf(tmp, "%s@%4x@%s@%s", bdhash, htons(dcc[idx].port), botnetnick, dcc[idx].nick);
- SHA1_Init(&ctx);
- SHA1_Update(&ctx, tmp, strlen(tmp));
- SHA1_Final(buf, &ctx);
- strncpyz(socklist[snum].okey, btoh(buf, SHA_HASH_LENGTH), 32 + 1);
- putlog(LOG_DEBUG, "@", "Link hash for %s: %s", dcc[idx].nick, tmp);
- putlog(LOG_DEBUG, "@", "outkey (%d): %s", strlen(socklist[snum].okey), socklist[snum].okey);
- make_rand_str(initkey, 32); /* set the initial out/in link key to random chars. */
- initkey[32] = 0;
- socklist[snum].oseed = random();
- socklist[snum].iseed = socklist[snum].oseed;
- tmp2 = encrypt_string(SALT2, initkey);
- putlog(LOG_BOTS, "*", "Sending encrypted link handshake to %s...", dcc[idx].nick);
- socklist[snum].encstatus = 1;
- socklist[snum].gz = 1;
- dprintf(idx, "elink %s %lu\n", tmp2, socklist[snum].oseed);
- nfree(tmp2);
- strcpy(socklist[snum].okey, initkey);
- strcpy(socklist[snum].ikey, initkey);
- } else {
- putlog(LOG_MISC, "*", "Couldn't find socket for %s connection?? Shouldn't happen :/", dcc[idx].nick);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- } else {
- /* Turn off remote telnet echo (send IAC WILL ECHO). */
- #ifdef HUB
- dprintf(idx, "\n%s" TLN_IAC_C TLN_WILL_C TLN_ECHO_C "\n", DCC_ENTERPASS);
- #else
- dprintf(idx, "%s" TLN_IAC_C TLN_WILL_C TLN_ECHO_C, rand_dccresppass());
- #endif
- }
- }
- static void eof_dcc_telnet_id(int idx)
- {
- putlog(LOG_MISC, "*", DCC_LOSTCON, dcc[idx].host,
- dcc[idx].port);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void timeout_dcc_telnet_id(int idx)
- {
- putlog(LOG_MISC, "*", DCC_TTIMEOUT, dcc[idx].host);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void display_dcc_telnet_id(int idx, char *buf)
- {
- sprintf(buf, "t-in waited %lus", now - dcc[idx].timeval);
- }
- struct dcc_table DCC_TELNET_ID =
- {
- "TELNET_ID",
- 0,
- eof_dcc_telnet_id,
- dcc_telnet_id,
- &password_timeout,
- timeout_dcc_telnet_id,
- display_dcc_telnet_id,
- expmem_dcc_general,
- kill_dcc_general,
- out_dcc_general
- };
- static int call_tcl_func(char *name, int idx, char *args)
- {
- char s[11];
- sprintf(s, "%d", idx);
- Tcl_SetVar(interp, "_n", s, 0);
- Tcl_SetVar(interp, "_a", args, 0);
- if (Tcl_VarEval(interp, name, " $_n $_a", NULL) == TCL_ERROR) {
- putlog(LOG_MISC, "*", DCC_TCLERROR, name, interp->result);
- return -1;
- }
- return (atoi(interp->result));
- }
- static void dcc_script(int idx, char *buf, int len)
- {
- long oldsock;
- strip_telnet(dcc[idx].sock, buf, &len);
- if (!len)
- return;
- dcc[idx].timeval = now;
- oldsock = dcc[idx].sock; /* Remember the socket number. */
- if (call_tcl_func(dcc[idx].u.script->command, dcc[idx].sock, buf)) {
- void *old_other = NULL;
- /* Check whether the socket and dcc entry are still valid. They
- might have been killed by `killdcc'. */
- if (dcc[idx].sock != oldsock || idx > max_dcc)
- return;
- old_other = dcc[idx].u.script->u.other;
- dcc[idx].type = dcc[idx].u.script->type;
- nfree(dcc[idx].u.script);
- dcc[idx].u.other = old_other;
- if (dcc[idx].type == &DCC_SOCKET) {
- /* Kill the whole thing off */
- killsock(dcc[idx].sock);
- lostdcc(idx);
- return;
- }
- if (dcc[idx].type == &DCC_CHAT) {
- if (dcc[idx].u.chat->channel >= 0) {
- chanout_but(-1, dcc[idx].u.chat->channel, DCC_JOIN, dcc[idx].nick);
- if (dcc[idx].u.chat->channel < 10000)
- botnet_send_join_idx(idx, -1);
- check_tcl_chjn(botnetnick, dcc[idx].nick, dcc[idx].u.chat->channel,
- geticon(idx), dcc[idx].sock, dcc[idx].host);
- }
- check_tcl_chon(dcc[idx].nick, dcc[idx].sock);
- }
- }
- }
- static void eof_dcc_script(int idx)
- {
- void *old;
- int oldflags;
- Context;
- /* This will stop a killdcc from working, incase the script tries
- * to kill it's controlling socket while handling an EOF <cybah> */
- oldflags = dcc[idx].type->flags;
- dcc[idx].type->flags &= ~(DCT_VALIDIDX);
- /* tell the script they're gone: */
- call_tcl_func(dcc[idx].u.script->command, dcc[idx].sock, "");
- /* restore the flags */
- dcc[idx].type->flags = oldflags;
- old = dcc[idx].u.script->u.other;
- dcc[idx].type = dcc[idx].u.script->type;
- nfree(dcc[idx].u.script);
- dcc[idx].u.other = old;
- /* then let it fall thru to the real one */
- if (dcc[idx].type && dcc[idx].type->eof)
- dcc[idx].type->eof(idx);
- else {
- putlog(LOG_DEBUG, "*", "*** ATTENTION: DEAD SOCKET (%d) OF TYPE %s UNTRAPPED", dcc[idx].sock, dcc[idx].type->name);
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- }
- static void display_dcc_script(int idx, char *buf)
- {
- sprintf(buf, "scri %s", dcc[idx].u.script->command);
- }
- static int expmem_dcc_script(void *x)
- {
- register struct script_info *p = (struct script_info *) x;
- int tot = sizeof(struct script_info);
- if (p->type && p->u.other)
- tot += p->type->expmem(p->u.other);
- return tot;
- }
- static void kill_dcc_script(int idx, void *x)
- {
- register struct script_info *p = (struct script_info *) x;
- Context;
- if (p->type && p->u.other)
- p->type->kill(idx, p->u.other);
- nfree(p);
- }
- static void out_dcc_script(int idx, char *buf, void *x)
- {
- register struct script_info *p = (struct script_info *) x;
- if (p && p->type && p->u.other)
- p->type->output(idx, buf, p->u.other);
- else
- tputs(dcc[idx].sock, buf, strlen(buf));
- }
- struct dcc_table DCC_SCRIPT =
- {
- "SCRIPT",
- DCT_VALIDIDX,
- eof_dcc_script,
- dcc_script,
- NULL,
- NULL,
- display_dcc_script,
- expmem_dcc_script,
- kill_dcc_script,
- out_dcc_script
- };
- static void dcc_socket(int idx, char *buf, int len)
- {
- }
- static void eof_dcc_socket(int idx)
- {
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- static void display_dcc_socket(int idx, char *buf)
- {
- strcpy(buf, "sock (stranded)");
- }
- struct dcc_table DCC_SOCKET =
- {
- "SOCKET",
- DCT_VALIDIDX,
- eof_dcc_socket,
- dcc_socket,
- NULL,
- NULL,
- display_dcc_socket,
- NULL,
- NULL,
- NULL
- };
- static void display_dcc_lost(int idx, char *buf)
- {
- strcpy(buf, "lost");
- }
- struct dcc_table DCC_LOST =
- {
- "LOST",
- 0,
- NULL,
- dcc_socket,
- NULL,
- NULL,
- display_dcc_lost,
- NULL,
- NULL,
- NULL
- };
- void dcc_identwait(int idx, char *buf, int len)
- {
- /* Ignore anything now */
- }
- void eof_dcc_identwait(int idx)
- {
- int i;
- putlog(LOG_MISC, "*", DCC_LOSTCONN, dcc[idx].host, dcc[idx].port);
- for (i = 0; i < dcc_total; i++)
- if ((dcc[i].type == &DCC_IDENT) &&
- (dcc[i].u.ident_sock == dcc[idx].sock)) {
- killsock(dcc[i].sock); /* Cleanup ident socket */
- dcc[i].u.other = 0;
- lostdcc(i);
- break;
- }
- killsock(dcc[idx].sock); /* Cleanup waiting socket */
- dcc[idx].u.other = 0;
- lostdcc(idx);
- }
- static void display_dcc_identwait(int idx, char *buf)
- {
- sprintf(buf, "idtw waited %lus", now - dcc[idx].timeval);
- }
- struct dcc_table DCC_IDENTWAIT =
- {
- "IDENTWAIT",
- 0,
- eof_dcc_identwait,
- dcc_identwait,
- NULL,
- NULL,
- display_dcc_identwait,
- NULL,
- NULL,
- NULL
- };
- void dcc_ident(int idx, char *buf, int len)
- {
- char response[512], uid[512], buf1[UHOSTLEN];
- int i;
- sscanf(buf, "%*[^:]:%[^:]:%*[^:]:%[^\n]\n", response, uid);
- rmspace(response);
- if (response[0] != 'U') {
- dcc[idx].timeval = now;
- return;
- }
- rmspace(uid);
- uid[20] = 0; /* 20 character ident max */
- for (i = 0; i < dcc_total; i++)
- if ((dcc[i].type == &DCC_IDENTWAIT) &&
- (dcc[i].sock == dcc[idx].u.ident_sock)) {
- simple_sprintf(buf1, "%s@%s", uid, dcc[idx].host);
- dcc_telnet_got_ident(i, buf1);
- }
- dcc[idx].u.other = 0;
- killsock(dcc[idx].sock);
- lostdcc(idx);
- }
- void eof_dcc_ident(int idx)
- {
- char buf[UHOSTLEN];
- int i;
- for (i = 0; i < dcc_total; i++)
- if ((dcc[i].type == &DCC_IDENTWAIT) &&
- (dcc[i].sock == dcc[idx].u.ident_sock)) {
- putlog(LOG_MISC, "*", DCC_EOFIDENT);
- simple_sprintf(buf, "telnet@%s", dcc[idx].host);
- dcc_telnet_got_ident(i, buf);
- }
- killsock(dcc[idx].sock);
- dcc[idx].u.other = 0;
- lostdcc(idx);
- }
- static void display_dcc_ident(int idx, char *buf)
- {
- sprintf(buf, "idnt (sock %d)", dcc[idx].u.ident_sock);
- }
- struct dcc_table DCC_IDENT =
- {
- "IDENT",
- 0,
- eof_dcc_ident,
- dcc_ident,
- &identtimeout,
- eof_dcc_ident,
- display_dcc_ident,
- NULL,
- NULL,
- NULL
- };
- static void dcc_telnet_got_ident(int i, char *host)
- {
- int idx;
- char x[1024];
- for (idx = 0; idx < dcc_total; idx++)
- if ((dcc[idx].type == &DCC_TELNET) &&
- (dcc[idx].sock == dcc[i].u.ident_sock))
- break;
- dcc[i].u.other = 0;
- if (dcc_total == idx) {
- putlog(LOG_MISC, "*", DCC_LOSTIDENT);
- killsock(dcc[i].sock);
- lostdcc(i);
- return;
- }
- strncpyz(dcc[i].host, host, UHOSTLEN);
- egg_snprintf(x, sizeof x, "-telnet!%s", dcc[i].host);
- if (protect_telnet) {
- struct userrec *u;
- int ok = 1;
- u = get_user_by_host(x);
- /* Not a user or +p & require p OR +o */
- if (!u)
- ok = 0;
- #ifdef HUB
- if (ok && !(u->flags & USER_HUBA))
- ok = 0;
- #endif
- #ifdef LEAF
- /* if I am a chanhub and they dont have +c then drop */
- if (ok && (ischanhub() && !(u->flags & USER_CHUBA)))
- ok = 0;
- #endif
- /* else if (!(u->flags & USER_PARTY))
- ok = 0; */
- if (!ok && u && (u->flags & USER_BOT))
- ok = 1;
- if (!ok && (dcc[idx].status & LSTN_PUBLIC))
- ok = 1;
- if (!ok) {
- putlog(LOG_MISC, "*", DCC_NOACCESS, dcc[i].host);
- killsock(dcc[i].sock);
- lostdcc(i);
- return;
- }
- }
- if (match_ignore(x)) {
- killsock(dcc[i].sock);
- lostdcc(i);
- return;
- }
- /* Script? */
- if (!strcmp(dcc[idx].nick, "(script)")) {
- dcc[i].type = &DCC_SOCKET;
- dcc[i].u.other = NULL;
- strcpy(dcc[i].nick, "*");
- check_tcl_listen(dcc[idx].host, dcc[i].sock);
- return;
- }
- /* Do not buffer data anymore. All received and stored data is passed
- over to the dcc functions from now on. */
- sockoptions(dcc[i].sock, EGG_OPTION_UNSET, SOCK_BUFFER);
- dcc[i].type = &DCC_TELNET_ID;
- dcc[i].u.chat = get_data_ptr(sizeof(struct chat_info));
- egg_bzero(dcc[i].u.chat, sizeof(struct chat_info));
- /* Copy acceptable-nick/host mask */
- dcc[i].status = STAT_TELNET | STAT_ECHO;
- if (!strcmp(dcc[idx].nick, "(bots)"))
- dcc[i].status |= STAT_BOTONLY;
- if (!strcmp(dcc[idx].nick, "(users)"))
- dcc[i].status |= STAT_USRONLY;
- /* Copy acceptable-nick/host mask */
- strncpyz(dcc[i].nick, dcc[idx].host, HANDLEN);
- dcc[i].timeval = now;
- strcpy(dcc[i].u.chat->con_chan, chanset ? chanset->dname : "*");
- /* This is so we dont tell someone doing a portscan anything
- * about ourselves. <cybah>
- */
- //n ssl_link(dcc[i].sock, ACCEPT_SSL);
- #ifdef HUB
- dprintf(i, "\n");
- #else
- dprintf(i, "%s", rand_dccresp());
- #endif
- }
|