client_test.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. package ircclient
  2. import (
  3. "bufio"
  4. "crypto/ecdsa"
  5. "crypto/elliptic"
  6. "crypto/rand"
  7. "crypto/tls"
  8. "crypto/x509"
  9. "crypto/x509/pkix"
  10. "encoding/base64"
  11. "encoding/pem"
  12. "fmt"
  13. "log"
  14. "math/big"
  15. rnd "math/rand"
  16. "net"
  17. "strconv"
  18. "strings"
  19. "testing"
  20. "time"
  21. )
  22. func setupSocket() (listen net.Listener, addr string) {
  23. // establish network socket connection to set Comm_handle
  24. var err error
  25. var listener net.Listener
  26. var address string
  27. listener, err = net.Listen("tcp", "127.0.0.1:0")
  28. if err != nil {
  29. panic(err)
  30. }
  31. // I only need address for making the connection.
  32. // Get address of listening socket
  33. address = listener.Addr().String()
  34. return listener, address
  35. }
  36. func generateKeyPair() (keypair tls.Certificate) {
  37. // generate test certificate
  38. priv, _ := ecdsa.GenerateKey(elliptic.P521(), rand.Reader)
  39. durationBefore, _ := time.ParseDuration("-1h")
  40. notBefore := time.Now().Add(durationBefore)
  41. durationAfter, _ := time.ParseDuration("1h")
  42. notAfter := time.Now().Add(durationAfter)
  43. serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 64)
  44. serialNumber, _ := rand.Int(rand.Reader, serialNumberLimit)
  45. template := x509.Certificate{
  46. SerialNumber: serialNumber,
  47. Subject: pkix.Name{
  48. Organization: []string{"Test Certificate"},
  49. },
  50. NotBefore: notBefore,
  51. NotAfter: notAfter,
  52. KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
  53. ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
  54. BasicConstraintsValid: true,
  55. IsCA: true,
  56. }
  57. template.IPAddresses = append(template.IPAddresses, net.ParseIP("127.0.0.1"))
  58. template.IPAddresses = append(template.IPAddresses, net.ParseIP("::"))
  59. derBytes, _ := x509.CreateCertificate(rand.Reader, &template, &template, &priv.PublicKey, priv)
  60. c := pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: derBytes})
  61. b, _ := x509.MarshalECPrivateKey(priv)
  62. k := pem.EncodeToMemory(&pem.Block{Type: "EC PRIVATE KEY", Bytes: b})
  63. listenerKeyPair, _ := tls.X509KeyPair(c, k)
  64. return listenerKeyPair
  65. }
  66. func setupTLSSocket() (listen net.Listener, addr string) {
  67. // establish network socket connection to set Comm_handle
  68. var err error
  69. var listener net.Listener
  70. var address string
  71. var tlsconfig tls.Config
  72. var keypair tls.Certificate = generateKeyPair()
  73. tlsconfig.Certificates = make([]tls.Certificate, 0)
  74. tlsconfig.Certificates = append(tlsconfig.Certificates, keypair)
  75. listener, err = tls.Listen("tcp", "127.0.0.1:0", &tlsconfig)
  76. if err != nil {
  77. panic(err)
  78. }
  79. // I only need address for making the connection.
  80. // Get address of listening socket
  81. address = listener.Addr().String()
  82. return listener, address
  83. }
  84. func ircWrite(server net.Conn, output string, t *testing.T) {
  85. t.Logf(">> %s\n", output)
  86. server.Write([]byte(output + "\r\n"))
  87. }
  88. // mock up an irc server
  89. func ircServer(listener net.Listener, t *testing.T, config *IRCConfig) {
  90. var server net.Conn
  91. var err error
  92. server, err = listener.Accept()
  93. if err != nil {
  94. t.Error("Failed to accept connection.")
  95. return
  96. }
  97. listener.Close()
  98. var reader *bufio.Reader = bufio.NewReader(server)
  99. var output, line, expect string
  100. var ping int64 = rnd.Int63()
  101. output = fmt.Sprintf("PING :%X", ping)
  102. ircWrite(server, output, t)
  103. var parts []string
  104. var hasNick, hasUser, hasPing, hasPass bool
  105. var capSASL, successSASL bool
  106. var part1 bool
  107. // part 1 : User, Nick, ServerPass and Ping reply
  108. for !part1 {
  109. line, err = reader.ReadString('\n')
  110. if err == nil {
  111. line = strings.Trim(line, "\r\n")
  112. // process the received line here
  113. parts = strings.Split(line, " ")
  114. t.Logf("<< %s", line)
  115. switch parts[0] {
  116. case "CAP":
  117. if config.UseTLS && config.UseSASL {
  118. if line == "CAP REQ :sasl" {
  119. // Acknowledge we support SASL
  120. ircWrite(server, ":irc.red-green.com CAP * ACK :sasl", t)
  121. capSASL = true
  122. }
  123. if line == "CAP END" {
  124. capSASL = true
  125. if successSASL {
  126. part1 = true
  127. }
  128. }
  129. }
  130. case "AUTHENTICATE":
  131. if capSASL {
  132. if line == "AUTHENTICATE PLAIN" {
  133. ircWrite(server, "AUTHENTICATE +", t)
  134. } else {
  135. // Process SASL auth message
  136. var auth64 string = parts[1]
  137. byteauth, _ := base64.StdEncoding.DecodeString(auth64)
  138. var auth string = string(byteauth)
  139. auth = strings.ReplaceAll(auth, "\x00", " ")
  140. t.Log(auth)
  141. expect = fmt.Sprintf(" %s %s", config.Nick, config.Password)
  142. if expect != auth {
  143. t.Errorf("Got %s, Expected %s", auth, expect)
  144. } else {
  145. // Success!
  146. ircWrite(server, fmt.Sprintf(":irc.red-green.com 900 %s %s!%[email protected] %s :You are now logged in as %s.",
  147. config.Nick, config.Nick, config.Username, config.Nick, config.Nick), t)
  148. ircWrite(server, fmt.Sprintf(":irc.red-green.com 903 %s :SASL authentication successful",
  149. config.Nick), t)
  150. successSASL = true
  151. }
  152. }
  153. }
  154. case "PASS":
  155. expect = fmt.Sprintf("PASS %s", config.ServerPassword)
  156. if expect != line {
  157. t.Errorf("Got %s, Expected %s", line, expect)
  158. } else {
  159. hasPass = true
  160. }
  161. case "NICK":
  162. expect = fmt.Sprintf("NICK %s", config.Nick)
  163. if expect != line {
  164. t.Errorf("Got %s, Expected %s", line, expect)
  165. } else {
  166. hasNick = true
  167. }
  168. case "USER":
  169. // USER meow-bot 0 * :Meooow! bugz is my owner.
  170. expect = fmt.Sprintf("USER %s 0 * :%s", config.Username, config.Realname)
  171. if expect != line {
  172. t.Errorf("Got %s, Expected %s", line, expect)
  173. } else {
  174. hasUser = true
  175. }
  176. case "PONG":
  177. expect = fmt.Sprintf("PONG %X", ping)
  178. if expect != line {
  179. t.Errorf("Got %s, Expected %s", line, expect)
  180. } else {
  181. hasPing = true
  182. }
  183. }
  184. if !part1 {
  185. if !capSASL && hasNick && hasUser && hasPing && ((config.ServerPassword == "") || hasPass) {
  186. part1 = true
  187. }
  188. }
  189. } else {
  190. t.Error("Read Error:", err)
  191. server.Close()
  192. return
  193. }
  194. }
  195. if !part1 {
  196. t.Error("Expected to pass part1 (user/nick/pong)")
  197. }
  198. // Display MOTD
  199. for _, line = range []string{":irc.red-green.com 001 %s :Welcome to the RedGreen IRC Network",
  200. ":irc.red-green.com 002 %s :Your host is irc.red-green.com, running version UnrealIRCd-5.2.0.1",
  201. ":irc.red-green.com 375 %s :- irc.red-green.com Message of the Day -",
  202. ":irc.red-green.com 372 %s :- ",
  203. ":irc.red-green.com 376 %s :End of /MOTD command.",
  204. } {
  205. output = fmt.Sprintf(line, config.Nick)
  206. ircWrite(server, output, t)
  207. }
  208. if config.UseSASL {
  209. if !successSASL {
  210. log.Println("Failed SASL Authentication.")
  211. }
  212. }
  213. // part 2: nickserv/register (if not already registered with SASL)
  214. var part2 bool
  215. if successSASL {
  216. ircWrite(server, fmt.Sprintf(":NickServ MODE %s :+r", config.Nick), t)
  217. part2 = true
  218. } else {
  219. for _, line = range []string{":[email protected] NOTICE %s :This nickname is registered and protected. If it is your",
  220. ":[email protected] NOTICE %s :nick, type \x02/msg NickServ IDENTIFY \x1fpassword\x1f\x02. Otherwise,"} {
  221. output = fmt.Sprintf(line, config.Nick)
  222. ircWrite(server, output, t)
  223. }
  224. }
  225. for !part2 {
  226. line, err = reader.ReadString('\n')
  227. if err == nil {
  228. line = strings.Trim(line, "\r\n")
  229. // process the received line here
  230. parts = strings.Split(line, " ")
  231. t.Logf("<< %s", line)
  232. switch parts[0] {
  233. case "NS":
  234. expect = fmt.Sprintf("NS IDENTIFY %s", config.Password)
  235. if expect != line {
  236. t.Errorf("Got %s, Expected %s", line, expect)
  237. }
  238. // ok, mark the user as registered
  239. output = fmt.Sprintf(":[email protected] NOTICE %s :Password accepted - you are now recognized.",
  240. config.Nick)
  241. ircWrite(server, output, t)
  242. output = fmt.Sprintf(":NickServ MODE %s :+r", config.Nick)
  243. ircWrite(server, output, t)
  244. part2 = true
  245. }
  246. } else {
  247. t.Error("Read Error:", err)
  248. server.Close()
  249. return
  250. }
  251. }
  252. if !part2 {
  253. t.Error("Expected to pass part2 (ns identify/+r)")
  254. }
  255. time.AfterFunc(time.Millisecond*time.Duration(50), func() { server.Close() })
  256. t.Log("Ok, Identified...")
  257. for {
  258. line, err = reader.ReadString('\n')
  259. if err == nil {
  260. line = strings.Trim(line, "\r\n")
  261. // process the received line here
  262. parts = strings.Split(line, " ")
  263. t.Logf("<< %s", line)
  264. } else {
  265. t.Log("Read Error:", err)
  266. return
  267. }
  268. }
  269. }
  270. func TestConnect(t *testing.T) {
  271. var config IRCConfig = IRCConfig{Nick: "test",
  272. Username: "test",
  273. Realname: "testing",
  274. Password: "12345",
  275. ServerPassword: "allow"}
  276. var listen net.Listener
  277. var address string
  278. listen, address = setupSocket()
  279. var parts []string = strings.Split(address, ":")
  280. config.Hostname = parts[0]
  281. config.Port, _ = strconv.Atoi(parts[1])
  282. go ircServer(listen, t, &config)
  283. var FromIRC chan IRCMsg
  284. FromIRC = make(chan IRCMsg)
  285. config.ReadChannel = FromIRC
  286. config.Connect()
  287. defer config.Close()
  288. var Msg IRCMsg
  289. var motd, identify bool
  290. for Msg = range FromIRC {
  291. if Msg.Cmd == "EndMOTD" {
  292. t.Log("Got EndMOTD")
  293. motd = true
  294. }
  295. if Msg.Cmd == "Identified" {
  296. t.Log("Identified")
  297. identify = true
  298. }
  299. }
  300. if !motd {
  301. t.Error("Missing EndMOTD")
  302. }
  303. if !identify {
  304. t.Error("Missing Identified")
  305. }
  306. if config.MyNick != config.Nick {
  307. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  308. }
  309. }
  310. func TestConnectTLS(t *testing.T) {
  311. var config IRCConfig = IRCConfig{Nick: "test",
  312. Username: "test",
  313. Realname: "testing",
  314. Password: "12345",
  315. UseTLS: true,
  316. UseSASL: true,
  317. Insecure: true,
  318. ServerPassword: "allow"}
  319. var listen net.Listener
  320. var address string
  321. listen, address = setupTLSSocket()
  322. var parts []string = strings.Split(address, ":")
  323. config.Hostname = parts[0]
  324. config.Port, _ = strconv.Atoi(parts[1])
  325. go ircServer(listen, t, &config)
  326. var FromIRC chan IRCMsg
  327. FromIRC = make(chan IRCMsg)
  328. config.ReadChannel = FromIRC
  329. config.Connect()
  330. defer config.Close()
  331. var Msg IRCMsg
  332. var motd, identify bool
  333. for Msg = range FromIRC {
  334. if Msg.Cmd == "EndMOTD" {
  335. t.Log("Got EndMOTD")
  336. motd = true
  337. }
  338. if Msg.Cmd == "Identified" {
  339. t.Log("Identified")
  340. identify = true
  341. }
  342. }
  343. if !motd {
  344. t.Error("Missing EndMOTD")
  345. }
  346. if !identify {
  347. t.Error("Missing Identified")
  348. }
  349. if config.MyNick != config.Nick {
  350. t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
  351. }
  352. }