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

handlers.go 111KB

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