All checks were successful
CI Code / Check spelling (push) Successful in 18s
CI Code / Check coding style (push) Successful in 34s
CI Code / Code Coverage (push) Successful in 2m36s
CI Code / Linux (debian) (push) Successful in 4m41s
CI Code / Linux (ubuntu) (push) Successful in 4m52s
CI Code / Linux (arch) (push) Successful in 5m40s
Sync with upstream profanity-im/profanity.
Major upstream changes incorporated:
Memory management
- Replace malloc+memset with g_new0 throughout codebase
- Adopt auto_gchar / auto_gcharv / auto_gerror / auto_jid cleanup macros
- Replace free() with g_free() for GAlloc'd memory
Editor rewrite
- Remove pthread-based async editor; use GChildWatch callback API
- New launch_editor(initial_content, callback, user_data) interface
- Proper signal handling (SIGINT, SIGTSTP, SIGPIPE reset in child)
- ui_suspend()/ui_resume() integration for TTY management
OMEMO improvements
- Dual backend support: libsignal-protocol-c and libomemo-c
- Proper pre-key removal after use (XEP-0384 compliance)
- Automatic pre-key regeneration when store drops below threshold
- New functions: omemo_is_device_active(), omemo_is_jid_trusted()
- omemo_get_jid_untrusted_fingerprints() for better error messages
- Fingerprint notifications on new device identity discovery
- Deterministic pre-key ID generation tracking max_pre_key_id
- omemo_trust_changed() UI updates on trust state changes
JID validation
- RFC 6122-compliant validation in jid_is_valid()
- Character-level checks (RFC 6122 forbidden chars: & ' / : < > @)
- Length limits: 1023 per component, 3071 total
- New jid_is_valid_user_jid() for user vs. service JID distinction
Database
- Schema migration v3: UNIQUE constraint on archive_id for deduplication
- Triggers for corrected message tracking (replaces_db_id / replaced_by_db_id)
- db_history_result_t return type, _truncate_datetime_suffix()
UI / console
- win_warn_needed() / win_warn_sent() warning deduplication hash table
- PAD_MIN_HEIGHT dynamic pad sizing with PAD_THRESHOLD auto-cleanup
- Spellcheck integration in input field with Unicode word detection
- cons_spellcheck_setting() for /settings ui output
- /[command]? shortcut for command help
Account config
- Account name sanitization for GKeyFile special chars ([ ] = # \n \r)
- Replace popen() with g_spawn_sync() for eval_password
- TLS policy: add "direct" option alongside legacy
Connection
- Port validation with g_assert (0–65535)
- SHA-256 certificate fingerprint support (XMPP_CERT_PUBKEY_FINGERPRINT_SHA256)
- "direct" TLS policy alias for legacy SSL
Common utilities
- str_xml_sanitize() for XML 1.0 illegal character removal
- string_matches_one_of() with formatted error messages
- valid_tls_policy_option() helper
- prof_date_time_format_iso8601() utility
- Improved strip_arg_quotes() with backslash unescaping
- prof_occurrences() uses g_slist_prepend + reverse for performance
PGP / OX
- Proper GPGME resource cleanup with goto-cleanup pattern
- g_string_free(xmppuri) leak fix in _ox_key_lookup
CSV export
- Use GString + g_file_set_contents instead of raw write() syscalls
Tests
- Restructured into subdirectories: command/, config/, xmpp/, ui/, omemo/, otr/, pgp/
- New test_cmd_ac.c for autocompleter unit tests
- Updated stubs for new UI suspend/resume functions
License headers
- Migrate to SPDX-3.0 identifiers (GPL-3.0-or-later WITH OpenSSL-exception)
────────────────────────────────────────────────────
cproof-specific preservations:
- XEP-0308 LMC: replace_id ?: id logic in message/stanza/omemo
- Force encryption: cmd_force_encryption, test_forced_encryption
- CWE-134: format string protection (cons_show("%s", ...))
- y_start_pos-based paging in window.c
- db_history_result_t return type, _truncate_datetime_suffix()
Merge-time fixes:
- common.c: format-security (-Werror) — cons_show(errmsg) → cons_show("%s", errmsg)
- database.c: null-deref guard — !msg->timestamp → msg && !msg->timestamp
- console.c: implicit size_t → int cast — (int)(maxlen + 1)
- tlscerts.c: %d for size_t — %zu
Build system:
- Kept autotools (Makefile.am, configure.ac); upstream uses Meson
- Restored deleted files: bootstrap.sh, autogen.sh, ax_valgrind_check.m4, configure-debug
- Updated Makefile.am test paths for subdirectory structure
- Added test_cmd_ac, test_forced_encryption to test sources
Functional tests:
- Use cproof version; upstream requires stbbr_for_xmlns from updated stabber
- Not yet available in devs/stabber fork
Closes #64
Merge author: jabber.developer2
Commits authors:
Michael Vetter <jubalh@iodoru.org>
& Steffen Jaeckel <s@jaeckel.eu>
736 lines
20 KiB
C
736 lines
20 KiB
C
/*
|
|
* otr.c
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
|
*
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <libotr/proto.h>
|
|
#include <libotr/privkey.h>
|
|
#include <libotr/message.h>
|
|
#include <libotr/sm.h>
|
|
#include <glib.h>
|
|
|
|
#include "log.h"
|
|
#include "chatlog.h"
|
|
#include "database.h"
|
|
#include "config/preferences.h"
|
|
#include "config/files.h"
|
|
#include "otr/otr.h"
|
|
#include "otr/otrlib.h"
|
|
#include "ui/ui.h"
|
|
#include "ui/window_list.h"
|
|
#include "xmpp/chat_session.h"
|
|
#include "xmpp/roster_list.h"
|
|
#include "xmpp/contact.h"
|
|
#include "xmpp/xmpp.h"
|
|
|
|
#define PRESENCE_ONLINE 1
|
|
#define PRESENCE_OFFLINE 0
|
|
#define PRESENCE_UNKNOWN -1
|
|
|
|
static OtrlUserState user_state;
|
|
static OtrlMessageAppOps ops;
|
|
static char* jid;
|
|
static gboolean data_loaded;
|
|
static GHashTable* smp_initiators;
|
|
|
|
OtrlUserState
|
|
otr_userstate(void)
|
|
{
|
|
return user_state;
|
|
}
|
|
|
|
OtrlMessageAppOps*
|
|
otr_messageops(void)
|
|
{
|
|
return &ops;
|
|
}
|
|
|
|
GHashTable*
|
|
otr_smpinitators(void)
|
|
{
|
|
return smp_initiators;
|
|
}
|
|
|
|
// ops callbacks
|
|
static OtrlPolicy
|
|
cb_policy(void* opdata, ConnContext* context)
|
|
{
|
|
return otrlib_policy();
|
|
}
|
|
|
|
static int
|
|
cb_is_logged_in(void* opdata, const char* accountname, const char* protocol, const char* recipient)
|
|
{
|
|
jabber_conn_status_t conn_status = connection_get_status();
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
return PRESENCE_OFFLINE;
|
|
}
|
|
|
|
PContact contact = roster_get_contact(recipient);
|
|
|
|
// not in roster
|
|
if (contact == NULL) {
|
|
return PRESENCE_ONLINE;
|
|
}
|
|
|
|
// not subscribed
|
|
if (p_contact_subscribed(contact) == FALSE) {
|
|
return PRESENCE_ONLINE;
|
|
}
|
|
|
|
// subscribed
|
|
if (g_strcmp0(p_contact_presence(contact), "offline") == 0) {
|
|
return PRESENCE_OFFLINE;
|
|
} else {
|
|
return PRESENCE_ONLINE;
|
|
}
|
|
}
|
|
|
|
static void
|
|
cb_inject_message(void* opdata, const char* accountname,
|
|
const char* protocol, const char* recipient, const char* message)
|
|
{
|
|
free(message_send_chat_otr(recipient, message, FALSE, NULL));
|
|
}
|
|
|
|
static void
|
|
cb_write_fingerprints(void* opdata)
|
|
{
|
|
gcry_error_t err = 0;
|
|
auto_gchar gchar* fpsfilename = files_file_in_account_data_path(DIR_OTR, jid, "fingerprints.txt");
|
|
if (!fpsfilename) {
|
|
log_error("Failed to create fingerprints file");
|
|
cons_show_error("Failed to create fingerprints file");
|
|
return;
|
|
}
|
|
|
|
err = otrl_privkey_write_fingerprints(user_state, fpsfilename);
|
|
if (err != GPG_ERR_NO_ERROR) {
|
|
log_error("Failed to write fingerprints file");
|
|
cons_show_error("Failed to write fingerprints file");
|
|
}
|
|
}
|
|
|
|
static void
|
|
cb_gone_secure(void* opdata, ConnContext* context)
|
|
{
|
|
ProfChatWin* chatwin = wins_get_chat(context->username);
|
|
if (!chatwin) {
|
|
chatwin = chatwin_new(context->username);
|
|
}
|
|
|
|
chatwin_otr_secured(chatwin, otr_is_trusted(context->username));
|
|
}
|
|
|
|
char*
|
|
otr_libotr_version(void)
|
|
{
|
|
return OTRL_VERSION;
|
|
}
|
|
|
|
char*
|
|
otr_start_query(void)
|
|
{
|
|
return otrlib_start_query();
|
|
}
|
|
|
|
static void
|
|
_otr_shutdown(void)
|
|
{
|
|
g_hash_table_destroy(smp_initiators);
|
|
if (jid) {
|
|
free(jid);
|
|
jid = NULL;
|
|
}
|
|
if (user_state) {
|
|
otrl_userstate_free(user_state);
|
|
user_state = NULL;
|
|
}
|
|
otrlib_shutdown();
|
|
}
|
|
|
|
void
|
|
otr_init(void)
|
|
{
|
|
log_info("Initialising OTR");
|
|
OTRL_INIT;
|
|
|
|
prof_add_shutdown_routine(_otr_shutdown);
|
|
|
|
jid = NULL;
|
|
|
|
ops.policy = cb_policy;
|
|
ops.is_logged_in = cb_is_logged_in;
|
|
ops.inject_message = cb_inject_message;
|
|
ops.write_fingerprints = cb_write_fingerprints;
|
|
ops.gone_secure = cb_gone_secure;
|
|
|
|
otrlib_init_ops(&ops);
|
|
otrlib_init_timer();
|
|
smp_initiators = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
|
|
|
|
data_loaded = FALSE;
|
|
}
|
|
|
|
void
|
|
otr_poll(void)
|
|
{
|
|
otrlib_poll();
|
|
}
|
|
|
|
void
|
|
otr_on_connect(ProfAccount* account)
|
|
{
|
|
if (jid) {
|
|
free(jid);
|
|
}
|
|
jid = strdup(account->jid);
|
|
log_info("Loading OTR key for %s", jid);
|
|
|
|
auto_gchar gchar* otr_dir = files_file_in_account_data_path(DIR_OTR, jid, NULL);
|
|
if (!otr_dir) {
|
|
log_error("Could not create directory for account %s.", jid);
|
|
cons_show_error("Could not create directory for account %s.", jid);
|
|
return;
|
|
}
|
|
|
|
if (user_state) {
|
|
otrl_userstate_free(user_state);
|
|
}
|
|
user_state = otrl_userstate_create();
|
|
|
|
gcry_error_t err = 0;
|
|
|
|
GString* keysfilename = g_string_new(otr_dir);
|
|
g_string_append(keysfilename, "/keys.txt");
|
|
if (!g_file_test(keysfilename->str, G_FILE_TEST_IS_REGULAR)) {
|
|
log_info("No OTR private key file found %s", keysfilename->str);
|
|
data_loaded = FALSE;
|
|
} else {
|
|
log_info("Loading OTR private key %s", keysfilename->str);
|
|
err = otrl_privkey_read(user_state, keysfilename->str);
|
|
if (err != GPG_ERR_NO_ERROR) {
|
|
log_warning("Failed to read OTR private key file: %s", keysfilename->str);
|
|
cons_show_error("Failed to read OTR private key file: %s", keysfilename->str);
|
|
g_string_free(keysfilename, TRUE);
|
|
return;
|
|
}
|
|
|
|
OtrlPrivKey* privkey = otrl_privkey_find(user_state, jid, "xmpp");
|
|
if (!privkey) {
|
|
log_warning("No OTR private key found for account \"%s\", protocol \"xmpp\" in file: %s", jid, keysfilename->str);
|
|
cons_show_error("No OTR private key found for account \"%s\", protocol \"xmpp\" in file: %s", jid, keysfilename->str);
|
|
g_string_free(keysfilename, TRUE);
|
|
return;
|
|
}
|
|
log_info("Loaded OTR private key");
|
|
data_loaded = TRUE;
|
|
}
|
|
|
|
GString* fpsfilename = g_string_new(otr_dir);
|
|
g_string_append(fpsfilename, "/fingerprints.txt");
|
|
if (!g_file_test(fpsfilename->str, G_FILE_TEST_IS_REGULAR)) {
|
|
log_info("No OTR fingerprints file found %s", fpsfilename->str);
|
|
data_loaded = FALSE;
|
|
} else {
|
|
log_info("Loading OTR fingerprints %s", fpsfilename->str);
|
|
err = otrl_privkey_read_fingerprints(user_state, fpsfilename->str, NULL, NULL);
|
|
if (err != GPG_ERR_NO_ERROR) {
|
|
log_error("Failed to load OTR fingerprints file: %s", fpsfilename->str);
|
|
g_string_free(keysfilename, TRUE);
|
|
g_string_free(fpsfilename, TRUE);
|
|
return;
|
|
} else {
|
|
log_info("Loaded OTR fingerprints");
|
|
data_loaded = TRUE;
|
|
}
|
|
}
|
|
|
|
if (data_loaded) {
|
|
cons_show("Loaded OTR private key for %s", jid);
|
|
}
|
|
|
|
g_string_free(keysfilename, TRUE);
|
|
g_string_free(fpsfilename, TRUE);
|
|
return;
|
|
}
|
|
|
|
char*
|
|
otr_on_message_recv(const char* const barejid, const char* const resource, const char* const message, gboolean* decrypted)
|
|
{
|
|
prof_otrpolicy_t policy = otr_get_policy(barejid);
|
|
char* whitespace_base = strstr(message, OTRL_MESSAGE_TAG_BASE);
|
|
|
|
// check for OTR whitespace (opportunistic or always)
|
|
if (policy == PROF_OTRPOLICY_OPPORTUNISTIC || policy == PROF_OTRPOLICY_ALWAYS) {
|
|
if (whitespace_base) {
|
|
char* tag_position = whitespace_base + strlen(OTRL_MESSAGE_TAG_BASE);
|
|
if (strncmp(tag_position, OTRL_MESSAGE_TAG_V2, strlen(OTRL_MESSAGE_TAG_V2)) == 0 || strncmp(tag_position, OTRL_MESSAGE_TAG_V1, strlen(OTRL_MESSAGE_TAG_V1)) == 0) {
|
|
// Remove whitespace pattern for proper display in UI
|
|
// Handle both BASE+TAGV1/2(16+8) and BASE+TAGV1+TAGV2(16+8+8)
|
|
int tag_length = 24;
|
|
if (strstr(message, OTRL_MESSAGE_TAG_V2) && strstr(message, OTRL_MESSAGE_TAG_V1)) {
|
|
tag_length = 32;
|
|
}
|
|
memmove(whitespace_base, whitespace_base + tag_length, tag_length);
|
|
char* otr_query_message = otr_start_query();
|
|
cons_show("OTR Whitespace pattern detected. Attempting to start OTR session…");
|
|
free(message_send_chat_otr(barejid, otr_query_message, FALSE, NULL));
|
|
}
|
|
}
|
|
}
|
|
|
|
char* newmessage = otr_decrypt_message(barejid, message, decrypted);
|
|
if (!newmessage) { // internal OTR message
|
|
return NULL;
|
|
}
|
|
|
|
if (policy == PROF_OTRPOLICY_ALWAYS && *decrypted == FALSE && !whitespace_base) {
|
|
char* otr_query_message = otr_start_query();
|
|
cons_show("Attempting to start OTR session…");
|
|
free(message_send_chat_otr(barejid, otr_query_message, FALSE, NULL));
|
|
}
|
|
|
|
return newmessage;
|
|
}
|
|
|
|
gboolean
|
|
otr_on_message_send(ProfChatWin* chatwin, const char* const message, gboolean request_receipt, const char* const replace_id)
|
|
{
|
|
auto_char char* id = NULL;
|
|
prof_otrpolicy_t policy = otr_get_policy(chatwin->barejid);
|
|
|
|
// Send encrypted message
|
|
if (otr_is_secure(chatwin->barejid)) {
|
|
char* encrypted = otr_encrypt_message(chatwin->barejid, message);
|
|
if (encrypted) {
|
|
id = message_send_chat_otr(chatwin->barejid, encrypted, request_receipt, replace_id);
|
|
chat_log_otr_msg_out(chatwin->barejid, message, NULL);
|
|
log_database_add_outgoing_chat(id, chatwin->barejid, message, replace_id, PROF_MSG_ENC_OTR);
|
|
chatwin_outgoing_msg(chatwin, message, id, PROF_MSG_ENC_OTR, request_receipt, replace_id);
|
|
otr_free_message(encrypted);
|
|
return TRUE;
|
|
} else {
|
|
win_println((ProfWin*)chatwin, THEME_ERROR, "-", "%s", "Failed to encrypt and send message.");
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
// show error if not secure and policy always
|
|
if (policy == PROF_OTRPOLICY_ALWAYS) {
|
|
win_println((ProfWin*)chatwin, THEME_ERROR, "-", "%s", "Failed to send message. OTR policy set to: always");
|
|
return TRUE;
|
|
}
|
|
|
|
// tag and send for policy opportunistic
|
|
if (policy == PROF_OTRPOLICY_OPPORTUNISTIC) {
|
|
auto_char char* otr_tagged_msg = otr_tag_message(message);
|
|
id = message_send_chat_otr(chatwin->barejid, otr_tagged_msg, request_receipt, replace_id);
|
|
chatwin_outgoing_msg(chatwin, message, id, PROF_MSG_ENC_NONE, request_receipt, replace_id);
|
|
chat_log_msg_out(chatwin->barejid, message, NULL);
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
void
|
|
otr_keygen(ProfAccount* account)
|
|
{
|
|
if (data_loaded) {
|
|
cons_show("OTR key already generated.");
|
|
return;
|
|
}
|
|
|
|
free(jid);
|
|
jid = strdup(account->jid);
|
|
log_info("Generating OTR key for %s", jid);
|
|
|
|
auto_gchar gchar* otr_dir = files_file_in_account_data_path(DIR_OTR, jid, NULL);
|
|
|
|
if (!otr_dir) {
|
|
log_error("Could not create directory for account %s.", jid);
|
|
cons_show_error("Could not create directory for account %s.", jid);
|
|
return;
|
|
}
|
|
|
|
gcry_error_t err = 0;
|
|
|
|
GString* keysfilename = g_string_new(otr_dir);
|
|
g_string_append(keysfilename, "/keys.txt");
|
|
log_debug("Generating private key file %s for %s", keysfilename->str, jid);
|
|
cons_show("Generating private key, this may take some time.");
|
|
cons_show("Moving the mouse randomly around the screen may speed up the process!");
|
|
ui_update();
|
|
err = otrl_privkey_generate(user_state, keysfilename->str, account->jid, "xmpp");
|
|
if (err != GPG_ERR_NO_ERROR) {
|
|
g_string_free(keysfilename, TRUE);
|
|
log_error("Failed to generate private key");
|
|
cons_show_error("Failed to generate private key");
|
|
return;
|
|
}
|
|
log_info("Private key generated");
|
|
cons_show("");
|
|
cons_show("Private key generation complete.");
|
|
|
|
GString* fpsfilename = g_string_new(otr_dir);
|
|
g_string_append(fpsfilename, "/fingerprints.txt");
|
|
log_debug("Generating fingerprints file %s for %s", fpsfilename->str, jid);
|
|
err = otrl_privkey_write_fingerprints(user_state, fpsfilename->str);
|
|
if (err != GPG_ERR_NO_ERROR) {
|
|
g_string_free(keysfilename, TRUE);
|
|
log_error("Failed to create fingerprints file");
|
|
cons_show_error("Failed to create fingerprints file");
|
|
return;
|
|
}
|
|
log_info("Fingerprints file created");
|
|
|
|
err = otrl_privkey_read(user_state, keysfilename->str);
|
|
if (err != GPG_ERR_NO_ERROR) {
|
|
g_string_free(keysfilename, TRUE);
|
|
log_error("Failed to load private key");
|
|
data_loaded = FALSE;
|
|
return;
|
|
}
|
|
|
|
err = otrl_privkey_read_fingerprints(user_state, fpsfilename->str, NULL, NULL);
|
|
if (err != GPG_ERR_NO_ERROR) {
|
|
g_string_free(keysfilename, TRUE);
|
|
log_error("Failed to load fingerprints");
|
|
data_loaded = FALSE;
|
|
return;
|
|
}
|
|
|
|
data_loaded = TRUE;
|
|
|
|
g_string_free(keysfilename, TRUE);
|
|
g_string_free(fpsfilename, TRUE);
|
|
return;
|
|
}
|
|
|
|
gboolean
|
|
otr_key_loaded(void)
|
|
{
|
|
return data_loaded;
|
|
}
|
|
|
|
char*
|
|
otr_tag_message(const char* const msg)
|
|
{
|
|
return g_strdup_printf("%s%s%s", msg, OTRL_MESSAGE_TAG_BASE, OTRL_MESSAGE_TAG_V2);
|
|
}
|
|
|
|
gboolean
|
|
otr_is_secure(const char* const recipient)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context == NULL) {
|
|
return FALSE;
|
|
}
|
|
|
|
if (context->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
|
|
return FALSE;
|
|
} else {
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
gboolean
|
|
otr_is_trusted(const char* const recipient)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context == NULL) {
|
|
return FALSE;
|
|
}
|
|
|
|
if (context->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
|
|
return TRUE;
|
|
}
|
|
|
|
if (context->active_fingerprint) {
|
|
if (context->active_fingerprint->trust == NULL) {
|
|
return FALSE;
|
|
} else if (context->active_fingerprint->trust[0] == '\0') {
|
|
return FALSE;
|
|
} else {
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
void
|
|
otr_trust(const char* const recipient)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (context->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
|
|
return;
|
|
}
|
|
|
|
if (context->active_fingerprint) {
|
|
if (context->active_fingerprint->trust) {
|
|
free(context->active_fingerprint->trust);
|
|
}
|
|
context->active_fingerprint->trust = strdup("trusted");
|
|
cb_write_fingerprints(NULL);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
void
|
|
otr_untrust(const char* const recipient)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (context->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
|
|
return;
|
|
}
|
|
|
|
if (context->active_fingerprint) {
|
|
if (context->active_fingerprint->trust) {
|
|
free(context->active_fingerprint->trust);
|
|
}
|
|
context->active_fingerprint->trust = NULL;
|
|
cb_write_fingerprints(NULL);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
void
|
|
otr_smp_secret(const char* const recipient, const char* secret)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (context->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
|
|
return;
|
|
}
|
|
|
|
// if recipient initiated SMP, send response, else initialise
|
|
ProfChatWin* chatwin = wins_get_chat(recipient);
|
|
if (g_hash_table_contains(smp_initiators, recipient)) {
|
|
otrl_message_respond_smp(user_state, &ops, NULL, context, (const unsigned char*)secret, strlen(secret));
|
|
if (chatwin) {
|
|
chatwin_otr_smp_event(chatwin, PROF_OTR_SMP_AUTH, NULL);
|
|
}
|
|
g_hash_table_remove(smp_initiators, context->username);
|
|
} else {
|
|
otrl_message_initiate_smp(user_state, &ops, NULL, context, (const unsigned char*)secret, strlen(secret));
|
|
if (chatwin) {
|
|
chatwin_otr_smp_event(chatwin, PROF_OTR_SMP_AUTH_WAIT, NULL);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
otr_smp_question(const char* const recipient, const char* question, const char* answer)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (context->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
|
|
return;
|
|
}
|
|
|
|
otrl_message_initiate_smp_q(user_state, &ops, NULL, context, question, (const unsigned char*)answer, strlen(answer));
|
|
ProfChatWin* chatwin = wins_get_chat(recipient);
|
|
if (chatwin) {
|
|
chatwin_otr_smp_event(chatwin, PROF_OTR_SMP_AUTH_WAIT, NULL);
|
|
}
|
|
}
|
|
|
|
void
|
|
otr_smp_answer(const char* const recipient, const char* answer)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context == NULL) {
|
|
return;
|
|
}
|
|
|
|
if (context->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
|
|
return;
|
|
}
|
|
|
|
// if recipient initiated SMP, send response, else initialise
|
|
otrl_message_respond_smp(user_state, &ops, NULL, context, (const unsigned char*)answer, strlen(answer));
|
|
}
|
|
|
|
void
|
|
otr_end_session(const char* const recipient)
|
|
{
|
|
otrlib_end_session(user_state, recipient, jid, &ops);
|
|
}
|
|
|
|
char*
|
|
otr_get_my_fingerprint(void)
|
|
{
|
|
char fingerprint[45];
|
|
otrl_privkey_fingerprint(user_state, fingerprint, jid, "xmpp");
|
|
char* result = strdup(fingerprint);
|
|
|
|
return result;
|
|
}
|
|
|
|
char*
|
|
otr_get_their_fingerprint(const char* const recipient)
|
|
{
|
|
ConnContext* context = otrlib_context_find(user_state, recipient, jid);
|
|
|
|
if (context) {
|
|
Fingerprint* fingerprint = context->active_fingerprint;
|
|
char readable[45];
|
|
otrl_privkey_hash_to_human(readable, fingerprint->fingerprint);
|
|
return strdup(readable);
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
prof_otrpolicy_t
|
|
otr_get_policy(const char* const recipient)
|
|
{
|
|
ProfAccount* account = accounts_get_account(session_get_account_name());
|
|
// check contact specific setting
|
|
if (g_list_find_custom(account->otr_manual, recipient, (GCompareFunc)g_strcmp0)) {
|
|
account_free(account);
|
|
return PROF_OTRPOLICY_MANUAL;
|
|
}
|
|
if (g_list_find_custom(account->otr_opportunistic, recipient, (GCompareFunc)g_strcmp0)) {
|
|
account_free(account);
|
|
return PROF_OTRPOLICY_OPPORTUNISTIC;
|
|
}
|
|
if (g_list_find_custom(account->otr_always, recipient, (GCompareFunc)g_strcmp0)) {
|
|
account_free(account);
|
|
return PROF_OTRPOLICY_ALWAYS;
|
|
}
|
|
|
|
// check default account setting
|
|
if (account->otr_policy) {
|
|
prof_otrpolicy_t result = PROF_OTRPOLICY_MANUAL;
|
|
if (g_strcmp0(account->otr_policy, "manual") == 0) {
|
|
result = PROF_OTRPOLICY_MANUAL;
|
|
} else if (g_strcmp0(account->otr_policy, "opportunistic") == 0) {
|
|
result = PROF_OTRPOLICY_OPPORTUNISTIC;
|
|
} else if (g_strcmp0(account->otr_policy, "always") == 0) {
|
|
result = PROF_OTRPOLICY_ALWAYS;
|
|
}
|
|
account_free(account);
|
|
return result;
|
|
}
|
|
account_free(account);
|
|
|
|
// check global setting
|
|
auto_gchar gchar* pref_otr_policy = prefs_get_string(PREF_OTR_POLICY);
|
|
|
|
// pref defaults to manual
|
|
prof_otrpolicy_t result = PROF_OTRPOLICY_MANUAL;
|
|
|
|
if (strcmp(pref_otr_policy, "opportunistic") == 0) {
|
|
result = PROF_OTRPOLICY_OPPORTUNISTIC;
|
|
} else if (strcmp(pref_otr_policy, "always") == 0) {
|
|
result = PROF_OTRPOLICY_ALWAYS;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
char*
|
|
otr_encrypt_message(const char* const to, const char* const message)
|
|
{
|
|
char* newmessage = NULL;
|
|
gcry_error_t err = otrlib_encrypt_message(user_state, &ops, jid, to, message, &newmessage);
|
|
|
|
if (err != 0) {
|
|
return NULL;
|
|
} else {
|
|
return newmessage;
|
|
}
|
|
}
|
|
|
|
static void
|
|
_otr_tlv_free(OtrlTLV* tlvs)
|
|
{
|
|
if (tlvs) {
|
|
otrl_tlv_free(tlvs);
|
|
}
|
|
}
|
|
|
|
char*
|
|
otr_decrypt_message(const char* const from, const char* const message, gboolean* decrypted)
|
|
{
|
|
char* newmessage = NULL;
|
|
OtrlTLV* tlvs = NULL;
|
|
|
|
int result = otrlib_decrypt_message(user_state, &ops, jid, from, message, &newmessage, &tlvs);
|
|
|
|
// internal libotr message
|
|
if (result == 1) {
|
|
ConnContext* context = otrlib_context_find(user_state, from, jid);
|
|
|
|
// common tlv handling
|
|
OtrlTLV* tlv = otrl_tlv_find(tlvs, OTRL_TLV_DISCONNECTED);
|
|
if (tlv) {
|
|
if (context) {
|
|
otrl_context_force_plaintext(context);
|
|
ProfChatWin* chatwin = wins_get_chat(from);
|
|
if (chatwin) {
|
|
chatwin_otr_unsecured(chatwin);
|
|
}
|
|
}
|
|
}
|
|
|
|
// library version specific tlv handling
|
|
otrlib_handle_tlvs(user_state, &ops, context, tlvs, smp_initiators);
|
|
_otr_tlv_free(tlvs);
|
|
|
|
return NULL;
|
|
|
|
// message was processed, return to user
|
|
} else if (newmessage) {
|
|
_otr_tlv_free(tlvs);
|
|
if (g_str_has_prefix(message, "?OTR:")) {
|
|
*decrypted = TRUE;
|
|
}
|
|
return newmessage;
|
|
|
|
// normal non OTR message
|
|
} else {
|
|
_otr_tlv_free(tlvs);
|
|
*decrypted = FALSE;
|
|
return strdup(message);
|
|
}
|
|
}
|
|
|
|
void
|
|
otr_free_message(char* message)
|
|
{
|
|
otrl_message_free(message);
|
|
}
|