irc-client.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. package ircclient
  2. import (
  3. "bufio"
  4. "crypto/tls"
  5. "crypto/x509"
  6. "encoding/base64"
  7. "fmt"
  8. "io"
  9. "log"
  10. "math/rand"
  11. "net"
  12. "os"
  13. "os/signal"
  14. "strconv"
  15. "strings"
  16. "sync"
  17. "syscall"
  18. "time"
  19. )
  20. const VERSION string = "red-green.com/irc-client 0.1.0"
  21. func StrInArray(strings []string, str string) bool {
  22. for _, s := range strings {
  23. if s == str {
  24. return true
  25. }
  26. }
  27. return false
  28. }
  29. type IRCMsg struct {
  30. MsgParts []string
  31. From string
  32. To string
  33. Cmd string
  34. Msg string
  35. }
  36. // Strip out the NICK part of the From message.
  37. // :[email protected] => NickServ
  38. func IRCNick(from string) string {
  39. if from[0] == ':' {
  40. from = from[1:]
  41. }
  42. var pos int = strings.Index(from, "!")
  43. if pos != -1 {
  44. from = from[:pos]
  45. }
  46. return from
  47. }
  48. /*
  49. IRCParse - split line into IRCMsg
  50. Everything after " :" is the Msg.
  51. Everything before " :" is split into MsgParts[].
  52. If >= 3 MsgParts {
  53. To = MsgParts[2]
  54. }
  55. if >= 2 MsgParts {
  56. From = IrcNic(MsgParts[0])
  57. Cmd = MsgParts[1]
  58. } else {
  59. Cmd = MsgParts[0]
  60. }
  61. Messages are of the following:
  62. :irc.red-green.com 001 test :Welcome to IRC
  63. ^From ^Cmd ^Msg
  64. ^To
  65. ^0 ^1 ^2 MsgParts[]
  66. PING :1234567890
  67. ^Cmd ^Msg
  68. ^0 MsgParts[]
  69. */
  70. func IRCParse(line string) IRCMsg {
  71. var pos int = strings.Index(line, " :")
  72. var results IRCMsg
  73. if pos != -1 {
  74. // Message is everything after " :"
  75. results.Msg = line[pos+2:]
  76. line = line[:pos]
  77. }
  78. results.MsgParts = strings.Split(line, " ")
  79. if len(results.MsgParts) >= 2 {
  80. results.From = IRCNick(results.MsgParts[0])
  81. results.Cmd = results.MsgParts[1]
  82. } else {
  83. results.Cmd = results.MsgParts[0]
  84. }
  85. if len(results.MsgParts) >= 3 {
  86. results.To = results.MsgParts[2]
  87. }
  88. return results
  89. }
  90. /*
  91. func oldIRCParse(line string) []string {
  92. var pos int = strings.Index(line, " :")
  93. var message string
  94. if pos != -1 {
  95. message = line[pos+2:]
  96. line = line[:pos]
  97. }
  98. var results []string
  99. results = strings.Split(line, " ")
  100. if message != "" {
  101. results = append(results, message)
  102. }
  103. return results
  104. }
  105. */
  106. type IRCWrite struct {
  107. To string
  108. Output string
  109. }
  110. type IRCConfig struct {
  111. Port int `json:"Port"`
  112. Hostname string `json:"Hostname"`
  113. UseTLS bool `json:"UseTLS"` // Use TLS Secure connection
  114. UseSASL bool `json:"UseSASL"` // Authenticate via SASL
  115. Insecure bool `json:"Insecure"` // Allow self-signed certificates
  116. Nick string `json:"Nick"`
  117. Username string `json:"Username"`
  118. Realname string `json:"Realname"`
  119. Password string `json:"Password"` // Password for nickserv
  120. ServerPassword string `json:"ServerPassword"` // Password for server
  121. AutoJoin []string `json:"AutoJoin"` // Channels to auto-join
  122. RejoinDelay int `json:"RejoinDelay"` // ms to rejoin
  123. Version string `json:"Version"` // Version displayed
  124. Flood_Num int `json:"FloodNum"` // Number of lines sent before considered a flood
  125. Flood_Time int `json:"FloodTime"` // Number of Seconds to track previous messages
  126. Flood_Delay int `json:"FloodDelay"` // Delay between sending when flood protection on (Milliseconds)
  127. Debug_Output bool `json:"Debug"`
  128. MyNick string
  129. OnExit func()
  130. Socket net.Conn
  131. Reader *bufio.Reader
  132. ReadChannel chan IRCMsg
  133. ReadEvents []string
  134. WriteChannel chan IRCWrite
  135. DelChannel chan string
  136. Registered bool
  137. ISupport map[string]string // 005
  138. wg sync.WaitGroup
  139. Mutex sync.Mutex
  140. }
  141. func (Config *IRCConfig) GetNick() string {
  142. Config.Mutex.Lock()
  143. defer Config.Mutex.Unlock()
  144. return Config.MyNick
  145. }
  146. func (Config *IRCConfig) SetNick(nick string) {
  147. Config.Mutex.Lock()
  148. defer Config.Mutex.Unlock()
  149. Config.MyNick = nick
  150. }
  151. // Writer *bufio.Writer
  152. func (Config *IRCConfig) IsAuto(ch string) bool {
  153. return StrInArray(Config.AutoJoin, ch)
  154. }
  155. func (Config *IRCConfig) Connect() bool {
  156. var err error
  157. if Config.Flood_Num == 0 {
  158. Config.Flood_Num = 5
  159. }
  160. if Config.Flood_Time == 0 {
  161. Config.Flood_Time = 10
  162. }
  163. if Config.Flood_Delay == 0 {
  164. Config.Flood_Delay = 1000
  165. }
  166. if Config.UseSASL {
  167. if !Config.UseTLS {
  168. log.Println("Can't UseSASL if not using UseTLS")
  169. Config.UseSASL = false
  170. }
  171. }
  172. Config.Registered = false
  173. if Config.ReadChannel == nil {
  174. log.Println("Warning: ReadChannel is nil.")
  175. }
  176. if Config.UseTLS {
  177. var tlsConfig tls.Config
  178. if !Config.Insecure {
  179. certPool := x509.NewCertPool()
  180. tlsConfig.ClientCAs = certPool
  181. tlsConfig.InsecureSkipVerify = false
  182. } else {
  183. tlsConfig.InsecureSkipVerify = true
  184. }
  185. Config.Socket, err = tls.Dial("tcp", Config.Hostname+":"+strconv.Itoa(Config.Port), &tlsConfig)
  186. if err != nil {
  187. log.Fatal("tls.Dial:", err)
  188. }
  189. // Config.Writer = bufio.NewWriter(Config.TLSSocket)
  190. Config.Reader = bufio.NewReader(Config.Socket)
  191. } else {
  192. Config.Socket, err = net.Dial("tcp", Config.Hostname+":"+strconv.Itoa(Config.Port))
  193. if err != nil {
  194. log.Fatal("net.Dial:", err)
  195. }
  196. // Config.Writer = bufio.NewWriter(Config.Socket)
  197. Config.Reader = bufio.NewReader(Config.Socket)
  198. }
  199. // WriteChannel may contain a message when we're trying to PriorityWrite from sigChannel.
  200. Config.WriteChannel = make(chan IRCWrite, 3)
  201. Config.DelChannel = make(chan string)
  202. Config.ISupport = make(map[string]string)
  203. // We are connected.
  204. go Config.WriterRoutine()
  205. Config.wg.Add(1)
  206. // Registration
  207. if Config.UseTLS && Config.UseSASL {
  208. Config.PriorityWrite("CAP REQ :sasl")
  209. }
  210. if Config.ServerPassword != "" {
  211. Config.PriorityWrite(fmt.Sprintf("PASS %s", Config.ServerPassword))
  212. }
  213. // Register nick
  214. Config.MyNick = Config.Nick
  215. Config.PriorityWrite(fmt.Sprintf("NICK %s", Config.Nick))
  216. Config.PriorityWrite(fmt.Sprintf("USER %s 0 * :%s", Config.Username, Config.Realname))
  217. // Config.Writer.Flush()
  218. go Config.ReaderRoutine()
  219. Config.wg.Add(1)
  220. return true
  221. }
  222. // Low level write to [TLS]Socket routine.
  223. func (Config *IRCConfig) write(output string) error {
  224. var err error
  225. if Config.Debug_Output {
  226. log.Println(">>", output)
  227. }
  228. output += "\r\n"
  229. /*
  230. if Config.UseTLS {
  231. _, err = Config.TLSSocket.Write([]byte(output))
  232. } else {
  233. */
  234. _, err = Config.Socket.Write([]byte(output))
  235. return err
  236. }
  237. func (Config *IRCConfig) WriterRoutine() {
  238. var err error
  239. var throttle ThrottleBuffer
  240. var Flood FloodTrack
  241. defer Config.wg.Done()
  242. throttle.init()
  243. Flood.Init(Config.Flood_Num, Config.Flood_Time)
  244. // signal handler
  245. var sigChannel chan os.Signal = make(chan os.Signal, 1)
  246. signal.Notify(sigChannel, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
  247. // Change this into a select with timeout.
  248. // Timeout, if there's something to be buffered.
  249. var gotSignal bool
  250. for {
  251. if throttle.Life_sucks {
  252. select {
  253. case output := <-Config.WriteChannel:
  254. if output.To == "" {
  255. err = Config.write(output.Output)
  256. if err != nil {
  257. log.Println("Writer:", err)
  258. return
  259. }
  260. continue
  261. }
  262. throttle.push(output.To, output.Output)
  263. case <-sigChannel:
  264. if !gotSignal {
  265. gotSignal = true
  266. log.Println("SIGNAL")
  267. /*
  268. // This should be handled now by Close().
  269. if Config.OnExit != nil {
  270. Config.OnExit()
  271. }
  272. */
  273. Config.PriorityWrite("QUIT :Received SIGINT")
  274. }
  275. // return
  276. continue
  277. // Config.Close()
  278. // return
  279. //os.Exit(2)
  280. case remove := <-Config.DelChannel:
  281. if Config.Debug_Output {
  282. log.Printf("Remove: [%s]\n", remove)
  283. }
  284. throttle.delete(remove)
  285. case <-time.After(time.Millisecond * time.Duration(Config.Flood_Delay)):
  286. // Send from the buffer
  287. // debugging the flood buffer
  288. // log.Printf("targets: %#v\n", targets)
  289. // log.Printf("last: %d\n", last)
  290. // log.Printf("buffer: %#v\n", buffer)
  291. var msg string = throttle.pop()
  292. err = Config.write(msg)
  293. if err != nil {
  294. log.Println("Writer:", err)
  295. }
  296. }
  297. } else {
  298. // Life is good.
  299. select {
  300. case <-sigChannel:
  301. if !gotSignal {
  302. gotSignal = true
  303. log.Println("SIGNAL")
  304. /*
  305. // This should now be handled by Close().
  306. if Config.OnExit != nil {
  307. Config.OnExit()
  308. }
  309. */
  310. Config.PriorityWrite("QUIT :Received SIGINT")
  311. }
  312. // return
  313. continue
  314. // Config.Close()
  315. // return
  316. // os.Exit(2)
  317. case remove := <-Config.DelChannel:
  318. if Config.Debug_Output {
  319. log.Printf("Remove: [%s]\n", remove)
  320. }
  321. throttle.delete(remove)
  322. case output := <-Config.WriteChannel:
  323. if output.To == "" {
  324. err = Config.write(output.Output)
  325. if err != nil {
  326. log.Println("Writer:", err)
  327. return
  328. }
  329. continue
  330. }
  331. if Flood.Full() {
  332. throttle.push(output.To, output.Output)
  333. } else {
  334. // Flood limits not reached
  335. Flood.Save()
  336. err = Config.write(output.Output)
  337. if err != nil {
  338. log.Println("Writer:", err)
  339. }
  340. }
  341. }
  342. }
  343. }
  344. log.Println("~WriterRoutine")
  345. }
  346. func (Config *IRCConfig) Close() {
  347. Config.Socket.Close()
  348. Config.PriorityWrite("")
  349. if Config.OnExit != nil {
  350. Config.OnExit()
  351. }
  352. Config.wg.Wait()
  353. }
  354. func RandomNick(nick string) string {
  355. var result string = nick + "-"
  356. result += strconv.Itoa(rand.Intn(1000))
  357. return result
  358. }
  359. func (Config *IRCConfig) PriorityWrite(output string) {
  360. Config.WriteChannel <- IRCWrite{To: "", Output: output}
  361. }
  362. func (Config *IRCConfig) WriteTo(to string, output string) {
  363. Config.WriteChannel <- IRCWrite{To: to, Output: output}
  364. }
  365. func (Config *IRCConfig) Msg(to string, message string) {
  366. Config.WriteTo(to, fmt.Sprintf("PRIVMSG %s :%s", to, message))
  367. }
  368. func (Config *IRCConfig) Notice(to string, message string) {
  369. Config.WriteTo(to, fmt.Sprintf("NOTICE %s :%s", to, message))
  370. }
  371. func (Config *IRCConfig) Action(to string, message string) {
  372. Config.WriteTo(to, fmt.Sprintf("PRIVMSG %s :\x01ACTION %s\x01", to, message))
  373. }
  374. func (Config *IRCConfig) ReaderRoutine() {
  375. defer Config.wg.Done()
  376. var registering bool
  377. // var identified bool
  378. for {
  379. var line string
  380. var err error
  381. var results IRCMsg
  382. line, err = Config.Reader.ReadString('\n')
  383. if err == nil {
  384. line = strings.Trim(line, "\r\n")
  385. if Config.Debug_Output {
  386. log.Println("<<", line)
  387. }
  388. results = IRCParse(line)
  389. switch results.Cmd {
  390. case "PING":
  391. // Ping from Server
  392. Config.PriorityWrite("PONG " + results.Msg)
  393. case "005":
  394. var support string
  395. for _, support = range results.MsgParts[3:] {
  396. if strings.Contains(support, "=") {
  397. var suppart []string = strings.Split(support, "=")
  398. Config.ISupport[suppart[0]] = suppart[1]
  399. } else {
  400. Config.ISupport[support] = ""
  401. }
  402. }
  403. case "433":
  404. if !registering {
  405. // Nick already in use!
  406. var newNick string = RandomNick(Config.Nick)
  407. Config.MyNick = newNick
  408. Config.PriorityWrite("NICK " + newNick)
  409. }
  410. case "PRIVMSG":
  411. if (results.Msg[0] == '\x01') && (results.Msg[len(results.Msg)-1] == '\x01') {
  412. // ACTION
  413. results.Cmd = "CTCP"
  414. results.Msg = results.Msg[1 : len(results.Msg)-1]
  415. if Config.Debug_Output {
  416. log.Println("CTCP:", results.Msg)
  417. }
  418. // Process CTCP commands
  419. if strings.HasPrefix(results.Msg, "ACTION ") {
  420. results.Cmd = "ACTION"
  421. results.Msg = results.Msg[7:]
  422. }
  423. if strings.HasPrefix(results.Msg, "PING ") {
  424. Config.WriteTo(IRCNick(results.From),
  425. fmt.Sprintf("NOTICE %s :\x01PING %s\x01",
  426. IRCNick(results.From),
  427. results.Msg[5:]))
  428. }
  429. if results.Msg == "VERSION" {
  430. // Send version reply
  431. var version string
  432. if Config.Version != "" {
  433. version = Config.Version + " " + VERSION
  434. } else {
  435. version = VERSION
  436. }
  437. Config.WriteTo(IRCNick(results.From),
  438. fmt.Sprintf("NOTICE %s :\x01VERSION %s\x01",
  439. IRCNick(results.From), version))
  440. }
  441. if results.Msg == "TIME" {
  442. // Send time reply
  443. var now time.Time = time.Now()
  444. Config.WriteTo(IRCNick(results.From),
  445. fmt.Sprintf("NOTICE %s :\x01TIME %s\x01",
  446. IRCNick(results.From),
  447. now.Format(time.ANSIC)))
  448. }
  449. }
  450. }
  451. } else {
  452. // This is likely, 2022/04/05 10:11:41 ReadString: EOF
  453. if err != io.EOF {
  454. log.Println("ReadString:", err)
  455. }
  456. close(Config.ReadChannel)
  457. return
  458. }
  459. var msg IRCMsg = results
  460. /*
  461. IRCMsg{MsgParts: results}
  462. if len(results) >= 3 {
  463. msg.From = IRCNick(results[0])
  464. msg.Cmd = results[1]
  465. msg.To = results[2]
  466. if len(results) >= 4 {
  467. msg.Msg = results[3]
  468. }
  469. } else {
  470. msg.Cmd = results[0]
  471. }
  472. */
  473. if !Config.Debug_Output {
  474. if msg.Cmd == "ERROR" || msg.Cmd[0] == '4' || msg.Cmd[0] == '5' {
  475. // Always log errors.
  476. log.Println("<<", line)
  477. }
  478. }
  479. if msg.Cmd == "401" || msg.Cmd == "404" {
  480. // No such nick/channel
  481. log.Printf("Remove %s from buffer.", msg.MsgParts[3])
  482. Config.DelChannel <- msg.MsgParts[3]
  483. }
  484. if !Config.Registered {
  485. // We're not registered yet
  486. // Answer the queries for SASL authentication
  487. if msg.Cmd == "CAP" && msg.MsgParts[3] == "ACK" {
  488. Config.PriorityWrite("AUTHENTICATE PLAIN")
  489. }
  490. if msg.Cmd == "CAP" && msg.MsgParts[3] == "NAK" {
  491. // SASL Authentication failed/not available.
  492. Config.PriorityWrite("CAP END")
  493. Config.UseSASL = false
  494. }
  495. // msg.Cmd == "AUTH..."
  496. if msg.MsgParts[0] == "AUTHENTICATE" && msg.MsgParts[1] == "+" {
  497. var userpass string = fmt.Sprintf("\x00%s\x00%s", Config.Nick, Config.Password)
  498. var b64 string = base64.StdEncoding.EncodeToString([]byte(userpass))
  499. Config.PriorityWrite("AUTHENTICATE " + b64)
  500. }
  501. if msg.Cmd == "903" {
  502. // Success SASL
  503. Config.PriorityWrite("CAP END")
  504. Config.Registered = true
  505. }
  506. if msg.Cmd == "904" {
  507. // Failed SASL
  508. Config.PriorityWrite("CAP END")
  509. // Should we exit here?
  510. Config.UseSASL = false
  511. }
  512. /*
  513. 2022/04/06 19:12:11 << :[email protected] NOTICE meow :This nickname is registered and protected. If it is your
  514. 2022/04/06 19:12:11 << :[email protected] NOTICE meow :nick, type /msg NickServ IDENTIFY password. Otherwise,
  515. 2022/04/06 19:12:11 << :[email protected] NOTICE meow :please choose a different nick.
  516. */
  517. if (msg.From == "NickServ") && (msg.Cmd == "NOTICE") {
  518. if strings.Contains(msg.Msg, "IDENTIFY") && Config.Password != "" {
  519. Config.PriorityWrite(fmt.Sprintf("NS IDENTIFY %s", Config.Password))
  520. }
  521. // :[email protected] NOTICE meow :Password accepted - you are now recognized.
  522. }
  523. if !Config.UseSASL && (msg.Cmd == "900") {
  524. Config.Registered = true
  525. }
  526. }
  527. // This is a better way of knowing when we've identified for services
  528. if (msg.Cmd == "MODE") && (msg.To == Config.MyNick) {
  529. // This should probably be look for + and contains "r"
  530. if (msg.Msg[0] == '+') && (strings.Contains(msg.Msg, "r")) {
  531. Config.ReadChannel <- IRCMsg{Cmd: "Identified"}
  532. // identified = true
  533. }
  534. if len(Config.AutoJoin) > 0 {
  535. Config.PriorityWrite("JOIN " + strings.Join(Config.AutoJoin, ","))
  536. }
  537. }
  538. if msg.Cmd == "KICK" {
  539. // Were we kicked, is channel in AutoJoin?
  540. // 2022/04/13 20:02:52 << :[email protected] KICK #bugz meow-bot :bugz
  541. // Msg: ircclient.IRCMsg{MsgParts:[]string{":[email protected]", "KICK", "#bugz", "meow-bot", "bugz"}, From:"bugz", To:"#bugz", Cmd:"KICK", Msg:"meow-bot"}
  542. if msg.MsgParts[3] == Config.MyNick {
  543. if Config.IsAuto(msg.To) {
  544. // Yes, we were kicked from AutoJoin channel
  545. time.AfterFunc(time.Duration(Config.RejoinDelay)*time.Millisecond, func() { Config.WriteTo(msg.To, "JOIN "+msg.To) })
  546. }
  547. }
  548. }
  549. /*
  550. // Needs rate limit, it doesn't always work. (if they're not on the HOP+ list)
  551. if msg.Cmd == "474" && identified {
  552. :irc.red-green.com 474 meow-bot #chat :Cannot join channel (+b)
  553. Msg: ircclient.IRCMsg{MsgParts:[]string{":irc.red-green.com", "474", "meow-bot", "#chat", "Cannot join channel (+b)"}, From:"irc.red-green.com", To:"meow-bot", Cmd:"474", Msg:"#chat"}
  554. :[email protected] NOTICE meow-bot :Access denied.
  555. Msg: ircclient.IRCMsg{MsgParts:[]string{":[email protected]", "NOTICE", "meow-bot", "Access denied."}, From:"ChanServ", To:"meow-bot", Cmd:"NOTICE", Msg:"Access denied."}
  556. if Config.IsAuto(msg.MsgParts[3]) {
  557. Config.PriorityWrite(fmt.Sprintf("CS UNBAN %s", msg.MsgParts[3]))
  558. time.AfterFunc(time.Duration(Config.RejoinDelay)*time.Millisecond, func() { Config.WriteTo(msg.To, "JOIN "+msg.MsgParts[3]) })
  559. }
  560. }
  561. */
  562. if Config.ReadChannel != nil {
  563. Config.ReadChannel <- msg
  564. }
  565. if (msg.Cmd == "376") || (msg.Cmd == "422") {
  566. // End MOTD, or MOTD Missing
  567. var reg IRCMsg = IRCMsg{Cmd: "EndMOTD"}
  568. Config.ReadChannel <- reg
  569. registering = true
  570. }
  571. if msg.Cmd == "NICK" {
  572. // :meow NICK :meow-bot
  573. if msg.From == Config.MyNick {
  574. Config.SetNick(msg.Msg)
  575. if Config.Debug_Output {
  576. log.Println("Nick is now:", Config.MyNick)
  577. }
  578. }
  579. }
  580. }
  581. }