2000-04-26 04:03:38 -04:00
|
|
|
/*
|
|
|
|
server.c : irssi
|
|
|
|
|
|
|
|
Copyright (C) 1999-2000 Timo Sirainen
|
|
|
|
|
|
|
|
This program 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "module.h"
|
|
|
|
#include "signals.h"
|
2000-09-02 14:53:58 -04:00
|
|
|
#include "commands.h"
|
2000-04-26 04:03:38 -04:00
|
|
|
#include "line-split.h"
|
|
|
|
#include "net-nonblock.h"
|
2000-07-16 15:00:41 -04:00
|
|
|
#include "net-sendbuffer.h"
|
2000-04-26 04:03:38 -04:00
|
|
|
#include "misc.h"
|
2000-08-26 11:39:44 -04:00
|
|
|
#include "rawlog.h"
|
2001-03-03 20:47:13 -05:00
|
|
|
#include "settings.h"
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2001-03-03 22:25:21 -05:00
|
|
|
#include "chat-protocols.h"
|
2000-08-26 11:39:44 -04:00
|
|
|
#include "servers.h"
|
2000-09-02 14:53:58 -04:00
|
|
|
#include "servers-reconnect.h"
|
2000-08-26 11:39:44 -04:00
|
|
|
#include "servers-redirect.h"
|
|
|
|
#include "servers-setup.h"
|
|
|
|
#include "channels.h"
|
|
|
|
#include "queries.h"
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
GSList *servers, *lookup_servers;
|
|
|
|
|
|
|
|
/* connection to server failed */
|
2000-09-27 19:47:51 -04:00
|
|
|
void server_connect_failed(SERVER_REC *server, const char *msg)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-08-26 11:39:44 -04:00
|
|
|
g_return_if_fail(IS_SERVER(server));
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
lookup_servers = g_slist_remove(lookup_servers, server);
|
|
|
|
|
|
|
|
signal_emit("server connect failed", 2, server, msg);
|
|
|
|
if (server->connect_tag != -1)
|
|
|
|
g_source_remove(server->connect_tag);
|
2000-07-31 16:40:24 -04:00
|
|
|
if (server->handle != NULL)
|
|
|
|
net_sendbuffer_destroy(server->handle, TRUE);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
if (server->connect_pipe[0] != NULL) {
|
|
|
|
g_io_channel_close(server->connect_pipe[0]);
|
|
|
|
g_io_channel_unref(server->connect_pipe[0]);
|
|
|
|
g_io_channel_close(server->connect_pipe[1]);
|
|
|
|
g_io_channel_unref(server->connect_pipe[1]);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_DATA_DEINIT(server);
|
2000-08-26 11:39:44 -04:00
|
|
|
server_connect_free(server->connrec);
|
2000-07-31 16:40:24 -04:00
|
|
|
g_free_not_null(server->nick);
|
2000-04-26 04:03:38 -04:00
|
|
|
g_free(server->tag);
|
|
|
|
g_free(server);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* generate tag from server's address */
|
|
|
|
static char *server_create_address_tag(const char *address)
|
|
|
|
{
|
|
|
|
const char *start, *end;
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
g_return_val_if_fail(address != NULL, NULL);
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
/* try to generate a reasonable server tag */
|
2000-05-04 06:32:42 -04:00
|
|
|
if (strchr(address, '.') == NULL) {
|
|
|
|
start = end = NULL;
|
|
|
|
} else if (g_strncasecmp(address, "irc", 3) == 0 ||
|
2000-04-26 04:03:38 -04:00
|
|
|
g_strncasecmp(address, "chat", 4) == 0) {
|
|
|
|
/* irc-2.cs.hut.fi -> hut, chat.bt.net -> bt */
|
|
|
|
end = strrchr(address, '.');
|
|
|
|
start = end-1;
|
|
|
|
while (start > address && *start != '.') start--;
|
|
|
|
} else {
|
|
|
|
/* efnet.cs.hut.fi -> efnet */
|
|
|
|
end = strchr(address, '.');
|
|
|
|
start = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (start == end) start = address; else start++;
|
|
|
|
if (end == NULL) end = address + strlen(address);
|
|
|
|
|
|
|
|
return g_strndup(start, (int) (end-start));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create unique tag for server. prefer ircnet's name or
|
|
|
|
generate it from server's address */
|
|
|
|
static char *server_create_tag(SERVER_CONNECT_REC *conn)
|
|
|
|
{
|
|
|
|
GString *str;
|
|
|
|
char *tag;
|
|
|
|
int num;
|
|
|
|
|
2001-06-08 17:19:08 -04:00
|
|
|
g_return_val_if_fail(IS_SERVER_CONNECT(conn), NULL);
|
2000-08-26 11:39:44 -04:00
|
|
|
|
2001-03-03 17:06:45 -05:00
|
|
|
tag = conn->chatnet != NULL && *conn->chatnet != '\0' ?
|
|
|
|
g_strdup(conn->chatnet) :
|
2000-04-26 04:03:38 -04:00
|
|
|
server_create_address_tag(conn->address);
|
|
|
|
|
2001-06-08 17:19:08 -04:00
|
|
|
if (conn->tag != NULL && server_find_tag(conn->tag) == NULL &&
|
|
|
|
strncmp(conn->tag, tag, strlen(tag)) == 0) {
|
|
|
|
/* use the existing tag if it begins with the same ID -
|
|
|
|
this is useful when you have several connections to
|
|
|
|
same server and you want to keep the same tags with
|
|
|
|
the servers (or it would cause problems when rejoining
|
|
|
|
/LAYOUT SAVEd channels). */
|
2001-10-14 10:14:54 -04:00
|
|
|
g_free(tag);
|
2001-06-08 17:19:08 -04:00
|
|
|
return g_strdup(conn->tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
/* then just append numbers after tag until unused is found.. */
|
|
|
|
str = g_string_new(tag);
|
|
|
|
for (num = 2; server_find_tag(str->str) != NULL; num++)
|
|
|
|
g_string_sprintf(str, "%s%d", tag, num);
|
|
|
|
g_free(tag);
|
|
|
|
|
|
|
|
tag = str->str;
|
|
|
|
g_string_free(str, FALSE);
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2000-09-27 19:47:51 -04:00
|
|
|
/* Connection to server finished, fill the rest of the fields */
|
|
|
|
void server_connect_finished(SERVER_REC *server)
|
|
|
|
{
|
|
|
|
server->connect_time = time(NULL);
|
|
|
|
server->rawlog = rawlog_create();
|
|
|
|
|
|
|
|
server->eventtable = g_hash_table_new((GHashFunc) g_istr_hash, (GCompareFunc) g_istr_equal);
|
|
|
|
server->eventgrouptable = g_hash_table_new((GHashFunc) g_direct_hash, (GCompareFunc) g_direct_equal);
|
|
|
|
server->cmdtable = g_hash_table_new((GHashFunc) g_istr_hash, (GCompareFunc) g_istr_equal);
|
|
|
|
|
|
|
|
servers = g_slist_append(servers, server);
|
|
|
|
signal_emit("server connected", 1, server);
|
|
|
|
}
|
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
static void server_connect_callback_init(SERVER_REC *server, GIOChannel *handle)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
g_return_if_fail(IS_SERVER(server));
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
error = net_geterror(handle);
|
|
|
|
if (error != 0) {
|
|
|
|
server->connection_lost = TRUE;
|
2000-09-27 19:47:51 -04:00
|
|
|
server_connect_failed(server, g_strerror(error));
|
2000-04-26 04:03:38 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lookup_servers = g_slist_remove(lookup_servers, server);
|
|
|
|
g_source_remove(server->connect_tag);
|
|
|
|
server->connect_tag = -1;
|
|
|
|
|
2000-09-27 19:47:51 -04:00
|
|
|
server_connect_finished(server);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-07-16 15:00:41 -04:00
|
|
|
static void server_connect_callback_readpipe(SERVER_REC *server)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
SERVER_CONNECT_REC *conn;
|
|
|
|
RESOLVED_IP_REC iprec;
|
2000-12-04 17:57:18 -05:00
|
|
|
GIOChannel *handle;
|
2001-03-03 20:47:13 -05:00
|
|
|
IPADDR *ip, *own_ip;
|
|
|
|
const char *errormsg;
|
|
|
|
int port;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
g_return_if_fail(IS_SERVER(server));
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
g_source_remove(server->connect_tag);
|
|
|
|
server->connect_tag = -1;
|
|
|
|
|
2000-07-16 15:00:41 -04:00
|
|
|
net_gethostbyname_return(server->connect_pipe[0], &iprec);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
g_io_channel_close(server->connect_pipe[0]);
|
|
|
|
g_io_channel_unref(server->connect_pipe[0]);
|
|
|
|
g_io_channel_close(server->connect_pipe[1]);
|
|
|
|
g_io_channel_unref(server->connect_pipe[1]);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
server->connect_pipe[0] = NULL;
|
|
|
|
server->connect_pipe[1] = NULL;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2001-03-03 20:47:13 -05:00
|
|
|
/* figure out if we should use IPv4 or v6 address */
|
|
|
|
ip = iprec.error != 0 ? NULL : iprec.ip6.family == 0 ||
|
2001-03-03 22:05:16 -05:00
|
|
|
(server->connrec->family == AF_INET && iprec.ip4.family != 0) ?
|
2001-03-03 20:47:13 -05:00
|
|
|
&iprec.ip4 : &iprec.ip6;
|
|
|
|
if (iprec.ip4.family != 0 && server->connrec->family == 0 &&
|
|
|
|
!settings_get_bool("resolve_prefer_ipv6"))
|
|
|
|
ip = &iprec.ip4;
|
|
|
|
|
|
|
|
conn = server->connrec;
|
|
|
|
port = conn->proxy != NULL ? conn->proxy_port : conn->port;
|
|
|
|
own_ip = ip == NULL ? NULL :
|
|
|
|
(IPADDR_IS_V6(ip) ? conn->own_ip6 : conn->own_ip4);
|
2001-02-20 11:23:28 -05:00
|
|
|
|
2001-03-03 20:47:13 -05:00
|
|
|
if (ip != NULL)
|
|
|
|
signal_emit("server connecting", 2, server, ip);
|
|
|
|
|
|
|
|
handle = ip == NULL ? NULL : net_connect_ip(ip, port, own_ip);
|
2000-12-04 17:57:18 -05:00
|
|
|
if (handle == NULL) {
|
2000-04-26 04:03:38 -04:00
|
|
|
/* failed */
|
2001-03-07 18:57:19 -05:00
|
|
|
if (iprec.error != 0 && net_hosterror_notfound(iprec.error)) {
|
|
|
|
/* IP wasn't found for the host, don't try to reconnect
|
|
|
|
back to this server */
|
|
|
|
server->dns_error = TRUE;
|
2000-05-25 09:09:22 -04:00
|
|
|
}
|
2000-07-16 16:18:05 -04:00
|
|
|
|
|
|
|
if (iprec.error == 0) {
|
|
|
|
/* connect() failed */
|
|
|
|
errormsg = g_strerror(errno);
|
|
|
|
} else {
|
|
|
|
/* gethostbyname() failed */
|
|
|
|
errormsg = iprec.errorstr != NULL ? iprec.errorstr :
|
|
|
|
"Host lookup failed";
|
|
|
|
}
|
2001-03-07 18:57:19 -05:00
|
|
|
server->connection_lost = TRUE;
|
2000-09-27 19:47:51 -04:00
|
|
|
server_connect_failed(server, errormsg);
|
2000-04-26 04:03:38 -04:00
|
|
|
g_free_not_null(iprec.errorstr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-07-16 15:00:41 -04:00
|
|
|
server->handle = net_sendbuffer_create(handle, 0);
|
2000-07-16 16:18:05 -04:00
|
|
|
server->connect_tag =
|
2000-11-23 18:29:32 -05:00
|
|
|
g_input_add(handle, G_INPUT_WRITE | G_INPUT_READ,
|
2000-07-16 16:18:05 -04:00
|
|
|
(GInputFunction) server_connect_callback_init,
|
|
|
|
server);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-09-27 19:47:51 -04:00
|
|
|
/* initializes server record but doesn't start connecting */
|
|
|
|
void server_connect_init(SERVER_REC *server)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-09-27 19:47:51 -04:00
|
|
|
g_return_if_fail(server != NULL);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
MODULE_DATA_INIT(server);
|
2000-08-26 11:39:44 -04:00
|
|
|
server->type = module_get_uniq_id("SERVER", 0);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-08-27 19:07:01 -04:00
|
|
|
server->nick = g_strdup(server->connrec->nick);
|
|
|
|
if (server->connrec->username == NULL || *server->connrec->username == '\0') {
|
|
|
|
g_free_not_null(server->connrec->username);
|
|
|
|
|
|
|
|
server->connrec->username = g_get_user_name();
|
|
|
|
if (*server->connrec->username == '\0') server->connrec->username = "-";
|
|
|
|
server->connrec->username = g_strdup(server->connrec->username);
|
|
|
|
}
|
|
|
|
if (server->connrec->realname == NULL || *server->connrec->realname == '\0') {
|
|
|
|
g_free_not_null(server->connrec->realname);
|
|
|
|
|
|
|
|
server->connrec->realname = g_get_real_name();
|
|
|
|
if (*server->connrec->realname == '\0') server->connrec->realname = "-";
|
|
|
|
server->connrec->realname = g_strdup(server->connrec->realname);
|
|
|
|
}
|
|
|
|
|
2000-09-27 19:47:51 -04:00
|
|
|
server->tag = server_create_tag(server->connrec);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* starts connecting to server */
|
|
|
|
int server_start_connect(SERVER_REC *server)
|
|
|
|
{
|
|
|
|
const char *connect_address;
|
2000-12-04 17:57:18 -05:00
|
|
|
int fd[2];
|
2000-09-27 19:47:51 -04:00
|
|
|
|
|
|
|
g_return_val_if_fail(server != NULL, FALSE);
|
|
|
|
if (server->connrec->port <= 0) return FALSE;
|
|
|
|
|
|
|
|
server_connect_init(server);
|
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
if (pipe(fd) != 0) {
|
2000-04-26 04:03:38 -04:00
|
|
|
g_warning("server_connect(): pipe() failed.");
|
2000-09-27 19:47:51 -04:00
|
|
|
g_free(server->tag);
|
2000-09-29 19:57:30 -04:00
|
|
|
g_free(server->nick);
|
2000-04-26 04:03:38 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-12-04 17:57:18 -05:00
|
|
|
server->connect_pipe[0] = g_io_channel_unix_new(fd[0]);
|
2001-02-09 16:26:50 -05:00
|
|
|
server->connect_pipe[1] = g_io_channel_unix_new(fd[1]);
|
|
|
|
|
2000-07-16 16:18:05 -04:00
|
|
|
connect_address = server->connrec->proxy != NULL ?
|
|
|
|
server->connrec->proxy : server->connrec->address;
|
2000-04-26 04:03:38 -04:00
|
|
|
server->connect_pid =
|
2000-07-16 16:18:05 -04:00
|
|
|
net_gethostbyname_nonblock(connect_address,
|
2001-03-03 20:47:13 -05:00
|
|
|
server->connect_pipe[1]);
|
2000-04-26 04:03:38 -04:00
|
|
|
server->connect_tag =
|
|
|
|
g_input_add(server->connect_pipe[0], G_INPUT_READ,
|
2000-08-20 03:17:13 -04:00
|
|
|
(GInputFunction) server_connect_callback_readpipe,
|
|
|
|
server);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
lookup_servers = g_slist_append(lookup_servers, server);
|
|
|
|
|
|
|
|
signal_emit("server looking", 1, server);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
static int server_remove_channels(SERVER_REC *server)
|
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
int found;
|
|
|
|
|
|
|
|
g_return_val_if_fail(server != NULL, FALSE);
|
|
|
|
|
|
|
|
found = FALSE;
|
|
|
|
for (tmp = server->channels; tmp != NULL; tmp = tmp->next) {
|
|
|
|
CHANNEL_REC *channel = tmp->data;
|
|
|
|
|
|
|
|
channel->server = NULL;
|
|
|
|
channel_destroy(channel);
|
|
|
|
found = TRUE;
|
|
|
|
}
|
|
|
|
|
2001-01-01 14:29:05 -05:00
|
|
|
while (server->queries != NULL)
|
|
|
|
query_change_server(server->queries->data, NULL);
|
2000-08-26 11:39:44 -04:00
|
|
|
|
|
|
|
g_slist_free(server->channels);
|
|
|
|
g_slist_free(server->queries);
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
void server_disconnect(SERVER_REC *server)
|
|
|
|
{
|
2000-08-26 11:39:44 -04:00
|
|
|
int chans;
|
|
|
|
|
|
|
|
g_return_if_fail(IS_SERVER(server));
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
if (server->connect_tag != -1) {
|
|
|
|
/* still connecting to server.. */
|
|
|
|
if (server->connect_pid != -1)
|
|
|
|
net_disconnect_nonblock(server->connect_pid);
|
2000-09-27 19:47:51 -04:00
|
|
|
server_connect_failed(server, NULL);
|
2000-04-26 04:03:38 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
servers = g_slist_remove(servers, server);
|
|
|
|
|
|
|
|
signal_emit("server disconnected", 1, server);
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
/* close all channels */
|
|
|
|
chans = server_remove_channels(server);
|
|
|
|
|
|
|
|
if (server->handle != NULL) {
|
|
|
|
if (!chans || server->connection_lost)
|
|
|
|
net_sendbuffer_destroy(server->handle, TRUE);
|
|
|
|
else {
|
|
|
|
/* we were on some channels, try to let the server
|
|
|
|
disconnect so that our quit message is guaranteed
|
|
|
|
to get displayed */
|
|
|
|
net_disconnect_later(net_sendbuffer_handle(server->handle));
|
|
|
|
net_sendbuffer_destroy(server->handle, FALSE);
|
|
|
|
}
|
|
|
|
server->handle = NULL;
|
|
|
|
}
|
|
|
|
|
2000-07-30 13:19:16 -04:00
|
|
|
if (server->readtag > 0)
|
|
|
|
g_source_remove(server->readtag);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
MODULE_DATA_DEINIT(server);
|
2000-08-26 11:39:44 -04:00
|
|
|
server_connect_free(server->connrec);
|
2000-04-26 04:03:38 -04:00
|
|
|
rawlog_destroy(server->rawlog);
|
|
|
|
line_split_free(server->buffer);
|
2000-07-31 16:40:24 -04:00
|
|
|
g_free_not_null(server->version);
|
|
|
|
g_free_not_null(server->away_reason);
|
2000-04-26 04:03:38 -04:00
|
|
|
g_free(server->nick);
|
2000-07-31 16:40:24 -04:00
|
|
|
g_free(server->tag);
|
2000-04-26 04:03:38 -04:00
|
|
|
g_free(server);
|
|
|
|
}
|
|
|
|
|
|
|
|
SERVER_REC *server_find_tag(const char *tag)
|
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
|
|
|
|
g_return_val_if_fail(tag != NULL, NULL);
|
|
|
|
if (*tag == '\0') return NULL;
|
|
|
|
|
|
|
|
for (tmp = servers; tmp != NULL; tmp = tmp->next) {
|
|
|
|
SERVER_REC *server = tmp->data;
|
|
|
|
|
2000-05-04 06:32:42 -04:00
|
|
|
if (g_strcasecmp(server->tag, tag) == 0)
|
2000-04-26 04:03:38 -04:00
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (tmp = lookup_servers; tmp != NULL; tmp = tmp->next) {
|
|
|
|
SERVER_REC *server = tmp->data;
|
|
|
|
|
2000-05-04 06:32:42 -04:00
|
|
|
if (g_strcasecmp(server->tag, tag) == 0)
|
2000-04-26 04:03:38 -04:00
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
SERVER_REC *server_find_chatnet(const char *chatnet)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
g_return_val_if_fail(chatnet != NULL, NULL);
|
|
|
|
if (*chatnet == '\0') return NULL;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
for (tmp = servers; tmp != NULL; tmp = tmp->next) {
|
|
|
|
SERVER_REC *server = tmp->data;
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
if (server->connrec->chatnet != NULL &&
|
|
|
|
g_strcasecmp(server->connrec->chatnet, chatnet) == 0)
|
2000-08-20 03:17:13 -04:00
|
|
|
return server;
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
void server_connect_free(SERVER_CONNECT_REC *conn)
|
|
|
|
{
|
|
|
|
g_return_if_fail(IS_SERVER_CONNECT(conn));
|
|
|
|
|
|
|
|
signal_emit("server connect free", 1, conn);
|
|
|
|
g_free_not_null(conn->proxy);
|
|
|
|
g_free_not_null(conn->proxy_string);
|
2001-03-20 18:24:45 -05:00
|
|
|
g_free_not_null(conn->proxy_password);
|
2000-08-26 11:39:44 -04:00
|
|
|
|
2001-06-08 17:19:08 -04:00
|
|
|
g_free_not_null(conn->tag);
|
2000-08-26 11:39:44 -04:00
|
|
|
g_free_not_null(conn->address);
|
|
|
|
g_free_not_null(conn->chatnet);
|
|
|
|
|
2001-03-03 20:47:13 -05:00
|
|
|
g_free_not_null(conn->own_ip4);
|
|
|
|
g_free_not_null(conn->own_ip6);
|
2000-08-26 11:39:44 -04:00
|
|
|
|
|
|
|
g_free_not_null(conn->password);
|
|
|
|
g_free_not_null(conn->nick);
|
|
|
|
g_free_not_null(conn->username);
|
|
|
|
g_free_not_null(conn->realname);
|
|
|
|
|
|
|
|
g_free_not_null(conn->channels);
|
|
|
|
g_free_not_null(conn->away_reason);
|
|
|
|
g_free(conn);
|
|
|
|
}
|
|
|
|
|
2001-03-04 05:30:41 -05:00
|
|
|
void server_change_nick(SERVER_REC *server, const char *nick)
|
|
|
|
{
|
|
|
|
g_free(server->connrec->nick);
|
|
|
|
g_free(server->nick);
|
|
|
|
server->connrec->nick = g_strdup(nick);
|
|
|
|
server->nick = g_strdup(nick);
|
|
|
|
|
|
|
|
signal_emit("server nick changed", 1, server);
|
|
|
|
}
|
|
|
|
|
2001-03-03 20:47:13 -05:00
|
|
|
/* Update own IPv4 and IPv6 records */
|
|
|
|
void server_connect_own_ip_save(SERVER_CONNECT_REC *conn,
|
|
|
|
IPADDR *ip4, IPADDR *ip6)
|
|
|
|
{
|
|
|
|
if (ip4 == NULL || ip4->family == 0)
|
|
|
|
g_free_and_null(conn->own_ip4);
|
|
|
|
if (ip6 == NULL || ip6->family == 0)
|
|
|
|
g_free_and_null(conn->own_ip6);
|
|
|
|
|
|
|
|
if (ip4 != NULL && ip4->family != 0) {
|
|
|
|
/* IPv4 address was found */
|
2001-03-15 15:48:57 -05:00
|
|
|
if (conn->own_ip4 == NULL)
|
2001-03-03 20:47:13 -05:00
|
|
|
conn->own_ip4 = g_new0(IPADDR, 1);
|
|
|
|
memcpy(conn->own_ip4, ip4, sizeof(IPADDR));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ip6 != NULL && ip6->family != 0) {
|
|
|
|
/* IPv6 address was found */
|
2001-03-15 15:48:57 -05:00
|
|
|
if (conn->own_ip6 == NULL)
|
2001-03-03 20:47:13 -05:00
|
|
|
conn->own_ip6 = g_new0(IPADDR, 1);
|
|
|
|
memcpy(conn->own_ip6, ip6, sizeof(IPADDR));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-29 16:56:25 -05:00
|
|
|
/* `optlist' should contain only one unknown key - the server tag.
|
2000-09-02 14:53:58 -04:00
|
|
|
returns NULL if there was unknown -option */
|
|
|
|
SERVER_REC *cmd_options_get_server(const char *cmd,
|
|
|
|
GHashTable *optlist,
|
|
|
|
SERVER_REC *defserver)
|
|
|
|
{
|
|
|
|
SERVER_REC *server;
|
|
|
|
GSList *list, *tmp, *next;
|
|
|
|
|
|
|
|
/* get all the options, then remove the known ones. there should
|
|
|
|
be only one left - the server tag. */
|
|
|
|
list = hashtable_get_keys(optlist);
|
2000-11-30 17:58:45 -05:00
|
|
|
if (cmd != NULL) {
|
|
|
|
for (tmp = list; tmp != NULL; tmp = next) {
|
|
|
|
char *option = tmp->data;
|
|
|
|
next = tmp->next;
|
2000-09-02 14:53:58 -04:00
|
|
|
|
2000-11-30 17:58:45 -05:00
|
|
|
if (command_have_option(cmd, option))
|
|
|
|
list = g_slist_remove(list, option);
|
|
|
|
}
|
2000-09-02 14:53:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (list == NULL)
|
|
|
|
return defserver;
|
|
|
|
|
|
|
|
server = server_find_tag(list->data);
|
|
|
|
if (server == NULL || list->next != NULL) {
|
|
|
|
/* unknown option (not server tag) */
|
|
|
|
signal_emit("error command", 2,
|
|
|
|
GINT_TO_POINTER(CMDERR_OPTION_UNKNOWN),
|
|
|
|
server == NULL ? list->data : list->next->data);
|
|
|
|
signal_stop();
|
|
|
|
|
|
|
|
server = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free(list);
|
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
2001-03-03 22:25:21 -05:00
|
|
|
static void disconnect_servers(GSList *servers, int chat_type)
|
|
|
|
{
|
|
|
|
GSList *tmp, *next;
|
|
|
|
|
|
|
|
for (tmp = servers; tmp != NULL; tmp = next) {
|
|
|
|
SERVER_REC *rec = tmp->data;
|
|
|
|
|
|
|
|
next = tmp->next;
|
|
|
|
if (rec->chat_type == chat_type)
|
|
|
|
server_disconnect(rec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sig_chat_protocol_deinit(CHAT_PROTOCOL_REC *proto)
|
|
|
|
{
|
|
|
|
disconnect_servers(servers, proto->id);
|
|
|
|
disconnect_servers(lookup_servers, proto->id);
|
|
|
|
}
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
void servers_init(void)
|
|
|
|
{
|
2001-03-03 20:47:13 -05:00
|
|
|
settings_add_bool("server", "resolve_prefer_ipv6", FALSE);
|
2000-04-26 04:03:38 -04:00
|
|
|
lookup_servers = servers = NULL;
|
|
|
|
|
2001-03-03 22:25:21 -05:00
|
|
|
signal_add("chat protocol deinit", (SIGNAL_FUNC) sig_chat_protocol_deinit);
|
|
|
|
|
2000-09-02 14:53:58 -04:00
|
|
|
servers_reconnect_init();
|
2000-04-26 04:03:38 -04:00
|
|
|
servers_redirect_init();
|
2000-08-26 11:39:44 -04:00
|
|
|
servers_setup_init();
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void servers_deinit(void)
|
|
|
|
{
|
2001-03-03 22:25:21 -05:00
|
|
|
signal_remove("chat protocol deinit", (SIGNAL_FUNC) sig_chat_protocol_deinit);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
servers_setup_deinit();
|
2000-04-26 04:03:38 -04:00
|
|
|
servers_redirect_deinit();
|
2000-09-02 14:53:58 -04:00
|
|
|
servers_reconnect_deinit();
|
2000-08-26 11:39:44 -04:00
|
|
|
|
|
|
|
module_uniq_destroy("SERVER");
|
|
|
|
module_uniq_destroy("SERVER CONNECT");
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|