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

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