otr_test.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  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 testMessages = [][]byte{
  171. []byte("hello"), []byte("bye"),
  172. }
  173. for j, testMessage := range testMessages {
  174. alicesMessage, err = alice.Send(testMessage)
  175. if len(alice.oldMACs) != 0 {
  176. t.Errorf("Alice has not revealed all MAC keys")
  177. }
  178. for i, msg := range alicesMessage {
  179. out, encrypted, _, _, err := bob.Receive(msg)
  180. if err != nil {
  181. t.Errorf("Error generated while processing test message: %s", err.Error())
  182. }
  183. if len(out) > 0 {
  184. if i != len(alicesMessage)-1 {
  185. t.Fatal("Bob produced a message while processing a fragment of Alice's")
  186. }
  187. if !encrypted {
  188. t.Errorf("Message was not marked as encrypted")
  189. }
  190. if !bytes.Equal(out, testMessage) {
  191. t.Errorf("Message corrupted: got %x, want %x", out, testMessage)
  192. }
  193. }
  194. }
  195. if j == 0 {
  196. if len(bob.oldMACs) != 0 {
  197. t.Errorf("Bob should not have MAC keys to reveal")
  198. }
  199. } else if len(bob.oldMACs) != 40 {
  200. t.Errorf("Bob does not have MAC keys to reveal")
  201. }
  202. bobsMessage, err = bob.Send(testMessage)
  203. if len(bob.oldMACs) != 0 {
  204. t.Errorf("Bob has not revealed all MAC keys")
  205. }
  206. for i, msg := range bobsMessage {
  207. out, encrypted, _, _, err := alice.Receive(msg)
  208. if err != nil {
  209. t.Errorf("Error generated while processing test message: %s", err.Error())
  210. }
  211. if len(out) > 0 {
  212. if i != len(bobsMessage)-1 {
  213. t.Fatal("Alice produced a message while processing a fragment of Bob's")
  214. }
  215. if !encrypted {
  216. t.Errorf("Message was not marked as encrypted")
  217. }
  218. if !bytes.Equal(out, testMessage) {
  219. t.Errorf("Message corrupted: got %x, want %x", out, testMessage)
  220. }
  221. }
  222. }
  223. if j == 0 {
  224. if len(alice.oldMACs) != 20 {
  225. t.Errorf("Alice does not have MAC keys to reveal")
  226. }
  227. } else if len(alice.oldMACs) != 40 {
  228. t.Errorf("Alice does not have MAC keys to reveal")
  229. }
  230. }
  231. }
  232. func TestGoodSMP(t *testing.T) {
  233. var alice, bob Conversation
  234. alice.smp.secret = new(big.Int).SetInt64(42)
  235. bob.smp.secret = alice.smp.secret
  236. var alicesMessages, bobsMessages []tlv
  237. var aliceComplete, bobComplete bool
  238. var err error
  239. var out tlv
  240. alicesMessages = alice.startSMP("")
  241. for round := 0; len(alicesMessages) > 0 || len(bobsMessages) > 0; round++ {
  242. bobsMessages = bobsMessages[:0]
  243. for i, msg := range alicesMessages {
  244. out, bobComplete, err = bob.processSMP(msg)
  245. if err != nil {
  246. t.Errorf("Error from Bob in round %d: %s", round, err)
  247. }
  248. if bobComplete && i != len(alicesMessages)-1 {
  249. t.Errorf("Bob returned a completed signal before processing all of Alice's messages in round %d", round)
  250. }
  251. if out.typ != 0 {
  252. bobsMessages = append(bobsMessages, out)
  253. }
  254. }
  255. alicesMessages = alicesMessages[:0]
  256. for i, msg := range bobsMessages {
  257. out, aliceComplete, err = alice.processSMP(msg)
  258. if err != nil {
  259. t.Errorf("Error from Alice in round %d: %s", round, err)
  260. }
  261. if aliceComplete && i != len(bobsMessages)-1 {
  262. t.Errorf("Alice returned a completed signal before processing all of Bob's messages in round %d", round)
  263. }
  264. if out.typ != 0 {
  265. alicesMessages = append(alicesMessages, out)
  266. }
  267. }
  268. }
  269. if !aliceComplete || !bobComplete {
  270. t.Errorf("SMP completed without both sides reporting success: alice: %v, bob: %v\n", aliceComplete, bobComplete)
  271. }
  272. }
  273. func TestBadSMP(t *testing.T) {
  274. var alice, bob Conversation
  275. alice.smp.secret = new(big.Int).SetInt64(42)
  276. bob.smp.secret = new(big.Int).SetInt64(43)
  277. var alicesMessages, bobsMessages []tlv
  278. alicesMessages = alice.startSMP("")
  279. for round := 0; len(alicesMessages) > 0 || len(bobsMessages) > 0; round++ {
  280. bobsMessages = bobsMessages[:0]
  281. for _, msg := range alicesMessages {
  282. out, complete, _ := bob.processSMP(msg)
  283. if complete {
  284. t.Errorf("Bob signaled completion in round %d", round)
  285. }
  286. if out.typ != 0 {
  287. bobsMessages = append(bobsMessages, out)
  288. }
  289. }
  290. alicesMessages = alicesMessages[:0]
  291. for _, msg := range bobsMessages {
  292. out, complete, _ := alice.processSMP(msg)
  293. if complete {
  294. t.Errorf("Alice signaled completion in round %d", round)
  295. }
  296. if out.typ != 0 {
  297. alicesMessages = append(alicesMessages, out)
  298. }
  299. }
  300. }
  301. }
  302. func TestAgainstLibOTR(t *testing.T) {
  303. // This test requires otr.c.test to be built as /tmp/a.out.
  304. // If enabled, this tests runs forever performing OTR handshakes in a
  305. // loop.
  306. return
  307. alicePrivateKey, _ := hex.DecodeString(alicePrivateKeyHex)
  308. var alice Conversation
  309. alice.PrivateKey = new(PrivateKey)
  310. alice.PrivateKey.Parse(alicePrivateKey)
  311. cmd := exec.Command("/tmp/a.out")
  312. cmd.Stderr = os.Stderr
  313. out, err := cmd.StdinPipe()
  314. if err != nil {
  315. t.Fatal(err)
  316. }
  317. defer out.Close()
  318. stdout, err := cmd.StdoutPipe()
  319. if err != nil {
  320. t.Fatal(err)
  321. }
  322. in := bufio.NewReader(stdout)
  323. if err := cmd.Start(); err != nil {
  324. t.Fatal(err)
  325. }
  326. out.Write([]byte(QueryMessage))
  327. out.Write([]byte("\n"))
  328. var expectedText = []byte("test message")
  329. for {
  330. line, isPrefix, err := in.ReadLine()
  331. if isPrefix {
  332. t.Fatal("line from subprocess too long")
  333. }
  334. if err != nil {
  335. t.Fatal(err)
  336. }
  337. text, encrypted, change, alicesMessage, err := alice.Receive(line)
  338. if err != nil {
  339. t.Fatal(err)
  340. }
  341. for _, msg := range alicesMessage {
  342. out.Write(msg)
  343. out.Write([]byte("\n"))
  344. }
  345. if change == NewKeys {
  346. alicesMessage, err := alice.Send([]byte("Go -> libotr test message"))
  347. if err != nil {
  348. t.Errorf("error sending message: %s", err.Error())
  349. } else {
  350. for _, msg := range alicesMessage {
  351. out.Write(msg)
  352. out.Write([]byte("\n"))
  353. }
  354. }
  355. }
  356. if len(text) > 0 {
  357. if !bytes.Equal(text, expectedText) {
  358. t.Errorf("expected %x, but got %x", expectedText, text)
  359. }
  360. if !encrypted {
  361. t.Error("message wasn't encrypted")
  362. }
  363. }
  364. }
  365. }