1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00
profanity/src/xmpp/session.c

566 lines
15 KiB
C
Raw Normal View History

/*
2016-05-05 17:10:10 -04:00
* session.c
2012-02-20 15:07:38 -05:00
*
2016-02-14 17:54:46 -05:00
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*
2012-02-20 15:07:38 -05:00
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity 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 Profanity. If not, see <http://www.gnu.org/licenses/>.
*
* In addition, as a special exception, the copyright holders give permission to
* link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two.
*
* You must obey the GNU General Public License in all respects for all of the
* code used other than OpenSSL. If you modify file(s) with this exception, you
* may extend this exception to your version of the file(s), but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version. If you delete this exception statement from all
* source files in the program, then also delete it here.
*
2012-02-20 15:07:38 -05:00
*/
2016-03-31 16:05:02 -04:00
#include "config.h"
2013-02-02 15:55:58 -05:00
#include <assert.h>
2012-02-05 18:29:09 -05:00
#include <string.h>
#include <stdlib.h>
2012-08-25 20:50:50 -04:00
2016-03-31 16:05:02 -04:00
#ifdef HAVE_LIBMESODE
#include <mesode.h>
#endif
2016-03-31 16:05:02 -04:00
#ifdef HAVE_LIBSTROPHE
2012-02-25 22:15:42 -05:00
#include <strophe.h>
#endif
2012-02-05 18:29:09 -05:00
#include "chat_session.h"
2012-08-22 20:08:06 -04:00
#include "common.h"
2013-02-02 16:59:29 -05:00
#include "config/preferences.h"
2013-01-12 18:10:56 -05:00
#include "jid.h"
2012-08-25 20:50:50 -04:00
#include "log.h"
2013-02-02 15:55:58 -05:00
#include "muc.h"
#include "plugins/plugins.h"
#include "profanity.h"
2015-04-19 11:54:16 -04:00
#include "event/server_events.h"
2013-06-30 11:59:38 -04:00
#include "xmpp/bookmark.h"
2016-05-01 14:39:39 -04:00
#include "xmpp/blocking.h"
2016-05-05 18:51:49 -04:00
#include "xmpp/connection.h"
2013-02-03 17:46:32 -05:00
#include "xmpp/capabilities.h"
2016-05-05 17:10:10 -04:00
#include "xmpp/session.h"
2013-02-02 15:55:58 -05:00
#include "xmpp/iq.h"
#include "xmpp/message.h"
#include "xmpp/presence.h"
#include "xmpp/roster.h"
2013-02-02 15:55:58 -05:00
#include "xmpp/stanza.h"
#include "xmpp/xmpp.h"
2012-02-05 18:29:09 -05:00
static GHashTable *available_resources;
static GSList *disco_items;
// for auto reconnect
static struct {
char *name;
char *passwd;
} saved_account;
static struct {
char *name;
char *jid;
char *passwd;
char *altdomain;
2014-01-17 20:45:05 -05:00
int port;
char *tls_policy;
} saved_details;
static GTimer *reconnect_timer;
2016-05-05 19:53:03 -04:00
static jabber_conn_status_t _session_connect(const char *const fulljid, const char *const passwd,
2015-11-10 20:25:10 -05:00
const char *const altdomain, int port, const char *const tls_policy);
2015-09-22 15:55:41 -04:00
2016-05-05 19:53:03 -04:00
static void _session_reconnect(void);
2012-02-27 16:16:54 -05:00
2016-05-05 19:53:03 -04:00
static void _session_free_saved_account(void);
static void _session_free_saved_details(void);
static void _session_free_session_data(void);
static void
2016-05-05 19:53:03 -04:00
_session_info_destroy(DiscoInfo *info)
{
if (info) {
free(info->item);
if (info->features) {
g_hash_table_destroy(info->features);
}
free(info);
}
}
2014-12-22 17:13:42 -05:00
void
2016-05-05 19:53:03 -04:00
session_init(void)
{
log_info("Initialising XMPP");
2016-05-05 18:51:49 -04:00
connection_init();
presence_sub_requests_init();
2013-02-03 17:46:32 -05:00
caps_init();
2015-11-10 20:25:10 -05:00
available_resources = g_hash_table_new_full(g_str_hash, g_str_equal, free, (GDestroyNotify)resource_destroy);
disco_items = NULL;
xmpp_initialize();
}
2014-12-22 17:13:42 -05:00
jabber_conn_status_t
2016-05-05 19:53:03 -04:00
session_connect_with_account(const ProfAccount *const account)
{
2013-02-03 18:46:20 -05:00
assert(account != NULL);
log_info("Connecting using account: %s", account->name);
// save account name and password for reconnect
if (saved_account.name) {
free(saved_account.name);
}
saved_account.name = strdup(account->name);
if (saved_account.passwd) {
free(saved_account.passwd);
}
saved_account.passwd = strdup(account->password);
2013-02-03 18:59:04 -05:00
// connect with fulljid
Jid *jidp = jid_create_from_bare_and_resource(account->jid, account->resource);
jabber_conn_status_t result =
2016-05-05 19:53:03 -04:00
_session_connect(jidp->fulljid, account->password, account->server, account->port, account->tls_policy);
jid_destroy(jidp);
return result;
}
2014-12-22 17:13:42 -05:00
jabber_conn_status_t
2016-05-05 19:53:03 -04:00
session_connect_with_details(const char *const jid, const char *const passwd, const char *const altdomain,
2015-11-10 20:25:10 -05:00
const int port, const char *const tls_policy)
{
2013-02-03 18:59:04 -05:00
assert(jid != NULL);
assert(passwd != NULL);
// save details for reconnect, remember name for account creating on success
saved_details.name = strdup(jid);
saved_details.passwd = strdup(passwd);
if (altdomain) {
saved_details.altdomain = strdup(altdomain);
} else {
saved_details.altdomain = NULL;
}
2014-01-17 20:45:05 -05:00
if (port != 0) {
saved_details.port = port;
} else {
saved_details.port = 0;
}
if (tls_policy) {
saved_details.tls_policy = strdup(tls_policy);
} else {
saved_details.tls_policy = NULL;
}
2013-02-03 18:59:04 -05:00
// use 'profanity' when no resourcepart in provided jid
Jid *jidp = jid_create(jid);
if (jidp->resourcepart == NULL) {
jid_destroy(jidp);
jidp = jid_create_from_bare_and_resource(jid, "profanity");
saved_details.jid = strdup(jidp->fulljid);
} else {
saved_details.jid = strdup(jid);
}
jid_destroy(jidp);
2013-02-03 18:59:04 -05:00
// connect with fulljid
log_info("Connecting without account, JID: %s", saved_details.jid);
2015-11-10 20:25:10 -05:00
2016-05-05 19:53:03 -04:00
return _session_connect(
saved_details.jid,
passwd,
saved_details.altdomain,
saved_details.port,
saved_details.tls_policy);
}
2015-12-30 20:48:04 -05:00
void
2016-05-05 19:53:03 -04:00
session_autoping_fail(void)
2015-12-30 20:48:04 -05:00
{
2016-05-05 18:51:49 -04:00
if (connection_get_status() == JABBER_CONNECTED) {
2015-12-30 20:48:04 -05:00
log_info("Closing connection");
2016-05-05 19:53:03 -04:00
char *account_name = session_get_account_name();
const char *fulljid = session_get_fulljid();
plugins_on_disconnect(account_name, fulljid);
2016-05-05 19:53:03 -04:00
accounts_set_last_activity(session_get_account_name());
2016-05-05 18:51:49 -04:00
connection_set_status(JABBER_DISCONNECTING);
xmpp_disconnect(connection_get_conn());
2015-12-30 20:48:04 -05:00
2016-05-05 18:51:49 -04:00
while (connection_get_status() == JABBER_DISCONNECTING) {
2016-05-05 19:53:03 -04:00
session_process_events(10);
2015-12-30 20:48:04 -05:00
}
2016-05-05 18:51:49 -04:00
connection_free_conn();
connection_free_ctx();
2015-12-30 20:48:04 -05:00
}
2016-05-05 18:51:49 -04:00
connection_free_presence_msg();
connection_free_domain();
2015-12-30 20:48:04 -05:00
2016-05-05 18:51:49 -04:00
connection_set_status(JABBER_DISCONNECTED);
2016-05-05 19:53:03 -04:00
session_lost_connection();
2015-12-30 20:48:04 -05:00
}
2014-12-22 17:13:42 -05:00
void
2016-05-05 19:53:03 -04:00
session_disconnect(void)
2012-02-06 19:08:59 -05:00
{
// if connected, send end stream and wait for response
2016-05-05 18:51:49 -04:00
if (connection_get_status() == JABBER_CONNECTED) {
2016-05-05 19:53:03 -04:00
char *account_name = session_get_account_name();
const char *fulljid = session_get_fulljid();
plugins_on_disconnect(account_name, fulljid);
log_info("Closing connection");
2016-05-05 19:53:03 -04:00
accounts_set_last_activity(session_get_account_name());
2016-05-05 18:51:49 -04:00
connection_set_status(JABBER_DISCONNECTING);
xmpp_disconnect(connection_get_conn());
2016-05-05 18:51:49 -04:00
while (connection_get_status() == JABBER_DISCONNECTING) {
2016-05-05 19:53:03 -04:00
session_process_events(10);
2012-10-27 13:26:57 -04:00
}
2016-05-05 19:53:03 -04:00
_session_free_saved_account();
_session_free_saved_details();
_session_free_session_data();
2016-05-05 18:51:49 -04:00
connection_free_conn();
connection_free_ctx();
2012-02-19 20:42:29 -05:00
}
2013-02-03 18:46:20 -05:00
2016-05-05 18:51:49 -04:00
connection_free_presence_msg();
connection_free_domain();
connection_set_status(JABBER_STARTED);
2012-02-06 19:08:59 -05:00
}
2014-12-22 17:13:42 -05:00
void
2016-05-05 19:53:03 -04:00
session_shutdown(void)
{
2016-05-05 19:53:03 -04:00
_session_free_saved_account();
_session_free_saved_details();
_session_free_session_data();
xmpp_shutdown();
2016-05-05 18:51:49 -04:00
connection_free_log();
}
2014-12-22 17:13:42 -05:00
void
2016-05-05 19:53:03 -04:00
session_process_events(int millis)
2012-02-06 19:08:59 -05:00
{
2014-04-23 15:51:57 -04:00
int reconnect_sec;
2016-05-05 18:51:49 -04:00
jabber_conn_status_t conn_status = connection_get_status();
switch (conn_status)
2014-04-23 15:51:57 -04:00
{
case JABBER_CONNECTED:
case JABBER_CONNECTING:
case JABBER_DISCONNECTING:
2016-05-05 18:51:49 -04:00
xmpp_run_once(connection_get_ctx(), millis);
2014-04-23 15:51:57 -04:00
break;
case JABBER_DISCONNECTED:
reconnect_sec = prefs_get_reconnect();
if ((reconnect_sec != 0) && reconnect_timer) {
2014-04-25 19:36:36 -04:00
int elapsed_sec = g_timer_elapsed(reconnect_timer, NULL);
2014-04-23 15:51:57 -04:00
if (elapsed_sec > reconnect_sec) {
2016-05-05 19:53:03 -04:00
_session_reconnect();
2014-04-23 15:51:57 -04:00
}
}
2014-04-23 15:51:57 -04:00
break;
default:
break;
}
2012-02-06 19:08:59 -05:00
}
2015-10-25 20:14:23 -04:00
GList*
2016-05-05 19:53:03 -04:00
session_get_available_resources(void)
{
return g_hash_table_get_values(available_resources);
}
GSList*
2016-05-05 19:53:03 -04:00
session_get_disco_items(void)
{
return (disco_items);
}
2016-05-01 14:39:39 -04:00
gboolean
2016-05-05 19:53:03 -04:00
session_service_supports(const char *const feature)
2016-05-01 14:39:39 -04:00
{
DiscoInfo *disco_info;
while (disco_items) {
disco_info = disco_items->data;
if (g_hash_table_lookup_extended(disco_info->features, feature, NULL, NULL)) {
return TRUE;
}
disco_items = g_slist_next(disco_items);
}
return FALSE;
}
void
2016-05-05 19:53:03 -04:00
session_set_disco_items(GSList *_disco_items)
{
disco_items = _disco_items;
}
2015-10-25 20:14:23 -04:00
const char*
2016-05-05 19:53:03 -04:00
session_get_fulljid(void)
{
2016-05-05 18:51:49 -04:00
return xmpp_conn_get_jid(connection_get_conn());
}
2015-10-25 20:14:23 -04:00
char*
2016-05-05 19:53:03 -04:00
session_get_account_name(void)
2013-01-28 17:55:26 -05:00
{
return saved_account.name;
}
char*
2016-05-05 19:53:03 -04:00
session_create_uuid(void)
{
2016-05-05 18:51:49 -04:00
return xmpp_uuid_gen(connection_get_ctx());
}
void
2016-05-05 19:53:03 -04:00
session_free_uuid(char *uuid)
{
if (uuid) {
2016-05-05 18:51:49 -04:00
xmpp_free(connection_get_ctx(), uuid);
}
}
void
2016-05-05 19:53:03 -04:00
session_add_available_resource(Resource *resource)
{
g_hash_table_replace(available_resources, strdup(resource->name), resource);
}
void
2016-05-05 19:53:03 -04:00
session_remove_available_resource(const char *const resource)
{
g_hash_table_remove(available_resources, resource);
}
void
2016-05-05 19:53:03 -04:00
_session_free_saved_account(void)
2013-02-27 15:54:38 -05:00
{
FREE_SET_NULL(saved_account.name);
FREE_SET_NULL(saved_account.passwd);
}
void
2016-05-05 19:53:03 -04:00
_session_free_saved_details(void)
{
FREE_SET_NULL(saved_details.name);
FREE_SET_NULL(saved_details.jid);
FREE_SET_NULL(saved_details.passwd);
FREE_SET_NULL(saved_details.altdomain);
FREE_SET_NULL(saved_details.tls_policy);
2013-02-27 15:54:38 -05:00
}
void
2016-05-05 19:53:03 -04:00
_session_free_session_data(void)
2013-02-27 15:54:38 -05:00
{
2016-05-05 19:53:03 -04:00
g_slist_free_full(disco_items, (GDestroyNotify)_session_info_destroy);
disco_items = NULL;
g_hash_table_remove_all(available_resources);
chat_sessions_clear();
presence_clear_sub_requests();
2013-02-27 15:54:38 -05:00
}
2016-05-05 18:51:49 -04:00
void
2016-05-05 19:53:03 -04:00
session_login_success(int secured)
2015-09-22 15:55:41 -04:00
{
2016-05-05 18:51:49 -04:00
// logged in with account
if (saved_account.name) {
log_debug("Connection handler: logged in with account name: %s", saved_account.name);
sv_ev_login_account_success(saved_account.name, secured);
2015-11-09 20:20:40 -05:00
2016-05-05 18:51:49 -04:00
// logged in without account, use details to create new account
} else {
log_debug("Connection handler: logged in with jid: %s", saved_details.name);
accounts_add(saved_details.name, saved_details.altdomain, saved_details.port, saved_details.tls_policy);
accounts_set_jid(saved_details.name, saved_details.jid);
sv_ev_login_account_success(saved_details.name, secured);
saved_account.name = strdup(saved_details.name);
saved_account.passwd = strdup(saved_details.passwd);
2015-11-09 20:20:40 -05:00
2016-05-05 19:53:03 -04:00
_session_free_saved_details();
2016-05-05 18:51:49 -04:00
}
2016-05-05 19:53:03 -04:00
Jid *my_jid = jid_create(session_get_fulljid());
2016-05-05 18:51:49 -04:00
connection_set_domain(my_jid->domainpart);
jid_destroy(my_jid);
chat_sessions_init();
message_handlers_init();
presence_handlers_init();
iq_handlers_init();
roster_request();
bookmark_request();
blocking_request();
// items discovery
DiscoInfo *info = malloc(sizeof(struct disco_info_t));
info->item = strdup(connection_get_domain());
info->features = g_hash_table_new_full(g_str_hash, g_str_equal, free, NULL);
disco_items = g_slist_append(disco_items, info);
iq_disco_info_request_onconnect(info->item);
iq_disco_items_request_onconnect(connection_get_domain());
if (prefs_get_boolean(PREF_CARBONS)){
iq_enable_carbons();
}
if ((prefs_get_reconnect() != 0) && reconnect_timer) {
g_timer_destroy(reconnect_timer);
reconnect_timer = NULL;
}
}
void
2016-05-05 19:53:03 -04:00
session_login_failed(void)
2016-05-05 18:51:49 -04:00
{
if (reconnect_timer == NULL) {
log_debug("Connection handler: No reconnect timer");
sv_ev_failed_login();
2016-05-05 19:53:03 -04:00
_session_free_saved_account();
_session_free_saved_details();
_session_free_session_data();
2016-05-05 18:51:49 -04:00
} else {
log_debug("Connection handler: Restarting reconnect timer");
if (prefs_get_reconnect() != 0) {
g_timer_start(reconnect_timer);
}
// free resources but leave saved_user untouched
2016-05-05 19:53:03 -04:00
_session_free_session_data();
2016-05-05 18:51:49 -04:00
}
2015-09-22 15:55:41 -04:00
}
2016-05-05 18:51:49 -04:00
#ifdef HAVE_LIBMESODE
2015-11-09 20:20:40 -05:00
TLSCertificate*
2016-05-05 19:53:03 -04:00
session_get_tls_peer_cert(void)
{
2016-05-05 18:51:49 -04:00
xmpp_tlscert_t *xmpptlscert = xmpp_conn_tls_peer_cert(connection_get_conn());
2015-11-10 17:46:48 -05:00
int version = xmpp_conn_tlscert_version(xmpptlscert);
char *serialnumber = xmpp_conn_tlscert_serialnumber(xmpptlscert);
2015-11-09 20:20:40 -05:00
char *subjectname = xmpp_conn_tlscert_subjectname(xmpptlscert);
2015-11-10 17:46:48 -05:00
char *issuername = xmpp_conn_tlscert_issuername(xmpptlscert);
char *fingerprint = xmpp_conn_tlscert_fingerprint(xmpptlscert);
2015-11-09 20:20:40 -05:00
char *notbefore = xmpp_conn_tlscert_notbefore(xmpptlscert);
char *notafter = xmpp_conn_tlscert_notafter(xmpptlscert);
2015-11-10 17:46:48 -05:00
char *key_alg = xmpp_conn_tlscert_key_algorithm(xmpptlscert);
char *signature_alg = xmpp_conn_tlscert_signature_algorithm(xmpptlscert);
2015-11-09 20:20:40 -05:00
2015-11-10 17:46:48 -05:00
TLSCertificate *cert = tlscerts_new(fingerprint, version, serialnumber, subjectname, issuername, notbefore,
notafter, key_alg, signature_alg);
2015-11-09 20:20:40 -05:00
2016-05-05 18:51:49 -04:00
xmpp_conn_free_tlscert(connection_get_ctx(), xmpptlscert);
2015-11-09 20:20:40 -05:00
return cert;
}
#endif
2015-09-22 15:55:41 -04:00
gboolean
2016-05-05 19:53:03 -04:00
session_conn_is_secured(void)
{
2016-05-05 18:51:49 -04:00
if (connection_get_status() == JABBER_CONNECTED) {
return xmpp_conn_is_secured(connection_get_conn()) == 0 ? FALSE : TRUE;
} else {
return FALSE;
}
}
2016-03-23 18:57:03 -04:00
gboolean
2016-05-05 19:53:03 -04:00
session_send_stanza(const char *const stanza)
2016-03-23 18:57:03 -04:00
{
2016-05-05 18:51:49 -04:00
if (connection_get_status() != JABBER_CONNECTED) {
2016-03-23 18:57:03 -04:00
return FALSE;
} else {
2016-05-05 18:51:49 -04:00
xmpp_send_raw_string(connection_get_conn(), "%s", stanza);
2016-03-23 18:57:03 -04:00
return TRUE;
}
}
static jabber_conn_status_t
2016-05-05 19:53:03 -04:00
_session_connect(const char *const fulljid, const char *const passwd, const char *const altdomain, int port,
2015-11-10 20:25:10 -05:00
const char *const tls_policy)
{
2013-02-03 18:46:20 -05:00
assert(fulljid != NULL);
assert(passwd != NULL);
Jid *jid = jid_create(fulljid);
if (jid == NULL) {
log_error("Malformed JID not able to connect: %s", fulljid);
2016-05-05 18:51:49 -04:00
connection_set_status(JABBER_DISCONNECTED);
return connection_get_status();
} else if (jid->fulljid == NULL) {
log_error("Full JID required to connect, received: %s", fulljid);
2016-05-05 18:51:49 -04:00
connection_set_status(JABBER_DISCONNECTED);
jid_destroy(jid);
2016-05-05 18:51:49 -04:00
return connection_get_status();
}
jid_destroy(jid);
2013-01-12 22:14:36 -05:00
log_info("Connecting as %s", fulljid);
char *cert_path = prefs_get_string(PREF_TLS_CERTPATH);
2016-05-05 18:51:49 -04:00
jabber_conn_status_t status = connection_connect(fulljid, passwd, altdomain, port, tls_policy, cert_path);
2015-11-21 16:19:28 -05:00
prefs_free_string(cert_path);
2016-05-05 18:51:49 -04:00
return status;
2012-02-05 18:29:09 -05:00
}
2013-01-28 20:02:40 -05:00
static void
2016-05-05 19:53:03 -04:00
_session_reconnect(void)
2013-01-28 20:02:40 -05:00
{
// reconnect with account.
ProfAccount *account = accounts_get_account(saved_account.name);
if (account == NULL) {
log_error("Unable to reconnect, account no longer exists: %s", saved_account.name);
} else {
char *fulljid = create_fulljid(account->jid, account->resource);
log_debug("Attempting reconnect with account %s", account->name);
2016-05-05 19:53:03 -04:00
_session_connect(fulljid, saved_account.passwd, account->server, account->port, account->tls_policy);
2013-01-28 20:02:40 -05:00
free(fulljid);
g_timer_start(reconnect_timer);
}
}
2016-05-05 18:51:49 -04:00
void
2016-05-05 19:53:03 -04:00
session_lost_connection(void)
2015-12-30 20:48:04 -05:00
{
sv_ev_lost_connection();
if (prefs_get_reconnect() != 0) {
assert(reconnect_timer == NULL);
reconnect_timer = g_timer_new();
} else {
2016-05-05 19:53:03 -04:00
_session_free_saved_account();
_session_free_saved_details();
2015-12-30 20:48:04 -05:00
}
2016-05-05 19:53:03 -04:00
_session_free_session_data();
2015-12-30 20:48:04 -05:00
}