mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
40d8e61118
This was causing connection problem with following messages: irc: TLS handshake failed irc: error: Insufficient credentials for that request.
4614 lines
170 KiB
C
4614 lines
170 KiB
C
/*
|
|
* Copyright (C) 2003-2011 Sebastien Helleu <flashcode@flashtux.org>
|
|
* Copyright (C) 2005-2010 Emmanuel Bouthenot <kolter@openics.org>
|
|
*
|
|
* This file is part of WeeChat, the extensible chat client.
|
|
*
|
|
* WeeChat 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.
|
|
*
|
|
* WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* irc-server.c: I/O communication with IRC servers
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#ifdef _WIN32
|
|
#include <winsock.h>
|
|
#else
|
|
#include <sys/socket.h>
|
|
#include <sys/time.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_GNUTLS
|
|
#include <gnutls/gnutls.h>
|
|
#include <gnutls/x509.h>
|
|
#endif
|
|
|
|
#include "../weechat-plugin.h"
|
|
#include "irc.h"
|
|
#include "irc-server.h"
|
|
#include "irc-buffer.h"
|
|
#include "irc-channel.h"
|
|
#include "irc-command.h"
|
|
#include "irc-config.h"
|
|
#include "irc-input.h"
|
|
#include "irc-message.h"
|
|
#include "irc-nick.h"
|
|
#include "irc-notify.h"
|
|
#include "irc-protocol.h"
|
|
#include "irc-raw.h"
|
|
#include "irc-redirect.h"
|
|
#include "irc-sasl.h"
|
|
|
|
|
|
struct t_irc_server *irc_servers = NULL;
|
|
struct t_irc_server *last_irc_server = NULL;
|
|
|
|
struct t_irc_message *irc_recv_msgq = NULL;
|
|
struct t_irc_message *irc_msgq_last_msg = NULL;
|
|
|
|
char *irc_server_option_string[IRC_SERVER_NUM_OPTIONS] =
|
|
{ "addresses", "proxy", "ipv6",
|
|
"ssl", "ssl_cert", "ssl_priorities", "ssl_dhkey_size", "ssl_verify",
|
|
"password", "sasl_mechanism", "sasl_username", "sasl_password", "sasl_timeout",
|
|
"autoconnect", "autoreconnect", "autoreconnect_delay",
|
|
"nicks", "username", "realname", "local_hostname",
|
|
"command", "command_delay", "autojoin", "autorejoin", "autorejoin_delay",
|
|
"connection_timeout",
|
|
"anti_flood_prio_high", "anti_flood_prio_low",
|
|
"away_check", "away_check_max_nicks",
|
|
"default_msg_part", "default_msg_quit",
|
|
"notify",
|
|
};
|
|
|
|
char *irc_server_option_default[IRC_SERVER_NUM_OPTIONS] =
|
|
{ "", "", "off",
|
|
"off", "", "NORMAL", "2048", "on",
|
|
"", "plain", "", "", "15",
|
|
"off", "on", "10",
|
|
"", "", "", "",
|
|
"", "0", "", "off", "30",
|
|
"60",
|
|
"2", "2",
|
|
"0", "25",
|
|
"WeeChat %v", "WeeChat %v",
|
|
"",
|
|
};
|
|
|
|
char *irc_server_prefix_modes_default = "qaohvu";
|
|
char *irc_server_prefix_chars_default = "~&@%+-";
|
|
|
|
const char *irc_server_send_default_tags = NULL; /* default tags when */
|
|
/* sending a message */
|
|
|
|
time_t irc_server_last_check_manual_joins = 0;
|
|
|
|
|
|
void irc_server_reconnect (struct t_irc_server *server);
|
|
void irc_server_free_data (struct t_irc_server *server);
|
|
|
|
|
|
/*
|
|
* irc_server_valid: check if a server pointer exists
|
|
* return 1 if server exists
|
|
* 0 if server is not found
|
|
*/
|
|
|
|
int
|
|
irc_server_valid (struct t_irc_server *server)
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
|
|
if (!server)
|
|
return 0;
|
|
|
|
for (ptr_server = irc_servers; ptr_server;
|
|
ptr_server = ptr_server->next_server)
|
|
{
|
|
if (ptr_server == server)
|
|
return 1;
|
|
}
|
|
|
|
/* server not found */
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* irc_server_search_option: search a server option name
|
|
* return index of option in array
|
|
* "irc_server_option_string", or -1 if
|
|
* not found
|
|
*/
|
|
|
|
int
|
|
irc_server_search_option (const char *option_name)
|
|
{
|
|
int i;
|
|
|
|
if (!option_name)
|
|
return -1;
|
|
|
|
for (i = 0; i < IRC_SERVER_NUM_OPTIONS; i++)
|
|
{
|
|
if (weechat_strcasecmp (irc_server_option_string[i],
|
|
option_name) == 0)
|
|
return i;
|
|
}
|
|
|
|
/* server option not found */
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* irc_server_sasl_enabled: return 1 if SASL is enabled on server
|
|
* 0 if SASL is NOT enabled on server
|
|
*/
|
|
|
|
int
|
|
irc_server_sasl_enabled (struct t_irc_server *server)
|
|
{
|
|
const char *sasl_username, *sasl_password;
|
|
|
|
sasl_username = IRC_SERVER_OPTION_STRING(server,
|
|
IRC_SERVER_OPTION_SASL_USERNAME);
|
|
sasl_password = IRC_SERVER_OPTION_STRING(server,
|
|
IRC_SERVER_OPTION_SASL_PASSWORD);
|
|
|
|
/* SASL is enabled if username AND password are set */
|
|
return (sasl_username && sasl_username[0]
|
|
&& sasl_password && sasl_password[0]) ? 1 : 0;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_name_without_port: get name of server without port
|
|
* (ends before first '/' if found)
|
|
*/
|
|
|
|
char *
|
|
irc_server_get_name_without_port (const char *name)
|
|
{
|
|
char *pos;
|
|
|
|
if (!name)
|
|
return NULL;
|
|
|
|
pos = strchr (name, '/');
|
|
if (pos && (pos != name))
|
|
return weechat_strndup (name, pos - name);
|
|
|
|
return strdup (name);
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_addresses: set addresses for server
|
|
*/
|
|
|
|
void
|
|
irc_server_set_addresses (struct t_irc_server *server, const char *addresses)
|
|
{
|
|
int i;
|
|
char *pos, *error;
|
|
long number;
|
|
|
|
/* free data */
|
|
server->addresses_count = 0;
|
|
if (server->addresses_array)
|
|
{
|
|
weechat_string_free_split (server->addresses_array);
|
|
server->addresses_array = NULL;
|
|
}
|
|
if (server->ports_array)
|
|
{
|
|
free (server->ports_array);
|
|
server->ports_array = NULL;
|
|
}
|
|
|
|
/* set new addresses/ports */
|
|
if (addresses && addresses[0])
|
|
{
|
|
server->addresses_array = weechat_string_split (addresses,
|
|
",", 0, 0,
|
|
&server->addresses_count);
|
|
server->ports_array = malloc (server->addresses_count * sizeof (server->ports_array[0]));
|
|
for (i = 0; i < server->addresses_count; i++)
|
|
{
|
|
pos = strchr (server->addresses_array[i], '/');
|
|
if (pos)
|
|
{
|
|
pos[0] = 0;
|
|
pos++;
|
|
error = NULL;
|
|
number = strtol (pos, &error, 10);
|
|
server->ports_array[i] = (error && !error[0]) ?
|
|
number : IRC_SERVER_DEFAULT_PORT;
|
|
}
|
|
else
|
|
{
|
|
server->ports_array[i] = IRC_SERVER_DEFAULT_PORT;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_index_current_address: set index of current address for server
|
|
*/
|
|
|
|
void
|
|
irc_server_set_index_current_address (struct t_irc_server *server, int index)
|
|
{
|
|
if (server->current_address)
|
|
{
|
|
free (server->current_address);
|
|
server->current_address = NULL;
|
|
}
|
|
server->current_port = 0;
|
|
|
|
if (index < server->addresses_count)
|
|
{
|
|
server->index_current_address = index;
|
|
if (server->current_address)
|
|
free (server->current_address);
|
|
server->current_address = strdup (server->addresses_array[index]);
|
|
server->current_port = server->ports_array[index];
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_nicks: set nicks for server
|
|
*/
|
|
|
|
void
|
|
irc_server_set_nicks (struct t_irc_server *server, const char *nicks)
|
|
{
|
|
/* free data */
|
|
server->nicks_count = 0;
|
|
if (server->nicks_array)
|
|
{
|
|
weechat_string_free_split (server->nicks_array);
|
|
server->nicks_array = NULL;
|
|
}
|
|
|
|
/* set new nicks */
|
|
server->nicks_array = weechat_string_split ((nicks) ? nicks : IRC_SERVER_DEFAULT_NICKS,
|
|
",", 0, 0,
|
|
&server->nicks_count);
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_nick: set nickname for a server
|
|
*/
|
|
|
|
void
|
|
irc_server_set_nick (struct t_irc_server *server, const char *nick)
|
|
{
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
if (server->nick)
|
|
free (server->nick);
|
|
server->nick = (nick) ? strdup (nick) : NULL;
|
|
|
|
/* set local variable "nick" for server and all channels/pv */
|
|
weechat_buffer_set (server->buffer, "localvar_set_nick", nick);
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
weechat_buffer_set (ptr_channel->buffer, "localvar_set_nick", nick);
|
|
}
|
|
|
|
weechat_bar_item_update ("input_prompt");
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_nick_index: get index of nick in array "nicks_array"
|
|
* return -1 if nick is not set or not found in
|
|
* "nicks_array"
|
|
*/
|
|
|
|
int
|
|
irc_server_get_nick_index (struct t_irc_server *server)
|
|
{
|
|
int i;
|
|
|
|
if (!server->nick)
|
|
return -1;
|
|
|
|
for (i = 0; i < server->nicks_count; i++)
|
|
{
|
|
if (strcmp (server->nick, server->nicks_array[i]) == 0)
|
|
{
|
|
return i;
|
|
}
|
|
}
|
|
|
|
/* nick not found */
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_isupport_value: return value of an item in "isupport" (copy
|
|
* of IRC message 005)
|
|
* if featureis found but has no value, empty
|
|
* string is returned
|
|
* if feature is not found, NULL is returned
|
|
*/
|
|
|
|
const char *
|
|
irc_server_get_isupport_value (struct t_irc_server *server, const char *feature)
|
|
{
|
|
char feature2[64], *pos_feature, *pos_equal, *pos_space;
|
|
int length;
|
|
static char value[256];
|
|
|
|
if (!server || !server->isupport || !feature)
|
|
return NULL;
|
|
|
|
/* search feature with value */
|
|
snprintf (feature2, sizeof (feature2), " %s=", feature);
|
|
pos_feature = strstr (server->isupport, feature2);
|
|
if (pos_feature)
|
|
{
|
|
/* feature found with value, return value */
|
|
pos_feature++;
|
|
pos_equal = strchr (pos_feature, '=');
|
|
pos_space = strchr (pos_feature, ' ');
|
|
if (pos_space)
|
|
length = pos_space - pos_equal - 1;
|
|
else
|
|
length = strlen (pos_equal) + 1;
|
|
if (length > (int)sizeof (value) - 1)
|
|
length = (int)sizeof (value) - 1;
|
|
memcpy (value, pos_equal + 1, length);
|
|
value[length] = '\0';
|
|
return value;
|
|
}
|
|
|
|
/* search feature without value */
|
|
feature2[strlen (feature2) - 1] = ' ';
|
|
pos_feature = strstr (server->isupport, feature2);
|
|
if (pos_feature)
|
|
{
|
|
value[0] = '\0';
|
|
return value;
|
|
}
|
|
|
|
/* feature not found in isupport */
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_prefix_modes_chars: set "prefix_modes" and "prefix_chars" in
|
|
* server using value of PREFIX in IRC
|
|
* message 005
|
|
* for example, if prefix is "(aohv)&@%+",
|
|
* prefix_modes = "aohv"
|
|
* prefix_chars = "&@%+"
|
|
*/
|
|
|
|
void
|
|
irc_server_set_prefix_modes_chars (struct t_irc_server *server,
|
|
const char *prefix)
|
|
{
|
|
char *pos;
|
|
int i, length_modes, length_chars;
|
|
|
|
if (!server || !prefix)
|
|
return;
|
|
|
|
/* free previous values */
|
|
if (server->prefix_modes)
|
|
{
|
|
free (server->prefix_modes);
|
|
server->prefix_modes = NULL;
|
|
}
|
|
if (server->prefix_chars)
|
|
{
|
|
free (server->prefix_chars);
|
|
server->prefix_chars = NULL;
|
|
}
|
|
|
|
/* assign new values */
|
|
pos = strchr (prefix, ')');
|
|
if (pos)
|
|
{
|
|
server->prefix_modes = weechat_strndup (prefix + 1,
|
|
pos - prefix - 1);
|
|
if (server->prefix_modes)
|
|
{
|
|
pos++;
|
|
length_modes = strlen (server->prefix_modes);
|
|
length_chars = strlen (pos);
|
|
server->prefix_chars = malloc (length_modes + 1);
|
|
if (server->prefix_chars)
|
|
{
|
|
for (i = 0; i < length_modes; i++)
|
|
{
|
|
server->prefix_chars[i] = (i < length_chars) ? pos[i] : ' ';
|
|
}
|
|
server->prefix_chars[length_modes] = '\0';
|
|
}
|
|
else
|
|
{
|
|
free (server->prefix_modes);
|
|
server->prefix_modes = NULL;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_prefix_modes: get prefix_modes for server (return default
|
|
* modes if prefix_modes is not set)
|
|
*/
|
|
|
|
const char *
|
|
irc_server_get_prefix_modes (struct t_irc_server *server)
|
|
{
|
|
return (server && server->prefix_modes) ?
|
|
server->prefix_modes : irc_server_prefix_modes_default;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_prefix_chars: get prefix_chars for server (return default
|
|
* chars if prefix_chars is not set)
|
|
*/
|
|
|
|
const char *
|
|
irc_server_get_prefix_chars (struct t_irc_server *server)
|
|
{
|
|
return (server && server->prefix_chars) ?
|
|
server->prefix_chars : irc_server_prefix_chars_default;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_prefix_mode_index: get index of mode in prefix_modes
|
|
* return -1 if mode does not exist in server
|
|
*/
|
|
|
|
int
|
|
irc_server_get_prefix_mode_index (struct t_irc_server *server, char mode)
|
|
{
|
|
const char *prefix_modes;
|
|
char *pos;
|
|
|
|
if (server)
|
|
{
|
|
prefix_modes = irc_server_get_prefix_modes (server);
|
|
pos = strchr (prefix_modes, mode);
|
|
if (pos)
|
|
return pos - prefix_modes;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_prefix_char_index: get index of prefix_char in prefix_chars
|
|
* return -1 if prefix_char does not exist in
|
|
* server
|
|
*/
|
|
|
|
int
|
|
irc_server_get_prefix_char_index (struct t_irc_server *server,
|
|
char prefix_char)
|
|
{
|
|
const char *prefix_chars;
|
|
char *pos;
|
|
|
|
if (server)
|
|
{
|
|
prefix_chars = irc_server_get_prefix_chars (server);
|
|
pos = strchr (prefix_chars, prefix_char);
|
|
if (pos)
|
|
return pos - prefix_chars;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_prefix_mode_for_char: get mode for prefix char
|
|
* return ' ' (space) if prefix char is
|
|
* not found
|
|
*/
|
|
|
|
char
|
|
irc_server_get_prefix_mode_for_char (struct t_irc_server *server,
|
|
char prefix_char)
|
|
{
|
|
const char *prefix_modes;
|
|
int index;
|
|
|
|
if (server)
|
|
{
|
|
prefix_modes = irc_server_get_prefix_modes (server);
|
|
index = irc_server_get_prefix_char_index (server, prefix_char);
|
|
if (index >= 0)
|
|
return prefix_modes[index];
|
|
}
|
|
|
|
return ' ';
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_prefix_mode_for_char: get prefix char for mode
|
|
* return ' ' (space) if mode is not found
|
|
*/
|
|
|
|
char
|
|
irc_server_get_prefix_char_for_mode (struct t_irc_server *server, char mode)
|
|
{
|
|
const char *prefix_chars;
|
|
int index;
|
|
|
|
if (server)
|
|
{
|
|
prefix_chars = irc_server_get_prefix_chars (server);
|
|
index = irc_server_get_prefix_mode_index (server, mode);
|
|
if (index >= 0)
|
|
return prefix_chars[index];
|
|
}
|
|
|
|
return ' ';
|
|
}
|
|
|
|
/*
|
|
* irc_server_alloc: allocate a new server and add it to the servers queue
|
|
*/
|
|
|
|
struct t_irc_server *
|
|
irc_server_alloc (const char *name)
|
|
{
|
|
struct t_irc_server *new_server;
|
|
int i, length;
|
|
char *option_name;
|
|
|
|
if (irc_server_search (name))
|
|
return NULL;
|
|
|
|
/* alloc memory for new server */
|
|
new_server = malloc (sizeof (*new_server));
|
|
if (!new_server)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: error when allocating new server"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
return NULL;
|
|
}
|
|
|
|
/* add new server to queue */
|
|
new_server->prev_server = last_irc_server;
|
|
new_server->next_server = NULL;
|
|
if (irc_servers)
|
|
last_irc_server->next_server = new_server;
|
|
else
|
|
irc_servers = new_server;
|
|
last_irc_server = new_server;
|
|
|
|
/* set name */
|
|
new_server->name = strdup (name);
|
|
|
|
/* internal vars */
|
|
new_server->temp_server = 0;
|
|
new_server->reloading_from_config = 0;
|
|
new_server->reloaded_from_config = 0;
|
|
new_server->addresses_count = 0;
|
|
new_server->addresses_array = NULL;
|
|
new_server->ports_array = NULL;
|
|
new_server->index_current_address = 0;
|
|
new_server->current_address = NULL;
|
|
new_server->current_ip = NULL;
|
|
new_server->current_port = 0;
|
|
new_server->sock = -1;
|
|
new_server->hook_connect = NULL;
|
|
new_server->hook_fd = NULL;
|
|
new_server->hook_timer_connection = NULL;
|
|
new_server->hook_timer_sasl = NULL;
|
|
new_server->is_connected = 0;
|
|
new_server->ssl_connected = 0;
|
|
new_server->unterminated_message = NULL;
|
|
new_server->nicks_count = 0;
|
|
new_server->nicks_array = NULL;
|
|
new_server->nick_first_tried = 0;
|
|
new_server->nick = NULL;
|
|
new_server->nick_modes = NULL;
|
|
new_server->isupport = NULL;
|
|
new_server->prefix_modes = NULL;
|
|
new_server->prefix_chars = NULL;
|
|
new_server->nick_max_length = 0;
|
|
new_server->reconnect_delay = 0;
|
|
new_server->reconnect_start = 0;
|
|
new_server->command_time = 0;
|
|
new_server->reconnect_join = 0;
|
|
new_server->disable_autojoin = 0;
|
|
new_server->is_away = 0;
|
|
new_server->away_message = NULL;
|
|
new_server->away_time = 0;
|
|
new_server->lag = 0;
|
|
new_server->lag_check_time.tv_sec = 0;
|
|
new_server->lag_check_time.tv_usec = 0;
|
|
new_server->lag_next_check = time (NULL) +
|
|
weechat_config_integer (irc_config_network_lag_check);
|
|
new_server->lag_last_refresh = 0;
|
|
new_server->cmd_list_regexp = NULL;
|
|
new_server->last_user_message = 0;
|
|
new_server->last_away_check = 0;
|
|
for (i = 0; i < IRC_SERVER_NUM_OUTQUEUES_PRIO; i++)
|
|
{
|
|
new_server->outqueue[i] = NULL;
|
|
new_server->last_outqueue[i] = NULL;
|
|
}
|
|
new_server->redirects = NULL;
|
|
new_server->last_redirect = NULL;
|
|
new_server->notify_list = NULL;
|
|
new_server->last_notify = NULL;
|
|
new_server->manual_joins = weechat_hashtable_new (4,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_INTEGER,
|
|
NULL,
|
|
NULL);
|
|
new_server->buffer = NULL;
|
|
new_server->buffer_as_string = NULL;
|
|
new_server->channels = NULL;
|
|
new_server->last_channel = NULL;
|
|
|
|
/* create options with null value */
|
|
for (i = 0; i < IRC_SERVER_NUM_OPTIONS; i++)
|
|
{
|
|
length = strlen (new_server->name) + 1 +
|
|
strlen (irc_server_option_string[i]) + 1;
|
|
option_name = malloc (length);
|
|
if (option_name)
|
|
{
|
|
snprintf (option_name, length, "%s.%s",
|
|
new_server->name,
|
|
irc_server_option_string[i]);
|
|
new_server->options[i] =
|
|
irc_config_server_new_option (irc_config_file,
|
|
irc_config_section_server,
|
|
i,
|
|
option_name,
|
|
NULL,
|
|
NULL,
|
|
1,
|
|
&irc_config_server_check_value_cb,
|
|
irc_server_option_string[i],
|
|
&irc_config_server_change_cb,
|
|
irc_server_option_string[i]);
|
|
irc_config_server_change_cb (irc_server_option_string[i],
|
|
new_server->options[i]);
|
|
free (option_name);
|
|
}
|
|
}
|
|
|
|
return new_server;
|
|
}
|
|
|
|
/*
|
|
* irc_server_alloc_with_url: init a server with url of this form:
|
|
* irc://nick:pass@irc.toto.org:6667
|
|
* returns: 1 = ok
|
|
* 0 = error
|
|
*/
|
|
|
|
int
|
|
irc_server_alloc_with_url (const char *irc_url)
|
|
{
|
|
char *irc_url2, *pos_server, *pos_nick, *pos_password;
|
|
char *pos_address, *pos_port, *pos_channel, *pos;
|
|
char *server_address, *server_nicks, *server_autojoin;
|
|
int ipv6, ssl, length;
|
|
struct t_irc_server *ptr_server;
|
|
|
|
irc_url2 = strdup (irc_url);
|
|
if (!irc_url2)
|
|
return 0;
|
|
|
|
pos_server = NULL;
|
|
pos_nick = NULL;
|
|
pos_password = NULL;
|
|
pos_address = NULL;
|
|
pos_port = NULL;
|
|
pos_channel = NULL;
|
|
|
|
ipv6 = 0;
|
|
ssl = 0;
|
|
|
|
pos_server = strstr (irc_url2, "://");
|
|
if (!pos_server)
|
|
{
|
|
free (irc_url2);
|
|
return 0;
|
|
}
|
|
pos_server[0] = '\0';
|
|
pos_server += 3;
|
|
|
|
pos_channel = strstr (pos_server, "/");
|
|
if (pos_channel)
|
|
{
|
|
pos_channel[0] = '\0';
|
|
pos_channel++;
|
|
while (pos_channel[0] == '/')
|
|
{
|
|
pos_channel++;
|
|
}
|
|
}
|
|
|
|
/* check for SSL / IPv6 */
|
|
if (weechat_strcasecmp (irc_url2, "irc6") == 0)
|
|
{
|
|
ipv6 = 1;
|
|
}
|
|
else if (weechat_strcasecmp (irc_url2, "ircs") == 0)
|
|
{
|
|
ssl = 1;
|
|
}
|
|
else if ((weechat_strcasecmp (irc_url2, "irc6s") == 0)
|
|
|| (weechat_strcasecmp (irc_url2, "ircs6") == 0))
|
|
{
|
|
ipv6 = 1;
|
|
ssl = 1;
|
|
}
|
|
|
|
/* search for nick, password, address+port */
|
|
pos_address = strchr (pos_server, '@');
|
|
if (pos_address)
|
|
{
|
|
pos_address[0] = '\0';
|
|
pos_address++;
|
|
pos_nick = pos_server;
|
|
pos_password = strchr (pos_server, ':');
|
|
if (pos_password)
|
|
{
|
|
pos_password[0] = '\0';
|
|
pos_password++;
|
|
}
|
|
}
|
|
else
|
|
pos_address = pos_server;
|
|
|
|
/*
|
|
* search for port in address, and skip optional [ ] around address
|
|
* (can be used to indicate IPv6 port, after ']')
|
|
*/
|
|
if (pos_address[0] == '[')
|
|
{
|
|
pos_address++;
|
|
pos = strchr (pos_address, ']');
|
|
if (!pos)
|
|
{
|
|
free (irc_url2);
|
|
return 0;
|
|
}
|
|
pos[0] = '\0';
|
|
pos++;
|
|
pos_port = strchr (pos, ':');
|
|
if (pos_port)
|
|
{
|
|
pos_port[0] = '\0';
|
|
pos_port++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
pos_port = strchr (pos_address, ':');
|
|
if (pos_port)
|
|
{
|
|
pos_port[0] = '\0';
|
|
pos_port++;
|
|
}
|
|
}
|
|
|
|
ptr_server = irc_server_alloc (pos_address);
|
|
if (ptr_server)
|
|
{
|
|
ptr_server->temp_server = 1;
|
|
if (pos_address && pos_address[0])
|
|
{
|
|
length = strlen (pos_address) + 1 +
|
|
((pos_port) ? strlen (pos_port) : 0) + 1;
|
|
server_address = malloc (length);
|
|
if (server_address)
|
|
{
|
|
snprintf (server_address, length,
|
|
"%s%s%s",
|
|
pos_address,
|
|
(pos_port && pos_port[0]) ? "/" : "",
|
|
(pos_port && pos_port[0]) ? pos_port : "");
|
|
weechat_config_option_set (ptr_server->options[IRC_SERVER_OPTION_ADDRESSES],
|
|
server_address,
|
|
1);
|
|
free (server_address);
|
|
}
|
|
}
|
|
weechat_config_option_set (ptr_server->options[IRC_SERVER_OPTION_IPV6],
|
|
(ipv6) ? "on" : "off",
|
|
1);
|
|
weechat_config_option_set (ptr_server->options[IRC_SERVER_OPTION_SSL],
|
|
(ssl) ? "on" : "off",
|
|
1);
|
|
if (pos_nick && pos_nick[0])
|
|
{
|
|
length = ((strlen (pos_nick) + 2) * 5) + 1;
|
|
server_nicks = malloc (length);
|
|
if (server_nicks)
|
|
{
|
|
snprintf (server_nicks, length,
|
|
"%s,%s1,%s2,%s3,%s4",
|
|
pos_nick, pos_nick, pos_nick, pos_nick, pos_nick);
|
|
weechat_config_option_set (ptr_server->options[IRC_SERVER_OPTION_NICKS],
|
|
server_nicks,
|
|
1);
|
|
free (server_nicks);
|
|
}
|
|
}
|
|
if (pos_password && pos_password[0])
|
|
weechat_config_option_set (ptr_server->options[IRC_SERVER_OPTION_PASSWORD],
|
|
pos_password,
|
|
1);
|
|
weechat_config_option_set (ptr_server->options[IRC_SERVER_OPTION_AUTOCONNECT],
|
|
"on",
|
|
1);
|
|
/* autojoin */
|
|
if (pos_channel && pos_channel[0])
|
|
{
|
|
if (irc_channel_is_channel (pos_channel))
|
|
server_autojoin = strdup (pos_channel);
|
|
else
|
|
{
|
|
server_autojoin = malloc (strlen (pos_channel) + 2);
|
|
if (server_autojoin)
|
|
{
|
|
strcpy (server_autojoin, "#");
|
|
strcat (server_autojoin, pos_channel);
|
|
}
|
|
}
|
|
if (server_autojoin)
|
|
{
|
|
weechat_config_option_set (ptr_server->options[IRC_SERVER_OPTION_AUTOJOIN],
|
|
server_autojoin,
|
|
1);
|
|
free (server_autojoin);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: error creating new server \"%s\""),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
pos_address);
|
|
}
|
|
|
|
free (irc_url2);
|
|
|
|
return (ptr_server) ? 1 : 0;
|
|
}
|
|
|
|
/*
|
|
* irc_server_apply_command_line_options: apply options on command line to a
|
|
* server
|
|
* for example:
|
|
* -ssl
|
|
* -nossl
|
|
* -password=test
|
|
* -proxy=myproxy
|
|
*/
|
|
|
|
void
|
|
irc_server_apply_command_line_options (struct t_irc_server *server,
|
|
int argc, char **argv)
|
|
{
|
|
int i, index_option;
|
|
char *pos, *option_name, *ptr_value, *value_boolean[2] = { "off", "on" };
|
|
|
|
for (i = 0; i < argc; i++)
|
|
{
|
|
if (argv[i][0] == '-')
|
|
{
|
|
pos = strchr (argv[i], '=');
|
|
if (pos)
|
|
{
|
|
option_name = weechat_strndup (argv[i] + 1, pos - argv[i] - 1);
|
|
ptr_value = pos + 1;
|
|
}
|
|
else
|
|
{
|
|
option_name = strdup (argv[i] + 1);
|
|
ptr_value = value_boolean[1];
|
|
}
|
|
if (option_name)
|
|
{
|
|
index_option = irc_server_search_option (option_name);
|
|
if (index_option < 0)
|
|
{
|
|
/* look if option is negative, like "-noxxx" */
|
|
if (weechat_strncasecmp (argv[i], "-no", 3) == 0)
|
|
{
|
|
free (option_name);
|
|
option_name = strdup (argv[i] + 3);
|
|
index_option = irc_server_search_option (option_name);
|
|
ptr_value = value_boolean[0];
|
|
}
|
|
}
|
|
if (index_option >= 0)
|
|
{
|
|
weechat_config_option_set (server->options[index_option],
|
|
ptr_value, 1);
|
|
}
|
|
free (option_name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_outqueue_add: add a message in out queue
|
|
*/
|
|
|
|
void
|
|
irc_server_outqueue_add (struct t_irc_server *server, int priority,
|
|
const char *command, const char *msg1,
|
|
const char *msg2, int modified, const char *tags,
|
|
struct t_irc_redirect *redirect)
|
|
{
|
|
struct t_irc_outqueue *new_outqueue;
|
|
|
|
new_outqueue = malloc (sizeof (*new_outqueue));
|
|
if (new_outqueue)
|
|
{
|
|
new_outqueue->command = (command) ? strdup (command) : strdup ("unknown");
|
|
new_outqueue->message_before_mod = (msg1) ? strdup (msg1) : NULL;
|
|
new_outqueue->message_after_mod = (msg2) ? strdup (msg2) : NULL;
|
|
new_outqueue->modified = modified;
|
|
new_outqueue->tags = (tags) ? strdup (tags) : NULL;
|
|
new_outqueue->redirect = redirect;
|
|
|
|
new_outqueue->prev_outqueue = server->last_outqueue[priority];
|
|
new_outqueue->next_outqueue = NULL;
|
|
if (server->outqueue[priority])
|
|
server->last_outqueue[priority]->next_outqueue = new_outqueue;
|
|
else
|
|
server->outqueue[priority] = new_outqueue;
|
|
server->last_outqueue[priority] = new_outqueue;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_outqueue_free: free a message in out queue
|
|
*/
|
|
|
|
void
|
|
irc_server_outqueue_free (struct t_irc_server *server,
|
|
int priority,
|
|
struct t_irc_outqueue *outqueue)
|
|
{
|
|
struct t_irc_outqueue *new_outqueue;
|
|
|
|
/* remove outqueue message */
|
|
if (server->last_outqueue[priority] == outqueue)
|
|
server->last_outqueue[priority] = outqueue->prev_outqueue;
|
|
if (outqueue->prev_outqueue)
|
|
{
|
|
(outqueue->prev_outqueue)->next_outqueue = outqueue->next_outqueue;
|
|
new_outqueue = server->outqueue[priority];
|
|
}
|
|
else
|
|
new_outqueue = outqueue->next_outqueue;
|
|
|
|
if (outqueue->next_outqueue)
|
|
(outqueue->next_outqueue)->prev_outqueue = outqueue->prev_outqueue;
|
|
|
|
/* free data */
|
|
if (outqueue->command)
|
|
free (outqueue->command);
|
|
if (outqueue->message_before_mod)
|
|
free (outqueue->message_before_mod);
|
|
if (outqueue->message_after_mod)
|
|
free (outqueue->message_after_mod);
|
|
if (outqueue->tags)
|
|
free (outqueue->tags);
|
|
free (outqueue);
|
|
server->outqueue[priority] = new_outqueue;
|
|
}
|
|
|
|
/*
|
|
* irc_server_outqueue_free_all: free all outqueued messages
|
|
*/
|
|
|
|
void
|
|
irc_server_outqueue_free_all (struct t_irc_server *server, int priority)
|
|
{
|
|
while (server->outqueue[priority])
|
|
{
|
|
irc_server_outqueue_free (server, priority,
|
|
server->outqueue[priority]);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_free_data: free server data
|
|
*/
|
|
|
|
void
|
|
irc_server_free_data (struct t_irc_server *server)
|
|
{
|
|
int i;
|
|
|
|
if (!server)
|
|
return;
|
|
|
|
/* free data */
|
|
for (i = 0; i < IRC_SERVER_NUM_OPTIONS; i++)
|
|
{
|
|
if (server->options[i])
|
|
weechat_config_option_free (server->options[i]);
|
|
}
|
|
if (server->name)
|
|
free (server->name);
|
|
if (server->addresses_array)
|
|
weechat_string_free_split (server->addresses_array);
|
|
if (server->ports_array)
|
|
free (server->ports_array);
|
|
if (server->current_address)
|
|
free (server->current_address);
|
|
if (server->current_ip)
|
|
free (server->current_ip);
|
|
if (server->hook_connect)
|
|
weechat_unhook (server->hook_connect);
|
|
if (server->hook_fd)
|
|
weechat_unhook (server->hook_fd);
|
|
if (server->hook_timer_connection)
|
|
weechat_unhook (server->hook_timer_connection);
|
|
if (server->hook_timer_sasl)
|
|
weechat_unhook (server->hook_timer_sasl);
|
|
if (server->unterminated_message)
|
|
free (server->unterminated_message);
|
|
if (server->nicks_array)
|
|
weechat_string_free_split (server->nicks_array);
|
|
if (server->nick)
|
|
free (server->nick);
|
|
if (server->nick_modes)
|
|
free (server->nick_modes);
|
|
if (server->isupport)
|
|
free (server->isupport);
|
|
if (server->prefix_modes)
|
|
free (server->prefix_modes);
|
|
if (server->prefix_chars)
|
|
free (server->prefix_chars);
|
|
if (server->away_message)
|
|
free (server->away_message);
|
|
if (server->cmd_list_regexp)
|
|
{
|
|
regfree (server->cmd_list_regexp);
|
|
free (server->cmd_list_regexp);
|
|
}
|
|
for (i = 0; i < IRC_SERVER_NUM_OUTQUEUES_PRIO; i++)
|
|
{
|
|
irc_server_outqueue_free_all (server, i);
|
|
}
|
|
irc_notify_free_all (server);
|
|
weechat_hashtable_free (server->manual_joins);
|
|
irc_redirect_free_all (server);
|
|
if (server->channels)
|
|
irc_channel_free_all (server);
|
|
if (server->buffer_as_string)
|
|
free (server->buffer_as_string);
|
|
}
|
|
|
|
/*
|
|
* irc_server_free: free a server and remove it from servers queue
|
|
*/
|
|
|
|
void
|
|
irc_server_free (struct t_irc_server *server)
|
|
{
|
|
struct t_irc_server *new_irc_servers;
|
|
|
|
if (!server)
|
|
return;
|
|
|
|
/* close all channels/privates */
|
|
irc_channel_free_all (server);
|
|
|
|
/* remove server from queue */
|
|
if (last_irc_server == server)
|
|
last_irc_server = server->prev_server;
|
|
if (server->prev_server)
|
|
{
|
|
(server->prev_server)->next_server = server->next_server;
|
|
new_irc_servers = irc_servers;
|
|
}
|
|
else
|
|
new_irc_servers = server->next_server;
|
|
|
|
if (server->next_server)
|
|
(server->next_server)->prev_server = server->prev_server;
|
|
|
|
irc_server_free_data (server);
|
|
free (server);
|
|
irc_servers = new_irc_servers;
|
|
}
|
|
|
|
/*
|
|
* irc_server_free_all: free all allocated servers
|
|
*/
|
|
|
|
void
|
|
irc_server_free_all ()
|
|
{
|
|
/* for each server in memory, remove it */
|
|
while (irc_servers)
|
|
{
|
|
irc_server_free (irc_servers);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_copy: copy a server
|
|
* return: pointer to new server, NULL if error
|
|
*/
|
|
|
|
struct t_irc_server *
|
|
irc_server_copy (struct t_irc_server *server, const char *new_name)
|
|
{
|
|
struct t_irc_server *new_server;
|
|
struct t_infolist *infolist;
|
|
char *mask, *pos;
|
|
const char *option_name;
|
|
int length, index_option;
|
|
|
|
/* check if another server exists with this name */
|
|
if (irc_server_search (new_name))
|
|
return NULL;
|
|
|
|
new_server = irc_server_alloc (new_name);
|
|
if (new_server)
|
|
{
|
|
/* duplicate options */
|
|
length = 32 + strlen (server->name) + 1;
|
|
mask = malloc (length);
|
|
if (!mask)
|
|
return 0;
|
|
snprintf (mask, length, "irc.server.%s.*", server->name);
|
|
infolist = weechat_infolist_get ("option", NULL, mask);
|
|
free (mask);
|
|
if (infolist)
|
|
{
|
|
while (weechat_infolist_next (infolist))
|
|
{
|
|
if (!weechat_infolist_integer (infolist, "value_is_null"))
|
|
{
|
|
option_name = weechat_infolist_string (infolist, "option_name");
|
|
pos = strrchr (option_name, '.');
|
|
if (pos)
|
|
{
|
|
index_option = irc_server_search_option (pos + 1);
|
|
if (index_option >= 0)
|
|
{
|
|
weechat_config_option_set (new_server->options[index_option],
|
|
weechat_infolist_string (infolist, "value"),
|
|
1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
weechat_infolist_free (infolist);
|
|
}
|
|
}
|
|
|
|
return new_server;
|
|
}
|
|
|
|
/*
|
|
* irc_server_rename: rename server (internal name)
|
|
* return: 1 if ok, 0 if error
|
|
*/
|
|
|
|
int
|
|
irc_server_rename (struct t_irc_server *server, const char *new_server_name)
|
|
{
|
|
int length;
|
|
char *mask, *pos_option, *new_option_name, *buffer_name;
|
|
char charset_modifier[256];
|
|
const char *option_name;
|
|
struct t_infolist *infolist;
|
|
struct t_config_option *ptr_option;
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
/* check if another server exists with this name */
|
|
if (irc_server_search (new_server_name))
|
|
return 0;
|
|
|
|
/* rename options */
|
|
length = 32 + strlen (server->name) + 1;
|
|
mask = malloc (length);
|
|
if (!mask)
|
|
return 0;
|
|
snprintf (mask, length, "irc.server.%s.*", server->name);
|
|
infolist = weechat_infolist_get ("option", NULL, mask);
|
|
free (mask);
|
|
if (infolist)
|
|
{
|
|
while (weechat_infolist_next (infolist))
|
|
{
|
|
weechat_config_search_with_string (weechat_infolist_string (infolist,
|
|
"full_name"),
|
|
NULL, NULL, &ptr_option,
|
|
NULL);
|
|
if (ptr_option)
|
|
{
|
|
option_name = weechat_infolist_string (infolist, "option_name");
|
|
if (option_name)
|
|
{
|
|
pos_option = strrchr (option_name, '.');
|
|
if (pos_option)
|
|
{
|
|
pos_option++;
|
|
length = strlen (new_server_name) + 1 + strlen (pos_option) + 1;
|
|
new_option_name = malloc (length);
|
|
if (new_option_name)
|
|
{
|
|
snprintf (new_option_name, length,
|
|
"%s.%s", new_server_name, pos_option);
|
|
weechat_config_option_rename (ptr_option, new_option_name);
|
|
free (new_option_name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
weechat_infolist_free (infolist);
|
|
}
|
|
|
|
/* rename server */
|
|
if (server->name)
|
|
free (server->name);
|
|
server->name = strdup (new_server_name);
|
|
|
|
/* change name and local variables on buffers */
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
if (ptr_channel->buffer)
|
|
{
|
|
buffer_name = irc_buffer_build_name (server->name, ptr_channel->name);
|
|
weechat_buffer_set (ptr_channel->buffer, "name", buffer_name);
|
|
weechat_buffer_set (ptr_channel->buffer, "localvar_set_server",
|
|
server->name);
|
|
}
|
|
}
|
|
if (server->buffer)
|
|
{
|
|
buffer_name = irc_buffer_build_name (server->name, NULL);
|
|
weechat_buffer_set (server->buffer, "name", buffer_name);
|
|
weechat_buffer_set (server->buffer, "short_name", server->name);
|
|
weechat_buffer_set (server->buffer, "localvar_set_server",
|
|
server->name);
|
|
weechat_buffer_set (server->buffer, "localvar_set_channel",
|
|
server->name);
|
|
snprintf (charset_modifier, sizeof (charset_modifier),
|
|
"irc.%s", server->name);
|
|
weechat_buffer_set (server->buffer, "localvar_set_charset_modifier",
|
|
charset_modifier);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* irc_server_send_signal: send a signal for an IRC message (received or sent)
|
|
*/
|
|
|
|
void
|
|
irc_server_send_signal (struct t_irc_server *server, const char *signal,
|
|
const char *command, const char *full_message,
|
|
const char *tags)
|
|
{
|
|
int length;
|
|
char *str_signal, *full_message_tags;
|
|
|
|
length = strlen (server->name) + 1 + strlen (signal) + 1 + strlen (command) + 1;
|
|
str_signal = malloc (length);
|
|
if (str_signal)
|
|
{
|
|
snprintf (str_signal, length,
|
|
"%s,%s_%s", server->name, signal, command);
|
|
if (tags)
|
|
{
|
|
length = strlen (tags) + 1 + strlen (full_message) + 1;
|
|
full_message_tags = malloc (length);
|
|
if (full_message_tags)
|
|
{
|
|
snprintf (full_message_tags, length,
|
|
"%s;%s", tags, full_message);
|
|
weechat_hook_signal_send (str_signal,
|
|
WEECHAT_HOOK_SIGNAL_STRING,
|
|
(void *)full_message_tags);
|
|
free (full_message_tags);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
weechat_hook_signal_send (str_signal, WEECHAT_HOOK_SIGNAL_STRING,
|
|
(void *)full_message);
|
|
}
|
|
free (str_signal);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_send: send data to IRC server
|
|
* return number of bytes sent, -1 if error
|
|
*/
|
|
|
|
int
|
|
irc_server_send (struct t_irc_server *server, const char *buffer, int size_buf)
|
|
{
|
|
int rc;
|
|
|
|
if (!server)
|
|
{
|
|
weechat_printf (NULL,
|
|
_("%s%s: sending data to server: null pointer (please "
|
|
"report problem to developers)"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
return 0;
|
|
}
|
|
|
|
if (size_buf <= 0)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: sending data to server: empty buffer (please "
|
|
"report problem to developers)"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
return 0;
|
|
}
|
|
|
|
#ifdef HAVE_GNUTLS
|
|
if (server->ssl_connected)
|
|
rc = gnutls_record_send (server->gnutls_sess, buffer, size_buf);
|
|
else
|
|
#endif
|
|
rc = send (server->sock, buffer, size_buf, 0);
|
|
|
|
if (rc < 0)
|
|
{
|
|
#ifdef HAVE_GNUTLS
|
|
if (server->ssl_connected)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: sending data to server: %d %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
rc,
|
|
gnutls_strerror (rc));
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: sending data to server: %d %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
errno,
|
|
strerror (errno));
|
|
}
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_send_default_tags: set default tags used when sending message
|
|
*/
|
|
|
|
void
|
|
irc_server_set_send_default_tags (const char *tags)
|
|
{
|
|
irc_server_send_default_tags = tags;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_tags_to_send: get tags to send by concatenation of tags
|
|
* and irc_server_send_default_tags (if set)
|
|
* If returned value is not NULL, then it must be
|
|
* free() after use.
|
|
*/
|
|
|
|
char *
|
|
irc_server_get_tags_to_send (const char *tags)
|
|
{
|
|
int length;
|
|
char *buf;
|
|
|
|
if (!tags && !irc_server_send_default_tags)
|
|
return NULL;
|
|
|
|
if (!tags)
|
|
return strdup (irc_server_send_default_tags);
|
|
|
|
if (!irc_server_send_default_tags)
|
|
return strdup (tags);
|
|
|
|
/* concatenate tags and irc_server_send_default_tags */
|
|
length = strlen (tags) + 1 + strlen (irc_server_send_default_tags) + 1;
|
|
buf = malloc (length);
|
|
if (buf)
|
|
snprintf (buf, length, "%s,%s", tags, irc_server_send_default_tags);
|
|
return buf;
|
|
}
|
|
|
|
/*
|
|
* irc_server_outqueue_send: send a message from outqueue
|
|
*/
|
|
|
|
void
|
|
irc_server_outqueue_send (struct t_irc_server *server)
|
|
{
|
|
time_t time_now;
|
|
char *pos, *tags_to_send;
|
|
int priority, anti_flood;
|
|
|
|
time_now = time (NULL);
|
|
|
|
/* detect if system clock has been changed (now lower than before) */
|
|
if (server->last_user_message > time_now)
|
|
server->last_user_message = time_now;
|
|
|
|
for (priority = 0; priority < IRC_SERVER_NUM_OUTQUEUES_PRIO; priority++)
|
|
{
|
|
switch (priority)
|
|
{
|
|
case 0:
|
|
anti_flood = IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_HIGH);
|
|
break;
|
|
default:
|
|
anti_flood = IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_LOW);
|
|
break;
|
|
}
|
|
if (server->outqueue[priority]
|
|
&& (time_now >= server->last_user_message + anti_flood))
|
|
{
|
|
if (server->outqueue[priority]->message_before_mod)
|
|
{
|
|
pos = strchr (server->outqueue[priority]->message_before_mod,
|
|
'\r');
|
|
if (pos)
|
|
pos[0] = '\0';
|
|
irc_raw_print (server, IRC_RAW_FLAG_SEND,
|
|
server->outqueue[priority]->message_before_mod);
|
|
if (pos)
|
|
pos[0] = '\r';
|
|
}
|
|
if (server->outqueue[priority]->message_after_mod)
|
|
{
|
|
pos = strchr (server->outqueue[priority]->message_after_mod,
|
|
'\r');
|
|
if (pos)
|
|
pos[0] = '\0';
|
|
irc_raw_print (server, IRC_RAW_FLAG_SEND |
|
|
((server->outqueue[priority]->modified) ? IRC_RAW_FLAG_MODIFIED : 0),
|
|
server->outqueue[priority]->message_after_mod);
|
|
if (pos)
|
|
pos[0] = '\r';
|
|
|
|
/* send signal with command that will be sent to server */
|
|
irc_server_send_signal (server, "irc_out",
|
|
server->outqueue[priority]->command,
|
|
server->outqueue[priority]->message_after_mod,
|
|
NULL);
|
|
tags_to_send = irc_server_get_tags_to_send (server->outqueue[priority]->tags);
|
|
irc_server_send_signal (server, "irc_outtags",
|
|
server->outqueue[priority]->command,
|
|
server->outqueue[priority]->message_after_mod,
|
|
(tags_to_send) ? tags_to_send : "");
|
|
if (tags_to_send)
|
|
free (tags_to_send);
|
|
|
|
/* send command */
|
|
irc_server_send (server, server->outqueue[priority]->message_after_mod,
|
|
strlen (server->outqueue[priority]->message_after_mod));
|
|
server->last_user_message = time_now;
|
|
|
|
/* start redirection if redirect is set */
|
|
if (server->outqueue[priority]->redirect)
|
|
{
|
|
irc_redirect_init_command (server->outqueue[priority]->redirect,
|
|
server->outqueue[priority]->message_after_mod);
|
|
}
|
|
}
|
|
irc_server_outqueue_free (server, priority,
|
|
server->outqueue[priority]);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_send_one_msg: send one message to IRC server
|
|
* if flag contains outqueue priority value, then
|
|
* messages are in a queue and sent slowly (to be sure
|
|
* there will not be any "excess flood"), value of
|
|
* queue_msg is priority:
|
|
* 1 = higher priority, for user messages
|
|
* 2 = lower priority, for other messages (like
|
|
* auto reply to CTCP queries)
|
|
* return: 1 if ok, 0 if error
|
|
*/
|
|
|
|
int
|
|
irc_server_send_one_msg (struct t_irc_server *server, int flags,
|
|
const char *message, const char *tags)
|
|
{
|
|
static char buffer[4096];
|
|
const char *ptr_msg;
|
|
char *new_msg, *pos, *nick, *command, *channel, *tags_to_send;
|
|
char *ptr_chan_nick, *msg_encoded;
|
|
char str_modifier[64], modifier_data[256];
|
|
int rc, queue_msg, add_to_queue, first_message, anti_flood;
|
|
time_t time_now;
|
|
struct t_irc_redirect *ptr_redirect;
|
|
|
|
rc = 1;
|
|
|
|
irc_message_parse (message, &nick, NULL, &command, &channel, NULL);
|
|
snprintf (str_modifier, sizeof (str_modifier),
|
|
"irc_out_%s",
|
|
(command) ? command : "unknown");
|
|
new_msg = weechat_hook_modifier_exec (str_modifier,
|
|
server->name,
|
|
message);
|
|
|
|
/* no changes in new message */
|
|
if (new_msg && (strcmp (message, new_msg) == 0))
|
|
{
|
|
free (new_msg);
|
|
new_msg = NULL;
|
|
}
|
|
|
|
/* message not dropped? */
|
|
if (!new_msg || new_msg[0])
|
|
{
|
|
first_message = 1;
|
|
ptr_msg = (new_msg) ? new_msg : message;
|
|
|
|
msg_encoded = NULL;
|
|
ptr_chan_nick = (channel) ? channel : nick;
|
|
if (ptr_chan_nick)
|
|
{
|
|
snprintf (modifier_data, sizeof (modifier_data),
|
|
"%s.%s.%s",
|
|
weechat_plugin->name,
|
|
server->name,
|
|
ptr_chan_nick);
|
|
}
|
|
else
|
|
{
|
|
snprintf (modifier_data, sizeof (modifier_data),
|
|
"%s.%s",
|
|
weechat_plugin->name,
|
|
server->name);
|
|
}
|
|
msg_encoded = weechat_hook_modifier_exec ("charset_encode",
|
|
modifier_data,
|
|
ptr_msg);
|
|
|
|
if (msg_encoded)
|
|
ptr_msg = msg_encoded;
|
|
|
|
while (rc && ptr_msg && ptr_msg[0])
|
|
{
|
|
pos = strchr (ptr_msg, '\n');
|
|
if (pos)
|
|
pos[0] = '\0';
|
|
|
|
snprintf (buffer, sizeof (buffer) - 1, "%s\r\n", ptr_msg);
|
|
|
|
/* anti-flood: look whether we should queue outgoing message or not */
|
|
time_now = time (NULL);
|
|
|
|
/* detect if system clock has been changed (now lower than before) */
|
|
if (server->last_user_message > time_now)
|
|
server->last_user_message = time_now;
|
|
|
|
/* get queue from flags */
|
|
queue_msg = 0;
|
|
if (flags & IRC_SERVER_SEND_OUTQ_PRIO_HIGH)
|
|
queue_msg = 1;
|
|
else if (flags & IRC_SERVER_SEND_OUTQ_PRIO_LOW)
|
|
queue_msg = 2;
|
|
|
|
switch (queue_msg - 1)
|
|
{
|
|
case 0:
|
|
anti_flood = IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_HIGH);
|
|
break;
|
|
default:
|
|
anti_flood = IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_LOW);
|
|
break;
|
|
}
|
|
|
|
add_to_queue = 0;
|
|
if ((queue_msg > 0)
|
|
&& (server->outqueue[queue_msg - 1]
|
|
|| ((anti_flood > 0)
|
|
&& (time_now - server->last_user_message < anti_flood))))
|
|
{
|
|
add_to_queue = queue_msg;
|
|
}
|
|
|
|
tags_to_send = irc_server_get_tags_to_send (tags);
|
|
|
|
ptr_redirect = irc_redirect_search_available (server);
|
|
|
|
if (add_to_queue > 0)
|
|
{
|
|
/* queue message (do not send anything now) */
|
|
irc_server_outqueue_add (server, add_to_queue - 1, command,
|
|
(new_msg && first_message) ? message : NULL,
|
|
buffer,
|
|
(new_msg) ? 1 : 0,
|
|
tags_to_send,
|
|
ptr_redirect);
|
|
}
|
|
else
|
|
{
|
|
if (first_message)
|
|
{
|
|
irc_raw_print (server, IRC_RAW_FLAG_SEND, message);
|
|
}
|
|
if (new_msg)
|
|
{
|
|
irc_raw_print (server,
|
|
IRC_RAW_FLAG_SEND | IRC_RAW_FLAG_MODIFIED,
|
|
ptr_msg);
|
|
}
|
|
|
|
/* send signal with command that will be sent to server */
|
|
irc_server_send_signal (server, "irc_out",
|
|
(command) ? command : "unknown",
|
|
ptr_msg,
|
|
NULL);
|
|
irc_server_send_signal (server, "irc_outtags",
|
|
(command) ? command : "unknown",
|
|
ptr_msg,
|
|
(tags_to_send) ? tags_to_send : "");
|
|
|
|
if (irc_server_send (server, buffer, strlen (buffer)) <= 0)
|
|
rc = 0;
|
|
else
|
|
{
|
|
if (queue_msg > 0)
|
|
server->last_user_message = time_now;
|
|
}
|
|
if (ptr_redirect)
|
|
irc_redirect_init_command (ptr_redirect, buffer);
|
|
}
|
|
|
|
if (tags_to_send)
|
|
free (tags_to_send);
|
|
|
|
if (pos)
|
|
{
|
|
pos[0] = '\n';
|
|
ptr_msg = pos + 1;
|
|
}
|
|
else
|
|
ptr_msg = NULL;
|
|
|
|
first_message = 0;
|
|
}
|
|
if (msg_encoded)
|
|
free (msg_encoded);
|
|
}
|
|
else
|
|
{
|
|
irc_raw_print (server, IRC_RAW_FLAG_SEND | IRC_RAW_FLAG_MODIFIED,
|
|
_("(message dropped)"));
|
|
}
|
|
|
|
if (nick)
|
|
free (nick);
|
|
if (command)
|
|
free (command);
|
|
if (channel)
|
|
free (channel);
|
|
if (new_msg)
|
|
free (new_msg);
|
|
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* irc_server_sendf: send formatted data to IRC server
|
|
* many messages may be sent, separated by '\n'
|
|
* if flags contains "IRC_SERVER_SEND_RETURN_HASHTABLE", then
|
|
* hashtable with split of message is returned
|
|
* (see function irc_message_split() in irc-message.c)
|
|
* note: hashtable must be freed after use
|
|
*/
|
|
|
|
struct t_hashtable *
|
|
irc_server_sendf (struct t_irc_server *server, int flags, const char *tags,
|
|
const char *format, ...)
|
|
{
|
|
char **items, hash_key[32], value[32];
|
|
const char *str_message, *str_args;
|
|
int i, items_count, number, ret_number, rc;
|
|
struct t_hashtable *hashtable, *ret_hashtable;
|
|
|
|
if (!server)
|
|
return NULL;
|
|
|
|
weechat_va_format (format);
|
|
if (!vbuffer)
|
|
return NULL;
|
|
|
|
ret_hashtable = NULL;
|
|
ret_number = 1;
|
|
if (flags & IRC_SERVER_SEND_RETURN_HASHTABLE)
|
|
{
|
|
ret_hashtable = weechat_hashtable_new (8,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL,
|
|
NULL);
|
|
}
|
|
|
|
rc = 1;
|
|
items = weechat_string_split (vbuffer, "\n", 0, 0, &items_count);
|
|
for (i = 0; i < items_count; i++)
|
|
{
|
|
/* split message if needed (max is 512 bytes including final "\r\n") */
|
|
hashtable = irc_message_split (server, items[i]);
|
|
if (hashtable)
|
|
{
|
|
number = 1;
|
|
while (1)
|
|
{
|
|
snprintf (hash_key, sizeof (hash_key), "msg%d", number);
|
|
str_message = weechat_hashtable_get (hashtable, hash_key);
|
|
if (!str_message)
|
|
break;
|
|
snprintf (hash_key, sizeof (hash_key), "args%d", number);
|
|
str_args = weechat_hashtable_get (hashtable, hash_key);
|
|
|
|
rc = irc_server_send_one_msg (server, flags, str_message, tags);
|
|
if (!rc)
|
|
break;
|
|
|
|
if (ret_hashtable)
|
|
{
|
|
snprintf (hash_key, sizeof (hash_key), "msg%d", ret_number);
|
|
weechat_hashtable_set (ret_hashtable, hash_key, str_message);
|
|
if (str_args)
|
|
{
|
|
snprintf (hash_key, sizeof (hash_key), "args%d", ret_number);
|
|
weechat_hashtable_set (ret_hashtable, hash_key, str_args);
|
|
}
|
|
ret_number++;
|
|
}
|
|
number++;
|
|
}
|
|
if (ret_hashtable)
|
|
{
|
|
snprintf (value, sizeof (value), "%d", ret_number - 1);
|
|
weechat_hashtable_set (ret_hashtable, "count", value);
|
|
}
|
|
weechat_hashtable_free (hashtable);
|
|
if (!rc)
|
|
break;
|
|
}
|
|
}
|
|
if (items)
|
|
weechat_string_free_split (items);
|
|
|
|
free (vbuffer);
|
|
|
|
return ret_hashtable;
|
|
}
|
|
|
|
/*
|
|
* irc_server_msgq_add_msg: add a message to received messages queue (at the end)
|
|
*/
|
|
|
|
void
|
|
irc_server_msgq_add_msg (struct t_irc_server *server, const char *msg)
|
|
{
|
|
struct t_irc_message *message;
|
|
|
|
if (!server->unterminated_message && !msg[0])
|
|
return;
|
|
|
|
message = malloc (sizeof (*message));
|
|
if (!message)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: not enough memory for received message"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
return;
|
|
}
|
|
message->server = server;
|
|
if (server->unterminated_message)
|
|
{
|
|
message->data = malloc (strlen (server->unterminated_message) +
|
|
strlen (msg) + 1);
|
|
if (!message->data)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: not enough memory for received message"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
}
|
|
else
|
|
{
|
|
strcpy (message->data, server->unterminated_message);
|
|
strcat (message->data, msg);
|
|
}
|
|
free (server->unterminated_message);
|
|
server->unterminated_message = NULL;
|
|
}
|
|
else
|
|
message->data = strdup (msg);
|
|
|
|
message->next_message = NULL;
|
|
|
|
if (irc_msgq_last_msg)
|
|
{
|
|
irc_msgq_last_msg->next_message = message;
|
|
irc_msgq_last_msg = message;
|
|
}
|
|
else
|
|
{
|
|
irc_recv_msgq = message;
|
|
irc_msgq_last_msg = message;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_msgq_add_unterminated: add an unterminated message to queue
|
|
*/
|
|
|
|
void
|
|
irc_server_msgq_add_unterminated (struct t_irc_server *server, const char *string)
|
|
{
|
|
char *unterminated_message2;
|
|
|
|
if (!string[0])
|
|
return;
|
|
|
|
if (server->unterminated_message)
|
|
{
|
|
unterminated_message2 =
|
|
realloc (server->unterminated_message,
|
|
(strlen (server->unterminated_message) +
|
|
strlen (string) + 1));
|
|
if (!unterminated_message2)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: not enough memory for received message"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
free (server->unterminated_message);
|
|
server->unterminated_message = NULL;
|
|
return;
|
|
}
|
|
server->unterminated_message = unterminated_message2;
|
|
strcat (server->unterminated_message, string);
|
|
}
|
|
else
|
|
{
|
|
server->unterminated_message = strdup (string);
|
|
if (!server->unterminated_message)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: not enough memory for received message"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_msgq_add_buffer: split received buffer, creating queued messages
|
|
*/
|
|
|
|
void
|
|
irc_server_msgq_add_buffer (struct t_irc_server *server, const char *buffer)
|
|
{
|
|
char *pos_cr, *pos_lf;
|
|
|
|
while (buffer[0])
|
|
{
|
|
pos_cr = strchr (buffer, '\r');
|
|
pos_lf = strchr (buffer, '\n');
|
|
|
|
if (!pos_cr && !pos_lf)
|
|
{
|
|
/* no CR/LF found => add to unterminated and return */
|
|
irc_server_msgq_add_unterminated (server, buffer);
|
|
return;
|
|
}
|
|
|
|
if (pos_cr && ((!pos_lf) || (pos_lf > pos_cr)))
|
|
{
|
|
/* found '\r' first => ignore this char */
|
|
pos_cr[0] = '\0';
|
|
irc_server_msgq_add_unterminated (server, buffer);
|
|
buffer = pos_cr + 1;
|
|
}
|
|
else
|
|
{
|
|
/* found: '\n' first => terminate message */
|
|
pos_lf[0] = '\0';
|
|
irc_server_msgq_add_msg (server, buffer);
|
|
buffer = pos_lf + 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_msgq_flush: flush message queue
|
|
*/
|
|
|
|
void
|
|
irc_server_msgq_flush ()
|
|
{
|
|
struct t_irc_message *next;
|
|
char *ptr_data, *new_msg, *new_msg2, *ptr_msg, *ptr_msg2, *pos;
|
|
char *nick, *host, *command, *channel, *arguments;
|
|
char *msg_decoded, *msg_decoded_without_color;
|
|
char str_modifier[64], modifier_data[256];
|
|
|
|
while (irc_recv_msgq)
|
|
{
|
|
if (irc_recv_msgq->data)
|
|
{
|
|
/* read message only if connection was not lost */
|
|
if (irc_recv_msgq->server->sock != -1)
|
|
{
|
|
ptr_data = irc_recv_msgq->data;
|
|
while (ptr_data[0] == ' ')
|
|
{
|
|
ptr_data++;
|
|
}
|
|
|
|
if (ptr_data[0])
|
|
{
|
|
irc_raw_print (irc_recv_msgq->server, IRC_RAW_FLAG_RECV,
|
|
ptr_data);
|
|
|
|
irc_message_parse (ptr_data, NULL, NULL, &command, NULL, NULL);
|
|
snprintf (str_modifier, sizeof (str_modifier),
|
|
"irc_in_%s",
|
|
(command) ? command : "unknown");
|
|
new_msg = weechat_hook_modifier_exec (str_modifier,
|
|
irc_recv_msgq->server->name,
|
|
ptr_data);
|
|
if (command)
|
|
free (command);
|
|
|
|
/* no changes in new message */
|
|
if (new_msg && (strcmp (ptr_data, new_msg) == 0))
|
|
{
|
|
free (new_msg);
|
|
new_msg = NULL;
|
|
}
|
|
|
|
/* message not dropped? */
|
|
if (!new_msg || new_msg[0])
|
|
{
|
|
/* use new message (returned by plugin) */
|
|
ptr_msg = (new_msg) ? new_msg : ptr_data;
|
|
|
|
while (ptr_msg && ptr_msg[0])
|
|
{
|
|
pos = strchr (ptr_msg, '\n');
|
|
if (pos)
|
|
pos[0] = '\0';
|
|
|
|
if (new_msg)
|
|
{
|
|
irc_raw_print (irc_recv_msgq->server,
|
|
IRC_RAW_FLAG_RECV | IRC_RAW_FLAG_MODIFIED,
|
|
ptr_msg);
|
|
}
|
|
|
|
irc_message_parse (ptr_msg, &nick, &host, &command,
|
|
&channel, &arguments);
|
|
|
|
/* convert charset for message */
|
|
if (channel && irc_channel_is_channel (channel))
|
|
{
|
|
snprintf (modifier_data, sizeof (modifier_data),
|
|
"%s.%s.%s",
|
|
weechat_plugin->name,
|
|
irc_recv_msgq->server->name,
|
|
channel);
|
|
}
|
|
else
|
|
{
|
|
if (nick && (!host || (strcmp (nick, host) != 0)))
|
|
{
|
|
snprintf (modifier_data, sizeof (modifier_data),
|
|
"%s.%s.%s",
|
|
weechat_plugin->name,
|
|
irc_recv_msgq->server->name,
|
|
nick);
|
|
}
|
|
else
|
|
{
|
|
snprintf (modifier_data, sizeof (modifier_data),
|
|
"%s.%s",
|
|
weechat_plugin->name,
|
|
irc_recv_msgq->server->name);
|
|
}
|
|
}
|
|
msg_decoded = weechat_hook_modifier_exec ("charset_decode",
|
|
modifier_data,
|
|
ptr_msg);
|
|
|
|
/* replace WeeChat internal color codes by "?" */
|
|
msg_decoded_without_color =
|
|
weechat_string_remove_color ((msg_decoded) ? msg_decoded : ptr_msg,
|
|
"?");
|
|
|
|
/* call modifier after charset */
|
|
ptr_msg2 = (msg_decoded_without_color) ?
|
|
msg_decoded_without_color : ((msg_decoded) ? msg_decoded : ptr_msg);
|
|
snprintf (str_modifier, sizeof (str_modifier),
|
|
"irc_in2_%s",
|
|
(command) ? command : "unknown");
|
|
new_msg2 = weechat_hook_modifier_exec (str_modifier,
|
|
irc_recv_msgq->server->name,
|
|
ptr_msg2);
|
|
if (new_msg2 && (strcmp (ptr_msg2, new_msg2) == 0))
|
|
{
|
|
free (new_msg2);
|
|
new_msg2 = NULL;
|
|
}
|
|
|
|
/* message not dropped? */
|
|
if (!new_msg2 || new_msg2[0])
|
|
{
|
|
/* use new message (returned by plugin) */
|
|
if (new_msg2)
|
|
ptr_msg2 = new_msg2;
|
|
|
|
/* parse and execute command */
|
|
if (irc_redirect_message (irc_recv_msgq->server,
|
|
ptr_msg2, command,
|
|
arguments))
|
|
{
|
|
/* message redirected, we'll not display it! */
|
|
}
|
|
else
|
|
{
|
|
/* message not redirected, display it */
|
|
irc_protocol_recv_command (irc_recv_msgq->server,
|
|
ptr_msg2, command,
|
|
channel);
|
|
}
|
|
}
|
|
|
|
if (new_msg2)
|
|
free (new_msg2);
|
|
if (nick)
|
|
free (nick);
|
|
if (host)
|
|
free (host);
|
|
if (command)
|
|
free (command);
|
|
if (channel)
|
|
free (channel);
|
|
if (arguments)
|
|
free (arguments);
|
|
if (msg_decoded)
|
|
free (msg_decoded);
|
|
if (msg_decoded_without_color)
|
|
free (msg_decoded_without_color);
|
|
|
|
if (pos)
|
|
{
|
|
pos[0] = '\n';
|
|
ptr_msg = pos + 1;
|
|
}
|
|
else
|
|
ptr_msg = NULL;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
irc_raw_print (irc_recv_msgq->server,
|
|
IRC_RAW_FLAG_RECV | IRC_RAW_FLAG_MODIFIED,
|
|
_("(message dropped)"));
|
|
}
|
|
if (new_msg)
|
|
free (new_msg);
|
|
}
|
|
}
|
|
free (irc_recv_msgq->data);
|
|
}
|
|
|
|
next = irc_recv_msgq->next_message;
|
|
free (irc_recv_msgq);
|
|
irc_recv_msgq = next;
|
|
if (!irc_recv_msgq)
|
|
irc_msgq_last_msg = NULL;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_recv_cb: receive data from an irc server
|
|
*/
|
|
|
|
int
|
|
irc_server_recv_cb (void *data, int fd)
|
|
{
|
|
struct t_irc_server *server;
|
|
static char buffer[4096 + 2];
|
|
int num_read;
|
|
|
|
/* make C compiler happy */
|
|
(void) fd;
|
|
|
|
server = (struct t_irc_server *)data;
|
|
|
|
if (!server)
|
|
return WEECHAT_RC_ERROR;
|
|
|
|
#ifdef HAVE_GNUTLS
|
|
if (server->ssl_connected)
|
|
num_read = gnutls_record_recv (server->gnutls_sess, buffer,
|
|
sizeof (buffer) - 2);
|
|
else
|
|
#endif
|
|
num_read = recv (server->sock, buffer, sizeof (buffer) - 2, 0);
|
|
|
|
if (num_read > 0)
|
|
{
|
|
buffer[num_read] = '\0';
|
|
irc_server_msgq_add_buffer (server, buffer);
|
|
irc_server_msgq_flush ();
|
|
}
|
|
else
|
|
{
|
|
#ifdef HAVE_GNUTLS
|
|
if (server->ssl_connected)
|
|
{
|
|
if ((num_read == 0)
|
|
|| ((num_read != GNUTLS_E_AGAIN) && (num_read != GNUTLS_E_INTERRUPTED)))
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: reading data on socket: error %d %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
num_read,
|
|
(num_read == 0) ? _("(connection closed by peer)") :
|
|
gnutls_strerror (num_read));
|
|
weechat_printf (server->buffer,
|
|
_("%s: disconnecting from server..."),
|
|
IRC_PLUGIN_NAME);
|
|
irc_server_disconnect (server, !server->is_connected, 1);
|
|
}
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
if ((num_read == 0)
|
|
|| ((errno != EAGAIN) && (errno != EWOULDBLOCK)))
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: reading data on socket: error %d %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
errno,
|
|
(num_read == 0) ? _("(connection closed by peer)") :
|
|
strerror (errno));
|
|
weechat_printf (server->buffer,
|
|
_("%s: disconnecting from server..."),
|
|
IRC_PLUGIN_NAME);
|
|
irc_server_disconnect (server, !server->is_connected, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_timer_connection_cb: callback for server connection
|
|
* it is called if WeeChat is TCP-connected to
|
|
* server, but did not receive message 001
|
|
*/
|
|
|
|
int
|
|
irc_server_timer_connection_cb (void *data, int remaining_calls)
|
|
{
|
|
struct t_irc_server *server;
|
|
|
|
/* make C compiler happy */
|
|
(void) remaining_calls;
|
|
|
|
server = (struct t_irc_server *)data;
|
|
|
|
if (!server)
|
|
return WEECHAT_RC_ERROR;
|
|
|
|
server->hook_timer_connection = NULL;
|
|
|
|
if (!server->is_connected)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: connection timeout (message 001 not received)"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
irc_server_disconnect (server, !server->is_connected, 1);
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_timer_sasl_cb: callback for SASL authentication timer
|
|
* it is called if there is a timeout with SASL
|
|
* authentication
|
|
* (if SASL authentication is ok or failed, then
|
|
* hook timer is removed before this callback is
|
|
* called)
|
|
*/
|
|
|
|
int
|
|
irc_server_timer_sasl_cb (void *data, int remaining_calls)
|
|
{
|
|
struct t_irc_server *server;
|
|
|
|
/* make C compiler happy */
|
|
(void) remaining_calls;
|
|
|
|
server = (struct t_irc_server *)data;
|
|
|
|
if (!server)
|
|
return WEECHAT_RC_ERROR;
|
|
|
|
server->hook_timer_sasl = NULL;
|
|
|
|
if (!server->is_connected)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: sasl authentication timeout"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
irc_server_sendf (server, 0, NULL, "CAP END");
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_check_manual_joins_cb: callback called for each manual join of a
|
|
* server, it will delete old channels in
|
|
* this hashtable
|
|
*/
|
|
|
|
void
|
|
irc_server_check_manual_joins_cb (void *data, struct t_hashtable *hashtable,
|
|
const void *key, const void *value)
|
|
{
|
|
struct t_irc_server *server;
|
|
|
|
server = (struct t_irc_server *)data;
|
|
if (server)
|
|
{
|
|
if (*((int *)value) + 60 < time (NULL))
|
|
weechat_hashtable_remove (hashtable, key);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_timer_cb: timer called each second to perform some operations
|
|
* on servers
|
|
*/
|
|
|
|
int
|
|
irc_server_timer_cb (void *data, int remaining_calls)
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
struct t_irc_redirect *ptr_redirect, *ptr_next_redirect;
|
|
time_t current_time;
|
|
static struct timeval tv;
|
|
int away_check;
|
|
|
|
/* make C compiler happy */
|
|
(void) data;
|
|
(void) remaining_calls;
|
|
|
|
current_time = time (NULL);
|
|
|
|
for (ptr_server = irc_servers; ptr_server;
|
|
ptr_server = ptr_server->next_server)
|
|
{
|
|
/* check if reconnection is pending */
|
|
if ((!ptr_server->is_connected)
|
|
&& (ptr_server->reconnect_start > 0)
|
|
&& (current_time >= (ptr_server->reconnect_start + ptr_server->reconnect_delay)))
|
|
{
|
|
irc_server_reconnect (ptr_server);
|
|
}
|
|
else
|
|
{
|
|
if (ptr_server->is_connected)
|
|
{
|
|
/* send queued messages */
|
|
irc_server_outqueue_send (ptr_server);
|
|
|
|
/* check for lag */
|
|
if ((weechat_config_integer (irc_config_network_lag_check) > 0)
|
|
&& (ptr_server->lag_check_time.tv_sec == 0)
|
|
&& (current_time >= ptr_server->lag_next_check))
|
|
{
|
|
irc_server_sendf (ptr_server, 0, NULL, "PING %s",
|
|
(ptr_server->current_address) ?
|
|
ptr_server->current_address : "weechat");
|
|
gettimeofday (&(ptr_server->lag_check_time), NULL);
|
|
ptr_server->lag = 0;
|
|
ptr_server->lag_last_refresh = 0;
|
|
}
|
|
else
|
|
{
|
|
/* check away (only if lag check was not done) */
|
|
away_check = IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_AWAY_CHECK);
|
|
if (away_check > 0)
|
|
{
|
|
if ((ptr_server->last_away_check == 0)
|
|
|| (current_time >= ptr_server->last_away_check + (away_check * 60)))
|
|
{
|
|
irc_server_check_away (ptr_server);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* check if it's time to autojoin channels (after command delay) */
|
|
if ((ptr_server->command_time != 0)
|
|
&& (current_time >= ptr_server->command_time +
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_COMMAND_DELAY)))
|
|
{
|
|
irc_server_autojoin_channels (ptr_server);
|
|
ptr_server->command_time = 0;
|
|
}
|
|
|
|
/* compute lag */
|
|
if (ptr_server->lag_check_time.tv_sec != 0)
|
|
{
|
|
gettimeofday (&tv, NULL);
|
|
ptr_server->lag = (int) weechat_util_timeval_diff (&(ptr_server->lag_check_time),
|
|
&tv);
|
|
/* refresh lag item if needed */
|
|
if (((ptr_server->lag_last_refresh == 0)
|
|
|| (current_time >= ptr_server->lag_last_refresh + weechat_config_integer (irc_config_network_lag_refresh_interval)))
|
|
&& (ptr_server->lag >= weechat_config_integer (irc_config_network_lag_min_show)))
|
|
{
|
|
ptr_server->lag_last_refresh = current_time;
|
|
weechat_bar_item_update ("lag");
|
|
}
|
|
/* lag timeout? => disconnect */
|
|
if ((weechat_config_integer (irc_config_network_lag_disconnect) > 0)
|
|
&& (ptr_server->lag / 1000 > weechat_config_integer (irc_config_network_lag_disconnect) * 60))
|
|
{
|
|
weechat_printf (ptr_server->buffer,
|
|
_("%s: lag is high, disconnecting "
|
|
"from server..."),
|
|
IRC_PLUGIN_NAME);
|
|
irc_server_disconnect (ptr_server, 0, 1);
|
|
}
|
|
}
|
|
|
|
/* remove redirects if timeout occurs */
|
|
ptr_redirect = ptr_server->redirects;
|
|
while (ptr_redirect)
|
|
{
|
|
ptr_next_redirect = ptr_redirect->next_redirect;
|
|
|
|
if ((ptr_redirect->start_time > 0)
|
|
&& (ptr_redirect->start_time + ptr_redirect->timeout < current_time))
|
|
{
|
|
irc_redirect_stop (ptr_redirect, "timeout");
|
|
}
|
|
|
|
ptr_redirect = ptr_next_redirect;
|
|
}
|
|
|
|
/* remove old channels in "manual_joins" (each 60 seconds) */
|
|
if (current_time > irc_server_last_check_manual_joins + 60)
|
|
{
|
|
weechat_hashtable_map (ptr_server->manual_joins,
|
|
&irc_server_check_manual_joins_cb,
|
|
ptr_server);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_close_connection: close server connection
|
|
*/
|
|
|
|
void
|
|
irc_server_close_connection (struct t_irc_server *server)
|
|
{
|
|
int i;
|
|
|
|
if (server->hook_timer_connection)
|
|
{
|
|
weechat_unhook (server->hook_timer_connection);
|
|
server->hook_timer_connection = NULL;
|
|
}
|
|
|
|
if (server->hook_timer_sasl)
|
|
{
|
|
weechat_unhook (server->hook_timer_sasl);
|
|
server->hook_timer_sasl = NULL;
|
|
}
|
|
|
|
if (server->hook_fd)
|
|
{
|
|
weechat_unhook (server->hook_fd);
|
|
server->hook_fd = NULL;
|
|
}
|
|
|
|
if (server->hook_connect)
|
|
{
|
|
weechat_unhook (server->hook_connect);
|
|
server->hook_connect = NULL;
|
|
}
|
|
else
|
|
{
|
|
#ifdef HAVE_GNUTLS
|
|
/* close SSL connection */
|
|
if ((server->sock != -1) && (server->ssl_connected))
|
|
{
|
|
if (server->ssl_connected)
|
|
gnutls_bye (server->gnutls_sess, GNUTLS_SHUT_WR);
|
|
if (server->ssl_connected)
|
|
gnutls_deinit (server->gnutls_sess);
|
|
}
|
|
#endif
|
|
}
|
|
if (server->sock != -1)
|
|
{
|
|
#ifdef _WIN32
|
|
closesocket (server->sock);
|
|
#else
|
|
close (server->sock);
|
|
#endif
|
|
server->sock = -1;
|
|
}
|
|
|
|
/* free any pending message */
|
|
if (server->unterminated_message)
|
|
{
|
|
free (server->unterminated_message);
|
|
server->unterminated_message = NULL;
|
|
}
|
|
for (i = 0; i < IRC_SERVER_NUM_OUTQUEUES_PRIO; i++)
|
|
{
|
|
irc_server_outqueue_free_all (server, i);
|
|
}
|
|
|
|
/* remove all redirects */
|
|
irc_redirect_free_all (server);
|
|
|
|
/* remove all manual joins */
|
|
weechat_hashtable_remove_all (server->manual_joins);
|
|
|
|
/* server is now disconnected */
|
|
server->is_connected = 0;
|
|
server->ssl_connected = 0;
|
|
}
|
|
|
|
/*
|
|
* irc_server_reconnect_schedule: schedule reconnect for a server
|
|
*/
|
|
|
|
void
|
|
irc_server_reconnect_schedule (struct t_irc_server *server)
|
|
{
|
|
int minutes, seconds;
|
|
|
|
if (IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_AUTORECONNECT))
|
|
{
|
|
/* growing reconnect delay */
|
|
if (server->reconnect_delay == 0)
|
|
server->reconnect_delay = IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_AUTORECONNECT_DELAY);
|
|
else
|
|
server->reconnect_delay = server->reconnect_delay * weechat_config_integer (irc_config_network_autoreconnect_delay_growing);
|
|
if ((weechat_config_integer (irc_config_network_autoreconnect_delay_max) > 0)
|
|
&& (server->reconnect_delay > weechat_config_integer (irc_config_network_autoreconnect_delay_max)))
|
|
server->reconnect_delay = weechat_config_integer (irc_config_network_autoreconnect_delay_max);
|
|
|
|
server->reconnect_start = time (NULL);
|
|
|
|
minutes = server->reconnect_delay / 60;
|
|
seconds = server->reconnect_delay % 60;
|
|
if ((minutes > 0) && (seconds > 0))
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s: reconnecting to server in %d %s, %d %s"),
|
|
IRC_PLUGIN_NAME,
|
|
minutes,
|
|
NG_("minute", "minutes", minutes),
|
|
seconds,
|
|
NG_("second", "seconds", seconds));
|
|
}
|
|
else if (minutes > 0)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s: reconnecting to server in %d %s"),
|
|
IRC_PLUGIN_NAME,
|
|
minutes,
|
|
NG_("minute", "minutes", minutes));
|
|
}
|
|
else
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s: reconnecting to server in %d %s"),
|
|
IRC_PLUGIN_NAME,
|
|
seconds,
|
|
NG_("second", "seconds", seconds));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
server->reconnect_delay = 0;
|
|
server->reconnect_start = 0;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_login: login to IRC server
|
|
*/
|
|
|
|
void
|
|
irc_server_login (struct t_irc_server *server)
|
|
{
|
|
const char *password, *username, *realname;
|
|
|
|
password = IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_PASSWORD);
|
|
username = IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_USERNAME);
|
|
realname = IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_REALNAME);
|
|
|
|
if (password && password[0])
|
|
irc_server_sendf (server, 0, NULL, "PASS %s", password);
|
|
|
|
if (!server->nick)
|
|
{
|
|
irc_server_set_nick (server,
|
|
(server->nicks_array) ?
|
|
server->nicks_array[0] : "weechat");
|
|
server->nick_first_tried = 0;
|
|
}
|
|
else
|
|
server->nick_first_tried = irc_server_get_nick_index (server);
|
|
|
|
if (irc_server_sasl_enabled (server))
|
|
{
|
|
irc_server_sendf (server, 0, NULL, "CAP LS");
|
|
}
|
|
|
|
irc_server_sendf (server, 0, NULL,
|
|
"NICK %s\n"
|
|
"USER %s %s %s :%s",
|
|
server->nick,
|
|
(username && username[0]) ? username : "weechat",
|
|
(username && username[0]) ? username : "weechat",
|
|
server->current_address,
|
|
(realname && realname[0]) ? realname : ((username && username[0]) ? username : "weechat"));
|
|
|
|
if (server->hook_timer_connection)
|
|
weechat_unhook (server->hook_timer_connection);
|
|
server->hook_timer_connection = weechat_hook_timer (
|
|
IRC_SERVER_OPTION_INTEGER (server, IRC_SERVER_OPTION_CONNECTION_TIMEOUT) * 1000,
|
|
0, 1,
|
|
&irc_server_timer_connection_cb,
|
|
server);
|
|
}
|
|
|
|
/*
|
|
* irc_server_switch_address: switch address and try another
|
|
* (called if connection failed with an address/port)
|
|
*/
|
|
|
|
void
|
|
irc_server_switch_address (struct t_irc_server *server, int connection)
|
|
{
|
|
if (server->addresses_count > 1)
|
|
{
|
|
irc_server_set_index_current_address (server,
|
|
(server->index_current_address + 1) % server->addresses_count);
|
|
weechat_printf (server->buffer,
|
|
_("%s: switching address to %s/%d"),
|
|
IRC_PLUGIN_NAME,
|
|
server->current_address,
|
|
server->current_port);
|
|
if (connection)
|
|
{
|
|
if (server->index_current_address == 0)
|
|
irc_server_reconnect_schedule (server);
|
|
else
|
|
irc_server_connect (server);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (connection)
|
|
irc_server_reconnect_schedule (server);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_connect_cb: read connection status
|
|
*/
|
|
|
|
int
|
|
irc_server_connect_cb (void *data, int status, int gnutls_rc,
|
|
const char *error, const char *ip_address)
|
|
{
|
|
struct t_irc_server *server;
|
|
const char *proxy;
|
|
|
|
server = (struct t_irc_server *)data;
|
|
|
|
proxy = IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_PROXY);
|
|
|
|
server->hook_connect = NULL;
|
|
|
|
switch (status)
|
|
{
|
|
case WEECHAT_HOOK_CONNECT_OK:
|
|
/* login to server */
|
|
if (server->current_ip)
|
|
free (server->current_ip);
|
|
server->current_ip = (ip_address) ? strdup (ip_address) : NULL;
|
|
weechat_printf (server->buffer,
|
|
_("%s: connected to %s/%d (%s)"),
|
|
IRC_PLUGIN_NAME,
|
|
server->current_address,
|
|
server->current_port,
|
|
(server->current_ip) ? server->current_ip : "?");
|
|
server->hook_fd = weechat_hook_fd (server->sock,
|
|
1, 0, 0,
|
|
&irc_server_recv_cb,
|
|
server);
|
|
irc_server_login (server);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND:
|
|
weechat_printf (server->buffer,
|
|
(proxy && proxy[0]) ?
|
|
_("%s%s: proxy address \"%s\" not found") :
|
|
_("%s%s: address \"%s\" not found"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
server->current_address);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
irc_server_close_connection (server);
|
|
irc_server_switch_address (server, 1);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND:
|
|
weechat_printf (server->buffer,
|
|
(proxy && proxy[0]) ?
|
|
_("%s%s: proxy IP address not found") :
|
|
_("%s%s: IP address not found"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
irc_server_close_connection (server);
|
|
irc_server_switch_address (server, 1);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED:
|
|
weechat_printf (server->buffer,
|
|
(proxy && proxy[0]) ?
|
|
_("%s%s: proxy connection refused") :
|
|
_("%s%s: connection refused"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
irc_server_close_connection (server);
|
|
irc_server_switch_address (server, 1);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_PROXY_ERROR:
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: proxy fails to establish "
|
|
"connection to server "
|
|
"(check username/password if used "
|
|
"and if server address/port is allowed by "
|
|
"proxy)"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
irc_server_close_connection (server);
|
|
irc_server_switch_address (server, 1);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR:
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: unable to set local hostname/IP"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
irc_server_close_connection (server);
|
|
irc_server_reconnect_schedule (server);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR:
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: TLS init error"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
irc_server_close_connection (server);
|
|
irc_server_reconnect_schedule (server);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR:
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: TLS handshake failed"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
#ifdef HAVE_GNUTLS
|
|
if (gnutls_rc == GNUTLS_E_DH_PRIME_UNACCEPTABLE)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: you should play with option "
|
|
"irc.server.%s.ssl_dhkey_size (current "
|
|
"value is %d)"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
server->name,
|
|
IRC_SERVER_OPTION_INTEGER (server,
|
|
IRC_SERVER_OPTION_SSL_DHKEY_SIZE));
|
|
}
|
|
#else
|
|
(void) gnutls_rc;
|
|
#endif
|
|
irc_server_close_connection (server);
|
|
irc_server_switch_address (server, 1);
|
|
break;
|
|
case WEECHAT_HOOK_CONNECT_MEMORY_ERROR:
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: not enough memory"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
if (error && error[0])
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: error: %s"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
error);
|
|
}
|
|
irc_server_close_connection (server);
|
|
irc_server_reconnect_schedule (server);
|
|
break;
|
|
}
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_buffer_title: set title for a server buffer
|
|
*/
|
|
|
|
void
|
|
irc_server_set_buffer_title (struct t_irc_server *server)
|
|
{
|
|
char *title;
|
|
int length;
|
|
|
|
if (server && server->buffer)
|
|
{
|
|
if (server->is_connected)
|
|
{
|
|
length = 16 +
|
|
((server->current_address) ? strlen (server->current_address) : 16) +
|
|
16 + ((server->current_ip) ? strlen (server->current_ip) : 16) + 1;
|
|
title = malloc (length);
|
|
if (title)
|
|
{
|
|
snprintf (title, length, "IRC: %s/%d (%s)",
|
|
server->current_address,
|
|
server->current_port,
|
|
(server->current_ip) ? server->current_ip : "");
|
|
weechat_buffer_set (server->buffer, "title", title);
|
|
free (title);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
weechat_buffer_set (server->buffer, "title", "");
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_create_buffer: create a buffer for an IRC server
|
|
*/
|
|
|
|
struct t_gui_buffer *
|
|
irc_server_create_buffer (struct t_irc_server *server)
|
|
{
|
|
char buffer_name[256], charset_modifier[256];
|
|
struct t_gui_buffer *ptr_buffer_for_merge;
|
|
|
|
ptr_buffer_for_merge = NULL;
|
|
switch (weechat_config_integer (irc_config_look_server_buffer))
|
|
{
|
|
case IRC_CONFIG_LOOK_SERVER_BUFFER_MERGE_WITH_CORE:
|
|
/* merge with WeeChat core buffer */
|
|
ptr_buffer_for_merge = weechat_buffer_search_main ();
|
|
break;
|
|
case IRC_CONFIG_LOOK_SERVER_BUFFER_MERGE_WITHOUT_CORE:
|
|
/* find buffer used to merge all IRC server buffers */
|
|
ptr_buffer_for_merge = irc_buffer_search_first_for_all_servers ();
|
|
break;
|
|
}
|
|
|
|
snprintf (buffer_name, sizeof (buffer_name),
|
|
"server.%s", server->name);
|
|
server->buffer = weechat_buffer_new (buffer_name,
|
|
&irc_input_data_cb, NULL,
|
|
&irc_buffer_close_cb, NULL);
|
|
if (!server->buffer)
|
|
return NULL;
|
|
|
|
if (!weechat_buffer_get_integer (server->buffer, "short_name_is_set"))
|
|
weechat_buffer_set (server->buffer, "short_name", server->name);
|
|
weechat_buffer_set (server->buffer, "localvar_set_type", "server");
|
|
weechat_buffer_set (server->buffer, "localvar_set_server", server->name);
|
|
weechat_buffer_set (server->buffer, "localvar_set_channel", server->name);
|
|
snprintf (charset_modifier, sizeof (charset_modifier),
|
|
"irc.%s", server->name);
|
|
weechat_buffer_set (server->buffer, "localvar_set_charset_modifier",
|
|
charset_modifier);
|
|
|
|
weechat_hook_signal_send ("logger_backlog",
|
|
WEECHAT_HOOK_SIGNAL_POINTER, server->buffer);
|
|
|
|
if (weechat_config_boolean (irc_config_network_send_unknown_commands))
|
|
weechat_buffer_set (server->buffer, "input_get_unknown_commands", "1");
|
|
|
|
/* set highlights settings on server buffer */
|
|
weechat_buffer_set (server->buffer, "highlight_words_add", "$nick");
|
|
if (weechat_config_string (irc_config_look_highlight_tags)
|
|
&& weechat_config_string (irc_config_look_highlight_tags)[0])
|
|
{
|
|
weechat_buffer_set (server->buffer, "highlight_tags",
|
|
weechat_config_string (irc_config_look_highlight_tags));
|
|
}
|
|
|
|
irc_server_set_buffer_title (server);
|
|
|
|
/*
|
|
* merge buffer if needed: if merge with(out) core set, and if no layout
|
|
* number is assigned for this buffer (if layout number is assigned, then
|
|
* buffer was already moved/merged by WeeChat core)
|
|
*/
|
|
if (ptr_buffer_for_merge
|
|
&& (weechat_buffer_get_integer (server->buffer, "layout_number") < 1))
|
|
{
|
|
weechat_buffer_merge (server->buffer, ptr_buffer_for_merge);
|
|
}
|
|
|
|
return server->buffer;
|
|
}
|
|
|
|
#ifdef HAVE_GNUTLS
|
|
/*
|
|
* irc_server_gnutls_callback: gnutls callback called during handshake
|
|
*
|
|
*/
|
|
int
|
|
irc_server_gnutls_callback (void *data, gnutls_session_t tls_session,
|
|
const gnutls_datum_t *req_ca, int nreq,
|
|
const gnutls_pk_algorithm_t *pk_algos,
|
|
int pk_algos_len,
|
|
#if LIBGNUTLS_VERSION_NUMBER >= 0x020b00
|
|
gnutls_retr2_st *answer,
|
|
#else
|
|
gnutls_retr_st *answer,
|
|
#endif
|
|
int action)
|
|
{
|
|
struct t_irc_server *server;
|
|
#if LIBGNUTLS_VERSION_NUMBER >= 0x020b00
|
|
gnutls_retr2_st tls_struct;
|
|
#else
|
|
gnutls_retr_st tls_struct;
|
|
#endif
|
|
gnutls_x509_crt_t cert_temp;
|
|
const gnutls_datum_t *cert_list;
|
|
gnutls_datum_t filedatum;
|
|
unsigned int cert_list_len, status;
|
|
time_t cert_time;
|
|
char *cert_path0, *cert_path1, *cert_path2, *cert_str, *hostname;
|
|
const char *weechat_dir;
|
|
int rc, ret, i, j, hostname_match;
|
|
#if LIBGNUTLS_VERSION_NUMBER >= 0x010706
|
|
gnutls_datum_t cinfo;
|
|
int rinfo;
|
|
#endif
|
|
|
|
/* make C compiler happy */
|
|
(void) req_ca;
|
|
(void) nreq;
|
|
(void) pk_algos;
|
|
(void) pk_algos_len;
|
|
|
|
rc = 0;
|
|
|
|
if (!data)
|
|
return -1;
|
|
|
|
server = (struct t_irc_server *) data;
|
|
hostname = server->current_address;
|
|
hostname_match = 0;
|
|
|
|
if (action == WEECHAT_HOOK_CONNECT_GNUTLS_CB_VERIFY_CERT)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("gnutls: connected using %d-bit Diffie-Hellman shared "
|
|
"secret exchange"),
|
|
IRC_SERVER_OPTION_INTEGER (server,
|
|
IRC_SERVER_OPTION_SSL_DHKEY_SIZE));
|
|
if (gnutls_certificate_verify_peers2 (tls_session, &status) < 0)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: error while checking peer's certificate"),
|
|
weechat_prefix ("error"));
|
|
rc = -1;
|
|
}
|
|
else
|
|
{
|
|
/* some checks */
|
|
if (status & GNUTLS_CERT_INVALID)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: peer's certificate is NOT trusted"),
|
|
weechat_prefix ("error"));
|
|
rc = -1;
|
|
}
|
|
else
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("gnutls: peer's certificate is trusted"));
|
|
}
|
|
if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: peer's certificate issuer is unknown"),
|
|
weechat_prefix ("error"));
|
|
rc = -1;
|
|
}
|
|
if (status & GNUTLS_CERT_REVOKED)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: the certificate has been revoked"),
|
|
weechat_prefix ("error"));
|
|
rc = -1;
|
|
}
|
|
|
|
/* check certificates */
|
|
if (gnutls_x509_crt_init (&cert_temp) >= 0)
|
|
{
|
|
cert_list = gnutls_certificate_get_peers (tls_session, &cert_list_len);
|
|
if (cert_list)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
NG_("gnutls: receiving %d certificate",
|
|
"gnutls: receiving %d certificates",
|
|
cert_list_len),
|
|
cert_list_len);
|
|
for (i = 0, j = (int) cert_list_len; i < j; i++)
|
|
{
|
|
if (gnutls_x509_crt_import (cert_temp, &cert_list[i], GNUTLS_X509_FMT_DER) >= 0)
|
|
{
|
|
/* checking if hostname matches in the first certificate */
|
|
if ((i == 0) && (gnutls_x509_crt_check_hostname (cert_temp, hostname) != 0))
|
|
{
|
|
hostname_match = 1;
|
|
}
|
|
#if LIBGNUTLS_VERSION_NUMBER >= 0x010706
|
|
/* displaying infos about certificate */
|
|
#if LIBGNUTLS_VERSION_NUMBER < 0x020400
|
|
rinfo = gnutls_x509_crt_print (cert_temp, GNUTLS_X509_CRT_ONELINE, &cinfo);
|
|
#else
|
|
rinfo = gnutls_x509_crt_print (cert_temp, GNUTLS_CRT_PRINT_ONELINE, &cinfo);
|
|
#endif
|
|
if (rinfo == 0)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_(" - certificate[%d] info:"), i + 1);
|
|
weechat_printf (server->buffer,
|
|
" - %s", cinfo.data);
|
|
gnutls_free (cinfo.data);
|
|
}
|
|
#endif
|
|
/* check expiration date */
|
|
cert_time = gnutls_x509_crt_get_expiration_time (cert_temp);
|
|
if (cert_time < time (NULL))
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: certificate has expired"),
|
|
weechat_prefix ("error"));
|
|
rc = -1;
|
|
}
|
|
/* check activation date */
|
|
cert_time = gnutls_x509_crt_get_activation_time (cert_temp);
|
|
if (cert_time > time (NULL))
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: certificate is not yet activated"),
|
|
weechat_prefix ("error"));
|
|
rc = -1;
|
|
}
|
|
}
|
|
}
|
|
if (hostname_match == 0)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: the hostname in the "
|
|
"certificate does NOT match \"%s\""),
|
|
weechat_prefix ("error"), hostname);
|
|
rc = -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (action == WEECHAT_HOOK_CONNECT_GNUTLS_CB_SET_CERT)
|
|
{
|
|
/* using client certificate if it exists */
|
|
cert_path0 = (char *) IRC_SERVER_OPTION_STRING(server,
|
|
IRC_SERVER_OPTION_SSL_CERT);
|
|
if (cert_path0 && cert_path0[0])
|
|
{
|
|
weechat_dir = weechat_info_get ("weechat_dir", "");
|
|
cert_path1 = weechat_string_replace (cert_path0, "%h", weechat_dir);
|
|
cert_path2 = (cert_path1) ?
|
|
weechat_string_expand_home (cert_path1) : NULL;
|
|
|
|
if (cert_path2)
|
|
{
|
|
cert_str = weechat_file_get_content (cert_path2);
|
|
if (cert_str)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("gnutls: sending one certificate"));
|
|
|
|
filedatum.data = (unsigned char *) cert_str;
|
|
filedatum.size = strlen (cert_str);
|
|
|
|
/* certificate */
|
|
gnutls_x509_crt_init (&server->tls_cert);
|
|
gnutls_x509_crt_import (server->tls_cert, &filedatum,
|
|
GNUTLS_X509_FMT_PEM);
|
|
|
|
/* key */
|
|
gnutls_x509_privkey_init (&server->tls_cert_key);
|
|
ret = gnutls_x509_privkey_import (server->tls_cert_key,
|
|
&filedatum,
|
|
GNUTLS_X509_FMT_PEM);
|
|
if (ret < 0)
|
|
{
|
|
ret = gnutls_x509_privkey_import_pkcs8 (server->tls_cert_key,
|
|
&filedatum,
|
|
GNUTLS_X509_FMT_PEM,
|
|
NULL,
|
|
GNUTLS_PKCS_PLAIN);
|
|
}
|
|
if (ret < 0)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: invalid certificate \"%s\", "
|
|
"error: %s"),
|
|
weechat_prefix ("error"), cert_path2,
|
|
gnutls_strerror (ret));
|
|
rc = -1;
|
|
}
|
|
else
|
|
{
|
|
|
|
#if LIBGNUTLS_VERSION_NUMBER >= 0x020b00
|
|
tls_struct.cert_type = GNUTLS_CRT_X509;
|
|
tls_struct.key_type = GNUTLS_PRIVKEY_X509;
|
|
#else
|
|
tls_struct.type = GNUTLS_CRT_X509;
|
|
#endif
|
|
tls_struct.ncerts = 1;
|
|
tls_struct.deinit_all = 0;
|
|
tls_struct.cert.x509 = &server->tls_cert;
|
|
tls_struct.key.x509 = server->tls_cert_key;
|
|
#if LIBGNUTLS_VERSION_NUMBER >= 0x010706
|
|
/* client certificate info */
|
|
#if LIBGNUTLS_VERSION_NUMBER < 0x020400
|
|
rinfo = gnutls_x509_crt_print (server->tls_cert,
|
|
GNUTLS_X509_CRT_ONELINE,
|
|
&cinfo);
|
|
#else
|
|
rinfo = gnutls_x509_crt_print (server->tls_cert,
|
|
GNUTLS_CRT_PRINT_ONELINE,
|
|
&cinfo);
|
|
#endif
|
|
if (rinfo == 0)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_(" - client certificate info (%s):"),
|
|
cert_path2);
|
|
weechat_printf (server->buffer, " - %s", cinfo.data);
|
|
gnutls_free (cinfo.data);
|
|
}
|
|
#endif
|
|
memcpy (answer, &tls_struct, sizeof (tls_struct));
|
|
free (cert_str);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%sgnutls: unable to read certifcate \"%s\""),
|
|
weechat_prefix ("error"), cert_path2);
|
|
}
|
|
}
|
|
|
|
if (cert_path1)
|
|
free (cert_path1);
|
|
if (cert_path2)
|
|
free (cert_path2);
|
|
}
|
|
}
|
|
|
|
/* an error should stop the handshake unless the user doesn't care */
|
|
if ((rc == -1)
|
|
&& (IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL_VERIFY) == 0))
|
|
{
|
|
rc = 0;
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* irc_server_connect: connect to an IRC server
|
|
* Return: 1 if ok
|
|
* 0 if error
|
|
*/
|
|
|
|
int
|
|
irc_server_connect (struct t_irc_server *server)
|
|
{
|
|
int set, length;
|
|
char *option_name;
|
|
struct t_config_option *proxy_type, *proxy_ipv6, *proxy_address, *proxy_port;
|
|
const char *proxy, *str_proxy_type, *str_proxy_address;
|
|
|
|
if (!server->buffer)
|
|
{
|
|
if (!irc_server_create_buffer (server))
|
|
return 0;
|
|
weechat_buffer_set (server->buffer, "display", "auto");
|
|
}
|
|
|
|
weechat_bar_item_update ("buffer_name");
|
|
|
|
irc_server_set_index_current_address (server,
|
|
server->index_current_address);
|
|
|
|
if (!server->current_address)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: unknown address server \"%s\", "
|
|
"cannot connect"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
server->name);
|
|
return 0;
|
|
}
|
|
|
|
/* free some old values (from a previous connection to server) */
|
|
if (server->isupport)
|
|
{
|
|
free (server->isupport);
|
|
server->isupport = NULL;
|
|
}
|
|
if (server->prefix_modes)
|
|
{
|
|
free (server->prefix_modes);
|
|
server->prefix_modes = NULL;
|
|
}
|
|
if (server->prefix_chars)
|
|
{
|
|
free (server->prefix_chars);
|
|
server->prefix_chars = NULL;
|
|
}
|
|
|
|
proxy_type = NULL;
|
|
proxy_ipv6 = NULL;
|
|
proxy_address = NULL;
|
|
proxy_port = NULL;
|
|
str_proxy_type = NULL;
|
|
str_proxy_address = NULL;
|
|
|
|
proxy = IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_PROXY);
|
|
if (proxy && proxy[0])
|
|
{
|
|
length = 32 + strlen (proxy) + 1;
|
|
option_name = malloc (length);
|
|
if (!option_name)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: not enough memory"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
return 0;
|
|
}
|
|
snprintf (option_name, length, "weechat.proxy.%s.type", proxy);
|
|
proxy_type = weechat_config_get (option_name);
|
|
snprintf (option_name, length, "weechat.proxy.%s.ipv6", proxy);
|
|
proxy_ipv6 = weechat_config_get (option_name);
|
|
snprintf (option_name, length, "weechat.proxy.%s.address", proxy);
|
|
proxy_address = weechat_config_get (option_name);
|
|
snprintf (option_name, length, "weechat.proxy.%s.port", proxy);
|
|
proxy_port = weechat_config_get (option_name);
|
|
free (option_name);
|
|
if (!proxy_type || !proxy_address)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: proxy \"%s\" not found for server "
|
|
"\"%s\", cannot connect"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME, proxy,
|
|
server->name);
|
|
return 0;
|
|
}
|
|
str_proxy_type = weechat_config_string (proxy_type);
|
|
str_proxy_address = weechat_config_string (proxy_address);
|
|
if (!str_proxy_type[0] || !proxy_ipv6 || !str_proxy_address[0]
|
|
|| !proxy_port)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: missing proxy settings, check options "
|
|
"for proxy \"%s\""),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME, proxy);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (!server->nicks_array)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: nicks not defined for server \"%s\", "
|
|
"cannot connect"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME,
|
|
server->name);
|
|
return 0;
|
|
}
|
|
|
|
#ifndef HAVE_GNUTLS
|
|
if (IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL))
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: cannot connect with SSL because WeeChat "
|
|
"was not built with GnuTLS support"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
return 0;
|
|
}
|
|
#endif
|
|
if (proxy_type)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s: connecting to server %s/%d%s%s via %s "
|
|
"proxy %s/%d%s..."),
|
|
IRC_PLUGIN_NAME,
|
|
server->current_address,
|
|
server->current_port,
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6)) ?
|
|
" (IPv6)" : "",
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL)) ?
|
|
" (SSL)" : "",
|
|
str_proxy_type,
|
|
str_proxy_address,
|
|
weechat_config_integer (proxy_port),
|
|
(weechat_config_boolean (proxy_ipv6)) ? " (IPv6)" : "");
|
|
weechat_log_printf (_("Connecting to server %s/%d%s%s via %s proxy "
|
|
"%s/%d%s..."),
|
|
server->current_address,
|
|
server->current_port,
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6)) ?
|
|
" (IPv6)" : "",
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL)) ?
|
|
" (SSL)" : "",
|
|
str_proxy_type,
|
|
str_proxy_address,
|
|
weechat_config_integer (proxy_port),
|
|
(weechat_config_boolean (proxy_ipv6)) ? " (IPv6)" : "");
|
|
}
|
|
else
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s: connecting to server %s/%d%s%s..."),
|
|
IRC_PLUGIN_NAME,
|
|
server->current_address,
|
|
server->current_port,
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6)) ?
|
|
" (IPv6)" : "",
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL)) ?
|
|
" (SSL)" : "");
|
|
weechat_log_printf (_("%s%s: connecting to server %s/%d%s%s..."),
|
|
"",
|
|
IRC_PLUGIN_NAME,
|
|
server->current_address,
|
|
server->current_port,
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6)) ?
|
|
" (IPv6)" : "",
|
|
(IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL)) ?
|
|
" (SSL)" : "");
|
|
}
|
|
|
|
/* close connection if opened */
|
|
irc_server_close_connection (server);
|
|
|
|
/* create socket and set options */
|
|
if (proxy_type)
|
|
{
|
|
server->sock = socket ((weechat_config_integer (proxy_ipv6)) ?
|
|
AF_INET6 : AF_INET,
|
|
SOCK_STREAM, 0);
|
|
}
|
|
else
|
|
{
|
|
server->sock = socket ((IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6)) ?
|
|
AF_INET6 : AF_INET,
|
|
SOCK_STREAM, 0);
|
|
}
|
|
if (server->sock == -1)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: cannot create socket"),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
return 0;
|
|
}
|
|
|
|
/* set SO_REUSEADDR option for socket */
|
|
set = 1;
|
|
if (setsockopt (server->sock, SOL_SOCKET, SO_REUSEADDR,
|
|
(void *) &set, sizeof (set)) == -1)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: cannot set socket option "
|
|
"\"SO_REUSEADDR\""),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
}
|
|
|
|
/* set SO_KEEPALIVE option for socket */
|
|
set = 1;
|
|
if (setsockopt (server->sock, SOL_SOCKET, SO_KEEPALIVE,
|
|
(void *) &set, sizeof (set)) == -1)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s%s: cannot set socket option "
|
|
"\"SO_KEEPALIVE\""),
|
|
weechat_prefix ("error"), IRC_PLUGIN_NAME);
|
|
}
|
|
|
|
/* init SSL if asked and connect */
|
|
server->ssl_connected = 0;
|
|
#ifdef HAVE_GNUTLS
|
|
if (IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL))
|
|
server->ssl_connected = 1;
|
|
server->hook_connect = weechat_hook_connect (proxy,
|
|
server->current_address,
|
|
server->current_port,
|
|
server->sock,
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6),
|
|
(server->ssl_connected) ? &server->gnutls_sess : NULL,
|
|
(server->ssl_connected) ? irc_server_gnutls_callback : NULL,
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_SSL_DHKEY_SIZE),
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_SSL_PRIORITIES),
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_LOCAL_HOSTNAME),
|
|
&irc_server_connect_cb,
|
|
server);
|
|
#else
|
|
server->hook_connect = weechat_hook_connect (proxy,
|
|
server->current_address,
|
|
server->current_port,
|
|
server->sock,
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6),
|
|
NULL, NULL, 0, NULL,
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_LOCAL_HOSTNAME),
|
|
&irc_server_connect_cb,
|
|
server);
|
|
#endif
|
|
|
|
/* send signal "irc_server_connecting" with server name */
|
|
weechat_hook_signal_send ("irc_server_connecting",
|
|
WEECHAT_HOOK_SIGNAL_STRING, server->name);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* irc_server_reconnect: reconnect to a server (after disconnection)
|
|
*/
|
|
|
|
void
|
|
irc_server_reconnect (struct t_irc_server *server)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s: reconnecting to server..."),
|
|
IRC_PLUGIN_NAME);
|
|
|
|
server->reconnect_start = 0;
|
|
|
|
if (irc_server_connect (server))
|
|
server->reconnect_join = 1;
|
|
else
|
|
irc_server_reconnect_schedule (server);
|
|
}
|
|
|
|
/*
|
|
* irc_server_auto_connect: auto-connect to servers (called at startup)
|
|
*/
|
|
|
|
void
|
|
irc_server_auto_connect ()
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
|
|
for (ptr_server = irc_servers; ptr_server;
|
|
ptr_server = ptr_server->next_server)
|
|
{
|
|
if (IRC_SERVER_OPTION_BOOLEAN(ptr_server, IRC_SERVER_OPTION_AUTOCONNECT))
|
|
{
|
|
if (!irc_server_connect (ptr_server))
|
|
irc_server_reconnect_schedule (ptr_server);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_disconnect: disconnect from an irc server
|
|
*/
|
|
|
|
void
|
|
irc_server_disconnect (struct t_irc_server *server, int switch_address,
|
|
int reconnect)
|
|
{
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
if (server->is_connected)
|
|
{
|
|
/*
|
|
* remove all nicks and write disconnection message on each
|
|
* channel/private buffer
|
|
*/
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
irc_nick_free_all (server, ptr_channel);
|
|
weechat_printf (ptr_channel->buffer,
|
|
_("%s%s: disconnected from server"),
|
|
"",
|
|
IRC_PLUGIN_NAME);
|
|
}
|
|
}
|
|
|
|
irc_server_close_connection (server);
|
|
|
|
if (server->buffer)
|
|
{
|
|
weechat_printf (server->buffer,
|
|
_("%s: disconnected from server"),
|
|
IRC_PLUGIN_NAME);
|
|
}
|
|
|
|
if (switch_address)
|
|
irc_server_switch_address (server, 0);
|
|
else
|
|
irc_server_set_index_current_address(server, 0);
|
|
|
|
if (server->nick_modes)
|
|
{
|
|
free (server->nick_modes);
|
|
server->nick_modes = NULL;
|
|
weechat_bar_item_update ("input_prompt");
|
|
}
|
|
server->is_away = 0;
|
|
server->away_time = 0;
|
|
server->lag = 0;
|
|
server->lag_check_time.tv_sec = 0;
|
|
server->lag_check_time.tv_usec = 0;
|
|
server->lag_next_check = time (NULL) +
|
|
weechat_config_integer (irc_config_network_lag_check);
|
|
server->lag_last_refresh = 0;
|
|
|
|
if (reconnect
|
|
&& IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_AUTORECONNECT))
|
|
irc_server_reconnect_schedule (server);
|
|
else
|
|
{
|
|
server->reconnect_delay = 0;
|
|
server->reconnect_start = 0;
|
|
}
|
|
|
|
/* discard current nick if no reconnection asked */
|
|
if (!reconnect && server->nick)
|
|
irc_server_set_nick (server, NULL);
|
|
|
|
irc_server_set_buffer_title (server);
|
|
|
|
/* send signal "irc_server_disconnected" with server name */
|
|
weechat_hook_signal_send ("irc_server_disconnected",
|
|
WEECHAT_HOOK_SIGNAL_STRING, server->name);
|
|
}
|
|
|
|
/*
|
|
* irc_server_disconnect_all: disconnect from all irc servers
|
|
*/
|
|
|
|
void
|
|
irc_server_disconnect_all ()
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
|
|
for (ptr_server = irc_servers; ptr_server;
|
|
ptr_server = ptr_server->next_server)
|
|
{
|
|
irc_server_disconnect (ptr_server, 0, 0);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_autojoin_channels: autojoin (or rejoin) channels
|
|
*/
|
|
|
|
void
|
|
irc_server_autojoin_channels (struct t_irc_server *server)
|
|
{
|
|
struct t_irc_channel *ptr_channel;
|
|
const char *autojoin;
|
|
|
|
/* auto-join after disconnection (only rejoins opened channels) */
|
|
if (!server->disable_autojoin && server->reconnect_join && server->channels)
|
|
{
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
if ((ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
|
|
&& !ptr_channel->part)
|
|
{
|
|
if (ptr_channel->key)
|
|
{
|
|
irc_server_sendf (server,
|
|
IRC_SERVER_SEND_OUTQ_PRIO_HIGH, NULL,
|
|
"JOIN %s %s",
|
|
ptr_channel->name, ptr_channel->key);
|
|
}
|
|
else
|
|
{
|
|
irc_server_sendf (server,
|
|
IRC_SERVER_SEND_OUTQ_PRIO_HIGH, NULL,
|
|
"JOIN %s",
|
|
ptr_channel->name);
|
|
}
|
|
}
|
|
}
|
|
server->reconnect_join = 0;
|
|
}
|
|
else
|
|
{
|
|
/* auto-join when connecting to server for first time */
|
|
autojoin = IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_AUTOJOIN);
|
|
if (!server->disable_autojoin && autojoin && autojoin[0])
|
|
irc_command_join_server (server, autojoin, 0);
|
|
}
|
|
|
|
server->disable_autojoin = 0;
|
|
}
|
|
|
|
/*
|
|
* irc_server_search: return pointer on a server with a name
|
|
*/
|
|
|
|
struct t_irc_server *
|
|
irc_server_search (const char *server_name)
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
|
|
if (!server_name)
|
|
return NULL;
|
|
|
|
for (ptr_server = irc_servers; ptr_server;
|
|
ptr_server = ptr_server->next_server)
|
|
{
|
|
if (strcmp (ptr_server->name, server_name) == 0)
|
|
return ptr_server;
|
|
}
|
|
|
|
/* server not found */
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_number_connected: returns number of connected server
|
|
*/
|
|
|
|
int
|
|
irc_server_get_number_connected ()
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
int number;
|
|
|
|
number = 0;
|
|
for (ptr_server = irc_servers; ptr_server; ptr_server = ptr_server->next_server)
|
|
{
|
|
if (ptr_server->is_connected)
|
|
number++;
|
|
}
|
|
return number;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_number_buffer: returns position of a server and total number of
|
|
* buffers with a buffer
|
|
*/
|
|
|
|
void
|
|
irc_server_get_number_buffer (struct t_irc_server *server,
|
|
int *server_pos, int *server_total)
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
|
|
*server_pos = 0;
|
|
*server_total = 0;
|
|
for (ptr_server = irc_servers; ptr_server;
|
|
ptr_server = ptr_server->next_server)
|
|
{
|
|
if (ptr_server->buffer)
|
|
{
|
|
(*server_total)++;
|
|
if (ptr_server == server)
|
|
*server_pos = *server_total;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_channel_count: return number of channels for server
|
|
*/
|
|
|
|
int
|
|
irc_server_get_channel_count (struct t_irc_server *server)
|
|
{
|
|
int count;
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
count = 0;
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
|
|
count++;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/*
|
|
* irc_server_get_pv_count: return number of pv for server
|
|
*/
|
|
|
|
int
|
|
irc_server_get_pv_count (struct t_irc_server *server)
|
|
{
|
|
int count;
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
count = 0;
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
if (ptr_channel->type == IRC_CHANNEL_TYPE_PRIVATE)
|
|
count++;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
/*
|
|
* irc_server_remove_away: remove away for all chans/nicks (for all servers)
|
|
*/
|
|
|
|
void
|
|
irc_server_remove_away (struct t_irc_server *server)
|
|
{
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
if (server->is_connected)
|
|
{
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
|
|
irc_channel_remove_away (server, ptr_channel);
|
|
}
|
|
server->last_away_check = 0;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_check_away: check for away on all channels of a server
|
|
*/
|
|
|
|
void
|
|
irc_server_check_away (struct t_irc_server *server)
|
|
{
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
if (server->is_connected)
|
|
{
|
|
for (ptr_channel = server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
|
|
irc_channel_check_away (server, ptr_channel);
|
|
}
|
|
server->last_away_check = time (NULL);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_set_away: set/unset away status for a server (all channels)
|
|
*/
|
|
|
|
void
|
|
irc_server_set_away (struct t_irc_server *server, const char *nick, int is_away)
|
|
{
|
|
struct t_irc_channel *ptr_channel;
|
|
|
|
if (server->is_connected)
|
|
{
|
|
/* set/del "away" local variable on server buffer */
|
|
if (is_away)
|
|
{
|
|
weechat_buffer_set (server->buffer,
|
|
"localvar_set_away", server->away_message);
|
|
}
|
|
else
|
|
{
|
|
weechat_buffer_set (server->buffer,
|
|
"localvar_del_away", "");
|
|
}
|
|
|
|
for (ptr_channel = server->channels; ptr_channel; ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
/* set away flag for nick on channel */
|
|
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
|
|
irc_channel_set_away (server, ptr_channel, nick, is_away);
|
|
|
|
/* set/del "away" local variable on channel buffer */
|
|
if (is_away)
|
|
{
|
|
weechat_buffer_set (ptr_channel->buffer,
|
|
"localvar_set_away", server->away_message);
|
|
}
|
|
else
|
|
{
|
|
weechat_buffer_set (ptr_channel->buffer,
|
|
"localvar_del_away", "");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* irc_server_xfer_send_ready_cb: callback called when user send (file or chat)
|
|
* to someone and that xfer plugin successfully
|
|
* initialized xfer and is ready for sending
|
|
* in that case, irc plugin send message to
|
|
* remote nick and wait for "accept" reply
|
|
*/
|
|
|
|
int
|
|
irc_server_xfer_send_ready_cb (void *data, const char *signal,
|
|
const char *type_data, void *signal_data)
|
|
{
|
|
struct t_infolist *infolist;
|
|
struct t_irc_server *ptr_server;
|
|
const char *plugin_name, *plugin_id, *type, *filename;
|
|
int spaces_in_name;
|
|
|
|
/* make C compiler happy */
|
|
(void) data;
|
|
(void) signal;
|
|
(void) type_data;
|
|
|
|
infolist = (struct t_infolist *)signal_data;
|
|
|
|
if (weechat_infolist_next (infolist))
|
|
{
|
|
plugin_name = weechat_infolist_string (infolist, "plugin_name");
|
|
plugin_id = weechat_infolist_string (infolist, "plugin_id");
|
|
if (plugin_name && (strcmp (plugin_name, IRC_PLUGIN_NAME) == 0) && plugin_id)
|
|
{
|
|
ptr_server = irc_server_search (plugin_id);
|
|
if (ptr_server)
|
|
{
|
|
type = weechat_infolist_string (infolist, "type");
|
|
if (type)
|
|
{
|
|
if (strcmp (type, "file_send") == 0)
|
|
{
|
|
filename = weechat_infolist_string (infolist, "filename");
|
|
spaces_in_name = (strchr (filename, ' ') != NULL);
|
|
irc_server_sendf (ptr_server,
|
|
IRC_SERVER_SEND_OUTQ_PRIO_HIGH, NULL,
|
|
"PRIVMSG %s :\01DCC SEND %s%s%s "
|
|
"%s %d %s\01",
|
|
weechat_infolist_string (infolist, "remote_nick"),
|
|
(spaces_in_name) ? "\"" : "",
|
|
filename,
|
|
(spaces_in_name) ? "\"" : "",
|
|
weechat_infolist_string (infolist, "address"),
|
|
weechat_infolist_integer (infolist, "port"),
|
|
weechat_infolist_string (infolist, "size"));
|
|
}
|
|
else if (strcmp (type, "chat_send") == 0)
|
|
{
|
|
irc_server_sendf (ptr_server,
|
|
IRC_SERVER_SEND_OUTQ_PRIO_HIGH, NULL,
|
|
"PRIVMSG %s :\01DCC CHAT chat %s %d\01",
|
|
weechat_infolist_string (infolist, "remote_nick"),
|
|
weechat_infolist_string (infolist, "address"),
|
|
weechat_infolist_integer (infolist, "port"));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
weechat_infolist_reset_item_cursor (infolist);
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_xfer_resume_ready_cb: callback called when user receives a file
|
|
* and that resume is possible (file is partially
|
|
* received)
|
|
* in that case, irc plugin send message to
|
|
* remote nick with resume position
|
|
*/
|
|
|
|
int
|
|
irc_server_xfer_resume_ready_cb (void *data, const char *signal,
|
|
const char *type_data, void *signal_data)
|
|
{
|
|
struct t_infolist *infolist;
|
|
struct t_irc_server *ptr_server;
|
|
const char *plugin_name, *plugin_id, *filename;
|
|
int spaces_in_name;
|
|
|
|
/* make C compiler happy */
|
|
(void) data;
|
|
(void) signal;
|
|
(void) type_data;
|
|
|
|
infolist = (struct t_infolist *)signal_data;
|
|
|
|
if (weechat_infolist_next (infolist))
|
|
{
|
|
plugin_name = weechat_infolist_string (infolist, "plugin_name");
|
|
plugin_id = weechat_infolist_string (infolist, "plugin_id");
|
|
if (plugin_name && (strcmp (plugin_name, IRC_PLUGIN_NAME) == 0) && plugin_id)
|
|
{
|
|
ptr_server = irc_server_search (plugin_id);
|
|
if (ptr_server)
|
|
{
|
|
filename = weechat_infolist_string (infolist, "filename");
|
|
spaces_in_name = (strchr (filename, ' ') != NULL);
|
|
irc_server_sendf (ptr_server,
|
|
IRC_SERVER_SEND_OUTQ_PRIO_HIGH, NULL,
|
|
"PRIVMSG %s :\01DCC RESUME %s%s%s %d %s\01",
|
|
weechat_infolist_string (infolist, "remote_nick"),
|
|
(spaces_in_name) ? "\"" : "",
|
|
filename,
|
|
(spaces_in_name) ? "\"" : "",
|
|
weechat_infolist_integer (infolist, "port"),
|
|
weechat_infolist_string (infolist, "start_resume"));
|
|
}
|
|
}
|
|
}
|
|
|
|
weechat_infolist_reset_item_cursor (infolist);
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_xfer_send_accept_resume_cb: callback called when xfer plugin
|
|
* accepted resume request from receiver
|
|
* in that case, irc plugin send accept
|
|
* message to remote nick with resume
|
|
* position
|
|
*/
|
|
|
|
int
|
|
irc_server_xfer_send_accept_resume_cb (void *data, const char *signal,
|
|
const char *type_data,
|
|
void *signal_data)
|
|
{
|
|
struct t_infolist *infolist;
|
|
struct t_irc_server *ptr_server;
|
|
const char *plugin_name, *plugin_id, *filename;
|
|
int spaces_in_name;
|
|
|
|
/* make C compiler happy */
|
|
(void) data;
|
|
(void) signal;
|
|
(void) type_data;
|
|
|
|
infolist = (struct t_infolist *)signal_data;
|
|
|
|
if (weechat_infolist_next (infolist))
|
|
{
|
|
plugin_name = weechat_infolist_string (infolist, "plugin_name");
|
|
plugin_id = weechat_infolist_string (infolist, "plugin_id");
|
|
if (plugin_name && (strcmp (plugin_name, IRC_PLUGIN_NAME) == 0) && plugin_id)
|
|
{
|
|
ptr_server = irc_server_search (plugin_id);
|
|
if (ptr_server)
|
|
{
|
|
filename = weechat_infolist_string (infolist, "filename");
|
|
spaces_in_name = (strchr (filename, ' ') != NULL);
|
|
irc_server_sendf (ptr_server,
|
|
IRC_SERVER_SEND_OUTQ_PRIO_HIGH, NULL,
|
|
"PRIVMSG %s :\01DCC ACCEPT %s%s%s %d %s\01",
|
|
weechat_infolist_string (infolist, "remote_nick"),
|
|
(spaces_in_name) ? "\"" : "",
|
|
filename,
|
|
(spaces_in_name) ? "\"" : "",
|
|
weechat_infolist_integer (infolist, "port"),
|
|
weechat_infolist_string (infolist, "start_resume"));
|
|
}
|
|
}
|
|
}
|
|
|
|
weechat_infolist_reset_item_cursor (infolist);
|
|
|
|
return WEECHAT_RC_OK;
|
|
}
|
|
|
|
/*
|
|
* irc_server_hdata_server_cb: return hdata for server
|
|
*/
|
|
|
|
struct t_hdata *
|
|
irc_server_hdata_server_cb (void *data, const char *hdata_name)
|
|
{
|
|
struct t_hdata *hdata;
|
|
|
|
/* make C compiler happy */
|
|
(void) data;
|
|
|
|
hdata = weechat_hdata_new (hdata_name, "prev_server", "next_server");
|
|
if (hdata)
|
|
{
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, name, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, options, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, temp_server, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, reloading_from_config, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, reloaded_from_config, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, addresses_count, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, addresses_array, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, ports_array, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, index_current_address, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, current_address, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, current_ip, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, current_port, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, sock, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, hook_connect, POINTER, "hook");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, hook_fd, POINTER, "hook");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, hook_timer_connection, POINTER, "hook");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, hook_timer_sasl, POINTER, "hook");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, is_connected, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, ssl_connected, INTEGER, NULL);
|
|
#ifdef HAVE_GNUTLS
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, gnutls_sess, OTHER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, tls_cert, OTHER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, tls_cert_key, OTHER, NULL);
|
|
#endif
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, unterminated_message, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, nicks_count, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, nicks_array, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, nick_first_tried, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, nick, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, nick_modes, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, isupport, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, prefix_modes, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, prefix_chars, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, nick_max_length, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, reconnect_delay, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, reconnect_start, TIME, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, command_time, TIME, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, reconnect_join, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, disable_autojoin, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, is_away, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, away_message, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, away_time, TIME, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, lag, INTEGER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, lag_check_time, OTHER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, lag_next_check, TIME, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, lag_last_refresh, TIME, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, cmd_list_regexp, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, last_user_message, TIME, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, last_away_check, TIME, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, outqueue, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, last_outqueue, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, redirects, POINTER, "irc_redirect");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, last_redirect, POINTER, "irc_redirect");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, notify_list, POINTER, "irc_notify");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, last_notify, POINTER, "irc_notify");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, manual_joins, POINTER, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, buffer, POINTER, "buffer");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, buffer_as_string, STRING, NULL);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, channels, POINTER, "irc_channel");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, last_channel, POINTER, "irc_channel");
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, prev_server, POINTER, hdata_name);
|
|
WEECHAT_HDATA_VAR(struct t_irc_server, next_server, POINTER, hdata_name);
|
|
WEECHAT_HDATA_LIST(irc_servers);
|
|
WEECHAT_HDATA_LIST(last_irc_server);
|
|
}
|
|
return hdata;
|
|
}
|
|
|
|
/*
|
|
* irc_server_add_to_infolist: add a server in an infolist
|
|
* return 1 if ok, 0 if error
|
|
*/
|
|
|
|
int
|
|
irc_server_add_to_infolist (struct t_infolist *infolist,
|
|
struct t_irc_server *server)
|
|
{
|
|
struct t_infolist_item *ptr_item;
|
|
|
|
if (!infolist || !server)
|
|
return 0;
|
|
|
|
ptr_item = weechat_infolist_new_item (infolist);
|
|
if (!ptr_item)
|
|
return 0;
|
|
|
|
if (!weechat_infolist_new_var_string (ptr_item, "name", server->name))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_pointer (ptr_item, "buffer", server->buffer))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "buffer_name",
|
|
(server->buffer) ?
|
|
weechat_buffer_get_string (server->buffer, "name") : ""))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "buffer_short_name",
|
|
(server->buffer) ?
|
|
weechat_buffer_get_string (server->buffer, "short_name") : ""))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "addresses",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_ADDRESSES)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "proxy",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_PROXY)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "ipv6",
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_IPV6)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "ssl",
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "ssl_cert",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_SSL_CERT)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "ssl_priorities",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_SSL_PRIORITIES)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "ssl_dhkey_size",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_SSL_DHKEY_SIZE)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "ssl_verify",
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_SSL_VERIFY)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "password",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_PASSWORD)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "sasl_mechanism",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_SASL_MECHANISM)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "sasl_username",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_SASL_USERNAME)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "sasl_password",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_SASL_PASSWORD)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "autoconnect",
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_AUTOCONNECT)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "autoreconnect",
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_AUTORECONNECT)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "autoreconnect_delay",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_AUTORECONNECT_DELAY)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "nicks",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_NICKS)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "username",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_USERNAME)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "realname",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_REALNAME)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "local_hostname",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_LOCAL_HOSTNAME)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "command",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_COMMAND)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "command_delay",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_COMMAND_DELAY)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "autojoin",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_AUTOJOIN)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "autorejoin",
|
|
IRC_SERVER_OPTION_BOOLEAN(server, IRC_SERVER_OPTION_AUTOREJOIN)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "autorejoin_delay",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_AUTOREJOIN_DELAY)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "connection_timeout",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_CONNECTION_TIMEOUT)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "anti_flood_prio_high",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_HIGH)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "anti_flood_prio_low",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_LOW)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "away_check",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_AWAY_CHECK)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "away_check_max_nicks",
|
|
IRC_SERVER_OPTION_INTEGER(server, IRC_SERVER_OPTION_AWAY_CHECK_MAX_NICKS)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "default_msg_part",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_DEFAULT_MSG_PART)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "default_msg_quit",
|
|
IRC_SERVER_OPTION_STRING(server, IRC_SERVER_OPTION_DEFAULT_MSG_QUIT)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "temp_server", server->temp_server))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "index_current_address", server->index_current_address))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "current_address", server->current_address))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "current_ip", server->current_ip))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "current_port", server->current_port))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "sock", server->sock))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "is_connected", server->is_connected))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "ssl_connected", server->ssl_connected))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "unterminated_message", server->unterminated_message))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "nick", server->nick))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "nick_modes", server->nick_modes))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "isupport", server->isupport))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "prefix_modes", server->prefix_modes))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "prefix_chars", server->prefix_chars))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "nick_max_length", server->nick_max_length))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "reconnect_delay", server->reconnect_delay))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_time (ptr_item, "reconnect_start", server->reconnect_start))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_time (ptr_item, "command_time", server->command_time))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "reconnect_join", server->reconnect_join))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "disable_autojoin", server->disable_autojoin))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "is_away", server->is_away))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_string (ptr_item, "away_message", server->away_message))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_time (ptr_item, "away_time", server->away_time))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_integer (ptr_item, "lag", server->lag))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_buffer (ptr_item, "lag_check_time", &(server->lag_check_time), sizeof (struct timeval)))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_time (ptr_item, "lag_next_check", server->lag_next_check))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_time (ptr_item, "lag_last_refresh", server->lag_last_refresh))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_time (ptr_item, "last_user_message", server->last_user_message))
|
|
return 0;
|
|
if (!weechat_infolist_new_var_time (ptr_item, "last_away_check", server->last_away_check))
|
|
return 0;
|
|
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* irc_server_print_log: print server infos in log (usually for crash dump)
|
|
*/
|
|
|
|
void
|
|
irc_server_print_log ()
|
|
{
|
|
struct t_irc_server *ptr_server;
|
|
struct t_irc_channel *ptr_channel;
|
|
int i;
|
|
|
|
for (ptr_server = irc_servers; ptr_server;
|
|
ptr_server = ptr_server->next_server)
|
|
{
|
|
weechat_log_printf ("");
|
|
weechat_log_printf ("[server %s (addr:0x%lx)]", ptr_server->name, ptr_server);
|
|
/* addresses */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_ADDRESSES]))
|
|
weechat_log_printf (" addresses. . . . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_ADDRESSES));
|
|
else
|
|
weechat_log_printf (" addresses. . . . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_ADDRESSES]));
|
|
/* proxy */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_PROXY]))
|
|
weechat_log_printf (" proxy. . . . . . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_PROXY));
|
|
else
|
|
weechat_log_printf (" proxy. . . . . . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_PROXY]));
|
|
/* ipv6 */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_IPV6]))
|
|
weechat_log_printf (" ipv6 . . . . . . . . : null (%s)",
|
|
(IRC_SERVER_OPTION_BOOLEAN(ptr_server, IRC_SERVER_OPTION_IPV6)) ?
|
|
"on" : "off");
|
|
else
|
|
weechat_log_printf (" ipv6 . . . . . . . . : %s",
|
|
weechat_config_boolean (ptr_server->options[IRC_SERVER_OPTION_IPV6]) ?
|
|
"on" : "off");
|
|
/* ssl */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SSL]))
|
|
weechat_log_printf (" ssl. . . . . . . . . : null (%s)",
|
|
(IRC_SERVER_OPTION_BOOLEAN(ptr_server, IRC_SERVER_OPTION_SSL)) ?
|
|
"on" : "off");
|
|
else
|
|
weechat_log_printf (" ssl. . . . . . . . . : %s",
|
|
weechat_config_boolean (ptr_server->options[IRC_SERVER_OPTION_SSL]) ?
|
|
"on" : "off");
|
|
/* ssl_cert */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SSL_CERT]))
|
|
weechat_log_printf (" ssl_cert . . . . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_SSL_CERT));
|
|
else
|
|
weechat_log_printf (" ssl_cert . . . . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_SSL_CERT]));
|
|
/* ssl_priorities */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SSL_PRIORITIES]))
|
|
weechat_log_printf (" ssl_priorities . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_SSL_PRIORITIES));
|
|
else
|
|
weechat_log_printf (" ssl_priorities . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_SSL_PRIORITIES]));
|
|
/* ssl_dhkey_size */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SSL_DHKEY_SIZE]))
|
|
weechat_log_printf (" ssl_dhkey_size . . . : null ('%d')",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_SSL_DHKEY_SIZE));
|
|
else
|
|
weechat_log_printf (" ssl_dhkey_size . . . : '%d'",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_SSL_DHKEY_SIZE]));
|
|
/* ssl_verify */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SSL_VERIFY]))
|
|
weechat_log_printf (" ssl_verify . . . . . : null (%s)",
|
|
(IRC_SERVER_OPTION_BOOLEAN(ptr_server, IRC_SERVER_OPTION_SSL_VERIFY)) ?
|
|
"on" : "off");
|
|
else
|
|
weechat_log_printf (" ssl_verify . . . . . : %s",
|
|
weechat_config_boolean (ptr_server->options[IRC_SERVER_OPTION_SSL_VERIFY]) ?
|
|
"on" : "off");
|
|
/* password */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_PASSWORD]))
|
|
weechat_log_printf (" password . . . . . . : null");
|
|
else
|
|
weechat_log_printf (" password . . . . . . : (hidden)");
|
|
/* sasl_mechanism */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SASL_MECHANISM]))
|
|
weechat_log_printf (" sasl_mechanism . . . : null ('%s')",
|
|
irc_sasl_mechanism_string[IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_SASL_MECHANISM)]);
|
|
else
|
|
weechat_log_printf (" sasl_mechanism . . . : '%s'",
|
|
irc_sasl_mechanism_string[weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_SASL_MECHANISM])]);
|
|
/* sasl_username */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SASL_USERNAME]))
|
|
weechat_log_printf (" sasl_username. . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_SASL_USERNAME));
|
|
else
|
|
weechat_log_printf (" sasl_username. . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_USERNAME]));
|
|
/* sasl_password */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_SASL_PASSWORD]))
|
|
weechat_log_printf (" sasl_password. . . . : null");
|
|
else
|
|
weechat_log_printf (" sasl_password. . . . : (hidden)");
|
|
/* autoconnect */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AUTOCONNECT]))
|
|
weechat_log_printf (" autoconnect. . . . . : null (%s)",
|
|
(IRC_SERVER_OPTION_BOOLEAN(ptr_server, IRC_SERVER_OPTION_AUTOCONNECT)) ?
|
|
"on" : "off");
|
|
else
|
|
weechat_log_printf (" autoconnect. . . . . : %s",
|
|
weechat_config_boolean (ptr_server->options[IRC_SERVER_OPTION_AUTOCONNECT]) ?
|
|
"on" : "off");
|
|
/* autoreconnect */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AUTORECONNECT]))
|
|
weechat_log_printf (" autoreconnect. . . . : null (%s)",
|
|
(IRC_SERVER_OPTION_BOOLEAN(ptr_server, IRC_SERVER_OPTION_AUTORECONNECT)) ?
|
|
"on" : "off");
|
|
else
|
|
weechat_log_printf (" autoreconnect. . . . : %s",
|
|
weechat_config_boolean (ptr_server->options[IRC_SERVER_OPTION_AUTORECONNECT]) ?
|
|
"on" : "off");
|
|
/* autoreconnect_delay */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AUTORECONNECT_DELAY]))
|
|
weechat_log_printf (" autoreconnect_delay. : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_AUTORECONNECT_DELAY));
|
|
else
|
|
weechat_log_printf (" autoreconnect_delay. : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_AUTORECONNECT_DELAY]));
|
|
/* nicks */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_NICKS]))
|
|
weechat_log_printf (" nicks. . . . . . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_NICKS));
|
|
else
|
|
weechat_log_printf (" nicks. . . . . . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_NICKS]));
|
|
/* username */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_USERNAME]))
|
|
weechat_log_printf (" username . . . . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_USERNAME));
|
|
else
|
|
weechat_log_printf (" username . . . . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_USERNAME]));
|
|
/* realname */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_REALNAME]))
|
|
weechat_log_printf (" realname . . . . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_REALNAME));
|
|
else
|
|
weechat_log_printf (" realname . . . . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_REALNAME]));
|
|
/* local_hostname */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_LOCAL_HOSTNAME]))
|
|
weechat_log_printf (" local_hostname . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_LOCAL_HOSTNAME));
|
|
else
|
|
weechat_log_printf (" local_hostname . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_LOCAL_HOSTNAME]));
|
|
/* command */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_COMMAND]))
|
|
weechat_log_printf (" command. . . . . . . : null");
|
|
else
|
|
weechat_log_printf (" command. . . . . . . : (hidden)");
|
|
/* command_delay */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_COMMAND_DELAY]))
|
|
weechat_log_printf (" command_delay. . . . : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_COMMAND_DELAY));
|
|
else
|
|
weechat_log_printf (" command_delay. . . . : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_COMMAND_DELAY]));
|
|
/* autojoin */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AUTOJOIN]))
|
|
weechat_log_printf (" autojoin . . . . . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_AUTOJOIN));
|
|
else
|
|
weechat_log_printf (" autojoin . . . . . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_AUTOJOIN]));
|
|
/* autorejoin */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AUTOREJOIN]))
|
|
weechat_log_printf (" autorejoin . . . . . : null (%s)",
|
|
(IRC_SERVER_OPTION_BOOLEAN(ptr_server, IRC_SERVER_OPTION_AUTOREJOIN)) ?
|
|
"on" : "off");
|
|
else
|
|
weechat_log_printf (" autorejoin . . . . . : %s",
|
|
weechat_config_boolean (ptr_server->options[IRC_SERVER_OPTION_AUTOREJOIN]) ?
|
|
"on" : "off");
|
|
/* autorejoin_delay */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AUTOREJOIN_DELAY]))
|
|
weechat_log_printf (" autorejoin_delay . . : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_AUTOREJOIN_DELAY));
|
|
else
|
|
weechat_log_printf (" autorejoin_delay . . : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_AUTOREJOIN_DELAY]));
|
|
/* connection_timeout */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_CONNECTION_TIMEOUT]))
|
|
weechat_log_printf (" connection_timeout . : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_CONNECTION_TIMEOUT));
|
|
else
|
|
weechat_log_printf (" connection_timeout . : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_CONNECTION_TIMEOUT]));
|
|
/* anti_flood_prio_high */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_HIGH]))
|
|
weechat_log_printf (" anti_flood_prio_high : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_HIGH));
|
|
else
|
|
weechat_log_printf (" anti_flood_prio_high : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_HIGH]));
|
|
/* anti_flood_prio_low */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_LOW]))
|
|
weechat_log_printf (" anti_flood_prio_low. : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_LOW));
|
|
else
|
|
weechat_log_printf (" anti_flood_prio_low. : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_ANTI_FLOOD_PRIO_LOW]));
|
|
/* away_check */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AWAY_CHECK]))
|
|
weechat_log_printf (" away_check . . . . . : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_AWAY_CHECK));
|
|
else
|
|
weechat_log_printf (" away_check . . . . . : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_AWAY_CHECK]));
|
|
/* away_check_max_nicks */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_AWAY_CHECK_MAX_NICKS]))
|
|
weechat_log_printf (" away_check_max_nicks : null (%d)",
|
|
IRC_SERVER_OPTION_INTEGER(ptr_server, IRC_SERVER_OPTION_AWAY_CHECK_MAX_NICKS));
|
|
else
|
|
weechat_log_printf (" away_check_max_nicks : %d",
|
|
weechat_config_integer (ptr_server->options[IRC_SERVER_OPTION_AWAY_CHECK_MAX_NICKS]));
|
|
/* default_msg_part */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_DEFAULT_MSG_PART]))
|
|
weechat_log_printf (" default_msg_part . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_DEFAULT_MSG_PART));
|
|
else
|
|
weechat_log_printf (" default_msg_part . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_DEFAULT_MSG_PART]));
|
|
/* default_msg_quit */
|
|
if (weechat_config_option_is_null (ptr_server->options[IRC_SERVER_OPTION_DEFAULT_MSG_QUIT]))
|
|
weechat_log_printf (" default_msg_quit . . : null ('%s')",
|
|
IRC_SERVER_OPTION_STRING(ptr_server, IRC_SERVER_OPTION_DEFAULT_MSG_QUIT));
|
|
else
|
|
weechat_log_printf (" default_msg_quit . . : '%s'",
|
|
weechat_config_string (ptr_server->options[IRC_SERVER_OPTION_DEFAULT_MSG_QUIT]));
|
|
/* other server variables */
|
|
weechat_log_printf (" temp_server. . . . . : %d", ptr_server->temp_server);
|
|
weechat_log_printf (" reloading_from_config: %d", ptr_server->reloaded_from_config);
|
|
weechat_log_printf (" reloaded_from_config : %d", ptr_server->reloaded_from_config);
|
|
weechat_log_printf (" addresses_count. . . : %d", ptr_server->addresses_count);
|
|
weechat_log_printf (" addresses_array. . . : 0x%lx", ptr_server->addresses_array);
|
|
weechat_log_printf (" ports_array. . . . . : 0x%lx", ptr_server->ports_array);
|
|
weechat_log_printf (" index_current_address: %d", ptr_server->index_current_address);
|
|
weechat_log_printf (" current_address. . . : '%s'", ptr_server->current_address);
|
|
weechat_log_printf (" current_ip . . . . . : '%s'", ptr_server->current_ip);
|
|
weechat_log_printf (" current_port . . . . : %d", ptr_server->current_port);
|
|
weechat_log_printf (" sock . . . . . . . . : %d", ptr_server->sock);
|
|
weechat_log_printf (" hook_connect . . . . : 0x%lx", ptr_server->hook_connect);
|
|
weechat_log_printf (" hook_fd. . . . . . . : 0x%lx", ptr_server->hook_fd);
|
|
weechat_log_printf (" hook_timer_connection: 0x%lx", ptr_server->hook_timer_connection);
|
|
weechat_log_printf (" hook_timer_sasl. . . : 0x%lx", ptr_server->hook_timer_sasl);
|
|
weechat_log_printf (" is_connected . . . . : %d", ptr_server->is_connected);
|
|
weechat_log_printf (" ssl_connected. . . . : %d", ptr_server->ssl_connected);
|
|
#ifdef HAVE_GNUTLS
|
|
weechat_log_printf (" gnutls_sess. . . . . : 0x%lx", ptr_server->gnutls_sess);
|
|
#endif
|
|
weechat_log_printf (" unterminated_message : '%s'", ptr_server->unterminated_message);
|
|
weechat_log_printf (" nicks_count. . . . . : %d", ptr_server->nicks_count);
|
|
weechat_log_printf (" nicks_array. . . . . : 0x%lx", ptr_server->nicks_array);
|
|
weechat_log_printf (" nick_first_tried . . : %d", ptr_server->nick_first_tried);
|
|
weechat_log_printf (" nick . . . . . . . . : '%s'", ptr_server->nick);
|
|
weechat_log_printf (" nick_modes . . . . . : '%s'", ptr_server->nick_modes);
|
|
weechat_log_printf (" isupport . . . . . . : '%s'", ptr_server->isupport);
|
|
weechat_log_printf (" prefix_modes . . . . : '%s'", ptr_server->prefix_modes);
|
|
weechat_log_printf (" prefix_chars . . . . : '%s'", ptr_server->prefix_chars);
|
|
weechat_log_printf (" nick_max_length. . . : %d", ptr_server->nick_max_length);
|
|
weechat_log_printf (" reconnect_delay. . . : %d", ptr_server->reconnect_delay);
|
|
weechat_log_printf (" reconnect_start. . . : %ld", ptr_server->reconnect_start);
|
|
weechat_log_printf (" command_time . . . . : %ld", ptr_server->command_time);
|
|
weechat_log_printf (" reconnect_join . . . : %d", ptr_server->reconnect_join);
|
|
weechat_log_printf (" disable_autojoin . . : %d", ptr_server->disable_autojoin);
|
|
weechat_log_printf (" is_away. . . . . . . : %d", ptr_server->is_away);
|
|
weechat_log_printf (" away_message . . . . : '%s'", ptr_server->away_message);
|
|
weechat_log_printf (" away_time. . . . . . : %ld", ptr_server->away_time);
|
|
weechat_log_printf (" lag. . . . . . . . . : %d", ptr_server->lag);
|
|
weechat_log_printf (" lag_check_time . . . : tv_sec:%d, tv_usec:%d",
|
|
ptr_server->lag_check_time.tv_sec,
|
|
ptr_server->lag_check_time.tv_usec);
|
|
weechat_log_printf (" lag_next_check . . . : %ld", ptr_server->lag_next_check);
|
|
weechat_log_printf (" lag_last_refresh . . : %ld", ptr_server->lag_last_refresh);
|
|
weechat_log_printf (" cmd_list_regexp. . . : 0x%lx", ptr_server->cmd_list_regexp);
|
|
weechat_log_printf (" last_user_message. . : %ld", ptr_server->last_user_message);
|
|
weechat_log_printf (" last_away_check. . . : %ld", ptr_server->last_away_check);
|
|
for (i = 0; i < IRC_SERVER_NUM_OUTQUEUES_PRIO; i++)
|
|
{
|
|
weechat_log_printf (" outqueue[%02d] . . . . : 0x%lx", i, ptr_server->outqueue[i]);
|
|
weechat_log_printf (" last_outqueue[%02d]. . : 0x%lx", i, ptr_server->last_outqueue[i]);
|
|
}
|
|
weechat_log_printf (" redirects. . . . . . : 0x%lx", ptr_server->redirects);
|
|
weechat_log_printf (" last_redirect. . . . : 0x%lx", ptr_server->last_redirect);
|
|
weechat_log_printf (" notify_list. . . . . : 0x%lx", ptr_server->notify_list);
|
|
weechat_log_printf (" last_notify. . . . . : 0x%lx", ptr_server->last_notify);
|
|
weechat_log_printf (" manual_joins . . . . : 0x%lx (hashtable: '%s')",
|
|
ptr_server->manual_joins,
|
|
weechat_hashtable_get_string (ptr_server->manual_joins, "keys_values"));
|
|
weechat_log_printf (" buffer . . . . . . . : 0x%lx", ptr_server->buffer);
|
|
weechat_log_printf (" buffer_as_string . . : 0x%lx", ptr_server->buffer_as_string);
|
|
weechat_log_printf (" channels . . . . . . : 0x%lx", ptr_server->channels);
|
|
weechat_log_printf (" last_channel . . . . : 0x%lx", ptr_server->last_channel);
|
|
weechat_log_printf (" prev_server. . . . . : 0x%lx", ptr_server->prev_server);
|
|
weechat_log_printf (" next_server. . . . . : 0x%lx", ptr_server->next_server);
|
|
|
|
irc_redirect_print_log (ptr_server);
|
|
|
|
irc_notify_print_log (ptr_server);
|
|
|
|
for (ptr_channel = ptr_server->channels; ptr_channel;
|
|
ptr_channel = ptr_channel->next_channel)
|
|
{
|
|
irc_channel_print_log (ptr_channel);
|
|
}
|
|
}
|
|
}
|