2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2013-02-02 14:47:41 -05:00
|
|
|
* connection.c
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2013-01-10 21:05:29 -05:00
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-02-02 15:55:58 -05:00
|
|
|
#include <assert.h>
|
2012-02-05 18:29:09 -05:00
|
|
|
#include <string.h>
|
2012-07-03 13:47:16 -04:00
|
|
|
#include <stdlib.h>
|
2012-08-25 20:50:50 -04:00
|
|
|
|
2012-02-25 22:15:42 -05:00
|
|
|
#include <strophe.h>
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-10-29 21:38:08 -04: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"
|
2012-10-28 16:52:30 -04:00
|
|
|
#include "contact_list.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"
|
2012-09-11 17:55:59 -04:00
|
|
|
#include "profanity.h"
|
2013-02-03 17:46:32 -05:00
|
|
|
#include "xmpp/capabilities.h"
|
2013-02-03 17:40:54 -05:00
|
|
|
#include "xmpp/connection.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "xmpp/iq.h"
|
|
|
|
#include "xmpp/message.h"
|
|
|
|
#include "xmpp/presence.h"
|
|
|
|
#include "xmpp/stanza.h"
|
|
|
|
#include "xmpp/xmpp.h"
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-02-26 12:59:04 -05:00
|
|
|
static struct _jabber_conn_t {
|
|
|
|
xmpp_log_t *log;
|
|
|
|
xmpp_ctx_t *ctx;
|
|
|
|
xmpp_conn_t *conn;
|
2012-05-27 14:20:17 -04:00
|
|
|
jabber_conn_status_t conn_status;
|
2013-01-31 16:51:35 -05:00
|
|
|
char *presence_message;
|
2012-11-13 05:51:28 -05:00
|
|
|
int priority;
|
2013-01-31 16:51:35 -05:00
|
|
|
int tls_disabled;
|
2013-04-18 17:49:46 -04:00
|
|
|
char *domain;
|
2012-02-26 12:59:04 -05:00
|
|
|
} jabber_conn;
|
2012-02-16 19:42:41 -05:00
|
|
|
|
2013-02-18 17:51:05 -05:00
|
|
|
static GHashTable *available_resources;
|
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
// for auto reconnect
|
2013-01-12 15:53:07 -05:00
|
|
|
static struct {
|
2013-01-27 15:23:42 -05:00
|
|
|
char *name;
|
|
|
|
char *passwd;
|
|
|
|
} saved_account;
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
char *name;
|
2013-01-12 15:53:07 -05:00
|
|
|
char *jid;
|
|
|
|
char *passwd;
|
|
|
|
char *altdomain;
|
2013-01-27 15:23:42 -05:00
|
|
|
} saved_details;
|
2013-01-12 15:53:07 -05:00
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
static GTimer *reconnect_timer;
|
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
static log_level_t _get_log_level(xmpp_log_level_t xmpp_level);
|
|
|
|
static xmpp_log_level_t _get_xmpp_log_level();
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _xmpp_file_logger(void * const userdata,
|
|
|
|
const xmpp_log_level_t level, const char * const area,
|
2012-10-02 16:37:55 -04:00
|
|
|
const char * const msg);
|
|
|
|
static xmpp_log_t * _xmpp_get_file_logger();
|
2012-08-18 21:44:46 -04:00
|
|
|
|
2013-01-27 15:23:42 -05:00
|
|
|
static jabber_conn_status_t _jabber_connect(const char * const fulljid,
|
|
|
|
const char * const passwd, const char * const altdomain);
|
|
|
|
static void _jabber_reconnect(void);
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _connection_handler(xmpp_conn_t * const conn,
|
|
|
|
const xmpp_conn_event_t status, const int error,
|
2012-02-10 18:58:57 -05:00
|
|
|
xmpp_stream_error_t * const stream_error, void * const userdata);
|
2012-02-27 16:16:54 -05:00
|
|
|
static int _ping_timed_handler(xmpp_conn_t * const conn, void * const userdata);
|
|
|
|
|
2013-02-27 15:54:38 -05:00
|
|
|
void _connection_free_saved_account(void);
|
|
|
|
void _connection_free_saved_details(void);
|
|
|
|
void _connection_free_session_data(void);
|
2013-02-27 15:46:44 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
jabber_init(const int disable_tls)
|
2012-02-26 12:59:04 -05:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Initialising XMPP");
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.conn_status = JABBER_STARTED;
|
2013-01-31 16:51:35 -05:00
|
|
|
jabber_conn.presence_message = NULL;
|
2013-02-27 18:14:41 -05:00
|
|
|
jabber_conn.conn = NULL;
|
|
|
|
jabber_conn.ctx = NULL;
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.tls_disabled = disable_tls;
|
2013-04-18 17:49:46 -04:00
|
|
|
jabber_conn.domain = NULL;
|
2013-05-05 19:33:33 -04:00
|
|
|
presence_sub_requests_init();
|
2013-02-03 17:46:32 -05:00
|
|
|
caps_init();
|
2013-02-21 03:14:41 -05:00
|
|
|
available_resources = g_hash_table_new_full(g_str_hash, g_str_equal, free,
|
|
|
|
(GDestroyNotify)resource_destroy);
|
2013-02-27 18:14:41 -05:00
|
|
|
xmpp_initialize();
|
2012-02-26 12:59:04 -05:00
|
|
|
}
|
|
|
|
|
2013-01-27 15:23:42 -05:00
|
|
|
jabber_conn_status_t
|
2013-02-03 19:37:10 -05:00
|
|
|
jabber_connect_with_account(const ProfAccount * const account,
|
|
|
|
const char * const passwd)
|
2013-01-27 15:23:42 -05:00
|
|
|
{
|
2013-02-03 18:46:20 -05:00
|
|
|
assert(account != NULL);
|
|
|
|
assert(passwd != NULL);
|
|
|
|
|
|
|
|
log_info("Connecting using account: %s", account->name);
|
|
|
|
|
|
|
|
// save account name and password for reconnect
|
2013-01-27 15:23:42 -05:00
|
|
|
saved_account.name = strdup(account->name);
|
|
|
|
saved_account.passwd = strdup(passwd);
|
|
|
|
|
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 = _jabber_connect(jidp->fulljid, passwd, account->server);
|
|
|
|
free(jidp);
|
2013-01-27 15:23:42 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
jabber_conn_status_t
|
|
|
|
jabber_connect_with_details(const char * const jid,
|
|
|
|
const char * const passwd, const char * const altdomain)
|
|
|
|
{
|
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
|
2013-01-27 15:23:42 -05:00
|
|
|
saved_details.name = strdup(jid);
|
|
|
|
saved_details.passwd = strdup(passwd);
|
|
|
|
if (altdomain != NULL) {
|
|
|
|
saved_details.altdomain = strdup(altdomain);
|
|
|
|
} else {
|
|
|
|
saved_details.altdomain = NULL;
|
|
|
|
}
|
|
|
|
|
2013-02-03 18:59:04 -05:00
|
|
|
// use 'profanity' when no resourcepart in provided jid
|
2013-01-27 15:23:42 -05:00
|
|
|
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
|
2013-01-27 15:23:42 -05:00
|
|
|
log_info("Connecting without account, JID: %s", saved_details.jid);
|
|
|
|
return _jabber_connect(saved_details.jid, passwd, saved_details.altdomain);
|
|
|
|
}
|
|
|
|
|
2012-10-27 13:26:57 -04:00
|
|
|
void
|
2012-07-24 18:19:48 -04:00
|
|
|
jabber_disconnect(void)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2012-09-11 17:55:59 -04:00
|
|
|
// if connected, send end stream and wait for response
|
2012-02-26 12:59:04 -05:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Closing connection");
|
2012-09-11 17:55:59 -04:00
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTING;
|
2013-01-07 14:35:20 -05:00
|
|
|
xmpp_disconnect(jabber_conn.conn);
|
2012-09-11 17:55:59 -04:00
|
|
|
|
2012-10-27 13:26:57 -04:00
|
|
|
while (jabber_get_connection_status() == JABBER_DISCONNECTING) {
|
|
|
|
jabber_process_events();
|
|
|
|
}
|
2013-02-27 15:54:38 -05:00
|
|
|
_connection_free_saved_account();
|
|
|
|
_connection_free_saved_details();
|
|
|
|
_connection_free_session_data();
|
2013-03-02 16:35:00 -05:00
|
|
|
if (jabber_conn.conn != NULL) {
|
|
|
|
xmpp_conn_release(jabber_conn.conn);
|
|
|
|
jabber_conn.conn = NULL;
|
|
|
|
}
|
|
|
|
if (jabber_conn.ctx != NULL) {
|
|
|
|
xmpp_ctx_free(jabber_conn.ctx);
|
|
|
|
jabber_conn.ctx = NULL;
|
|
|
|
}
|
2012-02-19 20:42:29 -05:00
|
|
|
}
|
2013-02-03 18:46:20 -05:00
|
|
|
|
2013-02-03 17:56:23 -05:00
|
|
|
jabber_conn.conn_status = JABBER_STARTED;
|
|
|
|
FREE_SET_NULL(jabber_conn.presence_message);
|
2013-04-18 17:49:46 -04:00
|
|
|
FREE_SET_NULL(jabber_conn.domain);
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2013-02-27 18:14:41 -05:00
|
|
|
void
|
|
|
|
jabber_shutdown(void)
|
|
|
|
{
|
|
|
|
xmpp_shutdown();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
jabber_process_events(void)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2012-11-24 21:14:38 -05:00
|
|
|
// run xmpp event loop if connected, connecting or disconnecting
|
2012-10-21 15:02:20 -04:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED
|
2012-09-11 17:55:59 -04:00
|
|
|
|| jabber_conn.conn_status == JABBER_CONNECTING
|
2012-11-24 21:14:38 -05:00
|
|
|
|| jabber_conn.conn_status == JABBER_DISCONNECTING) {
|
2012-02-26 12:59:04 -05:00
|
|
|
xmpp_run_once(jabber_conn.ctx, 10);
|
2012-11-24 21:14:38 -05:00
|
|
|
|
|
|
|
// check timer and reconnect if disconnected and timer set
|
2012-11-26 17:00:57 -05:00
|
|
|
} else if (prefs_get_reconnect() != 0) {
|
|
|
|
if ((jabber_conn.conn_status == JABBER_DISCONNECTED) &&
|
2012-11-24 21:14:38 -05:00
|
|
|
(reconnect_timer != NULL)) {
|
2013-01-07 11:54:07 -05:00
|
|
|
if (g_timer_elapsed(reconnect_timer, NULL) > prefs_get_reconnect()) {
|
2013-01-27 15:23:42 -05:00
|
|
|
_jabber_reconnect();
|
2012-11-26 17:00:57 -05:00
|
|
|
}
|
2012-11-24 21:14:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 -05:00
|
|
|
void
|
2013-02-03 19:37:10 -05:00
|
|
|
jabber_set_autoping(const int seconds)
|
2012-11-26 18:58:24 -05:00
|
|
|
{
|
2013-01-12 16:48:24 -05:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
2012-11-26 18:58:24 -05:00
|
|
|
xmpp_timed_handler_delete(jabber_conn.conn, _ping_timed_handler);
|
|
|
|
|
|
|
|
if (seconds != 0) {
|
|
|
|
int millis = seconds * 1000;
|
|
|
|
xmpp_timed_handler_add(jabber_conn.conn, _ping_timed_handler, millis,
|
|
|
|
jabber_conn.ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-18 17:51:05 -05:00
|
|
|
GList *
|
|
|
|
jabber_get_available_resources(void)
|
|
|
|
{
|
|
|
|
return g_hash_table_get_values(available_resources);
|
|
|
|
}
|
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
jabber_conn_status_t
|
|
|
|
jabber_get_connection_status(void)
|
|
|
|
{
|
|
|
|
return (jabber_conn.conn_status);
|
|
|
|
}
|
|
|
|
|
2013-01-28 17:24:47 -05:00
|
|
|
xmpp_conn_t *
|
2013-02-03 17:40:54 -05:00
|
|
|
connection_get_conn(void)
|
2013-01-28 17:24:47 -05:00
|
|
|
{
|
|
|
|
return jabber_conn.conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmpp_ctx_t *
|
2013-02-03 17:40:54 -05:00
|
|
|
connection_get_ctx(void)
|
2013-01-28 17:24:47 -05:00
|
|
|
{
|
|
|
|
return jabber_conn.ctx;
|
|
|
|
}
|
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
const char *
|
|
|
|
jabber_get_jid(void)
|
|
|
|
{
|
|
|
|
return xmpp_conn_get_jid(jabber_conn.conn);
|
|
|
|
}
|
|
|
|
|
2013-04-18 17:49:46 -04:00
|
|
|
const char *
|
|
|
|
jabber_get_domain(void)
|
|
|
|
{
|
|
|
|
return jabber_conn.domain;
|
|
|
|
}
|
|
|
|
|
2012-11-13 05:51:28 -05:00
|
|
|
char *
|
2013-01-31 16:51:35 -05:00
|
|
|
jabber_get_presence_message(void)
|
2012-11-13 05:51:28 -05:00
|
|
|
{
|
2013-01-31 16:51:35 -05:00
|
|
|
return jabber_conn.presence_message;
|
2012-11-13 05:51:28 -05:00
|
|
|
}
|
|
|
|
|
2013-01-28 17:55:26 -05:00
|
|
|
char *
|
|
|
|
jabber_get_account_name(void)
|
|
|
|
{
|
|
|
|
return saved_account.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-02-03 17:40:54 -05:00
|
|
|
connection_set_presence_message(const char * const message)
|
2013-01-28 17:55:26 -05:00
|
|
|
{
|
2013-01-31 16:51:35 -05:00
|
|
|
FREE_SET_NULL(jabber_conn.presence_message);
|
2013-01-28 17:55:26 -05:00
|
|
|
if (message != NULL) {
|
2013-01-31 16:51:35 -05:00
|
|
|
jabber_conn.presence_message = strdup(message);
|
2013-01-28 17:55:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-02-03 19:37:10 -05:00
|
|
|
connection_set_priority(const int priority)
|
2013-01-28 17:55:26 -05:00
|
|
|
{
|
|
|
|
jabber_conn.priority = priority;
|
|
|
|
}
|
|
|
|
|
2013-02-18 17:51:05 -05:00
|
|
|
void
|
|
|
|
connection_add_available_resource(Resource *resource)
|
|
|
|
{
|
|
|
|
g_hash_table_replace(available_resources, strdup(resource->name), resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
connection_remove_available_resource(const char * const resource)
|
|
|
|
{
|
|
|
|
g_hash_table_remove(available_resources, resource);
|
|
|
|
}
|
|
|
|
|
2012-10-16 17:52:19 -04:00
|
|
|
void
|
2013-02-27 15:54:38 -05:00
|
|
|
_connection_free_saved_account(void)
|
|
|
|
{
|
|
|
|
FREE_SET_NULL(saved_account.name);
|
|
|
|
FREE_SET_NULL(saved_account.passwd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_connection_free_saved_details(void)
|
2012-10-16 17:52:19 -04:00
|
|
|
{
|
2013-01-27 15:23:42 -05:00
|
|
|
FREE_SET_NULL(saved_details.name);
|
|
|
|
FREE_SET_NULL(saved_details.jid);
|
|
|
|
FREE_SET_NULL(saved_details.passwd);
|
|
|
|
FREE_SET_NULL(saved_details.altdomain);
|
2013-02-27 15:54:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_connection_free_session_data(void)
|
|
|
|
{
|
2013-02-21 03:14:41 -05:00
|
|
|
g_hash_table_remove_all(available_resources);
|
2012-10-29 21:38:08 -04:00
|
|
|
chat_sessions_clear();
|
2013-05-05 19:33:33 -04:00
|
|
|
presence_clear_sub_requests();
|
2013-02-27 15:54:38 -05:00
|
|
|
}
|
|
|
|
|
2013-01-28 17:24:47 -05:00
|
|
|
int
|
2013-02-10 14:39:19 -05:00
|
|
|
connection_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
2012-11-06 19:19:02 -05:00
|
|
|
{
|
2012-11-09 21:28:38 -05:00
|
|
|
gchar *err_msg = NULL;
|
|
|
|
gchar *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
xmpp_stanza_t *error_stanza = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_ERROR);
|
|
|
|
xmpp_stanza_t *text_stanza =
|
|
|
|
xmpp_stanza_get_child_by_name(error_stanza, STANZA_NAME_TEXT);
|
2012-11-05 16:48:13 -05:00
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
if (error_stanza == NULL) {
|
2012-11-06 19:34:43 -05:00
|
|
|
log_debug("error message without <error/> received");
|
2012-11-05 15:29:57 -05:00
|
|
|
} else {
|
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
// check for text
|
|
|
|
if (text_stanza != NULL) {
|
|
|
|
err_msg = xmpp_stanza_get_text(text_stanza);
|
|
|
|
prof_handle_error_message(from, err_msg);
|
|
|
|
|
|
|
|
// TODO : process 'type' attribute from <error/> [RFC6120, 8.3.2]
|
|
|
|
|
|
|
|
// otherwise show defined-condition
|
2012-11-06 19:34:43 -05:00
|
|
|
} else {
|
2012-11-09 21:28:38 -05:00
|
|
|
xmpp_stanza_t *err_cond = xmpp_stanza_get_children(error_stanza);
|
2012-08-15 18:52:54 -04:00
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
if (err_cond == NULL) {
|
|
|
|
log_debug("error message without <defined-condition/> or <text/> received");
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2012-11-09 21:28:38 -05:00
|
|
|
} else {
|
|
|
|
err_msg = xmpp_stanza_get_name(err_cond);
|
|
|
|
prof_handle_error_message(from, err_msg);
|
|
|
|
|
|
|
|
// TODO : process 'type' attribute from <error/> [RFC6120, 8.3.2]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2012-11-06 19:34:43 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
static jabber_conn_status_t
|
|
|
|
_jabber_connect(const char * const fulljid, const char * const passwd,
|
|
|
|
const char * const altdomain)
|
2012-11-06 19:34:43 -05:00
|
|
|
{
|
2013-02-03 18:46:20 -05:00
|
|
|
assert(fulljid != NULL);
|
|
|
|
assert(passwd != NULL);
|
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
Jid *jid = jid_create(fulljid);
|
2012-10-31 17:19:08 -04:00
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
if (jid == NULL) {
|
|
|
|
log_error("Malformed JID not able to connect: %s", fulljid);
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
|
|
|
return jabber_conn.conn_status;
|
|
|
|
} else if (jid->fulljid == NULL) {
|
|
|
|
log_error("Full JID required to connect, received: %s", fulljid);
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
|
|
|
return jabber_conn.conn_status;
|
|
|
|
}
|
2012-08-15 19:50:32 -04:00
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
jid_destroy(jid);
|
2013-01-12 22:14:36 -05:00
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
log_info("Connecting as %s", fulljid);
|
|
|
|
jabber_conn.log = _xmpp_get_file_logger();
|
2013-02-27 18:14:41 -05:00
|
|
|
|
|
|
|
if (jabber_conn.conn != NULL) {
|
|
|
|
xmpp_conn_release(jabber_conn.conn);
|
|
|
|
}
|
|
|
|
if (jabber_conn.ctx != NULL) {
|
|
|
|
xmpp_ctx_free(jabber_conn.ctx);
|
|
|
|
}
|
2013-01-28 19:37:50 -05:00
|
|
|
jabber_conn.ctx = xmpp_ctx_new(NULL, jabber_conn.log);
|
2013-03-02 16:35:00 -05:00
|
|
|
if (jabber_conn.ctx == NULL) {
|
|
|
|
log_warning("Failed to get libstrophe ctx during connect");
|
|
|
|
return JABBER_DISCONNECTED;
|
|
|
|
}
|
2013-01-28 19:37:50 -05:00
|
|
|
jabber_conn.conn = xmpp_conn_new(jabber_conn.ctx);
|
2013-03-02 16:35:00 -05:00
|
|
|
if (jabber_conn.conn == NULL) {
|
|
|
|
log_warning("Failed to get libstrophe conn during connect");
|
|
|
|
return JABBER_DISCONNECTED;
|
|
|
|
}
|
2013-01-28 19:37:50 -05:00
|
|
|
xmpp_conn_set_jid(jabber_conn.conn, fulljid);
|
|
|
|
xmpp_conn_set_pass(jabber_conn.conn, passwd);
|
2013-02-27 18:14:41 -05:00
|
|
|
if (jabber_conn.tls_disabled) {
|
2013-01-28 19:37:50 -05:00
|
|
|
xmpp_conn_disable_tls(jabber_conn.conn);
|
2013-02-27 18:14:41 -05:00
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
int connect_status = xmpp_connect_client(jabber_conn.conn, altdomain, 0,
|
|
|
|
_connection_handler, jabber_conn.ctx);
|
2012-11-06 19:34:43 -05:00
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
if (connect_status == 0)
|
|
|
|
jabber_conn.conn_status = JABBER_CONNECTING;
|
|
|
|
else
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
2012-11-12 18:26:09 -05:00
|
|
|
|
2013-01-28 19:37:50 -05:00
|
|
|
return jabber_conn.conn_status;
|
2012-02-05 18:29:09 -05:00
|
|
|
}
|
|
|
|
|
2013-01-28 20:02:40 -05:00
|
|
|
static void
|
|
|
|
_jabber_reconnect(void)
|
|
|
|
{
|
|
|
|
// 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);
|
|
|
|
_jabber_connect(fulljid, saved_account.passwd, account->server);
|
|
|
|
free(fulljid);
|
|
|
|
g_timer_start(reconnect_timer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2012-10-21 15:02:20 -04:00
|
|
|
_connection_handler(xmpp_conn_t * const conn,
|
|
|
|
const xmpp_conn_event_t status, const int error,
|
2012-02-10 18:58:57 -05:00
|
|
|
xmpp_stream_error_t * const stream_error, void * const userdata)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
|
|
|
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
|
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
// login success
|
2012-02-05 18:29:09 -05:00
|
|
|
if (status == XMPP_CONN_CONNECT) {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: XMPP_CONN_CONNECT");
|
2013-01-27 15:23:42 -05:00
|
|
|
|
|
|
|
// logged in with account
|
|
|
|
if (saved_account.name != NULL) {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: logged in with account name: %s", saved_account.name);
|
2013-01-27 15:23:42 -05:00
|
|
|
prof_handle_login_account_success(saved_account.name);
|
|
|
|
|
|
|
|
// logged in without account, use details to create new account
|
2012-12-09 17:14:38 -05:00
|
|
|
} else {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: logged in with jid: %s", saved_details.name);
|
2013-01-27 15:23:42 -05:00
|
|
|
accounts_add(saved_details.name, saved_details.altdomain);
|
|
|
|
accounts_set_jid(saved_details.name, saved_details.jid);
|
|
|
|
|
|
|
|
prof_handle_login_account_success(saved_details.name);
|
|
|
|
saved_account.name = strdup(saved_details.name);
|
|
|
|
saved_account.passwd = strdup(saved_details.passwd);
|
|
|
|
|
2013-02-27 15:56:04 -05:00
|
|
|
_connection_free_saved_details();
|
2012-12-09 17:14:38 -05:00
|
|
|
}
|
|
|
|
|
2013-04-18 17:49:46 -04:00
|
|
|
Jid *myJid = jid_create(jabber_get_jid());
|
|
|
|
jabber_conn.domain = strdup(myJid->domainpart);
|
|
|
|
jid_destroy(myJid);
|
|
|
|
|
2012-10-29 21:38:08 -04:00
|
|
|
chat_sessions_init();
|
2012-02-16 18:28:11 -05:00
|
|
|
|
2013-01-28 19:45:03 -05:00
|
|
|
message_add_handlers();
|
2013-01-28 19:04:49 -05:00
|
|
|
presence_add_handlers();
|
2013-01-28 18:54:49 -05:00
|
|
|
iq_add_handlers();
|
2012-11-26 18:58:24 -05:00
|
|
|
|
|
|
|
if (prefs_get_autoping() != 0) {
|
|
|
|
int millis = prefs_get_autoping() * 1000;
|
|
|
|
xmpp_timed_handler_add(conn, _ping_timed_handler, millis, ctx);
|
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2013-01-28 20:02:40 -05:00
|
|
|
iq_roster_request();
|
2012-02-26 12:59:04 -05:00
|
|
|
jabber_conn.conn_status = JABBER_CONNECTED;
|
2012-11-24 21:14:38 -05:00
|
|
|
|
2012-11-26 17:00:57 -05:00
|
|
|
if (prefs_get_reconnect() != 0) {
|
|
|
|
if (reconnect_timer != NULL) {
|
|
|
|
g_timer_destroy(reconnect_timer);
|
|
|
|
reconnect_timer = NULL;
|
|
|
|
}
|
2012-11-24 21:14:38 -05:00
|
|
|
}
|
|
|
|
|
2013-01-07 14:35:20 -05:00
|
|
|
} else if (status == XMPP_CONN_DISCONNECT) {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: XMPP_CONN_DISCONNECT");
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-11 17:55:59 -04:00
|
|
|
// lost connection for unkown reason
|
2013-01-07 14:35:20 -05:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: Lost connection for unknown reason");
|
2012-10-21 15:02:20 -04:00
|
|
|
prof_handle_lost_connection();
|
2012-11-26 17:00:57 -05:00
|
|
|
if (prefs_get_reconnect() != 0) {
|
2013-01-07 13:24:04 -05:00
|
|
|
assert(reconnect_timer == NULL);
|
2012-11-26 17:00:57 -05:00
|
|
|
reconnect_timer = g_timer_new();
|
2013-02-27 18:14:41 -05:00
|
|
|
// free resources but leave saved_user untouched
|
|
|
|
_connection_free_session_data();
|
2013-01-07 15:13:24 -05:00
|
|
|
} else {
|
2013-02-27 15:54:38 -05:00
|
|
|
_connection_free_saved_account();
|
|
|
|
_connection_free_saved_details();
|
|
|
|
_connection_free_session_data();
|
2012-11-26 17:00:57 -05:00
|
|
|
}
|
2012-09-11 17:55:59 -04:00
|
|
|
|
|
|
|
// login attempt failed
|
2013-01-07 14:35:20 -05:00
|
|
|
} else if (jabber_conn.conn_status != JABBER_DISCONNECTING) {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: Login failed");
|
2012-11-24 21:14:38 -05:00
|
|
|
if (reconnect_timer == NULL) {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: No reconnect timer");
|
2012-11-24 21:14:38 -05:00
|
|
|
prof_handle_failed_login();
|
2013-02-27 15:54:38 -05:00
|
|
|
_connection_free_saved_account();
|
|
|
|
_connection_free_saved_details();
|
|
|
|
_connection_free_session_data();
|
2012-11-24 21:14:38 -05:00
|
|
|
} else {
|
2013-02-26 17:02:03 -05:00
|
|
|
log_debug("Connection handler: Restarting reconnect timer");
|
2012-11-26 17:00:57 -05:00
|
|
|
if (prefs_get_reconnect() != 0) {
|
|
|
|
g_timer_start(reconnect_timer);
|
|
|
|
}
|
2013-02-27 18:14:41 -05:00
|
|
|
// free resources but leave saved_user untouched
|
|
|
|
_connection_free_session_data();
|
2012-11-24 21:14:38 -05:00
|
|
|
}
|
2012-04-19 16:03:48 -04:00
|
|
|
}
|
2013-01-07 14:35:20 -05:00
|
|
|
|
|
|
|
// close stream response from server after disconnect is handled too
|
|
|
|
jabber_conn.conn_status = JABBER_DISCONNECTED;
|
2013-02-26 17:02:03 -05:00
|
|
|
} else if (status == XMPP_CONN_FAIL) {
|
|
|
|
log_debug("Connection handler: XMPP_CONN_FAIL");
|
|
|
|
} else {
|
|
|
|
log_error("Connection handler: Unknown status");
|
2012-02-05 18:29:09 -05:00
|
|
|
}
|
|
|
|
}
|
2012-02-08 21:47:25 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
|
|
|
_ping_timed_handler(xmpp_conn_t * const conn, void * const userdata)
|
2012-02-27 16:16:54 -05:00
|
|
|
{
|
2012-02-27 18:43:46 -05:00
|
|
|
if (jabber_conn.conn_status == JABBER_CONNECTED) {
|
|
|
|
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-09 19:43:09 -05:00
|
|
|
xmpp_stanza_t *iq = stanza_create_ping_iq(ctx);
|
2012-02-27 18:43:46 -05:00
|
|
|
xmpp_send(conn, iq);
|
|
|
|
xmpp_stanza_release(iq);
|
|
|
|
}
|
2012-02-27 16:16:54 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2012-02-27 17:53:31 -05:00
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
static log_level_t
|
2013-02-03 19:37:10 -05:00
|
|
|
_get_log_level(const xmpp_log_level_t xmpp_level)
|
2012-10-02 16:37:55 -04:00
|
|
|
{
|
|
|
|
if (xmpp_level == XMPP_LEVEL_DEBUG) {
|
|
|
|
return PROF_LEVEL_DEBUG;
|
|
|
|
} else if (xmpp_level == XMPP_LEVEL_INFO) {
|
|
|
|
return PROF_LEVEL_INFO;
|
|
|
|
} else if (xmpp_level == XMPP_LEVEL_WARN) {
|
|
|
|
return PROF_LEVEL_WARN;
|
|
|
|
} else {
|
|
|
|
return PROF_LEVEL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static xmpp_log_level_t
|
|
|
|
_get_xmpp_log_level()
|
|
|
|
{
|
|
|
|
log_level_t prof_level = log_get_filter();
|
|
|
|
|
|
|
|
if (prof_level == PROF_LEVEL_DEBUG) {
|
|
|
|
return XMPP_LEVEL_DEBUG;
|
|
|
|
} else if (prof_level == PROF_LEVEL_INFO) {
|
|
|
|
return XMPP_LEVEL_INFO;
|
|
|
|
} else if (prof_level == PROF_LEVEL_WARN) {
|
|
|
|
return XMPP_LEVEL_WARN;
|
|
|
|
} else {
|
|
|
|
return XMPP_LEVEL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_xmpp_file_logger(void * const userdata, const xmpp_log_level_t level,
|
|
|
|
const char * const area, const char * const msg)
|
|
|
|
{
|
|
|
|
log_level_t prof_level = _get_log_level(level);
|
|
|
|
log_msg(prof_level, area, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static xmpp_log_t *
|
|
|
|
_xmpp_get_file_logger()
|
|
|
|
{
|
|
|
|
xmpp_log_level_t level = _get_xmpp_log_level();
|
|
|
|
xmpp_log_t *file_log = malloc(sizeof(xmpp_log_t));
|
|
|
|
|
|
|
|
file_log->handler = _xmpp_file_logger;
|
|
|
|
file_log->userdata = &level;
|
|
|
|
|
|
|
|
return file_log;
|
|
|
|
}
|
|
|
|
|