Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

handlers.go 106KB

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