1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
|
/*
* Off-the-Record Messaging plugin for pidgin
* Copyright (C) 2004-2014 Ian Goldberg, Rob Smits,
* Chris Alexander, Willy Lew,
* Lisa Du, Nikita Borisov
* <otr@cypherpunks.ca>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* config.h */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* system headers */
#include <stdlib.h>
#include <string.h>
#include <assert.h>
/* libgcrypt headers */
#include <gcrypt.h>
/* purple headers */
#include "pidgin.h"
#include "notify.h"
#include "version.h"
#include "util.h"
#include "debug.h"
#include "core.h"
#ifdef USING_GTK
/* purple GTK headers */
#include "gtkplugin.h"
#endif
#ifdef ENABLE_NLS
#ifdef WIN32
/* On Win32, include win32dep.h from pidgin for correct definition
* of LOCALEDIR */
#include "win32dep.h"
#endif /* WIN32 */
/* internationalisation header */
#include <glib/gi18n-lib.h>
#else /* ENABLE_NLS */
#define _(x) (x)
#define N_(x) (x)
#endif /* ENABLE_NLS */
/* libotr headers */
#include <libotr/privkey.h>
#include <libotr/proto.h>
#include <libotr/tlv.h>
#include <libotr/message.h>
#include <libotr/userstate.h>
#include <libotr/instag.h>
/* purple-otr headers */
#include "ui.h"
#include "dialogs.h"
#include "otr-plugin.h"
#ifdef USING_GTK
/* purple-otr GTK headers */
#include <glib.h>
#include "gtk-ui.h"
#include "gtk-dialog.h"
/* Controls a beta warning/expiry dialog */
#define BETA_DIALOG 0
#if BETA_DIALOG && defined USING_GTK /* Only for beta */
#include "gtkblist.h"
#endif
#endif
/* If we're using glib on Windows, we need to use g_fopen to open files.
* On other platforms, it's also safe to use it. If we're not using
* glib, just use fopen. */
#ifdef USING_GTK
/* If we're cross-compiling, this might be wrong, so fix it. */
#ifdef WIN32
#undef G_OS_UNIX
#define G_OS_WIN32
#endif
#include <glib/gstdio.h>
#else
#define g_fopen fopen
#endif
PurplePlugin *otrg_plugin_handle;
/* We'll only use the one OtrlUserState. */
OtrlUserState otrg_plugin_userstate = NULL;
/* GLib HashTable for storing the maximum message size for various
* protocols. */
GHashTable* mms_table = NULL;
/* Send an IM from the given account to the given recipient. Display an
* error dialog if that account isn't currently logged in. */
void otrg_plugin_inject_message(PurpleAccount *account, const char *recipient,
const char *message)
{
PurpleConnection *connection;
connection = purple_account_get_connection(account);
if (!connection) {
const char *protocol = purple_account_get_protocol_id(account);
const char *accountname = purple_account_get_username(account);
PurplePlugin *p = purple_find_prpl(protocol);
char *msg = g_strdup_printf(_("You are not currently connected to "
"account %s (%s)."), accountname,
(p && p->info->name) ? p->info->name : _("Unknown"));
otrg_dialog_notify_error(accountname, protocol, recipient,
_("Not connected"), msg, NULL);
g_free(msg);
return;
}
serv_send_im(connection, recipient, message, 0);
}
/* Display a notification message for a particular accountname /
* protocol / username conversation. */
static void notify(void *opdata, OtrlNotifyLevel level,
const char *accountname, const char *protocol, const char *username,
const char *title, const char *primary, const char *secondary)
{
PurpleNotifyMsgType purplelevel = PURPLE_NOTIFY_MSG_ERROR;
switch (level) {
case OTRL_NOTIFY_ERROR:
purplelevel = PURPLE_NOTIFY_MSG_ERROR;
break;
case OTRL_NOTIFY_WARNING:
purplelevel = PURPLE_NOTIFY_MSG_WARNING;
break;
case OTRL_NOTIFY_INFO:
purplelevel = PURPLE_NOTIFY_MSG_INFO;
break;
}
otrg_dialog_notify_message(purplelevel, accountname, protocol,
username, title, primary, secondary);
}
/* Display an OTR control message for a particular accountname /
* protocol / username conversation. If force_create is non-zero and
* if the corresponding conversation window is not present, a new
* conversation window will be created and the message will be displayed
* there. If the message cannot be displayed, try notify() instead and
* return 1. Otherwise return 0 if message is successfully displayed. */
static int display_otr_message_or_notify(void *opdata, const char *accountname,
const char *protocol, const char *username, const char *msg,
int force_create, OtrlNotifyLevel level, const char *title,
const char *primary, const char *secondary)
{
if (otrg_dialog_display_otr_message(accountname, protocol,
username, msg, force_create)) {
notify(opdata, level, accountname, protocol, username, title, primary,
secondary);
return 1;
} else return 0;
}
static void log_message(void *opdata, const char *message)
{
purple_debug_info("otr", "%s", message);
}
static OtrlPolicy policy_cb(void *opdata, ConnContext *context)
{
PurpleAccount *account;
OtrlPolicy policy = OTRL_POLICY_DEFAULT;
OtrgUiPrefs prefs;
if (!context) return policy;
account = purple_accounts_find(context->accountname, context->protocol);
if (!account) return policy;
otrg_ui_get_prefs(&prefs, account, context->username);
return prefs.policy;
}
/* Generate a private key for the given accountname/protocol */
void otrg_plugin_create_privkey(const char *accountname,
const char *protocol)
{
OtrgDialogWaitHandle waithandle;
#ifndef WIN32
mode_t mask;
#endif /* WIN32 */
FILE *privf;
gchar *privkeyfile = g_build_filename(purple_user_dir(),
PRIVKEYFNAME, NULL);
if (!privkeyfile) {
fprintf(stderr, _("Out of memory building filenames!\n"));
return;
}
#ifndef WIN32
mask = umask (0077);
#endif /* WIN32 */
privf = g_fopen(privkeyfile, "w+b");
#ifndef WIN32
umask (mask);
#endif /* WIN32 */
g_free(privkeyfile);
if (!privf) {
fprintf(stderr, _("Could not write private key file\n"));
return;
}
waithandle = otrg_dialog_private_key_wait_start(accountname, protocol);
/* Generate the key */
otrl_privkey_generate_FILEp(otrg_plugin_userstate, privf,
accountname, protocol);
fclose(privf);
otrg_ui_update_fingerprint();
/* Mark the dialog as done. */
otrg_dialog_private_key_wait_done(waithandle);
}
static void create_privkey_cb(void *opdata, const char *accountname,
const char *protocol)
{
otrg_plugin_create_privkey(accountname, protocol);
}
/* Generate a instance tag for the given accountname/protocol */
void otrg_plugin_create_instag(const char *accountname,
const char *protocol)
{
FILE *instagf;
gchar *instagfile = g_build_filename(purple_user_dir(), INSTAGFNAME, NULL);
if (!instagfile) {
fprintf(stderr, _("Out of memory building filenames!\n"));
return;
}
instagf = g_fopen(instagfile, "w+b");
g_free(instagfile);
if (!instagf) {
fprintf(stderr, _("Could not write private key file\n"));
return;
}
/* Generate the instag */
otrl_instag_generate_FILEp(otrg_plugin_userstate, instagf,
accountname, protocol);
fclose(instagf);
}
static void create_instag_cb(void *opdata, const char *accountname,
const char *protocol)
{
otrg_plugin_create_instag(accountname, protocol);
}
static int is_logged_in_cb(void *opdata, const char *accountname,
const char *protocol, const char *recipient)
{
PurpleAccount *account;
PurpleBuddy *buddy;
account = purple_accounts_find(accountname, protocol);
if (!account) return -1;
buddy = purple_find_buddy(account, recipient);
if (!buddy) return -1;
return (PURPLE_BUDDY_IS_ONLINE(buddy));
}
static void inject_message_cb(void *opdata, const char *accountname,
const char *protocol, const char *recipient, const char *message)
{
PurpleAccount *account = purple_accounts_find(accountname, protocol);
if (!account) {
PurplePlugin *p = purple_find_prpl(protocol);
char *msg = g_strdup_printf(_("Unknown account %s (%s)."),
accountname,
(p && p->info->name) ? p->info->name : _("Unknown"));
otrg_dialog_notify_error(accountname, protocol, recipient,
_("Unknown account"), msg, NULL);
g_free(msg);
return;
}
otrg_plugin_inject_message(account, recipient, message);
}
static void update_context_list_cb(void *opdata)
{
otrg_ui_update_keylist();
}
static void confirm_fingerprint_cb(void *opdata, OtrlUserState us,
const char *accountname, const char *protocol, const char *username,
unsigned char fingerprint[20])
{
otrg_dialog_unknown_fingerprint(us, accountname, protocol, username,
fingerprint);
}
static void write_fingerprints_cb(void *opdata)
{
otrg_plugin_write_fingerprints();
otrg_ui_update_keylist();
otrg_dialog_resensitize_all();
}
static void gone_secure_cb(void *opdata, ConnContext *context)
{
otrg_dialog_connected(context);
}
static void gone_insecure_cb(void *opdata, ConnContext *context)
{
otrg_dialog_disconnected(context);
}
static void still_secure_cb(void *opdata, ConnContext *context, int is_reply)
{
if (is_reply == 0) {
otrg_dialog_stillconnected(context);
}
}
static int max_message_size_cb(void *opdata, ConnContext *context)
{
void* lookup_result = g_hash_table_lookup(mms_table, context->protocol);
if (!lookup_result)
return 0;
else
return *((int*)lookup_result);
}
static const char* otr_error_message_cb(void *opdata, ConnContext *context,
OtrlErrorCode err_code)
{
char *err_msg = NULL;
switch (err_code)
{
case OTRL_ERRCODE_NONE :
break;
case OTRL_ERRCODE_ENCRYPTION_ERROR :
err_msg = g_strdup(_("Error occurred encrypting message."));
break;
case OTRL_ERRCODE_MSG_NOT_IN_PRIVATE :
if (context) {
err_msg = g_strdup_printf(_("You sent encrypted data to %s, who"
" wasn't expecting it."), context->accountname);
}
break;
case OTRL_ERRCODE_MSG_UNREADABLE :
err_msg =
g_strdup(_("You transmitted an unreadable encrypted message."));
break;
case OTRL_ERRCODE_MSG_MALFORMED :
err_msg = g_strdup(_("You transmitted a malformed data message."));
break;
}
return err_msg;
}
static void otr_error_message_free_cb(void *opdata, const char *err_msg)
{
if (err_msg) g_free((char*)err_msg);
}
static const char *resent_msg_prefix_cb(void *opdata, ConnContext *context)
{
return g_strdup(_("[resent]"));
}
static void resent_msg_prefix_free_cb(void *opdata, const char *prefix)
{
if (prefix) g_free((char*)prefix);
}
static void handle_smp_event_cb(void *opdata, OtrlSMPEvent smp_event,
ConnContext *context, unsigned short progress_percent,
char *question)
{
if (!context) return;
switch (smp_event)
{
case OTRL_SMPEVENT_NONE :
break;
case OTRL_SMPEVENT_ASK_FOR_SECRET :
otrg_dialog_socialist_millionaires(context);
break;
case OTRL_SMPEVENT_ASK_FOR_ANSWER :
otrg_dialog_socialist_millionaires_q(context, question);
break;
case OTRL_SMPEVENT_CHEATED :
otrg_plugin_abort_smp(context);
/* FALLTHROUGH */
case OTRL_SMPEVENT_IN_PROGRESS :
case OTRL_SMPEVENT_SUCCESS :
case OTRL_SMPEVENT_FAILURE :
case OTRL_SMPEVENT_ABORT :
otrg_dialog_update_smp(context,
smp_event, ((gdouble)progress_percent)/100.0);
break;
case OTRL_SMPEVENT_ERROR :
otrg_plugin_abort_smp(context);
break;
}
}
/* Treat this event like other incoming messages. This allows message
* notification events to get properly triggered. */
static void emit_msg_received(ConnContext *context, const char* message) {
PurpleConversation *conv = otrg_plugin_userinfo_to_conv(
context->accountname, context->protocol, context->username, 1);
PurpleMessageFlags flags = PURPLE_MESSAGE_RECV | PURPLE_MESSAGE_SYSTEM
| PURPLE_MESSAGE_NOTIFY;
PurpleAccount * account = purple_conversation_get_account(conv);
purple_signal_emit(purple_conversations_get_handle(), "received-im-msg",
account, context->username, message, conv, flags);
}
static void handle_msg_event_cb(void *opdata, OtrlMessageEvent msg_event,
ConnContext *context, const char* message, gcry_error_t err)
{
PurpleConversation *conv = NULL;
gchar *buf;
OtrlMessageEvent * last_msg_event;
if (!context) return;
conv = otrg_plugin_context_to_conv(context, 1);
last_msg_event = g_hash_table_lookup(conv->data, "otr-last_msg_event");
switch (msg_event)
{
case OTRL_MSGEVENT_NONE:
break;
case OTRL_MSGEVENT_ENCRYPTION_REQUIRED:
buf = g_strdup_printf(_("You attempted to send an "
"unencrypted message to %s"), context->username);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, _("Attempting to"
" start a private conversation..."), 1, OTRL_NOTIFY_WARNING,
_("OTR Policy Violation"), buf,
_("Unencrypted messages to this recipient are "
"not allowed. Attempting to start a private "
"conversation.\n\nYour message will be "
"retransmitted when the private conversation "
"starts."));
g_free(buf);
break;
case OTRL_MSGEVENT_ENCRYPTION_ERROR:
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, _("An error occurred "
"when encrypting your message. The message was not sent."),
1, OTRL_NOTIFY_ERROR, _("Error encrypting message"),
_("An error occurred when encrypting your message"),
_("The message was not sent."));
break;
case OTRL_MSGEVENT_CONNECTION_ENDED:
buf = g_strdup_printf(_("%s has already closed his/her private "
"connection to you"), context->username);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, _("Your message "
"was not sent. Either end your private conversation, "
"or restart it."), 1, OTRL_NOTIFY_ERROR,
_("Private connection closed"), buf,
_("Your message was not sent. Either close your "
"private connection to him, or refresh it."));
g_free(buf);
break;
case OTRL_MSGEVENT_SETUP_ERROR:
if (!err) {
err = GPG_ERR_INV_VALUE;
}
switch(gcry_err_code(err)) {
case GPG_ERR_INV_VALUE:
buf = g_strdup(_("Error setting up private "
"conversation: Malformed message received"));
break;
default:
buf = g_strdup_printf(_("Error setting up private "
"conversation: %s"), gcry_strerror(err));
break;
}
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, buf, 1,
OTRL_NOTIFY_ERROR, _("OTR Error"), buf, NULL);
g_free(buf);
break;
case OTRL_MSGEVENT_MSG_REFLECTED:
display_otr_message_or_notify(opdata,
context->accountname, context->protocol,
context->username,
_("We are receiving our own OTR messages. "
"You are either trying to talk to yourself, "
"or someone is reflecting your messages back "
"at you."), 1, OTRL_NOTIFY_ERROR,
_("OTR Error"), _("We are receiving our own OTR messages."),
_("You are either trying to talk to yourself, "
"or someone is reflecting your messages back "
"at you."));
break;
case OTRL_MSGEVENT_MSG_RESENT:
buf = g_strdup_printf(_("<b>The last message to %s was resent."
"</b>"), context->username);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, buf, 1,
OTRL_NOTIFY_INFO, _("Message resent"), buf, NULL);
g_free(buf);
break;
case OTRL_MSGEVENT_RCVDMSG_NOT_IN_PRIVATE:
buf = g_strdup_printf(_("<b>The encrypted message received from "
"%s is unreadable, as you are not currently communicating "
"privately.</b>"), context->username);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, buf, 1,
OTRL_NOTIFY_INFO, _("Unreadable message"), buf, NULL);
g_free(buf);
break;
case OTRL_MSGEVENT_RCVDMSG_UNREADABLE:
buf = g_strdup_printf(_("We received an unreadable "
"encrypted message from %s."), context->username);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, buf, 1,
OTRL_NOTIFY_ERROR, _("OTR Error"), buf, NULL);
g_free(buf);
break;
case OTRL_MSGEVENT_RCVDMSG_MALFORMED:
buf = g_strdup_printf(_("We received a malformed data "
"message from %s."), context->username);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, buf, 1,
OTRL_NOTIFY_ERROR, _("OTR Error"), buf, NULL);
g_free(buf);
break;
case OTRL_MSGEVENT_LOG_HEARTBEAT_RCVD:
buf = g_strdup_printf(_("Heartbeat received from %s.\n"),
context->username);
log_message(opdata, buf);
g_free(buf);
break;
case OTRL_MSGEVENT_LOG_HEARTBEAT_SENT:
buf = g_strdup_printf(_("Heartbeat sent to %s.\n"),
context->username);
log_message(opdata, buf);
g_free(buf);
break;
case OTRL_MSGEVENT_RCVDMSG_GENERAL_ERR:
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, message, 1,
OTRL_NOTIFY_ERROR, _("OTR Error"), message, NULL);
break;
case OTRL_MSGEVENT_RCVDMSG_UNENCRYPTED:
buf = g_strdup_printf(_("<b>The following message received "
"from %s was <i>not</i> encrypted: [</b>%s<b>]</b>"),
context->username, message);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, buf, 1,
OTRL_NOTIFY_INFO, _("Received unencrypted message"),
buf, NULL);
emit_msg_received(context, buf);
g_free(buf);
break;
case OTRL_MSGEVENT_RCVDMSG_UNRECOGNIZED:
buf = g_strdup_printf(_("Unrecognized OTR message received "
"from %s.\n"), context->username);
log_message(opdata, buf);
g_free(buf);
break;
case OTRL_MSGEVENT_RCVDMSG_FOR_OTHER_INSTANCE:
if (*last_msg_event == msg_event) {
break;
}
buf = g_strdup_printf(_("%s has sent a message intended for a "
"different session. If you are logged in multiple times, "
"another session may have received the message."),
context->username);
display_otr_message_or_notify(opdata, context->accountname,
context->protocol, context->username, buf, 1,
OTRL_NOTIFY_INFO, _("Received message for a different "
"session"), buf, NULL);
g_free(buf);
break;
}
*last_msg_event = msg_event;
}
#ifdef DUMP_RECEIVED_SYMKEY
static void dump_data(const unsigned char *d, size_t l)
{
size_t i;
for (i=0;i<l;++i) printf("%02x", d[i]);
}
static void received_symkey_cb(void *opdata, ConnContext *context,
unsigned int use, const unsigned char *usedata,
size_t usedatalen, const unsigned char *symkey)
{
printf("Received symkey use: %08x\nKey: ", use);
dump_data(symkey, OTRL_EXTRAKEY_BYTES);
printf("\nUsedata: ");
dump_data(usedata, usedatalen);
printf("\n\n");
}
#endif
static guint otrg_plugin_timerid = 0;
/* Called by the glib main loop, as set up by stop_start_timer */
static gboolean timer_fired_cb(gpointer data);
/* Stop the timer, if it's currently running. If interval > 0, start it
* to periodically fire every interval seconds. */
static void stop_start_timer(unsigned int interval) {
if (otrg_plugin_timerid) {
g_source_remove(otrg_plugin_timerid);
otrg_plugin_timerid = 0;
}
if (interval > 0) {
otrg_plugin_timerid = g_timeout_add_seconds(interval,
timer_fired_cb, NULL);
}
}
/* Called by libotr */
static void timer_control_cb(void *opdata, unsigned int interval)
{
stop_start_timer(interval);
}
static OtrlMessageAppOps ui_ops = {
policy_cb,
create_privkey_cb,
is_logged_in_cb,
inject_message_cb,
update_context_list_cb,
confirm_fingerprint_cb,
write_fingerprints_cb,
gone_secure_cb,
gone_insecure_cb,
still_secure_cb,
max_message_size_cb,
NULL, /* account_name */
NULL, /* account_name_free */
#ifdef DUMP_RECEIVED_SYMKEY
received_symkey_cb,
#else
NULL, /* received_symkey */
#endif
otr_error_message_cb,
otr_error_message_free_cb,
resent_msg_prefix_cb,
resent_msg_prefix_free_cb,
handle_smp_event_cb,
handle_msg_event_cb,
create_instag_cb,
NULL, /* convert_data */
NULL, /* convert_data_free */
timer_control_cb
};
/* Called by the glib main loop, as set up by stop_start_timer */
static gboolean timer_fired_cb(gpointer data) {
otrl_message_poll(otrg_plugin_userstate, &ui_ops, NULL);
return TRUE;
}
static void process_sending_im(PurpleAccount *account, char *who,
char **message, void *m)
{
char *newmessage = NULL;
const char *accountname = purple_account_get_username(account);
const char *protocol = purple_account_get_protocol_id(account);
char *username;
gcry_error_t err;
PurpleConversation * conv = NULL;
otrl_instag_t instance;
if (!who || !message || !*message)
return;
username = strdup(purple_normalize(account, who));
conv = otrg_plugin_userinfo_to_conv(accountname, protocol, username, 1);
instance = otrg_plugin_conv_to_selected_instag(conv, OTRL_INSTAG_BEST);
err = otrl_message_sending(otrg_plugin_userstate, &ui_ops, NULL,
accountname, protocol, username, instance, *message, NULL,
&newmessage, OTRL_FRAGMENT_SEND_ALL_BUT_LAST, NULL, NULL, NULL);
if (err) {
/* Do not send out plain text */
char *ourm = strdup("");
free(*message);
*message = ourm;
} else if (newmessage) {
*message = strdup(newmessage);
}
otrl_message_free(newmessage);
free(username);
}
/* Abort the SMP protocol. Used when malformed or unexpected messages
* are received. */
void otrg_plugin_abort_smp(ConnContext *context)
{
otrl_message_abort_smp(otrg_plugin_userstate, &ui_ops, NULL, context);
}
/* Start the Socialist Millionaires' Protocol over the current connection,
* using the given initial secret, and optionally a question to pass to
* the buddy. */
void otrg_plugin_start_smp(ConnContext *context, const char *question,
const unsigned char *secret, size_t secretlen)
{
otrl_message_initiate_smp_q(otrg_plugin_userstate, &ui_ops, NULL,
context, question, secret, secretlen);
}
/* Continue the Socialist Millionaires' Protocol over the current connection,
* using the given initial secret (ie finish step 2). */
void otrg_plugin_continue_smp(ConnContext *context,
const unsigned char *secret, size_t secretlen)
{
otrl_message_respond_smp(otrg_plugin_userstate, &ui_ops, NULL,
context, secret, secretlen);
}
/* Send the default OTR Query message to the correspondent of the given
* context, from the given account. [account is actually a
* PurpleAccount*, but it's declared here as void* so this can be passed
* as a callback.] */
void otrg_plugin_send_default_query(ConnContext *context, void *vaccount)
{
PurpleAccount *account = vaccount;
char *msg;
OtrgUiPrefs prefs;
otrg_ui_get_prefs(&prefs, account, context->username);
msg = otrl_proto_default_query_msg(context->accountname,
prefs.policy);
otrg_plugin_inject_message(account, context->username,
msg ? msg : "?OTRv23?");
free(msg);
}
/* Send the default OTR Query message to the correspondent of the given
* conversation. */
void otrg_plugin_send_default_query_conv(PurpleConversation *conv)
{
PurpleAccount *account;
const char *username, *accountname;
char *msg;
OtrgUiPrefs prefs;
account = purple_conversation_get_account(conv);
accountname = purple_account_get_username(account);
username = purple_conversation_get_name(conv);
otrg_ui_get_prefs(&prefs, account, username);
msg = otrl_proto_default_query_msg(accountname, prefs.policy);
otrg_plugin_inject_message(account, username, msg ? msg : "?OTRv23?");
free(msg);
}
static gboolean process_receiving_im(PurpleAccount *account, char **who,
char **message, int *flags, void *m)
{
char *newmessage = NULL;
OtrlTLV *tlvs = NULL;
OtrlTLV *tlv = NULL;
char *username;
gboolean res;
const char *accountname;
const char *protocol;
if (!who || !*who || !message || !*message)
return 0;
username = strdup(purple_normalize(account, *who));
accountname = purple_account_get_username(account);
protocol = purple_account_get_protocol_id(account);
res = otrl_message_receiving(otrg_plugin_userstate, &ui_ops, NULL,
accountname, protocol, username, *message,
&newmessage, &tlvs, NULL, NULL, NULL);
if (newmessage) {
char *ourm = strdup(newmessage);
otrl_message_free(newmessage);
free(*message);
*message = ourm;
}
tlv = otrl_tlv_find(tlvs, OTRL_TLV_DISCONNECTED);
if (tlv) {
/* Notify the user that the other side disconnected. */
otrg_dialog_finished(accountname, protocol, username);
otrg_ui_update_keylist();
}
otrl_tlv_free(tlvs);
free(username);
/* If we're supposed to ignore this incoming message (because it's a
* protocol message), set it to NULL, so that other plugins that
* catch receiving-im-msg don't return 0, and cause it to be
* displayed anyway. */
if (res) {
free(*message);
*message = NULL;
}
return res;
}
/* Find the ConnContext appropriate to a given PurpleConversation. */
ConnContext *otrg_plugin_conv_to_context(PurpleConversation *conv,
otrl_instag_t their_instance, int force_create)
{
PurpleAccount *account;
char *username;
const char *accountname, *proto;
ConnContext *context;
if (!conv) return NULL;
account = purple_conversation_get_account(conv);
accountname = purple_account_get_username(account);
proto = purple_account_get_protocol_id(account);
username = g_strdup(
purple_normalize(account, purple_conversation_get_name(conv)));
context = otrl_context_find(otrg_plugin_userstate, username, accountname,
proto, their_instance, force_create, NULL, NULL, NULL);
g_free(username);
return context;
}
/* Given a PurpleConversation, return the selected instag */
otrl_instag_t otrg_plugin_conv_to_selected_instag(PurpleConversation *conv,
otrl_instag_t default_val)
{
otrl_instag_t *selected_instance;
if (!conv || !conv->data) {
return default_val;
}
selected_instance = purple_conversation_get_data(conv,
"otr-ui_selected_ctx");
if (!selected_instance) {
return default_val;
}
return *selected_instance;
}
/* Given a PurpleConversation, return the selected ConnContext */
ConnContext* otrg_plugin_conv_to_selected_context(PurpleConversation *conv,
int force_create)
{
otrl_instag_t selected_instance;
selected_instance = otrg_plugin_conv_to_selected_instag(conv,
OTRL_INSTAG_BEST);
return otrg_plugin_conv_to_context(conv, selected_instance, force_create);
}
static void process_conv_create(PurpleConversation *conv)
{
otrl_instag_t * selected_instance;
OtrlMessageEvent * msg_event;
if (!conv) return;
/* If this malloc fails (or the other below), trouble will be
* unavoidable. */
selected_instance = g_malloc(sizeof(otrl_instag_t));
*selected_instance = OTRL_INSTAG_BEST;
purple_conversation_set_data(conv, "otr-ui_selected_ctx",
(gpointer)selected_instance);
msg_event = g_malloc(sizeof(OtrlMessageEvent));
*msg_event = OTRL_MSGEVENT_NONE;
purple_conversation_set_data(conv, "otr-last_msg_event",
(gpointer)msg_event);
otrg_dialog_new_conv(conv);
}
/* Wrapper around process_conv_create for callback purposes */
static void process_conv_create_cb(PurpleConversation *conv, void *data)
{
process_conv_create(conv);
}
static void process_conv_updated(PurpleConversation *conv,
PurpleConvUpdateType type, void *data)
{
/* See if someone's trying to turn logging on for this conversation,
* and we don't want them to. */
if (type == PURPLE_CONV_UPDATE_LOGGING) {
ConnContext *context;
OtrgUiPrefs prefs;
PurpleAccount *account = purple_conversation_get_account(conv);
otrg_ui_get_prefs(&prefs, account, purple_conversation_get_name(conv));
context = otrg_plugin_conv_to_selected_context(conv, 0);
if (context && prefs.avoid_logging_otr &&
context->msgstate == OTRL_MSGSTATE_ENCRYPTED &&
conv->logging == TRUE) {
purple_conversation_set_logging(conv, FALSE);
}
}
}
static void process_conv_destroyed(PurpleConversation *conv)
{
otrl_instag_t * selected_instance =
purple_conversation_get_data(conv, "otr-ui_selected_ctx");
OtrlMessageEvent * msg_event =
purple_conversation_get_data(conv, "otr-last_msg_event");
if (selected_instance) {
g_free(selected_instance);
}
if (msg_event) {
g_free(msg_event);
}
g_hash_table_remove(conv->data, "otr-ui_selected_ctx");
g_hash_table_remove(conv->data, "otr-last_msg_event");
}
static void process_connection_change(PurpleConnection *conn, void *data)
{
/* If we log in or out of a connection, make sure all of the OTR
* buttons are in the appropriate sensitive/insensitive state. */
otrg_dialog_resensitize_all();
}
static void otr_options_cb(PurpleBlistNode *node, gpointer user_data)
{
/* We've already checked PURPLE_BLIST_NODE_IS_BUDDY(node) */
PurpleBuddy *buddy = (PurpleBuddy *)node;
/* Modify the settings for this buddy */
otrg_ui_config_buddy(buddy);
}
static void supply_extended_menu(PurpleBlistNode *node, GList **menu)
{
PurpleMenuAction *act;
PurpleBuddy *buddy;
PurpleAccount *acct;
const char *proto;
if (!PURPLE_BLIST_NODE_IS_BUDDY(node)) return;
/* Extract the account, and then the protocol, for this buddy */
buddy = (PurpleBuddy *)node;
acct = buddy->account;
if (acct == NULL) return;
proto = purple_account_get_protocol_id(acct);
if (!otrg_plugin_proto_supports_otr(proto)) return;
act = purple_menu_action_new(_("OTR Settings"),
(PurpleCallback)otr_options_cb, NULL, NULL);
*menu = g_list_append(*menu, act);
}
/* Disconnect all context instances, sending a notice to the other side, if
* appropriate. */
void otrg_plugin_disconnect_all_instances(ConnContext *context)
{
otrl_message_disconnect_all_instances(otrg_plugin_userstate, &ui_ops, NULL,
context->accountname, context->protocol, context->username);
}
/* Disconnect a context, sending a notice to the other side, if
* appropriate. */
void otrg_plugin_disconnect(ConnContext *context)
{
otrl_message_disconnect(otrg_plugin_userstate, &ui_ops, NULL,
context->accountname, context->protocol, context->username,
context->their_instance);
}
/* Write the fingerprints to disk. */
void otrg_plugin_write_fingerprints(void)
{
#ifndef WIN32
mode_t mask;
#endif /* WIN32 */
FILE *storef;
gchar *storefile = g_build_filename(purple_user_dir(), STOREFNAME, NULL);
#ifndef WIN32
mask = umask (0077);
#endif /* WIN32 */
storef = g_fopen(storefile, "wb");
#ifndef WIN32
umask (mask);
#endif /* WIN32 */
g_free(storefile);
if (!storef) return;
otrl_privkey_write_fingerprints_FILEp(otrg_plugin_userstate, storef);
fclose(storef);
}
/* Find the PurpleConversation appropriate to the given userinfo. If
* one doesn't yet exist, create it if force_create is true. */
PurpleConversation *otrg_plugin_userinfo_to_conv(const char *accountname,
const char *protocol, const char *username, int force_create)
{
PurpleAccount *account;
PurpleConversation *conv;
account = purple_accounts_find(accountname, protocol);
if (account == NULL) return NULL;
conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM,
username, account);
if (conv == NULL && force_create) {
conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, account, username);
}
return conv;
}
/* Find the PurpleConversation appropriate to the given ConnContext. If
* one doesn't yet exist, create it if force_create is true. */
PurpleConversation *otrg_plugin_context_to_conv(ConnContext *context,
int force_create)
{
return otrg_plugin_userinfo_to_conv(context->accountname,
context->protocol, context->username, force_create);
}
/* What level of trust do we have in the privacy of this ConnContext? */
TrustLevel otrg_plugin_context_to_trust(ConnContext *context)
{
TrustLevel level = TRUST_NOT_PRIVATE;
if (context && context->msgstate == OTRL_MSGSTATE_ENCRYPTED) {
if (context->active_fingerprint &&
context->active_fingerprint->trust &&
context->active_fingerprint->trust[0] != '\0') {
level = TRUST_PRIVATE;
} else {
level = TRUST_UNVERIFIED;
}
} else if (context && context->msgstate == OTRL_MSGSTATE_FINISHED) {
level = TRUST_FINISHED;
}
return level;
}
/* Send the OTRL_TLV_DISCONNECTED packets when we're about to quit. */
static void process_quitting(void)
{
ConnContext *context = otrg_plugin_userstate->context_root;
while(context) {
ConnContext *next = context->next;
if (context->msgstate == OTRL_MSGSTATE_ENCRYPTED &&
context->protocol_version > 1) {
otrg_plugin_disconnect(context);
}
context = next;
}
}
/* Read the maxmsgsizes from a FILE* into the given GHashTable.
* The FILE* must be open for reading. */
static void mms_read_FILEp(FILE *mmsf, GHashTable *ght)
{
char storeline[50];
size_t maxsize = sizeof(storeline);
if (!mmsf) return;
while(fgets(storeline, maxsize, mmsf)) {
char *protocol;
char *prot_in_table;
char *mms;
int *mms_in_table;
char *tab;
char *eol;
/* Parse the line, which should be of the form:
* protocol\tmaxmsgsize\n */
protocol = storeline;
tab = strchr(protocol, '\t');
if (!tab) continue;
*tab = '\0';
mms = tab + 1;
tab = strchr(mms, '\t');
if (tab) continue;
eol = strchr(mms, '\r');
if (!eol) eol = strchr(mms, '\n');
if (!eol) continue;
*eol = '\0';
prot_in_table = strdup(protocol);
mms_in_table = malloc(sizeof(int));
*mms_in_table = atoi(mms);
g_hash_table_insert(ght, prot_in_table, mms_in_table);
}
}
static void otrg_str_free(gpointer data)
{
g_free((char*)data);
}
static void otrg_int_free(gpointer data)
{
g_free((int*)data);
}
static void otrg_init_mms_table()
{
/* Hardcoded defaults for maximum message sizes for various
* protocols. These can be overridden in the user's MAXMSGSIZEFNAME
* file. */
static const struct s_OtrgIdProtPair {
char *protid;
int maxmsgsize;
} mmsPairs[] = {{"prpl-msn", 1409}, {"prpl-icq", 2346},
{"prpl-aim", 2343}, {"prpl-yahoo", 799}, {"prpl-gg", 1999},
{"prpl-irc", 417}, {"prpl-oscar", 2343},
{"prpl-novell", 1792}, {NULL, 0}};
int i = 0;
gchar *maxmsgsizefile;
FILE *mmsf;
mms_table = g_hash_table_new_full(g_str_hash, g_str_equal,
otrg_str_free, otrg_int_free);
for (i=0; mmsPairs[i].protid != NULL; i++) {
char* nextprot = g_strdup(mmsPairs[i].protid);
int* nextsize = g_malloc(sizeof(int));
*nextsize = mmsPairs[i].maxmsgsize;
g_hash_table_insert(mms_table, nextprot, nextsize);
}
maxmsgsizefile = g_build_filename(purple_user_dir(),
MAXMSGSIZEFNAME, NULL);
if (maxmsgsizefile) {
mmsf = g_fopen(maxmsgsizefile, "rt");
/* Actually read the file here */
if (mmsf) {
mms_read_FILEp(mmsf, mms_table);
fclose(mmsf);
}
g_free(maxmsgsizefile);
}
}
static void otrg_free_mms_table()
{
g_hash_table_destroy(mms_table);
mms_table = NULL;
}
static gboolean otr_plugin_load(PurplePlugin *handle)
{
gchar *privkeyfile = g_build_filename(purple_user_dir(), PRIVKEYFNAME,
NULL);
gchar *storefile = g_build_filename(purple_user_dir(), STOREFNAME, NULL);
gchar *instagfile = g_build_filename(purple_user_dir(), INSTAGFNAME, NULL);
void *conv_handle = purple_conversations_get_handle();
void *conn_handle = purple_connections_get_handle();
void *blist_handle = purple_blist_get_handle();
void *core_handle = purple_get_core();
FILE *privf;
FILE *storef;
FILE *instagf;
#if BETA_DIALOG && defined USING_GTK /* Only for beta */
GtkWidget *dialog;
GtkWidget *dialog_text;
PidginBuddyList *blist;
gchar * buf = NULL;
#endif
if (!privkeyfile || !storefile || !instagfile) {
g_free(privkeyfile);
g_free(storefile);
g_free(instagfile);
return 0;
}
#if BETA_DIALOG && defined USING_GTK /* Only for beta */
blist = pidgin_blist_get_default_gtk_blist();
if (time(NULL) > 1356998400) /* 2013-01-01 */ {
buf = g_strdup_printf(_("OTR PLUGIN v%s"), PIDGIN_OTR_VERSION);
dialog = gtk_dialog_new_with_buttons (buf,
GTK_WINDOW(blist->window),
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL);
dialog_text = gtk_label_new(NULL);
gtk_widget_set_size_request(dialog_text, 350, 100);
gtk_label_set_line_wrap(GTK_LABEL(dialog_text), TRUE);
g_free(buf);
buf = g_strdup_printf(_("This beta copy of the "
"Off-the-Record Messaging v%s Pidgin plugin has expired as of "
"2013-01-01. Please look for an updated release at "
"http://otr.cypherpunks.ca/"), PIDGIN_OTR_VERSION);
gtk_label_set_text(GTK_LABEL(dialog_text), buf);
gtk_widget_show(dialog_text);
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), dialog_text,
TRUE, TRUE, 0);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
g_free(buf);
g_free(privkeyfile);
g_free(storefile);
g_free(instagfile);
return 0;
}
buf = g_strdup_printf(_("OTR PLUGIN v%s"), PIDGIN_OTR_VERSION);
dialog = gtk_dialog_new_with_buttons (buf,
GTK_WINDOW(blist->window),
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL);
dialog_text = gtk_label_new(NULL);
gtk_widget_set_size_request(dialog_text, 350, 100);
gtk_label_set_line_wrap(GTK_LABEL(dialog_text), TRUE);
g_free(buf);
buf = g_strdup_printf(_("You have enabled a beta "
"version of the Off-the-Record Messaging v%s Pidgin plugin. "
"This version is intended for testing purposes only and is not "
"for general purpose use."), PIDGIN_OTR_VERSION);
gtk_label_set_text(GTK_LABEL(dialog_text), buf);
gtk_widget_show(dialog_text);
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), dialog_text,
TRUE, TRUE, 0);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
g_free(buf);
#endif
privf = g_fopen(privkeyfile, "rb");
storef = g_fopen(storefile, "rb");
instagf = g_fopen(instagfile, "rb");
g_free(privkeyfile);
g_free(storefile);
g_free(instagfile);
otrg_init_mms_table();
otrg_plugin_handle = handle;
/* Make our OtrlUserState; we'll only use the one. */
otrg_plugin_userstate = otrl_userstate_create();
otrg_plugin_timerid = 0;
otrl_privkey_read_FILEp(otrg_plugin_userstate, privf);
otrl_privkey_read_fingerprints_FILEp(otrg_plugin_userstate, storef,
NULL, NULL);
otrl_instag_read_FILEp(otrg_plugin_userstate, instagf);
if (privf) fclose(privf);
if (storef) fclose(storef);
if (instagf) fclose(instagf);
otrg_ui_update_fingerprint();
purple_signal_connect(core_handle, "quitting", otrg_plugin_handle,
PURPLE_CALLBACK(process_quitting), NULL);
purple_signal_connect(conv_handle, "sending-im-msg", otrg_plugin_handle,
PURPLE_CALLBACK(process_sending_im), NULL);
purple_signal_connect(conv_handle, "receiving-im-msg", otrg_plugin_handle,
PURPLE_CALLBACK(process_receiving_im), NULL);
purple_signal_connect(conv_handle, "conversation-updated",
otrg_plugin_handle, PURPLE_CALLBACK(process_conv_updated), NULL);
purple_signal_connect(conv_handle, "conversation-created",
otrg_plugin_handle, PURPLE_CALLBACK(process_conv_create_cb), NULL);
purple_signal_connect(conv_handle, "deleting-conversation",
otrg_plugin_handle, PURPLE_CALLBACK(process_conv_destroyed), NULL);
purple_signal_connect(conn_handle, "signed-on", otrg_plugin_handle,
PURPLE_CALLBACK(process_connection_change), NULL);
purple_signal_connect(conn_handle, "signed-off", otrg_plugin_handle,
PURPLE_CALLBACK(process_connection_change), NULL);
purple_signal_connect(blist_handle, "blist-node-extended-menu",
otrg_plugin_handle, PURPLE_CALLBACK(supply_extended_menu), NULL);
otrg_ui_init();
otrg_dialog_init();
purple_conversation_foreach(process_conv_create);
return 1;
}
static gboolean otr_plugin_unload(PurplePlugin *handle)
{
void *conv_handle = purple_conversations_get_handle();
void *conn_handle = purple_connections_get_handle();
void *blist_handle = purple_blist_get_handle();
void *core_handle = purple_get_core();
/* Clean up all of our state. */
purple_conversation_foreach(otrg_dialog_remove_conv);
otrg_dialog_cleanup();
otrg_ui_cleanup();
purple_signal_disconnect(core_handle, "quitting", otrg_plugin_handle,
PURPLE_CALLBACK(process_quitting));
purple_signal_disconnect(conv_handle, "sending-im-msg",
otrg_plugin_handle, PURPLE_CALLBACK(process_sending_im));
purple_signal_disconnect(conv_handle, "receiving-im-msg",
otrg_plugin_handle, PURPLE_CALLBACK(process_receiving_im));
purple_signal_disconnect(conv_handle, "conversation-updated",
otrg_plugin_handle, PURPLE_CALLBACK(process_conv_updated));
purple_signal_disconnect(conv_handle, "conversation-created",
otrg_plugin_handle, PURPLE_CALLBACK(process_conv_create_cb));
purple_signal_disconnect(conv_handle, "deleting-conversation",
otrg_plugin_handle, PURPLE_CALLBACK(process_conv_destroyed));
purple_signal_disconnect(conn_handle, "signed-on", otrg_plugin_handle,
PURPLE_CALLBACK(process_connection_change));
purple_signal_disconnect(conn_handle, "signed-off", otrg_plugin_handle,
PURPLE_CALLBACK(process_connection_change));
purple_signal_disconnect(blist_handle, "blist-node-extended-menu",
otrg_plugin_handle, PURPLE_CALLBACK(supply_extended_menu));
/* Stop the timer, if necessary */
stop_start_timer(0);
otrl_userstate_free(otrg_plugin_userstate);
otrg_plugin_userstate = NULL;
otrg_free_mms_table();
return 1;
}
/* Return 1 if the given protocol supports OTR, 0 otherwise. */
int otrg_plugin_proto_supports_otr(const char *proto)
{
/* Right now, OTR should work on all protocols, possibly
* with the help of fragmentation. */
return 1;
}
#ifdef USING_GTK
static PidginPluginUiInfo ui_info =
{
otrg_gtk_ui_make_widget
};
#define UI_INFO &ui_info
#define PLUGIN_TYPE PIDGIN_PLUGIN_TYPE
#else
#define UI_INFO NULL
#define PLUGIN_TYPE ""
#endif
static PurplePluginInfo info =
{
PURPLE_PLUGIN_MAGIC,
/* Use the 2.0.x API */
2, /* major version */
0, /* minor version */
PURPLE_PLUGIN_STANDARD, /* type */
PLUGIN_TYPE, /* ui_requirement */
0, /* flags */
NULL, /* dependencies */
PURPLE_PRIORITY_DEFAULT, /* priority */
"otr", /* id */
NULL, /* name */
PIDGIN_OTR_VERSION, /* version */
NULL, /* summary */
NULL, /* description */
/* author */
"Ian Goldberg, Rob Smits,\n"
"\t\t\tChris Alexander, Willy Lew, Lisa Du,\n"
"\t\t\tNikita Borisov <otr@cypherpunks.ca>",
"https://otr.cypherpunks.ca/", /* homepage */
otr_plugin_load, /* load */
otr_plugin_unload, /* unload */
NULL, /* destroy */
UI_INFO, /* ui_info */
NULL, /* extra_info */
NULL, /* prefs_info */
NULL /* actions */
};
static void
__init_plugin(PurplePlugin *plugin)
{
/* Set up the UI ops */
#ifdef USING_GTK
otrg_ui_set_ui_ops(otrg_gtk_ui_get_ui_ops());
otrg_dialog_set_ui_ops(otrg_gtk_dialog_get_ui_ops());
#endif
#ifndef WIN32
/* Make key generation use /dev/urandom instead of /dev/random */
gcry_control(GCRYCTL_ENABLE_QUICK_RANDOM, 0);
#endif
/* Initialize the OTR library */
OTRL_INIT;
#ifdef ENABLE_NLS
bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
#endif
info.name = _("Off-the-Record Messaging");
info.summary = _("Provides private and secure conversations");
info.description = _("Preserves the privacy of IM communications "
"by providing encryption, authentication, "
"deniability, and perfect forward secrecy.");
}
PURPLE_INIT_PLUGIN(otr, __init_plugin, info)
|