libotr_test_helper.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. // This code can be compiled and used to test the otr package against libotr.
  5. // See otr_test.go.
  6. // +build ignore
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <unistd.h>
  10. #include <proto.h>
  11. #include <message.h>
  12. #include <privkey.h>
  13. static int g_session_established = 0;
  14. OtrlPolicy policy(void *opdata, ConnContext *context) {
  15. return OTRL_POLICY_ALWAYS;
  16. }
  17. int is_logged_in(void *opdata, const char *accountname, const char *protocol, const char *recipient) {
  18. return 1;
  19. }
  20. void inject_message(void *opdata, const char *accountname, const char *protocol, const char *recipient, const char *message) {
  21. printf("%s\n", message);
  22. fflush(stdout);
  23. fprintf(stderr, "libotr helper sent: %s\n", message);
  24. }
  25. void update_context_list(void *opdata) {
  26. }
  27. void new_fingerprint(void *opdata, OtrlUserState us, const char *accountname, const char *protocol, const char *username, unsigned char fingerprint[20]) {
  28. fprintf(stderr, "NEW FINGERPRINT\n");
  29. g_session_established = 1;
  30. }
  31. void write_fingerprints(void *opdata) {
  32. }
  33. void gone_secure(void *opdata, ConnContext *context) {
  34. }
  35. void gone_insecure(void *opdata, ConnContext *context) {
  36. }
  37. void still_secure(void *opdata, ConnContext *context, int is_reply) {
  38. }
  39. int max_message_size(void *opdata, ConnContext *context) {
  40. return 99999;
  41. }
  42. const char *account_name(void *opdata, const char *account, const char *protocol) {
  43. return "ACCOUNT";
  44. }
  45. void account_name_free(void *opdata, const char *account_name) {
  46. }
  47. const char *error_message(void *opdata, ConnContext *context, OtrlErrorCode err_code) {
  48. return "ERR";
  49. }
  50. void error_message_free(void *opdata, const char *msg) {
  51. }
  52. void resent_msg_prefix_free(void *opdata, const char *prefix) {
  53. }
  54. void handle_smp_event(void *opdata, OtrlSMPEvent smp_event, ConnContext *context, unsigned short progress_event, char *question) {
  55. }
  56. void handle_msg_event(void *opdata, OtrlMessageEvent msg_event, ConnContext *context, const char *message, gcry_error_t err) {
  57. fprintf(stderr, "msg event: %d %s\n", msg_event, message);
  58. }
  59. OtrlMessageAppOps uiops = {
  60. policy,
  61. NULL,
  62. is_logged_in,
  63. inject_message,
  64. update_context_list,
  65. new_fingerprint,
  66. write_fingerprints,
  67. gone_secure,
  68. gone_insecure,
  69. still_secure,
  70. max_message_size,
  71. account_name,
  72. account_name_free,
  73. NULL, /* received_symkey */
  74. error_message,
  75. error_message_free,
  76. NULL, /* resent_msg_prefix */
  77. resent_msg_prefix_free,
  78. handle_smp_event,
  79. handle_msg_event,
  80. NULL /* create_instag */,
  81. NULL /* convert_msg */,
  82. NULL /* convert_free */,
  83. NULL /* timer_control */,
  84. };
  85. static const char kPrivateKeyData[] = "(privkeys (account (name \"account\") (protocol proto) (private-key (dsa (p #00FC07ABCF0DC916AFF6E9AE47BEF60C7AB9B4D6B2469E436630E36F8A489BE812486A09F30B71224508654940A835301ACC525A4FF133FC152CC53DCC59D65C30A54F1993FE13FE63E5823D4C746DB21B90F9B9C00B49EC7404AB1D929BA7FBA12F2E45C6E0A651689750E8528AB8C031D3561FECEE72EBB4A090D450A9B7A857#) (q #00997BD266EF7B1F60A5C23F3A741F2AEFD07A2081#) (g #535E360E8A95EBA46A4F7DE50AD6E9B2A6DB785A66B64EB9F20338D2A3E8FB0E94725848F1AA6CC567CB83A1CC517EC806F2E92EAE71457E80B2210A189B91250779434B41FC8A8873F6DB94BEA7D177F5D59E7E114EE10A49CFD9CEF88AE43387023B672927BA74B04EB6BBB5E57597766A2F9CE3857D7ACE3E1E3BC1FC6F26#) (y #0AC8670AD767D7A8D9D14CC1AC6744CD7D76F993B77FFD9E39DF01E5A6536EF65E775FCEF2A983E2A19BD6415500F6979715D9FD1257E1FE2B6F5E1E74B333079E7C880D39868462A93454B41877BE62E5EF0A041C2EE9C9E76BD1E12AE25D9628DECB097025DD625EF49C3258A1A3C0FF501E3DC673B76D7BABF349009B6ECF#) (x #14D0345A3562C480A039E3C72764F72D79043216#)))))\n";
  86. int
  87. main() {
  88. OTRL_INIT;
  89. // We have to write the private key information to a file because the libotr
  90. // API demands a filename to read from.
  91. const char *tmpdir = "/tmp";
  92. if (getenv("TMP")) {
  93. tmpdir = getenv("TMP");
  94. }
  95. char private_key_file[256];
  96. snprintf(private_key_file, sizeof(private_key_file), "%s/libotr_test_helper_privatekeys-XXXXXX", tmpdir);
  97. int fd = mkstemp(private_key_file);
  98. if (fd == -1) {
  99. perror("creating temp file");
  100. }
  101. write(fd, kPrivateKeyData, sizeof(kPrivateKeyData)-1);
  102. close(fd);
  103. OtrlUserState userstate = otrl_userstate_create();
  104. otrl_privkey_read(userstate, private_key_file);
  105. unlink(private_key_file);
  106. fprintf(stderr, "libotr helper started\n");
  107. char buf[4096];
  108. for (;;) {
  109. char* message = fgets(buf, sizeof(buf), stdin);
  110. if (strlen(message) == 0) {
  111. break;
  112. }
  113. message[strlen(message) - 1] = 0;
  114. fprintf(stderr, "libotr helper got: %s\n", message);
  115. char *newmessage = NULL;
  116. OtrlTLV *tlvs;
  117. int ignore_message = otrl_message_receiving(userstate, &uiops, NULL, "account", "proto", "peer", message, &newmessage, &tlvs, NULL, NULL, NULL);
  118. if (tlvs) {
  119. otrl_tlv_free(tlvs);
  120. }
  121. if (newmessage != NULL) {
  122. fprintf(stderr, "libotr got: %s\n", newmessage);
  123. otrl_message_free(newmessage);
  124. gcry_error_t err;
  125. char *newmessage = NULL;
  126. err = otrl_message_sending(userstate, &uiops, NULL, "account", "proto", "peer", 0, "test message", NULL, &newmessage, OTRL_FRAGMENT_SEND_SKIP, NULL, NULL, NULL);
  127. if (newmessage == NULL) {
  128. fprintf(stderr, "libotr didn't encrypt message\n");
  129. return 1;
  130. }
  131. write(1, newmessage, strlen(newmessage));
  132. write(1, "\n", 1);
  133. fprintf(stderr, "libotr sent: %s\n", newmessage);
  134. otrl_message_free(newmessage);
  135. g_session_established = 0;
  136. write(1, "?OTRv2?\n", 8);
  137. fprintf(stderr, "libotr sent: ?OTRv2\n");
  138. }
  139. }
  140. return 0;
  141. }