irc-client.go 15 KB

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