cmds.cc 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863
  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. * cmds.c -- handles:
  22. * commands from a user via dcc
  23. * (split in 3, this portion contains no-irc commands)
  24. *
  25. */
  26. #include "common.h"
  27. #include "cmds.h"
  28. #include "conf.h"
  29. #include "binary.h"
  30. #include "color.h"
  31. #include "settings.h"
  32. #include "settings.h"
  33. #include "adns.h"
  34. #include "debug.h"
  35. #include "dcc.h"
  36. #include "shell.h"
  37. #include "misc.h"
  38. #include "net.h"
  39. #include "userrec.h"
  40. #include "users.h"
  41. #include "egg_timer.h"
  42. #include "userent.h"
  43. #include "binds.h"
  44. #include "match.h"
  45. #include "main.h"
  46. #include "dccutil.h"
  47. #include "chanprog.h"
  48. #include "botmsg.h"
  49. #include "botcmd.h"
  50. #include "botnet.h"
  51. #include "tandem.h"
  52. #include "misc_file.h"
  53. #include "help.h"
  54. #include "socket.h"
  55. #include "traffic.h" /* egg_traffic_t */
  56. #include "core_binds.h"
  57. #include "libtcl.h"
  58. #include "src/mod/console.mod/console.h"
  59. #include "src/mod/server.mod/server.h"
  60. #include "src/mod/irc.mod/irc.h"
  61. #include "src/mod/update.mod/update.h"
  62. #include "src/mod/channels.mod/channels.h"
  63. #include "src/mod/share.mod/share.h"
  64. #include <bdlib/src/String.h>
  65. #include <bdlib/src/Stream.h>
  66. #include <bdlib/src/Array.h>
  67. #include <bdlib/src/base64.h>
  68. #include <ctype.h>
  69. #include <stdlib.h>
  70. #include <sys/types.h>
  71. #include <sys/utsname.h>
  72. #include <signal.h>
  73. extern egg_traffic_t traffic;
  74. mycmds cmdlist[300]; /* the list of dcc cmds for help system */
  75. int cmdi = 0;
  76. static char *btos(unsigned long);
  77. char s1_10[3] = "",s1_4[3] = "",s1_12[3] = "";
  78. static void tell_who(int idx, int chan)
  79. {
  80. int i, k, ok = 0, atr = dcc[idx].user ? dcc[idx].user->flags : 0;
  81. size_t nicklen;
  82. char format[81] = "";
  83. char s[1024] = "";
  84. if (!chan)
  85. dprintf(idx, "Party line members: (^ = admin, * = owner, + = master, @ = op)\n");
  86. else {
  87. dprintf(idx, "People on channel %s%d: (^ = admin, * = owner, + = master, @ = op)\n",
  88. (chan < GLOBAL_CHANS) ? "" : "*",
  89. chan % GLOBAL_CHANS);
  90. }
  91. /* calculate max nicklen */
  92. nicklen = 0;
  93. for (i = 0; i < dcc_total; i++) {
  94. if(dcc[i].type && strlen(dcc[i].nick) > nicklen)
  95. nicklen = strlen(dcc[i].nick);
  96. }
  97. if(nicklen < 9) nicklen = 9;
  98. for (i = 0; i < dcc_total; i++)
  99. if (dcc[i].type && dcc[i].type == &DCC_CHAT)
  100. if (dcc[i].u.chat->channel == chan) {
  101. if (atr & USER_OWNER) {
  102. simple_snprintf(format, sizeof format, " [%%.2li] %%c%%-%zus %%s", nicklen);
  103. egg_snprintf(s, sizeof(s), format,
  104. dcc[i].sock, (geticon(i) == '-' ? ' ' : geticon(i)),
  105. dcc[i].nick, dcc[i].host);
  106. } else {
  107. simple_snprintf(format, sizeof format, " %%c%%-%zus %%s", nicklen);
  108. egg_snprintf(s, sizeof(s), format,
  109. (geticon(i) == '-' ? ' ' : geticon(i)),
  110. dcc[i].nick, dcc[i].host);
  111. }
  112. if (atr & USER_MASTER) {
  113. if (dcc[i].u.chat->con_flags)
  114. simple_sprintf(&s[strlen(s)], " (con:%s)", masktype(dcc[i].u.chat->con_flags));
  115. }
  116. if (now - dcc[i].timeval > 300) {
  117. unsigned long mydays, hrs, mins;
  118. mydays = (now - dcc[i].timeval) / 86400;
  119. hrs = ((now - dcc[i].timeval) - (mydays * 86400)) / 3600;
  120. mins = ((now - dcc[i].timeval) - (hrs * 3600)) / 60;
  121. if (mydays > 0)
  122. simple_sprintf(&s[strlen(s)], " (idle %lud%luh)", mydays, hrs);
  123. else if (hrs > 0)
  124. simple_sprintf(&s[strlen(s)], " (idle %luh%lum)", hrs, mins);
  125. else
  126. simple_sprintf(&s[strlen(s)], " (idle %lum)", mins);
  127. }
  128. dprintf(idx, "%s\n", s);
  129. if (dcc[i].u.chat->away != NULL)
  130. dprintf(idx, " AWAY: %s\n", dcc[i].u.chat->away);
  131. }
  132. for (i = 0; i < dcc_total; i++)
  133. if (dcc[i].type && dcc[i].type == &DCC_BOT) {
  134. if (!ok) {
  135. ok = 1;
  136. dprintf(idx, "Bots connected:\n");
  137. }
  138. strftime(s, 20, "%d %b %H:%M %Z", gmtime(&dcc[i].timeval));
  139. s[20] = 0;
  140. if (atr & USER_OWNER) {
  141. simple_snprintf(format, sizeof format, " [%%.2lu] %%s%%c%%-%zus (%%s) %%s\n", nicklen);
  142. dprintf(idx, format,
  143. dcc[i].sock, dcc[i].status & STAT_CALLED ? "<-" : "->",
  144. dcc[i].status & STAT_SHARE ? '+' : ' ',
  145. dcc[i].nick, s, dcc[i].u.bot->version);
  146. } else {
  147. simple_snprintf(format, sizeof format, " %%s%%c%%-%zus (%%s) %%s\n", nicklen);
  148. dprintf(idx, format,
  149. dcc[i].status & STAT_CALLED ? "<-" : "->",
  150. dcc[i].status & STAT_SHARE ? '+' : ' ',
  151. dcc[i].nick, s, dcc[i].u.bot->version);
  152. }
  153. }
  154. ok = 0;
  155. for (i = 0; i < dcc_total; i++) {
  156. if (dcc[i].type) {
  157. if ((dcc[i].type == &DCC_CHAT) && (dcc[i].u.chat->channel != chan)) {
  158. if (!ok) {
  159. ok = 1;
  160. dprintf(idx, "Other people on the bot:\n");
  161. }
  162. if (atr & USER_OWNER) {
  163. simple_snprintf(format, sizeof format, " [%%.2lu] %%c%%-%zus ", nicklen);
  164. egg_snprintf(s, sizeof(s), format, dcc[i].sock,
  165. (geticon(i) == '-' ? ' ' : geticon(i)), dcc[i].nick);
  166. } else {
  167. simple_snprintf(format, sizeof format, " %%c%%-%zus ", nicklen);
  168. egg_snprintf(s, sizeof(s), format, (geticon(i) == '-' ? ' ' : geticon(i)), dcc[i].nick);
  169. }
  170. if (atr & USER_MASTER) {
  171. if (dcc[i].u.chat->channel < 0)
  172. strlcat(s, "(-OFF-) ", sizeof(s));
  173. else if (!dcc[i].u.chat->channel)
  174. strlcat(s, "(party) ", sizeof(s));
  175. else
  176. simple_snprintf(&s[strlen(s)], sizeof(s) - strlen(s), "(%5d) ", dcc[i].u.chat->channel);
  177. }
  178. strlcat(s, dcc[i].host, sizeof(s));
  179. if (atr & USER_MASTER) {
  180. if (dcc[i].u.chat->con_flags)
  181. simple_sprintf(&s[strlen(s)], " (con:%s)", masktype(dcc[i].u.chat->con_flags));
  182. }
  183. if (now - dcc[i].timeval > 300) {
  184. k = (now - dcc[i].timeval) / 60;
  185. if (k < 60)
  186. simple_sprintf(&s[strlen(s)], " (idle %dm)", k);
  187. else
  188. simple_sprintf(&s[strlen(s)], " (idle %dh%dm)", k / 60, k % 60);
  189. }
  190. dprintf(idx, "%s\n", s);
  191. if (dcc[i].u.chat->away != NULL)
  192. dprintf(idx, " AWAY: %s\n", dcc[i].u.chat->away);
  193. }
  194. }
  195. }
  196. }
  197. static void cmd_whom(int idx, char *par)
  198. {
  199. putlog(LOG_CMDS, "*", "#%s# whom %s", dcc[idx].nick, par);
  200. if (par[0] == '*' || !par[0]) {
  201. answer_local_whom(idx, -1);
  202. return;
  203. }
  204. int chan = -1;
  205. if ((par[0] < '0') || (par[0] > '9')) {
  206. if (chan <= 0) {
  207. dprintf(idx, "No such channel exists.\n");
  208. return;
  209. }
  210. } else
  211. chan = atoi(par);
  212. if ((chan < 0) || (chan > 99999)) {
  213. dprintf(idx, "Channel number out of range: must be between 0 and 99999.\n");
  214. return;
  215. }
  216. answer_local_whom(idx, chan);
  217. }
  218. static void cmd_botset(int idx, char *par)
  219. {
  220. char *botnick = NULL;
  221. if (!par[0] || !(botnick = newsplit(&par))) {
  222. dprintf(idx, "Usage: botset <bot> [<+/->list] [<var> [data|-]]\n");
  223. return;
  224. }
  225. struct userrec *u = get_user_by_handle(userlist, botnick);
  226. if (!u || !u->bot) {
  227. dprintf(idx, "%s is not a valid bot.\n", botnick);
  228. return;
  229. }
  230. if (cmd_set_real(botnick, idx, par))
  231. write_userfile(idx);
  232. return;
  233. }
  234. static void cmd_set(int idx, char *par)
  235. {
  236. // if (!par[0]) {
  237. // dprintf(idx, "Usage: set [<+/->list] <var> [data]\n");
  238. // return;
  239. // }
  240. if (cmd_set_real(NULL, idx, par))
  241. write_userfile(idx);
  242. return;
  243. }
  244. static void cmd_cmdpass(int idx, char *par)
  245. {
  246. char *cmd = NULL, *pass = NULL;
  247. /* cmdpass [command [newpass]] */
  248. cmd = newsplit(&par);
  249. putlog(LOG_CMDS, "*", "#%s# cmdpass %s ...", dcc[idx].nick, cmd[0] ? cmd : "");
  250. if (!isowner(dcc[idx].nick)) {
  251. putlog(LOG_WARN, "*", "%s attempted to modify command password for %s - not perm owner", dcc[idx].nick, cmd);
  252. dprintf(idx, "Perm owners only.\n");
  253. return;
  254. }
  255. pass = newsplit(&par);
  256. if (!cmd || !cmd[0] || !pass || !pass[0]) {
  257. dprintf(idx, "Usage: cmdpass <command> <password> [newpassword]\n");
  258. dprintf(idx, " Specifying the password but not a new one will clear it.\n");
  259. return;
  260. }
  261. strtolower(cmd);
  262. if (!findcmd(cmd, 0)) {
  263. dprintf(idx, "No such DCC command.\n");
  264. return;
  265. }
  266. int has_pass = has_cmd_pass(cmd);
  267. if (!has_pass && par[0]) {
  268. dprintf(idx, "That cmd has no password.\n");
  269. return;
  270. }
  271. if (strlen(pass) > MAXPASSLEN)
  272. pass[MAXPASSLEN] = 0;
  273. if (has_pass) {
  274. if (!check_cmd_pass(cmd, pass)) {
  275. putlog(LOG_WARN, "*", "%s attempted to modify command password for %s - invalid password specified", dcc[idx].nick, cmd);
  276. dprintf(idx, "Wrong password.\n");
  277. return;
  278. }
  279. if (!par[0]) {
  280. set_cmd_pass(cmd, 1);
  281. dprintf(idx, "Removed command password for %s\n", cmd);
  282. return;
  283. }
  284. }
  285. char *epass = NULL, tmp[256] = "";
  286. epass = salted_sha1(par[0] ? par : pass);
  287. simple_snprintf(tmp, sizeof tmp, "%s %s", cmd, epass);
  288. free(epass);
  289. if (has_pass)
  290. dprintf(idx, "Changed command password for %s\n", cmd);
  291. else
  292. dprintf(idx, "Set command password for %s to '%s'\n", cmd, par[0] ? par : pass);
  293. set_cmd_pass(tmp, 1);
  294. write_userfile(idx);
  295. }
  296. static void cmd_lagged(int idx, char *par)
  297. {
  298. /* Lists botnet lag to *directly connected* bots */
  299. putlog(LOG_CMDS, "*", "#%s# lagged %s", dcc[idx].nick, par);
  300. for (int i = 0; i < dcc_total; i++) {
  301. if (dcc[i].type && dcc[i].type == &DCC_BOT) {
  302. dprintf(idx, "%9s - %d seconds\n", dcc[i].nick, (dcc[i].pingtime > 120) ? (int) (now - dcc[i].pingtime) : (int) dcc[i].pingtime);
  303. }
  304. }
  305. }
  306. static void cmd_me(int idx, char *par)
  307. {
  308. if (dcc[idx].simul >= 0) {
  309. dprintf(idx, "Sorry, that cmd isn't available over botcmd.\n");
  310. return;
  311. }
  312. if (dcc[idx].u.chat->channel < 0) {
  313. dprintf(idx, "You have chat turned off.\n");
  314. return;
  315. }
  316. if (!par[0]) {
  317. dprintf(idx, "Usage: me <action>\n");
  318. return;
  319. }
  320. if (dcc[idx].u.chat->away != NULL)
  321. not_away(idx);
  322. for (int i = 0; i < dcc_total; i++)
  323. if (dcc[i].type && (dcc[i].type->flags & DCT_CHAT) && (dcc[i].u.chat->channel == dcc[idx].u.chat->channel) &&
  324. ((i != idx) || (dcc[i].status & STAT_ECHO)))
  325. dprintf(i, "* %s %s\n", dcc[idx].nick, par);
  326. botnet_send_act(idx, conf.bot->nick, dcc[idx].nick, dcc[idx].u.chat->channel, par);
  327. }
  328. static void cmd_motd(int idx, char *par)
  329. {
  330. putlog(LOG_CMDS, "*", "#%s# motd %s", dcc[idx].nick, par);
  331. if (par[0] && (dcc[idx].user->flags & USER_MASTER)) {
  332. char *s = NULL;
  333. size_t size;
  334. size = strlen(par) + 1 + strlen(dcc[idx].nick) + 10 + 1 + 1;
  335. s = (char *) my_calloc(1, size); /* +2: ' 'x2 */
  336. simple_snprintf(s, size, "%s %li %s", dcc[idx].nick, (long)now, par);
  337. var_set_by_name(NULL, "motd", s);
  338. free(s);
  339. dprintf(idx, "Motd set\n");
  340. if (conf.bot->hub)
  341. write_userfile(idx);
  342. } else {
  343. show_motd(idx);
  344. }
  345. }
  346. static void cmd_about(int idx, char *par)
  347. {
  348. char c[80] = "";
  349. putlog(LOG_CMDS, "*", "#%s# about", dcc[idx].nick);
  350. dprintf(idx, STR("Wraith botpack by bryan\n"));
  351. dprintf(idx, STR("http://wraith.botpack.net\n"));
  352. strftime(c, sizeof c, "%c %Z", gmtime(&buildts));
  353. dprintf(idx, "Version: %s\n", egg_version);
  354. dprintf(idx, "Build: %s (%li)\n", c, (long)buildts);
  355. dprintf(idx, "Commit: %s\n", commit);
  356. dprintf(idx, STR("(written from a base of Eggdrop 1.6.12)\n"));
  357. dprintf(idx, "..with credits and thanks to the following:\n");
  358. dprintf(idx, " \n");
  359. dprintf(idx, STR(" * Eggdev for eggdrop obviously\n"));
  360. dprintf(idx, STR(" * $blayzkat$b, my wife, for great love, support, ideas and motivation.\n"));
  361. dprintf(idx, STR(" * $bryguy$b for beta testing, providing code, finding bugs, and providing input.\n"));
  362. dprintf(idx, STR(" * $bSFC$b for providing compile shells, continuous input, feature suggestions, and testing.\n"));
  363. dprintf(idx, STR(" * $bwarchest$b for his dedicated bug finding, testing, input, and original inspiration to code a botpack.\n"));
  364. dprintf(idx, STR(" * $bcontext$b for finding bugs, code, ideas, git, being involved in development.\n"));
  365. dprintf(idx, STR(" * $bxmage$b for beta testing.\n"));
  366. dprintf(idx, STR(" * $bpasswd$b for beta testing, and his dedication to finding bugs.\n"));
  367. dprintf(idx, STR(" * $bpgpkeys$b for finding bugs, and providing input.\n"));
  368. dprintf(idx, STR(" * $bExcelsior$b for celdrop which inspired many features.\n"));
  369. dprintf(idx, STR(" * $bsyt$b for giving me inspiration to code a more secure bot.\n"));
  370. dprintf(idx, STR(" * $bmulder$b for helping with the cookie op algorithm.\n"));
  371. dprintf(idx, STR(" * $bBlackjac$b for helping with the bx auth script with his Sentinel script.\n"));
  372. dprintf(idx, STR(" * $bMystikal$b for various bugs.\n"));
  373. dprintf(idx, STR(" * $bEstella$b for finding bugs, code, ideas, beta testing.\n"));
  374. dprintf(idx, STR(" * $bDimmiez$b for great ideas.\n"));
  375. dprintf(idx, STR(" * $bZero$b for a great stream of ideas, beta testing.\n"));
  376. dprintf(idx, STR(" * $bMafaioz$b for good ideas, support on wraith.no, beta testing.\n"));
  377. dprintf(idx, STR(" * $bTical$b for great ideas.\n"));
  378. dprintf(idx, STR(" * $binsect$b for helping test the RBL code.\n"));
  379. dprintf(idx, STR(" * $bPhillip$b for ideas / code.\n"));
  380. dprintf(idx, STR(" * $bducch$b for ideas / findings bugs / code.\n"));
  381. dprintf(idx, STR(" * $bvap0r$b for providing the best raps and beats (http://wepump.in/music)\n"));
  382. dprintf(idx, STR(" * $bMany$b others.\n"));
  383. dprintf(idx, " \n");
  384. dprintf(idx, STR("For a list of Contributors see: git shortlog -sen master\n"));
  385. dprintf(idx, STR("To Contribute see: http://wraith.botpack.net/wiki/Contributing\n"));
  386. dprintf(idx, STR("Credit for suggestions/bugs can be found at: http://wraith.botpack.net/report/9\n"));
  387. dprintf(idx, STR("Bugs can be reported at: http://wraith.botpack.net/newticket\n"));
  388. dprintf(idx, STR("Bugs can be looked up by #, ie, '#24' in url: http://wraith.botpack.net/ticket/24\n"));
  389. dprintf(idx, " \n");
  390. dprintf(idx, STR("Please support wraith by signing up for a shell at http://www.xzibition.com (coupon 'wraith' for 30%% off)\n"));
  391. dprintf(idx, " \n");
  392. dprintf(idx, STR("The botpack ghost inspired the early versions of wraith and a few cmds.\n"));
  393. dprintf(idx, STR("* $beinride$b\n"));
  394. dprintf(idx, STR("* $bievil$b\n"));
  395. dprintf(idx, "\n");
  396. dprintf(idx, STR("The following botpacks gave inspiration, ideas, and some code:\n"));
  397. dprintf(idx, STR(" * $uawptic$u by $blordoptic$b\n"));
  398. dprintf(idx, STR(" * $uoptikz$u by $bryguy$b and $blordoptic$b\n"));
  399. dprintf(idx, STR(" * $uceldrop$u by $bexcelsior$b\n"));
  400. dprintf(idx, STR(" * $ugenocide$u by $bCrazi$b, $bDor$b, $bpsychoid$b, and $bAce24$b\n"));
  401. dprintf(idx, STR(" * $utfbot$u by $bwarknite$b and $bloslinux$b\n"));
  402. }
  403. static void cmd_addline(int idx, char *par)
  404. {
  405. if (!par[0]) {
  406. dprintf(idx, "Usage: addline <user>\n");
  407. return;
  408. }
  409. struct userrec *u = NULL;
  410. putlog(LOG_CMDS, "*", "#%s# addline %s", dcc[idx].nick, par);
  411. u = get_user_by_handle(userlist, par);
  412. if (!u || (u && !whois_access(dcc[idx].user, u))) {
  413. dprintf(idx, "No such user.\n");
  414. return;
  415. }
  416. struct list_type *q = (struct list_type *) get_user(&USERENTRY_HOSTS, u);
  417. char *hostbuf = (char *) my_calloc(1, 1);
  418. size_t siz = 1;
  419. for (; q; q = q->next) {
  420. siz = strlen(hostbuf) + strlen(q->extra) + 2;
  421. hostbuf = (char *) my_realloc(hostbuf, siz);
  422. strlcat(hostbuf, q->extra, siz);
  423. strlcat(hostbuf, " ", siz);
  424. }
  425. siz = strlen(hostbuf) + strlen(u->handle) + 19 + 1;
  426. char *outbuf = (char *) my_calloc(1, siz);
  427. simple_snprintf(outbuf, siz, "Addline: +user %s %s", u->handle, hostbuf);
  428. dumplots(idx, "", outbuf);
  429. free(hostbuf);
  430. free(outbuf);
  431. }
  432. static void cmd_away(int idx, char *par)
  433. {
  434. if (dcc[idx].simul >= 0) {
  435. dprintf(idx, "Sorry, that cmd isn't available over botcmd.\n");
  436. return;
  437. }
  438. if (strlen(par) > 60)
  439. par[60] = 0;
  440. set_away(idx, par);
  441. }
  442. static void cmd_back(int idx, char *par)
  443. {
  444. if (dcc[idx].simul >= 0) {
  445. dprintf(idx, "Sorry, that cmd isn't available over botcmd.\n");
  446. return;
  447. }
  448. not_away(idx);
  449. }
  450. static void cmd_newpass(int idx, char *par)
  451. {
  452. if (!par[0]) {
  453. dprintf(idx, "Usage: newpass <newpassword|rand>\n");
  454. return;
  455. }
  456. char *newpass = newsplit(&par), *pass = NULL;
  457. putlog(LOG_CMDS, "*", "#%s# newpass...", dcc[idx].nick);
  458. if (!strcmp(newpass, "rand")) {
  459. pass = (char*)my_calloc(1, MAXPASSLEN + 1);
  460. make_rand_str(pass, MAXPASSLEN);
  461. } else {
  462. if (!goodpass(newpass, idx, NULL)) {
  463. return;
  464. }
  465. pass = strdup(newpass);
  466. }
  467. set_user(&USERENTRY_PASS, dcc[idx].user, pass);
  468. dprintf(idx, "Changed your password to: %s\n", pass);
  469. if (conf.bot->hub)
  470. write_userfile(idx);
  471. free(pass);
  472. }
  473. static void cmd_secpass(int idx, char *par)
  474. {
  475. if (!par[0]) {
  476. dprintf(idx, "Usage: secpass <newsecpass>\nIf you use \"rand\" as the secpass, a random pass will be chosen.\n");
  477. return;
  478. }
  479. char *newpass = newsplit(&par), pass[MAXPASSLEN + 1] = "";
  480. putlog(LOG_CMDS, "*", "#%s# secpass...", dcc[idx].nick);
  481. if (!strcmp(newpass, "rand")) {
  482. make_rand_str(pass, MAXPASSLEN);
  483. } else {
  484. if (strlen(newpass) < 6) {
  485. dprintf(idx, "Please use at least 6 characters.\n");
  486. return;
  487. } else
  488. strlcpy(pass, newpass, sizeof(pass));
  489. }
  490. if (strlen(pass) > MAXPASSLEN)
  491. pass[MAXPASSLEN] = 0;
  492. set_user(&USERENTRY_SECPASS, dcc[idx].user, pass);
  493. dprintf(idx, "Changed your secpass to: %s\n", pass);
  494. if (conf.bot->hub)
  495. write_userfile(idx);
  496. }
  497. static void cmd_bots(int idx, char *par)
  498. {
  499. char *node = NULL;
  500. if (par[0])
  501. node = newsplit(&par);
  502. putlog(LOG_CMDS, "*", "#%s# bots %s", dcc[idx].nick, node ? node : "");
  503. tell_bots(idx, 1, node);
  504. }
  505. static void cmd_downbots(int idx, char *par)
  506. {
  507. putlog(LOG_CMDS, "*", "#%s# downbots", dcc[idx].nick);
  508. tell_bots(idx, 0, NULL);
  509. }
  510. static void cmd_bottree(int idx, char *par)
  511. {
  512. putlog(LOG_CMDS, "*", "#%s# bottree", dcc[idx].nick);
  513. tell_bottree(idx);
  514. }
  515. static int my_cmp(const mycmds *c1, const mycmds *c2)
  516. {
  517. return strcmp(c1->name, c2->name);
  518. }
  519. static void cmd_nohelp(int idx, char *par)
  520. {
  521. char *buf = (char *) my_calloc(1, 1);
  522. size_t siz = 1;
  523. bind_entry_t *entry = NULL;
  524. bind_table_t *table = bind_table_lookup("dcc");
  525. buf[0] = 0;
  526. for (entry = table->entries; entry; entry = entry->next) {
  527. if (findhelp(entry->mask) == NULL) {
  528. siz = strlen(buf) + 2 + strlen(entry->mask) + 1;
  529. buf = (char *) my_realloc(buf, siz);
  530. strlcat(buf, entry->mask, siz);
  531. strlcat(buf, ", ", siz);
  532. }
  533. }
  534. dumplots(idx, "", buf);
  535. }
  536. bool is_restricted_cmd(const char* name) {
  537. if (name) {
  538. if (!HAVE_MDOP && !strcasecmp(name, "mmode"))
  539. return 1;
  540. }
  541. return 0;
  542. }
  543. static int comp_help_t(const void *m1, const void *m2) {
  544. const help_t *mi1 = (const help_t *) m1;
  545. const help_t *mi2 = (const help_t *) m2;
  546. return strcasecmp(mi1->cmd, mi2->cmd);
  547. }
  548. help_t *
  549. findcmd(const char *lookup, bool care_about_type)
  550. {
  551. help_t key;
  552. key.cmd = (char*)lookup;
  553. help_t *h_entry = (help_t *) bsearch(&key, &help, lengthof(help) - 1, sizeof(help_t), comp_help_t);
  554. if (h_entry && ((care_about_type && have_cmd(h_entry->cmd, h_entry->type)) || (!care_about_type)))
  555. return h_entry;
  556. return NULL;
  557. }
  558. static void cmd_help(int idx, char *par)
  559. {
  560. char flg[100] = "", *fcats = NULL, temp[100] = "", buf[2046] = "", match[20] = "";
  561. int fnd = 0, done = 0, nowild = 0;
  562. struct flag_record fr = {FR_GLOBAL | FR_CHAN | FR_ANYCH, 0, 0, 0 };
  563. simple_snprintf(temp, sizeof temp, "a|- a|a n|- n|n m|- m|m m|o i|- o|o o|- p|- -|-");
  564. fcats = temp;
  565. putlog(LOG_CMDS, "*", "#%s# help %s", dcc[idx].nick, par);
  566. get_user_flagrec(dcc[idx].user, &fr, NULL);
  567. build_flags(flg, &fr, NULL);
  568. if (!par[0]) {
  569. simple_snprintf(match, sizeof(match), "*");
  570. } else {
  571. if (!strchr(par, '*') && !strchr(par, '?'))
  572. nowild++;
  573. strlcpy(match, newsplit(&par), sizeof(match));
  574. }
  575. if (!nowild)
  576. dprintf(idx, "Showing help topics matching '%s' for flags: (%s)\n", match, flg);
  577. qsort(cmdlist, cmdi, sizeof(mycmds), (int (*)(const void *, const void *)) &my_cmp);
  578. /* even if we have nowild, we loop to conserve code/space */
  579. while (!done) {
  580. int i = 0, end = 0, first = 1, n;
  581. char *flag = NULL;
  582. flag = newsplit(&fcats);
  583. if (!flag[0])
  584. done = 1;
  585. for (n = 0; n < cmdi; n++) { /* loop each command */
  586. if (!flagrec_ok(&cmdlist[n].flags, &fr) || !wild_match(match, (char *) cmdlist[n].name))
  587. continue;
  588. // Auth?
  589. if (!(!dcc[idx].irc || (dcc[idx].irc && (cmdlist[n].type & AUTH_ALL))))
  590. continue;
  591. fnd++;
  592. if (nowild) {
  593. flg[0] = 0;
  594. build_flags(flg, &(cmdlist[n].flags), NULL);
  595. dprintf(idx, "Showing you help for '%s' (%s):\n", match, flg);
  596. help_t *h_entry = NULL;
  597. if ((h_entry = findhelp(match)) != NULL) {
  598. if (h_entry->garble)
  599. showhelp(idx, &fr, degarble(h_entry->garble, h_entry->desc));
  600. else
  601. showhelp(idx, &fr, h_entry->desc);
  602. }
  603. done = 1;
  604. break;
  605. } else {
  606. flg[0] = 0;
  607. build_flags(flg, &(cmdlist[n].flags), NULL);
  608. if (!strcmp(flg, flag)) {
  609. if (first) {
  610. dprintf(idx, "%s\n", buf[0] ? buf : "");
  611. if (dcc[idx].irc)
  612. dprintf(idx, "# IRC (%s)\n", flag);
  613. else
  614. dprintf(idx, "# DCC (%s)\n", flag);
  615. simple_snprintf(buf, sizeof(buf), " ");
  616. }
  617. if (end && !first) {
  618. dprintf(idx, "%s\n", buf[0] ? buf : "");
  619. /* we dumped the buf to dprintf, now start a new one... */
  620. simple_snprintf(buf, sizeof(buf), " ");
  621. }
  622. size_t blen = strlen(buf);
  623. egg_snprintf(&buf[blen], sizeof(buf) - blen, "%-14.14s", cmdlist[n].name);
  624. first = 0;
  625. end = 0;
  626. i++;
  627. }
  628. if (i >= 5) {
  629. end = 1;
  630. i = 0;
  631. }
  632. }
  633. }
  634. }
  635. if (buf[0])
  636. dprintf(idx, "%s\n", buf);
  637. if (fnd)
  638. dprintf(idx, "--End help listing\n");
  639. if (!strcmp(match, "*")) {
  640. dprintf(idx, "For individual command help, type: %shelp <command>\n", (dcc[idx].u.chat->channel >= 0) ? settings.dcc_prefix : "");
  641. } else if (!fnd) {
  642. dprintf(idx, "No match for '%s'.\n", match);
  643. }
  644. dprintf(idx, "FAQ: http://wraith.botpack.net/wiki/FrequentlyAskedQuestions\n");
  645. dprintf(idx, "Documentation: http://wraith.botpack.net/wiki/Documentation\n");
  646. }
  647. static void cmd_addlog(int idx, char *par)
  648. {
  649. putlog(LOG_CMDS, "*", "#%s# addlog %s", dcc[idx].nick, par);
  650. putlog(LOG_MISC, "*", "%s: %s", dcc[idx].nick, par);
  651. if (!par[0]) {
  652. dprintf(idx, "Usage: addlog <message>\n");
  653. return;
  654. }
  655. dprintf(idx, "Placed entry in the log file.\n");
  656. }
  657. static void cmd_who(int idx, char *par)
  658. {
  659. if (par[0]) {
  660. if (dcc[idx].u.chat->channel < 0) {
  661. dprintf(idx, "You have chat turned off.\n");
  662. return;
  663. }
  664. putlog(LOG_CMDS, "*", "#%s# who %s", dcc[idx].nick, par);
  665. if (!strcasecmp(par, conf.bot->nick))
  666. tell_who(idx, dcc[idx].u.chat->channel);
  667. else {
  668. int i = nextbot(par);
  669. if (i < 0) {
  670. dprintf(idx, "That bot isn't connected.\n");
  671. } else if (dcc[idx].u.chat->channel > 99999)
  672. dprintf(idx, "You are on a local channel.\n");
  673. else {
  674. char s[40] = "";
  675. simple_snprintf(s, sizeof(s), "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick);
  676. botnet_send_who(i, s, par, dcc[idx].u.chat->channel);
  677. }
  678. }
  679. } else {
  680. putlog(LOG_CMDS, "*", "#%s# who", dcc[idx].nick);
  681. if (dcc[idx].u.chat->channel < 0)
  682. tell_who(idx, 0);
  683. else
  684. tell_who(idx, dcc[idx].u.chat->channel);
  685. }
  686. }
  687. static void cmd_whois(int idx, char *par)
  688. {
  689. putlog(LOG_CMDS, "*", "#%s# whois %s", dcc[idx].nick, par);
  690. tell_user_ident(idx, par[0] ? par : dcc[idx].nick);
  691. }
  692. static void match(int idx, char *par, int isbot)
  693. {
  694. putlog(LOG_CMDS, "*", "#%s# match%s %s", dcc[idx].nick, isbot ? "bot" : "", par);
  695. if (!par[0]) {
  696. dprintf(idx, "Usage: match%s <%snick/host> [[skip] count]\n", isbot ? "bot" : "", isbot ? "bot" : "");
  697. return;
  698. }
  699. int start = 1, limit = 20;
  700. char *s = newsplit(&par), *chname = NULL;
  701. if (strchr(CHANMETA, par[0]) != NULL)
  702. chname = newsplit(&par);
  703. else
  704. chname = "";
  705. if (atoi(par) > 0) {
  706. char *s1 = newsplit(&par);
  707. if (atoi(par) > 0) {
  708. start = atoi(s1);
  709. limit = atoi(par);
  710. } else
  711. limit = atoi(s1);
  712. }
  713. tell_users_match(idx, s, start, limit, chname, isbot);
  714. }
  715. static void cmd_matchbot(int idx, char *par)
  716. {
  717. match(idx, par, 1);
  718. }
  719. static void cmd_match(int idx, char *par)
  720. {
  721. match(idx, par, 0);
  722. dprintf(idx, "- If trying to match a bot, please use '%smatchbot %s'\n", (dcc[idx].u.chat->channel >= 0) ? settings.dcc_prefix : "", par);
  723. }
  724. static void cmd_update(int idx, char *par)
  725. {
  726. putlog(LOG_CMDS, "*", "#%s# update %s", dcc[idx].nick, par);
  727. if (!conf.bot->hub && !conf.bot->localhub) {
  728. dprintf(idx, "Please use '%s%s%s' for this login/shell.\n", RED(idx), conf.localhub, COLOR_END(idx));
  729. return;
  730. }
  731. if (!par[0])
  732. dprintf(idx, "Usage: update <binname>\n");
  733. updatebin(idx, par, 1);
  734. }
  735. static void cmd_uptime(int idx, char *par)
  736. {
  737. putlog(LOG_CMDS, "*", "#%s# uptime", dcc[idx].nick);
  738. tell_verbose_uptime(idx);
  739. }
  740. static void print_users(char *work, int idx, int *cnt, int *tt, int bot, int flags, int notflags, const char *str, size_t worksiz)
  741. {
  742. struct userrec *u = NULL;
  743. for (u = userlist; u; u = u->next) {
  744. if (whois_access(dcc[idx].user, u) &&
  745. ((bot && u->bot) || (!bot && !u->bot)) &&
  746. ((!flags) || (u->flags & flags)) &&
  747. ((!notflags) || !(u->flags & notflags)) &&
  748. (!bot || (bot == 2 && bot_hublevel(u) < 999) || (bot == 1 && bot_hublevel(u) == 999))) {
  749. if (!*cnt)
  750. simple_snprintf(work, worksiz, "%-11s: ", str);
  751. else
  752. strlcat(work, ", ", worksiz);
  753. strlcat(work, u->handle, worksiz);
  754. (*cnt)++;
  755. (*tt)++;
  756. if (*cnt == 11) {
  757. dprintf(idx, "%s\n", work);
  758. work[0] = 0;
  759. *cnt = 0;
  760. }
  761. }
  762. }
  763. if (work[0])
  764. dprintf(idx, "%s\n", work);
  765. work[0] = 0;
  766. *cnt = 0;
  767. }
  768. #define PRINT_USERS(bot, flags, notflags, str) print_users(work, idx, &cnt, &tt, bot, flags, notflags, str, sizeof(work))
  769. static void cmd_userlist(int idx, char *par)
  770. {
  771. int cnt = 0, tt = 0, bt = 0;
  772. char work[200] = "";
  773. putlog(LOG_CMDS, "*", "#%s# userlist", dcc[idx].nick);
  774. PRINT_USERS(2, 0, 0, "Hubs");
  775. PRINT_USERS(1, 0, BOT_BACKUP, "Main Bots");
  776. PRINT_USERS(1, BOT_BACKUP, 0, "Backup Bots");
  777. bt = tt; /* we don't want to add these duplicates into the total */
  778. PRINT_USERS(1, BOT_CHANHUB, 0, "Chatbots");
  779. PRINT_USERS(1, BOT_DOVOICE, 0, "Voicebots");
  780. PRINT_USERS(1, BOT_DOLIMIT, 0, "Limitbots");
  781. PRINT_USERS(1, BOT_DORESOLV, 0, "Resolvbots");
  782. PRINT_USERS(1, BOT_FLOODBOT, 0, "Floodbots");
  783. tt = 0;
  784. PRINT_USERS(0, USER_ADMIN, 0, "Admins");
  785. PRINT_USERS(0, USER_OWNER, USER_ADMIN, "Owners");
  786. PRINT_USERS(0, USER_MASTER, USER_OWNER, "Masters");
  787. PRINT_USERS(0, USER_OP, USER_MASTER, "Ops");
  788. PRINT_USERS(0, 0, USER_OP, "Users");
  789. dprintf(idx, "Total bots : %d\n", bt);
  790. dprintf(idx, "Total users: %d\n", tt);
  791. return;
  792. }
  793. static void cmd_groups(int idx, char *par)
  794. {
  795. struct userrec *u = NULL;
  796. putlog(LOG_CMDS, "*", "#%s# groups %s", dcc[idx].nick, par);
  797. bd::String botnick(newsplit(&par));
  798. if (botnick.length() && !(u = get_user_by_handle(userlist, botnick.c_str()))) {
  799. dprintf(idx, "No such bot.\n");
  800. return;
  801. }
  802. if (u && !u->bot) {
  803. dprintf(idx, "%s is not a bot.\n", botnick.c_str());
  804. return;
  805. }
  806. bd::Array<bd::String> globalgroups = bd::String(var_get_gdata("groups")).split(",");
  807. bd::Array<bd::String> allgroups;
  808. bd::HashTable<bd::String, bd::Array<bd::String> > groupBots;
  809. bd::HashTable<bd::String, bd::Array<bd::String> > botGroups;
  810. size_t maxGroupLen = 0;
  811. // Need to loop over every bot and make a list of all groups and bots which are in those groups
  812. for (u = userlist; u; u = u->next) {
  813. if (u->bot && bot_hublevel(u) == 999) {
  814. // Gather all the groups for this bot
  815. botGroups[u->handle] = bd::String(var_get_bot_data(u, "groups", true)).split(",");
  816. for (size_t i = 0; i < botGroups[u->handle].length(); ++i) {
  817. const bd::String group(botGroups[u->handle][i]);
  818. if (group.length() > maxGroupLen) {
  819. maxGroupLen = group.length();
  820. }
  821. // Add their groups into the master list
  822. if (allgroups.find(group) == allgroups.npos) {
  823. allgroups << group;
  824. }
  825. // Add them to the list for this group
  826. groupBots[group] << u->handle;
  827. }
  828. }
  829. }
  830. if (botnick.length()) {
  831. dprintf(idx, "%s is in groups: %s\n", botnick.c_str(), static_cast<bd::String>(botGroups[botnick].join(" ")).c_str());
  832. dprintf(idx, "Total groups: %zu/%zu\n", botGroups[botnick].length(), allgroups.length());
  833. } else {
  834. // Display all groups and which bots are in them
  835. for (size_t i = 0; i < allgroups.length(); ++i) {
  836. const bd::String group(allgroups[i]);
  837. const bd::Array<bd::String> bots(groupBots[group]);
  838. dumplots(idx, bd::String::printf("%-*s: ", int(maxGroupLen), group.c_str()).c_str(), static_cast<bd::String>(bots.join(" ")).c_str());
  839. }
  840. dprintf(idx, "Total groups: %zu\n", allgroups.length());
  841. }
  842. return;
  843. }
  844. static void cmd_channels(int idx, char *par) {
  845. putlog(LOG_CMDS, "*", "#%s# channels %s", dcc[idx].nick, par);
  846. if (par[0] && (dcc[idx].user->flags & USER_MASTER)) {
  847. if (par[0] == '%') {
  848. show_channels(idx, par);
  849. } else {
  850. struct userrec *user = get_user_by_handle(userlist, par);
  851. if (user && whois_access(dcc[idx].user, user)) {
  852. show_channels(idx, par);
  853. } else {
  854. dprintf(idx, "No such user.\n");
  855. }
  856. }
  857. } else {
  858. show_channels(idx, NULL);
  859. }
  860. if ((dcc[idx].user->flags & USER_MASTER) && !par[0])
  861. dprintf(idx, "You can also %schannels <user|%%group>\n", (dcc[idx].u.chat->channel >= 0) ? settings.dcc_prefix : "");
  862. }
  863. void channels_report(int, int);
  864. void transfer_report(int, int);
  865. void share_report(int, int);
  866. void update_report(int, int);
  867. static void cmd_status(int idx, char *par)
  868. {
  869. int atr = dcc[idx].user ? dcc[idx].user->flags : 0, all = 0;
  870. if (!strcasecmp(par, "all")) {
  871. if (!(atr & USER_MASTER)) {
  872. dprintf(idx, "You do not have Bot Master privileges.\n");
  873. return;
  874. }
  875. putlog(LOG_CMDS, "*", "#%s# status all", dcc[idx].nick);
  876. tell_verbose_status(idx);
  877. dprintf(idx, "\n");
  878. tell_settings(idx);
  879. all++;
  880. } else {
  881. putlog(LOG_CMDS, "*", "#%s# status", dcc[idx].nick);
  882. tell_verbose_status(idx);
  883. }
  884. if (!conf.bot->hub) {
  885. server_report(idx, all);
  886. irc_report(idx, all);
  887. }
  888. channels_report(idx, all);
  889. transfer_report(idx, all);
  890. share_report(idx, all);
  891. update_report(idx, all);
  892. }
  893. static void cmd_dccstat(int idx, char *par)
  894. {
  895. putlog(LOG_CMDS, "*", "#%s# dccstat", dcc[idx].nick);
  896. tell_dcc(idx);
  897. }
  898. static void cmd_boot(int idx, char *par)
  899. {
  900. char *who = NULL;
  901. int i, ok = 0;
  902. if (!par[0]) {
  903. dprintf(idx, "Usage: boot nick[@bot]\n");
  904. return;
  905. }
  906. who = newsplit(&par);
  907. if (strchr(who, '@') != NULL) {
  908. char whonick[HANDLEN + 1];
  909. splitcn(whonick, who, '@', sizeof(whonick));
  910. if (!strcasecmp(who, conf.bot->nick)) {
  911. cmd_boot(idx, whonick);
  912. return;
  913. }
  914. i = nextbot(who);
  915. if (i < 0) {
  916. dprintf(idx, "No such bot connected.\n");
  917. return;
  918. }
  919. botnet_send_reject(i, dcc[idx].nick, conf.bot->nick, whonick, who, par[0] ? par : dcc[idx].nick);
  920. putlog(LOG_BOTS, "*", "#%s# boot %s@%s (%s)", dcc[idx].nick, whonick, who, par[0] ? par : dcc[idx].nick);
  921. return;
  922. }
  923. for (i = 0; i < dcc_total; i++) {
  924. if (dcc[i].type && dcc[i].simul == -1 && !strcasecmp(dcc[i].nick, who) && (dcc[i].type->flags & DCT_CANBOOT)) {
  925. if (!whois_access(dcc[idx].user, dcc[i].user)) {
  926. dprintf(idx, "Sorry, you cannot boot %s.\n", dcc[i].nick);
  927. return;
  928. }
  929. dprintf(idx, "Booting %s from the party line.\n", dcc[i].nick);
  930. putlog(LOG_CMDS, "*", "#%s# boot %s %s", dcc[idx].nick, who, par);
  931. do_boot(i, dcc[idx].nick, par);
  932. ok = 1;
  933. }
  934. }
  935. if (!ok)
  936. dprintf(idx, "Who? No such person on the party line.\n");
  937. }
  938. static void cmd_console(int idx, char *par)
  939. {
  940. if (!par[0]) {
  941. dprintf(idx, "Your console is %s: %s (%s).\n",
  942. dcc[idx].u.chat->con_chan,
  943. masktype(dcc[idx].u.chat->con_flags),
  944. maskname(dcc[idx].u.chat->con_flags));
  945. return;
  946. }
  947. char *nick = NULL, s[2] = "", s1[512] = "";
  948. int dest = 0, i, ok = 0, pls, md;
  949. struct flag_record fr = {FR_GLOBAL | FR_CHAN, 0, 0, 0 };
  950. struct chanset_t *chan = NULL;
  951. get_user_flagrec(dcc[idx].user, &fr, dcc[idx].u.chat->con_chan);
  952. strlcpy(s1, par, sizeof(s1));
  953. nick = newsplit(&par);
  954. /* Don't remove '+' as someone couldn't have '+' in CHANMETA cause
  955. * he doesn't use IRCnet ++rtc.
  956. */
  957. if (nick[0] && !strchr(CHANMETA "+-*", nick[0]) && glob_master(fr)) {
  958. for (i = 0; i < dcc_total; i++) {
  959. if (dcc[i].type && !strcasecmp(nick, dcc[i].nick) && (dcc[i].type == &DCC_CHAT) && (!ok)) {
  960. ok = 1;
  961. dest = i;
  962. }
  963. }
  964. if (!ok) {
  965. dprintf(idx, "No such user on the party line!\n");
  966. return;
  967. }
  968. nick[0] = 0;
  969. } else
  970. dest = idx;
  971. if (!nick[0])
  972. nick = newsplit(&par);
  973. /* Consider modeless channels, starting with '+' */
  974. if ((nick [0] == '+' && findchan_by_dname(nick)) ||
  975. (nick [0] != '+' && strchr(CHANMETA "*", nick[0]))) {
  976. chan = findchan_by_dname(nick);
  977. get_user_flagrec(dcc[idx].user, &fr, nick);
  978. if (strcmp(nick, "*") && (!chan || privchan(fr, chan, PRIV_OP))) {
  979. dprintf(idx, "Invalid console channel: %s.\n", nick);
  980. return;
  981. }
  982. if (!chk_op(fr, chan)) {
  983. dprintf(idx, "You don't have op or master access to channel %s.\n", nick);
  984. return;
  985. }
  986. strlcpy(dcc[dest].u.chat->con_chan, nick, sizeof(dcc[dest].u.chat->con_chan));
  987. nick[0] = 0;
  988. if ((dest == idx) && !glob_master(fr) && !chan_master(fr))
  989. /* Consoling to another channel for self */
  990. dcc[dest].u.chat->con_flags &= ~(LOG_MISC | LOG_CMDS | LOG_WALL);
  991. }
  992. if (!nick[0])
  993. nick = newsplit(&par);
  994. pls = 1;
  995. if (nick[0]) {
  996. if ((nick[0] != '+') && (nick[0] != '-'))
  997. dcc[dest].u.chat->con_flags = 0;
  998. for (; *nick; nick++) {
  999. if (*nick == '+')
  1000. pls = 1;
  1001. else if (*nick == '-')
  1002. pls = 0;
  1003. else {
  1004. s[0] = *nick;
  1005. s[1] = 0;
  1006. md = logmodes(s);
  1007. if ((dest == idx) && !glob_master(fr) && pls) {
  1008. if (chan_master(fr))
  1009. md &= ~(LOG_FILES | LOG_DEBUG);
  1010. else
  1011. md &= ~(LOG_MISC | LOG_CMDS | LOG_FILES | LOG_WALL | LOG_DEBUG);
  1012. }
  1013. if (!isowner(dcc[dest].nick) && pls)
  1014. md &= ~(LOG_RAW | LOG_BOTNET | LOG_BOTSHARE);
  1015. if (!glob_admin(fr) && pls)
  1016. md &= ~(LOG_SRVOUT | LOG_DEBUG);
  1017. if (!glob_owner(fr) && pls)
  1018. md &= ~(LOG_ERRORS | LOG_GETIN | LOG_WARN);
  1019. if (!glob_master(fr) && pls)
  1020. md &= ~LOG_BOTS;
  1021. if (pls)
  1022. dcc[dest].u.chat->con_flags |= md;
  1023. else
  1024. dcc[dest].u.chat->con_flags &= ~md;
  1025. }
  1026. }
  1027. }
  1028. putlog(LOG_CMDS, "*", "#%s# console %s", dcc[idx].nick, s1);
  1029. if (dest == idx) {
  1030. dprintf(idx, "Set your console to %s: %s (%s).\n",
  1031. dcc[idx].u.chat->con_chan,
  1032. masktype(dcc[idx].u.chat->con_flags),
  1033. maskname(dcc[idx].u.chat->con_flags));
  1034. } else {
  1035. dprintf(idx, "Set console of %s to %s: %s (%s).\n", dcc[dest].nick,
  1036. dcc[dest].u.chat->con_chan,
  1037. masktype(dcc[dest].u.chat->con_flags),
  1038. maskname(dcc[dest].u.chat->con_flags));
  1039. dprintf(dest, "%s set your console to %s: %s (%s).\n", dcc[idx].nick,
  1040. dcc[dest].u.chat->con_chan,
  1041. masktype(dcc[dest].u.chat->con_flags),
  1042. maskname(dcc[dest].u.chat->con_flags));
  1043. }
  1044. console_dostore(dest);
  1045. }
  1046. static void cmd_date(int idx, char *par)
  1047. {
  1048. char date[50] = "";
  1049. time_t hub;
  1050. putlog(LOG_CMDS, "*", "#%s# date", dcc[idx].nick);
  1051. strftime(date, sizeof date, "%c %Z", localtime(&now));
  1052. dprintf(idx, "%s (local shell time)\n", date);
  1053. strftime(date, sizeof date, "%c %Z", gmtime(&now));
  1054. dprintf(idx, "%s <-- This time is used on the bot.\n", date);
  1055. hub = now + timesync;
  1056. strftime(date, sizeof date, "%c %Z", gmtime(&hub));
  1057. dprintf(idx, "%s <-- Botnet uses this\n", date);
  1058. }
  1059. static void cmd_chhandle(int idx, char *par)
  1060. {
  1061. char hand[HANDLEN + 1] = "", newhand[HANDLEN + 1] = "";
  1062. strlcpy(hand, newsplit(&par), sizeof hand);
  1063. strlcpy(newhand, newsplit(&par), sizeof newhand);
  1064. if (!hand[0] || !newhand[0]) {
  1065. dprintf(idx, "Usage: chhandle <oldhandle> <newhandle>\n");
  1066. return;
  1067. }
  1068. struct userrec *u2 = get_user_by_handle(userlist, hand);
  1069. if (!u2 || (u2 && !whois_access(dcc[idx].user, u2))) {
  1070. dprintf(idx, "No such user!\n");
  1071. return;
  1072. }
  1073. if (u2->bot) {
  1074. dprintf(idx, "Sorry, bot handles cannot be changed from partyline.\n");
  1075. return;
  1076. }
  1077. for (size_t i = 0; i < strlen(newhand); i++)
  1078. if ((newhand[i] <= 32) || (newhand[i] >= 127) || (newhand[i] == '@'))
  1079. newhand[i] = '?';
  1080. if (isowner(hand)) {
  1081. dprintf(idx, "Sorry, perm owners may not change their handle without recompiling binaries.\n");
  1082. return;
  1083. } else if (strchr(BADHANDCHARS, newhand[0]) != NULL)
  1084. dprintf(idx, "Bizarre quantum forces prevent nicknames from starting with '%c'.\n", newhand[0]);
  1085. else if (get_user_by_handle(userlist, newhand) && strcasecmp(hand, newhand))
  1086. dprintf(idx, "Somebody is already using %s.\n", newhand);
  1087. else {
  1088. int atr = dcc[idx].user ? dcc[idx].user->flags : 0, atr2 = u2 ? u2->flags : 0;
  1089. if (!(atr & USER_MASTER) && !u2->bot)
  1090. dprintf(idx, "You can't change handles for non-bots.\n");
  1091. else if (u2->bot && !(atr & USER_OWNER))
  1092. dprintf(idx, "You can't change a bot's nick.\n");
  1093. else if ((atr2 & USER_OWNER) && !(atr & USER_OWNER) &&
  1094. strcasecmp(dcc[idx].nick, hand))
  1095. dprintf(idx, "You can't change a bot owner's handle.\n");
  1096. else if (isowner(hand) && strcasecmp(dcc[idx].nick, hand))
  1097. dprintf(idx, "You can't change a permanent bot owner's handle.\n");
  1098. else if (!strcasecmp(newhand, conf.bot->nick) && !(u2->bot || nextbot(hand) != -1))
  1099. dprintf(idx, "Hey! That's MY name!\n");
  1100. else if (change_handle(u2, newhand)) {
  1101. putlog(LOG_CMDS, "*", "#%s# chhandle %s %s", dcc[idx].nick,
  1102. hand, newhand);
  1103. dprintf(idx, "Changed.\n");
  1104. write_userfile(idx);
  1105. } else
  1106. dprintf(idx, "Failed.\n");
  1107. }
  1108. }
  1109. static void cmd_handle(int idx, char *par)
  1110. {
  1111. char newhandle[HANDLEN + 1] = "";
  1112. strlcpy(newhandle, newsplit(&par), sizeof newhandle);
  1113. if (!newhandle[0]) {
  1114. dprintf(idx, "Usage: handle <new-handle>\n");
  1115. return;
  1116. }
  1117. for (size_t i = 0; i < strlen(newhandle); i++)
  1118. if ((newhandle[i] <= 32) || (newhandle[i] >= 127) || (newhandle[i] == '@'))
  1119. newhandle[i] = '?';
  1120. if (isowner(dcc[idx].nick)) {
  1121. dprintf(idx, "Sorry, perm owners may not change their handle without recompiling binaries.\n");
  1122. return;
  1123. } else if (strchr(BADHANDCHARS, newhandle[0]) != NULL) {
  1124. dprintf(idx, "Bizarre quantum forces prevent handle from starting with '%c'.\n", newhandle[0]);
  1125. } else if (get_user_by_handle(userlist, newhandle) && strcasecmp(dcc[idx].nick, newhandle)) {
  1126. dprintf(idx, "Somebody is already using %s.\n", newhandle);
  1127. } else if (!strcasecmp(newhandle, conf.bot->nick)) {
  1128. dprintf(idx, "Hey! That's MY name!\n");
  1129. } else {
  1130. char oldhandle[HANDLEN + 1] = "";
  1131. strlcpy(oldhandle, dcc[idx].nick, sizeof oldhandle);
  1132. if (change_handle(dcc[idx].user, newhandle)) {
  1133. putlog(LOG_CMDS, "*", "#%s# handle %s", oldhandle, newhandle);
  1134. dprintf(idx, "Okay, changed.\n");
  1135. if (conf.bot->hub)
  1136. write_userfile(idx);
  1137. } else
  1138. dprintf(idx, "Failed.\n");
  1139. }
  1140. }
  1141. static void cmd_chpass(int idx, char *par)
  1142. {
  1143. if (!par[0]) {
  1144. dprintf(idx, "Usage: chpass <handle> [password|rand]\n");
  1145. return;
  1146. }
  1147. char *handle = newsplit(&par);
  1148. struct userrec *u = get_user_by_handle(userlist, handle);
  1149. if (!u || (u && !whois_access(dcc[idx].user, u)))
  1150. dprintf(idx, "No such user.\n");
  1151. else if (u->bot)
  1152. dprintf(idx, "Bots do not have passwords.\n");
  1153. else if (!par[0]) {
  1154. putlog(LOG_CMDS, "*", "#%s# chpass %s [nothing]", dcc[idx].nick, handle);
  1155. set_user(&USERENTRY_PASS, u, NULL);
  1156. dprintf(idx, "Removed password.\n");
  1157. } else {
  1158. bool randpass = 0;
  1159. char *newpass = newsplit(&par), *pass = NULL;
  1160. if (!strcmp(newpass, "rand")) {
  1161. pass = (char*)my_calloc(1, MAXPASSLEN + 1);
  1162. make_rand_str(pass, MAXPASSLEN);
  1163. randpass = 1;
  1164. } else {
  1165. if (!goodpass(newpass, idx, NULL)) {
  1166. return;
  1167. }
  1168. pass = strdup(newpass);
  1169. }
  1170. set_user(&USERENTRY_PASS, u, pass);
  1171. putlog(LOG_CMDS, "*", "#%s# chpass %s [%s]", dcc[idx].nick, handle, randpass ? "random" : "something");
  1172. dprintf(idx, "Password for '%s' changed to: %s\n", handle, pass);
  1173. write_userfile(idx);
  1174. free(pass);
  1175. }
  1176. }
  1177. static void cmd_chsecpass(int idx, char *par)
  1178. {
  1179. if (!par[0]) {
  1180. dprintf(idx, "Usage: chsecpass <handle> [secpass/rand]\n");
  1181. return;
  1182. }
  1183. char *handle = newsplit(&par);
  1184. struct userrec *u = get_user_by_handle(userlist, handle);
  1185. if (!u || (u && !whois_access(dcc[idx].user, u)))
  1186. dprintf(idx, "No such user.\n");
  1187. else if (u->bot)
  1188. dprintf(idx, "Bots do not have secpasses.\n");
  1189. // int atr = dcc[idx].user ? dcc[idx].user->flags : 0;
  1190. // else if ((u->flags & USER_OWNER) && !(atr & USER_OWNER) && strcasecmp(handle, dcc[idx].nick))
  1191. // dprintf(idx, "You can't change a bot owner's secpass.\n");
  1192. // else if (isowner(handle) && strcasecmp(dcc[idx].nick, handle))
  1193. // dprintf(idx, "You can't change a permanent bot owner's secpass.\n");
  1194. else if (!par[0]) {
  1195. putlog(LOG_CMDS, "*", "#%s# chsecpass %s [nothing]", dcc[idx].nick, handle);
  1196. set_user(&USERENTRY_SECPASS, u, NULL);
  1197. dprintf(idx, "Removed secpass.\n");
  1198. } else {
  1199. char *newpass = newsplit(&par), pass[MAXPASSLEN + 1] = "";
  1200. size_t l = strlen(newpass);
  1201. bool randpass = 0;
  1202. if (l > MAXPASSLEN)
  1203. newpass[MAXPASSLEN] = 0;
  1204. if (!strcmp(newpass, "rand")) {
  1205. make_rand_str(pass, MAXPASSLEN);
  1206. randpass = 1;
  1207. } else {
  1208. if (strlen(newpass) < 6) {
  1209. dprintf(idx, "Please use at least 6 characters.\n");
  1210. return;
  1211. } else
  1212. strlcpy(pass, newpass, sizeof(pass));
  1213. }
  1214. if (strlen(pass) > MAXPASSLEN)
  1215. pass[MAXPASSLEN] = 0;
  1216. set_user(&USERENTRY_SECPASS, u, pass);
  1217. putlog(LOG_CMDS, "*", "#%s# chsecpass %s [%s]", dcc[idx].nick, handle, randpass ? "random" : "something");
  1218. dprintf(idx, "Secpass for '%s' changed to: %s\n", handle, pass);
  1219. write_userfile(idx);
  1220. }
  1221. }
  1222. static void cmd_botcmd(int idx, char *par)
  1223. {
  1224. if (dcc[idx].simul >= 0) {
  1225. dprintf(idx, "Sorry, you can't chain '%sbotcmd'.\n", (dcc[idx].u.chat->channel >= 0) ? settings.dcc_prefix : "");
  1226. putlog(LOG_WARN, "*", "%s attempted to chain 'botcmd' over the botnet.", dcc[idx].nick);
  1227. return;
  1228. }
  1229. char *botm = newsplit(&par), *group = NULL, *cmd = NULL;
  1230. bool rand_leaf = 0, all_localhub = 0;
  1231. if (par[0]) {
  1232. // Group specified
  1233. if (par[0] == '%') {
  1234. group = newsplit(&par);
  1235. ++group;
  1236. }
  1237. }
  1238. if (par[0]) {
  1239. cmd = newsplit(&par);
  1240. }
  1241. if (!botm[0] || !cmd || (cmd && !cmd[0])) {
  1242. dprintf(idx, "Usage: botcmd <bot|*|?|&> [%%group] <cmd> [params]\n");
  1243. return;
  1244. }
  1245. int cnt = 0, rleaf = -1, tbots = 0, found = 0;
  1246. bool group_match = false;
  1247. tand_t *tbot = NULL;
  1248. /* the rest of the cmd will be logged remotely */
  1249. if (strcmp(botm, "?"))
  1250. putlog(LOG_CMDS, "*", "#%s# botcmd %s %s ...", dcc[idx].nick, botm, cmd);
  1251. // Restrict dangerous mass commands ('botcmd *' (any *) or 'botcmd &')
  1252. if ((strchr(botm, '*') && !findbot(botm)) || !strcmp(botm, "&") || botm[0] == '%') {
  1253. if (!strncasecmp(cmd, "di", 2) || (!strncasecmp(cmd, "res", 3) && strncasecmp(cmd, "reset", 5)) || !strncasecmp(cmd, "sui", 3) || !strncasecmp(cmd, "pl", 2) || !strncasecmp(cmd, "ac", 2) ||
  1254. !strncasecmp(cmd, "j", 1) || (!strncasecmp(cmd, "dump", 4) && (!strncasecmp(par, "privmsg", 7) || !strncasecmp(par, "notice", 6) || !strncasecmp(par, "quit", 4))) ||
  1255. ((!strncasecmp(cmd, "tcl", 3) || !strncasecmp(cmd, "script", 6)) && strstr(par, "privmsg"))) {
  1256. dprintf(idx, "Not a good idea.\n");
  1257. return;
  1258. } else if (strchr(botm, '*') && !(dcc[idx].user->flags & USER_OWNER)) {
  1259. dprintf(idx, "'botcmd *' is limited to +n only.\n");
  1260. return;
  1261. }
  1262. }
  1263. /* random leaf */
  1264. if (!strcmp(botm, "?")) {
  1265. rand_leaf = 1;
  1266. for (tbot = tandbot; tbot; tbot = tbot->next) {
  1267. if (bot_hublevel(tbot->u) == 999) {
  1268. if (group) {
  1269. group_match = bd::String(var_get_bot_data(tbot->u, "groups", true)).split(',').find(group) != bd::String::npos;
  1270. } else {
  1271. group_match = true;
  1272. }
  1273. if (group_match) {
  1274. tbots++;
  1275. }
  1276. }
  1277. }
  1278. if (tbots)
  1279. rleaf = 1 + randint(tbots); /* 1 <--> tbots */
  1280. }
  1281. /* localhubs */
  1282. if (!strcmp(botm, "&")) {
  1283. if (!(dcc[idx].user->flags & USER_OWNER)) {
  1284. dprintf(idx, "'botcmd &' is limited to +n only.\n");
  1285. return;
  1286. }
  1287. all_localhub = 1;
  1288. for (tbot = tandbot; tbot; tbot = tbot->next) {
  1289. if (bot_hublevel(tbot->u) == 999 && tbot->localhub) {
  1290. if (group) {
  1291. group_match = bd::String(var_get_bot_data(tbot->u, "groups", true)).split(',').find(group) != bd::String::npos;
  1292. } else {
  1293. group_match = true;
  1294. }
  1295. if (group_match) {
  1296. tbots++;
  1297. }
  1298. }
  1299. }
  1300. }
  1301. for (tbot = tandbot; tbot; tbot = tbot->next) {
  1302. if ((rand_leaf && bot_hublevel(tbot->u) != 999) ||
  1303. (all_localhub && (bot_hublevel(tbot->u) != 999 || !tbot->localhub)))
  1304. continue;
  1305. group_match = false;
  1306. if (group && bot_hublevel(tbot->u) == 999) {
  1307. group_match = bd::String(var_get_bot_data(tbot->u, "groups", true)).split(',').find(group) != bd::String::npos;
  1308. } else if (!group) {
  1309. group_match = true;
  1310. }
  1311. if (group_match) {
  1312. cnt++;
  1313. if ((rleaf != -1 && cnt == rleaf) || (rleaf == -1 && (all_localhub || wild_match(botm, tbot->bot)))) {
  1314. if (rleaf != -1)
  1315. putlog(LOG_CMDS, "*", "#%s# botcmd %s %s ...", dcc[idx].nick, tbot->bot, cmd);
  1316. send_remote_simul(idx, tbot->bot, cmd, par ? par : (char *) "");
  1317. found++;
  1318. }
  1319. }
  1320. }
  1321. /* Only wild_match when not using botm=? and strlen(conf.bot->nick) > 1, ie dont match on hubs with 1 letter nicks */
  1322. if ((!(strlen(conf.bot->nick) == 1 && !strcmp(botm, "?")) && wild_match(botm, conf.bot->nick)) || !strcasecmp(botm, conf.bot->nick)) {
  1323. found++;
  1324. check_bind_dcc(cmd, idx, par);
  1325. }
  1326. if (!found) {
  1327. if (group)
  1328. dprintf(idx, "No linked bots found in group '%s'\n", group);
  1329. else
  1330. dprintf(idx, "No bot matching '%s' linked\n", botm);
  1331. }
  1332. return;
  1333. }
  1334. static void cmd_hublevel(int idx, char *par)
  1335. {
  1336. putlog(LOG_CMDS, "*", "#%s# hublevel %s", dcc[idx].nick, par);
  1337. if (!par[0]) {
  1338. dprintf(idx, "Usage: hublevel <bot> <level>\n");
  1339. return;
  1340. }
  1341. char *handle = NULL, *level = NULL;
  1342. struct userrec *u1 = NULL;
  1343. handle = newsplit(&par);
  1344. if (!par[0]) {
  1345. dprintf(idx, "Usage: hublevel <bot> <level>\n");
  1346. dprintf(idx, "A hublevel is required.\n");
  1347. return;
  1348. }
  1349. level = newsplit(&par);
  1350. u1 = get_user_by_handle(userlist, handle);
  1351. if (!u1 || !u1->bot) {
  1352. dprintf(idx, "Useful only for bots.\n");
  1353. return;
  1354. }
  1355. struct bot_addr *bi = NULL, *obi = NULL;
  1356. dprintf(idx, "Changed bot's hublevel.\n");
  1357. obi = (struct bot_addr *) get_user(&USERENTRY_BOTADDR, u1);
  1358. bi = (struct bot_addr *) my_calloc(1, sizeof(struct bot_addr));
  1359. bi->uplink = strdup(obi->uplink);
  1360. bi->address = strdup(obi->address);
  1361. bi->telnet_port = obi->telnet_port;
  1362. bi->relay_port = obi->relay_port;
  1363. bi->hublevel = atoi(level);
  1364. set_user(&USERENTRY_BOTADDR, u1, bi);
  1365. write_userfile(idx);
  1366. }
  1367. static void cmd_uplink(int idx, char *par)
  1368. {
  1369. putlog(LOG_CMDS, "*", "#%s# uplink %s", dcc[idx].nick, par);
  1370. if (!par[0]) {
  1371. dprintf(idx, "Usage: uplink <bot> [uplink]\n");
  1372. return;
  1373. }
  1374. char *handle = NULL, *uplink = NULL;
  1375. struct userrec *u1 = NULL;
  1376. handle = newsplit(&par);
  1377. uplink = newsplit(&par);
  1378. if (!uplink)
  1379. uplink = "";
  1380. u1 = get_user_by_handle(userlist, handle);
  1381. if (!u1 || !u1->bot) {
  1382. dprintf(idx, "Useful only for bots.\n");
  1383. return;
  1384. }
  1385. if (uplink && uplink[0])
  1386. dprintf(idx, "Changed bot's uplink.\n");
  1387. else
  1388. dprintf(idx, "Cleared bot's uplink.\n");
  1389. struct bot_addr *bi = NULL, *obi = NULL;
  1390. obi = (struct bot_addr *) get_user(&USERENTRY_BOTADDR, u1);
  1391. bi = (struct bot_addr *) my_calloc(1, sizeof(struct bot_addr));
  1392. bi->uplink = strdup(uplink);
  1393. bi->address = strdup(obi->address);
  1394. bi->telnet_port = obi->telnet_port;
  1395. bi->relay_port = obi->relay_port;
  1396. bi->hublevel = obi->hublevel;
  1397. set_user(&USERENTRY_BOTADDR, u1, bi);
  1398. write_userfile(idx);
  1399. }
  1400. static void cmd_chaddr(int idx, char *par)
  1401. {
  1402. char *handle = NULL;
  1403. handle = newsplit(&par);
  1404. if (!par[0]) {
  1405. dprintf(idx, "Usage: chaddr <bot> <address[:telnet-port[/relay-port]]>\n");
  1406. return;
  1407. }
  1408. char *addr = NULL;
  1409. struct userrec *u1 = NULL;
  1410. addr = newsplit(&par);
  1411. if (strlen(addr) > UHOSTMAX)
  1412. addr[UHOSTMAX] = 0;
  1413. u1 = get_user_by_handle(userlist, handle);
  1414. if (!u1 || !u1->bot) {
  1415. dprintf(idx, "This command is only useful for tandem bots.\n");
  1416. return;
  1417. }
  1418. if ((u1 && u1->bot) && (!dcc[idx].user || !(dcc[idx].user->flags & USER_OWNER))) {
  1419. dprintf(idx, "You can't change a bot's address.\n");
  1420. return;
  1421. }
  1422. putlog(LOG_CMDS, "*", "#%s# chaddr %s %s", dcc[idx].nick, handle, addr);
  1423. dprintf(idx, "Changed bot's address.\n");
  1424. in_port_t telnet_port = 3333, relay_port = 3333;
  1425. char *p = NULL, *q = NULL;
  1426. #ifdef USE_IPV6
  1427. char *r = NULL;
  1428. #endif /* USE_IPV6 */
  1429. struct bot_addr *bi = NULL, *obi = NULL;
  1430. obi = (struct bot_addr *) get_user(&USERENTRY_BOTADDR, u1);
  1431. bi = (struct bot_addr *) get_user(&USERENTRY_BOTADDR, u1);
  1432. if (bi) {
  1433. telnet_port = bi->telnet_port;
  1434. relay_port = bi->relay_port;
  1435. }
  1436. bi = (struct bot_addr *) my_calloc(1, sizeof(struct bot_addr));
  1437. bi->uplink = strdup(obi->uplink);
  1438. bi->hublevel = obi->hublevel;
  1439. q = strchr(addr, ':');
  1440. /* no port */
  1441. if (!q) {
  1442. bi->address = strdup(addr);
  1443. bi->telnet_port = telnet_port;
  1444. bi->relay_port = relay_port;
  1445. /* with a port, or ipv6 ip */
  1446. } else {
  1447. #ifdef USE_IPV6
  1448. if ((r = strchr(addr, '['))) { /* ipv6 notation [3ffe:80c0:225::] */
  1449. addr++; /* lose the '[' */
  1450. r = strchr(addr, ']'); /* pointer to the ending ']' */
  1451. bi->address = (char *) my_calloc(1, r - addr + 1); /* alloc and copy the addr */
  1452. strlcpy(bi->address, addr, r - addr + 1);
  1453. q = r + 1; /* set q to ':' at addr */
  1454. } else {
  1455. #endif /* !USE_IPV6 */
  1456. bi->address = (char *) my_calloc(1, q - addr + 1);
  1457. strlcpy(bi->address, addr, q - addr + 1);
  1458. #ifdef USE_IPV6
  1459. }
  1460. #endif /* USE_IPV6 */
  1461. /* port */
  1462. p = q + 1;
  1463. bi->telnet_port = atoi(p);
  1464. q = strchr(p, '/');
  1465. if (!q)
  1466. bi->relay_port = bi->telnet_port;
  1467. else
  1468. bi->relay_port = atoi(q + 1);
  1469. }
  1470. set_user(&USERENTRY_BOTADDR, u1, bi);
  1471. write_userfile(idx);
  1472. }
  1473. static void cmd_comment(int idx, char *par)
  1474. {
  1475. char *handle = NULL;
  1476. handle = newsplit(&par);
  1477. if (!par[0]) {
  1478. dprintf(idx, "Usage: comment <handle> <newcomment/none>\n");
  1479. return;
  1480. }
  1481. struct userrec *u1 = get_user_by_handle(userlist, handle);
  1482. if (!u1 || (u1 && !whois_access(dcc[idx].user, u1))) {
  1483. dprintf(idx, "No such user!\n");
  1484. return;
  1485. }
  1486. putlog(LOG_CMDS, "*", "#%s# comment %s %s", dcc[idx].nick, handle, par);
  1487. if (!strcasecmp(par, "none")) {
  1488. dprintf(idx, "Okay, comment blanked.\n");
  1489. set_user(&USERENTRY_COMMENT, u1, NULL);
  1490. return;
  1491. }
  1492. dprintf(idx, "Changed comment.\n");
  1493. update_mod(handle, dcc[idx].nick, "comment", NULL);
  1494. set_user(&USERENTRY_COMMENT, u1, par);
  1495. if (conf.bot->hub)
  1496. write_userfile(idx);
  1497. }
  1498. static void cmd_randstring(int idx, char *par)
  1499. {
  1500. if (!par[0]) {
  1501. dprintf(idx, "Usage: randstring <len>\n");
  1502. return;
  1503. }
  1504. putlog(LOG_CMDS, "*", "#%s# randstring %s", dcc[idx].nick, par);
  1505. size_t len = atoi(par);
  1506. if (len < 301) {
  1507. char *randstring = NULL;
  1508. randstring = (char *) my_calloc(1, len + 1);
  1509. make_rand_str(randstring, len);
  1510. dprintf(idx, "string: %s\n", randstring);
  1511. free(randstring);
  1512. } else
  1513. dprintf(idx, "Too long, must be <= 300\n");
  1514. }
  1515. static void cmd_hash(int idx, char *par)
  1516. {
  1517. if (!par[0]) {
  1518. dprintf(idx, "Usage: hash <string>\n");
  1519. return;
  1520. }
  1521. putlog(LOG_CMDS, "*", "#%s# hash ...", dcc[idx].nick);
  1522. dprintf(idx, "MD5(%s) = %s\n", par, MD5(par));
  1523. dprintf(idx, "SHA1(%s) = %s\n", par, SHA1(par));
  1524. char *salted = salted_sha1(par);
  1525. dprintf(idx, "SALTED-SHA1(%s) = %s\n", par, salted);
  1526. free(salted);
  1527. dprintf(idx, "SHA256(%s) = %s\n", par, SHA256(par));
  1528. }
  1529. static void cmd_md5(int idx, char *par)
  1530. {
  1531. if (!par[0]) {
  1532. dprintf(idx, "Usage: md5 <string>\n");
  1533. return;
  1534. }
  1535. putlog(LOG_CMDS, "*", "#%s# md5 ...", dcc[idx].nick);
  1536. dprintf(idx, "MD5(%s) = %s\n", par, MD5(par));
  1537. }
  1538. static void cmd_sha1(int idx, char *par)
  1539. {
  1540. if (!par[0]) {
  1541. dprintf(idx, "Usage: sha1 <string>\n");
  1542. return;
  1543. }
  1544. putlog(LOG_CMDS, "*", "#%s# sha1 ...", dcc[idx].nick);
  1545. dprintf(idx, "SHA1(%s) = %s\n", par, SHA1(par));
  1546. char *salted = salted_sha1(par);
  1547. dprintf(idx, "SALTED-SHA1(%s) = %s\n", par, salted);
  1548. free(salted);
  1549. }
  1550. static void cmd_sha256(int idx, char *par)
  1551. {
  1552. if (!par[0]) {
  1553. dprintf(idx, "Usage: sha256 <string>\n");
  1554. return;
  1555. }
  1556. putlog(LOG_CMDS, "*", "#%s# sha256 ...", dcc[idx].nick);
  1557. dprintf(idx, "SHA256(%s) = %s\n", par, SHA256(par));
  1558. }
  1559. static void cmd_conf(int idx, char *par)
  1560. {
  1561. if (!conf.bot->localhub && !conf.bot->hub) {
  1562. dprintf(idx, "Please use '%s%s%s' for this login/shell.\n", RED(idx), conf.localhub, COLOR_END(idx));
  1563. return;
  1564. }
  1565. char *cmd = NULL;
  1566. char *listbot = NULL;
  1567. int save = 0;
  1568. if (par[0])
  1569. cmd = newsplit(&par);
  1570. /* del/change should restart the specified bot ;) */
  1571. if (!cmd) {
  1572. if (!conf.bot->hub)
  1573. dprintf(idx, "Usage: conf <add|del|change|disable|enable|list|set> [options]\n");
  1574. else
  1575. dprintf(idx, "Usage: conf <set> [options]\n");
  1576. return;
  1577. }
  1578. conf_bot *oldlist = conf_bots_dup(conf.bots);
  1579. putlog(LOG_CMDS, "*", "#%s# conf %s %s", dcc[idx].nick, cmd, par[0] ? par : "");
  1580. if (!strcasecmp(cmd, "add") || !strcasecmp(cmd, "change")) {
  1581. char *nick = NULL, *host = NULL, *ip = NULL, *ipsix = NULL;
  1582. nick = newsplit(&par);
  1583. if (!nick || (nick && !nick[0])) {
  1584. dprintf(idx, "Usage: conf %s <bot> [<ip|.> <[+]host|.> [ipv6-ip]]\n", cmd);
  1585. free_conf_bots(oldlist);
  1586. return;
  1587. }
  1588. if (par[0])
  1589. ip = newsplit(&par);
  1590. if (par[0])
  1591. host = newsplit(&par);
  1592. if (par[0])
  1593. ipsix = newsplit(&par);
  1594. if (cmd[0] == 'c' || cmd[0] == 'C')
  1595. conf_delbot(nick, 0);
  1596. conf_addbot(nick, ip, host, ipsix);
  1597. if (cmd[0] == 'a' || cmd[0] == 'A')
  1598. dprintf(idx, "Added bot: %s\n", nick);
  1599. else
  1600. dprintf(idx, "Changed bot: %s\n", nick);
  1601. listbot = strdup(nick);
  1602. save++;
  1603. } else if (!strncasecmp(cmd, "del", 3) || !strncasecmp(cmd, "rem", 3)) {
  1604. if (!par[0]) {
  1605. dprintf(idx, "Usage: conf del <bot>\n");
  1606. free_conf_bots(oldlist);
  1607. return;
  1608. }
  1609. if (!conf_delbot(par)) {
  1610. struct userrec *u = NULL;
  1611. dprintf(idx, "Deleted bot from conf: %s\n", par);
  1612. if ((u = get_user_by_handle(userlist, par))) {
  1613. if (!conf.bot->hub)
  1614. check_this_user(par, 1, NULL);
  1615. if (deluser(par)) {
  1616. dprintf(idx, "Removed bot: %s.\n", par);
  1617. if (conf.bot->hub)
  1618. write_userfile(idx);
  1619. }
  1620. }
  1621. save++;
  1622. } else
  1623. dprintf(idx, "Error trying to remove bot '%s'\n", par);
  1624. } else if (!strcasecmp(cmd, "disable") || !strcasecmp(cmd, "enable")) {
  1625. conf_bot *bot = NULL;
  1626. for (bot = conf.bots; bot && bot->nick; bot = bot->next) {
  1627. if (!strcasecmp(bot->nick, par)) {
  1628. if (!strcasecmp(cmd, "enable")) {
  1629. if (bot->disabled) {
  1630. dprintf(idx, "Enabled '%s'.\n", bot->nick);
  1631. bot->disabled = 0;
  1632. save++;
  1633. } else
  1634. dprintf(idx, "'%s' was already enabled!\n", bot->nick);
  1635. } else {
  1636. if (!bot->disabled) {
  1637. dprintf(idx, "Disabled '%s'.\n", bot->nick);
  1638. bot->disabled = 1;
  1639. save++;
  1640. } else
  1641. dprintf(idx, "'%s' was already disabled!\n", bot->nick);
  1642. }
  1643. }
  1644. }
  1645. }
  1646. if (!strcasecmp(cmd, "set")) {
  1647. char *what = NULL;
  1648. int show = 1, set = 0;
  1649. if (par[0]) {
  1650. what = newsplit(&par);
  1651. if (par[0] && what) { /* set */
  1652. set++;
  1653. save = 1;
  1654. /* if (!strcasecmp(what, "uid")) conf.uid = atoi(par);
  1655. else if (!strcasecmp(what, "username")) str_redup(&conf.username, par);
  1656. */
  1657. if (!strcasecmp(what, "homedir")) str_redup(&conf.homedir, par);
  1658. else if (!strcasecmp(what, "datadir")) str_redup(&conf.datadir, par);
  1659. else if (!strcasecmp(what, "portmin")) conf.portmin = atoi(par);
  1660. else if (!strcasecmp(what, "portmax")) conf.portmax = atoi(par);
  1661. else if (!strcasecmp(what, "autocron")) conf.autocron = atoi(par);
  1662. else {
  1663. set--;
  1664. save = 0;
  1665. dprintf(idx, "Unknown option '%s'\n", par);
  1666. }
  1667. }
  1668. }
  1669. if (show) {
  1670. const char *ss = set ? "Set: " : "";
  1671. /* if (!what || !strcasecmp(what, "uid")) dprintf(idx, "%suid: %d\n", ss, conf.uid);
  1672. if (!what || !strcasecmp(what, "username")) dprintf(idx, "%susername: %s\n", ss, conf.username);
  1673. */
  1674. if (!what || !strcasecmp(what, "homedir")) dprintf(idx, "%shomedir: %s\n", ss, conf.homedir);
  1675. if (!what || !strcasecmp(what, "datadir")) dprintf(idx, "%sdatadir: %s\n", ss, conf.datadir);
  1676. if (!what || !strcasecmp(what, "portmin")) dprintf(idx, "%sportmin: %d\n", ss, conf.portmin);
  1677. if (!what || !strcasecmp(what, "portmax")) dprintf(idx, "%sportmax: %d\n", ss, conf.portmax);
  1678. if (!what || !strcasecmp(what, "autocron")) dprintf(idx, "%sautocron: %d\n", ss, conf.autocron);
  1679. }
  1680. }
  1681. if (listbot || !strcasecmp(cmd, "list")) {
  1682. conf_checkpids(conf.bots);
  1683. conf_bot *bot = NULL;
  1684. unsigned int i = 0;
  1685. for (bot = conf.bots; bot && bot->nick; bot = bot->next) {
  1686. i++;
  1687. if (!listbot || (listbot && !strcasecmp(listbot, bot->nick)))
  1688. dprintf(idx, "%d: %s%s IP: %s HOST: %s IP6: %s HOST6: %s HUB: %d PID: %lu\n", i,
  1689. bot->disabled ? "/" : "",
  1690. bot->nick,
  1691. bot->net.ip ? bot->net.ip : "",
  1692. bot->net.host ? bot->net.host : "",
  1693. bot->net.ip6 ? bot->net.ip6 : "",
  1694. bot->net.host6 ? bot->net.host6 : "",
  1695. bot->hub,
  1696. (unsigned long) bot->pid);
  1697. }
  1698. }
  1699. if (listbot)
  1700. free(listbot);
  1701. if (save) {
  1702. /* rewrite our binary */
  1703. conf_to_bin(&conf, 0, -1);
  1704. /* Now signal all of the old bots with SIGUSR1
  1705. * They will auto die and determine new localhub, etc..
  1706. */
  1707. conf_checkpids(oldlist);
  1708. conf_killbot(oldlist, conf.bot->nick, NULL, SIGUSR1, 1); /* Don't kill me. */
  1709. /* Now spawn new bots */
  1710. conf_checkpids(conf.bots);
  1711. spawnbots(conf.bots, 1); /* Not me. */
  1712. conf_checkpids(conf.bots, 0);
  1713. /* So reload_bin_data can process correctly */
  1714. conf.bots = oldlist;
  1715. do_restart = 2; /* SIGUSR1 -- reload_bin_data(); */
  1716. } else
  1717. free_conf_bots(oldlist);
  1718. }
  1719. static void cmd_encrypt(int idx, char *par)
  1720. {
  1721. if (!par[0]) {
  1722. dprintf(idx, "Usage: encrypt <key> <string>\n");
  1723. return;
  1724. }
  1725. putlog(LOG_CMDS, "*", "#%s# encrypt ...", dcc[idx].nick);
  1726. char *key = newsplit(&par);
  1727. if (!par[0]) {
  1728. dprintf(idx, "Usage: encrypt <key> <string>\n");
  1729. return;
  1730. }
  1731. const char salt2[] = SALT2;
  1732. bd::String crypted = encrypt_string(bd::String(key ? key : salt2), bd::String(par));
  1733. crypted = bd::base64Encode(crypted);
  1734. dprintf(idx, "encrypt(%s) = %s\n", par, crypted.c_str());
  1735. }
  1736. static void cmd_encrypt_fish(int idx, char *par)
  1737. {
  1738. if (!par[0]) {
  1739. dprintf(idx, "Usage: encrypt_fish <key> <string>\n");
  1740. return;
  1741. }
  1742. putlog(LOG_CMDS, "*", "#%s# encrypt_fish ...", dcc[idx].nick);
  1743. char *key = newsplit(&par);
  1744. if (!par[0]) {
  1745. dprintf(idx, "Usage: encrypt_fish <key> <string>\n");
  1746. return;
  1747. }
  1748. const char salt2[] = SALT2;
  1749. bd::String bf_crypt = egg_bf_encrypt(bd::String(par), bd::String(key ? key : salt2));
  1750. dprintf(idx, "encrypt_fish(%s) = %s\n", par, bf_crypt.c_str());
  1751. }
  1752. static void cmd_decrypt_fish(int idx, char *par)
  1753. {
  1754. if (!par[0]) {
  1755. dprintf(idx, "Usage: decrypt_fish <key> <string>\n");
  1756. return;
  1757. }
  1758. putlog(LOG_CMDS, "*", "#%s# decrypt_fish ...", dcc[idx].nick);
  1759. char *key = newsplit(&par);
  1760. if (!par[0]) {
  1761. dprintf(idx, "Usage: decrypt_fish <key> <string>\n");
  1762. return;
  1763. }
  1764. const char salt2[] = SALT2;
  1765. bd::String bf_decrypt = egg_bf_decrypt(bd::String(par), bd::String(key ? key : salt2));
  1766. dprintf(idx, "decrypt_fish(%s) = %s\n", par, bf_decrypt.c_str());
  1767. }
  1768. static void cmd_decrypt(int idx, char *par)
  1769. {
  1770. if (!par[0]) {
  1771. dprintf(idx, "Usage: decrypt <key> <string>\n");
  1772. return;
  1773. }
  1774. putlog(LOG_CMDS, "*", "#%s# decrypt ...", dcc[idx].nick);
  1775. char *key = newsplit(&par);
  1776. if (!par[0]) {
  1777. dprintf(idx, "Usage: decrypt <key> <string>\n");
  1778. return;
  1779. }
  1780. const char salt2[] = SALT2;
  1781. bd::String ciphertext = bd::base64Decode(par);
  1782. bd::String cleartext = decrypt_string(bd::String(key ? key : salt2), ciphertext);
  1783. dprintf(idx, "decrypt(%s) = %s\n", par, cleartext.c_str());
  1784. }
  1785. static void cmd_restart(int idx, char *par)
  1786. {
  1787. putlog(LOG_CMDS, "*", "#%s# restart", dcc[idx].nick);
  1788. do_restart = 1;
  1789. }
  1790. static void cmd_reload(int idx, char *par)
  1791. {
  1792. putlog(LOG_CMDS, "*", "#%s# reload", dcc[idx].nick);
  1793. dprintf(idx, "Reloading user file...\n");
  1794. reload();
  1795. }
  1796. static void cmd_rehash(int idx, char *par)
  1797. {
  1798. putlog(LOG_CMDS, "*", "#%s# rehash", dcc[idx].nick);
  1799. dprintf(idx, "Rehashing config data from binary...\n");
  1800. do_restart = 2;
  1801. }
  1802. static void cmd_die(int idx, char *par)
  1803. {
  1804. char s1[1024] = "", s2[1024] = "";
  1805. putlog(LOG_CMDS, "*", "#%s# die %s", dcc[idx].nick, par);
  1806. if (par[0]) {
  1807. simple_snprintf(s1, sizeof s1, "BOT SHUTDOWN (%s: %s)", dcc[idx].nick, par);
  1808. simple_snprintf(s2, sizeof s2, "DIE BY %s!%s (%s)", dcc[idx].nick, dcc[idx].host, par);
  1809. strlcpy(quit_msg, par, 1024);
  1810. } else {
  1811. simple_snprintf(s1, sizeof s1, "BOT SHUTDOWN (Authorized by %s)", dcc[idx].nick);
  1812. simple_snprintf(s2, sizeof s2, "DIE BY %s!%s (request)", dcc[idx].nick, dcc[idx].host);
  1813. strlcpy(quit_msg, "requested", 1024);
  1814. }
  1815. kill_bot(s1, s2);
  1816. }
  1817. static void cmd_suicide(int idx, char *par)
  1818. {
  1819. putlog(LOG_CMDS, "*", "#%s# suicide %s", dcc[idx].nick, par);
  1820. suicide(par);
  1821. }
  1822. static void cmd_debug(int idx, char *par)
  1823. {
  1824. char *cmd = NULL;
  1825. if (!par[0])
  1826. putlog(LOG_CMDS, "*", "#%s# debug", dcc[idx].nick);
  1827. if (par[0])
  1828. cmd = newsplit(&par);
  1829. if (!cmd || (cmd && !strcmp(cmd, "timesync")))
  1830. dprintf(idx, "Timesync: %li (%li)\n", (long) (now + timesync), (long)timesync);
  1831. if (!cmd || (cmd && !strcmp(cmd, "now")))
  1832. dprintf(idx, "Now: %li\n", (long)now);
  1833. if (!cmd || (cmd && !strcmp(cmd, "role")))
  1834. dprintf(idx, "Role: %d\n", role);
  1835. if (!cmd || (cmd && !strcmp(cmd, "net")))
  1836. tell_netdebug(idx);
  1837. if (!cmd || (cmd && !strcmp(cmd, "dns")))
  1838. tell_dnsdebug(idx);
  1839. }
  1840. static void cmd_timers(int idx, char *par)
  1841. {
  1842. int *ids = 0, n = 0, called = 0;
  1843. egg_timeval_t howlong, trigger_time, mynow, diff;
  1844. if ((n = timer_list(&ids))) {
  1845. int i = 0;
  1846. char *name = NULL;
  1847. timer_get_now(&mynow);
  1848. for (i = 0; i < n; i++) {
  1849. char interval[51] = "", next[51] = "";
  1850. timer_info(ids[i], &name, &howlong, &trigger_time, &called);
  1851. timer_diff(&mynow, &trigger_time, &diff);
  1852. simple_snprintf(interval, sizeof interval, "(%lis %lims)", howlong.sec, howlong.usec / 1000);
  1853. simple_snprintf(next, sizeof next, "%lis %lims", diff.sec, diff.usec / 1000);
  1854. dprintf(idx, "%-2d: %-25s %-15s Next: %-25s Called: %d\n", i, name, interval, next, called);
  1855. }
  1856. free(ids);
  1857. }
  1858. }
  1859. static void cmd_simul(int idx, char *par)
  1860. {
  1861. char *nick = newsplit(&par);
  1862. if (!par[0]) {
  1863. dprintf(idx, "Usage: simul <hand> <text>\n");
  1864. return;
  1865. }
  1866. struct userrec *u2 = get_user_by_handle(userlist, nick);
  1867. if (!u2 || (u2 && !whois_access(dcc[idx].user, u2))) {
  1868. dprintf(idx, "No such user.\n");
  1869. return;
  1870. }
  1871. bool ok = 0;
  1872. for (int i = 0; i < dcc_total; i++) {
  1873. if (dcc[i].type && !strcasecmp(nick, dcc[i].nick) && !ok && (dcc[i].type->flags & DCT_SIMUL)) {
  1874. putlog(LOG_CMDS, "*", "#%s# simul %s %s", dcc[idx].nick, nick, par);
  1875. if (dcc[i].type && dcc[i].type->activity) {
  1876. dcc[i].type->activity(i, par, strlen(par));
  1877. ok = 1;
  1878. }
  1879. }
  1880. }
  1881. if (!ok)
  1882. dprintf(idx, "No such user on the party line.\n");
  1883. }
  1884. static void cmd_link(int idx, char *par)
  1885. {
  1886. if (!par[0]) {
  1887. dprintf(idx, "Usage: link [some-bot] <new-bot>\n");
  1888. return;
  1889. }
  1890. putlog(LOG_CMDS, "*", "#%s# link %s", dcc[idx].nick, par);
  1891. char *s = newsplit(&par);
  1892. char *tolink = par[0] ? par : s;
  1893. struct userrec *u = get_user_by_handle(userlist, tolink);
  1894. if (!u || bot_hublevel(u) == 999) {
  1895. dprintf(idx, "You can only link to other hubs.\n");
  1896. return;
  1897. }
  1898. if (!par[0] || !strcasecmp(par, conf.bot->nick))
  1899. botlink(dcc[idx].nick, idx, s);
  1900. else {
  1901. char x[40] = "";
  1902. int i = nextbot(s);
  1903. if (i < 0) {
  1904. dprintf(idx, "No such bot online.\n");
  1905. return;
  1906. }
  1907. simple_snprintf(x, sizeof(x), "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick);
  1908. botnet_send_link(i, x, s, par);
  1909. }
  1910. }
  1911. static void cmd_unlink(int idx, char *par)
  1912. {
  1913. if (!par[0]) {
  1914. dprintf(idx, "Usage: unlink <bot> [reason]\n");
  1915. return;
  1916. }
  1917. putlog(LOG_CMDS, "*", "#%s# unlink %s", dcc[idx].nick, par);
  1918. char *bot = newsplit(&par);
  1919. int i = nextbot(bot);
  1920. if (i < 0) {
  1921. botunlink(idx, bot, par);
  1922. return;
  1923. }
  1924. /* If we're directly connected to that bot, just do it
  1925. * (is nike gunna sue?)
  1926. */
  1927. if (!strcasecmp(dcc[i].nick, bot))
  1928. botunlink(idx, bot, par);
  1929. else {
  1930. char x[40] = "";
  1931. simple_snprintf(x, sizeof(x), "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick);
  1932. botnet_send_unlink(i, x, lastbot(bot), bot, par);
  1933. }
  1934. }
  1935. static void cmd_relay(int idx, char *par)
  1936. {
  1937. if (dcc[idx].simul >= 0) {
  1938. dprintf(idx, "Sorry, that cmd isn't available over botcmd.\n");
  1939. return;
  1940. }
  1941. if (!par[0]) {
  1942. dprintf(idx, "Usage: relay <bot>\n");
  1943. return;
  1944. }
  1945. putlog(LOG_CMDS, "*", "#%s# relay %s", dcc[idx].nick, par);
  1946. tandem_relay(idx, par, 0);
  1947. }
  1948. static void cmd_save(int idx, char *par)
  1949. {
  1950. char buf[100] = "";
  1951. putlog(LOG_CMDS, "*", "#%s# save", dcc[idx].nick);
  1952. simple_snprintf(buf, sizeof(buf), "Saving user file...");
  1953. int i = write_userfile(-1);
  1954. if (i == 0)
  1955. strlcat(buf, "success.", sizeof(buf));
  1956. else if (i == 1)
  1957. strlcat(buf, "failed: No userlist.", sizeof(buf));
  1958. else if (i == 2)
  1959. strlcat(buf, "failed: Cannot open userfile for writing.", sizeof(buf));
  1960. else if (i == 3)
  1961. strlcat(buf, "failed: Problem writing users/chans (see debug).", sizeof(buf));
  1962. else /* This can't happen. */
  1963. strlcat(buf, "failed: Unforseen error", sizeof(buf));
  1964. dprintf(idx, "%s\n", buf);
  1965. }
  1966. static void cmd_backup(int idx, char *par)
  1967. {
  1968. putlog(LOG_CMDS, "*", "#%s# backup", dcc[idx].nick);
  1969. dprintf(idx, "Backing up the channel & user files...\n");
  1970. write_userfile(idx);
  1971. backup_userfile();
  1972. }
  1973. static void cmd_trace(int idx, char *par)
  1974. {
  1975. if (!par[0]) {
  1976. dprintf(idx, "Usage: trace <bot>\n");
  1977. return;
  1978. }
  1979. if (!strcasecmp(par, conf.bot->nick)) {
  1980. dprintf(idx, "That's me! Hiya! :)\n");
  1981. return;
  1982. }
  1983. int i = nextbot(par);
  1984. if (i < 0) {
  1985. dprintf(idx, "Unreachable bot.\n");
  1986. return;
  1987. }
  1988. char x[NOTENAMELEN + 11] = "", y[11] = "";
  1989. putlog(LOG_CMDS, "*", "#%s# trace %s", dcc[idx].nick, par);
  1990. simple_snprintf(x, sizeof(x), "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick);
  1991. egg_timeval_t tv;
  1992. timer_get_now(&tv);
  1993. simple_snprintf(y, sizeof(y), ":%li", (long) ((tv.sec % 10000) * 100 + (tv.usec * 100) / (1000000)));
  1994. botnet_send_trace(i, x, par, y);
  1995. }
  1996. /* After messing with someone's user flags, make sure the dcc-chat flags
  1997. * are set correctly.
  1998. */
  1999. int check_dcc_attrs(struct userrec *u, flag_t oatr)
  2000. {
  2001. if (!u)
  2002. return 0;
  2003. /* Make sure default owners are +a */
  2004. if (isowner(u->handle)) {
  2005. u->flags = sanity_check(u->flags | USER_ADMIN, 0);
  2006. }
  2007. int stat;
  2008. for (int i = 0; i < dcc_total; i++) {
  2009. if (dcc[i].type && dcc[i].simul == -1) {
  2010. if (dcc[i].type == &DCC_CHAT && !conf.bot->hub && !ischanhub() && u == conf.bot->u) {
  2011. dprintf(i, "I am no longer a chathub..\n");
  2012. do_boot(i, conf.bot->nick, "I am no longer a chathub.");
  2013. continue;
  2014. }
  2015. if ((dcc[i].type->flags & DCT_MASTER) && (!strcasecmp(u->handle, dcc[i].nick))) {
  2016. stat = dcc[i].status;
  2017. if ((dcc[i].type == &DCC_CHAT) &&
  2018. ((u->flags & (USER_OP | USER_MASTER | USER_OWNER))
  2019. != (oatr & (USER_OP | USER_MASTER | USER_OWNER)))) {
  2020. botnet_send_join_idx(i);
  2021. }
  2022. if ((oatr & USER_MASTER) && !(u->flags & USER_MASTER)) {
  2023. struct flag_record fr = {FR_CHAN | FR_ANYWH, 0, 0, 0 };
  2024. dcc[i].u.chat->con_flags &= ~(LOG_MISC | LOG_CMDS | LOG_RAW |
  2025. LOG_FILES | LOG_WALL | LOG_DEBUG);
  2026. get_user_flagrec(u, &fr, NULL);
  2027. if (!chan_master(fr))
  2028. dcc[i].u.chat->con_flags |= (LOG_MISC | LOG_CMDS);
  2029. dprintf(i, "*** POOF! ***\n");
  2030. dprintf(i, "You are no longer a master on this bot.\n");
  2031. }
  2032. if (!(oatr & USER_MASTER) && (u->flags & USER_MASTER)) {
  2033. dcc[i].u.chat->con_flags |= conmask;
  2034. dprintf(i, "*** POOF! ***\n");
  2035. dprintf(i, "You are now a master on this bot.\n");
  2036. }
  2037. if (!(oatr & USER_PARTY) && (u->flags & USER_PARTY) && dcc[i].u.chat->channel < 0) {
  2038. dprintf(i, "-+- POOF! -+-\n");
  2039. dprintf(i, "You now have party line chat access.\n");
  2040. dprintf(i, "To rejoin the partyline, type: %schat on\n", (dcc[i].u.chat->channel >= 0) ? settings.dcc_prefix : "");
  2041. }
  2042. if (!(oatr & USER_OWNER) && (u->flags & USER_OWNER)) {
  2043. dprintf(i, "@@@ POOF! @@@\n");
  2044. dprintf(i, "You are now an OWNER of this bot.\n");
  2045. }
  2046. if ((oatr & USER_OWNER) && !(u->flags & USER_OWNER)) {
  2047. dprintf(i, "@@@ POOF! @@@\n");
  2048. dprintf(i, "You are no longer an owner of this bot.\n");
  2049. }
  2050. if (!(u->flags & USER_PARTY) && dcc[i].u.chat->channel >= 0) { /* who cares about old flags, they shouldnt be here anyway. */
  2051. dprintf(i, "-+- POOF! -+-\n");
  2052. dprintf(i, "You no longer have party line chat access.\n");
  2053. dprintf(i, "Leaving chat mode...\n");
  2054. chanout_but(-1, dcc[i].u.chat->channel, "*** %s left the party line - no chat access.\n", dcc[i].nick);
  2055. if (dcc[i].u.chat->channel < 100000)
  2056. botnet_send_part_idx(i, "");
  2057. dcc[i].u.chat->channel = (-1);
  2058. }
  2059. if (!(oatr & USER_ADMIN) && (u->flags & USER_ADMIN)) {
  2060. dprintf(i, "^^^ POOF! ^^^\n");
  2061. dprintf(i, "You are now an ADMIN of this bot.\n");
  2062. }
  2063. if ((oatr & USER_ADMIN) && !(u->flags & USER_ADMIN)) {
  2064. dprintf(i, "^^^ POOF! ^^^\n");
  2065. dprintf(i, "You are no longer an admin of this bot.\n");
  2066. }
  2067. if ((stat & STAT_PARTY) && (u->flags & USER_OP))
  2068. stat &= ~STAT_PARTY;
  2069. if (!(stat & STAT_PARTY) && !(u->flags & USER_OP) &&
  2070. !(u->flags & USER_MASTER))
  2071. stat |= STAT_PARTY;
  2072. if (stat & STAT_CHAT) {
  2073. if (conf.bot->hub && !(u->flags & USER_HUBA))
  2074. stat &= ~STAT_CHAT;
  2075. if (ischanhub() && !(u->flags & USER_CHUBA))
  2076. stat &= ~STAT_CHAT;
  2077. }
  2078. if ((u->flags & USER_PARTY))
  2079. stat |= STAT_CHAT;
  2080. dcc[i].status = stat;
  2081. /* Check if they no longer have access to wherever they are.
  2082. */
  2083. if (conf.bot->hub && !(u->flags & (USER_HUBA))) {
  2084. /* no hub access, drop them. */
  2085. dprintf(i, "-+- POOF! -+-\n");
  2086. dprintf(i, "You no longer have hub access.\n");
  2087. do_boot(i, conf.bot->nick, "No hub access.");
  2088. continue;
  2089. }
  2090. if (!conf.bot->hub && ischanhub() && !(u->flags & (USER_CHUBA))) {
  2091. /* no chanhub access, drop them. */
  2092. dprintf(i, "-+- POOF! -+-\n");
  2093. dprintf(i, "You no longer have chathub access.\n");
  2094. do_boot(i, conf.bot->nick, "No chathub access.");
  2095. continue;
  2096. }
  2097. }
  2098. }
  2099. }
  2100. return u->flags;
  2101. }
  2102. int check_dcc_chanattrs(struct userrec *u, char *chname, flag_t chflags, flag_t ochatr)
  2103. {
  2104. if (!u)
  2105. return 0;
  2106. int found = 0, atr = u ? u->flags : 0;
  2107. struct chanset_t *chan = NULL;
  2108. struct chat_info dummy;
  2109. for (int i = 0; i < dcc_total; i++) {
  2110. if (dcc[i].type && dcc[i].simul == -1 && (dcc[i].type->flags & DCT_MASTER) && !strcasecmp(u->handle, dcc[i].nick)) {
  2111. if ((dcc[i].type == &DCC_CHAT) &&
  2112. ((chflags & (USER_OP | USER_MASTER | USER_OWNER))
  2113. != (ochatr & (USER_OP | USER_MASTER | USER_OWNER))))
  2114. botnet_send_join_idx(i);
  2115. if ((ochatr & USER_MASTER) && !(chflags & USER_MASTER)) {
  2116. if (!(atr & USER_MASTER))
  2117. dcc[i].u.chat->con_flags &= ~(LOG_MISC | LOG_CMDS);
  2118. dprintf(i, "*** POOF! ***\n");
  2119. dprintf(i, "You are no longer a master on %s.\n", chname);
  2120. }
  2121. if (!(ochatr & USER_MASTER) && (chflags & USER_MASTER)) {
  2122. dcc[i].u.chat->con_flags |= conmask;
  2123. if (!(atr & USER_MASTER))
  2124. dcc[i].u.chat->con_flags &=
  2125. ~(LOG_RAW | LOG_DEBUG | LOG_WALL | LOG_FILES | LOG_SRVOUT);
  2126. dprintf(i, "*** POOF! ***\n");
  2127. dprintf(i, "You are now a master on %s.\n", chname);
  2128. }
  2129. if (!(ochatr & USER_OWNER) && (chflags & USER_OWNER)) {
  2130. dprintf(i, "@@@ POOF! @@@\n");
  2131. dprintf(i, "You are now an OWNER of %s.\n", chname);
  2132. }
  2133. if ((ochatr & USER_OWNER) && !(chflags & USER_OWNER)) {
  2134. dprintf(i, "@@@ POOF! @@@\n");
  2135. dprintf(i, "You are no longer an owner of %s.\n", chname);
  2136. }
  2137. if (((ochatr & (USER_OP | USER_MASTER | USER_OWNER)) &&
  2138. (!(chflags & (USER_OP | USER_MASTER | USER_OWNER)))) ||
  2139. ((chflags & (USER_OP | USER_MASTER | USER_OWNER)) &&
  2140. (!(ochatr & (USER_OP | USER_MASTER | USER_OWNER))))) {
  2141. struct flag_record fr = {FR_CHAN, 0, 0, 0 };
  2142. for (chan = chanset; chan && !found; chan = chan->next) {
  2143. get_user_flagrec(u, &fr, chan->dname);
  2144. if (fr.chan & (USER_OP | USER_MASTER | USER_OWNER))
  2145. found = 1;
  2146. }
  2147. if (!chan)
  2148. chan = chanset;
  2149. if (chan)
  2150. strlcpy(dcc[i].u.chat->con_chan, chan->dname, sizeof(dummy.con_chan));
  2151. else
  2152. strlcpy(dcc[i].u.chat->con_chan, "*", 2);
  2153. }
  2154. }
  2155. }
  2156. return chflags;
  2157. }
  2158. static void cmd_chattr(int idx, char *par)
  2159. {
  2160. if (!par[0]) {
  2161. dprintf(idx, "Usage: chattr <handle> [changes] [channel]\n");
  2162. return;
  2163. }
  2164. char *hand = newsplit(&par);
  2165. struct userrec *u2 = get_user_by_handle(userlist, hand);
  2166. if (!u2 || (u2 && !whois_access(dcc[idx].user, u2))) {
  2167. dprintf(idx, "No such user!\n");
  2168. return;
  2169. }
  2170. char *arg = NULL, *tmpchg = NULL, *chg = NULL, work[1024] = "";
  2171. struct chanset_t *chan = NULL;
  2172. struct flag_record pls = {0, 0, 0, 0 },
  2173. mns = {0, 0, 0, 0 },
  2174. user = {0, 0, 0, 0 },
  2175. ouser = {0, 0, 0, 0 };
  2176. flag_t of = 0, ocf = 0;
  2177. bool save = 0;
  2178. /* Parse args */
  2179. if (par[0]) {
  2180. arg = newsplit(&par);
  2181. if (par[0]) {
  2182. /* .chattr <handle> <changes> <channel> */
  2183. chg = arg;
  2184. arg = newsplit(&par);
  2185. chan = findchan_by_dname(arg);
  2186. } else {
  2187. chan = findchan_by_dname(arg);
  2188. /* Consider modeless channels, starting with '+' */
  2189. if (!(arg[0] == '+' && chan) &&
  2190. !(arg[0] != '+' && strchr (CHANMETA, arg[0]))) {
  2191. /* .chattr <handle> <changes> */
  2192. chg = arg;
  2193. chan = NULL; /* uh, !strchr (CHANMETA, channel[0]) && channel found?? */
  2194. arg = NULL;
  2195. }
  2196. /* .chattr <handle> <channel>: nothing to do... */
  2197. }
  2198. }
  2199. /* arg: pointer to channel name, NULL if none specified
  2200. * chan: pointer to channel structure, NULL if none found or none specified
  2201. * chg: pointer to changes, NULL if none specified
  2202. */
  2203. if (arg && !chan) {
  2204. dprintf(idx, "No channel record for %s.\n", arg);
  2205. return;
  2206. }
  2207. if (chg) {
  2208. if (!arg && strpbrk(chg, "&|")) {
  2209. /* .chattr <handle> *[&|]*: use console channel if found... */
  2210. if (!strcmp ((arg = dcc[idx].u.chat->con_chan), "*"))
  2211. arg = NULL;
  2212. else
  2213. chan = findchan_by_dname(arg);
  2214. if (arg && !chan) {
  2215. dprintf (idx, "Invalid console channel %s.\n", arg);
  2216. return;
  2217. }
  2218. } else if (arg && !strpbrk(chg, "&|")) {
  2219. size_t tmpsiz = strlen(chg) + 2;
  2220. tmpchg = (char *) my_calloc(1, tmpsiz);
  2221. strlcpy(tmpchg, "|", 2);
  2222. strlcat(tmpchg, chg, tmpsiz);
  2223. chg = tmpchg;
  2224. }
  2225. }
  2226. par = arg;
  2227. user.match = FR_GLOBAL;
  2228. if (chan)
  2229. user.match |= FR_CHAN;
  2230. if (u2->bot)
  2231. user.match |= FR_BOT;
  2232. get_user_flagrec(dcc[idx].user, &user, chan ? chan->dname : 0);
  2233. get_user_flagrec(u2, &ouser, chan ? chan->dname : 0);
  2234. if (!chan && !glob_master(user)) {
  2235. dprintf(idx, "You do not have global master access.\n");
  2236. if (tmpchg)
  2237. free(tmpchg);
  2238. return;
  2239. }
  2240. if (chan && !glob_master(user) && !chan_master(user)) {
  2241. dprintf(idx, "You do not have channel master privileges for channel %s.\n",
  2242. par);
  2243. if (tmpchg)
  2244. free(tmpchg);
  2245. return;
  2246. }
  2247. if (chan && (privchan(user, chan, PRIV_OP) || (channel_privchan(chan) && !(chan_master(user) || glob_owner(user))))) {
  2248. dprintf(idx, "You do not have access to change flags for %s\n", chan->dname);
  2249. if (tmpchg)
  2250. free(tmpchg);
  2251. return;
  2252. }
  2253. if (chg) {
  2254. int okp = 1;
  2255. pls.match = user.match;
  2256. break_down_flags(chg, &pls, &mns);
  2257. if ((pls.global & BOT_UPDATEHUB) && (bot_hublevel(u2) == 999)) {
  2258. dprintf(idx, "Only a hub can be set as the updatehub.\n");
  2259. pls.global &= ~(BOT_UPDATEHUB);
  2260. }
  2261. /* strip out +p without +i or +j */
  2262. if ((pls.global & (USER_CHUBA | USER_HUBA)) || glob_huba(ouser) || glob_chuba(ouser))
  2263. okp = 1;
  2264. if ((pls.global & USER_PARTY) && !okp) {
  2265. dprintf(idx, "Global flag +p requires either chathub or hub access first.\n");
  2266. pls.global &= ~USER_PARTY;
  2267. }
  2268. if (!isowner(dcc[idx].nick)) {
  2269. if (pls.global & USER_HUBA)
  2270. putlog(LOG_MISC, "*", "%s attempted to give %s hub connect access", dcc[idx].nick, u2->handle);
  2271. if (mns.global & USER_HUBA)
  2272. putlog(LOG_MISC, "*", "%s attempted to take away hub connect access from %s", dcc[idx].nick, u2->handle);
  2273. if (pls.global & BOT_UPDATEHUB)
  2274. putlog(LOG_MISC, "*", "%s attempted to make %s the updatehub", dcc[idx].nick, u2->handle);
  2275. if (mns.global & BOT_UPDATEHUB)
  2276. putlog(LOG_MISC, "*", "%s attempted to take away updatehub status from %s", dcc[idx].nick, u2->handle);
  2277. if (pls.global & USER_ADMIN)
  2278. putlog(LOG_MISC, "*", "%s attempted to give %s admin access", dcc[idx].nick, u2->handle);
  2279. if (mns.global & USER_ADMIN)
  2280. putlog(LOG_MISC, "*", "%s attempted to take away admin access from %s", dcc[idx].nick, u2->handle);
  2281. if (pls.global & USER_OWNER)
  2282. putlog(LOG_MISC, "*", "%s attempted to give owner to %s", dcc[idx].nick, u2->handle);
  2283. if (mns.global & USER_OWNER)
  2284. putlog(LOG_MISC, "*", "%s attempted to take owner away from %s", dcc[idx].nick, u2->handle);
  2285. pls.global &=~(USER_HUBA | USER_ADMIN | USER_OWNER | BOT_UPDATEHUB);
  2286. mns.global &=~(USER_HUBA | USER_ADMIN | USER_OWNER | BOT_UPDATEHUB);
  2287. pls.chan &= ~(USER_ADMIN | BOT_UPDATEHUB);
  2288. }
  2289. if (chan) {
  2290. pls.chan &= ~(USER_HUBA | USER_CHUBA);
  2291. mns.chan &= ~(USER_HUBA | USER_CHUBA);
  2292. }
  2293. if (!glob_owner(user) && !isowner(dcc[idx].nick)) {
  2294. pls.global &= ~(USER_CHUBA | USER_OWNER | USER_MASTER);
  2295. mns.global &= ~(USER_CHUBA | USER_OWNER | USER_MASTER);
  2296. if (chan) {
  2297. pls.chan &= ~USER_OWNER;
  2298. mns.chan &= ~USER_OWNER;
  2299. }
  2300. }
  2301. if (chan && !chan_owner(user) && !glob_owner(user) && !isowner(dcc[idx].nick)) {
  2302. pls.chan &= ~USER_MASTER;
  2303. mns.chan &= ~USER_MASTER;
  2304. if (!chan_master(user) && !glob_master(user)) {
  2305. pls.chan = 0;
  2306. mns.chan = 0;
  2307. }
  2308. }
  2309. if (!conf.bot->hub) {
  2310. pls.global &=~(USER_OWNER | USER_ADMIN | USER_HUBA | USER_CHUBA);
  2311. mns.global &=~(USER_OWNER | USER_ADMIN | USER_HUBA | USER_CHUBA);
  2312. }
  2313. get_user_flagrec(u2, &user, par);
  2314. if (user.match & FR_GLOBAL) {
  2315. of = user.global;
  2316. user.global = sanity_check((user.global |pls.global) &~mns.global, u2->bot);
  2317. }
  2318. if (chan) {
  2319. ocf = user.chan;
  2320. user.chan = chan_sanity_check((user.chan | pls.chan) & ~mns.chan, u2->bot);
  2321. }
  2322. set_user_flagrec(u2, &user, par);
  2323. save = 1;
  2324. }
  2325. if (save) {
  2326. if (chan) {
  2327. char tmp[100] = "";
  2328. putlog(LOG_CMDS, "*", "#%s# (%s) chattr %s %s", dcc[idx].nick, chan ? chan->dname : "*", hand, chg ? chg : "");
  2329. simple_snprintf(tmp, sizeof tmp, "chattr %s", chg);
  2330. update_mod(hand, dcc[idx].nick, tmp, chan->dname);
  2331. } else {
  2332. putlog(LOG_CMDS, "*", "#%s# chattr %s %s", dcc[idx].nick, hand, chg ? chg : "");
  2333. update_mod(hand, dcc[idx].nick, "chattr", chg);
  2334. }
  2335. if (chg && (pls.global & USER_ADMIN)) { // +a was used, warn that this is admin and not auto-op.
  2336. dprintf(idx, "WARNING: You have just used +a, which is an ADMIN privilege.\n");
  2337. dprintf(idx, "If you intended to use the AUTO-OP privilege, please use +O instead.\n");
  2338. }
  2339. }
  2340. /* Get current flags and display them */
  2341. if (whois_access(dcc[idx].user, u2)) {
  2342. if (user.match & FR_GLOBAL) {
  2343. user.match = FR_GLOBAL;
  2344. if (chg)
  2345. check_dcc_attrs(u2, of);
  2346. get_user_flagrec(u2, &user, NULL);
  2347. build_flags(work, &user, NULL);
  2348. if (work[0] != '-')
  2349. dprintf(idx, "Global flags for %s are now +%s.\n", hand, work);
  2350. else
  2351. dprintf(idx, "No global flags for %s.\n", hand);
  2352. }
  2353. if (chan) {
  2354. user.match = FR_CHAN;
  2355. get_user_flagrec(u2, &user, par);
  2356. if (chg)
  2357. check_dcc_chanattrs(u2, chan->dname, user.chan, ocf);
  2358. build_flags(work, &user, NULL);
  2359. if (work[0] != '-')
  2360. dprintf(idx, "Channel flags for %s on %s are now +%s.\n", hand, chan->dname, work);
  2361. else {
  2362. dprintf(idx, "No flags for %s on %s.\n", hand, chan->dname);
  2363. del_chanrec(u2, chan->dname);
  2364. }
  2365. }
  2366. }
  2367. if (chg && !conf.bot->hub)
  2368. check_this_user(hand, 0, NULL);
  2369. if (tmpchg)
  2370. free(tmpchg);
  2371. if (conf.bot->hub && save)
  2372. write_userfile(idx);
  2373. }
  2374. static void cmd_chat(int idx, char *par)
  2375. {
  2376. if (!(dcc[idx].user->flags & USER_PARTY)) {
  2377. dprintf(idx, "You don't have partyline access\n");
  2378. return;
  2379. }
  2380. char *arg = newsplit(&par);
  2381. if (!strcasecmp(arg, "off")) {
  2382. /* Turn chat off */
  2383. if (dcc[idx].u.chat->channel < 0) {
  2384. dprintf(idx, "You weren't in chat anyway!\n");
  2385. return;
  2386. } else {
  2387. dprintf(idx, "Leaving chat mode...\n");
  2388. chanout_but(-1, dcc[idx].u.chat->channel,
  2389. "*** %s left the party line.\n",
  2390. dcc[idx].nick);
  2391. if (dcc[idx].u.chat->channel < GLOBAL_CHANS)
  2392. botnet_send_part_idx(idx, "");
  2393. }
  2394. dcc[idx].u.chat->channel = (-1);
  2395. } else {
  2396. int newchan, oldchan;
  2397. if (arg[0] == '*') {
  2398. if (((arg[1] < '0') || (arg[1] > '9'))) {
  2399. if (!arg[1])
  2400. newchan = 0;
  2401. else {
  2402. newchan = -1;
  2403. }
  2404. if (newchan < 0) {
  2405. dprintf(idx, "No channel exists by that name.\n");
  2406. return;
  2407. }
  2408. } else
  2409. newchan = GLOBAL_CHANS + atoi(arg + 1);
  2410. if (newchan < GLOBAL_CHANS || newchan > 199999) {
  2411. dprintf(idx, "Channel number out of range: local channels must be *0-*99999.\n");
  2412. return;
  2413. }
  2414. } else {
  2415. if (((arg[0] < '0') || (arg[0] > '9')) && (arg[0])) {
  2416. if (!strcasecmp(arg, "on"))
  2417. newchan = 0;
  2418. else {
  2419. newchan = -1;
  2420. }
  2421. if (newchan < 0) {
  2422. dprintf(idx, "No channel exists by that name.\n");
  2423. return;
  2424. }
  2425. } else
  2426. newchan = atoi(arg);
  2427. if ((newchan < 0) || (newchan > 99999)) {
  2428. dprintf(idx, "Channel number out of range: must be between 0 and 99999.\n");
  2429. return;
  2430. }
  2431. }
  2432. /* If coming back from being off the party line, make sure they're
  2433. * not away.
  2434. */
  2435. if ((dcc[idx].u.chat->channel < 0) && (dcc[idx].u.chat->away != NULL))
  2436. not_away(idx);
  2437. if (dcc[idx].u.chat->channel == newchan) {
  2438. if (!newchan) {
  2439. dprintf(idx, "You're already on the party line!\n");
  2440. return;
  2441. } else {
  2442. dprintf(idx, "You're already on channel %s%d!\n",
  2443. (newchan < GLOBAL_CHANS) ? "" : "*", newchan % GLOBAL_CHANS);
  2444. return;
  2445. }
  2446. } else {
  2447. oldchan = dcc[idx].u.chat->channel;
  2448. if (!oldchan) {
  2449. chanout_but(-1, 0, "*** %s left the party line.\n", dcc[idx].nick);
  2450. } else if (oldchan > 0) {
  2451. chanout_but(-1, oldchan, "*** %s left the channel.\n", dcc[idx].nick);
  2452. }
  2453. dcc[idx].u.chat->channel = newchan;
  2454. if (!newchan) {
  2455. dprintf(idx, "Entering the party line...\n");
  2456. chanout_but(-1, 0, "*** %s joined the party line.\n", dcc[idx].nick);
  2457. } else {
  2458. dprintf(idx, "Joining channel '%s'...\n", arg);
  2459. chanout_but(-1, newchan, "*** %s joined the channel.\n", dcc[idx].nick);
  2460. }
  2461. if (newchan < GLOBAL_CHANS)
  2462. botnet_send_join_idx(idx);
  2463. else if (oldchan < GLOBAL_CHANS)
  2464. botnet_send_part_idx(idx, "");
  2465. }
  2466. }
  2467. console_dostore(idx);
  2468. }
  2469. int exec_str(int idx, char *cmd) {
  2470. char *out = NULL, *err = NULL;
  2471. if (shell_exec(cmd, NULL, &out, &err)) {
  2472. char *p = NULL, *np = NULL;
  2473. if (out) {
  2474. dprintf(idx, "Result:\n");
  2475. p = out;
  2476. while (p && p[0]) {
  2477. np = strchr(p, '\n');
  2478. if (np)
  2479. *np++ = 0;
  2480. dprintf(idx, "%s\n", p);
  2481. p = np;
  2482. }
  2483. dprintf(idx, "\n");
  2484. free(out);
  2485. }
  2486. if (err) {
  2487. dprintf(idx, "Errors:\n");
  2488. p = err;
  2489. while (p && p[0]) {
  2490. np = strchr(p, '\n');
  2491. if (np)
  2492. *np++ = 0;
  2493. dprintf(idx, "%s\n", p);
  2494. p = np;
  2495. }
  2496. dprintf(idx, "\n");
  2497. free(err);
  2498. }
  2499. return 1;
  2500. }
  2501. return 0;
  2502. }
  2503. static void cmd_exec(int idx, char *par) {
  2504. putlog(LOG_CMDS, "*", "#%s# exec %s", dcc[idx].nick, par);
  2505. if (!conf.bot->hub && !isowner(dcc[idx].nick)) {
  2506. putlog(LOG_WARN, "*", "%s attempted 'exec' %s", dcc[idx].nick, par);
  2507. dprintf(idx, "exec is only available to permanent owners on leaf bots\n");
  2508. return;
  2509. }
  2510. if (exec_str(idx, par))
  2511. dprintf(idx, "Exec completed\n");
  2512. else
  2513. dprintf(idx, "Exec failed\n");
  2514. }
  2515. static void cmd_w(int idx, char *par) {
  2516. putlog(LOG_CMDS, "*", "#%s# w", dcc[idx].nick);
  2517. if (!exec_str(idx, "w"))
  2518. dprintf(idx, "Exec failed\n");
  2519. }
  2520. static void cmd_ps(int idx, char *par) {
  2521. putlog(LOG_CMDS, "*", "#%s# ps %s", dcc[idx].nick, par);
  2522. if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>') || strchr(par, '`') || strchr(par, '$')) {
  2523. putlog(LOG_WARN, "*", "%s attempted 'ps' with pipe/semicolon in parameters: %s", dcc[idx].nick, par);
  2524. dprintf(idx, "No.\n");
  2525. return;
  2526. }
  2527. size_t size = strlen(par) + 9 + 1;
  2528. char *buf = (char *) my_calloc(1, size);
  2529. simple_snprintf(buf, size, "ps %s", par);
  2530. if (!exec_str(idx, buf))
  2531. dprintf(idx, "Exec failed\n");
  2532. free(buf);
  2533. }
  2534. static void cmd_last(int idx, char *par) {
  2535. putlog(LOG_CMDS, "*", "#%s# last %s", dcc[idx].nick, par);
  2536. if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>') || strchr(par, '`') || strchr(par, '$')) {
  2537. putlog(LOG_WARN, "*", "%s attempted 'last' with pipe/semicolon in parameters: %s", dcc[idx].nick, par);
  2538. dprintf(idx, "No.\n");
  2539. return;
  2540. }
  2541. char user[20] = "";
  2542. if (par[0]) {
  2543. strlcpy(user, par, sizeof(user));
  2544. } else if (conf.username) {
  2545. strlcpy(user, conf.username, sizeof(user));
  2546. }
  2547. if (!user[0]) {
  2548. dprintf(idx, "Can't determine user id for process\n");
  2549. return;
  2550. }
  2551. char buf[30] = "";
  2552. simple_snprintf(buf, sizeof buf, "last %s", user);
  2553. if (!exec_str(idx, buf))
  2554. dprintf(idx, "Failed to execute /bin/sh last\n");
  2555. }
  2556. static void cmd_echo(int idx, char *par)
  2557. {
  2558. if (!par[0]) {
  2559. dprintf(idx, "Echo is currently %s.\n", dcc[idx].status & STAT_ECHO ? "on" : "off");
  2560. return;
  2561. }
  2562. if (!strcasecmp(par, "on")) {
  2563. dprintf(idx, "Echo turned on.\n");
  2564. dcc[idx].status |= STAT_ECHO;
  2565. } else if (!strcasecmp(par, "off")) {
  2566. dprintf(idx, "Echo turned off.\n");
  2567. dcc[idx].status &= ~STAT_ECHO;
  2568. } else {
  2569. dprintf(idx, "Usage: echo <on/off>\n");
  2570. return;
  2571. }
  2572. console_dostore(idx);
  2573. }
  2574. static void cmd_login(int idx, char *par)
  2575. {
  2576. char *which = NULL;
  2577. int set = -1, whichbit = 0;
  2578. if (!par[0]) {
  2579. dprintf(idx, "Usage: login <banner|bots|channels|whom> [on/off]\n");
  2580. return;
  2581. }
  2582. which = newsplit(&par);
  2583. if (!strcasecmp(which, "banner"))
  2584. whichbit = STAT_BANNER;
  2585. else if (!strcasecmp(which, "bots"))
  2586. whichbit = STAT_BOTS;
  2587. else if (!strcasecmp(which, "channels"))
  2588. whichbit = STAT_CHANNELS;
  2589. else if (!strcasecmp(which, "whom"))
  2590. whichbit = STAT_WHOM;
  2591. else {
  2592. dprintf(idx, "Unrecognized option '$b%s$b'\n", which);
  2593. return;
  2594. }
  2595. if (!par[0]) {
  2596. dprintf(idx, "'%s' is currently: $b%s$b\n", which, (dcc[idx].status & whichbit) ? "on" : "off");
  2597. return;
  2598. }
  2599. if (!strcasecmp(par, "on"))
  2600. set = 1;
  2601. else if (!strcasecmp(par, "off"))
  2602. set = 0;
  2603. else {
  2604. dprintf(idx, "Unrecognized setting '$b%s$b'\n", par);
  2605. return;
  2606. }
  2607. if (set)
  2608. dcc[idx].status |= whichbit;
  2609. else if (!set)
  2610. dcc[idx].status &= ~whichbit;
  2611. console_dostore(idx);
  2612. }
  2613. static void cmd_color(int idx, char *par)
  2614. {
  2615. int ansi = coloridx(idx);
  2616. putlog(LOG_CMDS, "*", "#%s# color %s", dcc[idx].nick, par);
  2617. if (!par[0]) {
  2618. dprintf(idx, "Usage: color <on/off>\n");
  2619. if (ansi)
  2620. dprintf(idx, "Color is currently on. (%s)\n", ansi == 1 ? "ANSI" : "mIRC");
  2621. else
  2622. dprintf(idx, "Color is currently off.\n");
  2623. return;
  2624. }
  2625. char *of = newsplit(&par);
  2626. if (!strcasecmp(of, "on")) {
  2627. dcc[idx].status |= STAT_COLOR;
  2628. } else if (!strcasecmp(of, "off")) {
  2629. dcc[idx].status &= ~(STAT_COLOR);
  2630. dprintf(idx, "Color turned off.\n");
  2631. } else {
  2632. return;
  2633. }
  2634. console_dostore(idx);
  2635. }
  2636. int stripmodes(char *s)
  2637. {
  2638. int res = 0;
  2639. for (; *s; s++)
  2640. switch (tolower(*s)) {
  2641. case 'b':
  2642. res |= STRIP_BOLD;
  2643. break;
  2644. case 'c':
  2645. res |= STRIP_COLOR;
  2646. break;
  2647. case 'r':
  2648. res |= STRIP_REV;
  2649. break;
  2650. case 'u':
  2651. res |= STRIP_UNDER;
  2652. break;
  2653. case 'a':
  2654. res |= STRIP_ANSI;
  2655. break;
  2656. case 'g':
  2657. res |= STRIP_BELLS;
  2658. break;
  2659. case '*':
  2660. res |= STRIP_ALL;
  2661. break;
  2662. }
  2663. return res;
  2664. }
  2665. char *stripmasktype(int x)
  2666. {
  2667. static char s[20] = "";
  2668. char *p = s;
  2669. if (x & STRIP_BOLD)
  2670. *p++ = 'b';
  2671. if (x & STRIP_COLOR)
  2672. *p++ = 'c';
  2673. if (x & STRIP_REV)
  2674. *p++ = 'r';
  2675. if (x & STRIP_UNDER)
  2676. *p++ = 'u';
  2677. if (x & STRIP_ANSI)
  2678. *p++ = 'a';
  2679. if (x & STRIP_BELLS)
  2680. *p++ = 'g';
  2681. if (p == s)
  2682. *p++ = '-';
  2683. *p = 0;
  2684. return s;
  2685. }
  2686. static char *stripmaskname(int x)
  2687. {
  2688. static char s[161] = "";
  2689. size_t i = 0;
  2690. s[0] = 0;
  2691. if (x & STRIP_BOLD)
  2692. i += my_strcpy(s + i, "bold, ");
  2693. if (x & STRIP_COLOR)
  2694. i += my_strcpy(s + i, "color, ");
  2695. if (x & STRIP_REV)
  2696. i += my_strcpy(s + i, "reverse, ");
  2697. if (x & STRIP_UNDER)
  2698. i += my_strcpy(s + i, "underline, ");
  2699. if (x & STRIP_ANSI)
  2700. i += my_strcpy(s + i, "ansi, ");
  2701. if (x & STRIP_BELLS)
  2702. i += my_strcpy(s + i, "bells, ");
  2703. if (!i)
  2704. strlcpy(s, "none", sizeof(s));
  2705. else
  2706. s[i - 2] = 0;
  2707. return s;
  2708. }
  2709. static void cmd_strip(int idx, char *par)
  2710. {
  2711. if (!par[0]) {
  2712. dprintf(idx, "Your current strip settings are: %s (%s).\n",
  2713. stripmasktype(dcc[idx].u.chat->strip_flags),
  2714. stripmaskname(dcc[idx].u.chat->strip_flags));
  2715. return;
  2716. }
  2717. char *nick = newsplit(&par), *changes = NULL, *c = NULL, s[2] = "";
  2718. int dest = 0, i, pls, md, ok = 0;
  2719. if ((nick[0] != '+') && (nick[0] != '-') &&dcc[idx].user && (dcc[idx].user->flags & USER_MASTER)) {
  2720. for (i = 0; i < dcc_total; i++) {
  2721. if (dcc[i].type && !strcasecmp(nick, dcc[i].nick) && dcc[i].type == &DCC_CHAT && !ok) {
  2722. ok = 1;
  2723. dest = i;
  2724. }
  2725. }
  2726. if (!ok) {
  2727. dprintf(idx, "No such user on the party line!\n");
  2728. return;
  2729. }
  2730. changes = par;
  2731. } else {
  2732. changes = nick;
  2733. nick = "";
  2734. dest = idx;
  2735. }
  2736. c = changes;
  2737. if ((c[0] != '+') && (c[0] != '-'))
  2738. dcc[dest].u.chat->strip_flags = 0;
  2739. s[1] = 0;
  2740. for (pls = 1; *c; c++) {
  2741. switch (*c) {
  2742. case '+':
  2743. pls = 1;
  2744. break;
  2745. case '-':
  2746. pls = 0;
  2747. break;
  2748. default:
  2749. s[0] = *c;
  2750. md = stripmodes(s);
  2751. if (pls == 1)
  2752. dcc[dest].u.chat->strip_flags |= md;
  2753. else
  2754. dcc[dest].u.chat->strip_flags &= ~md;
  2755. }
  2756. }
  2757. if (nick[0])
  2758. putlog(LOG_CMDS, "*", "#%s# strip %s %s", dcc[idx].nick, nick, changes);
  2759. else
  2760. putlog(LOG_CMDS, "*", "#%s# strip %s", dcc[idx].nick, changes);
  2761. if (dest == idx) {
  2762. dprintf(idx, "Your strip settings are: %s (%s).\n",
  2763. stripmasktype(dcc[idx].u.chat->strip_flags),
  2764. stripmaskname(dcc[idx].u.chat->strip_flags));
  2765. } else {
  2766. dprintf(idx, "Strip setting for %s: %s (%s).\n", dcc[dest].nick,
  2767. stripmasktype(dcc[dest].u.chat->strip_flags),
  2768. stripmaskname(dcc[dest].u.chat->strip_flags));
  2769. dprintf(dest, "%s set your strip settings to: %s (%s).\n", dcc[idx].nick,
  2770. stripmasktype(dcc[dest].u.chat->strip_flags),
  2771. stripmaskname(dcc[dest].u.chat->strip_flags));
  2772. }
  2773. /* Set highlight flag here so user is able to control stripping of
  2774. * bold also as intended -- dw 27/12/1999
  2775. */
  2776. console_dostore(dest);
  2777. }
  2778. static void cmd_su(int idx, char *par)
  2779. {
  2780. if (dcc[idx].simul >= 0) {
  2781. dprintf(idx, "Sorry, that cmd isn't available over botcmd.\n");
  2782. return;
  2783. }
  2784. int atr = dcc[idx].user ? dcc[idx].user->flags : 0, ok;
  2785. struct flag_record fr = {FR_ANYWH | FR_CHAN | FR_GLOBAL, 0, 0, 0 };
  2786. struct userrec *u = NULL;
  2787. u = get_user_by_handle(userlist, par);
  2788. if (!par[0])
  2789. dprintf(idx, "Usage: su <user>\n");
  2790. else if (!u || (u && !whois_access(dcc[idx].user, u)))
  2791. dprintf(idx, "No such user.\n");
  2792. else if (u->bot)
  2793. dprintf(idx, "You can't su to a bot... then again, why would you wanna?\n");
  2794. else if (dcc[idx].u.chat->su_nick)
  2795. dprintf(idx, "You cannot currently double .su; try .su'ing directly.\n");
  2796. else {
  2797. get_user_flagrec(u, &fr, NULL);
  2798. ok = 1;
  2799. if (conf.bot->hub) {
  2800. if (!glob_huba(fr))
  2801. ok = 0;
  2802. } else {
  2803. if (ischanhub() && !glob_chuba(fr))
  2804. ok = 0;
  2805. }
  2806. if (!ok)
  2807. dprintf(idx, "No party line access permitted for %s.\n", par);
  2808. else {
  2809. correct_handle(par);
  2810. putlog(LOG_CMDS, "*", "#%s# su %s", dcc[idx].nick, par);
  2811. if (!(atr & USER_OWNER) ||
  2812. ((u->flags & USER_OWNER) && (isowner(par)) &&
  2813. !(isowner(dcc[idx].nick)))) {
  2814. /* This check is only important for non-owners */
  2815. if (u_pass_match(u, "-")) {
  2816. dprintf(idx, "No password set for user. You may not .su to them.\n");
  2817. return;
  2818. }
  2819. if (dcc[idx].u.chat->channel < GLOBAL_CHANS)
  2820. botnet_send_part_idx(idx, "");
  2821. chanout_but(-1, dcc[idx].u.chat->channel,
  2822. "*** %s left the party line.\n", dcc[idx].nick);
  2823. /* Store the old nick in the away section, for weenies who can't get
  2824. * their password right ;)
  2825. */
  2826. if (dcc[idx].u.chat->away != NULL)
  2827. free(dcc[idx].u.chat->away);
  2828. dcc[idx].u.chat->away = strdup(dcc[idx].nick);
  2829. dcc[idx].u.chat->su_nick = strdup(dcc[idx].nick);
  2830. dcc[idx].u.chat->su_channel = dcc[idx].u.chat->channel;
  2831. dcc[idx].user = u;
  2832. strlcpy(dcc[idx].nick, par, sizeof(dcc[idx].nick));
  2833. /* Display password prompt and turn off echo (send IAC WILL ECHO). */
  2834. dprintf(idx, "Enter password for %s%s\n", par,
  2835. (dcc[idx].status & STAT_TELNET) ? TLN_IAC_C TLN_WILL_C
  2836. TLN_ECHO_C : "");
  2837. dcc[idx].type = &DCC_CHAT_PASS;
  2838. } else if (atr & USER_ADMIN) {
  2839. if (dcc[idx].u.chat->channel < GLOBAL_CHANS)
  2840. botnet_send_part_idx(idx, "");
  2841. chanout_but(-1, dcc[idx].u.chat->channel,
  2842. "*** %s left the party line.\n", dcc[idx].nick);
  2843. dprintf(idx, "Setting your username to %s.\n", par);
  2844. if (atr & USER_MASTER)
  2845. dcc[idx].u.chat->con_flags = conmask;
  2846. dcc[idx].u.chat->su_nick = strdup(dcc[idx].nick);
  2847. dcc[idx].u.chat->su_channel = dcc[idx].u.chat->channel;
  2848. dcc[idx].user = u;
  2849. strlcpy(dcc[idx].nick, par, sizeof(dcc[idx].nick));
  2850. dcc_chatter(idx);
  2851. }
  2852. }
  2853. }
  2854. }
  2855. static void cmd_fixcodes(int idx, char *par)
  2856. {
  2857. if (dcc[idx].status & STAT_TELNET) {
  2858. dcc[idx].status |= STAT_ECHO;
  2859. dcc[idx].status &= ~STAT_TELNET;
  2860. dprintf(idx, "Turned off telnet codes.\n");
  2861. putlog(LOG_CMDS, "*", "#%s# fixcodes (telnet off)", dcc[idx].nick);
  2862. } else {
  2863. dcc[idx].status |= STAT_TELNET;
  2864. dcc[idx].status &= ~STAT_ECHO;
  2865. dprintf(idx, "Turned on telnet codes.\n");
  2866. putlog(LOG_CMDS, "*", "#%s# fixcodes (telnet on)", dcc[idx].nick);
  2867. }
  2868. }
  2869. static void cmd_page(int idx, char *par)
  2870. {
  2871. int a;
  2872. if (!par[0]) {
  2873. if (dcc[idx].status & STAT_PAGE) {
  2874. dprintf(idx, "Currently paging outputs to %d lines.\n",
  2875. dcc[idx].u.chat->max_line);
  2876. } else
  2877. dprintf(idx, "You don't have paging on.\n");
  2878. return;
  2879. }
  2880. a = atoi(par);
  2881. if ((!a && !par[0]) || !strcasecmp(par, "off")) {
  2882. dcc[idx].status &= ~STAT_PAGE;
  2883. dcc[idx].u.chat->max_line = 0x7ffffff; /* flush_lines needs this */
  2884. while (dcc[idx].u.chat->buffer)
  2885. flush_lines(idx, dcc[idx].u.chat);
  2886. dprintf(idx, "Paging turned off.\n");
  2887. putlog(LOG_CMDS, "*", "#%s# page off", dcc[idx].nick);
  2888. } else if (a > 0) {
  2889. dprintf(idx, "Paging turned on, stopping every %d line%s.\n", a,
  2890. (a != 1) ? "s" : "");
  2891. dcc[idx].status |= STAT_PAGE;
  2892. dcc[idx].u.chat->max_line = a;
  2893. dcc[idx].u.chat->line_count = 0;
  2894. dcc[idx].u.chat->current_lines = 0;
  2895. putlog(LOG_CMDS, "*", "#%s# page %d", dcc[idx].nick, a);
  2896. } else {
  2897. dprintf(idx, "Usage: page <off or #>\n");
  2898. return;
  2899. }
  2900. console_dostore(idx);
  2901. }
  2902. static void cmd_newleaf(int idx, char *par)
  2903. {
  2904. if (!par[0]) {
  2905. dprintf(idx, "Usage: newleaf <handle> [host] [anotherhost]\n");
  2906. return;
  2907. }
  2908. putlog(LOG_CMDS, "*", "#%s# newleaf %s", dcc[idx].nick, par);
  2909. char *handle = newsplit(&par);
  2910. if (strlen(handle) > HANDLEN)
  2911. handle[HANDLEN] = 0;
  2912. if (get_user_by_handle(userlist, handle))
  2913. dprintf(idx, "Already got a %s user/bot\n", handle);
  2914. else if (strchr(BADHANDCHARS, handle[0]) != NULL)
  2915. dprintf(idx, "You can't start a botnick with '%c'.\n", handle[0]);
  2916. else {
  2917. struct userrec *u1 = NULL;
  2918. struct bot_addr *bi = NULL;
  2919. char tmp[81] = "", *host = NULL, *p = NULL, *hostname = NULL, *ip = NULL, *ip6 = NULL, *bhostname = NULL;
  2920. int af_type = 0;
  2921. userlist = adduser(userlist, handle, "none", "-", USER_OP, 1);
  2922. u1 = get_user_by_handle(userlist, handle);
  2923. bi = (struct bot_addr *) my_calloc(1, sizeof(struct bot_addr));
  2924. bi->uplink = (char *) my_calloc(1, 1);
  2925. bi->address = (char *) my_calloc(1, 1);
  2926. bi->telnet_port = 3333;
  2927. bi->relay_port = 3333;
  2928. bi->hublevel = 999;
  2929. set_user(&USERENTRY_BOTADDR, u1, bi);
  2930. /* set_user(&USERENTRY_PASS, u1, settings.salt2); */
  2931. simple_snprintf(tmp, sizeof(tmp), "%li %s", (long) now, dcc[idx].nick);
  2932. set_user(&USERENTRY_ADDED, u1, tmp);
  2933. dprintf(idx, "Added new leaf: %s\n", handle);
  2934. while (par[0]) {
  2935. host = newsplit(&par);
  2936. addhost_by_handle(handle, host);
  2937. dprintf(idx, "Added host '%s' to leaf: %s\n", host, handle);
  2938. if ((p = strchr(host, '@'))) {
  2939. hostname = ++p;
  2940. af_type = is_dotted_ip(hostname);
  2941. if (!ip && af_type == AF_INET)
  2942. ip = strdup(hostname);
  2943. #ifdef USE_IPV6
  2944. else if (!ip6 && af_type == AF_INET6)
  2945. ip6 = strdup(hostname);
  2946. #endif /* USE_IPV6 */
  2947. else if (!bhostname && !strchr(hostname, '*') && !strchr(hostname, '?'))
  2948. bhostname = strdup(hostname);
  2949. }
  2950. }
  2951. dprintf(idx, "Bot config line (prefix host with '+' if ipv6):\n");
  2952. dprintf(idx, "%s %s %s %s\n", handle, ip ? ip : "*", bhostname ? bhostname : "*", ip6 ? ip6 : "");
  2953. if (ip) free(ip);
  2954. if (ip6) free(ip6);
  2955. if (bhostname) free(bhostname);
  2956. write_userfile(idx);
  2957. }
  2958. }
  2959. static void cmd_newhub(int idx, char *par)
  2960. {
  2961. bd::Array<bd::String> params(bd::String(par).split(' '));
  2962. if (!par[0] || params.length() < 3) {
  2963. dprintf(idx, "Usage: newhub <handle> <address> <port> [hublevel]\n");
  2964. return;
  2965. }
  2966. putlog(LOG_CMDS, "*", "#%s# newhub %s", dcc[idx].nick, par);
  2967. bd::String handle(params[0]);
  2968. if (handle.length() > HANDLEN) {
  2969. handle.resize(HANDLEN);
  2970. }
  2971. if (get_user_by_handle(userlist, const_cast<char*>(handle.c_str()))) {
  2972. dprintf(idx, "Already got a %s hub\n", handle.c_str());
  2973. return;
  2974. } else if (strchr(BADHANDCHARS, handle[0]) != NULL) {
  2975. dprintf(idx, "You can't start a botnick with '%c'.\n", static_cast<char>(handle[0]));
  2976. return;
  2977. }
  2978. bd::String address(params[1]);
  2979. in_port_t port = atoi(static_cast<bd::String>(params[2]).c_str());
  2980. unsigned short hublevel = 0;
  2981. // Was a hublevel passed in?
  2982. if (params.length() == 4) {
  2983. hublevel = atoi(static_cast<bd::String>(params[3]).c_str());
  2984. } else {
  2985. // Find next available hublevel
  2986. for (struct userrec *u = userlist; u; u = u->next) {
  2987. unsigned short u_bot_hublevel = bot_hublevel(u);
  2988. if (u->bot && u_bot_hublevel < 999 && u_bot_hublevel > hublevel) {
  2989. hublevel = u_bot_hublevel;
  2990. }
  2991. }
  2992. ++hublevel;
  2993. }
  2994. struct bot_addr *bi = NULL;
  2995. struct userrec *u1 = NULL;
  2996. char tmp[81] = "";
  2997. userlist = adduser(userlist, handle.c_str(), "none", "-", USER_OP, 1);
  2998. u1 = get_user_by_handle(userlist, const_cast<char*>(handle.c_str()));
  2999. bi = (struct bot_addr *) my_calloc(1, sizeof(struct bot_addr));
  3000. bi->uplink = (char *) my_calloc(1, 1);
  3001. bi->address = strdup(address.c_str());
  3002. bi->telnet_port = port;
  3003. bi->relay_port = port;
  3004. bi->hublevel = hublevel;
  3005. set_user(&USERENTRY_BOTADDR, u1, bi);
  3006. simple_snprintf(tmp, sizeof(tmp), "%li %s", (long) now, dcc[idx].nick);
  3007. set_user(&USERENTRY_ADDED, u1, tmp);
  3008. dprintf(idx, "Added new hub: %s\n", handle.c_str());
  3009. write_userfile(idx);
  3010. }
  3011. static void cmd_nopass(int idx, char *par)
  3012. {
  3013. int cnt = 0;
  3014. struct userrec *cu = NULL;
  3015. char *users = (char *) my_calloc(1, 1), pass[MAXPASSLEN + 1] = "";
  3016. size_t userssiz = 1;
  3017. bool dopass = 0;
  3018. putlog(LOG_CMDS, "*", "#%s# nopass %s", dcc[idx].nick, par[0] ? par : "");
  3019. if (par[0])
  3020. dopass = 1;
  3021. for (cu = userlist; cu; cu = cu->next) {
  3022. if (!cu->bot) {
  3023. if (whois_access(dcc[idx].user, cu) && u_pass_match(cu, "-")) {
  3024. cnt++;
  3025. if (dopass) {
  3026. pass[0] = 0;
  3027. make_rand_str(pass, MAXPASSLEN);
  3028. set_user(&USERENTRY_PASS, cu, pass);
  3029. } else {
  3030. userssiz = strlen(users) + strlen(cu->handle) + 1 + 1;
  3031. users = (char *) my_realloc(users, userssiz);
  3032. strlcat(users, cu->handle, userssiz);
  3033. strlcat(users, " ", userssiz);
  3034. }
  3035. }
  3036. }
  3037. }
  3038. if (!cnt)
  3039. dprintf(idx, "All users have passwords set.\n");
  3040. else if (dopass) {
  3041. dprintf(idx, "%d users without passwords set to random.\n", cnt);
  3042. write_userfile(idx);
  3043. } else
  3044. dprintf(idx, "Users without passwords: %s\n", users);
  3045. free(users);
  3046. }
  3047. static void cmd_pls_ignore(int idx, char *par)
  3048. {
  3049. char *who = NULL, s[UHOSTLEN] = "";
  3050. unsigned long int expire_time = 0;
  3051. if (!par[0]) {
  3052. dprintf(idx, "Usage: +ignore <hostmask> [%%<XdXhXm>] [comment]\n");
  3053. return;
  3054. }
  3055. who = newsplit(&par);
  3056. if (par[0] == '%') {
  3057. char *p = NULL, *p_expire = NULL;
  3058. unsigned long int expire_foo;
  3059. p = newsplit(&par);
  3060. p_expire = p + 1;
  3061. while (*(++p) != 0) {
  3062. switch (tolower(*p)) {
  3063. case 'd':
  3064. *p = 0;
  3065. expire_foo = strtol(p_expire, NULL, 10);
  3066. if (expire_foo > 365)
  3067. expire_foo = 365;
  3068. expire_time += 86400 * expire_foo;
  3069. p_expire = p + 1;
  3070. break;
  3071. case 'h':
  3072. *p = 0;
  3073. expire_foo = strtol(p_expire, NULL, 10);
  3074. if (expire_foo > 8760)
  3075. expire_foo = 8760;
  3076. expire_time += 3600 * expire_foo;
  3077. p_expire = p + 1;
  3078. break;
  3079. case 'm':
  3080. *p = 0;
  3081. expire_foo = strtol(p_expire, NULL, 10);
  3082. if (expire_foo > 525600)
  3083. expire_foo = 525600;
  3084. expire_time += 60 * expire_foo;
  3085. p_expire = p + 1;
  3086. }
  3087. }
  3088. }
  3089. if (!par[0])
  3090. par = "requested";
  3091. else if (strlen(par) > 65)
  3092. par[65] = 0;
  3093. if (strlen(who) > UHOSTMAX - 4)
  3094. who[UHOSTMAX - 4] = 0;
  3095. /* Fix missing ! or @ BEFORE continuing */
  3096. if (!strchr(who, '!')) {
  3097. if (!strchr(who, '@'))
  3098. simple_snprintf(s, sizeof(s), "%s!*@*", who);
  3099. else
  3100. simple_snprintf(s, sizeof(s), "*!%s", who);
  3101. } else if (!strchr(who, '@'))
  3102. simple_snprintf(s, sizeof(s), "%s@*", who);
  3103. else
  3104. strlcpy(s, who, sizeof(s));
  3105. if (match_ignore(s))
  3106. dprintf(idx, "That already matches an existing ignore.\n");
  3107. else {
  3108. dprintf(idx, "Now ignoring: %s (%s)\n", s, par);
  3109. addignore(s, dcc[idx].nick, (const char *) par, expire_time ? now + expire_time : 0L);
  3110. putlog(LOG_CMDS, "*", "#%s# +ignore %s %s", dcc[idx].nick, s, par);
  3111. if (conf.bot->hub)
  3112. write_userfile(idx);
  3113. }
  3114. }
  3115. static void cmd_mns_ignore(int idx, char *par)
  3116. {
  3117. if (!par[0]) {
  3118. dprintf(idx, "Usage: -ignore <hostmask | ignore #>\n");
  3119. return;
  3120. }
  3121. char buf[UHOSTLEN] = "", *expanded_buf = NULL;
  3122. strlcpy(buf, par, sizeof buf);
  3123. if ((expanded_buf = delignore(buf)) && expanded_buf[0]) {
  3124. putlog(LOG_CMDS, "*", "#%s# -ignore %s", dcc[idx].nick, buf);
  3125. dprintf(idx, "No longer ignoring: %s\n", expanded_buf);
  3126. if (conf.bot->hub)
  3127. write_userfile(idx);
  3128. } else
  3129. dprintf(idx, "That ignore cannot be found.\n");
  3130. }
  3131. static void cmd_ignores(int idx, char *par)
  3132. {
  3133. putlog(LOG_CMDS, "*", "#%s# ignores %s", dcc[idx].nick, par);
  3134. tell_ignores(idx, par);
  3135. }
  3136. static void cmd_pls_user(int idx, char *par)
  3137. {
  3138. putlog(LOG_CMDS, "*", "#%s# +user %s", dcc[idx].nick, par);
  3139. if (!par[0]) {
  3140. dprintf(idx, "Usage: +user <handle> [host] [anotherhost] ...\n");
  3141. return;
  3142. }
  3143. char *handle = newsplit(&par), *host = newsplit(&par);
  3144. if (strlen(handle) > HANDLEN)
  3145. handle[HANDLEN] = 0;
  3146. if (get_user_by_handle(userlist, handle))
  3147. dprintf(idx, "Someone already exists by that name.\n");
  3148. else if (strchr(BADHANDCHARS, handle[0]) != NULL)
  3149. dprintf(idx, "You can't start a nick with '%c'.\n", handle[0]);
  3150. else if (!strcasecmp(handle, conf.bot->nick))
  3151. dprintf(idx, "Hey! That's MY name!\n");
  3152. else {
  3153. struct userrec *u2 = NULL;
  3154. char tmp[50] = "", s[MAXPASSLEN + 1] = "", s2[MAXPASSLEN + 1] = "";
  3155. char ahost[UHOSTLEN] = "", *phost = NULL;
  3156. if (host[0] && !strchr(host, '!')) {
  3157. if (!strchr(host, '@')) {
  3158. simple_snprintf(ahost, sizeof(ahost), "*!*@%s", host);
  3159. } else
  3160. simple_snprintf(ahost, sizeof(ahost), "*!%s", host);
  3161. phost = ahost;
  3162. } else
  3163. phost = host;
  3164. userlist = adduser(userlist, handle, phost, "-", USER_DEFAULT, 0);
  3165. u2 = get_user_by_handle(userlist, handle);
  3166. simple_snprintf(tmp, sizeof(tmp), "%li %s", (long)now, dcc[idx].nick);
  3167. set_user(&USERENTRY_ADDED, u2, tmp);
  3168. dprintf(idx, "Added %s (%s) with no flags.\n", handle, phost[0] ? phost : "no host");
  3169. while (par[0]) {
  3170. phost = 0;
  3171. ahost[0] = 0;
  3172. host = newsplit(&par);
  3173. if (!strchr(host, '!')) {
  3174. if (!strchr(host, '@')) {
  3175. simple_snprintf(ahost, sizeof(ahost), "*!*@%s", host);
  3176. } else
  3177. simple_snprintf(ahost, sizeof(ahost), "*!%s", host);
  3178. phost = ahost;
  3179. } else
  3180. phost = host;
  3181. addhost_by_handle(handle, phost);
  3182. dprintf(idx, "Added host '%s' to %s.\n", phost, handle);
  3183. }
  3184. make_rand_str(s, MAXPASSLEN);
  3185. set_user(&USERENTRY_PASS, u2, s);
  3186. make_rand_str(s2, MAXPASSLEN);
  3187. set_user(&USERENTRY_SECPASS, u2, s2);
  3188. dprintf(idx, "%s's initial password set to %s%s%s\n", handle, BOLD(idx), s, BOLD_END(idx));
  3189. dprintf(idx, "%s's initial secpass set to %s%s%s\n", handle, BOLD(idx), s2, BOLD_END(idx));
  3190. if (conf.bot->hub)
  3191. write_userfile(idx);
  3192. }
  3193. }
  3194. static void cmd_mns_user(int idx, char *par)
  3195. {
  3196. putlog(LOG_CMDS, "*", "#%s# -user %s", dcc[idx].nick, par);
  3197. if (!par[0]) {
  3198. dprintf(idx, "Usage: -user <handle> [anotherhandle] ...\n");
  3199. return;
  3200. }
  3201. struct userrec *u2 = NULL;
  3202. while (par[0]) {
  3203. char *handle = newsplit(&par);
  3204. u2 = get_user_by_handle(userlist, handle);
  3205. if (!u2 || (u2 && !whois_access(dcc[idx].user, u2))) {
  3206. dprintf(idx, "No such user: %s\n", handle);
  3207. continue;
  3208. }
  3209. if (isowner(handle)) {
  3210. dprintf(idx, "A hard-coded owner is unremoveable: %s\n", handle);
  3211. continue;
  3212. }
  3213. if ((u2->flags & USER_OWNER) && !(dcc[idx].user->flags & USER_OWNER)) {
  3214. dprintf(idx, "You can't remove a bot owner: %s\n", handle);
  3215. continue;
  3216. }
  3217. if (u2->bot) {
  3218. if (!(dcc[idx].user->flags & USER_OWNER)) {
  3219. dprintf(idx, "You can't remove bots!");
  3220. continue;
  3221. }
  3222. if (!strcasecmp(u2->handle, conf.bot->nick)) {
  3223. dprintf(idx, "Use 'suicide' to kill me.\n");
  3224. continue;
  3225. }
  3226. int i = nextbot(handle);
  3227. if (i < 0)
  3228. botunlink(idx, handle, "Bot removed.");
  3229. else if (!strcasecmp(dcc[i].nick, handle))
  3230. botunlink(idx, handle, "Bot removed.");
  3231. else {
  3232. char x[40] = "";
  3233. simple_snprintf(x, sizeof(x), "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick);
  3234. botnet_send_unlink(i, x, lastbot(handle), handle, "Bot removed.");
  3235. }
  3236. }
  3237. if (!conf.bot->hub)
  3238. check_this_user(handle, 1, NULL);
  3239. if (deluser(handle)) {
  3240. dprintf(idx, "Removed %s: %s.\n", u2->bot ? "bot" : "user", handle);
  3241. } else
  3242. dprintf(idx, "Failed to remove %s: %s.\n", u2->bot ? "bot" : "user", handle);
  3243. }
  3244. if (conf.bot->hub)
  3245. write_userfile(idx);
  3246. }
  3247. static void cmd_pls_host(int idx, char *par)
  3248. {
  3249. putlog(LOG_CMDS, "*", "#%s# +host %s", dcc[idx].nick, par);
  3250. if (!par[0]) {
  3251. dprintf(idx, "Usage: +host [handle] <newhostmask> [anotherhost] ...\n");
  3252. return;
  3253. }
  3254. char *handle = newsplit(&par), *host = NULL;
  3255. struct userrec *u2 = NULL;
  3256. if (par[0]) {
  3257. host = newsplit(&par);
  3258. u2 = get_user_by_handle(userlist, handle);
  3259. } else {
  3260. host = handle;
  3261. handle = dcc[idx].nick;
  3262. u2 = dcc[idx].user;
  3263. }
  3264. if (!u2 || (u2 && !whois_access(dcc[idx].user, u2))) {
  3265. dprintf(idx, "No such user.\n");
  3266. return;
  3267. }
  3268. struct flag_record fr2 = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 },
  3269. fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 };
  3270. get_user_flagrec(dcc[idx].user, &fr, NULL);
  3271. if (strcasecmp(handle, dcc[idx].nick)) {
  3272. get_user_flagrec(u2, &fr2, NULL);
  3273. if (!glob_master(fr) && !glob_bot(fr2) && !chan_master(fr)) {
  3274. dprintf(idx, "You can't add hostmasks to non-bots.\n");
  3275. return;
  3276. }
  3277. if (!glob_owner(fr) && glob_bot(fr2)) {
  3278. dprintf(idx, "You can't add hostmasks to bots.\n");
  3279. return;
  3280. }
  3281. if (glob_admin(fr2) && !isowner(dcc[idx].nick)) {
  3282. dprintf(idx, "You can't add hostmasks to an admin.\n");
  3283. return;
  3284. }
  3285. if ((glob_owner(fr2) || glob_master(fr2)) && !glob_owner(fr)) {
  3286. dprintf(idx, "You can't add hostmasks to a bot owner/master.\n");
  3287. return;
  3288. }
  3289. if ((chan_owner(fr2) || chan_master(fr2)) && !glob_master(fr) &&
  3290. !glob_owner(fr) && !chan_owner(fr)) {
  3291. dprintf(idx, "You can't add hostmasks to a channel owner/master.\n");
  3292. return;
  3293. }
  3294. if (!glob_master(fr) && !chan_master(fr)) {
  3295. dprintf(idx, "Permission denied.\n");
  3296. return;
  3297. }
  3298. }
  3299. if (!chan_master(fr) && get_user_by_host(host)) {
  3300. dprintf(idx, "You cannot add a host matching another user!\n");
  3301. return;
  3302. }
  3303. char ahost[UHOSTLEN] = "", *phost = NULL;
  3304. if (!strchr(host, '!')) {
  3305. if (!strchr(host, '@')) {
  3306. simple_snprintf(ahost, sizeof(ahost), "*!*@%s", host);
  3307. } else
  3308. simple_snprintf(ahost, sizeof(ahost), "*!%s", host);
  3309. phost = ahost;
  3310. } else
  3311. phost = host;
  3312. if (user_has_host(NULL, dcc[idx].user, phost))
  3313. dprintf(idx, "The hostmask '%s' is already there.\n", phost);
  3314. else {
  3315. addhost_by_handle(handle, phost);
  3316. update_mod(handle, dcc[idx].nick, "+host", phost);
  3317. dprintf(idx, "Added host '%s' to %s.\n", phost, handle);
  3318. }
  3319. while (par[0]) {
  3320. phost = 0;
  3321. ahost[0] = 0;
  3322. host = newsplit(&par);
  3323. if (!strchr(host, '!')) {
  3324. if (!strchr(host, '@')) {
  3325. simple_snprintf(ahost, sizeof(ahost), "*!*@%s", host);
  3326. } else
  3327. simple_snprintf(ahost, sizeof(ahost), "*!%s", host);
  3328. phost = ahost;
  3329. } else
  3330. phost = host;
  3331. if (user_has_host(NULL, dcc[idx].user, phost))
  3332. dprintf(idx, "The hostmask '%s' is already there.\n", phost);
  3333. else {
  3334. addhost_by_handle(handle, phost);
  3335. dprintf(idx, "Added host '%s' to %s.\n", phost, handle);
  3336. }
  3337. }
  3338. if (!conf.bot->hub)
  3339. check_this_user(handle, 0, NULL);
  3340. else
  3341. write_userfile(idx);
  3342. }
  3343. static void cmd_mns_host(int idx, char *par)
  3344. {
  3345. putlog(LOG_CMDS, "*", "#%s# -host %s", dcc[idx].nick, par);
  3346. if (!par[0]) {
  3347. dprintf(idx, "Usage: -host [handle] <hostmask> [anotherhost] ...\n");
  3348. return;
  3349. }
  3350. char *handle = newsplit(&par), *host = NULL;
  3351. struct userrec *u2 = NULL;
  3352. if (par[0]) {
  3353. host = newsplit(&par);
  3354. u2 = get_user_by_handle(userlist, handle);
  3355. } else {
  3356. host = handle;
  3357. handle = dcc[idx].nick;
  3358. u2 = dcc[idx].user;
  3359. }
  3360. if (!u2 || (u2 && !whois_access(dcc[idx].user, u2))) {
  3361. dprintf(idx, "No such user.\n");
  3362. return;
  3363. }
  3364. struct flag_record fr2 = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 },
  3365. fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 };
  3366. get_user_flagrec(dcc[idx].user, &fr, NULL);
  3367. get_user_flagrec(u2, &fr2, NULL);
  3368. /* check to see if user is +d or +k and don't let them remove hosts from THEMSELVES*/
  3369. if (dcc[idx].user == u2 && (glob_deop(fr) || glob_kick(fr) || (!glob_master(fr) && (chan_deop(fr) || chan_kick (fr))))) {
  3370. dprintf(idx, "You can't remove hostmasks from yourself while having the +d or +k flag.\n");
  3371. return;
  3372. }
  3373. if (strcasecmp(handle, dcc[idx].nick)) {
  3374. if (!glob_master(fr) && !glob_bot(fr2) && !chan_master(fr)) {
  3375. dprintf(idx, "You can't remove hostmasks from non-bots.\n");
  3376. return;
  3377. }
  3378. if (glob_bot(fr2) && !glob_owner(fr)) {
  3379. dprintf(idx, "You can't remove hostmasks from bots.\n");
  3380. return;
  3381. }
  3382. if (glob_admin(fr2) && !isowner(dcc[idx].nick)) {
  3383. dprintf(idx, "You can't remove hostmasks from an admin.\n");
  3384. return;
  3385. }
  3386. if ((glob_owner(fr2) || glob_master(fr2)) && !glob_owner(fr)) {
  3387. dprintf(idx, "You can't remove hostmasks from a bot owner/master.\n");
  3388. return;
  3389. }
  3390. if ((chan_owner(fr2) || chan_master(fr2)) && !glob_master(fr) &&
  3391. !glob_owner(fr) && !chan_owner(fr)) {
  3392. dprintf(idx, "You can't remove hostmasks from a channel owner/master.\n");
  3393. return;
  3394. }
  3395. if (!glob_master(fr) && !chan_master(fr)) {
  3396. dprintf(idx, "Permission denied.\n");
  3397. return;
  3398. }
  3399. }
  3400. char ahost[UHOSTLEN] = "", *phost = NULL;
  3401. if (!strchr(host, '!')) {
  3402. if (!strchr(host, '@')) {
  3403. simple_snprintf(ahost, sizeof(ahost), "*!*@%s", host);
  3404. } else
  3405. simple_snprintf(ahost, sizeof(ahost), "*!%s", host);
  3406. phost = ahost;
  3407. } else
  3408. phost = host;
  3409. if (delhost_by_handle(handle, phost)) {
  3410. dprintf(idx, "Removed host '%s' from %s.\n", phost, handle);
  3411. update_mod(handle, dcc[idx].nick, "-host", phost);
  3412. while (par[0]) {
  3413. phost = 0;
  3414. ahost[0] = 0;
  3415. host = newsplit(&par);
  3416. if (!strchr(host, '!')) {
  3417. if (!strchr(host, '@')) {
  3418. simple_snprintf(ahost, sizeof(ahost), "*!*@%s", host);
  3419. } else
  3420. simple_snprintf(ahost, sizeof(ahost), "*!%s", host);
  3421. phost = ahost;
  3422. } else
  3423. phost = host;
  3424. if (delhost_by_handle(handle, phost)) {
  3425. if (!conf.bot->hub)
  3426. check_this_user(handle, 2, phost);
  3427. dprintf(idx, "Removed host '%s' from %s.\n", phost, handle);
  3428. }
  3429. }
  3430. if (conf.bot->hub)
  3431. write_userfile(idx);
  3432. } else
  3433. dprintf(idx, "Failed.\n");
  3434. }
  3435. static void cmd_clearhosts(int idx, char *par)
  3436. {
  3437. putlog(LOG_CMDS, "*", "#%s# clearhosts %s", dcc[idx].nick, par);
  3438. char *handle = NULL;
  3439. struct userrec *u2 = NULL;
  3440. if (par[0]) {
  3441. handle = newsplit(&par);
  3442. u2 = get_user_by_handle(userlist, handle);
  3443. } else {
  3444. handle = dcc[idx].nick;
  3445. u2 = dcc[idx].user;
  3446. }
  3447. if (!u2 || (u2 && !whois_access(dcc[idx].user, u2))) {
  3448. dprintf(idx, "No such user.\n");
  3449. return;
  3450. }
  3451. struct flag_record fr2 = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 },
  3452. fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 };
  3453. get_user_flagrec(dcc[idx].user, &fr, NULL);
  3454. get_user_flagrec(u2, &fr2, NULL);
  3455. /* check to see if user is +d or +k and don't let them remove hosts from THEMSELVES*/
  3456. if (dcc[idx].user == u2 && (glob_deop(fr) || glob_kick(fr) || (!glob_master(fr) && (chan_deop(fr) || chan_kick (fr))))) {
  3457. dprintf(idx, "You can't remove hostmasks from yourself while having the +d or +k flag.\n");
  3458. return;
  3459. }
  3460. if (strcasecmp(handle, dcc[idx].nick)) {
  3461. if (!glob_master(fr) && !glob_bot(fr2) && !chan_master(fr)) {
  3462. dprintf(idx, "You can't remove hostmasks from non-bots.\n");
  3463. return;
  3464. }
  3465. if (glob_bot(fr2) && !glob_owner(fr)) {
  3466. dprintf(idx, "You can't remove hostmasks from bots.\n");
  3467. return;
  3468. }
  3469. if (glob_admin(fr2) && !isowner(dcc[idx].nick)) {
  3470. dprintf(idx, "You can't remove hostmasks from an admin.\n");
  3471. return;
  3472. }
  3473. if ((glob_owner(fr2) || glob_master(fr2)) && !glob_owner(fr)) {
  3474. dprintf(idx, "You can't remove hostmasks from a bot owner/master.\n");
  3475. return;
  3476. }
  3477. if ((chan_owner(fr2) || chan_master(fr2)) && !glob_master(fr) &&
  3478. !glob_owner(fr) && !chan_owner(fr)) {
  3479. dprintf(idx, "You can't remove hostmasks from a channel owner/master.\n");
  3480. return;
  3481. }
  3482. if (!glob_master(fr) && !chan_master(fr)) {
  3483. dprintf(idx, "Permission denied.\n");
  3484. return;
  3485. }
  3486. }
  3487. if (get_user(&USERENTRY_HOSTS, u2)) {
  3488. shareout("ch %s\n", handle);
  3489. noshare = 1;
  3490. set_user(&USERENTRY_HOSTS, u2, (void *) "none");
  3491. noshare = 0;
  3492. dprintf(idx, "Cleared hosts for %s.\n", handle);
  3493. if (!conf.bot->hub && server_online)
  3494. check_this_user(handle, 1, NULL);
  3495. } else
  3496. dprintf(idx, "%s had no hosts set.\n", handle);
  3497. if (conf.bot->hub)
  3498. write_userfile(idx);
  3499. }
  3500. /* netserver */
  3501. static void cmd_netserver(int idx, char * par) {
  3502. putlog(LOG_CMDS, "*", "#%s# netserver", dcc[idx].nick);
  3503. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, "cursrv");
  3504. }
  3505. static void cmd_botserver(int idx, char * par) {
  3506. putlog(LOG_CMDS, "*", "#%s# botserver %s", dcc[idx].nick, par);
  3507. if (!par || !par[0]) {
  3508. dprintf(idx, "Usage: botserver <bot>\n");
  3509. return;
  3510. }
  3511. if (strcasecmp(conf.bot->nick, par) && nextbot(par)<0) {
  3512. dprintf(idx, "%s isn't a linked bot.\n", par);
  3513. return;
  3514. }
  3515. botnet_send_cmd(conf.bot->nick, par, dcc[idx].nick, idx, "cursrv");
  3516. }
  3517. static void rcmd_cursrv(char * fbot, char * fhand, char * fidx) {
  3518. if (!conf.bot->hub) {
  3519. char cursrv[120] = "", tmp[30] = "";
  3520. if (server_online) {
  3521. daysdur(now, server_online, tmp, sizeof(tmp));
  3522. simple_snprintf(cursrv, sizeof(cursrv), "Currently: %-30s (connected %s)%s%s", cursrvname, tmp, socklist[findanysnum(serv)].ssl ? " [SSL]" : "", floodless ? " [floodless]" : "");
  3523. if (server_lag > 0) {
  3524. simple_snprintf(tmp, sizeof(tmp), " Lag:%ds", server_lag);
  3525. strlcat(cursrv, tmp, sizeof(cursrv));
  3526. }
  3527. } else
  3528. strlcpy(tmp, "Currently: none", sizeof(tmp));
  3529. botnet_send_cmdreply(conf.bot->nick, fbot, fhand, fidx, cursrv);
  3530. }
  3531. }
  3532. static void cmd_timesync(int idx, char *par) {
  3533. char tmp[30] = "";
  3534. putlog(LOG_CMDS, "*", "#%s# timesync", dcc[idx].nick);
  3535. simple_snprintf(tmp, sizeof(tmp), "timesync %li", (long)(timesync + now));
  3536. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, tmp);
  3537. }
  3538. static void rcmd_timesync(char *frombot, char *fromhand, char *fromidx, char *par) {
  3539. char tmp[100] = "";
  3540. long net = atol(par);
  3541. simple_snprintf(tmp, sizeof(tmp), "NET: %li ME: %li DIFF: %d", net, (long)timesync + now, (int) ((timesync+now) - net));
  3542. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, tmp);
  3543. }
  3544. /* netversion */
  3545. static void cmd_netversion(int idx, char * par) {
  3546. putlog(LOG_CMDS, "*", "#%s# netversion", dcc[idx].nick);
  3547. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, "ver");
  3548. }
  3549. static void cmd_botversion(int idx, char * par) {
  3550. putlog(LOG_CMDS, "*", "#%s# botversion %s", dcc[idx].nick, par);
  3551. if (!par || !par[0]) {
  3552. dprintf(idx, "Usage: botversion <bot>\n");
  3553. return;
  3554. }
  3555. if (strcasecmp(conf.bot->nick, par) && nextbot(par)<0) {
  3556. dprintf(idx, "%s isn't a linked bot.\n", par);
  3557. return;
  3558. }
  3559. botnet_send_cmd(conf.bot->nick, par, dcc[idx].nick, idx, "ver");
  3560. }
  3561. static void rcmd_ver(char * fbot, char * fhand, char * fidx) {
  3562. char tmp[401] = "";
  3563. struct utsname un;
  3564. simple_snprintf(tmp, sizeof(tmp), "%s ", version);
  3565. if (uname(&un) < 0) {
  3566. strlcat(tmp, "(unknown OS)", sizeof(tmp));
  3567. } else {
  3568. if (updated) {
  3569. simple_snprintf(&tmp[strlen(tmp)], sizeof(tmp) - strlen(tmp), " %s %s (%s) - UPDATED", un.sysname, un.release, un.machine);
  3570. } else
  3571. simple_snprintf(&tmp[strlen(tmp)], sizeof(tmp) - strlen(tmp), " %s %s (%s)", un.sysname, un.release, un.machine);
  3572. }
  3573. botnet_send_cmdreply(conf.bot->nick, fbot, fhand, fidx, tmp);
  3574. }
  3575. static void cmd_version(int idx, char *par)
  3576. {
  3577. putlog(LOG_CMDS, "*", "#%s# version", dcc[idx].nick);
  3578. botnet_send_cmd(conf.bot->nick, conf.bot->nick, dcc[idx].nick, idx, "ver");
  3579. }
  3580. /* netnick, botnick, nick */
  3581. static void cmd_netnick (int idx, char *par) {
  3582. putlog(LOG_CMDS, "*", "#%s# netnick", dcc[idx].nick);
  3583. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, "curnick");
  3584. }
  3585. static void cmd_netrelease (int idx, char* par) {
  3586. putlog(LOG_CMDS, "*", "#%s# netrelease %s", dcc[idx].nick, par);
  3587. if (!par || !par[0]) {
  3588. dprintf(idx, "Usage: netrelease <nick>\n");
  3589. return;
  3590. }
  3591. // Don't bother checking what bot has the nick, multiple bots may be trying to jupe it
  3592. // so instead, tell all bots to release the specified nick.
  3593. // Any bots trying to get it will stop for 7 seconds, and any bot on it will release it.
  3594. bd::String str;
  3595. str = bd::String::printf("rn %s", par);
  3596. putallbots(str.c_str());
  3597. }
  3598. static void cmd_botnick(int idx, char * par) {
  3599. putlog(LOG_CMDS, "*", "#%s# botnick %s", dcc[idx].nick, par);
  3600. if (!par || !par[0]) {
  3601. dprintf(idx, "Usage: botnick <bot>\n");
  3602. return;
  3603. }
  3604. if (nextbot(par) < 0) {
  3605. dprintf(idx, "%s isn't a linked bot\n", par);
  3606. }
  3607. botnet_send_cmd(conf.bot->nick, par, dcc[idx].nick, idx, "curnick");
  3608. }
  3609. static void rcmd_curnick(char * fbot, char * fhand, char * fidx) {
  3610. if (!conf.bot->hub) {
  3611. char tmp[301] = "";
  3612. simple_snprintf(tmp, sizeof(tmp), "Currently: %-20s ",
  3613. server_online ? botname : "(not online)");
  3614. if (jupenick[0] && strncmp(botname, jupenick, strlen(botname)))
  3615. simple_snprintf(&tmp[strlen(tmp)], sizeof(tmp) - strlen(tmp), "Jupe: %s ", jupenick);
  3616. else if (jupenick[0] && strcmp(botname, origbotname))
  3617. simple_snprintf(&tmp[strlen(tmp)], sizeof(tmp) - strlen(tmp), "Jupe: %s Main: %s ", jupenick, origbotname);
  3618. else if (strcmp(botname, origbotname))
  3619. simple_snprintf(&tmp[strlen(tmp)], sizeof(tmp) - strlen(tmp), "Main: %s ", origbotname);
  3620. botnet_send_cmdreply(conf.bot->nick, fbot, fhand, fidx, tmp);
  3621. }
  3622. }
  3623. /* botmsg */
  3624. static void cmd_botmsg(int idx, char * par) {
  3625. char *tnick = NULL, *tbot = NULL;
  3626. putlog(LOG_CMDS, "*", "#%s# botmsg %s", dcc[idx].nick, par);
  3627. tbot = newsplit(&par);
  3628. if (par[0])
  3629. tnick = newsplit(&par);
  3630. if (!par[0]) {
  3631. dprintf(idx, "Usage: botmsg <bot> <nick|#channel> <message>\n");
  3632. return;
  3633. }
  3634. if (strcasecmp(conf.bot->nick, tbot) && nextbot(tbot)<0) {
  3635. dprintf(idx, "%s isn't a linked bot.\n", tbot);
  3636. return;
  3637. }
  3638. char tmp[1024] = "";
  3639. simple_snprintf(tmp, sizeof tmp, "msg %s %s", tnick, par);
  3640. botnet_send_cmd(conf.bot->nick, tbot, dcc[idx].nick, idx, tmp);
  3641. }
  3642. static void rcmd_msg(char * tobot, char * frombot, char * fromhand, char * fromidx, char * par) {
  3643. if (!conf.bot->hub) {
  3644. char *nick = newsplit(&par);
  3645. privmsg(nick, par, DP_SERVER);
  3646. if (!strcasecmp(tobot, conf.bot->nick)) {
  3647. char buf[1024] = "";
  3648. simple_snprintf(buf, sizeof buf, "Sent message to %s", nick);
  3649. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, buf);
  3650. }
  3651. }
  3652. }
  3653. /* netlag */
  3654. static void cmd_netlag(int idx, char * par) {
  3655. egg_timeval_t tv;
  3656. char tmp[64] = "";
  3657. putlog(LOG_CMDS, "*", "#%s# netlag", dcc[idx].nick);
  3658. timer_get_now(&tv);
  3659. simple_snprintf(tmp, sizeof(tmp), "ping %li", (long) ((tv.sec % 10000) * 100 + (tv.usec * 100) / (1000000)));
  3660. dprintf(idx, "Sent ping to all linked bots\n");
  3661. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, tmp);
  3662. }
  3663. static void rcmd_ping(char * frombot, char *fromhand, char * fromidx, char * par) {
  3664. char tmp[64] = "";
  3665. simple_snprintf(tmp, sizeof tmp, "pong %s", par);
  3666. botnet_send_cmd(conf.bot->nick, frombot, fromhand, atoi(fromidx), tmp);
  3667. }
  3668. static void rcmd_pong(char *frombot, char *fromhand, char *fromidx, char *par) {
  3669. int i = atoi(fromidx);
  3670. if ((i >= 0) && (i < dcc_total) && (dcc[i].type == &DCC_CHAT) && (!strcmp(dcc[i].nick, fromhand))) {
  3671. egg_timeval_t tv;
  3672. timer_get_now(&tv);
  3673. long tm = ((tv.sec % 10000) * 100 + (tv.usec * 100) / (1000000)) - atol(par);
  3674. dprintf(i, "Pong from %s: %d.%d seconds\n", frombot, (int)(tm / 100), (int)(tm % 100));
  3675. }
  3676. }
  3677. /* exec commands */
  3678. static void cmd_netw(int idx, char * par) {
  3679. putlog(LOG_CMDS, "*", "#%s# netw", dcc[idx].nick);
  3680. char tmp[7] = "";
  3681. strlcpy(tmp, "exec w", sizeof(tmp));
  3682. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, tmp);
  3683. }
  3684. static void cmd_netps(int idx, char * par) {
  3685. putlog(LOG_CMDS, "*", "#%s# netps %s", dcc[idx].nick, par);
  3686. if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>') || strchr(par, '`') || strchr(par, '$')) {
  3687. putlog(LOG_WARN, "*", "%s attempted 'netps' with pipe/semicolon in parameters: %s", dcc[idx].nick, par);
  3688. dprintf(idx, "No.\n");
  3689. return;
  3690. }
  3691. char buf[1024] = "";
  3692. simple_snprintf(buf, sizeof(buf), "exec ps %s", par);
  3693. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, buf);
  3694. }
  3695. static void cmd_netlast(int idx, char * par) {
  3696. putlog(LOG_CMDS, "*", "#%s# netlast %s", dcc[idx].nick, par);
  3697. if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>') || strchr(par, '`') || strchr(par, '$')) {
  3698. putlog(LOG_WARN, "*", "%s attempted 'netlast' with pipe/semicolon in parameters: %s", dcc[idx].nick, par);
  3699. dprintf(idx, "No.\n");
  3700. return;
  3701. }
  3702. char buf[1024] = "";
  3703. simple_snprintf(buf, sizeof(buf), "exec last %s", par);
  3704. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, buf);
  3705. }
  3706. void crontab_show(struct userrec *u, int idx) {
  3707. dprintf(idx, "Showing current crontab:\n");
  3708. bd::Stream crontab;
  3709. bd::String line;
  3710. crontab_exists(&crontab);
  3711. crontab.seek(0, SEEK_SET);
  3712. while (crontab.tell() < crontab.length()) {
  3713. line = crontab.getline();
  3714. dprintf(idx, "%s\n", line.c_str());
  3715. }
  3716. }
  3717. static void cmd_crontab(int idx, char *par) {
  3718. putlog(LOG_CMDS, "*", "#%s# crontab %s", dcc[idx].nick, par);
  3719. if (!par[0]) {
  3720. dprintf(idx, "Usage: crontab <status|delete|show|new> [interval]\n");
  3721. return;
  3722. }
  3723. char *code = newsplit(&par);
  3724. int i = 0;
  3725. if (!strcmp(code, "status")) {
  3726. i = crontab_exists();
  3727. if (!i)
  3728. dprintf(idx, "No crontab\n");
  3729. else if (i==1)
  3730. dprintf(idx, "Crontabbed\n");
  3731. else
  3732. dprintf(idx, "Error checking crontab status\n");
  3733. } else if (!strcmp(code, "show")) {
  3734. crontab_show(dcc[idx].user, idx);
  3735. } else if (!strcmp(code, "delete")) {
  3736. crontab_del();
  3737. i = crontab_exists();
  3738. if (!i)
  3739. dprintf(idx, "No crontab\n");
  3740. else if (i==1)
  3741. dprintf(idx, "Crontabbed\n");
  3742. else
  3743. dprintf(idx, "Error checking crontab status\n");
  3744. } else if (!strcmp(code, "new")) {
  3745. i = atoi(par);
  3746. if ((i <= 0) || (i > 60))
  3747. i = 10;
  3748. crontab_create(i);
  3749. i = crontab_exists();
  3750. if (!i)
  3751. dprintf(idx, "No crontab\n");
  3752. else if (i == 1)
  3753. dprintf(idx, "Crontabbed\n");
  3754. else
  3755. dprintf(idx, "Error checking crontab status\n");
  3756. } else {
  3757. dprintf(idx, "Usage: crontab status|delete|show|new [interval]\n");
  3758. }
  3759. }
  3760. static void my_dns_callback(int id, void *client_data, const char *host, bd::Array<bd::String> ips)
  3761. {
  3762. //64bit hacks
  3763. long data = (long) client_data;
  3764. int idx = (int) data;
  3765. Context;
  3766. if (!valid_idx(idx))
  3767. return;
  3768. if (ips.size())
  3769. for (size_t i = 0; i < ips.size(); ++i)
  3770. dprintf(idx, "Resolved %s using (%s) to: %s\n", host, dns_ip, bd::String(ips[i]).c_str());
  3771. else
  3772. dprintf(idx, "Failed to lookup via (%s): %s\n", dns_ip, host);
  3773. return;
  3774. }
  3775. static void cmd_dns(int idx, char *par)
  3776. {
  3777. putlog(LOG_CMDS, "*", "#%s# dns %s", dcc[idx].nick, par);
  3778. if (!par[0]) {
  3779. dprintf(idx, "Usage: dns <hostname/ip/flush>\n");
  3780. return;
  3781. }
  3782. if (!strcasecmp(par, "flush")) {
  3783. dprintf(idx, "Flushing cache...\n");
  3784. dns_cache_flush();
  3785. return;
  3786. }
  3787. if (is_dotted_ip(par)) {
  3788. dprintf(idx, "Reversing %s ...\n", par);
  3789. egg_dns_reverse(par, 20, my_dns_callback, (void *) (long) idx);
  3790. } else {
  3791. dprintf(idx, "Looking up %s ...\n", par);
  3792. egg_dns_lookup(par, 20, my_dns_callback, (void *) (long) idx);
  3793. }
  3794. }
  3795. static void cmd_netcrontab(int idx, char * par)
  3796. {
  3797. putlog(LOG_CMDS, "*", "#%s# netcrontab %s", dcc[idx].nick, par);
  3798. char *cmd = newsplit(&par);
  3799. if ((strcmp(cmd, "status") && strcmp(cmd, "show") && strcmp(cmd, "delete") && strcmp(cmd, "new"))) {
  3800. dprintf(idx, "Usage: netcrontab <status|delete|show|new> [interval]\n");
  3801. return;
  3802. }
  3803. char buf[1024] = "";
  3804. simple_snprintf(buf, sizeof buf, "exec crontab %s %s", cmd, par);
  3805. botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, buf);
  3806. }
  3807. static void rcmd_exec(char * frombot, char * fromhand, char * fromidx, char * par) {
  3808. char *cmd = NULL, scmd[512] = "", *out = NULL, *err = NULL;
  3809. cmd = newsplit(&par);
  3810. if (!strcmp(cmd, "w")) {
  3811. strlcpy(scmd, "w", 2);
  3812. } else if (!strcmp(cmd, "last")) {
  3813. char user[20] = "";
  3814. if (par[0]) {
  3815. strlcpy(user, par, sizeof(user));
  3816. } else if (conf.username) {
  3817. strlcpy(user, conf.username, sizeof(user));
  3818. }
  3819. if (!user[0]) {
  3820. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Can't determine user id for process");
  3821. return;
  3822. }
  3823. simple_snprintf(scmd, sizeof scmd, "last %s", user);
  3824. } else if (!strcmp(cmd, "ps")) {
  3825. simple_snprintf(scmd, sizeof scmd, "ps %s", par);
  3826. } else if (!strcmp(cmd, "crontab")) {
  3827. char *code = newsplit(&par);
  3828. if (!strcmp(code, "show")) {
  3829. strlcpy(scmd, "crontab -l", sizeof(scmd));
  3830. } else if (!strcmp(code, "delete")) {
  3831. crontab_del();
  3832. } else if (!strcmp(code, "new")) {
  3833. int i=atoi(par);
  3834. if ((i <= 0) || (i > 60))
  3835. i = 10;
  3836. crontab_create(i);
  3837. }
  3838. if (!scmd[0]) {
  3839. char s[31] = "";
  3840. int i = crontab_exists();
  3841. if (!i)
  3842. simple_snprintf(s, sizeof(s), "No crontab");
  3843. else if (i == 1)
  3844. simple_snprintf(s, sizeof(s), "Crontabbed");
  3845. else
  3846. simple_snprintf(s, sizeof(s), "Error checking crontab status");
  3847. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, s);
  3848. }
  3849. }
  3850. if (!scmd[0])
  3851. return;
  3852. if (shell_exec(scmd, NULL, &out, &err, 1)) {
  3853. if (out) {
  3854. char *p = NULL, *np = NULL;
  3855. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Result:");
  3856. p = out;
  3857. while (p && p[0]) {
  3858. np = strchr(p, '\n');
  3859. if (np)
  3860. *np++ = 0;
  3861. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, p);
  3862. p = np;
  3863. }
  3864. free(out);
  3865. }
  3866. if (err) {
  3867. char *p = NULL, *np = NULL;
  3868. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Errors:");
  3869. p = err;
  3870. while (p && p[0]) {
  3871. np = strchr(p, '\n');
  3872. if (np)
  3873. *np++ = 0;
  3874. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, p);
  3875. p = np;
  3876. }
  3877. free(err);
  3878. }
  3879. } else {
  3880. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "exec failed");
  3881. }
  3882. }
  3883. static void cmd_botjump(int idx, char * par) {
  3884. char *tbot = NULL;
  3885. putlog(LOG_CMDS, "*", "#%s# botjump %s", dcc[idx].nick, par);
  3886. tbot = newsplit(&par);
  3887. if (!tbot[0]) {
  3888. dprintf(idx, "Usage: botjump <bot> [server [port [pass]]]\n");
  3889. return;
  3890. }
  3891. if (strcasecmp(conf.bot->nick, tbot) && nextbot(tbot)<0) {
  3892. dprintf(idx, "%s isn't a linked bot.\n", tbot);
  3893. return;
  3894. }
  3895. char buf[1024] = "";
  3896. simple_snprintf(buf, sizeof buf, "jump %s", par);
  3897. botnet_send_cmd(conf.bot->nick, tbot, dcc[idx].nick, idx, buf);
  3898. }
  3899. static void rcmd_jump(char * frombot, char * fromhand, char * fromidx, char * par) {
  3900. if (!conf.bot->hub) {
  3901. if (par[0]) {
  3902. char *other = newsplit(&par), *p = NULL;
  3903. in_port_t port = atoi(newsplit(&par));
  3904. if ((p = strchr(other, ':'))) {
  3905. *p = 0;
  3906. p++;
  3907. if (!port)
  3908. port = atoi(p);
  3909. }
  3910. if (!port)
  3911. port = (ssl_use ? default_port_ssl : default_port);
  3912. strlcpy(newserver, other, 120);
  3913. newserverport = port;
  3914. strlcpy(newserverpass, par, 120);
  3915. }
  3916. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Jumping...");
  3917. nuke_server("Jumping...");
  3918. cycle_time = 0;
  3919. }
  3920. }
  3921. /* "Remotable" commands */
  3922. void gotremotecmd (char *forbot, char *frombot, char *fromhand, char *fromidx, char *cmd)
  3923. {
  3924. char *par = cmd;
  3925. cmd = newsplit(&par);
  3926. if (!strcmp(cmd, "exec")) {
  3927. rcmd_exec(frombot, fromhand, fromidx, par);
  3928. } else if (!strcmp(cmd, "curnick")) {
  3929. rcmd_curnick(frombot, fromhand, fromidx);
  3930. } else if (!strcmp(cmd, "cursrv")) {
  3931. rcmd_cursrv(frombot, fromhand, fromidx);
  3932. } else if (!strcmp(cmd, "chans")) {
  3933. rcmd_chans(frombot, fromhand, fromidx);
  3934. } else if (!strcmp(cmd, "jump")) {
  3935. rcmd_jump(frombot, fromhand, fromidx, par);
  3936. } else if (!strcmp(cmd, "msg")) {
  3937. rcmd_msg(forbot, frombot, fromhand, fromidx, par);
  3938. } else if (!strcmp(cmd, "ver")) {
  3939. rcmd_ver(frombot, fromhand, fromidx);
  3940. } else if (!strcmp(cmd, "ping")) {
  3941. rcmd_ping(frombot, fromhand, fromidx, par);
  3942. } else if (!strcmp(cmd, "pong")) {
  3943. rcmd_pong(frombot, fromhand, fromidx, par);
  3944. } else if (!strcmp(cmd, "die")) {
  3945. exit(0);
  3946. } else if (!strcmp(cmd, "timesync")) {
  3947. rcmd_timesync(frombot, fromhand, fromidx, par);
  3948. } else {
  3949. botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Unrecognized remote command");
  3950. }
  3951. }
  3952. void gotremotereply (char *frombot, char *tohand, char *toidx, char *ln) {
  3953. int idx = atoi(toidx);
  3954. if ((idx >= 0) && (idx < dcc_total) && (dcc[idx].type == &DCC_CHAT) && (!strcmp(dcc[idx].nick, tohand))) {
  3955. char *buf = NULL;
  3956. size_t siz = strlen(frombot) + 2 + 1;
  3957. buf = (char *) my_calloc(1, siz);
  3958. simple_snprintf(buf, siz, "(%s)", frombot);
  3959. char format[10] = "";
  3960. simple_snprintf(format, sizeof(format), "%%-%ds %%s\n", HANDLEN + 2);
  3961. dprintf(idx, format, buf, ln);
  3962. free(buf);
  3963. }
  3964. }
  3965. static void cmd_traffic(int idx, char *par)
  3966. {
  3967. size_t itmp, itmp2;
  3968. dprintf(idx, "Traffic since last restart\n");
  3969. dprintf(idx, "==========================\n");
  3970. if (traffic.out_total.irc > 0 || traffic.in_total.irc > 0 || traffic.out_today.irc > 0 ||
  3971. traffic.in_today.irc > 0) {
  3972. dprintf(idx, "IRC:\n");
  3973. dprintf(idx, " out: %s", btos(traffic.out_total.irc + traffic.out_today.irc));
  3974. dprintf(idx, " (%s today)\n", btos(traffic.out_today.irc));
  3975. dprintf(idx, " in: %s", btos(traffic.in_total.irc + traffic.in_today.irc));
  3976. dprintf(idx, " (%s today)\n", btos(traffic.in_today.irc));
  3977. }
  3978. if (traffic.out_total.bn > 0 || traffic.in_total.bn > 0 || traffic.out_today.bn > 0 ||
  3979. traffic.in_today.bn > 0) {
  3980. dprintf(idx, "Botnet:\n");
  3981. dprintf(idx, " out: %s", btos(traffic.out_total.bn + traffic.out_today.bn));
  3982. dprintf(idx, " (%s today)\n", btos(traffic.out_today.bn));
  3983. dprintf(idx, " in: %s", btos(traffic.in_total.bn + traffic.in_today.bn));
  3984. dprintf(idx, " (%s today)\n", btos(traffic.in_today.bn));
  3985. }
  3986. if (traffic.out_total.dcc > 0 || traffic.in_total.dcc > 0 || traffic.out_today.dcc > 0 ||
  3987. traffic.in_today.dcc > 0) {
  3988. dprintf(idx, "Partyline:\n");
  3989. itmp = traffic.out_total.dcc + traffic.out_today.dcc;
  3990. itmp2 = traffic.out_today.dcc;
  3991. dprintf(idx, " out: %s", btos(itmp));
  3992. dprintf(idx, " (%s today)\n", btos(itmp2));
  3993. dprintf(idx, " in: %s", btos(traffic.in_total.dcc + traffic.in_today.dcc));
  3994. dprintf(idx, " (%s today)\n", btos(traffic.in_today.dcc));
  3995. }
  3996. if (traffic.out_total.trans > 0 || traffic.in_total.trans > 0 || traffic.out_today.trans > 0 ||
  3997. traffic.in_today.trans > 0) {
  3998. dprintf(idx, "Transfer.mod:\n");
  3999. dprintf(idx, " out: %s", btos(traffic.out_total.trans + traffic.out_today.trans));
  4000. dprintf(idx, " (%s today)\n", btos(traffic.out_today.trans));
  4001. dprintf(idx, " in: %s", btos(traffic.in_total.trans + traffic.in_today.trans));
  4002. dprintf(idx, " (%s today)\n", btos(traffic.in_today.trans));
  4003. }
  4004. if (traffic.out_total.unknown > 0 || traffic.out_today.unknown > 0) {
  4005. dprintf(idx, "Misc:\n");
  4006. dprintf(idx, " out: %s", btos(traffic.out_total.unknown + traffic.out_today.unknown));
  4007. dprintf(idx, " (%s today)\n", btos(traffic.out_today.unknown));
  4008. dprintf(idx, " in: %s", btos(traffic.in_total.unknown + traffic.in_today.unknown));
  4009. dprintf(idx, " (%s today)\n", btos(traffic.in_today.unknown));
  4010. }
  4011. dprintf(idx, "---\n");
  4012. dprintf(idx, "Total:\n");
  4013. itmp = traffic.out_total.irc + traffic.out_total.bn + traffic.out_total.dcc + traffic.out_total.trans
  4014. + traffic.out_total.unknown + traffic.out_today.irc + traffic.out_today.bn
  4015. + traffic.out_today.dcc + traffic.out_today.trans + traffic.out_today.unknown;
  4016. itmp2 = traffic.out_today.irc + traffic.out_today.bn + traffic.out_today.dcc
  4017. + traffic.out_today.trans + traffic.out_today.unknown;
  4018. dprintf(idx, " out: %s", btos(itmp));
  4019. dprintf(idx, " (%s today)\n", btos(itmp2));
  4020. dprintf(idx, " in: %s", btos(traffic.in_total.irc + traffic.in_total.bn + traffic.in_total.dcc
  4021. + traffic.in_total.trans + traffic.in_total.unknown + traffic.in_today.irc
  4022. + traffic.in_today.bn + traffic.in_today.dcc + traffic.in_today.trans
  4023. + traffic.in_today.unknown));
  4024. dprintf(idx, " (%s today)\n", btos(traffic.in_today.irc + traffic.in_today.bn
  4025. + traffic.in_today.dcc + traffic.in_today.trans
  4026. + traffic.in_today.unknown));
  4027. putlog(LOG_CMDS, "*", "#%s# traffic", dcc[idx].nick);
  4028. }
  4029. static char traffictxt[20] = "";
  4030. static char *btos(unsigned long bytes)
  4031. {
  4032. char unit[10] = "";
  4033. float xbytes;
  4034. simple_snprintf(unit, sizeof(unit), "Bytes");
  4035. xbytes = bytes;
  4036. if (xbytes > 1024.0) {
  4037. simple_snprintf(unit, sizeof(unit), "KBytes");
  4038. xbytes = xbytes / 1024.0;
  4039. }
  4040. if (xbytes > 1024.0) {
  4041. simple_snprintf(unit, sizeof(unit), "MBytes");
  4042. xbytes = xbytes / 1024.0;
  4043. }
  4044. if (xbytes > 1024.0) {
  4045. simple_snprintf(unit, sizeof(unit), "GBytes");
  4046. xbytes = xbytes / 1024.0;
  4047. }
  4048. if (xbytes > 1024.0) {
  4049. simple_snprintf(unit, sizeof(unit), "TBytes");
  4050. xbytes = xbytes / 1024.0;
  4051. }
  4052. if (bytes > 1024)
  4053. egg_snprintf(traffictxt, sizeof(traffictxt), "%.2f %s", xbytes, unit);
  4054. else
  4055. simple_snprintf(traffictxt, sizeof(traffictxt), "%lu Bytes", bytes);
  4056. return traffictxt;
  4057. }
  4058. static void cmd_whoami(int idx, char *par)
  4059. {
  4060. putlog(LOG_CMDS, "*", "#%s# whoami", dcc[idx].nick);
  4061. dprintf(idx, "You are %s@%s.\n", dcc[idx].nick, conf.bot->nick);
  4062. }
  4063. static void cmd_quit(int idx, char *text)
  4064. {
  4065. if (dcc[idx].simul >= 0) {
  4066. dprintf(idx, "Sorry, that cmd isn't available over botcmd.\n");
  4067. return;
  4068. }
  4069. putlog(LOG_CMDS, "*", "#%s# quit %s", dcc[idx].nick, text);
  4070. check_bind_chof(dcc[idx].nick, idx);
  4071. dprintf(idx, "*** Ja Mata\n");
  4072. flush_lines(idx, dcc[idx].u.chat);
  4073. putlog(LOG_MISC, "*", "DCC connection closed (%s!%s)", dcc[idx].nick, dcc[idx].host);
  4074. if (dcc[idx].u.chat->channel >= 0) {
  4075. chanout_but(-1, dcc[idx].u.chat->channel, "*** %s left the party line%s%s\n", dcc[idx].nick, text[0] ? ": " : ".", text);
  4076. if (dcc[idx].u.chat->channel < GLOBAL_CHANS) {
  4077. botnet_send_part_idx(idx, text);
  4078. }
  4079. }
  4080. if (dcc[idx].u.chat->su_nick) {
  4081. dcc[idx].user = get_user_by_handle(userlist, dcc[idx].u.chat->su_nick);
  4082. strlcpy(dcc[idx].nick, dcc[idx].u.chat->su_nick, sizeof(dcc[idx].nick));
  4083. dcc[idx].u.chat->channel = dcc[idx].u.chat->su_channel;
  4084. dcc[idx].type = &DCC_CHAT;
  4085. dprintf(idx, "Returning to real nick %s!\n", dcc[idx].u.chat->su_nick);
  4086. free(dcc[idx].u.chat->su_nick);
  4087. dcc[idx].u.chat->su_nick = NULL;
  4088. dcc_chatter(idx);
  4089. if (dcc[idx].u.chat->channel < GLOBAL_CHANS && dcc[idx].u.chat->channel >= 0) {
  4090. botnet_send_join_idx(idx);
  4091. }
  4092. } else if ((dcc[idx].sock != STDOUT) || backgrd) {
  4093. killsock(dcc[idx].sock);
  4094. lostdcc(idx);
  4095. } else {
  4096. dprintf(DP_STDOUT, "\n### SIMULATION RESET\n\n");
  4097. dcc_chatter(idx);
  4098. }
  4099. }
  4100. void cmd_test(int idx, char *par)
  4101. {
  4102. putlog(LOG_CMDS, "*", "#%s# test", dcc[idx].nick);
  4103. }
  4104. #ifdef USE_SCRIPT_TCL
  4105. void cmd_tcl(int idx, char *par)
  4106. {
  4107. if (!isowner(dcc[idx].nick)) {
  4108. dprintf(idx, "tcl is only available to permanent owners.\n");
  4109. return;
  4110. }
  4111. putlog(LOG_CMDS, "*", "#%s# tcl", dcc[idx].nick);
  4112. bd::String result(tcl_eval(par));
  4113. if (dcc[idx].irc && strcmp(dcc[idx].u.chat->con_chan, "*")) {
  4114. privmsg(dcc[idx].u.chat->con_chan, tcl_eval(par), DP_SERVER);
  4115. } else
  4116. dprintf(idx, result.c_str(), DP_SERVER);
  4117. }
  4118. #endif
  4119. void cmd_botlink(int idx, char *par)
  4120. {
  4121. putlog(LOG_CMDS, "*", "#%s# botlink %s", dcc[idx].nick, par);
  4122. if (!isowner(dcc[idx].nick)) {
  4123. dprintf(idx, "botlink is only available to permanent owners.\n");
  4124. return;
  4125. }
  4126. if (conf.bot->hub)
  4127. send_hubs(par, strlen(par));
  4128. else
  4129. send_uplink(par, strlen(par));
  4130. }
  4131. /* DCC CHAT COMMANDS
  4132. */
  4133. /* Function call should be:
  4134. * int cmd_whatever(idx,"parameters");
  4135. * As with msg commands, function is responsible for any logging.
  4136. */
  4137. cmd_t C_dcc[] =
  4138. {
  4139. {"+host", "o|o", (Function) cmd_pls_host, NULL, AUTH},
  4140. {"+ignore", "m", (Function) cmd_pls_ignore, NULL, AUTH},
  4141. {"+user", "m", (Function) cmd_pls_user, NULL, AUTH},
  4142. {"-host", "", (Function) cmd_mns_host, NULL, AUTH},
  4143. {"-ignore", "m", (Function) cmd_mns_ignore, NULL, AUTH},
  4144. {"-user", "m", (Function) cmd_mns_user, NULL, AUTH},
  4145. {"addlog", "o|o", (Function) cmd_addlog, NULL, AUTH},
  4146. /* {"putlog", "m|o", (Function) cmd_addlog, NULL, 0}, */
  4147. {"about", "", (Function) cmd_about, NULL, 0},
  4148. {"addline", "", (Function) cmd_addline, NULL, 0},
  4149. {"away", "", (Function) cmd_away, NULL, 0},
  4150. {"back", "", (Function) cmd_back, NULL, 0},
  4151. {"backup", "m|m", (Function) cmd_backup, NULL, HUB},
  4152. {"boot", "m", (Function) cmd_boot, NULL, HUB},
  4153. {"bots", "m", (Function) cmd_bots, NULL, HUB},
  4154. {"downbots", "m", (Function) cmd_downbots, NULL, HUB},
  4155. {"bottree", "n", (Function) cmd_bottree, NULL, HUB},
  4156. {"chaddr", "a", (Function) cmd_chaddr, NULL, HUB},
  4157. {"chat", "", (Function) cmd_chat, NULL, 0},
  4158. {"chattr", "m|m", (Function) cmd_chattr, NULL, AUTH},
  4159. {"chhandle", "m", (Function) cmd_chhandle, NULL, HUB},
  4160. /* {"chnick", "m", (Function) cmd_chhandle, NULL, HUB}, */
  4161. {"chpass", "m", (Function) cmd_chpass, NULL, HUB},
  4162. {"chsecpass", "n", (Function) cmd_chsecpass, NULL, HUB},
  4163. {"clearhosts", "", (Function) cmd_clearhosts, NULL, 0},
  4164. {"cmdpass", "a", (Function) cmd_cmdpass, NULL, HUB},
  4165. {"color", "", (Function) cmd_color, NULL, 0},
  4166. {"comment", "m|m", (Function) cmd_comment, NULL, 0},
  4167. {"set", "n", (Function) cmd_set, NULL, HUB},
  4168. {"botset", "n", (Function) cmd_botset, NULL, HUB},
  4169. {"console", "-|-", (Function) cmd_console, NULL, 0},
  4170. {"date", "", (Function) cmd_date, NULL, AUTH},
  4171. {"dccstat", "a", (Function) cmd_dccstat, NULL, 0},
  4172. {"debug", "a", (Function) cmd_debug, NULL, 0},
  4173. {"timers", "a", (Function) cmd_timers, NULL, 0},
  4174. {"die", "n", (Function) cmd_die, NULL, 0},
  4175. {"suicide", "a", (Function) cmd_suicide, NULL, 0},
  4176. {"echo", "", (Function) cmd_echo, NULL, 0},
  4177. {"login", "", (Function) cmd_login, NULL, 0},
  4178. {"fixcodes", "", (Function) cmd_fixcodes, NULL, 0},
  4179. {"handle", "", (Function) cmd_handle, NULL, AUTH},
  4180. {"nohelp", "-|-", (Function) cmd_nohelp, NULL, 0},
  4181. {"help", "-|-", (Function) cmd_help, NULL, AUTH},
  4182. {"ignores", "m", (Function) cmd_ignores, NULL, AUTH},
  4183. {"link", "n", (Function) cmd_link, NULL, HUB},
  4184. {"match", "m|m", (Function) cmd_match, NULL, 0},
  4185. {"matchbot", "m|m", (Function) cmd_matchbot, NULL, 0},
  4186. {"me", "", (Function) cmd_me, NULL, 0},
  4187. {"motd", "", (Function) cmd_motd, NULL, 0},
  4188. {"newleaf", "n", (Function) cmd_newleaf, NULL, HUB},
  4189. {"newhub", "a", (Function) cmd_newhub, NULL, HUB},
  4190. {"nopass", "m", (Function) cmd_nopass, NULL, HUB},
  4191. {"newpass", "", (Function) cmd_newpass, NULL, 0},
  4192. {"secpass", "", (Function) cmd_secpass, NULL, 0},
  4193. /* {"nick", "", (Function) cmd_handle, NULL, 0}, */
  4194. {"page", "", (Function) cmd_page, NULL, 0},
  4195. {"quit", "", (Function) cmd_quit, NULL, 0},
  4196. {"relay", "i", (Function) cmd_relay, NULL, 0},
  4197. {"reload", "m|m", (Function) cmd_reload, NULL, HUB},
  4198. {"rehash", "a", (Function) cmd_rehash, NULL, 0},
  4199. {"restart", "m", (Function) cmd_restart, NULL, 0},
  4200. {"save", "m|m", (Function) cmd_save, NULL, HUB},
  4201. {"simul", "a", (Function) cmd_simul, NULL, 0},
  4202. {"status", "m|m", (Function) cmd_status, NULL, 0},
  4203. {"strip", "", (Function) cmd_strip, NULL, 0},
  4204. {"su", "a", (Function) cmd_su, NULL, 0},
  4205. {"trace", "n", (Function) cmd_trace, NULL, HUB},
  4206. {"traffic", "m", (Function) cmd_traffic, NULL, 0},
  4207. {"unlink", "m", (Function) cmd_unlink, NULL, 0},
  4208. {"update", "a", (Function) cmd_update, NULL, 0},
  4209. {"netcrontab", "a", (Function) cmd_netcrontab, NULL, HUB},
  4210. {"uptime", "m|m", (Function) cmd_uptime, NULL, AUTH},
  4211. {"crontab", "a", (Function) cmd_crontab, NULL, 0},
  4212. {"dns", "", (Function) cmd_dns, NULL, AUTH_ALL},
  4213. {"who", "n", (Function) cmd_who, NULL, HUB},
  4214. {"whois", "", (Function) cmd_whois, NULL, AUTH},
  4215. {"whom", "", (Function) cmd_whom, NULL, 0},
  4216. {"whoami", "", (Function) cmd_whoami, NULL, AUTH},
  4217. {"botjump", "m", (Function) cmd_botjump, NULL, HUB},
  4218. {"botmsg", "o", (Function) cmd_botmsg, NULL, HUB},
  4219. {"botnick", "m", (Function) cmd_botnick, NULL, HUB},
  4220. {"netnick", "m", (Function) cmd_netnick, NULL, HUB},
  4221. {"netrelease", "m", (Function) cmd_netrelease, NULL, HUB},
  4222. {"netw", "n", (Function) cmd_netw, NULL, HUB},
  4223. {"netps", "n", (Function) cmd_netps, NULL, HUB},
  4224. {"netlast", "n", (Function) cmd_netlast, NULL, HUB},
  4225. {"netlag", "m", (Function) cmd_netlag, NULL, HUB},
  4226. {"botserver", "m", (Function) cmd_botserver, NULL, HUB},
  4227. {"netserver", "m", (Function) cmd_netserver, NULL, HUB},
  4228. {"timesync", "a", (Function) cmd_timesync, NULL, 0},
  4229. {"botversion", "o", (Function) cmd_botversion, NULL, HUB},
  4230. {"version", "o", (Function) cmd_version, NULL, 0},
  4231. {"netversion", "o", (Function) cmd_netversion, NULL, HUB},
  4232. {"userlist", "m", (Function) cmd_userlist, NULL, 0},
  4233. {"groups", "m", (Function) cmd_groups, NULL, HUB},
  4234. {"ps", "n", (Function) cmd_ps, NULL, 0},
  4235. {"last", "n", (Function) cmd_last, NULL, 0},
  4236. {"exec", "a", (Function) cmd_exec, NULL, 0},
  4237. {"w", "n", (Function) cmd_w, NULL, 0},
  4238. {"channels", "", (Function) cmd_channels, NULL, 0},
  4239. {"test", "", (Function) cmd_test, NULL, 0},
  4240. #ifdef USE_SCRIPT_TCL
  4241. {"tcl", "a", (Function) cmd_tcl, NULL, AUTH_ALL},
  4242. #endif
  4243. {"botlink", "a", (Function) cmd_botlink, NULL, 0},
  4244. {"randstring", "", (Function) cmd_randstring, NULL, AUTH_ALL},
  4245. {"hash", "", (Function) cmd_hash, NULL, AUTH_ALL},
  4246. {"md5", "", (Function) cmd_md5, NULL, AUTH_ALL},
  4247. {"sha1", "", (Function) cmd_sha1, NULL, AUTH_ALL},
  4248. {"sha256", "", (Function) cmd_sha256, NULL, AUTH_ALL},
  4249. {"conf", "a", (Function) cmd_conf, NULL, 0},
  4250. {"encrypt", "", (Function) cmd_encrypt, NULL, AUTH_ALL},
  4251. {"encrypt_fish", "", (Function) cmd_encrypt_fish, NULL, AUTH_ALL},
  4252. {"decrypt", "", (Function) cmd_decrypt, NULL, AUTH_ALL},
  4253. {"decrypt_fish", "", (Function) cmd_decrypt_fish, NULL, AUTH_ALL},
  4254. {"botcmd", "i", (Function) cmd_botcmd, NULL, HUB},
  4255. {"hublevel", "a", (Function) cmd_hublevel, NULL, HUB},
  4256. {"lagged", "m", (Function) cmd_lagged, NULL, HUB},
  4257. {"uplink", "a", (Function) cmd_uplink, NULL, HUB},
  4258. {NULL, NULL, NULL, NULL, 0}
  4259. };
  4260. /* vim: set sts=2 sw=2 ts=8 et: */