otr_test.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. // Copyright 2012 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package otr
  5. import (
  6. "bufio"
  7. "bytes"
  8. "crypto/rand"
  9. "encoding/hex"
  10. "math/big"
  11. "os"
  12. "os/exec"
  13. "testing"
  14. )
  15. var isQueryTests = []struct {
  16. msg string
  17. expectedVersion int
  18. }{
  19. {"foo", 0},
  20. {"?OtR", 0},
  21. {"?OtR?", 0},
  22. {"?OTR?", 0},
  23. {"?OTRv?", 0},
  24. {"?OTRv1?", 0},
  25. {"?OTR?v1?", 0},
  26. {"?OTR?v?", 0},
  27. {"?OTR?v2?", 2},
  28. {"?OTRv2?", 2},
  29. {"?OTRv23?", 2},
  30. {"?OTRv23 ?", 0},
  31. }
  32. func TestIsQuery(t *testing.T) {
  33. for i, test := range isQueryTests {
  34. version := isQuery([]byte(test.msg))
  35. if version != test.expectedVersion {
  36. t.Errorf("#%d: got %d, want %d", i, version, test.expectedVersion)
  37. }
  38. }
  39. }
  40. var alicePrivateKeyHex = "000000000080c81c2cb2eb729b7e6fd48e975a932c638b3a9055478583afa46755683e30102447f6da2d8bec9f386bbb5da6403b0040fee8650b6ab2d7f32c55ab017ae9b6aec8c324ab5844784e9a80e194830d548fb7f09a0410df2c4d5c8bc2b3e9ad484e65412be689cf0834694e0839fb2954021521ffdffb8f5c32c14dbf2020b3ce7500000014da4591d58def96de61aea7b04a8405fe1609308d000000808ddd5cb0b9d66956e3dea5a915d9aba9d8a6e7053b74dadb2fc52f9fe4e5bcc487d2305485ed95fed026ad93f06ebb8c9e8baf693b7887132c7ffdd3b0f72f4002ff4ed56583ca7c54458f8c068ca3e8a4dfa309d1dd5d34e2a4b68e6f4338835e5e0fb4317c9e4c7e4806dafda3ef459cd563775a586dd91b1319f72621bf3f00000080b8147e74d8c45e6318c37731b8b33b984a795b3653c2cd1d65cc99efe097cb7eb2fa49569bab5aab6e8a1c261a27d0f7840a5e80b317e6683042b59b6dceca2879c6ffc877a465be690c15e4a42f9a7588e79b10faac11b1ce3741fcef7aba8ce05327a2c16d279ee1b3d77eb783fb10e3356caa25635331e26dd42b8396c4d00000001420bec691fea37ecea58a5c717142f0b804452f57"
  41. var aliceFingerprintHex = "0bb01c360424522e94ee9c346ce877a1a4288b2f"
  42. var bobPrivateKeyHex = "000000000080a5138eb3d3eb9c1d85716faecadb718f87d31aaed1157671d7fee7e488f95e8e0ba60ad449ec732710a7dec5190f7182af2e2f98312d98497221dff160fd68033dd4f3a33b7c078d0d9f66e26847e76ca7447d4bab35486045090572863d9e4454777f24d6706f63e02548dfec2d0a620af37bbc1d24f884708a212c343b480d00000014e9c58f0ea21a5e4dfd9f44b6a9f7f6a9961a8fa9000000803c4d111aebd62d3c50c2889d420a32cdf1e98b70affcc1fcf44d59cca2eb019f6b774ef88153fb9b9615441a5fe25ea2d11b74ce922ca0232bd81b3c0fcac2a95b20cb6e6c0c5c1ace2e26f65dc43c751af0edbb10d669890e8ab6beea91410b8b2187af1a8347627a06ecea7e0f772c28aae9461301e83884860c9b656c722f0000008065af8625a555ea0e008cd04743671a3cda21162e83af045725db2eb2bb52712708dc0cc1a84c08b3649b88a966974bde27d8612c2861792ec9f08786a246fcadd6d8d3a81a32287745f309238f47618c2bd7612cb8b02d940571e0f30b96420bcd462ff542901b46109b1e5ad6423744448d20a57818a8cbb1647d0fea3b664e0000001440f9f2eb554cb00d45a5826b54bfa419b6980e48"
  43. func TestKeySerialization(t *testing.T) {
  44. var priv PrivateKey
  45. alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex)
  46. rest, ok := priv.Parse(alicePrivateKey)
  47. if !ok {
  48. t.Error("failed to parse private key")
  49. }
  50. if len(rest) > 0 {
  51. t.Error("data remaining after parsing private key")
  52. }
  53. out := priv.Serialize(nil)
  54. if !bytes.Equal(alicePrivateKey, out) {
  55. t.Errorf("serialization (%x) is not equal to original (%x)", out, alicePrivateKey)
  56. }
  57. aliceFingerprint, _ := hex.DecodeString(aliceFingerprintHex)
  58. fingerprint := priv.PublicKey.Fingerprint()
  59. if !bytes.Equal(aliceFingerprint, fingerprint) {
  60. t.Errorf("fingerprint (%x) is not equal to expected value (%x)", fingerprint, aliceFingerprint)
  61. }
  62. }
  63. const libOTRPrivateKey = `(privkeys
  64. (account
  65. (name "foo@example.com")
  66. (protocol prpl-jabber)
  67. (private-key
  68. (dsa
  69. (p #00FC07ABCF0DC916AFF6E9AE47BEF60C7AB9B4D6B2469E436630E36F8A489BE812486A09F30B71224508654940A835301ACC525A4FF133FC152CC53DCC59D65C30A54F1993FE13FE63E5823D4C746DB21B90F9B9C00B49EC7404AB1D929BA7FBA12F2E45C6E0A651689750E8528AB8C031D3561FECEE72EBB4A090D450A9B7A857#)
  70. (q #00997BD266EF7B1F60A5C23F3A741F2AEFD07A2081#)
  71. (g #535E360E8A95EBA46A4F7DE50AD6E9B2A6DB785A66B64EB9F20338D2A3E8FB0E94725848F1AA6CC567CB83A1CC517EC806F2E92EAE71457E80B2210A189B91250779434B41FC8A8873F6DB94BEA7D177F5D59E7E114EE10A49CFD9CEF88AE43387023B672927BA74B04EB6BBB5E57597766A2F9CE3857D7ACE3E1E3BC1FC6F26#)
  72. (y #0AC8670AD767D7A8D9D14CC1AC6744CD7D76F993B77FFD9E39DF01E5A6536EF65E775FCEF2A983E2A19BD6415500F6979715D9FD1257E1FE2B6F5E1E74B333079E7C880D39868462A93454B41877BE62E5EF0A041C2EE9C9E76BD1E12AE25D9628DECB097025DD625EF49C3258A1A3C0FF501E3DC673B76D7BABF349009B6ECF#)
  73. (x #14D0345A3562C480A039E3C72764F72D79043216#)
  74. )
  75. )
  76. )
  77. )`
  78. func TestParseLibOTRPrivateKey(t *testing.T) {
  79. var priv PrivateKey
  80. if !priv.Import([]byte(libOTRPrivateKey)) {
  81. t.Fatalf("Failed to import sample private key")
  82. }
  83. }
  84. func TestSignVerify(t *testing.T) {
  85. var priv PrivateKey
  86. alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex)
  87. _, ok := priv.Parse(alicePrivateKey)
  88. if !ok {
  89. t.Error("failed to parse private key")
  90. }
  91. var msg [32]byte
  92. rand.Reader.Read(msg[:])
  93. sig := priv.Sign(rand.Reader, msg[:])
  94. rest, ok := priv.PublicKey.Verify(msg[:], sig)
  95. if !ok {
  96. t.Errorf("signature (%x) of %x failed to verify", sig, msg[:])
  97. } else if len(rest) > 0 {
  98. t.Error("signature data remains after verification")
  99. }
  100. sig[10] ^= 80
  101. _, ok = priv.PublicKey.Verify(msg[:], sig)
  102. if ok {
  103. t.Errorf("corrupted signature (%x) of %x verified", sig, msg[:])
  104. }
  105. }
  106. func TestConversation(t *testing.T) {
  107. alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex)
  108. bobPrivateKey, _ := hex.DecodeString(bobPrivateKeyHex)
  109. var alice, bob Conversation
  110. alice.PrivateKey = new(PrivateKey)
  111. bob.PrivateKey = new(PrivateKey)
  112. alice.PrivateKey.Parse(alicePrivateKey)
  113. bob.PrivateKey.Parse(bobPrivateKey)
  114. alice.FragmentSize = 100
  115. bob.FragmentSize = 100
  116. var alicesMessage, bobsMessage [][]byte
  117. var out []byte
  118. var aliceChange, bobChange SecurityChange
  119. var err error
  120. alicesMessage = append(alicesMessage, []byte(QueryMessage))
  121. if alice.IsEncrypted() {
  122. t.Error("Alice believes that the conversation is secure before we've started")
  123. }
  124. if bob.IsEncrypted() {
  125. t.Error("Bob believes that the conversation is secure before we've started")
  126. }
  127. for round := 0; len(alicesMessage) > 0 || len(bobsMessage) > 0; round++ {
  128. bobsMessage = nil
  129. for i, msg := range alicesMessage {
  130. out, _, bobChange, bobsMessage, err = bob.Receive(msg)
  131. if len(out) > 0 {
  132. t.Errorf("Bob generated output during key exchange, round %d, message %d", round, i)
  133. }
  134. if err != nil {
  135. t.Fatalf("Bob returned an error, round %d, message %d (%x): %s", round, i, msg, err)
  136. }
  137. if len(bobsMessage) > 0 && i != len(alicesMessage)-1 {
  138. t.Errorf("Bob produced output while processing a fragment, round %d, message %d", round, i)
  139. }
  140. }
  141. alicesMessage = nil
  142. for i, msg := range bobsMessage {
  143. out, _, aliceChange, alicesMessage, err = alice.Receive(msg)
  144. if len(out) > 0 {
  145. t.Errorf("Alice generated output during key exchange, round %d, message %d", round, i)
  146. }
  147. if err != nil {
  148. t.Fatalf("Alice returned an error, round %d, message %d (%x): %s", round, i, msg, err)
  149. }
  150. if len(alicesMessage) > 0 && i != len(bobsMessage)-1 {
  151. t.Errorf("Alice produced output while processing a fragment, round %d, message %d", round, i)
  152. }
  153. }
  154. }
  155. if aliceChange != NewKeys {
  156. t.Errorf("Alice terminated without signaling new keys")
  157. }
  158. if bobChange != NewKeys {
  159. t.Errorf("Bob terminated without signaling new keys")
  160. }
  161. if !bytes.Equal(alice.SSID[:], bob.SSID[:]) {
  162. t.Errorf("Session identifiers don't match. Alice has %x, Bob has %x", alice.SSID[:], bob.SSID[:])
  163. }
  164. if !alice.IsEncrypted() {
  165. t.Error("Alice doesn't believe that the conversation is secure")
  166. }
  167. if !bob.IsEncrypted() {
  168. t.Error("Bob doesn't believe that the conversation is secure")
  169. }
  170. var testMessage = []byte("hello Bob")
  171. alicesMessage, err = alice.Send(testMessage)
  172. for i, msg := range alicesMessage {
  173. out, encrypted, _, _, err := bob.Receive(msg)
  174. if err != nil {
  175. t.Errorf("Error generated while processing test message: %s", err.Error())
  176. }
  177. if len(out) > 0 {
  178. if i != len(alicesMessage)-1 {
  179. t.Fatal("Bob produced a message while processing a fragment of Alice's")
  180. }
  181. if !encrypted {
  182. t.Errorf("Message was not marked as encrypted")
  183. }
  184. if !bytes.Equal(out, testMessage) {
  185. t.Errorf("Message corrupted: got %x, want %x", out, testMessage)
  186. }
  187. }
  188. }
  189. }
  190. func TestGoodSMP(t *testing.T) {
  191. var alice, bob Conversation
  192. alice.smp.secret = new(big.Int).SetInt64(42)
  193. bob.smp.secret = alice.smp.secret
  194. var alicesMessages, bobsMessages []tlv
  195. var aliceComplete, bobComplete bool
  196. var err error
  197. var out tlv
  198. alicesMessages = alice.startSMP("")
  199. for round := 0; len(alicesMessages) > 0 || len(bobsMessages) > 0; round++ {
  200. bobsMessages = bobsMessages[:0]
  201. for i, msg := range alicesMessages {
  202. out, bobComplete, err = bob.processSMP(msg)
  203. if err != nil {
  204. t.Errorf("Error from Bob in round %d: %s", round, err)
  205. }
  206. if bobComplete && i != len(alicesMessages)-1 {
  207. t.Errorf("Bob returned a completed signal before processing all of Alice's messages in round %d", round)
  208. }
  209. if out.typ != 0 {
  210. bobsMessages = append(bobsMessages, out)
  211. }
  212. }
  213. alicesMessages = alicesMessages[:0]
  214. for i, msg := range bobsMessages {
  215. out, aliceComplete, err = alice.processSMP(msg)
  216. if err != nil {
  217. t.Errorf("Error from Alice in round %d: %s", round, err)
  218. }
  219. if aliceComplete && i != len(bobsMessages)-1 {
  220. t.Errorf("Alice returned a completed signal before processing all of Bob's messages in round %d", round)
  221. }
  222. if out.typ != 0 {
  223. alicesMessages = append(alicesMessages, out)
  224. }
  225. }
  226. }
  227. if !aliceComplete || !bobComplete {
  228. t.Errorf("SMP completed without both sides reporting success: alice: %v, bob: %v\n", aliceComplete, bobComplete)
  229. }
  230. }
  231. func TestBadSMP(t *testing.T) {
  232. var alice, bob Conversation
  233. alice.smp.secret = new(big.Int).SetInt64(42)
  234. bob.smp.secret = new(big.Int).SetInt64(43)
  235. var alicesMessages, bobsMessages []tlv
  236. alicesMessages = alice.startSMP("")
  237. for round := 0; len(alicesMessages) > 0 || len(bobsMessages) > 0; round++ {
  238. bobsMessages = bobsMessages[:0]
  239. for _, msg := range alicesMessages {
  240. out, complete, _ := bob.processSMP(msg)
  241. if complete {
  242. t.Errorf("Bob signaled completion in round %d", round)
  243. }
  244. if out.typ != 0 {
  245. bobsMessages = append(bobsMessages, out)
  246. }
  247. }
  248. alicesMessages = alicesMessages[:0]
  249. for _, msg := range bobsMessages {
  250. out, complete, _ := alice.processSMP(msg)
  251. if complete {
  252. t.Errorf("Alice signaled completion in round %d", round)
  253. }
  254. if out.typ != 0 {
  255. alicesMessages = append(alicesMessages, out)
  256. }
  257. }
  258. }
  259. }
  260. func TestAgainstLibOTR(t *testing.T) {
  261. // This test requires otr.c.test to be built as /tmp/a.out.
  262. // If enabled, this tests runs forever performing OTR handshakes in a
  263. // loop.
  264. return
  265. alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex)
  266. var alice Conversation
  267. alice.PrivateKey = new(PrivateKey)
  268. alice.PrivateKey.Parse(alicePrivateKey)
  269. cmd := exec.Command("/tmp/a.out")
  270. cmd.Stderr = os.Stderr
  271. out, err := cmd.StdinPipe()
  272. if err != nil {
  273. t.Fatal(err)
  274. }
  275. defer out.Close()
  276. stdout, err := cmd.StdoutPipe()
  277. if err != nil {
  278. t.Fatal(err)
  279. }
  280. in := bufio.NewReader(stdout)
  281. if err := cmd.Start(); err != nil {
  282. t.Fatal(err)
  283. }
  284. out.Write([]byte(QueryMessage))
  285. out.Write([]byte("\n"))
  286. var expectedText = []byte("test message")
  287. for {
  288. line, isPrefix, err := in.ReadLine()
  289. if isPrefix {
  290. t.Fatal("line from subprocess too long")
  291. }
  292. if err != nil {
  293. t.Fatal(err)
  294. }
  295. text, encrypted, change, alicesMessage, err := alice.Receive(line)
  296. if err != nil {
  297. t.Fatal(err)
  298. }
  299. for _, msg := range alicesMessage {
  300. out.Write(msg)
  301. out.Write([]byte("\n"))
  302. }
  303. if change == NewKeys {
  304. alicesMessage, err := alice.Send([]byte("Go -> libotr test message"))
  305. if err != nil {
  306. t.Errorf("error sending message: %s", err.Error())
  307. } else {
  308. for _, msg := range alicesMessage {
  309. out.Write(msg)
  310. out.Write([]byte("\n"))
  311. }
  312. }
  313. }
  314. if len(text) > 0 {
  315. if !bytes.Equal(text, expectedText) {
  316. t.Errorf("expected %x, but got %x", expectedText, text)
  317. }
  318. if !encrypted {
  319. t.Error("message wasn't encrypted")
  320. }
  321. }
  322. }
  323. }