2011-02-23 22:14:30 -05:00
|
|
|
/* X-Chat
|
|
|
|
* Copyright (C) 1998 Peter Zelezny.
|
|
|
|
*
|
|
|
|
* 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
|
2012-12-23 14:36:54 -05:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2011-02-23 22:14:30 -05:00
|
|
|
*
|
|
|
|
* MS Proxy (ISA server) support is (c) 2006 Pavel Fedin <sonic_amiga@rambler.ru>
|
|
|
|
* based on Dante source code
|
|
|
|
* Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
|
|
|
* Inferno Nettverk A/S, Norway. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#define WANTSOCKET
|
|
|
|
#define WANTARPA
|
|
|
|
#include "inet.h"
|
|
|
|
|
2012-07-21 08:26:19 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <io.h>
|
|
|
|
#else
|
2011-02-23 22:14:30 -05:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/wait.h>
|
2011-12-11 11:34:02 -05:00
|
|
|
#include <unistd.h>
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "hexchat.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
#include "fe.h"
|
|
|
|
#include "cfgfiles.h"
|
|
|
|
#include "network.h"
|
|
|
|
#include "notify.h"
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "hexchatc.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
#include "inbound.h"
|
|
|
|
#include "outbound.h"
|
|
|
|
#include "text.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "url.h"
|
|
|
|
#include "proto-irc.h"
|
|
|
|
#include "servlist.h"
|
|
|
|
#include "server.h"
|
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
#include <openssl/ssl.h> /* SSL_() */
|
|
|
|
#include <openssl/err.h> /* ERR_() */
|
|
|
|
#include "ssl.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_LIBPROXY
|
|
|
|
#include <proxy.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
/* local variables */
|
|
|
|
static struct session *g_sess = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static GSList *away_list = NULL;
|
|
|
|
GSList *serv_list = NULL;
|
|
|
|
|
|
|
|
static void auto_reconnect (server *serv, int send_quit, int err);
|
|
|
|
static void server_disconnect (session * sess, int sendquit, int err);
|
|
|
|
static int server_cleanup (server * serv);
|
|
|
|
static void server_connect (server *serv, char *hostname, int port, int no_login);
|
|
|
|
|
|
|
|
#ifdef USE_LIBPROXY
|
|
|
|
extern pxProxyFactory *libproxy_factory;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* actually send to the socket. This might do a character translation or
|
|
|
|
send via SSL. server/dcc both use this function. */
|
|
|
|
|
|
|
|
int
|
2015-01-31 03:52:31 -05:00
|
|
|
tcp_send_real (void *ssl, int sok, GIConv write_converter, char *buf, int len)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2015-01-18 05:10:04 -05:00
|
|
|
gsize buf_encoded_len;
|
2015-01-31 03:52:31 -05:00
|
|
|
gchar *buf_encoded = text_convert_invalid (buf, len, write_converter, "?", &buf_encoded_len);
|
2011-02-23 22:14:30 -05:00
|
|
|
#ifdef USE_OPENSSL
|
2015-01-18 05:10:04 -05:00
|
|
|
if (!ssl)
|
|
|
|
ret = send (sok, buf_encoded, buf_encoded_len, 0);
|
|
|
|
else
|
|
|
|
ret = _SSL_send (ssl, buf_encoded, buf_encoded_len);
|
2011-02-23 22:14:30 -05:00
|
|
|
#else
|
2015-01-18 05:10:04 -05:00
|
|
|
ret = send (sok, buf_encoded, buf_encoded_len, 0);
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
2015-01-18 05:10:04 -05:00
|
|
|
g_free (buf_encoded);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
server_send_real (server *serv, char *buf, int len)
|
|
|
|
{
|
|
|
|
fe_add_rawlog (serv, buf, len, TRUE);
|
|
|
|
|
2014-12-15 13:25:28 -05:00
|
|
|
url_check_line (buf);
|
2012-11-13 15:06:35 -05:00
|
|
|
|
2015-01-31 03:52:31 -05:00
|
|
|
return tcp_send_real (serv->ssl, serv->sok, serv->write_converter, buf, len);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* new throttling system, uses the same method as the Undernet
|
|
|
|
ircu2.10 server; under test, a 200-line paste didn't flood
|
|
|
|
off the client */
|
|
|
|
|
|
|
|
static int
|
|
|
|
tcp_send_queue (server *serv)
|
|
|
|
{
|
|
|
|
char *buf, *p;
|
|
|
|
int len, i, pri;
|
|
|
|
GSList *list;
|
|
|
|
time_t now = time (0);
|
|
|
|
|
|
|
|
/* did the server close since the timeout was added? */
|
|
|
|
if (!is_server (serv))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* try priority 2,1,0 */
|
|
|
|
pri = 2;
|
|
|
|
while (pri >= 0)
|
|
|
|
{
|
|
|
|
list = serv->outbound_queue;
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
buf = (char *) list->data;
|
|
|
|
if (buf[0] == pri)
|
|
|
|
{
|
|
|
|
buf++; /* skip the priority byte */
|
|
|
|
len = strlen (buf);
|
|
|
|
|
|
|
|
if (serv->next_send < now)
|
|
|
|
serv->next_send = now;
|
|
|
|
if (serv->next_send - now >= 10)
|
|
|
|
{
|
|
|
|
/* check for clock skew */
|
|
|
|
if (now >= serv->prev_now)
|
|
|
|
return 1; /* don't remove the timeout handler */
|
|
|
|
/* it is skewed, reset to something sane */
|
|
|
|
serv->next_send = now;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (p = buf, i = len; i && *p != ' '; p++, i--);
|
|
|
|
serv->next_send += (2 + i / 120);
|
|
|
|
serv->sendq_len -= len;
|
|
|
|
serv->prev_now = now;
|
|
|
|
fe_set_throttle (serv);
|
|
|
|
|
|
|
|
server_send_real (serv, buf, len);
|
|
|
|
|
|
|
|
buf--;
|
|
|
|
serv->outbound_queue = g_slist_remove (serv->outbound_queue, buf);
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (buf);
|
2011-02-23 22:14:30 -05:00
|
|
|
list = serv->outbound_queue;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* now try pri 0 */
|
|
|
|
pri--;
|
|
|
|
}
|
|
|
|
return 0; /* remove the timeout handler */
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcp_send_len (server *serv, char *buf, int len)
|
|
|
|
{
|
|
|
|
char *dbuf;
|
|
|
|
int noqueue = !serv->outbound_queue;
|
|
|
|
|
2012-10-22 09:55:43 -04:00
|
|
|
if (!prefs.hex_net_throttle)
|
2011-02-23 22:14:30 -05:00
|
|
|
return server_send_real (serv, buf, len);
|
|
|
|
|
2014-12-28 06:37:25 -05:00
|
|
|
dbuf = g_malloc (len + 2); /* first byte is the priority */
|
2011-02-23 22:14:30 -05:00
|
|
|
dbuf[0] = 2; /* pri 2 for most things */
|
|
|
|
memcpy (dbuf + 1, buf, len);
|
|
|
|
dbuf[len + 1] = 0;
|
|
|
|
|
|
|
|
/* privmsg and notice get a lower priority */
|
2012-06-16 07:01:47 -04:00
|
|
|
if (g_ascii_strncasecmp (dbuf + 1, "PRIVMSG", 7) == 0 ||
|
|
|
|
g_ascii_strncasecmp (dbuf + 1, "NOTICE", 6) == 0)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
dbuf[0] = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* WHO/MODE get the lowest priority */
|
2012-06-16 07:01:47 -04:00
|
|
|
if (g_ascii_strncasecmp (dbuf + 1, "WHO ", 4) == 0 ||
|
2011-02-23 22:14:30 -05:00
|
|
|
/* but only MODE queries, not changes */
|
2012-06-16 07:01:47 -04:00
|
|
|
(g_ascii_strncasecmp (dbuf + 1, "MODE", 4) == 0 &&
|
2011-02-23 22:14:30 -05:00
|
|
|
strchr (dbuf, '-') == NULL &&
|
|
|
|
strchr (dbuf, '+') == NULL))
|
|
|
|
dbuf[0] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
serv->outbound_queue = g_slist_append (serv->outbound_queue, dbuf);
|
|
|
|
serv->sendq_len += len; /* tcp_send_queue uses strlen */
|
|
|
|
|
|
|
|
if (tcp_send_queue (serv) && noqueue)
|
|
|
|
fe_timeout_add (500, tcp_send_queue, serv);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-07-17 21:25:41 -04:00
|
|
|
tcp_sendf (server *serv, const char *fmt, ...)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
/* keep this buffer in BSS. Converting UTF-8 to ISO-8859-x might make the
|
|
|
|
string shorter, so allow alot more than 512 for now. */
|
|
|
|
static char send_buf[1540]; /* good code hey (no it's not overflowable) */
|
|
|
|
int len;
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
2014-12-17 18:49:59 -05:00
|
|
|
len = g_vsnprintf (send_buf, sizeof (send_buf) - 1, fmt, args);
|
2011-02-23 22:14:30 -05:00
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
send_buf[sizeof (send_buf) - 1] = '\0';
|
|
|
|
if (len < 0 || len > (sizeof (send_buf) - 1))
|
|
|
|
len = strlen (send_buf);
|
|
|
|
|
|
|
|
tcp_send_len (serv, send_buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
close_socket_cb (gpointer sok)
|
|
|
|
{
|
|
|
|
closesocket (GPOINTER_TO_INT (sok));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
close_socket (int sok)
|
|
|
|
{
|
|
|
|
/* close the socket in 5 seconds so the QUIT message is not lost */
|
|
|
|
fe_timeout_add (5000, close_socket_cb, GINT_TO_POINTER (sok));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* handle 1 line of text received from the server */
|
|
|
|
|
|
|
|
static void
|
2014-12-15 13:25:28 -05:00
|
|
|
server_inline (server *serv, char *line, gssize len)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
2015-01-18 05:10:04 -05:00
|
|
|
gsize len_utf8;
|
2015-01-31 03:52:31 -05:00
|
|
|
line = text_convert_invalid (line, len, serv->read_converter, unicode_fallback_string, &len_utf8);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2015-01-18 05:10:04 -05:00
|
|
|
fe_add_rawlog (serv, line, len_utf8, FALSE);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
/* let proto-irc.c handle it */
|
2015-01-18 05:10:04 -05:00
|
|
|
serv->p_inline (serv, line, len_utf8);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2015-01-18 05:10:04 -05:00
|
|
|
g_free (line);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* read data from socket */
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
server_read (GIOChannel *source, GIOCondition condition, server *serv)
|
|
|
|
{
|
|
|
|
int sok = serv->sok;
|
|
|
|
int error, i, len;
|
|
|
|
char lbuf[2050];
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
if (!serv->ssl)
|
|
|
|
#endif
|
|
|
|
len = recv (sok, lbuf, sizeof (lbuf) - 2, 0);
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
else
|
|
|
|
len = _SSL_recv (serv->ssl, lbuf, sizeof (lbuf) - 2);
|
|
|
|
#endif
|
|
|
|
if (len < 1)
|
|
|
|
{
|
|
|
|
error = 0;
|
|
|
|
if (len < 0)
|
|
|
|
{
|
|
|
|
if (would_block ())
|
|
|
|
return TRUE;
|
|
|
|
error = sock_error ();
|
|
|
|
}
|
|
|
|
if (!serv->end_of_motd)
|
|
|
|
{
|
|
|
|
server_disconnect (serv->server_session, FALSE, error);
|
|
|
|
if (!servlist_cycle (serv))
|
|
|
|
{
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_auto_reconnect)
|
2011-02-23 22:14:30 -05:00
|
|
|
auto_reconnect (serv, FALSE, error);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_auto_reconnect)
|
2011-02-23 22:14:30 -05:00
|
|
|
auto_reconnect (serv, FALSE, error);
|
|
|
|
else
|
|
|
|
server_disconnect (serv->server_session, FALSE, error);
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
lbuf[len] = 0;
|
|
|
|
|
|
|
|
while (i < len)
|
|
|
|
{
|
|
|
|
switch (lbuf[i])
|
|
|
|
{
|
|
|
|
case '\r':
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\n':
|
|
|
|
serv->linebuf[serv->pos] = 0;
|
|
|
|
server_inline (serv, serv->linebuf, serv->pos);
|
|
|
|
serv->pos = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
serv->linebuf[serv->pos] = lbuf[i];
|
|
|
|
if (serv->pos >= (sizeof (serv->linebuf) - 1))
|
|
|
|
fprintf (stderr,
|
2012-10-14 21:29:13 -04:00
|
|
|
"*** HEXCHAT WARNING: Buffer overflow - shit server!\n");
|
2011-02-23 22:14:30 -05:00
|
|
|
else
|
|
|
|
serv->pos++;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_connected (server * serv)
|
|
|
|
{
|
|
|
|
prefs.wait_on_exit = TRUE;
|
|
|
|
serv->ping_recv = time (0);
|
2013-05-16 10:11:52 -04:00
|
|
|
serv->lag_sent = 0;
|
2011-02-23 22:14:30 -05:00
|
|
|
serv->connected = TRUE;
|
|
|
|
set_nonblocking (serv->sok);
|
|
|
|
serv->iotag = fe_input_add (serv->sok, FIA_READ|FIA_EX, server_read, serv);
|
|
|
|
if (!serv->no_login)
|
|
|
|
{
|
|
|
|
EMIT_SIGNAL (XP_TE_CONNECTED, serv->server_session, NULL, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
if (serv->network)
|
|
|
|
{
|
|
|
|
serv->p_login (serv,
|
|
|
|
(!(((ircnet *)serv->network)->flags & FLAG_USE_GLOBAL) &&
|
|
|
|
(((ircnet *)serv->network)->user)) ?
|
|
|
|
(((ircnet *)serv->network)->user) :
|
2012-10-22 08:50:36 -04:00
|
|
|
prefs.hex_irc_user_name,
|
2011-02-23 22:14:30 -05:00
|
|
|
(!(((ircnet *)serv->network)->flags & FLAG_USE_GLOBAL) &&
|
|
|
|
(((ircnet *)serv->network)->real)) ?
|
|
|
|
(((ircnet *)serv->network)->real) :
|
2012-10-22 08:50:36 -04:00
|
|
|
prefs.hex_irc_real_name);
|
2011-02-23 22:14:30 -05:00
|
|
|
} else
|
|
|
|
{
|
2012-10-22 08:50:36 -04:00
|
|
|
serv->p_login (serv, prefs.hex_irc_user_name, prefs.hex_irc_real_name);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
EMIT_SIGNAL (XP_TE_SERVERCONNECTED, serv->server_session, NULL, NULL,
|
|
|
|
NULL, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
server_set_name (serv, serv->servername);
|
|
|
|
fe_server_event (serv, FE_SE_CONNECT, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
server_close_pipe (int *pipefd) /* see comments below */
|
|
|
|
{
|
|
|
|
close (pipefd[0]); /* close WRITE end first to cause an EOF on READ */
|
|
|
|
close (pipefd[1]); /* in giowin32, and end that thread. */
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (pipefd);
|
2011-02-23 22:14:30 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_stopconnecting (server * serv)
|
|
|
|
{
|
|
|
|
if (serv->iotag)
|
|
|
|
{
|
|
|
|
fe_input_remove (serv->iotag);
|
|
|
|
serv->iotag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (serv->joindelay_tag)
|
|
|
|
{
|
|
|
|
fe_timeout_remove (serv->joindelay_tag);
|
|
|
|
serv->joindelay_tag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
/* kill the child process trying to connect */
|
|
|
|
kill (serv->childpid, SIGKILL);
|
|
|
|
waitpid (serv->childpid, NULL, 0);
|
|
|
|
|
|
|
|
close (serv->childwrite);
|
|
|
|
close (serv->childread);
|
|
|
|
#else
|
|
|
|
PostThreadMessage (serv->childpid, WM_QUIT, 0, 0);
|
|
|
|
|
|
|
|
{
|
|
|
|
/* if we close the pipe now, giowin32 will crash. */
|
2014-12-28 06:37:25 -05:00
|
|
|
int *pipefd = g_new (int, 2);
|
2011-02-23 22:14:30 -05:00
|
|
|
pipefd[0] = serv->childwrite;
|
|
|
|
pipefd[1] = serv->childread;
|
|
|
|
g_idle_add ((GSourceFunc)server_close_pipe, pipefd);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
if (serv->ssl_do_connect_tag)
|
|
|
|
{
|
|
|
|
fe_timeout_remove (serv->ssl_do_connect_tag);
|
|
|
|
serv->ssl_do_connect_tag = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fe_progressbar_end (serv);
|
|
|
|
|
|
|
|
serv->connecting = FALSE;
|
|
|
|
fe_server_event (serv, FE_SE_DISCONNECT, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
#define SSLTMOUT 90 /* seconds */
|
|
|
|
static void
|
|
|
|
ssl_cb_info (SSL * s, int where, int ret)
|
|
|
|
{
|
|
|
|
/* char buf[128];*/
|
|
|
|
|
|
|
|
|
|
|
|
return; /* FIXME: make debug level adjustable in serverlist or settings */
|
|
|
|
|
2014-12-17 18:49:59 -05:00
|
|
|
/* g_snprintf (buf, sizeof (buf), "%s (%d)", SSL_state_string_long (s), where);
|
2011-02-23 22:14:30 -05:00
|
|
|
if (g_sess)
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, g_sess, buf, NULL, NULL, NULL, 0);
|
|
|
|
else
|
|
|
|
fprintf (stderr, "%s\n", buf);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ssl_cb_verify (int ok, X509_STORE_CTX * ctx)
|
|
|
|
{
|
|
|
|
char subject[256];
|
|
|
|
char issuer[256];
|
|
|
|
char buf[512];
|
|
|
|
|
|
|
|
|
|
|
|
X509_NAME_oneline (X509_get_subject_name (ctx->current_cert), subject,
|
|
|
|
sizeof (subject));
|
|
|
|
X509_NAME_oneline (X509_get_issuer_name (ctx->current_cert), issuer,
|
|
|
|
sizeof (issuer));
|
|
|
|
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "* Subject: %s", subject);
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, g_sess, buf, NULL, NULL, NULL, 0);
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "* Issuer: %s", issuer);
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, g_sess, buf, NULL, NULL, NULL, 0);
|
|
|
|
|
|
|
|
return (TRUE); /* always ok */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ssl_do_connect (server * serv)
|
|
|
|
{
|
|
|
|
char buf[128];
|
|
|
|
|
|
|
|
g_sess = serv->server_session;
|
|
|
|
if (SSL_connect (serv->ssl) <= 0)
|
|
|
|
{
|
|
|
|
char err_buf[128];
|
|
|
|
int err;
|
|
|
|
|
|
|
|
g_sess = NULL;
|
|
|
|
if ((err = ERR_get_error ()) > 0)
|
|
|
|
{
|
|
|
|
ERR_error_string (err, err_buf);
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "(%d) %s", err, err_buf);
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_CONNFAIL, serv->server_session, buf, NULL,
|
|
|
|
NULL, NULL, 0);
|
|
|
|
|
|
|
|
if (ERR_GET_REASON (err) == SSL_R_WRONG_VERSION_NUMBER)
|
|
|
|
PrintText (serv->server_session, _("Are you sure this is a SSL capable server and port?\n"));
|
|
|
|
|
|
|
|
server_cleanup (serv);
|
|
|
|
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_auto_reconnectonfail)
|
2011-02-23 22:14:30 -05:00
|
|
|
auto_reconnect (serv, FALSE, -1);
|
|
|
|
|
|
|
|
return (0); /* remove it (0) */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_sess = NULL;
|
|
|
|
|
|
|
|
if (SSL_is_init_finished (serv->ssl))
|
|
|
|
{
|
|
|
|
struct cert_info cert_info;
|
|
|
|
struct chiper_info *chiper_info;
|
|
|
|
int verify_error;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!_SSL_get_cert_info (&cert_info, serv->ssl))
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "* Certification info:");
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " Subject:");
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
for (i = 0; cert_info.subject_word[i]; i++)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " %s", cert_info.subject_word[i]);
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " Issuer:");
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
for (i = 0; cert_info.issuer_word[i]; i++)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " %s", cert_info.issuer_word[i]);
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " Public key algorithm: %s (%d bits)",
|
2011-02-23 22:14:30 -05:00
|
|
|
cert_info.algorithm, cert_info.algorithm_bits);
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
/*if (cert_info.rsa_tmp_bits)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf),
|
2011-02-23 22:14:30 -05:00
|
|
|
" Public key algorithm uses ephemeral key with %d bits",
|
|
|
|
cert_info.rsa_tmp_bits);
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
}*/
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " Sign algorithm %s",
|
2011-02-23 22:14:30 -05:00
|
|
|
cert_info.sign_algorithm/*, cert_info.sign_algorithm_bits*/);
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " Valid since %s to %s",
|
2011-02-23 22:14:30 -05:00
|
|
|
cert_info.notbefore, cert_info.notafter);
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
} else
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " * No Certificate");
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
chiper_info = _SSL_get_cipher_info (serv->ssl); /* static buffer */
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "* Cipher info:");
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL, NULL,
|
|
|
|
0);
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), " Version: %s, cipher %s (%u bits)",
|
2011-02-23 22:14:30 -05:00
|
|
|
chiper_info->version, chiper_info->chiper,
|
|
|
|
chiper_info->chiper_bits);
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL, NULL,
|
|
|
|
0);
|
|
|
|
|
|
|
|
verify_error = SSL_get_verify_result (serv->ssl);
|
|
|
|
switch (verify_error)
|
|
|
|
{
|
|
|
|
case X509_V_OK:
|
2014-11-19 21:43:01 -05:00
|
|
|
{
|
|
|
|
X509 *cert = SSL_get_peer_certificate (serv->ssl);
|
|
|
|
int hostname_err;
|
|
|
|
if ((hostname_err = _SSL_check_hostname(cert, serv->hostname)) != 0)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "* Verify E: Failed to validate hostname? (%d)%s",
|
2014-11-19 21:43:01 -05:00
|
|
|
hostname_err, serv->accept_invalid_cert ? " -- Ignored" : "");
|
|
|
|
if (serv->accept_invalid_cert)
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL, NULL, 0);
|
|
|
|
else
|
|
|
|
goto conn_fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-12-17 18:49:59 -05:00
|
|
|
/* g_snprintf (buf, sizeof (buf), "* Verify OK (?)"); */
|
2011-02-23 22:14:30 -05:00
|
|
|
/* EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL, NULL, 0); */
|
|
|
|
case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
|
|
|
|
case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE:
|
|
|
|
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
|
|
|
|
case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
|
|
|
|
case X509_V_ERR_CERT_HAS_EXPIRED:
|
|
|
|
if (serv->accept_invalid_cert)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "* Verify E: %s.? (%d) -- Ignored",
|
2011-02-23 22:14:30 -05:00
|
|
|
X509_verify_cert_error_string (verify_error),
|
|
|
|
verify_error);
|
|
|
|
EMIT_SIGNAL (XP_TE_SSLMESSAGE, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "%s.? (%d)",
|
2011-02-23 22:14:30 -05:00
|
|
|
X509_verify_cert_error_string (verify_error),
|
|
|
|
verify_error);
|
2014-11-19 21:43:01 -05:00
|
|
|
conn_fail:
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_CONNFAIL, serv->server_session, buf, NULL, NULL,
|
|
|
|
NULL, 0);
|
|
|
|
|
|
|
|
server_cleanup (serv);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
server_stopconnecting (serv);
|
|
|
|
|
|
|
|
/* activate gtk poll */
|
|
|
|
server_connected (serv);
|
|
|
|
|
|
|
|
return (0); /* remove it (0) */
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
if (serv->ssl->session && serv->ssl->session->time + SSLTMOUT < time (NULL))
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "SSL handshake timed out");
|
2011-02-23 22:14:30 -05:00
|
|
|
EMIT_SIGNAL (XP_TE_CONNFAIL, serv->server_session, buf, NULL,
|
|
|
|
NULL, NULL, 0);
|
|
|
|
server_cleanup (serv); /* ->connecting = FALSE */
|
|
|
|
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_auto_reconnectonfail)
|
2011-02-23 22:14:30 -05:00
|
|
|
auto_reconnect (serv, FALSE, -1);
|
|
|
|
|
|
|
|
return (0); /* remove it (0) */
|
|
|
|
}
|
|
|
|
|
|
|
|
return (1); /* call it more (1) */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int
|
|
|
|
timeout_auto_reconnect (server *serv)
|
|
|
|
{
|
|
|
|
if (is_server (serv)) /* make sure it hasnt been closed during the delay */
|
|
|
|
{
|
|
|
|
serv->recondelay_tag = 0;
|
|
|
|
if (!serv->connected && !serv->connecting && serv->server_session)
|
|
|
|
{
|
|
|
|
server_connect (serv, serv->hostname, serv->port, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0; /* returning 0 should remove the timeout handler */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
auto_reconnect (server *serv, int send_quit, int err)
|
|
|
|
{
|
|
|
|
session *s;
|
|
|
|
GSList *list;
|
|
|
|
int del;
|
|
|
|
|
|
|
|
if (serv->server_session == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
list = sess_list;
|
|
|
|
while (list) /* make sure auto rejoin can work */
|
|
|
|
{
|
|
|
|
s = list->data;
|
|
|
|
if (s->type == SESS_CHANNEL && s->channel[0])
|
|
|
|
{
|
|
|
|
strcpy (s->waitchannel, s->channel);
|
|
|
|
strcpy (s->willjoinchannel, s->channel);
|
|
|
|
}
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (serv->connected)
|
|
|
|
server_disconnect (serv->server_session, send_quit, err);
|
|
|
|
|
2012-10-22 09:55:43 -04:00
|
|
|
del = prefs.hex_net_reconnect_delay * 1000;
|
2011-02-23 22:14:30 -05:00
|
|
|
if (del < 1000)
|
|
|
|
del = 500; /* so it doesn't block the gui */
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
if (err == -1 || err == 0 || err == ECONNRESET || err == ETIMEDOUT)
|
|
|
|
#else
|
|
|
|
if (err == -1 || err == 0 || err == WSAECONNRESET || err == WSAETIMEDOUT)
|
|
|
|
#endif
|
|
|
|
serv->reconnect_away = serv->is_away;
|
|
|
|
|
|
|
|
/* is this server in a reconnect delay? remove it! */
|
|
|
|
if (serv->recondelay_tag)
|
|
|
|
{
|
|
|
|
fe_timeout_remove (serv->recondelay_tag);
|
|
|
|
serv->recondelay_tag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
serv->recondelay_tag = fe_timeout_add (del, timeout_auto_reconnect, serv);
|
|
|
|
fe_server_event (serv, FE_SE_RECONDELAY, del);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_flush_queue (server *serv)
|
|
|
|
{
|
|
|
|
list_free (&serv->outbound_queue);
|
|
|
|
serv->sendq_len = 0;
|
|
|
|
fe_set_throttle (serv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* connect() successed */
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_connect_success (server *serv)
|
|
|
|
{
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
#define SSLDOCONNTMOUT 300
|
|
|
|
if (serv->use_ssl)
|
|
|
|
{
|
|
|
|
char *err;
|
|
|
|
|
|
|
|
/* it'll be a memory leak, if connection isn't terminated by
|
|
|
|
server_cleanup() */
|
2014-10-22 05:24:29 -04:00
|
|
|
serv->ssl = _SSL_socket (serv->ctx, serv->sok);
|
|
|
|
if ((err = _SSL_set_verify (serv->ctx, ssl_cb_verify, NULL)))
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
EMIT_SIGNAL (XP_TE_CONNFAIL, serv->server_session, err, NULL,
|
|
|
|
NULL, NULL, 0);
|
|
|
|
server_cleanup (serv); /* ->connecting = FALSE */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* FIXME: it'll be needed by new servers */
|
|
|
|
/* send(serv->sok, "STLS\r\n", 6, 0); sleep(1); */
|
|
|
|
set_nonblocking (serv->sok);
|
|
|
|
serv->ssl_do_connect_tag = fe_timeout_add (SSLDOCONNTMOUT,
|
|
|
|
ssl_do_connect, serv);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
serv->ssl = NULL;
|
|
|
|
#endif
|
|
|
|
server_stopconnecting (serv); /* ->connecting = FALSE */
|
|
|
|
/* activate glib poll */
|
|
|
|
server_connected (serv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* receive info from the child-process about connection progress */
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
server_read_child (GIOChannel *source, GIOCondition condition, server *serv)
|
|
|
|
{
|
|
|
|
session *sess = serv->server_session;
|
|
|
|
char tbuf[128];
|
|
|
|
char outbuf[512];
|
|
|
|
char host[100];
|
|
|
|
char ip[100];
|
|
|
|
|
|
|
|
waitline2 (source, tbuf, sizeof tbuf);
|
|
|
|
|
|
|
|
switch (tbuf[0])
|
|
|
|
{
|
|
|
|
case '0': /* print some text */
|
|
|
|
waitline2 (source, tbuf, sizeof tbuf);
|
|
|
|
PrintText (serv->server_session, tbuf);
|
|
|
|
break;
|
|
|
|
case '1': /* unknown host */
|
|
|
|
server_stopconnecting (serv);
|
|
|
|
closesocket (serv->sok4);
|
|
|
|
if (serv->proxy_sok4 != -1)
|
|
|
|
closesocket (serv->proxy_sok4);
|
|
|
|
if (serv->sok6 != -1)
|
|
|
|
closesocket (serv->sok6);
|
|
|
|
if (serv->proxy_sok6 != -1)
|
|
|
|
closesocket (serv->proxy_sok6);
|
|
|
|
EMIT_SIGNAL (XP_TE_UKNHOST, sess, NULL, NULL, NULL, NULL, 0);
|
|
|
|
if (!servlist_cycle (serv))
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_auto_reconnectonfail)
|
2011-02-23 22:14:30 -05:00
|
|
|
auto_reconnect (serv, FALSE, -1);
|
|
|
|
break;
|
|
|
|
case '2': /* connection failed */
|
|
|
|
waitline2 (source, tbuf, sizeof tbuf);
|
|
|
|
server_stopconnecting (serv);
|
|
|
|
closesocket (serv->sok4);
|
|
|
|
if (serv->proxy_sok4 != -1)
|
|
|
|
closesocket (serv->proxy_sok4);
|
|
|
|
if (serv->sok6 != -1)
|
|
|
|
closesocket (serv->sok6);
|
|
|
|
if (serv->proxy_sok6 != -1)
|
|
|
|
closesocket (serv->proxy_sok6);
|
|
|
|
EMIT_SIGNAL (XP_TE_CONNFAIL, sess, errorstring (atoi (tbuf)), NULL,
|
|
|
|
NULL, NULL, 0);
|
|
|
|
if (!servlist_cycle (serv))
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_auto_reconnectonfail)
|
2011-02-23 22:14:30 -05:00
|
|
|
auto_reconnect (serv, FALSE, -1);
|
|
|
|
break;
|
|
|
|
case '3': /* gethostbyname finished */
|
|
|
|
waitline2 (source, host, sizeof host);
|
|
|
|
waitline2 (source, ip, sizeof ip);
|
|
|
|
waitline2 (source, outbuf, sizeof outbuf);
|
|
|
|
EMIT_SIGNAL (XP_TE_CONNECT, sess, host, ip, outbuf, NULL, 0);
|
|
|
|
break;
|
|
|
|
case '4': /* success */
|
|
|
|
waitline2 (source, tbuf, sizeof (tbuf));
|
|
|
|
serv->sok = atoi (tbuf);
|
|
|
|
/* close the one we didn't end up using */
|
|
|
|
if (serv->sok == serv->sok4)
|
|
|
|
closesocket (serv->sok6);
|
|
|
|
else
|
|
|
|
closesocket (serv->sok4);
|
|
|
|
if (serv->proxy_sok != -1)
|
|
|
|
{
|
|
|
|
if (serv->proxy_sok == serv->proxy_sok4)
|
|
|
|
closesocket (serv->proxy_sok6);
|
|
|
|
else
|
|
|
|
closesocket (serv->proxy_sok4);
|
|
|
|
}
|
2014-06-14 12:07:47 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
struct sockaddr addr;
|
|
|
|
int addr_len = sizeof (addr);
|
|
|
|
guint16 port;
|
|
|
|
|
|
|
|
if (!getsockname (serv->sok, &addr, &addr_len))
|
|
|
|
{
|
|
|
|
if (addr.sa_family == AF_INET)
|
|
|
|
port = ntohs(((struct sockaddr_in *)&addr)->sin_port);
|
|
|
|
else
|
|
|
|
port = ntohs(((struct sockaddr_in6 *)&addr)->sin6_port);
|
|
|
|
|
|
|
|
g_snprintf (outbuf, sizeof (outbuf), "IDENTD %"G_GUINT16_FORMAT" ", port);
|
|
|
|
if (serv->network && ((ircnet *)serv->network)->user)
|
|
|
|
g_strlcat (outbuf, ((ircnet *)serv->network)->user, sizeof (outbuf));
|
|
|
|
else
|
|
|
|
g_strlcat (outbuf, prefs.hex_irc_user_name, sizeof (outbuf));
|
|
|
|
|
|
|
|
handle_command (serv->server_session, outbuf, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
server_connect_success (serv);
|
|
|
|
break;
|
|
|
|
case '5': /* prefs ip discovered */
|
|
|
|
waitline2 (source, tbuf, sizeof tbuf);
|
|
|
|
prefs.local_ip = inet_addr (tbuf);
|
|
|
|
break;
|
2012-10-22 09:55:43 -04:00
|
|
|
case '7': /* gethostbyname (prefs.hex_net_bind_host) failed */
|
2011-02-23 22:14:30 -05:00
|
|
|
sprintf (outbuf,
|
|
|
|
_("Cannot resolve hostname %s\nCheck your IP Settings!\n"),
|
2012-10-22 09:55:43 -04:00
|
|
|
prefs.hex_net_bind_host);
|
2011-02-23 22:14:30 -05:00
|
|
|
PrintText (sess, outbuf);
|
|
|
|
break;
|
|
|
|
case '8':
|
|
|
|
PrintText (sess, _("Proxy traversal failed.\n"));
|
|
|
|
server_disconnect (sess, FALSE, -1);
|
|
|
|
break;
|
|
|
|
case '9':
|
|
|
|
waitline2 (source, tbuf, sizeof tbuf);
|
|
|
|
EMIT_SIGNAL (XP_TE_SERVERLOOKUP, sess, tbuf, NULL, NULL, NULL, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* kill all sockets & iotags of a server. Stop a connection attempt, or
|
|
|
|
disconnect if already connected. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
server_cleanup (server * serv)
|
|
|
|
{
|
2012-10-30 16:25:58 -04:00
|
|
|
fe_set_lag (serv, 0);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
if (serv->iotag)
|
|
|
|
{
|
|
|
|
fe_input_remove (serv->iotag);
|
|
|
|
serv->iotag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (serv->joindelay_tag)
|
|
|
|
{
|
|
|
|
fe_timeout_remove (serv->joindelay_tag);
|
|
|
|
serv->joindelay_tag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
if (serv->ssl)
|
|
|
|
{
|
2013-09-02 14:24:37 -04:00
|
|
|
SSL_shutdown (serv->ssl);
|
|
|
|
SSL_free (serv->ssl);
|
2011-02-23 22:14:30 -05:00
|
|
|
serv->ssl = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (serv->connecting)
|
|
|
|
{
|
|
|
|
server_stopconnecting (serv);
|
|
|
|
closesocket (serv->sok4);
|
|
|
|
if (serv->proxy_sok4 != -1)
|
|
|
|
closesocket (serv->proxy_sok4);
|
|
|
|
if (serv->sok6 != -1)
|
|
|
|
closesocket (serv->sok6);
|
|
|
|
if (serv->proxy_sok6 != -1)
|
|
|
|
closesocket (serv->proxy_sok6);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (serv->connected)
|
|
|
|
{
|
|
|
|
close_socket (serv->sok);
|
|
|
|
if (serv->proxy_sok)
|
|
|
|
close_socket (serv->proxy_sok);
|
|
|
|
serv->connected = FALSE;
|
|
|
|
serv->end_of_motd = FALSE;
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* is this server in a reconnect delay? remove it! */
|
|
|
|
if (serv->recondelay_tag)
|
|
|
|
{
|
|
|
|
fe_timeout_remove (serv->recondelay_tag);
|
|
|
|
serv->recondelay_tag = 0;
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_disconnect (session * sess, int sendquit, int err)
|
|
|
|
{
|
|
|
|
server *serv = sess->server;
|
|
|
|
GSList *list;
|
|
|
|
char tbuf[64];
|
|
|
|
gboolean shutup = FALSE;
|
|
|
|
|
|
|
|
/* send our QUIT reason */
|
|
|
|
if (sendquit && serv->connected)
|
|
|
|
{
|
|
|
|
server_sendquit (sess);
|
|
|
|
}
|
|
|
|
|
|
|
|
fe_server_event (serv, FE_SE_DISCONNECT, 0);
|
|
|
|
|
|
|
|
/* close all sockets & io tags */
|
|
|
|
switch (server_cleanup (serv))
|
|
|
|
{
|
|
|
|
case 0: /* it wasn't even connected! */
|
|
|
|
notc_msg (sess);
|
|
|
|
return;
|
|
|
|
case 1: /* it was in the process of connecting */
|
|
|
|
sprintf (tbuf, "%d", sess->server->childpid);
|
|
|
|
EMIT_SIGNAL (XP_TE_STOPCONNECT, sess, tbuf, NULL, NULL, NULL, 0);
|
|
|
|
return;
|
|
|
|
case 3:
|
|
|
|
shutup = TRUE; /* won't print "disconnected" in channels */
|
|
|
|
}
|
|
|
|
|
|
|
|
server_flush_queue (serv);
|
|
|
|
|
|
|
|
list = sess_list;
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
sess = (struct session *) list->data;
|
|
|
|
if (sess->server == serv)
|
|
|
|
{
|
|
|
|
if (!shutup || sess->type == SESS_SERVER)
|
|
|
|
/* print "Disconnected" to each window using this server */
|
|
|
|
EMIT_SIGNAL (XP_TE_DISCON, sess, errorstring (err), NULL, NULL, NULL, 0);
|
|
|
|
|
|
|
|
if (!sess->channel[0] || sess->type == SESS_CHANNEL)
|
|
|
|
clear_channel (sess);
|
|
|
|
}
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
serv->pos = 0;
|
|
|
|
serv->motd_skipped = FALSE;
|
|
|
|
serv->no_login = FALSE;
|
|
|
|
serv->servername[0] = 0;
|
|
|
|
serv->lag_sent = 0;
|
|
|
|
|
|
|
|
notify_cleanup ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* send a "print text" command to the parent process - MUST END IN \n! */
|
|
|
|
|
|
|
|
static void
|
|
|
|
proxy_error (int fd, char *msg)
|
|
|
|
{
|
|
|
|
write (fd, "0\n", 2);
|
|
|
|
write (fd, msg, strlen (msg));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sock_connect
|
|
|
|
{
|
|
|
|
char version;
|
|
|
|
char type;
|
|
|
|
guint16 port;
|
|
|
|
guint32 address;
|
|
|
|
char username[10];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* traverse_socks() returns:
|
|
|
|
* 0 success *
|
|
|
|
* 1 socks traversal failed */
|
|
|
|
|
|
|
|
static int
|
|
|
|
traverse_socks (int print_fd, int sok, char *serverAddr, int port)
|
|
|
|
{
|
|
|
|
struct sock_connect sc;
|
|
|
|
unsigned char buf[256];
|
|
|
|
|
|
|
|
sc.version = 4;
|
|
|
|
sc.type = 1;
|
|
|
|
sc.port = htons (port);
|
|
|
|
sc.address = inet_addr (serverAddr);
|
2012-10-22 08:50:36 -04:00
|
|
|
strncpy (sc.username, prefs.hex_irc_user_name, 9);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
send (sok, (char *) &sc, 8 + strlen (sc.username) + 1, 0);
|
|
|
|
buf[1] = 0;
|
|
|
|
recv (sok, buf, 10, 0);
|
|
|
|
if (buf[1] == 90)
|
|
|
|
return 0;
|
|
|
|
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "SOCKS\tServer reported error %d,%d.\n", buf[0], buf[1]);
|
2011-02-23 22:14:30 -05:00
|
|
|
proxy_error (print_fd, buf);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sock5_connect1
|
|
|
|
{
|
|
|
|
char version;
|
|
|
|
char nmethods;
|
|
|
|
char method;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
traverse_socks5 (int print_fd, int sok, char *serverAddr, int port)
|
|
|
|
{
|
|
|
|
struct sock5_connect1 sc1;
|
|
|
|
unsigned char *sc2;
|
|
|
|
unsigned int packetlen, addrlen;
|
|
|
|
unsigned char buf[260];
|
2012-10-22 09:55:43 -04:00
|
|
|
int auth = prefs.hex_net_proxy_auth && prefs.hex_net_proxy_user[0] && prefs.hex_net_proxy_pass[0];
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
sc1.version = 5;
|
|
|
|
sc1.nmethods = 1;
|
|
|
|
if (auth)
|
|
|
|
sc1.method = 2; /* Username/Password Authentication (UPA) */
|
|
|
|
else
|
|
|
|
sc1.method = 0; /* NO Authentication */
|
|
|
|
send (sok, (char *) &sc1, 3, 0);
|
|
|
|
if (recv (sok, buf, 2, 0) != 2)
|
|
|
|
goto read_error;
|
|
|
|
|
|
|
|
if (buf[0] != 5)
|
|
|
|
{
|
|
|
|
proxy_error (print_fd, "SOCKS\tServer is not socks version 5.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* did the server say no auth required? */
|
|
|
|
if (buf[1] == 0)
|
|
|
|
auth = 0;
|
|
|
|
|
|
|
|
if (auth)
|
|
|
|
{
|
|
|
|
int len_u=0, len_p=0;
|
|
|
|
|
|
|
|
/* authentication sub-negotiation (RFC1929) */
|
|
|
|
if (buf[1] != 2) /* UPA not supported by server */
|
|
|
|
{
|
|
|
|
proxy_error (print_fd, "SOCKS\tServer doesn't support UPA authentication.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset (buf, 0, sizeof(buf));
|
|
|
|
|
|
|
|
/* form the UPA request */
|
2012-10-22 09:55:43 -04:00
|
|
|
len_u = strlen (prefs.hex_net_proxy_user);
|
|
|
|
len_p = strlen (prefs.hex_net_proxy_pass);
|
2011-02-23 22:14:30 -05:00
|
|
|
buf[0] = 1;
|
|
|
|
buf[1] = len_u;
|
2012-10-22 09:55:43 -04:00
|
|
|
memcpy (buf + 2, prefs.hex_net_proxy_user, len_u);
|
2011-02-23 22:14:30 -05:00
|
|
|
buf[2 + len_u] = len_p;
|
2012-10-22 09:55:43 -04:00
|
|
|
memcpy (buf + 3 + len_u, prefs.hex_net_proxy_pass, len_p);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
send (sok, buf, 3 + len_u + len_p, 0);
|
|
|
|
if ( recv (sok, buf, 2, 0) != 2 )
|
|
|
|
goto read_error;
|
|
|
|
if ( buf[1] != 0 )
|
|
|
|
{
|
|
|
|
proxy_error (print_fd, "SOCKS\tAuthentication failed. "
|
|
|
|
"Is username and password correct?\n");
|
|
|
|
return 1; /* UPA failed! */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (buf[1] != 0)
|
|
|
|
{
|
|
|
|
proxy_error (print_fd, "SOCKS\tAuthentication required but disabled in settings.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addrlen = strlen (serverAddr);
|
|
|
|
packetlen = 4 + 1 + addrlen + 2;
|
2014-12-28 06:37:25 -05:00
|
|
|
sc2 = g_malloc (packetlen);
|
2011-02-23 22:14:30 -05:00
|
|
|
sc2[0] = 5; /* version */
|
|
|
|
sc2[1] = 1; /* command */
|
|
|
|
sc2[2] = 0; /* reserved */
|
|
|
|
sc2[3] = 3; /* address type */
|
|
|
|
sc2[4] = (unsigned char) addrlen; /* hostname length */
|
|
|
|
memcpy (sc2 + 5, serverAddr, addrlen);
|
|
|
|
*((unsigned short *) (sc2 + 5 + addrlen)) = htons (port);
|
|
|
|
send (sok, sc2, packetlen, 0);
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (sc2);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
/* consume all of the reply */
|
|
|
|
if (recv (sok, buf, 4, 0) != 4)
|
|
|
|
goto read_error;
|
|
|
|
if (buf[0] != 5 || buf[1] != 0)
|
|
|
|
{
|
|
|
|
if (buf[1] == 2)
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "SOCKS\tProxy refused to connect to host (not allowed).\n");
|
2011-02-23 22:14:30 -05:00
|
|
|
else
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "SOCKS\tProxy failed to connect to host (error %d).\n", buf[1]);
|
2011-02-23 22:14:30 -05:00
|
|
|
proxy_error (print_fd, buf);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (buf[3] == 1) /* IPV4 32bit address */
|
|
|
|
{
|
|
|
|
if (recv (sok, buf, 6, 0) != 6)
|
|
|
|
goto read_error;
|
|
|
|
} else if (buf[3] == 4) /* IPV6 128bit address */
|
|
|
|
{
|
|
|
|
if (recv (sok, buf, 18, 0) != 18)
|
|
|
|
goto read_error;
|
|
|
|
} else if (buf[3] == 3) /* string, 1st byte is size */
|
|
|
|
{
|
|
|
|
if (recv (sok, buf, 1, 0) != 1) /* read the string size */
|
|
|
|
goto read_error;
|
|
|
|
packetlen = buf[0] + 2; /* can't exceed 260 */
|
|
|
|
if (recv (sok, buf, packetlen, 0) != packetlen)
|
|
|
|
goto read_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0; /* success */
|
|
|
|
|
|
|
|
read_error:
|
|
|
|
proxy_error (print_fd, "SOCKS\tRead error from server.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
traverse_wingate (int print_fd, int sok, char *serverAddr, int port)
|
|
|
|
{
|
|
|
|
char buf[128];
|
|
|
|
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "%s %d\r\n", serverAddr, port);
|
2011-02-23 22:14:30 -05:00
|
|
|
send (sok, buf, strlen (buf), 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stuff for HTTP auth is here */
|
|
|
|
|
|
|
|
static void
|
|
|
|
three_to_four (char *from, char *to)
|
|
|
|
{
|
|
|
|
static const char tab64[64]=
|
|
|
|
{
|
|
|
|
'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P',
|
|
|
|
'Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f',
|
|
|
|
'g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v',
|
|
|
|
'w','x','y','z','0','1','2','3','4','5','6','7','8','9','+','/'
|
|
|
|
};
|
|
|
|
|
|
|
|
to[0] = tab64 [ (from[0] >> 2) & 63 ];
|
|
|
|
to[1] = tab64 [ ((from[0] << 4) | (from[1] >> 4)) & 63 ];
|
|
|
|
to[2] = tab64 [ ((from[1] << 2) | (from[2] >> 6)) & 63 ];
|
|
|
|
to[3] = tab64 [ from[2] & 63 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
base64_encode (char *to, char *from, unsigned int len)
|
|
|
|
{
|
|
|
|
while (len >= 3)
|
|
|
|
{
|
|
|
|
three_to_four (from, to);
|
|
|
|
len -= 3;
|
|
|
|
from += 3;
|
|
|
|
to += 4;
|
|
|
|
}
|
|
|
|
if (len)
|
|
|
|
{
|
2012-11-10 12:26:45 -05:00
|
|
|
char three[3] = {0,0,0};
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
{
|
2011-02-23 22:14:30 -05:00
|
|
|
three[i] = *from++;
|
2012-11-10 12:26:45 -05:00
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
three_to_four (three, to);
|
|
|
|
if (len == 1)
|
2012-11-10 12:26:45 -05:00
|
|
|
{
|
2011-02-23 22:14:30 -05:00
|
|
|
to[2] = to[3] = '=';
|
2012-11-10 12:26:45 -05:00
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
else if (len == 2)
|
2012-11-10 12:26:45 -05:00
|
|
|
{
|
2011-02-23 22:14:30 -05:00
|
|
|
to[3] = '=';
|
2012-11-10 12:26:45 -05:00
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
to += 4;
|
|
|
|
};
|
|
|
|
to[0] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
http_read_line (int print_fd, int sok, char *buf, int len)
|
|
|
|
{
|
|
|
|
len = waitline (sok, buf, len, TRUE);
|
|
|
|
if (len >= 1)
|
|
|
|
{
|
|
|
|
/* print the message out (send it to the parent process) */
|
|
|
|
write (print_fd, "0\n", 2);
|
|
|
|
|
|
|
|
if (buf[len-1] == '\r')
|
|
|
|
{
|
|
|
|
buf[len-1] = '\n';
|
|
|
|
write (print_fd, buf, len);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
write (print_fd, buf, len);
|
|
|
|
write (print_fd, "\n", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
traverse_http (int print_fd, int sok, char *serverAddr, int port)
|
|
|
|
{
|
|
|
|
char buf[512];
|
|
|
|
char auth_data[256];
|
|
|
|
char auth_data2[252];
|
|
|
|
int n, n2;
|
|
|
|
|
2014-12-17 18:49:59 -05:00
|
|
|
n = g_snprintf (buf, sizeof (buf), "CONNECT %s:%d HTTP/1.0\r\n",
|
2011-02-23 22:14:30 -05:00
|
|
|
serverAddr, port);
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_proxy_auth)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
n2 = g_snprintf (auth_data2, sizeof (auth_data2), "%s:%s",
|
2012-10-22 09:55:43 -04:00
|
|
|
prefs.hex_net_proxy_user, prefs.hex_net_proxy_pass);
|
2011-02-23 22:14:30 -05:00
|
|
|
base64_encode (auth_data, auth_data2, n2);
|
2014-12-17 18:49:59 -05:00
|
|
|
n += g_snprintf (buf+n, sizeof (buf)-n, "Proxy-Authorization: Basic %s\r\n", auth_data);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
2014-12-17 18:49:59 -05:00
|
|
|
n += g_snprintf (buf+n, sizeof (buf)-n, "\r\n");
|
2011-02-23 22:14:30 -05:00
|
|
|
send (sok, buf, n, 0);
|
|
|
|
|
|
|
|
n = http_read_line (print_fd, sok, buf, sizeof (buf));
|
|
|
|
/* "HTTP/1.0 200 OK" */
|
|
|
|
if (n < 12)
|
|
|
|
return 1;
|
|
|
|
if (memcmp (buf, "HTTP/", 5) || memcmp (buf + 9, "200", 3))
|
|
|
|
return 1;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
/* read until blank line */
|
|
|
|
n = http_read_line (print_fd, sok, buf, sizeof (buf));
|
|
|
|
if (n < 1 || (n == 1 && buf[0] == '\n'))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2014-12-28 13:28:19 -05:00
|
|
|
traverse_proxy (int proxy_type, int print_fd, int sok, char *ip, int port, netstore *ns_proxy, int csok4, int csok6, int *csok, char bound)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
switch (proxy_type)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
return traverse_wingate (print_fd, sok, ip, port);
|
|
|
|
case 2:
|
|
|
|
return traverse_socks (print_fd, sok, ip, port);
|
|
|
|
case 3:
|
|
|
|
return traverse_socks5 (print_fd, sok, ip, port);
|
|
|
|
case 4:
|
|
|
|
return traverse_http (print_fd, sok, ip, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* this is the child process making the connection attempt */
|
|
|
|
|
|
|
|
static int
|
|
|
|
server_child (server * serv)
|
|
|
|
{
|
|
|
|
netstore *ns_server;
|
|
|
|
netstore *ns_proxy = NULL;
|
|
|
|
netstore *ns_local;
|
|
|
|
int port = serv->port;
|
|
|
|
int error;
|
|
|
|
int sok, psok;
|
|
|
|
char *hostname = serv->hostname;
|
|
|
|
char *real_hostname = NULL;
|
|
|
|
char *ip;
|
|
|
|
char *proxy_ip = NULL;
|
|
|
|
char *local_ip;
|
|
|
|
int connect_port;
|
|
|
|
char buf[512];
|
|
|
|
char bound = 0;
|
|
|
|
int proxy_type = 0;
|
|
|
|
char *proxy_host = NULL;
|
|
|
|
int proxy_port;
|
|
|
|
|
|
|
|
ns_server = net_store_new ();
|
|
|
|
|
|
|
|
/* is a hostname set? - bind to it */
|
2012-10-22 09:55:43 -04:00
|
|
|
if (prefs.hex_net_bind_host[0])
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
ns_local = net_store_new ();
|
2012-10-22 09:55:43 -04:00
|
|
|
local_ip = net_resolve (ns_local, prefs.hex_net_bind_host, 0, &real_hostname);
|
2011-02-23 22:14:30 -05:00
|
|
|
if (local_ip != NULL)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "5\n%s\n", local_ip);
|
2011-02-23 22:14:30 -05:00
|
|
|
write (serv->childwrite, buf, strlen (buf));
|
|
|
|
net_bind (ns_local, serv->sok4, serv->sok6);
|
|
|
|
bound = 1;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
write (serv->childwrite, "7\n", 2);
|
|
|
|
}
|
|
|
|
net_store_destroy (ns_local);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!serv->dont_use_proxy) /* blocked in serverlist? */
|
|
|
|
{
|
|
|
|
#ifdef USE_LIBPROXY
|
2014-12-15 14:51:07 -05:00
|
|
|
if (prefs.hex_net_proxy_type == 5)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
char **proxy_list;
|
|
|
|
char *url, *proxy;
|
|
|
|
|
|
|
|
url = g_strdup_printf ("irc://%s:%d", hostname, port);
|
|
|
|
proxy_list = px_proxy_factory_get_proxies (libproxy_factory, url);
|
|
|
|
|
|
|
|
if (proxy_list) {
|
|
|
|
/* can use only one */
|
|
|
|
proxy = proxy_list[0];
|
|
|
|
if (!strncmp (proxy, "direct", 6))
|
|
|
|
proxy_type = 0;
|
|
|
|
else if (!strncmp (proxy, "http", 4))
|
|
|
|
proxy_type = 4;
|
|
|
|
else if (!strncmp (proxy, "socks5", 6))
|
|
|
|
proxy_type = 3;
|
|
|
|
else if (!strncmp (proxy, "socks", 5))
|
|
|
|
proxy_type = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proxy_type) {
|
|
|
|
char *c;
|
|
|
|
c = strchr (proxy, ':') + 3;
|
2014-12-28 06:37:25 -05:00
|
|
|
proxy_host = g_strdup (c);
|
2011-02-23 22:14:30 -05:00
|
|
|
c = strchr (proxy_host, ':');
|
|
|
|
*c = '\0';
|
|
|
|
proxy_port = atoi (c + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev (proxy_list);
|
|
|
|
g_free (url);
|
2011-04-16 13:18:20 -04:00
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
2014-12-15 14:51:07 -05:00
|
|
|
if (prefs.hex_net_proxy_host[0] &&
|
2012-10-22 09:55:43 -04:00
|
|
|
prefs.hex_net_proxy_type > 0 &&
|
|
|
|
prefs.hex_net_proxy_use != 2) /* proxy is NOT dcc-only */
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
2012-10-22 09:55:43 -04:00
|
|
|
proxy_type = prefs.hex_net_proxy_type;
|
2014-12-28 06:37:25 -05:00
|
|
|
proxy_host = g_strdup (prefs.hex_net_proxy_host);
|
2012-10-22 09:55:43 -04:00
|
|
|
proxy_port = prefs.hex_net_proxy_port;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
serv->proxy_type = proxy_type;
|
|
|
|
|
|
|
|
/* first resolve where we want to connect to */
|
|
|
|
if (proxy_type > 0)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "9\n%s\n", proxy_host);
|
2011-02-23 22:14:30 -05:00
|
|
|
write (serv->childwrite, buf, strlen (buf));
|
|
|
|
ip = net_resolve (ns_server, proxy_host, proxy_port, &real_hostname);
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (proxy_host);
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!ip)
|
|
|
|
{
|
|
|
|
write (serv->childwrite, "1\n", 2);
|
|
|
|
goto xit;
|
|
|
|
}
|
|
|
|
connect_port = proxy_port;
|
|
|
|
|
|
|
|
/* if using socks4 or MS Proxy, attempt to resolve ip for irc server */
|
|
|
|
if ((proxy_type == 2) || (proxy_type == 5))
|
|
|
|
{
|
|
|
|
ns_proxy = net_store_new ();
|
|
|
|
proxy_ip = net_resolve (ns_proxy, hostname, port, &real_hostname);
|
|
|
|
if (!proxy_ip)
|
|
|
|
{
|
|
|
|
write (serv->childwrite, "1\n", 2);
|
|
|
|
goto xit;
|
|
|
|
}
|
|
|
|
} else /* otherwise we can just use the hostname */
|
2014-12-28 06:37:25 -05:00
|
|
|
proxy_ip = g_strdup (hostname);
|
2011-02-23 22:14:30 -05:00
|
|
|
} else
|
|
|
|
{
|
|
|
|
ip = net_resolve (ns_server, hostname, port, &real_hostname);
|
|
|
|
if (!ip)
|
|
|
|
{
|
|
|
|
write (serv->childwrite, "1\n", 2);
|
|
|
|
goto xit;
|
|
|
|
}
|
|
|
|
connect_port = port;
|
|
|
|
}
|
|
|
|
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "3\n%s\n%s\n%d\n",
|
2011-02-23 22:14:30 -05:00
|
|
|
real_hostname, ip, connect_port);
|
|
|
|
write (serv->childwrite, buf, strlen (buf));
|
|
|
|
|
|
|
|
if (!serv->dont_use_proxy && (proxy_type == 5))
|
|
|
|
error = net_connect (ns_server, serv->proxy_sok4, serv->proxy_sok6, &psok);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
error = net_connect (ns_server, serv->sok4, serv->sok6, &sok);
|
|
|
|
psok = sok;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error != 0)
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "2\n%d\n", sock_error ());
|
2011-02-23 22:14:30 -05:00
|
|
|
write (serv->childwrite, buf, strlen (buf));
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
/* connect succeeded */
|
|
|
|
if (proxy_ip)
|
|
|
|
{
|
2014-12-28 13:28:19 -05:00
|
|
|
switch (traverse_proxy (proxy_type, serv->childwrite, psok, proxy_ip, port, ns_proxy, serv->sok4, serv->sok6, &sok, bound))
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
case 0: /* success */
|
2014-12-28 13:28:19 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "4\n%d\n", sok); /* success */
|
2011-02-23 22:14:30 -05:00
|
|
|
write (serv->childwrite, buf, strlen (buf));
|
|
|
|
break;
|
|
|
|
case 1: /* socks traversal failed */
|
|
|
|
write (serv->childwrite, "8\n", 2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
2014-12-17 18:49:59 -05:00
|
|
|
g_snprintf (buf, sizeof (buf), "4\n%d\n", sok); /* success */
|
2011-02-23 22:14:30 -05:00
|
|
|
write (serv->childwrite, buf, strlen (buf));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
xit:
|
|
|
|
|
|
|
|
/* this is probably not needed */
|
|
|
|
net_store_destroy (ns_server);
|
|
|
|
if (ns_proxy)
|
|
|
|
net_store_destroy (ns_proxy);
|
|
|
|
|
|
|
|
/* no need to free ip/real_hostname, this process is exiting */
|
|
|
|
#ifdef WIN32
|
|
|
|
/* under win32 we use a thread -> shared memory, must free! */
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (proxy_ip);
|
|
|
|
g_free (ip);
|
|
|
|
g_free (real_hostname);
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
2013-01-09 17:37:57 -05:00
|
|
|
/* cppcheck-suppress memleak */
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_connect (server *serv, char *hostname, int port, int no_login)
|
|
|
|
{
|
|
|
|
int pid, read_des[2];
|
|
|
|
session *sess = serv->server_session;
|
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
2014-10-22 05:24:29 -04:00
|
|
|
if (!serv->ctx && serv->use_ssl)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
2015-01-30 21:25:41 -05:00
|
|
|
if (!(serv->ctx = _SSL_context_init (ssl_cb_info)))
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
fprintf (stderr, "_SSL_context_init failed\n");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!hostname[0])
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (port < 0)
|
|
|
|
{
|
|
|
|
/* use default port for this server type */
|
|
|
|
port = 6667;
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
if (serv->use_ssl)
|
2012-07-31 03:19:37 -04:00
|
|
|
port = 6697;
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
port &= 0xffff; /* wrap around */
|
|
|
|
|
|
|
|
if (serv->connected || serv->connecting || serv->recondelay_tag)
|
|
|
|
server_disconnect (sess, TRUE, -1);
|
|
|
|
|
|
|
|
fe_progressbar_start (sess);
|
|
|
|
|
|
|
|
EMIT_SIGNAL (XP_TE_SERVERLOOKUP, sess, hostname, NULL, NULL, NULL, 0);
|
|
|
|
|
|
|
|
safe_strcpy (serv->servername, hostname, sizeof (serv->servername));
|
|
|
|
/* overlap illegal in strncpy */
|
|
|
|
if (hostname != serv->hostname)
|
|
|
|
safe_strcpy (serv->hostname, hostname, sizeof (serv->hostname));
|
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
if (serv->use_ssl)
|
|
|
|
{
|
2012-11-03 13:24:25 -04:00
|
|
|
char *cert_file;
|
2013-09-02 14:24:37 -04:00
|
|
|
serv->have_cert = FALSE;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
/* first try network specific cert/key */
|
2012-11-11 22:06:03 -05:00
|
|
|
cert_file = g_strdup_printf ("%s" G_DIR_SEPARATOR_S "certs" G_DIR_SEPARATOR_S "%s.pem",
|
2012-11-03 13:24:25 -04:00
|
|
|
get_xdir (), server_get_network (serv, TRUE));
|
2014-10-22 05:24:29 -04:00
|
|
|
if (SSL_CTX_use_certificate_file (serv->ctx, cert_file, SSL_FILETYPE_PEM) == 1)
|
2013-09-02 14:24:37 -04:00
|
|
|
{
|
2014-10-22 05:24:29 -04:00
|
|
|
if (SSL_CTX_use_PrivateKey_file (serv->ctx, cert_file, SSL_FILETYPE_PEM) == 1)
|
2013-09-02 14:24:37 -04:00
|
|
|
serv->have_cert = TRUE;
|
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
else
|
|
|
|
{
|
2012-11-11 22:06:03 -05:00
|
|
|
/* if that doesn't exist, try <config>/certs/client.pem */
|
2013-05-04 12:21:48 -04:00
|
|
|
cert_file = g_build_filename (get_xdir (), "certs", "client.pem", NULL);
|
2014-10-22 05:24:29 -04:00
|
|
|
if (SSL_CTX_use_certificate_file (serv->ctx, cert_file, SSL_FILETYPE_PEM) == 1)
|
2013-09-02 14:24:37 -04:00
|
|
|
{
|
2014-10-22 05:24:29 -04:00
|
|
|
if (SSL_CTX_use_PrivateKey_file (serv->ctx, cert_file, SSL_FILETYPE_PEM) == 1)
|
2013-09-02 14:24:37 -04:00
|
|
|
serv->have_cert = TRUE;
|
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
2012-11-03 13:24:25 -04:00
|
|
|
g_free (cert_file);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
server_set_defaults (serv);
|
|
|
|
serv->connecting = TRUE;
|
|
|
|
serv->port = port;
|
|
|
|
serv->no_login = no_login;
|
|
|
|
|
|
|
|
fe_server_event (serv, FE_SE_CONNECTING, 0);
|
|
|
|
fe_set_away (serv);
|
|
|
|
server_flush_queue (serv);
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
if (_pipe (read_des, 4096, _O_BINARY) < 0)
|
|
|
|
#else
|
|
|
|
if (pipe (read_des) < 0)
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
#ifdef __EMX__ /* os/2 */
|
|
|
|
setmode (read_des[0], O_BINARY);
|
|
|
|
setmode (read_des[1], O_BINARY);
|
|
|
|
#endif
|
|
|
|
serv->childread = read_des[0];
|
|
|
|
serv->childwrite = read_des[1];
|
|
|
|
|
|
|
|
/* create both sockets now, drop one later */
|
|
|
|
net_sockets (&serv->sok4, &serv->sok6);
|
2014-12-28 13:28:19 -05:00
|
|
|
serv->proxy_sok4 = -1;
|
|
|
|
serv->proxy_sok6 = -1;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
CloseHandle (CreateThread (NULL, 0,
|
|
|
|
(LPTHREAD_START_ROUTINE)server_child,
|
|
|
|
serv, 0, (DWORD *)&pid));
|
|
|
|
#else
|
|
|
|
#ifdef LOOKUPD
|
2013-05-03 09:54:18 -04:00
|
|
|
/* CL: net_resolve calls rand() when LOOKUPD is set, so prepare a different
|
|
|
|
* seed for each child. This method gives a bigger variation in seed values
|
|
|
|
* than calling srand(time(0)) in the child itself.
|
|
|
|
*/
|
|
|
|
rand();
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
switch (pid = fork ())
|
|
|
|
{
|
|
|
|
case -1:
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
/* this is the child */
|
|
|
|
setuid (getuid ());
|
|
|
|
server_child (serv);
|
|
|
|
_exit (0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
serv->childpid = pid;
|
2011-12-11 11:34:02 -05:00
|
|
|
#ifdef WIN32
|
2011-02-28 12:59:32 -05:00
|
|
|
serv->iotag = fe_input_add (serv->childread, FIA_READ|FIA_FD, server_read_child,
|
2011-12-11 11:34:02 -05:00
|
|
|
#else
|
|
|
|
serv->iotag = fe_input_add (serv->childread, FIA_READ, server_read_child,
|
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
serv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_fill_her_up (server *serv)
|
|
|
|
{
|
|
|
|
serv->connect = server_connect;
|
|
|
|
serv->disconnect = server_disconnect;
|
|
|
|
serv->cleanup = server_cleanup;
|
|
|
|
serv->flush_queue = server_flush_queue;
|
|
|
|
serv->auto_reconnect = auto_reconnect;
|
|
|
|
|
|
|
|
proto_fill_her_up (serv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_set_encoding (server *serv, char *new_encoding)
|
|
|
|
{
|
|
|
|
char *space;
|
|
|
|
|
2015-01-18 05:10:04 -05:00
|
|
|
g_free (serv->encoding);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
if (new_encoding)
|
|
|
|
{
|
2014-12-28 06:37:25 -05:00
|
|
|
serv->encoding = g_strdup (new_encoding);
|
2011-02-23 22:14:30 -05:00
|
|
|
/* the serverlist GUI might have added a space
|
|
|
|
and short description - remove it. */
|
|
|
|
space = strchr (serv->encoding, ' ');
|
|
|
|
if (space)
|
|
|
|
space[0] = 0;
|
|
|
|
|
2015-01-18 05:10:03 -05:00
|
|
|
/* Default legacy "IRC" encoding to utf-8. */
|
|
|
|
if (g_ascii_strcasecmp (serv->encoding, "IRC") == 0)
|
2015-01-18 05:10:03 -05:00
|
|
|
{
|
|
|
|
g_free (serv->encoding);
|
|
|
|
serv->encoding = g_strdup ("UTF-8");
|
|
|
|
}
|
2015-01-18 05:10:05 -05:00
|
|
|
|
|
|
|
else if (!servlist_check_encoding (serv->encoding))
|
|
|
|
{
|
|
|
|
g_free (serv->encoding);
|
|
|
|
serv->encoding = g_strdup ("UTF-8");
|
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
2015-01-18 05:10:04 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
serv->encoding = g_strdup ("UTF-8");
|
|
|
|
}
|
2015-01-31 03:52:31 -05:00
|
|
|
|
|
|
|
if (serv->read_converter != NULL)
|
|
|
|
{
|
|
|
|
g_iconv_close (serv->read_converter);
|
|
|
|
}
|
|
|
|
serv->read_converter = g_iconv_open ("UTF-8", serv->encoding);
|
|
|
|
|
|
|
|
if (serv->write_converter != NULL)
|
|
|
|
{
|
|
|
|
g_iconv_close (serv->write_converter);
|
|
|
|
}
|
|
|
|
serv->write_converter = g_iconv_open (serv->encoding, "UTF-8");
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
server *
|
|
|
|
server_new (void)
|
|
|
|
{
|
|
|
|
static int id = 0;
|
|
|
|
server *serv;
|
|
|
|
|
2014-12-28 06:37:25 -05:00
|
|
|
serv = g_new0 (struct server, 1);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
/* use server.c and proto-irc.c functions */
|
|
|
|
server_fill_her_up (serv);
|
|
|
|
|
|
|
|
serv->id = id++;
|
|
|
|
serv->sok = -1;
|
2012-10-22 08:50:36 -04:00
|
|
|
strcpy (serv->nick, prefs.hex_irc_nick1);
|
2011-02-23 22:14:30 -05:00
|
|
|
server_set_defaults (serv);
|
|
|
|
|
|
|
|
serv_list = g_slist_prepend (serv_list, serv);
|
|
|
|
|
|
|
|
fe_new_server (serv);
|
|
|
|
|
|
|
|
return serv;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
is_server (server *serv)
|
|
|
|
{
|
|
|
|
return g_slist_find (serv_list, serv) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_set_defaults (server *serv)
|
|
|
|
{
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (serv->chantypes);
|
|
|
|
g_free (serv->chanmodes);
|
|
|
|
g_free (serv->nick_prefixes);
|
|
|
|
g_free (serv->nick_modes);
|
|
|
|
|
|
|
|
serv->chantypes = g_strdup ("#&!+");
|
|
|
|
serv->chanmodes = g_strdup ("beI,k,l");
|
|
|
|
serv->nick_prefixes = g_strdup ("@%+");
|
|
|
|
serv->nick_modes = g_strdup ("ohv");
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2015-01-18 05:10:04 -05:00
|
|
|
server_set_encoding (serv, "UTF-8");
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
serv->nickcount = 1;
|
|
|
|
serv->end_of_motd = FALSE;
|
|
|
|
serv->is_away = FALSE;
|
|
|
|
serv->supports_watch = FALSE;
|
2013-04-03 18:51:54 -04:00
|
|
|
serv->supports_monitor = FALSE;
|
2011-02-23 22:14:30 -05:00
|
|
|
serv->bad_prefix = FALSE;
|
|
|
|
serv->use_who = TRUE;
|
|
|
|
serv->have_namesx = FALSE;
|
2013-03-12 02:21:18 -04:00
|
|
|
serv->have_awaynotify = FALSE;
|
2011-02-23 22:14:30 -05:00
|
|
|
serv->have_uhnames = FALSE;
|
|
|
|
serv->have_whox = FALSE;
|
|
|
|
serv->have_idmsg = FALSE;
|
2013-04-03 17:10:09 -04:00
|
|
|
serv->have_accnotify = FALSE;
|
|
|
|
serv->have_extjoin = FALSE;
|
2013-06-23 11:24:30 -04:00
|
|
|
serv->have_server_time = FALSE;
|
2012-11-03 13:29:08 -04:00
|
|
|
serv->have_sasl = FALSE;
|
2011-02-23 22:14:30 -05:00
|
|
|
serv->have_except = FALSE;
|
Redesign the Ban List window. Closes Issues #303, #342, #427
This is a combination of 18 commits.
The first commit's message is:
Here is the initial banlist branch of RichardHitt/hexchat.
Changed files are only src/fe-gtk/{banlist.c,fe-gtk.h}.
This version works and contains my first efforts at selective
sensitization of radio buttons and control buttons.
From this point I intend to undertake a stepwise redesign.
Step 1 will be to make the existing banlist code work for
multiple simultaneous banlist windows (for different channels,
obviously). It will be a hackathon with the only goal of getting
it working.
Step 2 will be the objectization and alpha-stage tidying-up of
all the terrible looking stuff I will have done in Step 1.
This is the 2nd commit message:
Here's the post-Step-1 commit. It works for multiple banlist windows.
Note particularly what I've done to banlist.h.
Note that for many functions in banlist.c the argument is now
a banlist_info *, rather than a session *.
Note in banlist.c the initialization of array modes[] which
contains driving information for the checkboxes.
Of course those checkboxes aren't yet implemented. Maybe in Step 2
I will change to checkboxes from radio buttons; but definitely I will
change to letting modes[] drive processing.
This is the 3rd commit message:
Converted to checkboxes. Much additional work.
Note that the infrastructure for Auto-invite is not yet
present in the hexchat tree. I'm nearly done with banlist,
I think!
This is the 4th commit message:
Fleshed out 'invite'. Tagged masks uniformly, e.g. (b) (e) (I).
General cleanup, nearly at the point of beta quality.
This is the 5th commit message:
Added fourth mode type: quiet. Did lots and lots of cleanup. Beta-ready?
This is the 6th commit message:
Get the banlist timestamps properly sortable.
This is the 7th commit message:
Redesign the supports_foo() routines. Now they're responsible for setting
the flags in ->capable, ->readable, ->writeable.
This is the 8th commit message:
Deleted a couple of RBH comments.
This is the 9th commit message:
Now the ESC key will close the banlist window.
This is the 10th commit message:
Fix the fe-text occurrence of fe_add_ban_list().
This is the 11th commit message:
Fixed also fe_ban_list_end() and removed fe_is_banwindow().
This is the 12th commit message:
Use old-style initialization for array of structures modes[]
This is the 13th commit message:
Oops, incomplete regression of modes[] initialization. This fixes.
This is the 14th commit message:
Fixed strptime buy implementing a special version here.
Fixed column width concerns by setting resizable and autosize.
This is the 15th commit message:
Get rid of testing line.
This is the 16th commit message:
Changed to gtkutil_destroy_on_esc ()
This is the 17th commit message:
Remove no-longer-used functnion
This is the 18th commit message:
Minor cleanups to banlist.c, banlist.h
Please enter the commit message for your changes. Lines starting
with '#' will be ignored, and an empty message aborts the commit.
Author: RichardHitt <rbh00@netcom.com>
Committer: Richard Hitt <rbh00@f17.rbh00.pacbell.net>
Not currently on any branch.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: src/common/fe.h
modified: src/common/hexchat.h
modified: src/common/inbound.c
modified: src/common/modes.c
modified: src/common/proto-irc.c
modified: src/common/server.c
modified: src/fe-gtk/banlist.c
modified: src/fe-gtk/banlist.h
modified: src/fe-gtk/fe-gtk.c
modified: src/fe-gtk/fe-gtk.h
modified: src/fe-gtk/maingui.c
modified: src/fe-text/fe-text.c
2013-03-05 03:13:51 -05:00
|
|
|
serv->have_invite = FALSE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
server_get_network (server *serv, gboolean fallback)
|
|
|
|
{
|
2013-05-25 17:31:45 -04:00
|
|
|
/* check the network list */
|
2011-02-23 22:14:30 -05:00
|
|
|
if (serv->network)
|
|
|
|
return ((ircnet *)serv->network)->name;
|
|
|
|
|
2013-05-25 17:31:45 -04:00
|
|
|
/* check the network name given in 005 NETWORK=... */
|
|
|
|
if (serv->server_session && *serv->server_session->channel)
|
|
|
|
return serv->server_session->channel;
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
if (fallback)
|
|
|
|
return serv->servername;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_set_name (server *serv, char *name)
|
|
|
|
{
|
|
|
|
GSList *list = sess_list;
|
|
|
|
session *sess;
|
|
|
|
|
|
|
|
if (name[0] == 0)
|
|
|
|
name = serv->hostname;
|
|
|
|
|
|
|
|
/* strncpy parameters must NOT overlap */
|
|
|
|
if (name != serv->servername)
|
|
|
|
{
|
|
|
|
safe_strcpy (serv->servername, name, sizeof (serv->servername));
|
|
|
|
}
|
|
|
|
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
sess = (session *) list->data;
|
|
|
|
if (sess->server == serv)
|
|
|
|
fe_set_title (sess);
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (serv->server_session->type == SESS_SERVER)
|
|
|
|
{
|
|
|
|
if (serv->network)
|
|
|
|
{
|
|
|
|
safe_strcpy (serv->server_session->channel, ((ircnet *)serv->network)->name, CHANLEN);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
safe_strcpy (serv->server_session->channel, name, CHANLEN);
|
|
|
|
}
|
|
|
|
fe_set_channel (serv->server_session);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct away_msg *
|
|
|
|
server_away_find_message (server *serv, char *nick)
|
|
|
|
{
|
|
|
|
struct away_msg *away;
|
|
|
|
GSList *list = away_list;
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
away = (struct away_msg *) list->data;
|
|
|
|
if (away->server == serv && !serv->p_cmp (nick, away->nick))
|
|
|
|
return away;
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_away_free_messages (server *serv)
|
|
|
|
{
|
|
|
|
GSList *list, *next;
|
|
|
|
struct away_msg *away;
|
|
|
|
|
|
|
|
list = away_list;
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
away = list->data;
|
|
|
|
next = list->next;
|
|
|
|
if (away->server == serv)
|
|
|
|
{
|
|
|
|
away_list = g_slist_remove (away_list, away);
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (away->message);
|
|
|
|
g_free (away);
|
2011-02-23 22:14:30 -05:00
|
|
|
next = away_list;
|
|
|
|
}
|
|
|
|
list = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_away_save_message (server *serv, char *nick, char *msg)
|
|
|
|
{
|
|
|
|
struct away_msg *away = server_away_find_message (serv, nick);
|
|
|
|
|
|
|
|
if (away) /* Change message for known user */
|
|
|
|
{
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (away->message);
|
|
|
|
away->message = g_strdup (msg);
|
|
|
|
}
|
|
|
|
else
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
2014-12-28 06:37:25 -05:00
|
|
|
/* Create brand new entry */
|
|
|
|
away = g_new(struct away_msg, 1);
|
|
|
|
away->server = serv;
|
|
|
|
safe_strcpy (away->nick, nick, sizeof (away->nick));
|
|
|
|
away->message = g_strdup (msg);
|
|
|
|
away_list = g_slist_prepend (away_list, away);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_free (server *serv)
|
|
|
|
{
|
|
|
|
serv->cleanup (serv);
|
|
|
|
|
|
|
|
serv_list = g_slist_remove (serv_list, serv);
|
|
|
|
|
|
|
|
dcc_notify_kill (serv);
|
|
|
|
serv->flush_queue (serv);
|
|
|
|
server_away_free_messages (serv);
|
|
|
|
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (serv->nick_modes);
|
|
|
|
g_free (serv->nick_prefixes);
|
|
|
|
g_free (serv->chanmodes);
|
|
|
|
g_free (serv->chantypes);
|
|
|
|
g_free (serv->bad_nick_prefixes);
|
|
|
|
g_free (serv->last_away_reason);
|
|
|
|
g_free (serv->encoding);
|
2015-01-31 03:52:31 -05:00
|
|
|
|
|
|
|
g_iconv_close (serv->read_converter);
|
|
|
|
g_iconv_close (serv->write_converter);
|
|
|
|
|
2013-05-11 23:44:32 -04:00
|
|
|
if (serv->favlist)
|
2013-05-14 10:52:16 -04:00
|
|
|
g_slist_free_full (serv->favlist, (GDestroyNotify) servlist_favchan_free);
|
2014-10-22 05:24:29 -04:00
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
if (serv->ctx)
|
|
|
|
_SSL_context_free (serv->ctx);
|
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
fe_server_callback (serv);
|
|
|
|
|
2014-12-28 06:37:25 -05:00
|
|
|
g_free (serv);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
notify_cleanup ();
|
|
|
|
}
|