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 115KB

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