You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

handlers.go 128KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921
  1. // Copyright (c) 2012-2014 Jeremy Latt
  2. // Copyright (c) 2014-2015 Edmund Huber
  3. // Copyright (c) 2016-2018 Daniel Oaks <daniel@danieloaks.net>
  4. // Copyright (c) 2017-2018 Shivaram Lingamneni <slingamn@cs.stanford.edu>
  5. // released under the MIT license
  6. package irc
  7. import (
  8. "bytes"
  9. "encoding/base64"
  10. "fmt"
  11. "net"
  12. "os"
  13. "runtime"
  14. "runtime/debug"
  15. "runtime/pprof"
  16. "sort"
  17. "strconv"
  18. "strings"
  19. "time"
  20. "github.com/ergochat/irc-go/ircfmt"
  21. "github.com/ergochat/irc-go/ircmsg"
  22. "github.com/ergochat/irc-go/ircutils"
  23. "golang.org/x/crypto/bcrypt"
  24. "github.com/ergochat/ergo/irc/caps"
  25. "github.com/ergochat/ergo/irc/custime"
  26. "github.com/ergochat/ergo/irc/flatip"
  27. "github.com/ergochat/ergo/irc/history"
  28. "github.com/ergochat/ergo/irc/jwt"
  29. "github.com/ergochat/ergo/irc/modes"
  30. "github.com/ergochat/ergo/irc/sno"
  31. "github.com/ergochat/ergo/irc/utils"
  32. )
  33. // helper function to parse ACC callbacks, e.g., mailto:person@example.com, tel:16505551234
  34. func parseCallback(spec string, config *Config) (callbackNamespace string, callbackValue string, err error) {
  35. // XXX if we don't require verification, ignore any callback that was passed here
  36. // (to avoid confusion in the case where the ircd has no mail server configured)
  37. if !config.Accounts.Registration.EmailVerification.Enabled {
  38. callbackNamespace = "*"
  39. return
  40. }
  41. callback := strings.ToLower(spec)
  42. if colonIndex := strings.IndexByte(callback, ':'); colonIndex != -1 {
  43. callbackNamespace, callbackValue = callback[:colonIndex], callback[colonIndex+1:]
  44. } else {
  45. // "If a callback namespace is not ... provided, the IRC server MUST use mailto""
  46. callbackNamespace = "mailto"
  47. callbackValue = callback
  48. }
  49. if config.Accounts.Registration.EmailVerification.Enabled {
  50. if callbackNamespace != "mailto" {
  51. err = errValidEmailRequired
  52. } else if strings.IndexByte(callbackValue, '@') < 1 {
  53. err = errValidEmailRequired
  54. }
  55. }
  56. return
  57. }
  58. func registrationErrorToMessage(config *Config, client *Client, err error) (message string) {
  59. if emailError := registrationCallbackErrorText(config, client, err); emailError != "" {
  60. return emailError
  61. }
  62. switch err {
  63. case errAccountAlreadyRegistered, errAccountAlreadyVerified, errAccountAlreadyUnregistered, errAccountAlreadyLoggedIn, errAccountCreation, errAccountMustHoldNick, errAccountBadPassphrase, errCertfpAlreadyExists, errFeatureDisabled, errAccountBadPassphrase, errNameReserved:
  64. message = err.Error()
  65. case errLimitExceeded:
  66. message = `There have been too many registration attempts recently; try again later`
  67. default:
  68. // default response: let's be risk-averse about displaying internal errors
  69. // to the clients, especially for something as sensitive as accounts
  70. message = `Could not register`
  71. }
  72. return
  73. }
  74. func announcePendingReg(client *Client, rb *ResponseBuffer, accountName string) {
  75. client.server.snomasks.Send(sno.LocalAccounts, fmt.Sprintf(ircfmt.Unescape("Client $c[grey][$r%s$c[grey]] attempted to register account $c[grey][$r%s$c[grey]] from IP %s, pending verification"), client.Nick(), accountName, rb.session.IP().String()))
  76. }
  77. // helper function to dispatch messages when a client successfully registers
  78. func sendSuccessfulRegResponse(service *ircService, client *Client, rb *ResponseBuffer) {
  79. details := client.Details()
  80. if service != nil {
  81. service.Notice(rb, client.t("Account created"))
  82. }
  83. client.server.snomasks.Send(sno.LocalAccounts, fmt.Sprintf(ircfmt.Unescape("Client $c[grey][$r%s$c[grey]] registered account $c[grey][$r%s$c[grey]] from IP %s"), details.nickMask, details.accountName, rb.session.IP().String()))
  84. sendSuccessfulAccountAuth(service, client, rb, false)
  85. }
  86. // sendSuccessfulAccountAuth means that an account auth attempt completed successfully, and is used to dispatch messages.
  87. func sendSuccessfulAccountAuth(service *ircService, client *Client, rb *ResponseBuffer, forSASL bool) {
  88. details := client.Details()
  89. if service != nil {
  90. service.Notice(rb, fmt.Sprintf(client.t("You're now logged in as %s"), details.accountName))
  91. } else {
  92. //TODO(dan): some servers send this numeric even for NickServ logins iirc? to confirm and maybe do too
  93. rb.Add(nil, client.server.name, RPL_LOGGEDIN, details.nick, details.nickMask, details.accountName, fmt.Sprintf(client.t("You are now logged in as %s"), details.accountName))
  94. if forSASL {
  95. rb.Add(nil, client.server.name, RPL_SASLSUCCESS, details.nick, client.t("Authentication successful"))
  96. }
  97. }
  98. if client.Registered() {
  99. // dispatch account-notify
  100. for friend := range client.FriendsMonitors(caps.AccountNotify) {
  101. if friend != rb.session {
  102. friend.Send(nil, details.nickMask, "ACCOUNT", details.accountName)
  103. }
  104. }
  105. if rb.session.capabilities.Has(caps.AccountNotify) {
  106. rb.Add(nil, details.nickMask, "ACCOUNT", details.accountName)
  107. }
  108. client.server.sendLoginSnomask(details.nickMask, details.accountName)
  109. }
  110. // #1479: for Tor clients, replace the hostname with the always-on cloak here
  111. // (for normal clients, this would discard the IP-based cloak, but with Tor
  112. // there's no such concern)
  113. if rb.session.isTor {
  114. config := client.server.Config()
  115. if config.Server.Cloaks.EnabledForAlwaysOn {
  116. cloakedHostname := config.Server.Cloaks.ComputeAccountCloak(details.accountName)
  117. client.setCloakedHostname(cloakedHostname)
  118. if client.registered {
  119. client.sendChghost(details.nickMask, client.Hostname())
  120. }
  121. }
  122. }
  123. client.server.logger.Info("accounts", "client", details.nick, "logged into account", details.accountName)
  124. }
  125. func (server *Server) sendLoginSnomask(nickMask, accountName string) {
  126. server.snomasks.Send(sno.LocalAccounts, fmt.Sprintf(ircfmt.Unescape("Client $c[grey][$r%s$c[grey]] logged into account $c[grey][$r%s$c[grey]]"), nickMask, accountName))
  127. }
  128. // ACCEPT <nicklist>
  129. // nicklist is a comma-delimited list of nicknames; each may be prefixed with -
  130. // to indicate that it should be removed from the list
  131. func acceptHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  132. for _, tNick := range strings.Split(msg.Params[0], ",") {
  133. add := true
  134. if strings.HasPrefix(tNick, "-") {
  135. add = false
  136. tNick = strings.TrimPrefix(tNick, "-")
  137. }
  138. target := server.clients.Get(tNick)
  139. if target == nil {
  140. rb.Add(nil, server.name, "FAIL", "ACCEPT", "INVALID_USER", utils.SafeErrorParam(tNick), client.t("No such user"))
  141. continue
  142. }
  143. if add {
  144. server.accepts.Accept(client, target)
  145. } else {
  146. server.accepts.Unaccept(client, target)
  147. }
  148. // https://github.com/solanum-ircd/solanum/blob/main/doc/features/modeg.txt
  149. // Charybdis/Solanum define various error numerics that could be sent here,
  150. // but this doesn't seem important to me. One thing to note is that we are not
  151. // imposing an upper bound on the size of the accept list, since in our
  152. // implementation you can only ACCEPT clients who are actually present,
  153. // and an attacker attempting to DoS has much easier resource exhaustion
  154. // strategies available (for example, channel history buffers).
  155. }
  156. return false
  157. }
  158. // AUTHENTICATE [<mechanism>|<data>|*]
  159. func authenticateHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  160. session := rb.session
  161. config := server.Config()
  162. details := client.Details()
  163. if client.isSTSOnly {
  164. rb.Add(nil, server.name, ERR_SASLFAIL, details.nick, client.t("SASL authentication failed"))
  165. return false
  166. }
  167. if details.account != "" {
  168. rb.Add(nil, server.name, ERR_SASLALREADY, details.nick, client.t("You're already logged into an account"))
  169. return false
  170. }
  171. // sasl abort
  172. if !config.Accounts.AuthenticationEnabled || len(msg.Params) == 1 && msg.Params[0] == "*" {
  173. rb.Add(nil, server.name, ERR_SASLABORTED, details.nick, client.t("SASL authentication aborted"))
  174. session.sasl.Clear()
  175. return false
  176. }
  177. // start new sasl session
  178. if session.sasl.mechanism == "" {
  179. throttled, remainingTime := client.loginThrottle.Touch()
  180. if throttled {
  181. rb.Add(nil, server.name, ERR_SASLFAIL, client.Nick(),
  182. fmt.Sprintf(client.t("Please wait at least %v and try again"), remainingTime.Round(time.Millisecond)))
  183. return false
  184. }
  185. mechanism := strings.ToUpper(msg.Params[0])
  186. _, mechanismIsEnabled := EnabledSaslMechanisms[mechanism]
  187. if mechanismIsEnabled {
  188. session.sasl.mechanism = mechanism
  189. if !config.Server.Compatibility.SendUnprefixedSasl {
  190. // normal behavior
  191. rb.Add(nil, server.name, "AUTHENTICATE", "+")
  192. } else {
  193. // gross hack: send a raw message to ensure no tags or prefix
  194. rb.Flush(true)
  195. rb.session.SendRawMessage(ircmsg.MakeMessage(nil, "", "AUTHENTICATE", "+"), true)
  196. }
  197. } else {
  198. rb.Add(nil, server.name, ERR_SASLFAIL, details.nick, client.t("SASL authentication failed"))
  199. }
  200. return false
  201. }
  202. // continue existing sasl session
  203. rawData := msg.Params[0]
  204. // https://ircv3.net/specs/extensions/sasl-3.1:
  205. // "The response is encoded in Base64 (RFC 4648), then split to 400-byte chunks,
  206. // and each chunk is sent as a separate AUTHENTICATE command."
  207. saslMaxArgLength := 400
  208. if len(rawData) > saslMaxArgLength {
  209. rb.Add(nil, server.name, ERR_SASLTOOLONG, details.nick, client.t("SASL message too long"))
  210. session.sasl.Clear()
  211. return false
  212. } else if len(rawData) == saslMaxArgLength {
  213. // allow 4 'continuation' lines before rejecting for length
  214. if len(session.sasl.value) >= saslMaxArgLength*4 {
  215. rb.Add(nil, server.name, ERR_SASLFAIL, details.nick, client.t("SASL authentication failed: Passphrase too long"))
  216. session.sasl.Clear()
  217. return false
  218. }
  219. session.sasl.value += rawData
  220. return false
  221. }
  222. if rawData != "+" {
  223. session.sasl.value += rawData
  224. }
  225. var data []byte
  226. var err error
  227. if session.sasl.value != "+" {
  228. data, err = base64.StdEncoding.DecodeString(session.sasl.value)
  229. session.sasl.value = ""
  230. if err != nil {
  231. rb.Add(nil, server.name, ERR_SASLFAIL, details.nick, client.t("SASL authentication failed: Invalid b64 encoding"))
  232. session.sasl.Clear()
  233. return false
  234. }
  235. }
  236. // call actual handler
  237. handler := EnabledSaslMechanisms[session.sasl.mechanism]
  238. return handler(server, client, session, data, rb)
  239. }
  240. // AUTHENTICATE PLAIN
  241. func authPlainHandler(server *Server, client *Client, session *Session, value []byte, rb *ResponseBuffer) bool {
  242. defer session.sasl.Clear()
  243. splitValue := bytes.Split(value, []byte{'\000'})
  244. // PLAIN has separate "authorization ID" (which user you want to become)
  245. // and "authentication ID" (whose password you want to use). the first is optional:
  246. // [authzid] \x00 authcid \x00 password
  247. var authzid, authcid string
  248. if len(splitValue) == 3 {
  249. authzid, authcid = string(splitValue[0]), string(splitValue[1])
  250. if authzid != "" && authcid != authzid {
  251. rb.Add(nil, server.name, ERR_SASLFAIL, client.Nick(), client.t("SASL authentication failed: authcid and authzid should be the same"))
  252. return false
  253. }
  254. } else {
  255. rb.Add(nil, server.name, ERR_SASLFAIL, client.Nick(), client.t("SASL authentication failed: Invalid auth blob"))
  256. return false
  257. }
  258. // see #843: strip the device ID for the benefit of clients that don't
  259. // distinguish user/ident from account name
  260. if strudelIndex := strings.IndexByte(authcid, '@'); strudelIndex != -1 {
  261. var deviceID string
  262. authcid, deviceID = authcid[:strudelIndex], authcid[strudelIndex+1:]
  263. if !client.registered {
  264. rb.session.deviceID = deviceID
  265. }
  266. }
  267. password := string(splitValue[2])
  268. err := server.accounts.AuthenticateByPassphrase(client, authcid, password)
  269. if err != nil {
  270. sendAuthErrorResponse(client, rb, err)
  271. return false
  272. } else if !fixupNickEqualsAccount(client, rb, server.Config(), "") {
  273. return false
  274. }
  275. sendSuccessfulAccountAuth(nil, client, rb, true)
  276. return false
  277. }
  278. func sendAuthErrorResponse(client *Client, rb *ResponseBuffer, err error) {
  279. msg := authErrorToMessage(client.server, err)
  280. rb.Add(nil, client.server.name, ERR_SASLFAIL, client.nick, fmt.Sprintf("%s: %s", client.t("SASL authentication failed"), client.t(msg)))
  281. if err == errAccountUnverified {
  282. rb.Add(nil, client.server.name, "NOTE", "AUTHENTICATE", "VERIFICATION_REQUIRED", "*", client.t(err.Error()))
  283. }
  284. }
  285. func authErrorToMessage(server *Server, err error) (msg string) {
  286. if throttled, ok := err.(*ThrottleError); ok {
  287. return throttled.Error()
  288. }
  289. switch err {
  290. case errAccountDoesNotExist, errAccountUnverified, errAccountInvalidCredentials, errAuthzidAuthcidMismatch, errNickAccountMismatch, errAccountSuspended:
  291. return err.Error()
  292. default:
  293. // don't expose arbitrary error messages to the user
  294. server.logger.Error("internal", "sasl authentication failure", err.Error())
  295. return "Unknown"
  296. }
  297. }
  298. // AUTHENTICATE EXTERNAL
  299. func authExternalHandler(server *Server, client *Client, session *Session, value []byte, rb *ResponseBuffer) bool {
  300. defer session.sasl.Clear()
  301. if rb.session.certfp == "" {
  302. rb.Add(nil, server.name, ERR_SASLFAIL, client.nick, client.t("SASL authentication failed, you are not connecting with a certificate"))
  303. return false
  304. }
  305. // EXTERNAL doesn't carry an authentication ID (this is determined from the
  306. // certificate), but does carry an optional authorization ID.
  307. var authzid string
  308. var err error
  309. if len(value) != 0 {
  310. authzid, err = CasefoldName(string(value))
  311. if err != nil {
  312. err = errAuthzidAuthcidMismatch
  313. }
  314. }
  315. if err == nil {
  316. // see #843: strip the device ID for the benefit of clients that don't
  317. // distinguish user/ident from account name
  318. if strudelIndex := strings.IndexByte(authzid, '@'); strudelIndex != -1 {
  319. var deviceID string
  320. authzid, deviceID = authzid[:strudelIndex], authzid[strudelIndex+1:]
  321. if !client.registered {
  322. rb.session.deviceID = deviceID
  323. }
  324. }
  325. err = server.accounts.AuthenticateByCertificate(client, rb.session.certfp, rb.session.peerCerts, authzid)
  326. }
  327. if err != nil {
  328. sendAuthErrorResponse(client, rb, err)
  329. return false
  330. } else if !fixupNickEqualsAccount(client, rb, server.Config(), "") {
  331. return false
  332. }
  333. sendSuccessfulAccountAuth(nil, client, rb, true)
  334. return false
  335. }
  336. // AUTHENTICATE SCRAM-SHA-256
  337. func authScramHandler(server *Server, client *Client, session *Session, value []byte, rb *ResponseBuffer) bool {
  338. continueAuth := true
  339. defer func() {
  340. if !continueAuth {
  341. session.sasl.Clear()
  342. }
  343. }()
  344. // first message? if so, initialize the SCRAM conversation
  345. if session.sasl.scramConv == nil {
  346. session.sasl.scramConv = server.accounts.NewScramConversation()
  347. }
  348. // wait for a final AUTHENTICATE + from the client to conclude authentication
  349. if session.sasl.scramConv.Done() {
  350. continueAuth = false
  351. if session.sasl.scramConv.Valid() {
  352. authcid := session.sasl.scramConv.Username()
  353. if strudelIndex := strings.IndexByte(authcid, '@'); strudelIndex != -1 {
  354. var deviceID string
  355. authcid, deviceID = authcid[:strudelIndex], authcid[strudelIndex+1:]
  356. if !client.registered {
  357. rb.session.deviceID = deviceID
  358. }
  359. }
  360. authzid := session.sasl.scramConv.AuthzID()
  361. if authzid != "" && authzid != authcid {
  362. rb.Add(nil, server.name, ERR_SASLFAIL, client.nick, client.t("SASL authentication failed: authcid and authzid should be the same"))
  363. return false
  364. }
  365. account, err := server.accounts.LoadAccount(authcid)
  366. if err == nil {
  367. server.accounts.Login(client, account)
  368. if fixupNickEqualsAccount(client, rb, server.Config(), "") {
  369. sendSuccessfulAccountAuth(nil, client, rb, true)
  370. }
  371. } else {
  372. server.logger.Error("internal", "SCRAM succeeded but couldn't load account", authcid, err.Error())
  373. rb.Add(nil, server.name, ERR_SASLFAIL, client.nick, client.t("SASL authentication failed"))
  374. }
  375. } else {
  376. rb.Add(nil, server.name, ERR_SASLFAIL, client.nick, client.t("SASL authentication failed"))
  377. }
  378. return false
  379. }
  380. response, err := session.sasl.scramConv.Step(string(value))
  381. if err == nil {
  382. rb.Add(nil, server.name, "AUTHENTICATE", base64.StdEncoding.EncodeToString([]byte(response)))
  383. } else {
  384. continueAuth = false
  385. rb.Add(nil, server.name, ERR_SASLFAIL, client.Nick(), err.Error())
  386. return false
  387. }
  388. return false
  389. }
  390. // AWAY [<message>]
  391. func awayHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  392. // #1996: `AWAY :` is treated the same as `AWAY`
  393. var awayMessage string
  394. if len(msg.Params) > 0 {
  395. awayMessage = msg.Params[0]
  396. awayMessage = ircmsg.TruncateUTF8Safe(awayMessage, server.Config().Limits.AwayLen)
  397. }
  398. wasAway, nowAway := rb.session.SetAway(awayMessage)
  399. if nowAway != "" {
  400. rb.Add(nil, server.name, RPL_NOWAWAY, client.nick, client.t("You have been marked as being away"))
  401. } else {
  402. rb.Add(nil, server.name, RPL_UNAWAY, client.nick, client.t("You are no longer marked as being away"))
  403. }
  404. if client.registered && wasAway != nowAway {
  405. dispatchAwayNotify(client, nowAway)
  406. } // else: we'll send it (if applicable) after reattach
  407. return false
  408. }
  409. func dispatchAwayNotify(client *Client, awayMessage string) {
  410. // dispatch away-notify
  411. details := client.Details()
  412. isBot := client.HasMode(modes.Bot)
  413. for session := range client.FriendsMonitors(caps.AwayNotify) {
  414. if awayMessage != "" {
  415. session.sendFromClientInternal(false, time.Time{}, "", details.nickMask, details.accountName, isBot, nil, "AWAY", awayMessage)
  416. } else {
  417. session.sendFromClientInternal(false, time.Time{}, "", details.nickMask, details.accountName, isBot, nil, "AWAY")
  418. }
  419. }
  420. }
  421. // BATCH {+,-}reference-tag type [params...]
  422. func batchHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  423. tag := msg.Params[0]
  424. fail := false
  425. sendErrors := rb.session.batch.command != "NOTICE"
  426. if len(tag) == 0 {
  427. fail = true
  428. } else if tag[0] == '+' {
  429. if len(msg.Params) < 3 || msg.Params[1] != caps.MultilineBatchType {
  430. fail = true
  431. } else {
  432. err := rb.session.StartMultilineBatch(tag[1:], msg.Params[2], rb.Label, msg.ClientOnlyTags())
  433. fail = (err != nil)
  434. if !fail {
  435. // suppress ACK for the initial BATCH message (we'll apply the stored label later)
  436. rb.Label = ""
  437. }
  438. }
  439. } else if tag[0] == '-' {
  440. batch, err := rb.session.EndMultilineBatch(tag[1:])
  441. fail = (err != nil)
  442. if !fail {
  443. histType, err := msgCommandToHistType(batch.command)
  444. if err != nil {
  445. histType = history.Privmsg
  446. batch.command = "PRIVMSG"
  447. }
  448. // XXX changing the label inside a handler is a bit dodgy, but it works here
  449. // because there's no way we could have triggered a flush up to this point
  450. rb.Label = batch.responseLabel
  451. dispatchMessageToTarget(client, batch.tags, histType, batch.command, batch.target, batch.message, rb)
  452. }
  453. }
  454. if fail {
  455. rb.session.EndMultilineBatch("")
  456. if sendErrors {
  457. rb.Add(nil, server.name, "FAIL", "BATCH", "MULTILINE_INVALID", client.t("Invalid multiline batch"))
  458. }
  459. }
  460. return false
  461. }
  462. // CAP <subcmd> [<caps>]
  463. func capHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  464. details := client.Details()
  465. subCommand := strings.ToUpper(msg.Params[0])
  466. toAdd := caps.NewSet()
  467. toRemove := caps.NewSet()
  468. var capString string
  469. config := server.Config()
  470. supportedCaps := config.Server.supportedCaps
  471. if client.isSTSOnly {
  472. supportedCaps = stsOnlyCaps
  473. } else if rb.session.hideSTS {
  474. supportedCaps = config.Server.supportedCapsWithoutSTS
  475. }
  476. badCaps := false
  477. if len(msg.Params) > 1 {
  478. capString = msg.Params[1]
  479. strs := strings.Fields(capString)
  480. for _, str := range strs {
  481. remove := false
  482. if str[0] == '-' {
  483. str = str[1:]
  484. remove = true
  485. }
  486. capab, err := caps.NameToCapability(str)
  487. if err != nil || (!remove && !supportedCaps.Has(capab)) {
  488. badCaps = true
  489. } else if !remove {
  490. toAdd.Enable(capab)
  491. } else {
  492. toRemove.Enable(capab)
  493. }
  494. }
  495. }
  496. sendCapLines := func(cset *caps.Set, values caps.Values) {
  497. version := rb.session.capVersion
  498. // we're working around two bugs:
  499. // 1. WeeChat 1.4 won't accept the CAP reply unless it contains the server.name source
  500. // 2. old versions of Kiwi and The Lounge can't parse multiline CAP LS 302 (#661),
  501. // so try as hard as possible to get the response to fit on one line.
  502. // :server.name CAP nickname LS * :<tokens>\r\n
  503. // 1 [5 ] 1 [4 ] [2 ]
  504. maxLen := (MaxLineLen - 2) - 1 - len(server.name) - 5 - len(details.nick) - 1 - len(subCommand) - 4
  505. capLines := cset.Strings(version, values, maxLen)
  506. for i, capStr := range capLines {
  507. if version >= caps.Cap302 && i < len(capLines)-1 {
  508. rb.Add(nil, server.name, "CAP", details.nick, subCommand, "*", capStr)
  509. } else {
  510. rb.Add(nil, server.name, "CAP", details.nick, subCommand, capStr)
  511. }
  512. }
  513. }
  514. switch subCommand {
  515. case "LS":
  516. if !client.registered {
  517. rb.session.capState = caps.NegotiatingState
  518. }
  519. if 1 < len(msg.Params) {
  520. num, err := strconv.Atoi(msg.Params[1])
  521. newVersion := caps.Version(num)
  522. if err == nil && rb.session.capVersion < newVersion {
  523. rb.session.capVersion = newVersion
  524. }
  525. }
  526. sendCapLines(supportedCaps, config.Server.capValues)
  527. case "LIST":
  528. // values not sent on LIST
  529. sendCapLines(&rb.session.capabilities, nil)
  530. case "REQ":
  531. if !client.registered {
  532. rb.session.capState = caps.NegotiatingState
  533. }
  534. // make sure all capabilities actually exist
  535. // #511, #521: oragono.io/nope is a fake cap to trap bad clients who blindly request
  536. // every offered capability. during registration, requesting it produces a quit,
  537. // otherwise just a CAP NAK
  538. if badCaps || (toAdd.Has(caps.Nope) && client.registered) {
  539. rb.Add(nil, server.name, "CAP", details.nick, "NAK", capString)
  540. return false
  541. } else if toAdd.Has(caps.Nope) && !client.registered {
  542. client.Quit(fmt.Sprintf(client.t("Requesting the %s client capability is forbidden"), caps.Nope.Name()), rb.session)
  543. return true
  544. }
  545. rb.session.capabilities.Union(toAdd)
  546. rb.session.capabilities.Subtract(toRemove)
  547. rb.Add(nil, server.name, "CAP", details.nick, "ACK", capString)
  548. case "END":
  549. if !client.registered {
  550. rb.session.capState = caps.NegotiatedState
  551. }
  552. default:
  553. rb.Add(nil, server.name, ERR_INVALIDCAPCMD, details.nick, subCommand, client.t("Invalid CAP subcommand"))
  554. }
  555. return false
  556. }
  557. // CHATHISTORY <target> <preposition> <query> [<limit>]
  558. // e.g., CHATHISTORY #ircv3 AFTER id=ytNBbt565yt4r3err3 10
  559. // CHATHISTORY <target> BETWEEN <query> <query> <direction> [<limit>]
  560. // e.g., CHATHISTORY #ircv3 BETWEEN timestamp=YYYY-MM-DDThh:mm:ss.sssZ timestamp=YYYY-MM-DDThh:mm:ss.sssZ + 100
  561. func chathistoryHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) (exiting bool) {
  562. var items []history.Item
  563. var target string
  564. var channel *Channel
  565. var sequence history.Sequence
  566. var err error
  567. var listTargets bool
  568. var targets []history.TargetListing
  569. defer func() {
  570. // errors are sent either without a batch, or in a draft/labeled-response batch as usual
  571. if err == utils.ErrInvalidParams {
  572. rb.Add(nil, server.name, "FAIL", "CHATHISTORY", "INVALID_PARAMS", msg.Params[0], client.t("Invalid parameters"))
  573. } else if !listTargets && sequence == nil {
  574. rb.Add(nil, server.name, "FAIL", "CHATHISTORY", "INVALID_TARGET", msg.Params[0], utils.SafeErrorParam(target), client.t("Messages could not be retrieved"))
  575. } else if err != nil {
  576. rb.Add(nil, server.name, "FAIL", "CHATHISTORY", "MESSAGE_ERROR", msg.Params[0], client.t("Messages could not be retrieved"))
  577. } else {
  578. // successful responses are sent as a chathistory or history batch
  579. if listTargets {
  580. batchID := rb.StartNestedBatch(caps.ChathistoryTargetsBatchType)
  581. defer rb.EndNestedBatch(batchID)
  582. for _, target := range targets {
  583. name := server.UnfoldName(target.CfName)
  584. rb.Add(nil, server.name, "CHATHISTORY", "TARGETS", name,
  585. target.Time.Format(IRCv3TimestampFormat))
  586. }
  587. } else if channel != nil {
  588. channel.replayHistoryItems(rb, items, true)
  589. } else {
  590. client.replayPrivmsgHistory(rb, items, target, true)
  591. }
  592. }
  593. }()
  594. config := server.Config()
  595. maxChathistoryLimit := config.History.ChathistoryMax
  596. if maxChathistoryLimit == 0 {
  597. return
  598. }
  599. preposition := strings.ToLower(msg.Params[0])
  600. target = msg.Params[1]
  601. listTargets = (preposition == "targets")
  602. parseQueryParam := func(param string) (msgid string, timestamp time.Time, err error) {
  603. if param == "*" && (preposition == "before" || preposition == "between") {
  604. // XXX compatibility with kiwi, which as of February 2020 is
  605. // using BEFORE * as a synonym for LATEST *
  606. return
  607. }
  608. err = utils.ErrInvalidParams
  609. pieces := strings.SplitN(param, "=", 2)
  610. if len(pieces) < 2 {
  611. return
  612. }
  613. identifier, value := strings.ToLower(pieces[0]), pieces[1]
  614. if identifier == "msgid" {
  615. msgid, err = history.NormalizeMsgid(value), nil
  616. return
  617. } else if identifier == "timestamp" {
  618. timestamp, err = time.Parse(IRCv3TimestampFormat, value)
  619. return
  620. }
  621. return
  622. }
  623. parseHistoryLimit := func(paramIndex int) (limit int) {
  624. if len(msg.Params) < (paramIndex + 1) {
  625. return maxChathistoryLimit
  626. }
  627. limit, err := strconv.Atoi(msg.Params[paramIndex])
  628. if err != nil || limit == 0 || limit > maxChathistoryLimit {
  629. limit = maxChathistoryLimit
  630. }
  631. return
  632. }
  633. roundUp := func(endpoint time.Time) (result time.Time) {
  634. return endpoint.Truncate(time.Millisecond).Add(time.Millisecond)
  635. }
  636. paramPos := 2
  637. var start, end history.Selector
  638. var limit int
  639. switch preposition {
  640. case "targets":
  641. // use the same selector parsing as BETWEEN,
  642. // except that we have no target so we have one fewer parameter
  643. paramPos = 1
  644. fallthrough
  645. case "between":
  646. start.Msgid, start.Time, err = parseQueryParam(msg.Params[paramPos])
  647. if err != nil {
  648. return
  649. }
  650. end.Msgid, end.Time, err = parseQueryParam(msg.Params[paramPos+1])
  651. if err != nil {
  652. return
  653. }
  654. // XXX preserve the ordering of the two parameters, since we might be going backwards,
  655. // but round up the chronologically first one, whichever it is, to make it exclusive
  656. if !start.Time.IsZero() && !end.Time.IsZero() {
  657. if start.Time.Before(end.Time) {
  658. start.Time = roundUp(start.Time)
  659. } else {
  660. end.Time = roundUp(end.Time)
  661. }
  662. }
  663. limit = parseHistoryLimit(paramPos + 2)
  664. case "before", "after", "around":
  665. start.Msgid, start.Time, err = parseQueryParam(msg.Params[2])
  666. if err != nil {
  667. return
  668. }
  669. if preposition == "after" && !start.Time.IsZero() {
  670. start.Time = roundUp(start.Time)
  671. }
  672. if preposition == "before" {
  673. end = start
  674. start = history.Selector{}
  675. }
  676. limit = parseHistoryLimit(3)
  677. case "latest":
  678. if msg.Params[2] != "*" {
  679. end.Msgid, end.Time, err = parseQueryParam(msg.Params[2])
  680. if err != nil {
  681. return
  682. }
  683. if !end.Time.IsZero() {
  684. end.Time = roundUp(end.Time)
  685. }
  686. start.Time = time.Now().UTC()
  687. }
  688. limit = parseHistoryLimit(3)
  689. default:
  690. err = utils.ErrInvalidParams
  691. return
  692. }
  693. if listTargets {
  694. targets, err = client.listTargets(start, end, limit)
  695. } else {
  696. channel, sequence, err = server.GetHistorySequence(nil, client, target)
  697. if err != nil || sequence == nil {
  698. return
  699. }
  700. if preposition == "around" {
  701. items, err = sequence.Around(start, limit)
  702. } else {
  703. items, err = sequence.Between(start, end, limit)
  704. }
  705. }
  706. return
  707. }
  708. // DEBUG <subcmd>
  709. func debugHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  710. param := strings.ToUpper(msg.Params[0])
  711. switch param {
  712. case "GCSTATS":
  713. stats := debug.GCStats{
  714. Pause: make([]time.Duration, 10),
  715. PauseQuantiles: make([]time.Duration, 5),
  716. }
  717. debug.ReadGCStats(&stats)
  718. rb.Notice(fmt.Sprintf("last GC: %s", stats.LastGC.Format(time.RFC1123)))
  719. rb.Notice(fmt.Sprintf("num GC: %d", stats.NumGC))
  720. rb.Notice(fmt.Sprintf("pause total: %s", stats.PauseTotal))
  721. rb.Notice(fmt.Sprintf("pause quantiles min%%: %s", stats.PauseQuantiles[0]))
  722. rb.Notice(fmt.Sprintf("pause quantiles 25%%: %s", stats.PauseQuantiles[1]))
  723. rb.Notice(fmt.Sprintf("pause quantiles 50%%: %s", stats.PauseQuantiles[2]))
  724. rb.Notice(fmt.Sprintf("pause quantiles 75%%: %s", stats.PauseQuantiles[3]))
  725. rb.Notice(fmt.Sprintf("pause quantiles max%%: %s", stats.PauseQuantiles[4]))
  726. case "NUMGOROUTINE":
  727. count := runtime.NumGoroutine()
  728. rb.Notice(fmt.Sprintf("num goroutines: %d", count))
  729. case "PROFILEHEAP":
  730. profFile := server.Config().getOutputPath("ergo.mprof")
  731. file, err := os.Create(profFile)
  732. if err != nil {
  733. rb.Notice(fmt.Sprintf("error: %s", err))
  734. break
  735. }
  736. defer file.Close()
  737. pprof.Lookup("heap").WriteTo(file, 0)
  738. rb.Notice(fmt.Sprintf("written to %s", profFile))
  739. case "STARTCPUPROFILE":
  740. profFile := server.Config().getOutputPath("ergo.prof")
  741. file, err := os.Create(profFile)
  742. if err != nil {
  743. rb.Notice(fmt.Sprintf("error: %s", err))
  744. break
  745. }
  746. if err := pprof.StartCPUProfile(file); err != nil {
  747. defer file.Close()
  748. rb.Notice(fmt.Sprintf("error: %s", err))
  749. break
  750. }
  751. rb.Notice(fmt.Sprintf("CPU profile writing to %s", profFile))
  752. case "STOPCPUPROFILE":
  753. pprof.StopCPUProfile()
  754. rb.Notice(fmt.Sprintf("CPU profiling stopped"))
  755. case "CRASHSERVER":
  756. code := utils.ConfirmationCode(server.name, server.ctime)
  757. if len(msg.Params) == 1 || msg.Params[1] != code {
  758. rb.Notice(fmt.Sprintf(client.t("To confirm, run this command: %s"), fmt.Sprintf("/DEBUG CRASHSERVER %s", code)))
  759. return false
  760. }
  761. server.logger.Error("server", fmt.Sprintf("DEBUG CRASHSERVER executed by operator %s", client.Oper().Name))
  762. go func() {
  763. // intentional nil dereference on a new goroutine, bypassing recover-from-errors
  764. var i, j *int
  765. *i = *j
  766. }()
  767. default:
  768. rb.Notice(client.t("Unrecognized DEBUG subcommand"))
  769. }
  770. return false
  771. }
  772. func defconHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  773. if len(msg.Params) > 0 {
  774. level, err := strconv.Atoi(msg.Params[0])
  775. if err == nil && 1 <= level && level <= 5 {
  776. server.SetDefcon(uint32(level))
  777. server.snomasks.Send(sno.LocalAnnouncements, fmt.Sprintf("%s [%s] set DEFCON level to %d", client.Nick(), client.Oper().Name, level))
  778. } else {
  779. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.Nick(), msg.Command, client.t("Invalid DEFCON parameter"))
  780. return false
  781. }
  782. }
  783. rb.Notice(fmt.Sprintf(client.t("Current DEFCON level is %d"), server.Defcon()))
  784. return false
  785. }
  786. // helper for parsing the reason args to DLINE and KLINE
  787. func getReasonsFromParams(params []string, currentArg int) (reason, operReason string) {
  788. reason = "No reason given"
  789. operReason = ""
  790. if len(params) > currentArg {
  791. reasons := strings.SplitN(strings.Join(params[currentArg:], " "), "|", 2)
  792. if len(reasons) == 1 {
  793. reason = strings.TrimSpace(reasons[0])
  794. } else if len(reasons) == 2 {
  795. reason = strings.TrimSpace(reasons[0])
  796. operReason = strings.TrimSpace(reasons[1])
  797. }
  798. }
  799. return
  800. }
  801. func formatBanForListing(client *Client, key string, info IPBanInfo) string {
  802. desc := info.Reason
  803. if info.OperReason != "" && info.OperReason != info.Reason {
  804. desc = fmt.Sprintf("%s | %s", info.Reason, info.OperReason)
  805. }
  806. desc = fmt.Sprintf("%s [%s] added on [%s]", desc, info.TimeLeft(), info.TimeCreated.UTC().Format(time.RFC1123))
  807. banType := "Ban"
  808. if info.RequireSASL {
  809. banType = "SASL required"
  810. }
  811. return fmt.Sprintf(client.t("%[1]s - %[2]s - added by %[3]s - %[4]s"), banType, key, info.OperName, desc)
  812. }
  813. // DLINE [ANDKILL] [MYSELF] [duration] <ip>/<net> [ON <server>] [reason [| oper reason]]
  814. // DLINE LIST
  815. func dlineHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  816. // check oper permissions
  817. oper := client.Oper()
  818. if !oper.HasRoleCapab("ban") {
  819. rb.Add(nil, server.name, ERR_NOPRIVS, client.nick, msg.Command, client.t("Insufficient oper privs"))
  820. return false
  821. }
  822. currentArg := 0
  823. // if they say LIST, we just list the current dlines
  824. if len(msg.Params) == currentArg+1 && strings.ToLower(msg.Params[currentArg]) == "list" {
  825. bans := server.dlines.AllBans()
  826. if len(bans) == 0 {
  827. rb.Notice(client.t("No DLINEs have been set!"))
  828. }
  829. for key, info := range bans {
  830. client.Notice(formatBanForListing(client, key, info))
  831. }
  832. return false
  833. }
  834. // when setting a ban, if they say "ANDKILL" we should also kill all users who match it
  835. var andKill bool
  836. if len(msg.Params) > currentArg+1 && strings.ToLower(msg.Params[currentArg]) == "andkill" {
  837. andKill = true
  838. currentArg++
  839. }
  840. // when setting a ban that covers the oper's current connection, we require them to say
  841. // "DLINE MYSELF" so that we're sure they really mean it.
  842. var dlineMyself bool
  843. if len(msg.Params) > currentArg+1 && strings.ToLower(msg.Params[currentArg]) == "myself" {
  844. dlineMyself = true
  845. currentArg++
  846. }
  847. // duration
  848. duration, err := custime.ParseDuration(msg.Params[currentArg])
  849. if err != nil {
  850. duration = 0
  851. } else {
  852. currentArg++
  853. }
  854. // get host
  855. if len(msg.Params) < currentArg+1 {
  856. rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.nick, msg.Command, client.t("Not enough parameters"))
  857. return false
  858. }
  859. hostString := msg.Params[currentArg]
  860. currentArg++
  861. // check host
  862. hostNet, err := utils.NormalizedNetFromString(hostString)
  863. if err != nil {
  864. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.nick, msg.Command, client.t("Could not parse IP address or CIDR network"))
  865. return false
  866. }
  867. if !dlineMyself && hostNet.Contains(rb.session.IP()) {
  868. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.nick, msg.Command, client.t("This ban matches you. To DLINE yourself, you must use the command: /DLINE MYSELF <arguments>"))
  869. return false
  870. }
  871. // check remote
  872. if len(msg.Params) > currentArg && msg.Params[currentArg] == "ON" {
  873. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.nick, msg.Command, client.t("Remote servers not yet supported"))
  874. return false
  875. }
  876. // get comment(s)
  877. reason, operReason := getReasonsFromParams(msg.Params, currentArg)
  878. operName := oper.Name
  879. if operName == "" {
  880. operName = server.name
  881. }
  882. err = server.dlines.AddNetwork(flatip.FromNetIPNet(hostNet), duration, false, reason, operReason, operName)
  883. if err != nil {
  884. rb.Notice(fmt.Sprintf(client.t("Could not successfully save new D-LINE: %s"), err.Error()))
  885. return false
  886. }
  887. var snoDescription string
  888. hostString = utils.NetToNormalizedString(hostNet)
  889. if duration != 0 {
  890. rb.Notice(fmt.Sprintf(client.t("Added temporary (%[1]s) D-Line for %[2]s"), duration.String(), hostString))
  891. snoDescription = fmt.Sprintf(ircfmt.Unescape("%s [%s]$r added temporary (%s) D-Line for %s"), client.nick, operName, duration.String(), hostString)
  892. } else {
  893. rb.Notice(fmt.Sprintf(client.t("Added D-Line for %s"), hostString))
  894. snoDescription = fmt.Sprintf(ircfmt.Unescape("%s [%s]$r added D-Line for %s"), client.nick, operName, hostString)
  895. }
  896. server.snomasks.Send(sno.LocalXline, snoDescription)
  897. var killClient bool
  898. if andKill {
  899. var sessionsToKill []*Session
  900. var killedClientNicks []string
  901. for _, mcl := range server.clients.AllClients() {
  902. nickKilled := false
  903. for _, session := range mcl.Sessions() {
  904. if hostNet.Contains(session.IP()) {
  905. sessionsToKill = append(sessionsToKill, session)
  906. if !nickKilled {
  907. killedClientNicks = append(killedClientNicks, mcl.Nick())
  908. nickKilled = true
  909. }
  910. }
  911. }
  912. }
  913. for _, session := range sessionsToKill {
  914. mcl := session.client
  915. mcl.Quit(fmt.Sprintf(mcl.t("You have been banned from this server (%s)"), reason), session)
  916. if session == rb.session {
  917. killClient = true
  918. } else {
  919. // if mcl == client, we kill them below
  920. mcl.destroy(session)
  921. }
  922. }
  923. // send snomask
  924. sort.Strings(killedClientNicks)
  925. server.snomasks.Send(sno.LocalKills, fmt.Sprintf(ircfmt.Unescape("%s [%s] killed %d clients with a DLINE $c[grey][$r%s$c[grey]]"), client.nick, operName, len(killedClientNicks), strings.Join(killedClientNicks, ", ")))
  926. }
  927. return killClient
  928. }
  929. // EXTJWT <target> [service_name]
  930. func extjwtHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  931. accountName := client.AccountName()
  932. if accountName == "*" {
  933. accountName = ""
  934. }
  935. claims := jwt.MapClaims{
  936. "iss": server.name,
  937. "sub": client.Nick(),
  938. "account": accountName,
  939. "umodes": []string{},
  940. }
  941. if msg.Params[0] != "*" {
  942. channel := server.channels.Get(msg.Params[0])
  943. if channel == nil {
  944. rb.Add(nil, server.name, "FAIL", "EXTJWT", "NO_SUCH_CHANNEL", client.t("No such channel"))
  945. return false
  946. }
  947. claims["channel"] = channel.Name()
  948. claims["joined"] = 0
  949. claims["cmodes"] = []string{}
  950. if present, joinTimeSecs, cModes := channel.ClientStatus(client); present {
  951. claims["joined"] = joinTimeSecs
  952. var modeStrings []string
  953. for _, cMode := range cModes {
  954. modeStrings = append(modeStrings, string(cMode))
  955. }
  956. claims["cmodes"] = modeStrings
  957. }
  958. }
  959. config := server.Config()
  960. var serviceName string
  961. var sConfig jwt.JwtServiceConfig
  962. if 1 < len(msg.Params) {
  963. serviceName = strings.ToLower(msg.Params[1])
  964. sConfig = config.Extjwt.Services[serviceName]
  965. } else {
  966. serviceName = "*"
  967. sConfig = config.Extjwt.Default
  968. }
  969. if !sConfig.Enabled() {
  970. rb.Add(nil, server.name, "FAIL", "EXTJWT", "NO_SUCH_SERVICE", client.t("No such service"))
  971. return false
  972. }
  973. tokenString, err := sConfig.Sign(claims)
  974. if err == nil {
  975. maxTokenLength := maxLastArgLength
  976. for maxTokenLength < len(tokenString) {
  977. rb.Add(nil, server.name, "EXTJWT", msg.Params[0], serviceName, "*", tokenString[:maxTokenLength])
  978. tokenString = tokenString[maxTokenLength:]
  979. }
  980. rb.Add(nil, server.name, "EXTJWT", msg.Params[0], serviceName, tokenString)
  981. } else {
  982. rb.Add(nil, server.name, "FAIL", "EXTJWT", "UNKNOWN_ERROR", client.t("Could not generate EXTJWT token"))
  983. }
  984. return false
  985. }
  986. // HELP [<query>]
  987. // HELPOP [<query>]
  988. func helpHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  989. if len(msg.Params) == 0 {
  990. client.sendHelp("HELPOP", client.t(`HELPOP <argument>
  991. Get an explanation of <argument>, or "index" for a list of help topics.`), rb)
  992. return false
  993. }
  994. argument := strings.ToLower(strings.TrimSpace(msg.Params[0]))
  995. // handle index
  996. if argument == "index" {
  997. client.sendHelp("HELP", server.helpIndexManager.GetIndex(client.Languages(), client.HasMode(modes.Operator)), rb)
  998. return false
  999. }
  1000. helpHandler, exists := Help[argument]
  1001. if exists && (!helpHandler.oper || (helpHandler.oper && client.HasMode(modes.Operator))) {
  1002. if helpHandler.textGenerator != nil {
  1003. client.sendHelp(argument, helpHandler.textGenerator(client), rb)
  1004. } else {
  1005. client.sendHelp(argument, client.t(helpHandler.text), rb)
  1006. }
  1007. } else {
  1008. rb.Add(nil, server.name, ERR_HELPNOTFOUND, client.Nick(), strings.ToUpper(utils.SafeErrorParam(argument)), client.t("Help not found"))
  1009. }
  1010. return false
  1011. }
  1012. // HISTORY <target> [<limit>]
  1013. // e.g., HISTORY #ubuntu 10
  1014. // HISTORY alice 15
  1015. // HISTORY #darwin 1h
  1016. func historyHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1017. config := server.Config()
  1018. if !config.History.Enabled {
  1019. rb.Notice(client.t("This command has been disabled by the server administrators"))
  1020. return false
  1021. }
  1022. items, channel, err := easySelectHistory(server, client, msg.Params)
  1023. if err == errNoSuchChannel {
  1024. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(msg.Params[0]), client.t("No such channel"))
  1025. return false
  1026. } else if err != nil {
  1027. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.Nick(), msg.Command, client.t("Could not retrieve history"))
  1028. return false
  1029. }
  1030. if len(items) != 0 {
  1031. if channel != nil {
  1032. channel.replayHistoryItems(rb, items, true)
  1033. } else {
  1034. client.replayPrivmsgHistory(rb, items, "", true)
  1035. }
  1036. }
  1037. return false
  1038. }
  1039. // INFO
  1040. func infoHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1041. nick := client.Nick()
  1042. // we do the below so that the human-readable lines in info can be translated.
  1043. for _, line := range infoString1 {
  1044. rb.Add(nil, server.name, RPL_INFO, nick, line)
  1045. }
  1046. rb.Add(nil, server.name, RPL_INFO, nick, fmt.Sprintf(client.t("This is Ergo version %s."), SemVer))
  1047. if Commit != "" {
  1048. rb.Add(nil, server.name, RPL_INFO, nick, fmt.Sprintf(client.t("It was built from git hash %s."), Commit))
  1049. }
  1050. rb.Add(nil, server.name, RPL_INFO, nick, fmt.Sprintf(client.t("It was compiled using %s."), runtime.Version()))
  1051. rb.Add(nil, server.name, RPL_INFO, nick, fmt.Sprintf(client.t("This server has been running since %s."), server.ctime.Format(time.RFC1123)))
  1052. rb.Add(nil, server.name, RPL_INFO, nick, "")
  1053. rb.Add(nil, server.name, RPL_INFO, nick, client.t("Ergo is released under the MIT license."))
  1054. rb.Add(nil, server.name, RPL_INFO, nick, "")
  1055. rb.Add(nil, server.name, RPL_INFO, nick, client.t("Core Developers:"))
  1056. for _, line := range infoString2 {
  1057. rb.Add(nil, server.name, RPL_INFO, nick, line)
  1058. }
  1059. rb.Add(nil, server.name, RPL_INFO, nick, client.t("Former Core Developers:"))
  1060. for _, line := range infoString3 {
  1061. rb.Add(nil, server.name, RPL_INFO, nick, line)
  1062. }
  1063. rb.Add(nil, server.name, RPL_INFO, nick, client.t("For a more complete list of contributors, see our changelog:"))
  1064. rb.Add(nil, server.name, RPL_INFO, nick, " https://github.com/ergochat/ergo/blob/master/CHANGELOG.md")
  1065. rb.Add(nil, server.name, RPL_INFO, nick, "")
  1066. // show translators for languages other than good ole' regular English
  1067. tlines := server.Languages().Translators()
  1068. if 0 < len(tlines) {
  1069. rb.Add(nil, server.name, RPL_INFO, nick, client.t("Translators:"))
  1070. for _, line := range tlines {
  1071. rb.Add(nil, server.name, RPL_INFO, nick, " "+strings.Replace(line, "\n", ", ", -1))
  1072. }
  1073. rb.Add(nil, server.name, RPL_INFO, nick, "")
  1074. }
  1075. rb.Add(nil, server.name, RPL_ENDOFINFO, nick, client.t("End of /INFO"))
  1076. return false
  1077. }
  1078. // INVITE <nickname> <channel>
  1079. // UNINVITE <nickname> <channel>
  1080. func inviteHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1081. invite := msg.Command == "INVITE"
  1082. nickname := msg.Params[0]
  1083. channelName := msg.Params[1]
  1084. target := server.clients.Get(nickname)
  1085. if target == nil {
  1086. rb.Add(nil, server.name, ERR_NOSUCHNICK, client.Nick(), utils.SafeErrorParam(nickname), client.t("No such nick"))
  1087. return false
  1088. }
  1089. channel := server.channels.Get(channelName)
  1090. if channel == nil {
  1091. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(channelName), client.t("No such channel"))
  1092. return false
  1093. }
  1094. if invite {
  1095. channel.Invite(target, client, rb)
  1096. } else {
  1097. channel.Uninvite(target, client, rb)
  1098. }
  1099. return false
  1100. }
  1101. // ISON <nick>{ <nick>}
  1102. func isonHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1103. var nicks = msg.Params
  1104. ison := make([]string, 0, len(msg.Params))
  1105. for _, nick := range nicks {
  1106. currentNick := server.getCurrentNick(nick)
  1107. if currentNick != "" {
  1108. ison = append(ison, currentNick)
  1109. }
  1110. }
  1111. rb.Add(nil, server.name, RPL_ISON, client.nick, strings.Join(ison, " "))
  1112. return false
  1113. }
  1114. // JOIN <channel>{,<channel>} [<key>{,<key>}]
  1115. func joinHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1116. // #1417: allow `JOIN 0` with a confirmation code
  1117. if msg.Params[0] == "0" {
  1118. expectedCode := utils.ConfirmationCode("", rb.session.ctime)
  1119. if len(msg.Params) == 1 || msg.Params[1] != expectedCode {
  1120. rb.Notice(fmt.Sprintf(client.t("Warning: /JOIN 0 will remove you from all channels. To confirm, type: /JOIN 0 %s"), expectedCode))
  1121. } else {
  1122. for _, channel := range client.Channels() {
  1123. channel.Part(client, "", rb)
  1124. }
  1125. }
  1126. return false
  1127. }
  1128. // handle regular JOINs
  1129. channels := strings.Split(msg.Params[0], ",")
  1130. var keys []string
  1131. if len(msg.Params) > 1 {
  1132. keys = strings.Split(msg.Params[1], ",")
  1133. }
  1134. for i, name := range channels {
  1135. if name == "" {
  1136. continue // #679
  1137. }
  1138. var key string
  1139. if len(keys) > i {
  1140. key = keys[i]
  1141. }
  1142. err, forward := server.channels.Join(client, name, key, false, rb)
  1143. if err != nil {
  1144. if forward != "" {
  1145. rb.Add(nil, server.name, ERR_LINKCHANNEL, client.Nick(), utils.SafeErrorParam(name), forward, client.t("Forwarding to another channel"))
  1146. name = forward
  1147. err, _ = server.channels.Join(client, name, key, false, rb)
  1148. }
  1149. if err != nil {
  1150. sendJoinError(client, name, rb, err)
  1151. }
  1152. }
  1153. }
  1154. return false
  1155. }
  1156. func sendJoinError(client *Client, name string, rb *ResponseBuffer, err error) {
  1157. var code, errMsg, forbiddingMode string
  1158. switch err {
  1159. case errInsufficientPrivs:
  1160. code, errMsg = ERR_NOSUCHCHANNEL, `Only server operators can create new channels`
  1161. case errConfusableIdentifier:
  1162. code, errMsg = ERR_NOSUCHCHANNEL, `That channel name is too close to the name of another channel`
  1163. case errChannelPurged:
  1164. code, errMsg = ERR_NOSUCHCHANNEL, err.Error()
  1165. case errTooManyChannels:
  1166. code, errMsg = ERR_TOOMANYCHANNELS, `You have joined too many channels`
  1167. case errLimitExceeded:
  1168. code, forbiddingMode = ERR_CHANNELISFULL, "l"
  1169. case errWrongChannelKey:
  1170. code, forbiddingMode = ERR_BADCHANNELKEY, "k"
  1171. case errInviteOnly:
  1172. code, forbiddingMode = ERR_INVITEONLYCHAN, "i"
  1173. case errBanned:
  1174. code, forbiddingMode = ERR_BANNEDFROMCHAN, "b"
  1175. case errRegisteredOnly:
  1176. code, errMsg = ERR_NEEDREGGEDNICK, `You must be registered to join that channel`
  1177. default:
  1178. code, errMsg = ERR_NOSUCHCHANNEL, `No such channel`
  1179. }
  1180. if forbiddingMode != "" {
  1181. errMsg = fmt.Sprintf(client.t("Cannot join channel (+%s)"), forbiddingMode)
  1182. } else {
  1183. errMsg = client.t(errMsg)
  1184. }
  1185. rb.Add(nil, client.server.name, code, client.Nick(), utils.SafeErrorParam(name), errMsg)
  1186. }
  1187. // SAJOIN [nick] #channel{,#channel}
  1188. func sajoinHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1189. var target *Client
  1190. var channelString string
  1191. if strings.HasPrefix(msg.Params[0], "#") {
  1192. target = client
  1193. channelString = msg.Params[0]
  1194. } else {
  1195. if len(msg.Params) == 1 {
  1196. rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), "SAJOIN", client.t("Not enough parameters"))
  1197. return false
  1198. } else {
  1199. target = server.clients.Get(msg.Params[0])
  1200. if target == nil {
  1201. rb.Add(nil, server.name, ERR_NOSUCHNICK, client.Nick(), utils.SafeErrorParam(msg.Params[0]), "No such nick")
  1202. return false
  1203. }
  1204. channelString = msg.Params[1]
  1205. }
  1206. }
  1207. message := fmt.Sprintf("Operator %s ran SAJOIN %s", client.Oper().Name, strings.Join(msg.Params, " "))
  1208. server.snomasks.Send(sno.LocalOpers, message)
  1209. server.logger.Info("opers", message)
  1210. channels := strings.Split(channelString, ",")
  1211. for _, chname := range channels {
  1212. err, _ := server.channels.Join(target, chname, "", true, rb)
  1213. if err != nil {
  1214. sendJoinError(client, chname, rb, err)
  1215. }
  1216. }
  1217. return false
  1218. }
  1219. // KICK <channel>{,<channel>} <user>{,<user>} [<comment>]
  1220. // RFC 2812 requires the number of channels to be either 1 or equal to
  1221. // the number of users.
  1222. // Addditionally, we support multiple channels and a single user.
  1223. func kickHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1224. channels := strings.Split(msg.Params[0], ",")
  1225. users := strings.Split(msg.Params[1], ",")
  1226. if (len(channels) != len(users)) && (len(users) != 1) && (len(channels) != 1) {
  1227. rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.nick, "KICK", client.t("Not enough parameters"))
  1228. return false
  1229. }
  1230. type kickCmd struct {
  1231. channel string
  1232. nick string
  1233. }
  1234. var kicks []kickCmd
  1235. if len(users) == 1 {
  1236. kicks = make([]kickCmd, 0, len(channels))
  1237. // Single user, possibly multiple channels
  1238. user := users[0]
  1239. for _, channel := range channels {
  1240. if channel == "" {
  1241. continue // #679
  1242. }
  1243. kicks = append(kicks, kickCmd{channel, user})
  1244. }
  1245. } else {
  1246. // Multiple users, either a single channel or as many channels
  1247. // as users.
  1248. kicks = make([]kickCmd, 0, len(users))
  1249. channel := channels[0]
  1250. for index, user := range users {
  1251. if len(channels) > 1 {
  1252. channel = channels[index]
  1253. }
  1254. if channel == "" {
  1255. continue // #679
  1256. }
  1257. kicks = append(kicks, kickCmd{channel, user})
  1258. }
  1259. }
  1260. var comment string
  1261. if len(msg.Params) > 2 {
  1262. comment = msg.Params[2]
  1263. }
  1264. if comment == "" {
  1265. comment = client.Nick()
  1266. }
  1267. for _, kick := range kicks {
  1268. channel := server.channels.Get(kick.channel)
  1269. if channel == nil {
  1270. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.nick, utils.SafeErrorParam(kick.channel), client.t("No such channel"))
  1271. continue
  1272. }
  1273. target := server.clients.Get(kick.nick)
  1274. if target == nil {
  1275. rb.Add(nil, server.name, ERR_NOSUCHNICK, client.nick, utils.SafeErrorParam(kick.nick), client.t("No such nick"))
  1276. continue
  1277. }
  1278. channel.Kick(client, target, comment, rb, false)
  1279. }
  1280. return false
  1281. }
  1282. // KILL <nickname> <comment>
  1283. func killHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1284. nickname := msg.Params[0]
  1285. var comment string
  1286. if len(msg.Params) > 1 {
  1287. comment = msg.Params[1]
  1288. }
  1289. target := server.clients.Get(nickname)
  1290. if target == nil {
  1291. rb.Add(nil, client.server.name, ERR_NOSUCHNICK, client.Nick(), utils.SafeErrorParam(nickname), client.t("No such nick"))
  1292. return false
  1293. } else if target.AlwaysOn() {
  1294. rb.Add(nil, client.server.name, ERR_UNKNOWNERROR, client.Nick(), "KILL", fmt.Sprintf(client.t("Client %s is always-on and cannot be fully removed by /KILL; consider /UBAN ADD instead"), target.Nick()))
  1295. }
  1296. quitMsg := "Killed"
  1297. if comment != "" {
  1298. quitMsg = fmt.Sprintf("Killed by %s: %s", client.Nick(), comment)
  1299. }
  1300. var snoLine string
  1301. if comment == "" {
  1302. snoLine = fmt.Sprintf(ircfmt.Unescape("%s was killed by %s"), target.Nick(), client.Nick())
  1303. } else {
  1304. snoLine = fmt.Sprintf(ircfmt.Unescape("%s was killed by %s $c[grey][$r%s$c[grey]]"), target.Nick(), client.Nick(), comment)
  1305. }
  1306. server.snomasks.Send(sno.LocalKills, snoLine)
  1307. target.Quit(quitMsg, nil)
  1308. target.destroy(nil)
  1309. return false
  1310. }
  1311. // KLINE [ANDKILL] [MYSELF] [duration] <mask> [ON <server>] [reason [| oper reason]]
  1312. // KLINE LIST
  1313. func klineHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1314. details := client.Details()
  1315. // check oper permissions
  1316. oper := client.Oper()
  1317. if !oper.HasRoleCapab("ban") {
  1318. rb.Add(nil, server.name, ERR_NOPRIVS, details.nick, msg.Command, client.t("Insufficient oper privs"))
  1319. return false
  1320. }
  1321. currentArg := 0
  1322. // if they say LIST, we just list the current klines
  1323. if len(msg.Params) == currentArg+1 && strings.ToLower(msg.Params[currentArg]) == "list" {
  1324. bans := server.klines.AllBans()
  1325. if len(bans) == 0 {
  1326. client.Notice("No KLINEs have been set!")
  1327. }
  1328. for key, info := range bans {
  1329. client.Notice(formatBanForListing(client, key, info))
  1330. }
  1331. return false
  1332. }
  1333. // when setting a ban, if they say "ANDKILL" we should also kill all users who match it
  1334. var andKill bool
  1335. if len(msg.Params) > currentArg+1 && strings.ToLower(msg.Params[currentArg]) == "andkill" {
  1336. andKill = true
  1337. currentArg++
  1338. }
  1339. // when setting a ban that covers the oper's current connection, we require them to say
  1340. // "KLINE MYSELF" so that we're sure they really mean it.
  1341. var klineMyself bool
  1342. if len(msg.Params) > currentArg+1 && strings.ToLower(msg.Params[currentArg]) == "myself" {
  1343. klineMyself = true
  1344. currentArg++
  1345. }
  1346. // duration
  1347. duration, err := custime.ParseDuration(msg.Params[currentArg])
  1348. if err != nil {
  1349. duration = 0
  1350. } else {
  1351. currentArg++
  1352. }
  1353. // get mask
  1354. if len(msg.Params) < currentArg+1 {
  1355. rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, details.nick, msg.Command, client.t("Not enough parameters"))
  1356. return false
  1357. }
  1358. mask := msg.Params[currentArg]
  1359. currentArg++
  1360. // check mask
  1361. mask, err = CanonicalizeMaskWildcard(mask)
  1362. if err != nil {
  1363. rb.Add(nil, server.name, ERR_UNKNOWNERROR, details.nick, msg.Command, client.t("Erroneous nickname"))
  1364. return false
  1365. }
  1366. matcher, err := utils.CompileGlob(mask, false)
  1367. if err != nil {
  1368. rb.Add(nil, server.name, ERR_UNKNOWNERROR, details.nick, msg.Command, client.t("Erroneous nickname"))
  1369. return false
  1370. }
  1371. for _, clientMask := range client.AllNickmasks() {
  1372. if !klineMyself && matcher.MatchString(clientMask) {
  1373. rb.Add(nil, server.name, ERR_UNKNOWNERROR, details.nick, msg.Command, client.t("This ban matches you. To KLINE yourself, you must use the command: /KLINE MYSELF <arguments>"))
  1374. return false
  1375. }
  1376. }
  1377. // check remote
  1378. if len(msg.Params) > currentArg && msg.Params[currentArg] == "ON" {
  1379. rb.Add(nil, server.name, ERR_UNKNOWNERROR, details.nick, msg.Command, client.t("Remote servers not yet supported"))
  1380. return false
  1381. }
  1382. // get oper name
  1383. operName := oper.Name
  1384. if operName == "" {
  1385. operName = server.name
  1386. }
  1387. // get comment(s)
  1388. reason, operReason := getReasonsFromParams(msg.Params, currentArg)
  1389. err = server.klines.AddMask(mask, duration, reason, operReason, operName)
  1390. if err != nil {
  1391. rb.Notice(fmt.Sprintf(client.t("Could not successfully save new K-LINE: %s"), err.Error()))
  1392. return false
  1393. }
  1394. var snoDescription string
  1395. if duration != 0 {
  1396. rb.Notice(fmt.Sprintf(client.t("Added temporary (%[1]s) K-Line for %[2]s"), duration.String(), mask))
  1397. snoDescription = fmt.Sprintf(ircfmt.Unescape("%s [%s]$r added temporary (%s) K-Line for %s"), details.nick, operName, duration.String(), mask)
  1398. } else {
  1399. rb.Notice(fmt.Sprintf(client.t("Added K-Line for %s"), mask))
  1400. snoDescription = fmt.Sprintf(ircfmt.Unescape("%s [%s]$r added K-Line for %s"), details.nick, operName, mask)
  1401. }
  1402. server.snomasks.Send(sno.LocalXline, snoDescription)
  1403. var killClient bool
  1404. if andKill {
  1405. var clientsToKill []*Client
  1406. var killedClientNicks []string
  1407. for _, mcl := range server.clients.AllClients() {
  1408. for _, clientMask := range mcl.AllNickmasks() {
  1409. if matcher.MatchString(clientMask) {
  1410. clientsToKill = append(clientsToKill, mcl)
  1411. killedClientNicks = append(killedClientNicks, mcl.nick)
  1412. break
  1413. }
  1414. }
  1415. }
  1416. for _, mcl := range clientsToKill {
  1417. mcl.Quit(fmt.Sprintf(mcl.t("You have been banned from this server (%s)"), reason), nil)
  1418. if mcl == client {
  1419. killClient = true
  1420. } else {
  1421. // if mcl == client, we kill them below
  1422. mcl.destroy(nil)
  1423. }
  1424. }
  1425. // send snomask
  1426. sort.Strings(killedClientNicks)
  1427. server.snomasks.Send(sno.LocalKills, fmt.Sprintf(ircfmt.Unescape("%s [%s] killed %d clients with a KLINE $c[grey][$r%s$c[grey]]"), details.nick, operName, len(killedClientNicks), strings.Join(killedClientNicks, ", ")))
  1428. }
  1429. return killClient
  1430. }
  1431. // LANGUAGE <code>{ <code>}
  1432. func languageHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1433. nick := client.Nick()
  1434. alreadyDoneLanguages := make(map[string]bool)
  1435. var appliedLanguages []string
  1436. lm := server.Languages()
  1437. supportedLanguagesCount := lm.Count()
  1438. if supportedLanguagesCount < len(msg.Params) {
  1439. rb.Add(nil, client.server.name, ERR_TOOMANYLANGUAGES, nick, strconv.Itoa(supportedLanguagesCount), client.t("You specified too many languages"))
  1440. return false
  1441. }
  1442. for _, value := range msg.Params {
  1443. value = strings.ToLower(value)
  1444. // strip ~ from the language if it has it
  1445. value = strings.TrimPrefix(value, "~")
  1446. // silently ignore empty languages or those with spaces in them
  1447. if len(value) == 0 || strings.Contains(value, " ") {
  1448. continue
  1449. }
  1450. _, exists := lm.Languages[value]
  1451. if !exists {
  1452. rb.Add(nil, client.server.name, ERR_NOLANGUAGE, nick, fmt.Sprintf(client.t("Language %s is not supported by this server"), value))
  1453. return false
  1454. }
  1455. // if we've already applied the given language, skip it
  1456. _, exists = alreadyDoneLanguages[value]
  1457. if exists {
  1458. continue
  1459. }
  1460. appliedLanguages = append(appliedLanguages, value)
  1461. }
  1462. var langsToSet []string
  1463. if !(len(appliedLanguages) == 1 && appliedLanguages[0] == "en") {
  1464. langsToSet = appliedLanguages
  1465. }
  1466. client.SetLanguages(langsToSet)
  1467. params := make([]string, len(appliedLanguages)+2)
  1468. params[0] = nick
  1469. copy(params[1:], appliedLanguages)
  1470. params[len(params)-1] = client.t("Language preferences have been set")
  1471. rb.Add(nil, client.server.name, RPL_YOURLANGUAGESARE, params...)
  1472. return false
  1473. }
  1474. // LIST [<channel>{,<channel>}] [<elistcond>{,<elistcond>}]
  1475. func listHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1476. config := server.Config()
  1477. if time.Since(client.ctime) < config.Channels.ListDelay && client.Account() == "" && !client.HasMode(modes.Operator) {
  1478. remaining := time.Until(client.ctime.Add(config.Channels.ListDelay))
  1479. rb.Notice(fmt.Sprintf(client.t("This server requires that you wait %v after connecting before you can use /LIST. You have %v left."), config.Channels.ListDelay, remaining.Round(time.Millisecond)))
  1480. rb.Add(nil, server.name, RPL_LISTEND, client.Nick(), client.t("End of LIST"))
  1481. return false
  1482. }
  1483. // get channels
  1484. var channels []string
  1485. for _, param := range msg.Params {
  1486. if 0 < len(param) && param[0] == '#' {
  1487. for _, channame := range strings.Split(param, ",") {
  1488. if 0 < len(channame) && channame[0] == '#' {
  1489. channels = append(channels, channame)
  1490. }
  1491. }
  1492. }
  1493. }
  1494. // get elist conditions
  1495. var matcher elistMatcher
  1496. for _, param := range msg.Params {
  1497. if len(param) < 1 {
  1498. continue
  1499. }
  1500. if param[0] == '<' {
  1501. param = param[1:]
  1502. val, err := strconv.Atoi(param)
  1503. if err != nil {
  1504. continue
  1505. }
  1506. matcher.MaxClientsActive = true
  1507. matcher.MaxClients = val - 1 // -1 because < means less than the given number
  1508. }
  1509. if param[0] == '>' {
  1510. param = param[1:]
  1511. val, err := strconv.Atoi(param)
  1512. if err != nil {
  1513. continue
  1514. }
  1515. matcher.MinClientsActive = true
  1516. matcher.MinClients = val + 1 // +1 because > means more than the given number
  1517. }
  1518. }
  1519. nick := client.Nick()
  1520. rplList := func(channel *Channel) {
  1521. members, name, topic := channel.listData()
  1522. rb.Add(nil, client.server.name, RPL_LIST, nick, name, strconv.Itoa(members), topic)
  1523. }
  1524. clientIsOp := client.HasRoleCapabs("sajoin")
  1525. if len(channels) == 0 {
  1526. for _, channel := range server.channels.ListableChannels() {
  1527. if !clientIsOp && channel.flags.HasMode(modes.Secret) && !channel.hasClient(client) {
  1528. continue
  1529. }
  1530. if matcher.Matches(channel) {
  1531. rplList(channel)
  1532. }
  1533. }
  1534. } else {
  1535. // limit regular users to only listing one channel
  1536. if !clientIsOp {
  1537. channels = channels[:1]
  1538. }
  1539. for _, chname := range channels {
  1540. channel := server.channels.Get(chname)
  1541. if channel == nil || (!clientIsOp && channel.flags.HasMode(modes.Secret) && !channel.hasClient(client)) {
  1542. continue
  1543. }
  1544. if matcher.Matches(channel) {
  1545. rplList(channel)
  1546. }
  1547. }
  1548. }
  1549. rb.Add(nil, server.name, RPL_LISTEND, client.nick, client.t("End of LIST"))
  1550. return false
  1551. }
  1552. // LUSERS [<mask> [<server>]]
  1553. func lusersHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1554. server.Lusers(client, rb)
  1555. return false
  1556. }
  1557. // MODE <target> [<modestring> [<mode arguments>...]]
  1558. func modeHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1559. if 0 < len(msg.Params[0]) && msg.Params[0][0] == '#' {
  1560. return cmodeHandler(server, client, msg, rb)
  1561. }
  1562. return umodeHandler(server, client, msg, rb)
  1563. }
  1564. // MODE <channel> [<modestring> [<mode arguments>...]]
  1565. func cmodeHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1566. channel := server.channels.Get(msg.Params[0])
  1567. if channel == nil {
  1568. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.nick, utils.SafeErrorParam(msg.Params[0]), client.t("No such channel"))
  1569. return false
  1570. }
  1571. var changes modes.ModeChanges
  1572. if 1 < len(msg.Params) {
  1573. // parse out real mode changes
  1574. params := msg.Params[1:]
  1575. var unknown map[rune]bool
  1576. changes, unknown = modes.ParseChannelModeChanges(params...)
  1577. // alert for unknown mode changes
  1578. for char := range unknown {
  1579. rb.Add(nil, server.name, ERR_UNKNOWNMODE, client.nick, string(char), client.t("is an unknown mode character to me"))
  1580. }
  1581. if len(unknown) == 1 && len(changes) == 0 {
  1582. return false
  1583. }
  1584. }
  1585. isSamode := msg.Command == "SAMODE"
  1586. if isSamode {
  1587. message := fmt.Sprintf("Operator %s ran SAMODE %s", client.Oper().Name, strings.Join(msg.Params, " "))
  1588. server.snomasks.Send(sno.LocalOpers, message)
  1589. server.logger.Info("opers", message)
  1590. }
  1591. // process mode changes, include list operations (an empty set of changes does a list)
  1592. applied := channel.ApplyChannelModeChanges(client, isSamode, changes, rb)
  1593. details := client.Details()
  1594. isBot := client.HasMode(modes.Bot)
  1595. announceCmodeChanges(channel, applied, details.nickMask, details.accountName, details.account, isBot, rb)
  1596. return false
  1597. }
  1598. func announceCmodeChanges(channel *Channel, applied modes.ModeChanges, source, accountName, account string, isBot bool, rb *ResponseBuffer) {
  1599. // send out changes
  1600. if len(applied) > 0 {
  1601. message := utils.MakeMessage("")
  1602. changeStrings := applied.Strings()
  1603. for _, changeString := range changeStrings {
  1604. message.Split = append(message.Split, utils.MessagePair{Message: changeString})
  1605. }
  1606. args := append([]string{channel.name}, changeStrings...)
  1607. rb.AddFromClient(message.Time, message.Msgid, source, accountName, isBot, nil, "MODE", args...)
  1608. for _, member := range channel.Members() {
  1609. for _, session := range member.Sessions() {
  1610. if session != rb.session {
  1611. session.sendFromClientInternal(false, message.Time, message.Msgid, source, accountName, isBot, nil, "MODE", args...)
  1612. }
  1613. }
  1614. }
  1615. channel.AddHistoryItem(history.Item{
  1616. Type: history.Mode,
  1617. Nick: source,
  1618. AccountName: accountName,
  1619. Message: message,
  1620. IsBot: isBot,
  1621. }, account)
  1622. }
  1623. }
  1624. // MODE <client> [<modestring> [<mode arguments>...]]
  1625. func umodeHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1626. cDetails := client.Details()
  1627. target := server.clients.Get(msg.Params[0])
  1628. if target == nil {
  1629. rb.Add(nil, server.name, ERR_NOSUCHNICK, cDetails.nick, utils.SafeErrorParam(msg.Params[0]), client.t("No such nick"))
  1630. return false
  1631. }
  1632. targetNick := target.Nick()
  1633. hasPrivs := client == target || msg.Command == "SAMODE"
  1634. if !hasPrivs {
  1635. if len(msg.Params) > 1 {
  1636. rb.Add(nil, server.name, ERR_USERSDONTMATCH, cDetails.nick, client.t("Can't change modes for other users"))
  1637. } else {
  1638. rb.Add(nil, server.name, ERR_USERSDONTMATCH, cDetails.nick, client.t("Can't view modes for other users"))
  1639. }
  1640. return false
  1641. }
  1642. if msg.Command == "SAMODE" {
  1643. message := fmt.Sprintf("Operator %s ran SAMODE %s", client.Oper().Name, strings.Join(msg.Params, " "))
  1644. server.snomasks.Send(sno.LocalOpers, message)
  1645. server.logger.Info("opers", message)
  1646. }
  1647. // applied mode changes
  1648. applied := make(modes.ModeChanges, 0)
  1649. if 1 < len(msg.Params) {
  1650. // parse out real mode changes
  1651. params := msg.Params[1:]
  1652. changes, unknown := modes.ParseUserModeChanges(params...)
  1653. // alert for unknown mode changes
  1654. for char := range unknown {
  1655. rb.Add(nil, server.name, ERR_UNKNOWNMODE, cDetails.nick, string(char), client.t("is an unknown mode character to me"))
  1656. }
  1657. if len(unknown) == 1 && len(changes) == 0 {
  1658. return false
  1659. }
  1660. // apply mode changes
  1661. applied = ApplyUserModeChanges(target, changes, msg.Command == "SAMODE", nil)
  1662. }
  1663. if len(applied) > 0 {
  1664. args := append([]string{targetNick}, applied.Strings()...)
  1665. rb.Add(nil, cDetails.nickMask, "MODE", args...)
  1666. } else if hasPrivs {
  1667. rb.Add(nil, server.name, RPL_UMODEIS, targetNick, target.ModeString())
  1668. if target.HasMode(modes.Operator) {
  1669. masks := server.snomasks.String(target)
  1670. if 0 < len(masks) {
  1671. rb.Add(nil, server.name, RPL_SNOMASKIS, targetNick, masks, client.t("Server notice masks"))
  1672. }
  1673. }
  1674. }
  1675. return false
  1676. }
  1677. // get the correct capitalization of a nick (if it's online), otherwise return ""
  1678. func (server *Server) getCurrentNick(nick string) (result string) {
  1679. if service, isService := ErgoServices[strings.ToLower(nick)]; isService {
  1680. return service.Name
  1681. } else if iclient := server.clients.Get(nick); iclient != nil {
  1682. return iclient.Nick()
  1683. }
  1684. return ""
  1685. }
  1686. // MONITOR <subcmd> [params...]
  1687. func monitorHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1688. handler, exists := monitorSubcommands[strings.ToLower(msg.Params[0])]
  1689. if !exists {
  1690. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.Nick(), "MONITOR", msg.Params[0], client.t("Unknown subcommand"))
  1691. return false
  1692. }
  1693. return handler(server, client, msg, rb)
  1694. }
  1695. // MONITOR - <target>{,<target>}
  1696. func monitorRemoveHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1697. if len(msg.Params) < 2 {
  1698. rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), msg.Command, client.t("Not enough parameters"))
  1699. return false
  1700. }
  1701. targets := strings.Split(msg.Params[1], ",")
  1702. for _, target := range targets {
  1703. server.monitorManager.Remove(rb.session, target)
  1704. }
  1705. return false
  1706. }
  1707. // MONITOR + <target>{,<target>}
  1708. func monitorAddHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1709. if len(msg.Params) < 2 {
  1710. rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), msg.Command, client.t("Not enough parameters"))
  1711. return false
  1712. }
  1713. var online []string
  1714. var offline []string
  1715. limits := server.Config().Limits
  1716. targets := strings.Split(msg.Params[1], ",")
  1717. for _, target := range targets {
  1718. // check name length
  1719. if len(target) < 1 || len(targets) > limits.NickLen {
  1720. continue
  1721. }
  1722. // add target
  1723. err := server.monitorManager.Add(rb.session, target, limits.MonitorEntries)
  1724. if err == errMonitorLimitExceeded {
  1725. rb.Add(nil, server.name, ERR_MONLISTFULL, client.Nick(), strconv.Itoa(limits.MonitorEntries), strings.Join(targets, ","))
  1726. break
  1727. } else if err != nil {
  1728. continue
  1729. }
  1730. currentNick := server.getCurrentNick(target)
  1731. // add to online / offline lists
  1732. if currentNick != "" {
  1733. online = append(online, currentNick)
  1734. } else {
  1735. offline = append(offline, target)
  1736. }
  1737. }
  1738. if len(online) > 0 {
  1739. rb.Add(nil, server.name, RPL_MONONLINE, client.Nick(), strings.Join(online, ","))
  1740. }
  1741. if len(offline) > 0 {
  1742. rb.Add(nil, server.name, RPL_MONOFFLINE, client.Nick(), strings.Join(offline, ","))
  1743. }
  1744. return false
  1745. }
  1746. // MONITOR C
  1747. func monitorClearHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1748. server.monitorManager.RemoveAll(rb.session)
  1749. return false
  1750. }
  1751. // MONITOR L
  1752. func monitorListHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1753. nick := client.Nick()
  1754. monitorList := server.monitorManager.List(rb.session)
  1755. var nickList []string
  1756. for _, cfnick := range monitorList {
  1757. replynick := cfnick
  1758. currentNick := server.getCurrentNick(cfnick)
  1759. // report the uncasefolded nick if it's available, i.e., the client is online
  1760. if currentNick != "" {
  1761. replynick = currentNick
  1762. }
  1763. nickList = append(nickList, replynick)
  1764. }
  1765. for _, line := range utils.BuildTokenLines(maxLastArgLength, nickList, ",") {
  1766. rb.Add(nil, server.name, RPL_MONLIST, nick, line)
  1767. }
  1768. rb.Add(nil, server.name, RPL_ENDOFMONLIST, nick, "End of MONITOR list")
  1769. return false
  1770. }
  1771. // MONITOR S
  1772. func monitorStatusHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1773. var online []string
  1774. var offline []string
  1775. monitorList := server.monitorManager.List(rb.session)
  1776. for _, name := range monitorList {
  1777. currentNick := server.getCurrentNick(name)
  1778. if currentNick != "" {
  1779. online = append(online, currentNick)
  1780. } else {
  1781. offline = append(offline, name)
  1782. }
  1783. }
  1784. if len(online) > 0 {
  1785. for _, line := range utils.BuildTokenLines(maxLastArgLength, online, ",") {
  1786. rb.Add(nil, server.name, RPL_MONONLINE, client.Nick(), line)
  1787. }
  1788. }
  1789. if len(offline) > 0 {
  1790. for _, line := range utils.BuildTokenLines(maxLastArgLength, offline, ",") {
  1791. rb.Add(nil, server.name, RPL_MONOFFLINE, client.Nick(), line)
  1792. }
  1793. }
  1794. return false
  1795. }
  1796. // MOTD
  1797. func motdHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1798. server.MOTD(client, rb)
  1799. return false
  1800. }
  1801. // NAMES [<channel>{,<channel>} [target]]
  1802. func namesHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1803. var channels []string
  1804. if len(msg.Params) > 0 {
  1805. channels = strings.Split(msg.Params[0], ",")
  1806. }
  1807. // implement the modern behavior: https://modern.ircdocs.horse/#names-message
  1808. // "Servers MAY only return information about the first <channel> and silently ignore the others."
  1809. // "If no parameter is given for this command, servers SHOULD return one RPL_ENDOFNAMES numeric
  1810. // with the <channel> parameter set to an asterix character"
  1811. if len(channels) == 0 {
  1812. rb.Add(nil, server.name, RPL_ENDOFNAMES, client.Nick(), "*", client.t("End of NAMES list"))
  1813. return false
  1814. }
  1815. chname := channels[0]
  1816. success := false
  1817. channel := server.channels.Get(chname)
  1818. if channel != nil {
  1819. if !channel.flags.HasMode(modes.Secret) || channel.hasClient(client) || client.HasRoleCapabs("sajoin") {
  1820. channel.Names(client, rb)
  1821. success = true
  1822. }
  1823. }
  1824. if !success { // channel.Names() sends this numeric itself on success
  1825. rb.Add(nil, server.name, RPL_ENDOFNAMES, client.Nick(), chname, client.t("End of NAMES list"))
  1826. }
  1827. return false
  1828. }
  1829. // NICK <nickname>
  1830. func nickHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1831. newNick := msg.Params[0]
  1832. if client.registered {
  1833. if client.account == "" && server.Config().Accounts.NickReservation.ForbidAnonNickChanges {
  1834. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.Nick(), client.t("You may not change your nickname"))
  1835. return false
  1836. }
  1837. performNickChange(server, client, client, nil, newNick, rb)
  1838. } else {
  1839. if newNick == "" {
  1840. // #1933: this would leave (*Client).preregNick at its zero value of "",
  1841. // which is the same condition as NICK not having been sent yet ---
  1842. // so we need to send an error immediately
  1843. rb.Add(nil, server.name, ERR_NONICKNAMEGIVEN, "*", client.t("No nickname given"))
  1844. return false
  1845. }
  1846. client.preregNick = newNick
  1847. }
  1848. return false
  1849. }
  1850. // check whether a PRIVMSG or NOTICE is too long to be relayed without truncation
  1851. func validateLineLen(msgType history.ItemType, source, target, payload string) (ok bool) {
  1852. // :source PRIVMSG #target :payload\r\n
  1853. // 1: initial colon on prefix
  1854. // 1: space between prefix and command
  1855. // 1: space between command and target (first parameter)
  1856. // 1: space between target and payload (second parameter)
  1857. // 1: colon to send the payload as a trailing (we force trailing for PRIVMSG and NOTICE)
  1858. // 2: final \r\n
  1859. limit := MaxLineLen - 7
  1860. limit -= len(source)
  1861. switch msgType {
  1862. case history.Privmsg:
  1863. limit -= 7
  1864. case history.Notice:
  1865. limit -= 6
  1866. default:
  1867. return true
  1868. }
  1869. limit -= len(payload)
  1870. return limit >= 0
  1871. }
  1872. // check validateLineLen for an entire SplitMessage (which may consist of multiple lines)
  1873. func validateSplitMessageLen(msgType history.ItemType, source, target string, message utils.SplitMessage) (ok bool) {
  1874. if message.Is512() {
  1875. return validateLineLen(msgType, source, target, message.Message)
  1876. } else {
  1877. for _, messagePair := range message.Split {
  1878. if !validateLineLen(msgType, source, target, messagePair.Message) {
  1879. return false
  1880. }
  1881. }
  1882. return true
  1883. }
  1884. }
  1885. // helper to store a batched PRIVMSG in the session object
  1886. func absorbBatchedMessage(server *Server, client *Client, msg ircmsg.Message, batchTag string, histType history.ItemType, rb *ResponseBuffer) {
  1887. var errorCode, errorMessage string
  1888. defer func() {
  1889. if errorCode != "" {
  1890. if histType != history.Notice {
  1891. rb.Add(nil, server.name, "FAIL", "BATCH", errorCode, errorMessage)
  1892. }
  1893. rb.session.EndMultilineBatch("")
  1894. }
  1895. }()
  1896. if batchTag != rb.session.batch.label {
  1897. errorCode, errorMessage = "MULTILINE_INVALID", client.t("Incorrect batch tag sent")
  1898. return
  1899. } else if len(msg.Params) < 2 {
  1900. errorCode, errorMessage = "MULTILINE_INVALID", client.t("Invalid multiline batch")
  1901. return
  1902. }
  1903. rb.session.batch.command = msg.Command
  1904. isConcat, _ := msg.GetTag(caps.MultilineConcatTag)
  1905. if isConcat && len(msg.Params[1]) == 0 {
  1906. errorCode, errorMessage = "MULTILINE_INVALID", client.t("Cannot send a blank line with the multiline concat tag")
  1907. return
  1908. }
  1909. if !isConcat && len(rb.session.batch.message.Split) != 0 {
  1910. rb.session.batch.lenBytes++ // bill for the newline
  1911. }
  1912. rb.session.batch.message.Append(msg.Params[1], isConcat)
  1913. rb.session.batch.lenBytes += len(msg.Params[1])
  1914. config := server.Config()
  1915. if config.Limits.Multiline.MaxBytes < rb.session.batch.lenBytes {
  1916. errorCode, errorMessage = "MULTILINE_MAX_BYTES", strconv.Itoa(config.Limits.Multiline.MaxBytes)
  1917. } else if config.Limits.Multiline.MaxLines != 0 && config.Limits.Multiline.MaxLines < rb.session.batch.message.LenLines() {
  1918. errorCode, errorMessage = "MULTILINE_MAX_LINES", strconv.Itoa(config.Limits.Multiline.MaxLines)
  1919. }
  1920. }
  1921. // NOTICE <target>{,<target>} <message>
  1922. // PRIVMSG <target>{,<target>} <message>
  1923. // TAGMSG <target>{,<target>}
  1924. func messageHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  1925. histType, err := msgCommandToHistType(msg.Command)
  1926. if err != nil {
  1927. return false
  1928. }
  1929. if isBatched, batchTag := msg.GetTag("batch"); isBatched {
  1930. absorbBatchedMessage(server, client, msg, batchTag, histType, rb)
  1931. return false
  1932. }
  1933. clientOnlyTags := msg.ClientOnlyTags()
  1934. if histType == history.Tagmsg && len(clientOnlyTags) == 0 {
  1935. // nothing to do
  1936. return false
  1937. }
  1938. targets := strings.Split(msg.Params[0], ",")
  1939. var message string
  1940. if len(msg.Params) > 1 {
  1941. message = msg.Params[1]
  1942. }
  1943. if histType != history.Tagmsg && message == "" {
  1944. rb.Add(nil, server.name, ERR_NOTEXTTOSEND, client.Nick(), client.t("No text to send"))
  1945. return false
  1946. }
  1947. isCTCP := utils.IsRestrictedCTCPMessage(message)
  1948. if histType == history.Privmsg && !isCTCP {
  1949. client.UpdateActive(rb.session)
  1950. }
  1951. if rb.session.isTor && isCTCP {
  1952. // note that error replies are never sent for NOTICE
  1953. if histType != history.Notice {
  1954. rb.Notice(client.t("CTCP messages are disabled over Tor"))
  1955. }
  1956. return false
  1957. }
  1958. for i, targetString := range targets {
  1959. // max of four targets per privmsg
  1960. if i == maxTargets {
  1961. break
  1962. }
  1963. config := server.Config()
  1964. if config.isRelaymsgIdentifier(targetString) {
  1965. if histType == history.Privmsg {
  1966. rb.Add(nil, server.name, ERR_NOSUCHNICK, client.Nick(), targetString, client.t("Relayed users cannot receive private messages"))
  1967. }
  1968. // TAGMSG/NOTICEs are intentionally silently dropped
  1969. continue
  1970. }
  1971. // each target gets distinct msgids
  1972. splitMsg := utils.MakeMessage(message)
  1973. dispatchMessageToTarget(client, clientOnlyTags, histType, msg.Command, targetString, splitMsg, rb)
  1974. }
  1975. return false
  1976. }
  1977. func dispatchMessageToTarget(client *Client, tags map[string]string, histType history.ItemType, command, target string, message utils.SplitMessage, rb *ResponseBuffer) {
  1978. server := client.server
  1979. prefixes, target := modes.SplitChannelMembershipPrefixes(target)
  1980. lowestPrefix := modes.GetLowestChannelModePrefix(prefixes)
  1981. if len(target) == 0 {
  1982. return
  1983. } else if target[0] == '#' {
  1984. channel := server.channels.Get(target)
  1985. if channel == nil {
  1986. if histType != history.Notice {
  1987. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(target), client.t("No such channel"))
  1988. }
  1989. return
  1990. }
  1991. channel.SendSplitMessage(command, lowestPrefix, tags, client, message, rb)
  1992. } else if target[0] == '$' && len(target) > 2 && client.Oper().HasRoleCapab("massmessage") {
  1993. details := client.Details()
  1994. matcher, err := utils.CompileGlob(target[2:], false)
  1995. if err != nil {
  1996. rb.Add(nil, server.name, ERR_UNKNOWNERROR, details.nick, command, client.t("Erroneous target"))
  1997. return
  1998. }
  1999. nickMaskString := details.nickMask
  2000. accountName := details.accountName
  2001. isBot := client.HasMode(modes.Bot)
  2002. for _, tClient := range server.clients.AllClients() {
  2003. if (target[1] == '$' && matcher.MatchString(tClient.server.name)) || // $$servername
  2004. (target[1] == '#' && matcher.MatchString(tClient.Hostname())) { // $#hostname
  2005. tnick := tClient.Nick()
  2006. for _, session := range tClient.Sessions() {
  2007. session.sendSplitMsgFromClientInternal(false, nickMaskString, accountName, isBot, nil, command, tnick, message)
  2008. }
  2009. }
  2010. }
  2011. } else {
  2012. lowercaseTarget := strings.ToLower(target)
  2013. service, isService := ErgoServices[lowercaseTarget]
  2014. _, isZNC := zncHandlers[lowercaseTarget]
  2015. if isService || isZNC {
  2016. details := client.Details()
  2017. rb.addEchoMessage(tags, details.nickMask, details.accountName, command, target, message)
  2018. if histType != history.Privmsg {
  2019. return // NOTICE and TAGMSG to services are ignored
  2020. }
  2021. if isService {
  2022. servicePrivmsgHandler(service, server, client, message.Message, rb)
  2023. } else if isZNC {
  2024. zncPrivmsgHandler(client, lowercaseTarget, message.Message, rb)
  2025. }
  2026. return
  2027. }
  2028. user := server.clients.Get(target)
  2029. if user == nil {
  2030. if histType != history.Notice {
  2031. rb.Add(nil, server.name, ERR_NOSUCHNICK, client.Nick(), target, "No such nick")
  2032. }
  2033. return
  2034. }
  2035. // Restrict CTCP message for target user with +T
  2036. if user.modes.HasMode(modes.UserNoCTCP) && message.IsRestrictedCTCPMessage() {
  2037. return
  2038. }
  2039. tDetails := user.Details()
  2040. tnick := tDetails.nick
  2041. details := client.Details()
  2042. if details.account == "" && server.Defcon() <= 3 {
  2043. rb.Add(nil, server.name, ERR_NEEDREGGEDNICK, client.Nick(), tnick, client.t("Direct messages from unregistered users are temporarily restricted"))
  2044. return
  2045. }
  2046. // restrict messages appropriately when +R is set
  2047. if details.account == "" && user.HasMode(modes.RegisteredOnly) && !server.accepts.MaySendTo(client, user) {
  2048. rb.Add(nil, server.name, ERR_NEEDREGGEDNICK, client.Nick(), tnick, client.t("You must be registered to send a direct message to this user"))
  2049. return
  2050. }
  2051. if client.HasMode(modes.RegisteredOnly) && tDetails.account == "" {
  2052. // #1688: auto-ACCEPT on DM
  2053. server.accepts.Accept(client, user)
  2054. }
  2055. if !client.server.Config().Server.Compatibility.allowTruncation {
  2056. if !validateSplitMessageLen(histType, client.NickMaskString(), tnick, message) {
  2057. rb.Add(nil, server.name, ERR_INPUTTOOLONG, client.Nick(), client.t("Line too long to be relayed without truncation"))
  2058. return
  2059. }
  2060. }
  2061. nickMaskString := details.nickMask
  2062. accountName := details.accountName
  2063. var deliverySessions []*Session
  2064. deliverySessions = append(deliverySessions, user.Sessions()...)
  2065. // all sessions of the sender, except the originating session, get a copy as well:
  2066. if client != user {
  2067. for _, session := range client.Sessions() {
  2068. if session != rb.session {
  2069. deliverySessions = append(deliverySessions, session)
  2070. }
  2071. }
  2072. }
  2073. isBot := client.HasMode(modes.Bot)
  2074. for _, session := range deliverySessions {
  2075. hasTagsCap := session.capabilities.Has(caps.MessageTags)
  2076. // don't send TAGMSG at all if they don't have the tags cap
  2077. if histType == history.Tagmsg && hasTagsCap {
  2078. session.sendFromClientInternal(false, message.Time, message.Msgid, nickMaskString, accountName, isBot, tags, command, tnick)
  2079. } else if histType != history.Tagmsg && !(session.isTor && message.IsRestrictedCTCPMessage()) {
  2080. tagsToSend := tags
  2081. if !hasTagsCap {
  2082. tagsToSend = nil
  2083. }
  2084. session.sendSplitMsgFromClientInternal(false, nickMaskString, accountName, isBot, tagsToSend, command, tnick, message)
  2085. }
  2086. }
  2087. // the originating session may get an echo message:
  2088. rb.addEchoMessage(tags, nickMaskString, accountName, command, tnick, message)
  2089. if histType == history.Privmsg {
  2090. //TODO(dan): possibly implement cooldown of away notifications to users
  2091. if away, awayMessage := user.Away(); away {
  2092. rb.Add(nil, server.name, RPL_AWAY, client.Nick(), tnick, awayMessage)
  2093. }
  2094. }
  2095. config := server.Config()
  2096. if !config.History.Enabled {
  2097. return
  2098. }
  2099. item := history.Item{
  2100. Type: histType,
  2101. Message: message,
  2102. Tags: tags,
  2103. }
  2104. client.addHistoryItem(user, item, &details, &tDetails, config)
  2105. }
  2106. }
  2107. func itemIsStorable(item *history.Item, config *Config) bool {
  2108. switch item.Type {
  2109. case history.Tagmsg:
  2110. if config.History.TagmsgStorage.Default {
  2111. for _, blacklistedTag := range config.History.TagmsgStorage.Blacklist {
  2112. if _, ok := item.Tags[blacklistedTag]; ok {
  2113. return false
  2114. }
  2115. }
  2116. return true
  2117. } else {
  2118. for _, whitelistedTag := range config.History.TagmsgStorage.Whitelist {
  2119. if _, ok := item.Tags[whitelistedTag]; ok {
  2120. return true
  2121. }
  2122. }
  2123. return false
  2124. }
  2125. case history.Privmsg, history.Notice:
  2126. // don't store CTCP other than ACTION
  2127. return !item.Message.IsRestrictedCTCPMessage()
  2128. default:
  2129. return true
  2130. }
  2131. }
  2132. // NPC <target> <sourcenick> <message>
  2133. func npcHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2134. target := msg.Params[0]
  2135. fakeSource := msg.Params[1]
  2136. message := msg.Params[2:]
  2137. sendRoleplayMessage(server, client, fakeSource, target, false, false, message, rb)
  2138. return false
  2139. }
  2140. // NPCA <target> <sourcenick> <message>
  2141. func npcaHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2142. target := msg.Params[0]
  2143. fakeSource := msg.Params[1]
  2144. message := msg.Params[2:]
  2145. sendRoleplayMessage(server, client, fakeSource, target, false, true, message, rb)
  2146. return false
  2147. }
  2148. // OPER <name> [password]
  2149. func operHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2150. if client.HasMode(modes.Operator) {
  2151. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.Nick(), "OPER", client.t("You're already opered-up!"))
  2152. return false
  2153. }
  2154. // must pass at least one check, and all enabled checks
  2155. var checkPassed, checkFailed, passwordFailed bool
  2156. oper := server.GetOperator(msg.Params[0])
  2157. if oper != nil {
  2158. if oper.Certfp != "" {
  2159. if oper.Certfp == rb.session.certfp {
  2160. checkPassed = true
  2161. } else {
  2162. checkFailed = true
  2163. }
  2164. }
  2165. if !checkFailed && oper.Pass != nil {
  2166. if len(msg.Params) == 1 {
  2167. checkFailed = true
  2168. } else if bcrypt.CompareHashAndPassword(oper.Pass, []byte(msg.Params[1])) != nil {
  2169. checkFailed = true
  2170. passwordFailed = true
  2171. } else {
  2172. checkPassed = true
  2173. }
  2174. }
  2175. }
  2176. if !checkPassed || checkFailed {
  2177. rb.Add(nil, server.name, ERR_PASSWDMISMATCH, client.Nick(), client.t("Password incorrect"))
  2178. // #951: only disconnect them if we actually tried to check a password for them
  2179. if passwordFailed {
  2180. client.Quit(client.t("Password incorrect"), rb.session)
  2181. return true
  2182. } else {
  2183. return false
  2184. }
  2185. }
  2186. if oper != nil {
  2187. applyOper(client, oper, rb)
  2188. }
  2189. return false
  2190. }
  2191. // adds or removes operator status
  2192. // XXX: to add oper, this calls into ApplyUserModeChanges, but to remove oper,
  2193. // ApplyUserModeChanges calls into this, because the commands are asymmetric
  2194. // (/OPER to add, /MODE self -o to remove)
  2195. func applyOper(client *Client, oper *Oper, rb *ResponseBuffer) {
  2196. details := client.Details()
  2197. client.SetOper(oper)
  2198. newDetails := client.Details()
  2199. if details.nickMask != newDetails.nickMask {
  2200. client.sendChghost(details.nickMask, newDetails.hostname)
  2201. }
  2202. if oper != nil {
  2203. // set new modes: modes.Operator, plus anything specified in the config
  2204. modeChanges := make([]modes.ModeChange, len(oper.Modes)+1)
  2205. modeChanges[0] = modes.ModeChange{
  2206. Mode: modes.Operator,
  2207. Op: modes.Add,
  2208. }
  2209. copy(modeChanges[1:], oper.Modes)
  2210. applied := ApplyUserModeChanges(client, modeChanges, true, oper)
  2211. client.server.logger.Info("opers", details.nick, "opered up as", oper.Name)
  2212. client.server.snomasks.Send(sno.LocalOpers, fmt.Sprintf(ircfmt.Unescape("Client opered up $c[grey][$r%s$c[grey], $r%s$c[grey]]"), newDetails.nickMask, oper.Name))
  2213. rb.Broadcast(nil, client.server.name, RPL_YOUREOPER, details.nick, client.t("You are now an IRC operator"))
  2214. args := append([]string{details.nick}, applied.Strings()...)
  2215. rb.Broadcast(nil, client.server.name, "MODE", args...)
  2216. } else {
  2217. client.server.snomasks.Send(sno.LocalOpers, fmt.Sprintf(ircfmt.Unescape("Client deopered $c[grey][$r%s$c[grey]]"), newDetails.nickMask))
  2218. }
  2219. for _, session := range client.Sessions() {
  2220. // client may now be unthrottled by the fakelag system
  2221. session.resetFakelag()
  2222. }
  2223. }
  2224. // DEOPER
  2225. func deoperHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2226. if client.Oper() == nil {
  2227. rb.Notice(client.t("Insufficient oper privs"))
  2228. return false
  2229. }
  2230. // pretend they sent /MODE $nick -o
  2231. fakeModeMsg := ircmsg.MakeMessage(nil, "", "MODE", client.Nick(), "-o")
  2232. return umodeHandler(server, client, fakeModeMsg, rb)
  2233. }
  2234. // PART <channel>{,<channel>} [<reason>]
  2235. func partHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2236. channels := strings.Split(msg.Params[0], ",")
  2237. var reason string
  2238. if len(msg.Params) > 1 {
  2239. reason = msg.Params[1]
  2240. }
  2241. for _, chname := range channels {
  2242. if chname == "" {
  2243. continue // #679
  2244. }
  2245. err := server.channels.Part(client, chname, reason, rb)
  2246. if err == errNoSuchChannel {
  2247. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.nick, utils.SafeErrorParam(chname), client.t("No such channel"))
  2248. }
  2249. }
  2250. return false
  2251. }
  2252. // PASS <password>
  2253. func passHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2254. if client.registered {
  2255. rb.Add(nil, server.name, ERR_ALREADYREGISTRED, client.nick, client.t("You may not reregister"))
  2256. return false
  2257. }
  2258. // only give them one try to run the PASS command (if a server password is set,
  2259. // then all code paths end with this variable being set):
  2260. if rb.session.passStatus != serverPassUnsent {
  2261. return false
  2262. }
  2263. password := msg.Params[0]
  2264. config := server.Config()
  2265. if config.Accounts.LoginViaPassCommand {
  2266. colonIndex := strings.IndexByte(password, ':')
  2267. if colonIndex != -1 && client.Account() == "" {
  2268. account, accountPass := password[:colonIndex], password[colonIndex+1:]
  2269. if strudelIndex := strings.IndexByte(account, '@'); strudelIndex != -1 {
  2270. account, rb.session.deviceID = account[:strudelIndex], account[strudelIndex+1:]
  2271. }
  2272. err := server.accounts.AuthenticateByPassphrase(client, account, accountPass)
  2273. if err == nil {
  2274. sendSuccessfulAccountAuth(nil, client, rb, true)
  2275. // login-via-pass-command entails that we do not need to check
  2276. // an actual server password (either no password or skip-server-password)
  2277. rb.session.passStatus = serverPassSuccessful
  2278. return false
  2279. }
  2280. }
  2281. }
  2282. // if login-via-PASS failed for any reason, proceed to try and interpret the
  2283. // provided password as the server password
  2284. serverPassword := config.Server.passwordBytes
  2285. // if no password exists, skip checking
  2286. if serverPassword == nil {
  2287. return false
  2288. }
  2289. // check the provided password
  2290. if bcrypt.CompareHashAndPassword(serverPassword, []byte(password)) == nil {
  2291. rb.session.passStatus = serverPassSuccessful
  2292. } else {
  2293. rb.session.passStatus = serverPassFailed
  2294. }
  2295. // if they failed the check, we'll bounce them later when they try to complete registration
  2296. // note in particular that with skip-server-password, you can give the wrong server
  2297. // password here, then successfully SASL and be admitted
  2298. return false
  2299. }
  2300. // PERSISTENCE <subcommand> [params...]
  2301. func persistenceHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2302. account := client.Account()
  2303. if account == "" {
  2304. rb.Add(nil, server.name, "FAIL", "PERSISTENCE", "ACCOUNT_REQUIRED", client.t("You're not logged into an account"))
  2305. return false
  2306. }
  2307. switch strings.ToUpper(msg.Params[0]) {
  2308. case "GET":
  2309. reportPersistenceStatus(client, rb, false)
  2310. case "SET":
  2311. if len(msg.Params) == 1 {
  2312. goto fail
  2313. }
  2314. var desiredSetting PersistentStatus
  2315. switch strings.ToUpper(msg.Params[1]) {
  2316. case "DEFAULT":
  2317. desiredSetting = PersistentUnspecified
  2318. case "OFF":
  2319. desiredSetting = PersistentDisabled
  2320. case "ON":
  2321. desiredSetting = PersistentMandatory
  2322. default:
  2323. goto fail
  2324. }
  2325. broadcast := false
  2326. _, err := server.accounts.ModifyAccountSettings(account,
  2327. func(input AccountSettings) (output AccountSettings, err error) {
  2328. output = input
  2329. output.AlwaysOn = desiredSetting
  2330. broadcast = output.AlwaysOn != input.AlwaysOn
  2331. return
  2332. })
  2333. if err != nil {
  2334. server.logger.Error("internal", "couldn't modify persistence setting", err.Error())
  2335. rb.Add(nil, server.name, "FAIL", "PERSISTENCE", "UNKNOWN_ERROR", client.t("An error occurred"))
  2336. return false
  2337. }
  2338. reportPersistenceStatus(client, rb, broadcast)
  2339. default:
  2340. goto fail
  2341. }
  2342. return false
  2343. fail:
  2344. rb.Add(nil, server.name, "FAIL", "PERSISTENCE", "INVALID_PARAMS", client.t("Invalid parameters"))
  2345. return false
  2346. }
  2347. // REDACT <target> <targetmsgid> [:<reason>]
  2348. func redactHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2349. target := msg.Params[0]
  2350. targetmsgid := msg.Params[1]
  2351. //clientOnlyTags := msg.ClientOnlyTags()
  2352. var reason string
  2353. if len(msg.Params) > 2 {
  2354. reason = msg.Params[2]
  2355. }
  2356. var members []*Client // members of a channel, or both parties of a PM
  2357. var canDelete CanDelete
  2358. msgid := utils.GenerateSecretToken()
  2359. time := time.Now().UTC().Round(0)
  2360. details := client.Details()
  2361. isBot := client.HasMode(modes.Bot)
  2362. if target[0] == '#' {
  2363. channel := server.channels.Get(target)
  2364. if channel == nil {
  2365. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(target), client.t("No such channel"))
  2366. return false
  2367. }
  2368. members = channel.Members()
  2369. canDelete = deletionPolicy(server, client, target)
  2370. } else {
  2371. targetClient := server.clients.Get(target)
  2372. if targetClient == nil {
  2373. rb.Add(nil, server.name, ERR_NOSUCHNICK, client.Nick(), target, "No such nick")
  2374. return false
  2375. }
  2376. members = []*Client{client, targetClient}
  2377. canDelete = canDeleteSelf
  2378. }
  2379. if canDelete == canDeleteNone {
  2380. rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("You are not authorized to delete messages"))
  2381. return false
  2382. }
  2383. accountName := "*"
  2384. if canDelete == canDeleteSelf {
  2385. accountName = client.AccountName()
  2386. if accountName == "*" {
  2387. rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("You are not authorized to delete because you are logged out"))
  2388. return false
  2389. }
  2390. }
  2391. err := server.DeleteMessage(target, targetmsgid, accountName)
  2392. if err == errNoop {
  2393. rb.Add(nil, server.name, "FAIL", "REDACT", "UNKNOWN_MSGID", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("This message does not exist or is too old"))
  2394. return false
  2395. } else if err != nil {
  2396. isOper := client.HasRoleCapabs("history")
  2397. if isOper {
  2398. rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), fmt.Sprintf(client.t("Error deleting message: %v"), err))
  2399. } else {
  2400. rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("Could not delete message"))
  2401. }
  2402. return false
  2403. }
  2404. if target[0] != '#' {
  2405. // If this is a PM, we just removed the message from the buffer of the other party;
  2406. // now we have to remove it from the buffer of the client who sent the REDACT command
  2407. err := server.DeleteMessage(client.Nick(), targetmsgid, accountName)
  2408. if err != nil {
  2409. client.server.logger.Error("internal", fmt.Sprintf("Private message %s is not deletable by %s from their own buffer's even though we just deleted it from %s's. This is a bug, please report it in details.", targetmsgid, client.Nick(), target), client.Nick())
  2410. isOper := client.HasRoleCapabs("history")
  2411. if isOper {
  2412. rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), fmt.Sprintf(client.t("Error deleting message: %v"), err))
  2413. } else {
  2414. rb.Add(nil, server.name, "FAIL", "REDACT", "REDACT_FORBIDDEN", utils.SafeErrorParam(target), utils.SafeErrorParam(targetmsgid), client.t("Error deleting message"))
  2415. }
  2416. }
  2417. }
  2418. for _, member := range members {
  2419. for _, session := range member.Sessions() {
  2420. if session.capabilities.Has(caps.MessageRedaction) {
  2421. session.sendFromClientInternal(false, time, msgid, details.nickMask, details.accountName, isBot, nil, "REDACT", target, targetmsgid, reason)
  2422. } else {
  2423. // If we wanted to send a fallback to clients which do not support
  2424. // draft/message-redaction, we would do it from here.
  2425. }
  2426. }
  2427. }
  2428. return false
  2429. }
  2430. func reportPersistenceStatus(client *Client, rb *ResponseBuffer, broadcast bool) {
  2431. settings := client.AccountSettings()
  2432. serverSetting := client.server.Config().Accounts.Multiclient.AlwaysOn
  2433. effectiveSetting := persistenceEnabled(serverSetting, settings.AlwaysOn)
  2434. toString := func(setting PersistentStatus) string {
  2435. switch setting {
  2436. case PersistentUnspecified:
  2437. return "DEFAULT"
  2438. case PersistentDisabled:
  2439. return "OFF"
  2440. case PersistentMandatory:
  2441. return "ON"
  2442. default:
  2443. return "*" // impossible
  2444. }
  2445. }
  2446. storedSettingStr := toString(settings.AlwaysOn)
  2447. effectiveSettingStr := "OFF"
  2448. if effectiveSetting {
  2449. effectiveSettingStr = "ON"
  2450. }
  2451. rb.Add(nil, client.server.name, "PERSISTENCE", "STATUS", storedSettingStr, effectiveSettingStr)
  2452. if broadcast {
  2453. for _, session := range client.Sessions() {
  2454. if session != rb.session && session.capabilities.Has(caps.Persistence) {
  2455. session.Send(nil, client.server.name, "PERSISTENCE", "STATUS", storedSettingStr, effectiveSettingStr)
  2456. }
  2457. }
  2458. }
  2459. }
  2460. // PING [params...]
  2461. func pingHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2462. rb.Add(nil, server.name, "PONG", server.name, msg.Params[0])
  2463. return false
  2464. }
  2465. // PONG [params...]
  2466. func pongHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2467. // client gets touched when they send this command, so we don't need to do anything
  2468. return false
  2469. }
  2470. // QUIT [<reason>]
  2471. func quitHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2472. reason := "Quit"
  2473. if len(msg.Params) > 0 {
  2474. reason += ": " + msg.Params[0]
  2475. }
  2476. client.Quit(reason, rb.session)
  2477. return true
  2478. }
  2479. // REGISTER < account | * > < email | * > <password>
  2480. func registerHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) (exiting bool) {
  2481. accountName := client.Nick()
  2482. if accountName == "*" {
  2483. accountName = client.preregNick
  2484. }
  2485. switch msg.Params[0] {
  2486. case "*", accountName:
  2487. // ok
  2488. default:
  2489. rb.Add(nil, server.name, "FAIL", "REGISTER", "ACCOUNT_NAME_MUST_BE_NICK", utils.SafeErrorParam(msg.Params[0]), client.t("You may only register your nickname as your account name"))
  2490. return
  2491. }
  2492. // check that accountName is valid as a non-final parameter;
  2493. // this is necessary for us to be valid and it will prevent us from emitting invalid error lines
  2494. nickErrorParam := utils.SafeErrorParam(accountName)
  2495. if accountName == "*" || accountName != nickErrorParam {
  2496. rb.Add(nil, server.name, "FAIL", "REGISTER", "INVALID_USERNAME", nickErrorParam, client.t("Username invalid or not given"))
  2497. return
  2498. }
  2499. config := server.Config()
  2500. if !config.Accounts.Registration.Enabled {
  2501. rb.Add(nil, server.name, "FAIL", "REGISTER", "DISALLOWED", accountName, client.t("Account registration is disabled"))
  2502. return
  2503. }
  2504. if !client.registered && !config.Accounts.Registration.AllowBeforeConnect {
  2505. rb.Add(nil, server.name, "FAIL", "REGISTER", "COMPLETE_CONNECTION_REQUIRED", accountName, client.t("You must complete the connection before registering your account"))
  2506. return
  2507. }
  2508. if client.registerCmdSent || client.Account() != "" {
  2509. rb.Add(nil, server.name, "FAIL", "REGISTER", "ALREADY_REGISTERED", accountName, client.t("You have already registered or attempted to register"))
  2510. return
  2511. }
  2512. callbackNamespace, callbackValue, err := parseCallback(msg.Params[1], config)
  2513. if err != nil {
  2514. rb.Add(nil, server.name, "FAIL", "REGISTER", "INVALID_EMAIL", accountName, client.t("A valid e-mail address is required"))
  2515. return
  2516. }
  2517. err = server.accounts.Register(client, accountName, callbackNamespace, callbackValue, msg.Params[2], rb.session.certfp)
  2518. switch err {
  2519. case nil:
  2520. if callbackNamespace == "*" {
  2521. err := server.accounts.Verify(client, accountName, "", true)
  2522. if err == nil {
  2523. if client.registered {
  2524. if !fixupNickEqualsAccount(client, rb, config, "") {
  2525. err = errNickAccountMismatch
  2526. }
  2527. }
  2528. if err == nil {
  2529. rb.Add(nil, server.name, "REGISTER", "SUCCESS", accountName, client.t("Account successfully registered"))
  2530. sendSuccessfulRegResponse(nil, client, rb)
  2531. }
  2532. }
  2533. if err != nil {
  2534. server.logger.Error("internal", "accounts", "failed autoverification", accountName, err.Error())
  2535. rb.Add(nil, server.name, "FAIL", "REGISTER", "UNKNOWN_ERROR", client.t("An error occurred"))
  2536. }
  2537. } else {
  2538. rb.Add(nil, server.name, "REGISTER", "VERIFICATION_REQUIRED", accountName, fmt.Sprintf(client.t("Account created, pending verification; verification code has been sent to %s"), callbackValue))
  2539. client.registerCmdSent = true
  2540. announcePendingReg(client, rb, accountName)
  2541. }
  2542. case errAccountAlreadyRegistered, errAccountAlreadyUnregistered, errAccountMustHoldNick:
  2543. rb.Add(nil, server.name, "FAIL", "REGISTER", "USERNAME_EXISTS", accountName, client.t("Username is already registered or otherwise unavailable"))
  2544. case errAccountBadPassphrase:
  2545. rb.Add(nil, server.name, "FAIL", "REGISTER", "INVALID_PASSWORD", accountName, client.t("Password was invalid"))
  2546. default:
  2547. if emailError := registrationCallbackErrorText(config, client, err); emailError != "" {
  2548. rb.Add(nil, server.name, "FAIL", "REGISTER", "UNACCEPTABLE_EMAIL", accountName, emailError)
  2549. } else {
  2550. rb.Add(nil, server.name, "FAIL", "REGISTER", "UNKNOWN_ERROR", accountName, client.t("Could not register"))
  2551. }
  2552. }
  2553. return
  2554. }
  2555. // VERIFY <account> <code>
  2556. func verifyHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) (exiting bool) {
  2557. config := server.Config()
  2558. if !config.Accounts.Registration.Enabled {
  2559. rb.Add(nil, server.name, "FAIL", "VERIFY", "DISALLOWED", client.t("Account registration is disabled"))
  2560. return
  2561. }
  2562. if !client.registered && !config.Accounts.Registration.AllowBeforeConnect {
  2563. rb.Add(nil, server.name, "FAIL", "VERIFY", "DISALLOWED", client.t("You must complete the connection before verifying your account"))
  2564. return
  2565. }
  2566. if client.Account() != "" {
  2567. rb.Add(nil, server.name, "FAIL", "VERIFY", "ALREADY_REGISTERED", client.t("You have already registered or attempted to register"))
  2568. return
  2569. }
  2570. accountName, verificationCode := msg.Params[0], msg.Params[1]
  2571. err := server.accounts.Verify(client, accountName, verificationCode, false)
  2572. if err == nil && client.registered {
  2573. if !fixupNickEqualsAccount(client, rb, config, "") {
  2574. err = errNickAccountMismatch
  2575. }
  2576. }
  2577. switch err {
  2578. case nil:
  2579. rb.Add(nil, server.name, "VERIFY", "SUCCESS", accountName, client.t("Account successfully registered"))
  2580. sendSuccessfulRegResponse(nil, client, rb)
  2581. case errAccountVerificationInvalidCode:
  2582. rb.Add(nil, server.name, "FAIL", "VERIFY", "INVALID_CODE", client.t("Invalid verification code"))
  2583. default:
  2584. rb.Add(nil, server.name, "FAIL", "VERIFY", "UNKNOWN_ERROR", client.t("Failed to verify account"))
  2585. }
  2586. if err != nil && !client.registered {
  2587. // XXX pre-registration clients are exempt from fakelag;
  2588. // slow the client down to stop them spamming verify attempts
  2589. time.Sleep(time.Second)
  2590. }
  2591. return
  2592. }
  2593. // MARKREAD <target> [timestamp]
  2594. func markReadHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) (exiting bool) {
  2595. if len(msg.Params) == 0 {
  2596. rb.Add(nil, server.name, "FAIL", "MARKREAD", "NEED_MORE_PARAMS", client.t("Missing parameters"))
  2597. return
  2598. }
  2599. target := msg.Params[0]
  2600. cftarget, err := CasefoldTarget(target)
  2601. if err != nil {
  2602. rb.Add(nil, server.name, "FAIL", "MARKREAD", "INVALID_PARAMS", utils.SafeErrorParam(target), client.t("Invalid target"))
  2603. return
  2604. }
  2605. unfoldedTarget := server.UnfoldName(cftarget)
  2606. // "MARKREAD client get command": MARKREAD <target>
  2607. if len(msg.Params) == 1 {
  2608. rb.Add(nil, client.server.name, "MARKREAD", unfoldedTarget, client.GetReadMarker(cftarget))
  2609. return
  2610. }
  2611. // "MARKREAD client set command": MARKREAD <target> <timestamp>
  2612. readTimestamp := strings.TrimPrefix(msg.Params[1], "timestamp=")
  2613. readTime, err := time.Parse(IRCv3TimestampFormat, readTimestamp)
  2614. if err != nil {
  2615. rb.Add(nil, server.name, "FAIL", "MARKREAD", "INVALID_PARAMS", utils.SafeErrorParam(readTimestamp), client.t("Invalid timestamp"))
  2616. return
  2617. }
  2618. result := client.SetReadMarker(cftarget, readTime)
  2619. readTimestamp = fmt.Sprintf("timestamp=%s", result.Format(IRCv3TimestampFormat))
  2620. // inform the originating session whether it was a success or a no-op:
  2621. rb.Add(nil, server.name, "MARKREAD", unfoldedTarget, readTimestamp)
  2622. if result.Equal(readTime) {
  2623. // successful update (i.e. it moved the stored timestamp forward):
  2624. // inform other sessions
  2625. for _, session := range client.Sessions() {
  2626. if session != rb.session && session.capabilities.Has(caps.ReadMarker) {
  2627. session.Send(nil, server.name, "MARKREAD", unfoldedTarget, readTimestamp)
  2628. }
  2629. }
  2630. }
  2631. return
  2632. }
  2633. // REHASH
  2634. func rehashHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2635. nick := client.Nick()
  2636. server.logger.Info("server", "REHASH command used by", nick)
  2637. err := server.rehash()
  2638. if err == nil {
  2639. // we used to send RPL_REHASHING here but i don't think it really makes sense
  2640. // in the labeled-response world, since the intent is "rehash in progress" but
  2641. // it won't display until the rehash is actually complete
  2642. // TODO all operators should get a notice of some kind here
  2643. rb.Notice(client.t("Rehash complete"))
  2644. } else {
  2645. rb.Add(nil, server.name, ERR_UNKNOWNERROR, nick, "REHASH", ircutils.SanitizeText(err.Error(), 350))
  2646. }
  2647. return false
  2648. }
  2649. // RELAYMSG <channel> <spoofed nick> :<message>
  2650. func relaymsgHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) (result bool) {
  2651. config := server.Config()
  2652. if !config.Server.Relaymsg.Enabled {
  2653. rb.Add(nil, server.name, "FAIL", "RELAYMSG", "NOT_ENABLED", client.t("RELAYMSG has been disabled"))
  2654. return false
  2655. }
  2656. channel := server.channels.Get(msg.Params[0])
  2657. if channel == nil {
  2658. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(msg.Params[0]), client.t("No such channel"))
  2659. return false
  2660. }
  2661. allowedToRelay := client.HasRoleCapabs("relaymsg") || (config.Server.Relaymsg.AvailableToChanops && channel.ClientIsAtLeast(client, modes.ChannelOperator))
  2662. if !allowedToRelay {
  2663. rb.Add(nil, server.name, "FAIL", "RELAYMSG", "PRIVS_NEEDED", client.t("You cannot relay messages to this channel"))
  2664. return false
  2665. }
  2666. rawMessage := msg.Params[2]
  2667. if strings.TrimSpace(rawMessage) == "" {
  2668. rb.Add(nil, server.name, "FAIL", "RELAYMSG", "BLANK_MSG", client.t("The message must not be blank"))
  2669. return false
  2670. }
  2671. message := utils.MakeMessage(rawMessage)
  2672. nick := msg.Params[1]
  2673. cfnick, err := CasefoldName(nick)
  2674. if err != nil {
  2675. rb.Add(nil, server.name, "FAIL", "RELAYMSG", "INVALID_NICK", client.t("Invalid nickname"))
  2676. return false
  2677. }
  2678. if !config.isRelaymsgIdentifier(nick) {
  2679. rb.Add(nil, server.name, "FAIL", "RELAYMSG", "INVALID_NICK", fmt.Sprintf(client.t("Relayed nicknames MUST contain a relaymsg separator from this set: %s"), config.Server.Relaymsg.Separators))
  2680. return false
  2681. }
  2682. if channel.relayNickMuted(cfnick) {
  2683. rb.Add(nil, server.name, "FAIL", "RELAYMSG", "BANNED", fmt.Sprintf(client.t("%s is banned from relaying to the channel"), nick))
  2684. return false
  2685. }
  2686. details := client.Details()
  2687. // #1647: we need to publish a full NUH. send ~u (or the configured alternative)
  2688. // as the user/ident, and send the relayer's hostname as the hostname:
  2689. ident := config.Server.CoerceIdent
  2690. if ident == "" {
  2691. ident = "~u"
  2692. }
  2693. // #1661: if the bot has its own account, use the account cloak,
  2694. // otherwise fall back to the hostname (which may be IP-derived)
  2695. hostname := details.hostname
  2696. if details.accountName != "" {
  2697. hostname = config.Server.Cloaks.ComputeAccountCloak(details.accountName)
  2698. }
  2699. nuh := fmt.Sprintf("%s!%s@%s", nick, ident, hostname)
  2700. channel.AddHistoryItem(history.Item{
  2701. Type: history.Privmsg,
  2702. Message: message,
  2703. Nick: nuh,
  2704. }, "")
  2705. // 3 possibilities for tags:
  2706. // no tags, the relaymsg tag only, or the relaymsg tag together with all client-only tags
  2707. relayTag := map[string]string{
  2708. caps.RelaymsgTagName: details.nick,
  2709. }
  2710. clientOnlyTags := msg.ClientOnlyTags()
  2711. var fullTags map[string]string
  2712. if len(clientOnlyTags) == 0 {
  2713. fullTags = relayTag
  2714. } else {
  2715. fullTags = make(map[string]string, 1+len(clientOnlyTags))
  2716. fullTags[caps.RelaymsgTagName] = details.nick
  2717. for t, v := range clientOnlyTags {
  2718. fullTags[t] = v
  2719. }
  2720. }
  2721. // actually send the message
  2722. channelName := channel.Name()
  2723. for _, member := range channel.Members() {
  2724. for _, session := range member.Sessions() {
  2725. var tagsToUse map[string]string
  2726. if session.capabilities.Has(caps.MessageTags) {
  2727. tagsToUse = fullTags
  2728. } else if session.capabilities.Has(caps.Relaymsg) {
  2729. tagsToUse = relayTag
  2730. }
  2731. if session == rb.session {
  2732. rb.AddSplitMessageFromClient(nuh, "*", false, tagsToUse, "PRIVMSG", channelName, message)
  2733. } else {
  2734. session.sendSplitMsgFromClientInternal(false, nuh, "*", false, tagsToUse, "PRIVMSG", channelName, message)
  2735. }
  2736. }
  2737. }
  2738. return false
  2739. }
  2740. // RENAME <oldchan> <newchan> [<reason>]
  2741. func renameHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2742. oldName, newName := msg.Params[0], msg.Params[1]
  2743. var reason string
  2744. if 2 < len(msg.Params) {
  2745. reason = msg.Params[2]
  2746. }
  2747. channel := server.channels.Get(oldName)
  2748. if channel == nil {
  2749. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(oldName), client.t("No such channel"))
  2750. return false
  2751. }
  2752. oldName = channel.Name()
  2753. if !(channel.ClientIsAtLeast(client, modes.ChannelOperator) || client.HasRoleCapabs("chanreg")) {
  2754. rb.Add(nil, server.name, ERR_CHANOPRIVSNEEDED, client.Nick(), oldName, client.t("You're not a channel operator"))
  2755. return false
  2756. }
  2757. founder := channel.Founder()
  2758. if founder != "" && founder != client.Account() {
  2759. rb.Add(nil, server.name, "FAIL", "RENAME", "CANNOT_RENAME", oldName, utils.SafeErrorParam(newName), client.t("Only channel founders can change registered channels"))
  2760. return false
  2761. }
  2762. config := server.Config()
  2763. status, _, _ := channel.historyStatus(config)
  2764. if status == HistoryPersistent {
  2765. rb.Add(nil, server.name, "FAIL", "RENAME", "CANNOT_RENAME", oldName, utils.SafeErrorParam(newName), client.t("Channels with persistent history cannot be renamed"))
  2766. return false
  2767. }
  2768. // perform the channel rename
  2769. err := server.channels.Rename(oldName, newName)
  2770. if err == errInvalidChannelName {
  2771. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.Nick(), utils.SafeErrorParam(newName), client.t(err.Error()))
  2772. } else if err == errChannelNameInUse || err == errConfusableIdentifier {
  2773. rb.Add(nil, server.name, "FAIL", "RENAME", "CHANNEL_NAME_IN_USE", oldName, utils.SafeErrorParam(newName), client.t(err.Error()))
  2774. } else if err != nil {
  2775. rb.Add(nil, server.name, "FAIL", "RENAME", "CANNOT_RENAME", oldName, utils.SafeErrorParam(newName), client.t("Cannot rename channel"))
  2776. }
  2777. if err != nil {
  2778. return false
  2779. }
  2780. // send RENAME messages
  2781. clientPrefix := client.NickMaskString()
  2782. for _, mcl := range channel.Members() {
  2783. mDetails := mcl.Details()
  2784. for _, mSession := range mcl.Sessions() {
  2785. targetRb := rb
  2786. targetPrefix := clientPrefix
  2787. if mSession != rb.session {
  2788. targetRb = NewResponseBuffer(mSession)
  2789. targetPrefix = mDetails.nickMask
  2790. }
  2791. if mSession.capabilities.Has(caps.ChannelRename) {
  2792. if reason != "" {
  2793. targetRb.Add(nil, clientPrefix, "RENAME", oldName, newName, reason)
  2794. } else {
  2795. targetRb.Add(nil, clientPrefix, "RENAME", oldName, newName)
  2796. }
  2797. } else {
  2798. if reason != "" {
  2799. targetRb.Add(nil, targetPrefix, "PART", oldName, fmt.Sprintf(mcl.t("Channel renamed: %s"), reason))
  2800. } else {
  2801. targetRb.Add(nil, targetPrefix, "PART", oldName, mcl.t("Channel renamed"))
  2802. }
  2803. if mSession.capabilities.Has(caps.ExtendedJoin) {
  2804. targetRb.Add(nil, targetPrefix, "JOIN", newName, mDetails.accountName, mDetails.realname)
  2805. } else {
  2806. targetRb.Add(nil, targetPrefix, "JOIN", newName)
  2807. }
  2808. channel.SendTopic(mcl, targetRb, false)
  2809. if !targetRb.session.capabilities.Has(caps.NoImplicitNames) {
  2810. channel.Names(mcl, targetRb)
  2811. }
  2812. }
  2813. if mcl != client {
  2814. targetRb.Send(false)
  2815. }
  2816. }
  2817. }
  2818. return false
  2819. }
  2820. // SANICK <oldnick> <nickname>
  2821. func sanickHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2822. targetNick := msg.Params[0]
  2823. target := server.clients.Get(targetNick)
  2824. if target == nil {
  2825. rb.Add(nil, server.name, "FAIL", "SANICK", "NO_SUCH_NICKNAME", utils.SafeErrorParam(targetNick), client.t("No such nick"))
  2826. return false
  2827. }
  2828. performNickChange(server, client, target, nil, msg.Params[1], rb)
  2829. return false
  2830. }
  2831. // SCENE <target> <message>
  2832. func sceneHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2833. target := msg.Params[0]
  2834. message := msg.Params[1:]
  2835. sendRoleplayMessage(server, client, "", target, true, false, message, rb)
  2836. return false
  2837. }
  2838. // SETNAME <realname>
  2839. func setnameHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2840. realname := msg.Params[0]
  2841. if len(msg.Params) != 1 {
  2842. // workaround for clients that turn unknown commands into raw IRC lines,
  2843. // so you can do `/setname Jane Doe` in the client and get the expected result
  2844. realname = strings.Join(msg.Params, " ")
  2845. }
  2846. if realname == "" {
  2847. rb.Add(nil, server.name, "FAIL", "SETNAME", "INVALID_REALNAME", client.t("Realname is not valid"))
  2848. return false
  2849. }
  2850. client.SetRealname(realname)
  2851. details := client.Details()
  2852. // alert friends
  2853. now := time.Now().UTC()
  2854. friends := client.FriendsMonitors(caps.SetName)
  2855. delete(friends, rb.session)
  2856. isBot := client.HasMode(modes.Bot)
  2857. for session := range friends {
  2858. session.sendFromClientInternal(false, now, "", details.nickMask, details.accountName, isBot, nil, "SETNAME", details.realname)
  2859. }
  2860. // respond to the user unconditionally, even if they don't have the cap
  2861. rb.AddFromClient(now, "", details.nickMask, details.accountName, isBot, nil, "SETNAME", details.realname)
  2862. return false
  2863. }
  2864. // SUMMON [parameters]
  2865. func summonHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2866. rb.Add(nil, server.name, ERR_SUMMONDISABLED, client.Nick(), client.t("SUMMON has been disabled"))
  2867. return false
  2868. }
  2869. // TIME
  2870. func timeHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2871. rb.Add(nil, server.name, RPL_TIME, client.nick, server.name, time.Now().UTC().Format(time.RFC1123))
  2872. return false
  2873. }
  2874. // TOPIC <channel> [<topic>]
  2875. func topicHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2876. channel := server.channels.Get(msg.Params[0])
  2877. if channel == nil {
  2878. rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.nick, utils.SafeErrorParam(msg.Params[0]), client.t("No such channel"))
  2879. return false
  2880. }
  2881. if len(msg.Params) > 1 {
  2882. channel.SetTopic(client, msg.Params[1], rb)
  2883. } else {
  2884. channel.SendTopic(client, rb, true)
  2885. }
  2886. return false
  2887. }
  2888. // UNDLINE <ip>|<net>
  2889. func unDLineHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2890. // check oper permissions
  2891. oper := client.Oper()
  2892. if !oper.HasRoleCapab("ban") {
  2893. rb.Add(nil, server.name, ERR_NOPRIVS, client.nick, msg.Command, client.t("Insufficient oper privs"))
  2894. return false
  2895. }
  2896. // get host
  2897. hostString := msg.Params[0]
  2898. // check host
  2899. hostNet, err := flatip.ParseToNormalizedNet(hostString)
  2900. if err != nil {
  2901. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.nick, msg.Command, client.t("Could not parse IP address or CIDR network"))
  2902. return false
  2903. }
  2904. err = server.dlines.RemoveNetwork(hostNet)
  2905. if err != nil {
  2906. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.nick, msg.Command, fmt.Sprintf(client.t("Could not remove ban [%s]"), err.Error()))
  2907. return false
  2908. }
  2909. hostString = hostNet.String()
  2910. rb.Notice(fmt.Sprintf(client.t("Removed D-Line for %s"), hostString))
  2911. server.snomasks.Send(sno.LocalXline, fmt.Sprintf(ircfmt.Unescape("%s$r removed D-Line for %s"), client.nick, hostString))
  2912. return false
  2913. }
  2914. // UNKLINE <mask>
  2915. func unKLineHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2916. details := client.Details()
  2917. // check oper permissions
  2918. oper := client.Oper()
  2919. if !oper.HasRoleCapab("ban") {
  2920. rb.Add(nil, server.name, ERR_NOPRIVS, details.nick, msg.Command, client.t("Insufficient oper privs"))
  2921. return false
  2922. }
  2923. // get host
  2924. mask := msg.Params[0]
  2925. mask, err := CanonicalizeMaskWildcard(mask)
  2926. if err != nil {
  2927. rb.Add(nil, server.name, ERR_UNKNOWNERROR, details.nick, msg.Command, client.t("Erroneous nickname"))
  2928. return false
  2929. }
  2930. err = server.klines.RemoveMask(mask)
  2931. if err != nil {
  2932. rb.Add(nil, server.name, ERR_UNKNOWNERROR, details.nick, msg.Command, fmt.Sprintf(client.t("Could not remove ban [%s]"), err.Error()))
  2933. return false
  2934. }
  2935. rb.Notice(fmt.Sprintf(client.t("Removed K-Line for %s"), mask))
  2936. server.snomasks.Send(sno.LocalXline, fmt.Sprintf(ircfmt.Unescape("%s$r removed K-Line for %s"), details.nick, mask))
  2937. return false
  2938. }
  2939. // USER <username> * 0 <realname>
  2940. func userHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2941. if client.registered {
  2942. rb.Add(nil, server.name, ERR_ALREADYREGISTRED, client.Nick(), client.t("You may not reregister"))
  2943. return false
  2944. }
  2945. username, realname := msg.Params[0], msg.Params[3]
  2946. if len(realname) == 0 {
  2947. rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), "USER", client.t("Not enough parameters"))
  2948. return false
  2949. }
  2950. // #843: we accept either: `USER user:pass@clientid` or `USER user@clientid`
  2951. if strudelIndex := strings.IndexByte(username, '@'); strudelIndex != -1 {
  2952. username, rb.session.deviceID = username[:strudelIndex], username[strudelIndex+1:]
  2953. if colonIndex := strings.IndexByte(username, ':'); colonIndex != -1 {
  2954. var password string
  2955. username, password = username[:colonIndex], username[colonIndex+1:]
  2956. err := server.accounts.AuthenticateByPassphrase(client, username, password)
  2957. if err == nil {
  2958. sendSuccessfulAccountAuth(nil, client, rb, true)
  2959. } else {
  2960. // this is wrong, but send something for debugging that will show up in a raw transcript
  2961. rb.Add(nil, server.name, ERR_SASLFAIL, client.Nick(), client.t("SASL authentication failed"))
  2962. }
  2963. }
  2964. }
  2965. err := client.SetNames(username, realname, false)
  2966. if err == errInvalidUsername {
  2967. // if client's using a unicode nick or something weird, let's just set 'em up with a stock username instead.
  2968. // fixes clients that just use their nick as a username so they can still use the interesting nick
  2969. if client.preregNick == username {
  2970. client.SetNames("user", realname, false)
  2971. } else {
  2972. rb.Add(nil, server.name, ERR_INVALIDUSERNAME, client.Nick(), client.t("Malformed username"))
  2973. }
  2974. }
  2975. return false
  2976. }
  2977. // does `target` have an operator status that is visible to `client`?
  2978. func operStatusVisible(client, target *Client, hasPrivs bool) bool {
  2979. targetOper := target.Oper()
  2980. if targetOper == nil {
  2981. return false
  2982. }
  2983. if client == target || hasPrivs {
  2984. return true
  2985. }
  2986. return !targetOper.Hidden
  2987. }
  2988. // USERHOST <nickname>{ <nickname>}
  2989. func userhostHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  2990. hasPrivs := client.HasMode(modes.Operator)
  2991. returnedClients := make(ClientSet)
  2992. var tl utils.TokenLineBuilder
  2993. tl.Initialize(maxLastArgLength, " ")
  2994. for i, nickname := range msg.Params {
  2995. if i >= 10 {
  2996. break
  2997. }
  2998. target := server.clients.Get(nickname)
  2999. if target == nil {
  3000. continue
  3001. }
  3002. // to prevent returning multiple results for a single nick
  3003. if returnedClients.Has(target) {
  3004. continue
  3005. }
  3006. returnedClients.Add(target)
  3007. var isOper, isAway string
  3008. if operStatusVisible(client, target, hasPrivs) {
  3009. isOper = "*"
  3010. }
  3011. if away, _ := target.Away(); away {
  3012. isAway = "-"
  3013. } else {
  3014. isAway = "+"
  3015. }
  3016. details := target.Details()
  3017. tl.Add(fmt.Sprintf("%s%s=%s%s@%s", details.nick, isOper, isAway, details.username, details.hostname))
  3018. }
  3019. lines := tl.Lines()
  3020. if lines == nil {
  3021. lines = []string{""}
  3022. }
  3023. nick := client.Nick()
  3024. for _, line := range lines {
  3025. rb.Add(nil, client.server.name, RPL_USERHOST, nick, line)
  3026. }
  3027. return false
  3028. }
  3029. // USERS [parameters]
  3030. func usersHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3031. rb.Add(nil, server.name, ERR_USERSDISABLED, client.Nick(), client.t("USERS has been disabled"))
  3032. return false
  3033. }
  3034. // VERSION
  3035. func versionHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3036. rb.Add(nil, server.name, RPL_VERSION, client.nick, Ver, server.name)
  3037. server.RplISupport(client, rb)
  3038. return false
  3039. }
  3040. // WEBIRC <password> <gateway> <hostname> <ip> [:flag1 flag2=x flag3]
  3041. func webircHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3042. // only allow unregistered clients to use this command
  3043. if client.registered || client.proxiedIP != nil {
  3044. return false
  3045. }
  3046. // process flags
  3047. var secure bool
  3048. if 4 < len(msg.Params) {
  3049. for _, x := range strings.Split(msg.Params[4], " ") {
  3050. // split into key=value
  3051. var key string
  3052. if strings.Contains(x, "=") {
  3053. y := strings.SplitN(x, "=", 2)
  3054. key, _ = y[0], y[1]
  3055. } else {
  3056. key = x
  3057. }
  3058. lkey := strings.ToLower(key)
  3059. if lkey == "tls" || lkey == "secure" {
  3060. // only accept "tls" flag if the gateway's connection to us is secure as well
  3061. if client.HasMode(modes.TLS) || client.realIP.IsLoopback() {
  3062. secure = true
  3063. }
  3064. }
  3065. }
  3066. }
  3067. givenPassword := []byte(msg.Params[0])
  3068. for _, info := range server.Config().Server.WebIRC {
  3069. if utils.IPInNets(client.realIP, info.allowedNets) {
  3070. // confirm password and/or fingerprint
  3071. if 0 < len(info.Password) && bcrypt.CompareHashAndPassword(info.Password, givenPassword) != nil {
  3072. continue
  3073. }
  3074. if info.Certfp != "" && info.Certfp != rb.session.certfp {
  3075. continue
  3076. }
  3077. err, quitMsg := client.ApplyProxiedIP(rb.session, net.ParseIP(msg.Params[3]), secure)
  3078. if err != nil {
  3079. client.Quit(quitMsg, rb.session)
  3080. return true
  3081. } else {
  3082. return false
  3083. }
  3084. }
  3085. }
  3086. client.Quit(client.t("WEBIRC command is not usable from your address or incorrect password given"), rb.session)
  3087. return true
  3088. }
  3089. type whoxFields uint32 // bitset to hold the WHOX field values, 'a' through 'z'
  3090. func (fields whoxFields) Add(field rune) (result whoxFields) {
  3091. index := int(field) - int('a')
  3092. if 0 <= index && index < 26 {
  3093. return fields | (1 << index)
  3094. } else {
  3095. return fields
  3096. }
  3097. }
  3098. func (fields whoxFields) Has(field rune) bool {
  3099. index := int(field) - int('a')
  3100. if 0 <= index && index < 26 {
  3101. return (fields & (1 << index)) != 0
  3102. } else {
  3103. return false
  3104. }
  3105. }
  3106. // rplWhoReply returns the WHO(X) reply between one user and another channel/user.
  3107. // who format:
  3108. // <channel> <user> <host> <server> <nick> <H|G>[*][~|&|@|%|+][B] :<hopcount> <real name>
  3109. // whox format:
  3110. // <type> <channel> <user> <ip> <host> <server> <nick> <H|G>[*][~|&|@|%|+][B] <hops> <idle> <account> <rank> :<real name>
  3111. func (client *Client) rplWhoReply(channel *Channel, target *Client, rb *ResponseBuffer, canSeeIPs, canSeeOpers, includeRFlag, isWhox bool, fields whoxFields, whoType string) {
  3112. params := []string{client.Nick()}
  3113. details := target.Details()
  3114. if fields.Has('t') {
  3115. params = append(params, whoType)
  3116. }
  3117. if fields.Has('c') {
  3118. fChannel := "*"
  3119. if channel != nil {
  3120. fChannel = channel.name
  3121. }
  3122. params = append(params, fChannel)
  3123. }
  3124. if fields.Has('u') {
  3125. params = append(params, details.username)
  3126. }
  3127. if fields.Has('i') {
  3128. fIP := "255.255.255.255"
  3129. if canSeeIPs || client == target {
  3130. // you can only see a target's IP if they're you or you're an oper
  3131. ip, _ := target.getWhoisActually()
  3132. fIP = utils.IPStringToHostname(ip.String())
  3133. }
  3134. params = append(params, fIP)
  3135. }
  3136. if fields.Has('h') {
  3137. params = append(params, details.hostname)
  3138. }
  3139. if fields.Has('s') {
  3140. params = append(params, target.server.name)
  3141. }
  3142. if fields.Has('n') {
  3143. params = append(params, details.nick)
  3144. }
  3145. if fields.Has('f') { // "flags" (away + oper state + channel status prefix + bot)
  3146. var flags strings.Builder
  3147. if away, _ := target.Away(); away {
  3148. flags.WriteRune('G') // Gone
  3149. } else {
  3150. flags.WriteRune('H') // Here
  3151. }
  3152. if target.HasMode(modes.Operator) && operStatusVisible(client, target, canSeeOpers) {
  3153. flags.WriteRune('*')
  3154. }
  3155. if channel != nil {
  3156. flags.WriteString(channel.ClientPrefixes(target, rb.session.capabilities.Has(caps.MultiPrefix)))
  3157. }
  3158. if target.HasMode(modes.Bot) {
  3159. flags.WriteRune('B')
  3160. }
  3161. if includeRFlag && details.account != "" {
  3162. flags.WriteRune('r')
  3163. }
  3164. params = append(params, flags.String())
  3165. }
  3166. if fields.Has('d') { // server hops from us to target
  3167. params = append(params, "0")
  3168. }
  3169. if fields.Has('l') {
  3170. params = append(params, fmt.Sprintf("%d", target.IdleSeconds()))
  3171. }
  3172. if fields.Has('a') {
  3173. fAccount := "0"
  3174. if details.accountName != "*" {
  3175. // WHOX uses "0" to mean "no account"
  3176. fAccount = details.accountName
  3177. }
  3178. params = append(params, fAccount)
  3179. }
  3180. if fields.Has('o') {
  3181. // channel oplevel, not implemented
  3182. params = append(params, "*")
  3183. }
  3184. if fields.Has('r') {
  3185. params = append(params, details.realname)
  3186. }
  3187. numeric := RPL_WHOSPCRPL
  3188. if !isWhox {
  3189. numeric = RPL_WHOREPLY
  3190. // if this isn't WHOX, stick hops + realname at the end
  3191. params = append(params, "0 "+details.realname)
  3192. }
  3193. rb.Add(nil, client.server.name, numeric, params...)
  3194. }
  3195. func serviceWhoReply(client *Client, service *ircService, rb *ResponseBuffer, isWhox bool, fields whoxFields, whoType string) {
  3196. params := []string{client.Nick()}
  3197. if fields.Has('t') {
  3198. params = append(params, whoType)
  3199. }
  3200. if fields.Has('c') {
  3201. params = append(params, "*")
  3202. }
  3203. if fields.Has('u') {
  3204. params = append(params, service.Name)
  3205. }
  3206. if fields.Has('i') {
  3207. params = append(params, "127.0.0.1")
  3208. }
  3209. if fields.Has('h') {
  3210. params = append(params, "localhost")
  3211. }
  3212. if fields.Has('s') {
  3213. params = append(params, client.server.name)
  3214. }
  3215. if fields.Has('n') {
  3216. params = append(params, service.Name)
  3217. }
  3218. if fields.Has('f') { // "flags" (away + oper state + channel status prefix + bot)
  3219. params = append(params, "H")
  3220. }
  3221. if fields.Has('d') { // server hops from us to target
  3222. params = append(params, "0")
  3223. }
  3224. if fields.Has('l') { // idle seconds
  3225. params = append(params, "0")
  3226. }
  3227. if fields.Has('a') { // account, services are considered not to have one
  3228. params = append(params, "0")
  3229. }
  3230. if fields.Has('o') { // channel oplevel, not implemented
  3231. params = append(params, "*")
  3232. }
  3233. if fields.Has('r') {
  3234. params = append(params, service.Realname(client))
  3235. }
  3236. numeric := RPL_WHOSPCRPL
  3237. if !isWhox {
  3238. numeric = RPL_WHOREPLY
  3239. // if this isn't WHOX, stick hops + realname at the end
  3240. params = append(params, "0 "+service.Realname(client))
  3241. }
  3242. rb.Add(nil, client.server.name, numeric, params...)
  3243. }
  3244. // WHO <mask> [<filter>%<fields>,<type>]
  3245. func whoHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3246. origMask := utils.SafeErrorParam(msg.Params[0])
  3247. if origMask != msg.Params[0] {
  3248. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.Nick(), "WHO", client.t("First param must be a mask or channel"))
  3249. return false
  3250. }
  3251. // https://modern.ircdocs.horse/#who-message
  3252. // "1. A channel name, in which case the channel members are listed."
  3253. // "2. An exact nickname, in which case a single user is returned."
  3254. // "3. A mask pattern, in which case all visible users whose nickname matches are listed."
  3255. var isChannel bool
  3256. var isBareNick bool
  3257. mask := origMask
  3258. var err error
  3259. if origMask[0] == '#' {
  3260. mask, err = CasefoldChannel(origMask)
  3261. isChannel = true
  3262. } else if !strings.ContainsAny(origMask, protocolBreakingNameCharacters) {
  3263. isBareNick = true
  3264. } else {
  3265. mask, err = CanonicalizeMaskWildcard(origMask)
  3266. }
  3267. if err != nil {
  3268. rb.Add(nil, server.name, ERR_UNKNOWNERROR, client.Nick(), "WHO", client.t("Mask isn't valid"))
  3269. return false
  3270. }
  3271. // include the r flag only if nick and account are synonymous
  3272. config := server.Config()
  3273. includeRFlag := config.Accounts.NickReservation.Enabled &&
  3274. config.Accounts.NickReservation.Method == NickEnforcementStrict &&
  3275. !config.Accounts.NickReservation.AllowCustomEnforcement &&
  3276. config.Accounts.NickReservation.ForceNickEqualsAccount
  3277. sFields := "cuhsnf"
  3278. whoType := "0"
  3279. isWhox := false
  3280. if len(msg.Params) > 1 && strings.Contains(msg.Params[1], "%") {
  3281. isWhox = true
  3282. whoxData := msg.Params[1]
  3283. fieldStart := strings.Index(whoxData, "%")
  3284. sFields = whoxData[fieldStart+1:]
  3285. typeIndex := strings.Index(sFields, ",")
  3286. if typeIndex > -1 && typeIndex < (len(sFields)-1) { // make sure there's , and a value after it
  3287. whoType = sFields[typeIndex+1:]
  3288. sFields = strings.ToLower(sFields[:typeIndex])
  3289. }
  3290. }
  3291. var fields whoxFields
  3292. for _, field := range sFields {
  3293. fields = fields.Add(field)
  3294. }
  3295. // successfully parsed query, ensure we send the success response:
  3296. defer func() {
  3297. rb.Add(nil, server.name, RPL_ENDOFWHO, client.Nick(), origMask, client.t("End of WHO list"))
  3298. }()
  3299. // XXX #1730: https://datatracker.ietf.org/doc/html/rfc1459#section-4.5.1
  3300. // 'If the "o" parameter is passed only operators are returned according to
  3301. // the name mask supplied.'
  3302. // see discussion on #1730, we just return no results in this case.
  3303. if len(msg.Params) > 1 && msg.Params[1] == "o" {
  3304. return false
  3305. }
  3306. oper := client.Oper()
  3307. hasPrivs := oper.HasRoleCapab("sajoin")
  3308. canSeeIPs := oper.HasRoleCapab("ban")
  3309. if isChannel {
  3310. channel := server.channels.Get(mask)
  3311. if channel != nil {
  3312. isJoined := channel.hasClient(client)
  3313. if !channel.flags.HasMode(modes.Secret) || isJoined || hasPrivs {
  3314. var members []*Client
  3315. if hasPrivs {
  3316. members = channel.Members()
  3317. } else {
  3318. members = channel.auditoriumFriends(client)
  3319. }
  3320. for _, member := range members {
  3321. if !member.HasMode(modes.Invisible) || isJoined || hasPrivs {
  3322. client.rplWhoReply(channel, member, rb, canSeeIPs, oper != nil, includeRFlag, isWhox, fields, whoType)
  3323. }
  3324. }
  3325. }
  3326. }
  3327. } else if isBareNick {
  3328. if mclient := server.clients.Get(mask); mclient != nil {
  3329. client.rplWhoReply(nil, mclient, rb, canSeeIPs, oper != nil, includeRFlag, isWhox, fields, whoType)
  3330. } else if service, ok := ErgoServices[strings.ToLower(mask)]; ok {
  3331. serviceWhoReply(client, service, rb, isWhox, fields, whoType)
  3332. }
  3333. } else {
  3334. // Construct set of channels the client is in.
  3335. userChannels := make(ChannelSet)
  3336. for _, channel := range client.Channels() {
  3337. userChannels.Add(channel)
  3338. }
  3339. // Another client is a friend if they share at least one channel, or they are the same client.
  3340. isFriend := func(otherClient *Client) bool {
  3341. if client == otherClient {
  3342. return true
  3343. }
  3344. for _, channel := range otherClient.Channels() {
  3345. if channel.flags.HasMode(modes.Auditorium) {
  3346. return false // TODO this should respect +v etc.
  3347. }
  3348. if userChannels.Has(channel) {
  3349. return true
  3350. }
  3351. }
  3352. return false
  3353. }
  3354. for mclient := range server.clients.FindAll(mask) {
  3355. if hasPrivs || !mclient.HasMode(modes.Invisible) || isFriend(mclient) {
  3356. client.rplWhoReply(nil, mclient, rb, canSeeIPs, oper != nil, includeRFlag, isWhox, fields, whoType)
  3357. }
  3358. }
  3359. }
  3360. return false
  3361. }
  3362. // WHOIS [<target>] <mask>{,<mask>}
  3363. func whoisHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3364. var masksString string
  3365. //var target string
  3366. if len(msg.Params) > 1 {
  3367. //target = msg.Params[0]
  3368. masksString = msg.Params[1]
  3369. } else {
  3370. masksString = msg.Params[0]
  3371. }
  3372. handleService := func(nick string) bool {
  3373. cfnick, _ := CasefoldName(nick)
  3374. service, ok := ErgoServices[cfnick]
  3375. hostname := "localhost"
  3376. config := server.Config()
  3377. if config.Server.OverrideServicesHostname != "" {
  3378. hostname = config.Server.OverrideServicesHostname
  3379. }
  3380. if !ok {
  3381. return false
  3382. }
  3383. clientNick := client.Nick()
  3384. rb.Add(nil, client.server.name, RPL_WHOISUSER, clientNick, service.Name, service.Name, hostname, "*", service.Realname(client))
  3385. // #1080:
  3386. rb.Add(nil, client.server.name, RPL_WHOISOPERATOR, clientNick, service.Name, client.t("is a network service"))
  3387. // hehe
  3388. if client.HasMode(modes.TLS) {
  3389. rb.Add(nil, client.server.name, RPL_WHOISSECURE, clientNick, service.Name, client.t("is using a secure connection"))
  3390. }
  3391. return true
  3392. }
  3393. hasPrivs := client.HasRoleCapabs("samode")
  3394. if hasPrivs {
  3395. for _, mask := range strings.Split(masksString, ",") {
  3396. matches := server.clients.FindAll(mask)
  3397. if len(matches) == 0 && !handleService(mask) {
  3398. rb.Add(nil, client.server.name, ERR_NOSUCHNICK, client.Nick(), utils.SafeErrorParam(mask), client.t("No such nick"))
  3399. continue
  3400. }
  3401. for mclient := range matches {
  3402. client.getWhoisOf(mclient, hasPrivs, rb)
  3403. }
  3404. }
  3405. } else {
  3406. // only get the first request; also require a nick, not a mask
  3407. nick := strings.Split(masksString, ",")[0]
  3408. mclient := server.clients.Get(nick)
  3409. if mclient != nil {
  3410. client.getWhoisOf(mclient, hasPrivs, rb)
  3411. } else if !handleService(nick) {
  3412. rb.Add(nil, client.server.name, ERR_NOSUCHNICK, client.Nick(), utils.SafeErrorParam(masksString), client.t("No such nick"))
  3413. }
  3414. // fall through, ENDOFWHOIS is always sent
  3415. }
  3416. rb.Add(nil, server.name, RPL_ENDOFWHOIS, client.nick, utils.SafeErrorParam(masksString), client.t("End of /WHOIS list"))
  3417. return false
  3418. }
  3419. // WHOWAS <nickname> [<count> [<server>]]
  3420. func whowasHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3421. nicknames := strings.Split(msg.Params[0], ",")
  3422. // 0 means "all the entries", as does a negative number
  3423. var count int
  3424. if len(msg.Params) > 1 {
  3425. count, _ = strconv.Atoi(msg.Params[1])
  3426. if count < 0 {
  3427. count = 0
  3428. }
  3429. }
  3430. cnick := client.Nick()
  3431. canSeeIP := client.Oper().HasRoleCapab("ban")
  3432. for _, nickname := range nicknames {
  3433. results := server.whoWas.Find(nickname, count)
  3434. if len(results) == 0 {
  3435. rb.Add(nil, server.name, ERR_WASNOSUCHNICK, cnick, utils.SafeErrorParam(nickname), client.t("There was no such nickname"))
  3436. } else {
  3437. for _, whoWas := range results {
  3438. rb.Add(nil, server.name, RPL_WHOWASUSER, cnick, whoWas.nick, whoWas.username, whoWas.hostname, "*", whoWas.realname)
  3439. if canSeeIP {
  3440. rb.Add(nil, server.name, RPL_WHOWASIP, cnick, whoWas.nick, fmt.Sprintf(client.t("was connecting from %s"), utils.IPStringToHostname(whoWas.ip.String())))
  3441. }
  3442. }
  3443. }
  3444. rb.Add(nil, server.name, RPL_ENDOFWHOWAS, cnick, utils.SafeErrorParam(nickname), client.t("End of WHOWAS"))
  3445. }
  3446. return false
  3447. }
  3448. // ZNC <module> [params]
  3449. func zncHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3450. params := msg.Params[1:]
  3451. // #1205: compatibility with Palaver, which sends `ZNC *playback :play ...`
  3452. if len(params) == 1 && strings.IndexByte(params[0], ' ') != -1 {
  3453. params = strings.Fields(params[0])
  3454. }
  3455. zncModuleHandler(client, msg.Params[0], params, rb)
  3456. return false
  3457. }
  3458. // fake handler for unknown commands
  3459. func unknownCommandHandler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3460. var message string
  3461. if strings.HasPrefix(msg.Command, "/") {
  3462. message = fmt.Sprintf(client.t("Unknown command; if you are using /QUOTE, the correct syntax is /QUOTE %[1]s, not /QUOTE %[2]s"),
  3463. strings.TrimPrefix(msg.Command, "/"), msg.Command)
  3464. } else {
  3465. message = client.t("Unknown command")
  3466. }
  3467. rb.Add(nil, server.name, ERR_UNKNOWNCOMMAND, client.Nick(), utils.SafeErrorParam(msg.Command), message)
  3468. return false
  3469. }
  3470. // fake handler for invalid utf8
  3471. func invalidUtf8Handler(server *Server, client *Client, msg ircmsg.Message, rb *ResponseBuffer) bool {
  3472. rb.Add(nil, server.name, "FAIL", utils.SafeErrorParam(msg.Command), "INVALID_UTF8", client.t("Message rejected for containing invalid UTF-8"))
  3473. return false
  3474. }