2014-07-09 01:54:50 +02:00
|
|
|
/*
|
|
|
|
* kike.c: the experimental IRC daemon
|
|
|
|
*
|
2015-02-11 02:07:52 +01:00
|
|
|
* Copyright (c) 2014 - 2015, Přemysl Janouch <p.janouch@gmail.com>
|
2014-07-09 01:54:50 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-02-11 01:53:19 +01:00
|
|
|
#include "config.h"
|
|
|
|
#undef PROGRAM_NAME
|
2014-07-09 01:54:50 +02:00
|
|
|
#define PROGRAM_NAME "kike"
|
|
|
|
|
2015-04-11 21:12:56 +02:00
|
|
|
#define WANT_SYSLOG_LOGGING
|
2014-07-09 01:54:50 +02:00
|
|
|
#include "common.c"
|
2014-08-10 00:47:26 +02:00
|
|
|
#include "kike-replies.c"
|
2014-07-13 23:47:29 +02:00
|
|
|
#include <nl_types.h>
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
// --- Configuration (application-specific) ------------------------------------
|
|
|
|
|
|
|
|
static struct config_item g_config_table[] =
|
|
|
|
{
|
|
|
|
{ "server_name", NULL, "Server name" },
|
2014-08-05 23:11:53 +02:00
|
|
|
{ "server_info", "My server", "Brief server description" },
|
2014-07-13 21:27:38 +02:00
|
|
|
{ "motd", NULL, "MOTD filename" },
|
2014-07-13 23:47:29 +02:00
|
|
|
{ "catalog", NULL, "catgets localization catalog" },
|
2014-07-13 21:27:38 +02:00
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
{ "bind_host", NULL, "Address of the IRC server" },
|
|
|
|
{ "bind_port", "6667", "Port of the IRC server" },
|
|
|
|
{ "ssl_cert", NULL, "Server SSL certificate (PEM)" },
|
|
|
|
{ "ssl_key", NULL, "Server SSL private key (PEM)" },
|
|
|
|
|
2014-08-08 01:26:56 +02:00
|
|
|
{ "operators", NULL, "IRCop SSL cert. fingerprints" },
|
|
|
|
|
2014-08-02 15:01:48 +02:00
|
|
|
{ "max_connections", "0", "Global connection limit" },
|
2014-08-01 20:50:56 +02:00
|
|
|
{ "ping_interval", "180", "Interval between PING's (sec)" },
|
2014-07-09 01:54:50 +02:00
|
|
|
{ NULL, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
// --- Signals -----------------------------------------------------------------
|
|
|
|
|
|
|
|
static int g_signal_pipe[2]; ///< A pipe used to signal... signals
|
|
|
|
|
|
|
|
/// Program termination has been requested by a signal
|
|
|
|
static volatile sig_atomic_t g_termination_requested;
|
|
|
|
|
|
|
|
static void
|
|
|
|
sigterm_handler (int signum)
|
|
|
|
{
|
|
|
|
(void) signum;
|
|
|
|
|
|
|
|
g_termination_requested = true;
|
|
|
|
|
|
|
|
int original_errno = errno;
|
|
|
|
if (write (g_signal_pipe[1], "t", 1) == -1)
|
|
|
|
soft_assert (errno == EAGAIN);
|
|
|
|
errno = original_errno;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
setup_signal_handlers (void)
|
|
|
|
{
|
|
|
|
if (pipe (g_signal_pipe) == -1)
|
2014-07-16 23:23:03 +02:00
|
|
|
exit_fatal ("%s: %s", "pipe", strerror (errno));
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
set_cloexec (g_signal_pipe[0]);
|
|
|
|
set_cloexec (g_signal_pipe[1]);
|
|
|
|
|
|
|
|
// So that the pipe cannot overflow; it would make write() block within
|
|
|
|
// the signal handler, which is something we really don't want to happen.
|
|
|
|
// The same holds true for read().
|
|
|
|
set_blocking (g_signal_pipe[0], false);
|
|
|
|
set_blocking (g_signal_pipe[1], false);
|
|
|
|
|
|
|
|
signal (SIGPIPE, SIG_IGN);
|
|
|
|
|
|
|
|
struct sigaction sa;
|
|
|
|
sa.sa_flags = SA_RESTART;
|
|
|
|
sigemptyset (&sa.sa_mask);
|
|
|
|
sa.sa_handler = sigterm_handler;
|
|
|
|
if (sigaction (SIGINT, &sa, NULL) == -1
|
|
|
|
|| sigaction (SIGTERM, &sa, NULL) == -1)
|
2014-07-16 23:23:03 +02:00
|
|
|
exit_fatal ("%s: %s", "sigaction", strerror (errno));
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-08-10 02:22:52 +02:00
|
|
|
// --- Rate limiter ------------------------------------------------------------
|
|
|
|
|
|
|
|
struct flood_detector
|
|
|
|
{
|
|
|
|
unsigned interval; ///< Interval for the limit
|
|
|
|
unsigned limit; ///< Maximum number of events allowed
|
|
|
|
|
|
|
|
time_t *timestamps; ///< Timestamps of last events
|
|
|
|
unsigned pos; ///< Index of the oldest event
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
flood_detector_init (struct flood_detector *self,
|
|
|
|
unsigned interval, unsigned limit)
|
|
|
|
{
|
|
|
|
self->interval = interval;
|
|
|
|
self->limit = limit;
|
|
|
|
self->timestamps = xcalloc (limit + 1, sizeof *self->timestamps);
|
|
|
|
self->pos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
flood_detector_free (struct flood_detector *self)
|
|
|
|
{
|
|
|
|
free (self->timestamps);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
flood_detector_check (struct flood_detector *self)
|
|
|
|
{
|
|
|
|
time_t now = time (NULL);
|
|
|
|
self->timestamps[self->pos++] = now;
|
|
|
|
if (self->pos > self->limit)
|
|
|
|
self->pos = 0;
|
|
|
|
|
|
|
|
time_t begin = now - self->interval;
|
|
|
|
size_t count = 0;
|
|
|
|
for (size_t i = 0; i <= self->limit; i++)
|
|
|
|
if (self->timestamps[i] >= begin)
|
|
|
|
count++;
|
|
|
|
return count <= self->limit;
|
|
|
|
}
|
|
|
|
|
2014-07-13 03:26:33 +02:00
|
|
|
// --- IRC token validation ----------------------------------------------------
|
|
|
|
|
2014-07-14 00:10:59 +02:00
|
|
|
// Use the enum only if applicable and a simple boolean isn't sufficient.
|
|
|
|
|
2014-07-13 03:26:33 +02:00
|
|
|
enum validation_result
|
|
|
|
{
|
|
|
|
VALIDATION_OK,
|
|
|
|
VALIDATION_ERROR_EMPTY,
|
|
|
|
VALIDATION_ERROR_TOO_LONG,
|
|
|
|
VALIDATION_ERROR_INVALID
|
|
|
|
};
|
|
|
|
|
|
|
|
// Everything as per RFC 2812
|
2014-07-14 02:35:38 +02:00
|
|
|
#define IRC_MAX_NICKNAME 9
|
|
|
|
#define IRC_MAX_HOSTNAME 63
|
2014-08-04 00:35:01 +02:00
|
|
|
#define IRC_MAX_CHANNEL_NAME 50
|
2014-07-14 02:35:38 +02:00
|
|
|
#define IRC_MAX_MESSAGE_LENGTH 510
|
2014-07-13 03:26:33 +02:00
|
|
|
|
2014-07-13 04:30:23 +02:00
|
|
|
static bool
|
|
|
|
irc_regex_match (const char *regex, const char *s)
|
|
|
|
{
|
|
|
|
static struct str_map cache;
|
|
|
|
static bool initialized;
|
2014-07-13 03:26:33 +02:00
|
|
|
|
2014-07-13 04:30:23 +02:00
|
|
|
if (!initialized)
|
|
|
|
{
|
|
|
|
regex_cache_init (&cache);
|
|
|
|
initialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct error *e = NULL;
|
|
|
|
bool result = regex_cache_match (&cache, regex,
|
|
|
|
REG_EXTENDED | REG_NOSUB, s, &e);
|
|
|
|
hard_assert (!e);
|
|
|
|
return result;
|
|
|
|
}
|
2014-07-13 03:26:33 +02:00
|
|
|
|
|
|
|
static const char *
|
|
|
|
irc_validate_to_str (enum validation_result result)
|
|
|
|
{
|
|
|
|
switch (result)
|
|
|
|
{
|
|
|
|
case VALIDATION_OK: return "success";
|
|
|
|
case VALIDATION_ERROR_EMPTY: return "the value is empty";
|
|
|
|
case VALIDATION_ERROR_INVALID: return "invalid format";
|
|
|
|
case VALIDATION_ERROR_TOO_LONG: return "the value is too long";
|
|
|
|
default: abort ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-13 04:30:23 +02:00
|
|
|
// Anything to keep it as short as possible
|
|
|
|
#define SN "[0-9A-Za-z][-0-9A-Za-z]*[0-9A-Za-z]*"
|
|
|
|
#define N4 "[0-9]{1,3}"
|
|
|
|
#define N6 "[0-9ABCDEFabcdef]{1,}"
|
|
|
|
|
|
|
|
#define LE "A-Za-z"
|
2014-07-15 23:28:00 +02:00
|
|
|
#define SP "][\\\\`_^{|}"
|
2014-07-13 03:26:33 +02:00
|
|
|
|
|
|
|
static enum validation_result
|
|
|
|
irc_validate_hostname (const char *hostname)
|
|
|
|
{
|
|
|
|
if (!*hostname)
|
|
|
|
return VALIDATION_ERROR_EMPTY;
|
2014-07-13 04:30:23 +02:00
|
|
|
if (!irc_regex_match ("^" SN "(\\." SN ")*$", hostname))
|
2014-07-13 03:26:33 +02:00
|
|
|
return VALIDATION_ERROR_INVALID;
|
2014-07-14 02:35:38 +02:00
|
|
|
if (strlen (hostname) > IRC_MAX_HOSTNAME)
|
2014-07-13 03:26:33 +02:00
|
|
|
return VALIDATION_ERROR_TOO_LONG;
|
|
|
|
return VALIDATION_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
irc_is_valid_hostaddr (const char *hostaddr)
|
|
|
|
{
|
2014-07-13 04:30:23 +02:00
|
|
|
if (irc_regex_match ("^" N4 "\\." N4 "\\." N4 "\\." N4 "$", hostaddr)
|
|
|
|
|| irc_regex_match ("^" N6 ":" N6 ":" N6 ":" N6 ":"
|
|
|
|
N6 ":" N6 ":" N6 ":" N6 "$", hostaddr)
|
|
|
|
|| irc_regex_match ("^0:0:0:0:0:(0|[Ff]{4}):"
|
|
|
|
N4 "\\." N4 "\\." N4 "\\." N4 "$", hostaddr))
|
2014-07-13 03:26:33 +02:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
irc_is_valid_host (const char *host)
|
|
|
|
{
|
|
|
|
return irc_validate_hostname (host) == VALIDATION_OK
|
|
|
|
|| irc_is_valid_hostaddr (host);
|
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static bool
|
|
|
|
irc_is_valid_user (const char *user)
|
|
|
|
{
|
|
|
|
return irc_regex_match ("^[^\r\n @]+$", user);
|
|
|
|
}
|
|
|
|
|
2014-07-13 03:26:33 +02:00
|
|
|
static bool
|
|
|
|
irc_validate_nickname (const char *nickname)
|
|
|
|
{
|
|
|
|
if (!*nickname)
|
|
|
|
return VALIDATION_ERROR_EMPTY;
|
2014-07-15 23:28:00 +02:00
|
|
|
if (!irc_regex_match ("^[" SP LE "][" SP LE "0-9-]*$", nickname))
|
2014-07-13 03:26:33 +02:00
|
|
|
return VALIDATION_ERROR_INVALID;
|
2014-07-14 02:35:38 +02:00
|
|
|
if (strlen (nickname) > IRC_MAX_NICKNAME)
|
2014-07-13 03:26:33 +02:00
|
|
|
return VALIDATION_ERROR_TOO_LONG;
|
|
|
|
return VALIDATION_OK;
|
|
|
|
}
|
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
static enum validation_result
|
|
|
|
irc_validate_channel_name (const char *channel_name)
|
|
|
|
{
|
|
|
|
if (!*channel_name)
|
|
|
|
return VALIDATION_ERROR_EMPTY;
|
|
|
|
if (*channel_name != '#' || strpbrk (channel_name, "\7\r\n ,:"))
|
|
|
|
return VALIDATION_ERROR_INVALID;
|
|
|
|
if (strlen (channel_name) > IRC_MAX_CHANNEL_NAME)
|
|
|
|
return VALIDATION_ERROR_TOO_LONG;
|
|
|
|
return VALIDATION_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
irc_is_valid_key (const char *key)
|
|
|
|
{
|
|
|
|
// XXX: should be 7-bit as well but whatever
|
|
|
|
return irc_regex_match ("^[^\r\n\f\t\v ]{1,23}$", key);
|
|
|
|
}
|
|
|
|
|
2014-07-13 03:26:33 +02:00
|
|
|
#undef SN
|
|
|
|
#undef N4
|
|
|
|
#undef N6
|
|
|
|
|
|
|
|
#undef LE
|
|
|
|
#undef SP
|
|
|
|
|
2014-08-09 22:43:18 +02:00
|
|
|
static bool
|
|
|
|
irc_is_valid_user_mask (const char *mask)
|
|
|
|
{
|
|
|
|
return irc_regex_match ("^[^!@]+![^!@]+@[^@!]+$", mask);
|
|
|
|
}
|
|
|
|
|
2014-08-08 01:26:56 +02:00
|
|
|
static bool
|
|
|
|
irc_is_valid_fingerprint (const char *fp)
|
|
|
|
{
|
2014-08-13 19:22:43 +02:00
|
|
|
return irc_regex_match ("^[a-fA-F0-9]{40}$", fp);
|
2014-08-08 01:26:56 +02:00
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
// --- Clients (equals users) --------------------------------------------------
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 00:30:46 +02:00
|
|
|
#define IRC_SUPPORTED_USER_MODES "aiwros"
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
IRC_USER_MODE_INVISIBLE = (1 << 0),
|
|
|
|
IRC_USER_MODE_RX_WALLOPS = (1 << 1),
|
|
|
|
IRC_USER_MODE_RESTRICTED = (1 << 2),
|
|
|
|
IRC_USER_MODE_OPERATOR = (1 << 3),
|
|
|
|
IRC_USER_MODE_RX_SERVER_NOTICES = (1 << 4)
|
|
|
|
};
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
struct client
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2015-02-28 20:07:37 +01:00
|
|
|
LIST_HEADER (struct client)
|
2014-07-09 01:54:50 +02:00
|
|
|
struct server_context *ctx; ///< Server context
|
|
|
|
|
|
|
|
int socket_fd; ///< The TCP socket
|
|
|
|
struct str read_buffer; ///< Unprocessed input
|
|
|
|
struct str write_buffer; ///< Output yet to be sent out
|
|
|
|
|
2015-02-12 01:53:03 +01:00
|
|
|
struct poller_fd socket_event; ///< The socket can be read/written to
|
|
|
|
struct poller_timer ping_timer; ///< We should send a ping
|
|
|
|
struct poller_timer timeout_timer; ///< Connection seems to be dead
|
|
|
|
struct poller_timer kill_timer; ///< Hard kill timeout
|
|
|
|
|
2014-07-19 17:44:49 +02:00
|
|
|
bool initialized; ///< Has any data been received yet?
|
|
|
|
bool registered; ///< The user has registered
|
2014-08-02 00:09:23 +02:00
|
|
|
bool closing_link; ///< Closing link
|
2015-03-23 22:57:13 +01:00
|
|
|
bool half_closed; ///< Closing link: conn. is half-closed
|
2014-07-14 02:35:38 +02:00
|
|
|
|
2014-07-19 17:44:49 +02:00
|
|
|
bool ssl_rx_want_tx; ///< SSL_read() wants to write
|
|
|
|
bool ssl_tx_want_rx; ///< SSL_write() wants to read
|
2014-07-09 01:54:50 +02:00
|
|
|
SSL *ssl; ///< SSL connection
|
2014-08-08 01:26:56 +02:00
|
|
|
char *ssl_cert_fingerprint; ///< Client certificate fingerprint
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
char *nickname; ///< IRC nickname (main identifier)
|
|
|
|
char *username; ///< IRC username
|
2014-07-13 05:38:05 +02:00
|
|
|
char *realname; ///< IRC realname (e-mail)
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
char *hostname; ///< Hostname shown to the network
|
2014-08-19 20:54:16 +02:00
|
|
|
char *address; ///< Full address including port
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
unsigned mode; ///< User's mode
|
|
|
|
char *away_message; ///< Away message
|
2014-08-05 23:11:53 +02:00
|
|
|
time_t last_active; ///< Last PRIVMSG, to get idle time
|
2014-08-10 02:22:52 +02:00
|
|
|
struct flood_detector antiflood; ///< Flood detector
|
2014-07-09 01:54:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
client_init (struct client *self)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
memset (self, 0, sizeof *self);
|
|
|
|
|
|
|
|
self->socket_fd = -1;
|
|
|
|
str_init (&self->read_buffer);
|
|
|
|
str_init (&self->write_buffer);
|
2014-08-10 02:22:52 +02:00
|
|
|
// TODO: make this configurable and more fine-grained
|
|
|
|
flood_detector_init (&self->antiflood, 10, 20);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
client_free (struct client *self)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
if (!soft_assert (self->socket_fd == -1))
|
|
|
|
xclose (self->socket_fd);
|
|
|
|
if (self->ssl)
|
|
|
|
SSL_free (self->ssl);
|
|
|
|
|
|
|
|
str_free (&self->read_buffer);
|
|
|
|
str_free (&self->write_buffer);
|
|
|
|
|
|
|
|
free (self->nickname);
|
|
|
|
free (self->username);
|
2014-07-13 05:38:05 +02:00
|
|
|
free (self->realname);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
free (self->hostname);
|
2014-08-19 20:54:16 +02:00
|
|
|
free (self->address);
|
2014-07-09 01:54:50 +02:00
|
|
|
free (self->away_message);
|
2014-08-10 02:22:52 +02:00
|
|
|
flood_detector_free (&self->antiflood);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
static void client_close_link (struct client *, const char *);
|
|
|
|
static void client_send (struct client *, const char *, ...)
|
|
|
|
ATTRIBUTE_PRINTF (2, 3);
|
|
|
|
static void client_cancel_timers (struct client *);
|
|
|
|
static void client_set_kill_timer (struct client *);
|
|
|
|
static void client_update_poller (struct client *, const struct pollfd *);
|
2014-08-07 20:39:52 +02:00
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
// --- Channels ----------------------------------------------------------------
|
2014-07-17 22:54:16 +02:00
|
|
|
|
2014-08-07 23:36:46 +02:00
|
|
|
#define IRC_SUPPORTED_CHAN_MODES "ov" "beI" "imnqpst" "kl"
|
2014-07-14 00:30:46 +02:00
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
IRC_CHAN_MODE_INVITE_ONLY = (1 << 0),
|
|
|
|
IRC_CHAN_MODE_MODERATED = (1 << 1),
|
|
|
|
IRC_CHAN_MODE_NO_OUTSIDE_MSGS = (1 << 2),
|
2014-07-14 00:30:46 +02:00
|
|
|
IRC_CHAN_MODE_QUIET = (1 << 3),
|
2014-07-09 01:54:50 +02:00
|
|
|
IRC_CHAN_MODE_PRIVATE = (1 << 4),
|
2014-07-14 00:30:46 +02:00
|
|
|
IRC_CHAN_MODE_SECRET = (1 << 5),
|
|
|
|
IRC_CHAN_MODE_PROTECTED_TOPIC = (1 << 6),
|
|
|
|
|
|
|
|
IRC_CHAN_MODE_OPERATOR = (1 << 7),
|
|
|
|
IRC_CHAN_MODE_VOICE = (1 << 8)
|
|
|
|
};
|
|
|
|
|
|
|
|
struct channel_user
|
|
|
|
{
|
2015-02-28 20:07:37 +01:00
|
|
|
LIST_HEADER (struct channel_user)
|
2014-07-14 00:30:46 +02:00
|
|
|
|
|
|
|
unsigned modes;
|
2014-08-09 22:57:29 +02:00
|
|
|
struct client *c;
|
2014-07-09 01:54:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct channel
|
|
|
|
{
|
|
|
|
struct server_context *ctx; ///< Server context
|
|
|
|
|
|
|
|
char *name; ///< Channel name
|
|
|
|
unsigned modes; ///< Channel modes
|
|
|
|
char *key; ///< Channel key
|
|
|
|
long user_limit; ///< User limit or -1
|
|
|
|
|
2014-08-02 23:31:41 +02:00
|
|
|
char *topic; ///< Channel topic
|
|
|
|
|
2014-07-14 00:30:46 +02:00
|
|
|
struct channel_user *users; ///< Channel users
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
struct str_vector ban_list; ///< Ban list
|
|
|
|
struct str_vector exception_list; ///< Exceptions from bans
|
|
|
|
struct str_vector invite_list; ///< Exceptions from +I
|
|
|
|
};
|
|
|
|
|
2014-08-09 23:20:21 +02:00
|
|
|
static struct channel *
|
|
|
|
channel_new (void)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-08-09 23:20:21 +02:00
|
|
|
struct channel *self = xcalloc (1, sizeof *self);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
self->user_limit = -1;
|
|
|
|
self->topic = xstrdup ("");
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
str_vector_init (&self->ban_list);
|
|
|
|
str_vector_init (&self->exception_list);
|
|
|
|
str_vector_init (&self->invite_list);
|
2014-08-09 23:20:21 +02:00
|
|
|
return self;
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-08-09 23:20:21 +02:00
|
|
|
channel_delete (struct channel *self)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
free (self->name);
|
|
|
|
free (self->key);
|
2014-08-02 23:31:41 +02:00
|
|
|
free (self->topic);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 00:30:46 +02:00
|
|
|
struct channel_user *link, *tmp;
|
|
|
|
for (link = self->users; link; link = tmp)
|
|
|
|
{
|
|
|
|
tmp = link->next;
|
|
|
|
free (link);
|
|
|
|
}
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
str_vector_free (&self->ban_list);
|
|
|
|
str_vector_free (&self->exception_list);
|
|
|
|
str_vector_free (&self->invite_list);
|
2014-08-09 23:20:21 +02:00
|
|
|
|
|
|
|
free (self);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
static char *
|
|
|
|
channel_get_mode (struct channel *self, bool disclose_secrets)
|
|
|
|
{
|
|
|
|
struct str mode;
|
|
|
|
str_init (&mode);
|
|
|
|
|
|
|
|
unsigned m = self->modes;
|
|
|
|
if (m & IRC_CHAN_MODE_INVITE_ONLY) str_append_c (&mode, 'i');
|
|
|
|
if (m & IRC_CHAN_MODE_MODERATED) str_append_c (&mode, 'm');
|
|
|
|
if (m & IRC_CHAN_MODE_NO_OUTSIDE_MSGS) str_append_c (&mode, 'n');
|
|
|
|
if (m & IRC_CHAN_MODE_QUIET) str_append_c (&mode, 'q');
|
|
|
|
if (m & IRC_CHAN_MODE_PRIVATE) str_append_c (&mode, 'p');
|
|
|
|
if (m & IRC_CHAN_MODE_SECRET) str_append_c (&mode, 's');
|
|
|
|
if (m & IRC_CHAN_MODE_PROTECTED_TOPIC) str_append_c (&mode, 't');
|
|
|
|
|
|
|
|
if (self->user_limit != -1) str_append_c (&mode, 'l');
|
|
|
|
if (self->key) str_append_c (&mode, 'k');
|
|
|
|
|
2014-08-09 01:36:21 +02:00
|
|
|
// XXX: is it correct to split it? Try it on an existing implementation.
|
|
|
|
if (disclose_secrets)
|
|
|
|
{
|
|
|
|
if (self->user_limit != -1)
|
|
|
|
str_append_printf (&mode, " %ld", self->user_limit);
|
|
|
|
if (self->key)
|
|
|
|
str_append_printf (&mode, " %s", self->key);
|
|
|
|
}
|
2014-08-04 00:35:01 +02:00
|
|
|
return str_steal (&mode);
|
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
static struct channel_user *
|
|
|
|
channel_get_user (const struct channel *chan, const struct client *c)
|
|
|
|
{
|
|
|
|
for (struct channel_user *iter = chan->users; iter; iter = iter->next)
|
|
|
|
if (iter->c == c)
|
|
|
|
return iter;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct channel_user *
|
|
|
|
channel_add_user (struct channel *chan, struct client *c)
|
|
|
|
{
|
|
|
|
struct channel_user *link = xcalloc (1, sizeof *link);
|
|
|
|
link->c = c;
|
|
|
|
LIST_PREPEND (chan->users, link);
|
|
|
|
return link;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
channel_remove_user (struct channel *chan, struct channel_user *user)
|
|
|
|
{
|
|
|
|
LIST_UNLINK (chan->users, user);
|
|
|
|
free (user);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
channel_user_count (const struct channel *chan)
|
|
|
|
{
|
|
|
|
size_t result = 0;
|
|
|
|
for (struct channel_user *iter = chan->users; iter; iter = iter->next)
|
|
|
|
result++;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- IRC server context ------------------------------------------------------
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
struct server_context
|
|
|
|
{
|
2014-08-10 02:53:36 +02:00
|
|
|
int *listen_fds; ///< Listening socket FD's
|
2015-02-12 01:53:03 +01:00
|
|
|
struct poller_fd *listen_events; ///< New connections available
|
2014-08-09 00:01:33 +02:00
|
|
|
size_t n_listen_fds; ///< Number of listening sockets
|
|
|
|
|
2014-07-12 21:59:17 +02:00
|
|
|
SSL_CTX *ssl_ctx; ///< SSL context
|
2014-08-10 02:53:36 +02:00
|
|
|
struct client *clients; ///< Clients
|
2014-08-02 15:01:48 +02:00
|
|
|
unsigned n_clients; ///< Current number of connections
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
struct str_map users; ///< Maps nicknames to clients
|
2014-07-09 01:54:50 +02:00
|
|
|
struct str_map channels; ///< Maps channel names to data
|
2014-07-14 02:35:38 +02:00
|
|
|
struct str_map handlers; ///< Message handlers
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
struct poller poller; ///< Manages polled description
|
2015-04-10 03:13:36 +02:00
|
|
|
struct poller_timer quit_timer; ///< Quit timeout timer
|
2014-07-12 21:59:17 +02:00
|
|
|
bool quitting; ///< User requested quitting
|
2014-07-09 01:54:50 +02:00
|
|
|
bool polling; ///< The event loop is running
|
2014-07-13 21:27:38 +02:00
|
|
|
|
2015-02-12 01:53:03 +01:00
|
|
|
struct poller_fd signal_event; ///< Got a signal
|
|
|
|
|
2014-08-01 20:50:56 +02:00
|
|
|
struct str_map config; ///< Server configuration
|
|
|
|
char *server_name; ///< Our server name
|
|
|
|
unsigned ping_interval; ///< Ping interval in seconds
|
2014-08-02 15:01:48 +02:00
|
|
|
unsigned max_connections; ///< Max. connections allowed or 0
|
2014-07-13 21:27:38 +02:00
|
|
|
struct str_vector motd; ///< MOTD (none if empty)
|
2014-07-13 23:47:29 +02:00
|
|
|
nl_catd catalog; ///< Message catalog for server msgs
|
2014-08-08 01:26:56 +02:00
|
|
|
struct str_map operators; ///< SSL cert. fingerprints for IRCops
|
2014-07-09 01:54:50 +02:00
|
|
|
};
|
|
|
|
|
2015-04-10 03:13:36 +02:00
|
|
|
static void
|
|
|
|
on_irc_quit_timeout (void *user_data)
|
|
|
|
{
|
|
|
|
struct server_context *ctx = user_data;
|
|
|
|
// Clients are closed in server_context_free()
|
|
|
|
ctx->polling = false;
|
|
|
|
}
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
static void
|
|
|
|
server_context_init (struct server_context *self)
|
|
|
|
{
|
2014-08-10 02:53:36 +02:00
|
|
|
self->listen_fds = NULL;
|
2015-02-12 01:53:03 +01:00
|
|
|
self->listen_events = NULL;
|
2014-08-09 00:01:33 +02:00
|
|
|
self->n_listen_fds = 0;
|
2014-07-09 01:54:50 +02:00
|
|
|
self->clients = NULL;
|
2014-08-02 15:01:48 +02:00
|
|
|
self->n_clients = 0;
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
str_map_init (&self->users);
|
2014-07-16 21:23:30 +02:00
|
|
|
self->users.key_xfrm = irc_strxfrm;
|
2014-07-09 01:54:50 +02:00
|
|
|
str_map_init (&self->channels);
|
2014-07-16 21:23:30 +02:00
|
|
|
self->channels.key_xfrm = irc_strxfrm;
|
2014-08-09 23:20:21 +02:00
|
|
|
self->channels.free = (void (*) (void *)) channel_delete;
|
2014-07-14 02:35:38 +02:00
|
|
|
str_map_init (&self->handlers);
|
2014-07-16 21:23:30 +02:00
|
|
|
self->handlers.key_xfrm = irc_strxfrm;
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
poller_init (&self->poller);
|
2014-07-12 21:59:17 +02:00
|
|
|
self->quitting = false;
|
2014-07-09 01:54:50 +02:00
|
|
|
self->polling = false;
|
2015-04-10 03:13:36 +02:00
|
|
|
poller_timer_init (&self->quit_timer, &self->poller);
|
|
|
|
self->quit_timer.dispatcher = on_irc_quit_timeout;
|
|
|
|
self->quit_timer.user_data = self;
|
2014-07-13 21:27:38 +02:00
|
|
|
|
2015-02-12 01:53:03 +01:00
|
|
|
memset (&self->signal_event, 0, sizeof self->signal_event);
|
|
|
|
|
2014-08-02 15:01:48 +02:00
|
|
|
str_map_init (&self->config);
|
|
|
|
self->config.free = free;
|
|
|
|
load_config_defaults (&self->config, g_config_table);
|
|
|
|
|
|
|
|
self->server_name = NULL;
|
|
|
|
self->ping_interval = 0;
|
|
|
|
self->max_connections = 0;
|
2014-07-13 21:27:38 +02:00
|
|
|
str_vector_init (&self->motd);
|
2014-07-13 23:47:29 +02:00
|
|
|
self->catalog = (nl_catd) -1;
|
2014-08-08 01:26:56 +02:00
|
|
|
str_map_init (&self->operators);
|
|
|
|
// The regular irc_strxfrm() is sufficient for fingerprints
|
|
|
|
self->operators.key_xfrm = irc_strxfrm;
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
server_context_free (struct server_context *self)
|
|
|
|
{
|
|
|
|
str_map_free (&self->config);
|
|
|
|
|
2014-08-09 00:01:33 +02:00
|
|
|
for (size_t i = 0; i < self->n_listen_fds; i++)
|
2015-02-12 01:53:03 +01:00
|
|
|
{
|
2014-08-09 00:01:33 +02:00
|
|
|
xclose (self->listen_fds[i]);
|
2015-02-12 01:53:03 +01:00
|
|
|
self->listen_events[i].closed = true;
|
|
|
|
poller_fd_reset (&self->listen_events[i]);
|
|
|
|
}
|
2014-08-10 02:53:36 +02:00
|
|
|
free (self->listen_fds);
|
2015-02-12 01:53:03 +01:00
|
|
|
free (self->listen_events);
|
2014-08-10 02:53:36 +02:00
|
|
|
|
2014-07-12 21:59:17 +02:00
|
|
|
if (self->ssl_ctx)
|
|
|
|
SSL_CTX_free (self->ssl_ctx);
|
2014-07-14 20:54:47 +02:00
|
|
|
struct client *link, *tmp;
|
2014-07-09 01:54:50 +02:00
|
|
|
for (link = self->clients; link; link = tmp)
|
|
|
|
{
|
|
|
|
tmp = link->next;
|
2014-07-14 20:54:47 +02:00
|
|
|
client_free (link);
|
2014-07-09 01:54:50 +02:00
|
|
|
free (link);
|
|
|
|
}
|
|
|
|
|
2014-07-13 04:59:22 +02:00
|
|
|
free (self->server_name);
|
2014-07-09 01:54:50 +02:00
|
|
|
str_map_free (&self->users);
|
|
|
|
str_map_free (&self->channels);
|
2014-07-14 02:35:38 +02:00
|
|
|
str_map_free (&self->handlers);
|
2014-07-09 01:54:50 +02:00
|
|
|
poller_free (&self->poller);
|
2014-07-13 21:27:38 +02:00
|
|
|
|
|
|
|
str_vector_free (&self->motd);
|
2014-07-13 23:47:29 +02:00
|
|
|
if (self->catalog != (nl_catd) -1)
|
|
|
|
catclose (self->catalog);
|
2014-08-08 01:26:56 +02:00
|
|
|
str_map_free (&self->operators);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-08-04 01:49:46 +02:00
|
|
|
static const char *
|
|
|
|
irc_get_text (struct server_context *ctx, int id, const char *def)
|
|
|
|
{
|
|
|
|
if (!soft_assert (def != NULL))
|
|
|
|
def = "";
|
|
|
|
if (ctx->catalog == (nl_catd) -1)
|
|
|
|
return def;
|
|
|
|
return catgets (ctx->catalog, 1, id, def);
|
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
static void
|
|
|
|
irc_try_finish_quit (struct server_context *ctx)
|
2014-08-05 23:08:29 +02:00
|
|
|
{
|
2014-08-09 23:51:27 +02:00
|
|
|
if (!ctx->n_clients && ctx->quitting)
|
2015-04-10 03:13:36 +02:00
|
|
|
{
|
|
|
|
poller_timer_reset (&ctx->quit_timer);
|
2014-08-09 23:51:27 +02:00
|
|
|
ctx->polling = false;
|
2015-04-10 03:13:36 +02:00
|
|
|
}
|
2014-08-05 23:08:29 +02:00
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
static void
|
|
|
|
irc_initiate_quit (struct server_context *ctx)
|
2014-08-04 01:49:46 +02:00
|
|
|
{
|
2014-08-09 23:51:27 +02:00
|
|
|
print_status ("shutting down");
|
2014-08-04 01:49:46 +02:00
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
for (struct client *iter = ctx->clients; iter; iter = iter->next)
|
|
|
|
if (!iter->closing_link)
|
|
|
|
client_close_link (iter, "Shutting down");
|
2014-08-04 01:49:46 +02:00
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
for (size_t i = 0; i < ctx->n_listen_fds; i++)
|
|
|
|
{
|
|
|
|
xclose (ctx->listen_fds[i]);
|
2015-02-12 01:53:03 +01:00
|
|
|
ctx->listen_events[i].closed = true;
|
|
|
|
poller_fd_reset (&ctx->listen_events[i]);
|
2014-08-09 23:51:27 +02:00
|
|
|
}
|
|
|
|
ctx->n_listen_fds = 0;
|
2014-07-14 02:35:38 +02:00
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
ctx->quitting = true;
|
2015-04-10 03:13:36 +02:00
|
|
|
poller_timer_set (&ctx->quit_timer, 5000);
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_try_finish_quit (ctx);
|
2014-08-04 01:49:46 +02:00
|
|
|
}
|
2014-07-14 02:35:38 +02:00
|
|
|
|
2014-08-04 01:49:46 +02:00
|
|
|
static struct channel *
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_channel_create (struct server_context *ctx, const char *name)
|
2014-08-04 01:49:46 +02:00
|
|
|
{
|
2014-08-09 23:20:21 +02:00
|
|
|
struct channel *chan = channel_new ();
|
2014-08-04 01:49:46 +02:00
|
|
|
chan->ctx = ctx;
|
|
|
|
chan->name = xstrdup (name);
|
2014-08-09 23:20:21 +02:00
|
|
|
str_map_set (&ctx->channels, name, chan);
|
2014-08-04 01:49:46 +02:00
|
|
|
return chan;
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
|
|
|
|
2014-08-04 01:49:46 +02:00
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_channel_destroy_if_empty (struct server_context *ctx, struct channel *chan)
|
2014-08-04 01:49:46 +02:00
|
|
|
{
|
|
|
|
if (!chan->users)
|
|
|
|
str_map_set (&ctx->channels, chan->name, NULL);
|
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
static void
|
|
|
|
irc_send_to_roommates (struct client *c, const char *message)
|
|
|
|
{
|
|
|
|
struct str_map targets;
|
|
|
|
str_map_init (&targets);
|
|
|
|
targets.key_xfrm = irc_strxfrm;
|
2014-08-04 01:49:46 +02:00
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
|
|
|
struct channel *chan;
|
|
|
|
while ((chan = str_map_iter_next (&iter)))
|
|
|
|
{
|
|
|
|
if (chan->modes & IRC_CHAN_MODE_QUIET
|
|
|
|
|| !channel_get_user (chan, c))
|
|
|
|
continue;
|
|
|
|
for (struct channel_user *iter = chan->users; iter; iter = iter->next)
|
2014-08-12 23:00:42 +02:00
|
|
|
str_map_set (&targets, iter->c->nickname, iter->c);
|
2014-08-09 23:51:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
str_map_iter_init (&iter, &targets);
|
|
|
|
struct client *target;
|
|
|
|
while ((target = str_map_iter_next (&iter)))
|
2014-08-12 23:00:42 +02:00
|
|
|
if (target != c)
|
|
|
|
client_send (target, "%s", message);
|
2014-08-09 23:51:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- Clients (continued) -----------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_mode_to_str (unsigned m, struct str *out)
|
|
|
|
{
|
|
|
|
if (m & IRC_USER_MODE_INVISIBLE) str_append_c (out, 'i');
|
|
|
|
if (m & IRC_USER_MODE_RX_WALLOPS) str_append_c (out, 'w');
|
|
|
|
if (m & IRC_USER_MODE_RESTRICTED) str_append_c (out, 'r');
|
|
|
|
if (m & IRC_USER_MODE_OPERATOR) str_append_c (out, 'o');
|
|
|
|
if (m & IRC_USER_MODE_RX_SERVER_NOTICES) str_append_c (out, 's');
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
client_get_mode (struct client *self)
|
|
|
|
{
|
|
|
|
struct str mode;
|
|
|
|
str_init (&mode);
|
|
|
|
if (self->away_message)
|
|
|
|
str_append_c (&mode, 'a');
|
|
|
|
client_mode_to_str (self->mode, &mode);
|
|
|
|
return str_steal (&mode);
|
|
|
|
}
|
2014-08-04 01:49:46 +02:00
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send_str (struct client *c, const struct str *s)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
2014-08-04 00:35:01 +02:00
|
|
|
hard_assert (c->initialized && !c->closing_link);
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
// TODO: kill the connection above some "SendQ" threshold (careful!)
|
2014-07-14 20:54:47 +02:00
|
|
|
str_append_data (&c->write_buffer, s->str,
|
2014-07-14 02:35:38 +02:00
|
|
|
s->len > IRC_MAX_MESSAGE_LENGTH ? IRC_MAX_MESSAGE_LENGTH : s->len);
|
2014-07-14 20:54:47 +02:00
|
|
|
str_append (&c->write_buffer, "\r\n");
|
2014-08-02 20:50:33 +02:00
|
|
|
// XXX: we might want to move this elsewhere, so that it doesn't get called
|
|
|
|
// as often; it's going to cause a lot of syscalls with epoll.
|
|
|
|
client_update_poller (c, NULL);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (struct client *c, const char *format, ...)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
|
|
|
struct str tmp;
|
|
|
|
str_init (&tmp);
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
|
|
|
str_append_vprintf (&tmp, format, ap);
|
|
|
|
va_end (ap);
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send_str (c, &tmp);
|
2014-07-14 02:35:38 +02:00
|
|
|
str_free (&tmp);
|
|
|
|
}
|
|
|
|
|
2014-08-04 01:49:46 +02:00
|
|
|
static void
|
|
|
|
client_unregister (struct client *c, const char *reason)
|
|
|
|
{
|
|
|
|
if (!c->registered)
|
|
|
|
return;
|
|
|
|
|
|
|
|
char *message = xstrdup_printf (":%s!%s@%s QUIT :%s",
|
|
|
|
c->nickname, c->username, c->hostname, reason);
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_send_to_roommates (c, message);
|
2014-08-04 01:49:46 +02:00
|
|
|
free (message);
|
|
|
|
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
2014-08-08 02:26:23 +02:00
|
|
|
struct channel *chan, *next = str_map_iter_next (&iter);
|
|
|
|
for (chan = next; chan; chan = next)
|
2014-08-04 01:49:46 +02:00
|
|
|
{
|
2014-08-08 02:26:23 +02:00
|
|
|
next = str_map_iter_next (&iter);
|
2014-08-04 01:49:46 +02:00
|
|
|
struct channel_user *user;
|
|
|
|
if (!(user = channel_get_user (chan, c)))
|
|
|
|
continue;
|
|
|
|
channel_remove_user (chan, user);
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_channel_destroy_if_empty (c->ctx, chan);
|
2014-08-04 01:49:46 +02:00
|
|
|
}
|
|
|
|
|
2014-08-12 23:00:42 +02:00
|
|
|
str_map_set (&c->ctx->users, c->nickname, NULL);
|
2014-08-04 01:49:46 +02:00
|
|
|
free (c->nickname);
|
|
|
|
c->nickname = NULL;
|
|
|
|
c->registered = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_kill (struct client *c, const char *reason)
|
|
|
|
{
|
|
|
|
client_unregister (c, reason ? reason : "Client exited");
|
|
|
|
|
|
|
|
struct server_context *ctx = c->ctx;
|
|
|
|
|
|
|
|
if (c->ssl)
|
2015-03-23 22:57:13 +01:00
|
|
|
// Note that we might have already called this once, but that is fine
|
2014-08-04 01:49:46 +02:00
|
|
|
(void) SSL_shutdown (c->ssl);
|
2015-03-23 22:57:13 +01:00
|
|
|
|
2014-08-04 01:49:46 +02:00
|
|
|
xclose (c->socket_fd);
|
2014-08-19 20:54:16 +02:00
|
|
|
|
2015-02-12 01:53:03 +01:00
|
|
|
c->socket_event.closed = true;
|
|
|
|
poller_fd_reset (&c->socket_event);
|
|
|
|
client_cancel_timers (c);
|
|
|
|
|
2014-08-19 20:54:16 +02:00
|
|
|
print_debug ("closed connection to %s (%s)",
|
|
|
|
c->address, reason ? reason : "Reason omitted");
|
|
|
|
|
2014-08-04 01:49:46 +02:00
|
|
|
c->socket_fd = -1;
|
|
|
|
client_free (c);
|
|
|
|
LIST_UNLINK (ctx->clients, c);
|
|
|
|
ctx->n_clients--;
|
|
|
|
free (c);
|
|
|
|
|
|
|
|
irc_try_finish_quit (ctx);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
|
|
|
|
2014-08-02 00:09:23 +02:00
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
client_close_link (struct client *c, const char *reason)
|
2014-08-02 00:09:23 +02:00
|
|
|
{
|
|
|
|
if (!soft_assert (!c->closing_link))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// We push an `ERROR' message to the write buffer and let the poller send
|
|
|
|
// it, with some arbitrary timeout. The `closing_link' state makes sure
|
|
|
|
// that a/ we ignore any successive messages, and b/ that the connection
|
|
|
|
// is killed after the write buffer is transferred and emptied.
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, "ERROR :Closing Link: %s[%s] (%s)", c->nickname,
|
2014-08-02 00:09:23 +02:00
|
|
|
c->hostname /* TODO host IP? */, reason);
|
|
|
|
c->closing_link = true;
|
|
|
|
|
|
|
|
client_unregister (c, reason);
|
|
|
|
client_set_kill_timer (c);
|
|
|
|
}
|
|
|
|
|
2014-08-04 01:49:46 +02:00
|
|
|
static bool
|
|
|
|
client_in_mask_list (const struct client *c, const struct str_vector *mask)
|
|
|
|
{
|
2014-08-05 23:08:29 +02:00
|
|
|
char *client = xstrdup_printf ("%s!%s@%s",
|
2014-08-04 01:49:46 +02:00
|
|
|
c->nickname, c->username, c->hostname);
|
|
|
|
bool result = false;
|
|
|
|
for (size_t i = 0; i < mask->len; i++)
|
2014-08-09 22:42:26 +02:00
|
|
|
if (!irc_fnmatch (mask->vector[i], client))
|
2014-08-04 01:49:46 +02:00
|
|
|
{
|
|
|
|
result = true;
|
|
|
|
break;
|
|
|
|
}
|
2014-08-05 23:08:29 +02:00
|
|
|
free (client);
|
2014-08-04 01:49:46 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-08-08 01:26:56 +02:00
|
|
|
static char *
|
|
|
|
client_get_ssl_cert_fingerprint (struct client *c)
|
|
|
|
{
|
|
|
|
if (!c->ssl)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
X509 *peer_cert = SSL_get_peer_certificate (c->ssl);
|
|
|
|
if (!peer_cert)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
int cert_len = i2d_X509 (peer_cert, NULL);
|
|
|
|
if (cert_len < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
unsigned char cert[cert_len], *p = cert;
|
|
|
|
if (i2d_X509 (peer_cert, &p) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
unsigned char hash[SHA_DIGEST_LENGTH];
|
|
|
|
SHA1 (cert, cert_len, hash);
|
|
|
|
|
|
|
|
struct str fingerprint;
|
|
|
|
str_init (&fingerprint);
|
2014-08-13 19:22:43 +02:00
|
|
|
for (size_t i = 0; i < sizeof hash; i++)
|
|
|
|
str_append_printf (&fingerprint, "%02x", hash[i]);
|
2014-08-08 01:26:56 +02:00
|
|
|
return str_steal (&fingerprint);
|
|
|
|
}
|
|
|
|
|
2014-08-02 00:09:23 +02:00
|
|
|
// --- Timers ------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_cancel_timers (struct client *c)
|
|
|
|
{
|
2015-02-12 01:53:03 +01:00
|
|
|
poller_timer_reset (&c->kill_timer);
|
|
|
|
poller_timer_reset (&c->timeout_timer);
|
|
|
|
poller_timer_reset (&c->ping_timer);
|
2014-08-02 00:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-02-12 01:53:03 +01:00
|
|
|
client_set_timer (struct client *c,
|
|
|
|
struct poller_timer *timer, unsigned interval)
|
2014-08-02 00:09:23 +02:00
|
|
|
{
|
|
|
|
client_cancel_timers (c);
|
2015-02-12 01:53:03 +01:00
|
|
|
poller_timer_set (timer, interval * 1000);
|
2014-08-02 00:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
on_client_kill_timer (void *user_data)
|
2014-08-02 00:09:23 +02:00
|
|
|
{
|
|
|
|
struct client *c = user_data;
|
|
|
|
hard_assert (!c->initialized || c->closing_link);
|
|
|
|
client_kill (c, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_set_kill_timer (struct client *c)
|
|
|
|
{
|
2015-02-12 01:53:03 +01:00
|
|
|
client_set_timer (c, &c->kill_timer, c->ctx->ping_interval);
|
2014-08-02 00:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
on_client_timeout_timer (void *user_data)
|
2014-08-02 00:09:23 +02:00
|
|
|
{
|
|
|
|
struct client *c = user_data;
|
2014-08-04 00:35:01 +02:00
|
|
|
char *reason = xstrdup_printf
|
|
|
|
("Ping timeout: >%u seconds", c->ctx->ping_interval);
|
2014-08-09 23:51:27 +02:00
|
|
|
client_close_link (c, reason);
|
2014-08-04 00:35:01 +02:00
|
|
|
free (reason);
|
2014-08-02 00:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
on_client_ping_timer (void *user_data)
|
2014-08-02 00:09:23 +02:00
|
|
|
{
|
|
|
|
struct client *c = user_data;
|
|
|
|
hard_assert (!c->closing_link);
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, "PING :%s", c->ctx->server_name);
|
2015-02-12 01:53:03 +01:00
|
|
|
client_set_timer (c, &c->timeout_timer, c->ctx->ping_interval);
|
2014-08-02 00:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_set_ping_timer (struct client *c)
|
|
|
|
{
|
2015-02-12 01:53:03 +01:00
|
|
|
client_set_timer (c, &c->ping_timer, c->ctx->ping_interval);
|
2014-08-02 00:09:23 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
// --- IRC command handling ----------------------------------------------------
|
|
|
|
|
|
|
|
// XXX: this way we cannot typecheck the arguments, so we must be careful
|
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_reply (struct client *c, int id, ...)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
|
|
|
struct str tmp;
|
|
|
|
str_init (&tmp);
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, id);
|
|
|
|
str_append_printf (&tmp, ":%s %03d %s ",
|
2014-07-14 20:54:47 +02:00
|
|
|
c->ctx->server_name, id, c->nickname ? c->nickname : "");
|
2014-07-14 02:35:38 +02:00
|
|
|
str_append_vprintf (&tmp,
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_get_text (c->ctx, id, g_default_replies[id]), ap);
|
2014-07-14 02:35:38 +02:00
|
|
|
va_end (ap);
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send_str (c, &tmp);
|
2014-07-14 02:35:38 +02:00
|
|
|
str_free (&tmp);
|
|
|
|
}
|
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
#define RETURN_WITH_REPLY(c, ...) \
|
|
|
|
BLOCK_START \
|
|
|
|
irc_send_reply ((c), __VA_ARGS__); \
|
|
|
|
return; \
|
|
|
|
BLOCK_END
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_motd (struct client *c)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
struct server_context *ctx = c->ctx;
|
2014-07-14 02:35:38 +02:00
|
|
|
if (!ctx->motd.len)
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOMOTD);
|
2014-07-14 02:35:38 +02:00
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_reply (c, IRC_RPL_MOTDSTART, ctx->server_name);
|
2014-07-14 02:35:38 +02:00
|
|
|
for (size_t i = 0; i < ctx->motd.len; i++)
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_reply (c, IRC_RPL_MOTD, ctx->motd.vector[i]);
|
|
|
|
irc_send_reply (c, IRC_RPL_ENDOFMOTD);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static void
|
2014-07-17 23:16:49 +02:00
|
|
|
irc_send_lusers (struct client *c)
|
|
|
|
{
|
|
|
|
int n_users = 0, n_services = 0, n_opers = 0, n_unknown = 0;
|
|
|
|
for (struct client *link = c->ctx->clients; link; link = link->next)
|
|
|
|
{
|
|
|
|
if (link->registered)
|
|
|
|
n_users++;
|
|
|
|
else
|
|
|
|
n_unknown++;
|
|
|
|
if (link->mode & IRC_USER_MODE_OPERATOR)
|
|
|
|
n_opers++;
|
|
|
|
}
|
|
|
|
|
2014-08-03 02:14:15 +02:00
|
|
|
int n_channels = 0;
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
|
|
|
struct channel *chan;
|
|
|
|
while ((chan = str_map_iter_next (&iter)))
|
|
|
|
if (!(chan->modes & IRC_CHAN_MODE_SECRET)
|
2014-08-04 00:35:01 +02:00
|
|
|
|| channel_get_user (chan, c))
|
2014-08-03 02:14:15 +02:00
|
|
|
n_channels++;
|
2014-07-17 23:16:49 +02:00
|
|
|
|
|
|
|
irc_send_reply (c, IRC_RPL_LUSERCLIENT,
|
|
|
|
n_users, n_services, 1 /* servers total */);
|
|
|
|
if (n_opers)
|
|
|
|
irc_send_reply (c, IRC_RPL_LUSEROP, n_opers);
|
|
|
|
if (n_unknown)
|
|
|
|
irc_send_reply (c, IRC_RPL_LUSERUNKNOWN, n_unknown);
|
|
|
|
if (n_channels)
|
|
|
|
irc_send_reply (c, IRC_RPL_LUSERCHANNELS, n_channels);
|
|
|
|
irc_send_reply (c, IRC_RPL_LUSERME,
|
|
|
|
n_users + n_services + n_unknown, 0 /* peer servers */);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-07-17 23:51:34 +02:00
|
|
|
irc_is_this_me (struct server_context *ctx, const char *target)
|
|
|
|
{
|
2014-08-05 23:09:36 +02:00
|
|
|
// Target servers can also be matched by their users
|
|
|
|
return !irc_fnmatch (target, ctx->server_name)
|
|
|
|
|| str_map_find (&ctx->users, target);
|
2014-07-17 23:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_try_finish_registration (struct client *c)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-17 22:54:16 +02:00
|
|
|
struct server_context *ctx = c->ctx;
|
2014-07-14 20:54:47 +02:00
|
|
|
if (!c->nickname || !c->username || !c->realname)
|
2014-07-14 02:35:38 +02:00
|
|
|
return;
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
c->registered = true;
|
|
|
|
irc_send_reply (c, IRC_RPL_WELCOME, c->nickname, c->username, c->hostname);
|
2014-07-14 02:35:38 +02:00
|
|
|
|
2014-07-17 22:54:16 +02:00
|
|
|
irc_send_reply (c, IRC_RPL_YOURHOST, ctx->server_name, PROGRAM_VERSION);
|
2014-07-14 02:35:38 +02:00
|
|
|
// The purpose of this message eludes me
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_reply (c, IRC_RPL_CREATED, __DATE__);
|
2014-07-17 22:54:16 +02:00
|
|
|
irc_send_reply (c, IRC_RPL_MYINFO, ctx->server_name, PROGRAM_VERSION,
|
2014-07-14 02:35:38 +02:00
|
|
|
IRC_SUPPORTED_USER_MODES, IRC_SUPPORTED_CHAN_MODES);
|
|
|
|
|
2015-04-21 22:34:16 +02:00
|
|
|
// TODO: also output IRC_RPL_ISUPPORT
|
|
|
|
|
2014-07-17 23:16:49 +02:00
|
|
|
irc_send_lusers (c);
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_motd (c);
|
2014-07-17 22:54:16 +02:00
|
|
|
|
|
|
|
char *mode = client_get_mode (c);
|
2014-08-04 00:35:01 +02:00
|
|
|
if (*mode)
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, ":%s MODE %s :+%s", c->nickname, c->nickname, mode);
|
2014-07-17 22:54:16 +02:00
|
|
|
free (mode);
|
2014-08-08 01:26:56 +02:00
|
|
|
|
|
|
|
hard_assert (c->ssl_cert_fingerprint == NULL);
|
|
|
|
if ((c->ssl_cert_fingerprint = client_get_ssl_cert_fingerprint (c)))
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, ":%s NOTICE %s :"
|
2014-08-08 01:26:56 +02:00
|
|
|
"Your SSL client certificate fingerprint is %s",
|
|
|
|
ctx->server_name, c->nickname, c->ssl_cert_fingerprint);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_handle_pass (const struct irc_message *msg, struct client *c)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->registered)
|
|
|
|
irc_send_reply (c, IRC_ERR_ALREADYREGISTERED);
|
2014-07-14 02:35:38 +02:00
|
|
|
else if (msg->params.len < 1)
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_reply (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
2014-07-14 02:35:38 +02:00
|
|
|
|
|
|
|
// We have SSL client certificates for this purpose; ignoring
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_handle_nick (const struct irc_message *msg, struct client *c)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
struct server_context *ctx = c->ctx;
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
if (msg->params.len < 1)
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NONICKNAMEGIVEN);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
const char *nickname = msg->params.vector[0];
|
|
|
|
if (irc_validate_nickname (nickname) != VALIDATION_OK)
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_ERRONEOUSNICKNAME, nickname);
|
|
|
|
|
|
|
|
struct client *client = str_map_find (&ctx->users, nickname);
|
|
|
|
if (client && client != c)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NICKNAMEINUSE, nickname);
|
|
|
|
|
|
|
|
if (c->registered)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
2014-08-04 00:35:01 +02:00
|
|
|
char *message = xstrdup_printf (":%s!%s@%s NICK :%s",
|
|
|
|
c->nickname, c->username, c->hostname, nickname);
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_send_to_roommates (c, message);
|
2014-08-12 23:00:42 +02:00
|
|
|
client_send (c, "%s", message);
|
2014-08-04 00:35:01 +02:00
|
|
|
free (message);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
2014-08-04 00:35:01 +02:00
|
|
|
|
|
|
|
// Release the old nickname and allocate a new one
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->nickname)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
str_map_set (&ctx->users, c->nickname, NULL);
|
|
|
|
free (c->nickname);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
2014-07-14 20:54:47 +02:00
|
|
|
c->nickname = xstrdup (nickname);
|
|
|
|
str_map_set (&ctx->users, nickname, c);
|
2014-07-14 02:35:38 +02:00
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
if (!c->registered)
|
|
|
|
irc_try_finish_registration (c);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_handle_user (const struct irc_message *msg, struct client *c)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->registered)
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_ALREADYREGISTERED);
|
2014-07-14 02:35:38 +02:00
|
|
|
if (msg->params.len < 4)
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
const char *username = msg->params.vector[0];
|
|
|
|
const char *mode = msg->params.vector[1];
|
|
|
|
const char *realname = msg->params.vector[3];
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
// Unfortunately the protocol doesn't give us any means of rejecting it
|
|
|
|
if (!irc_is_valid_user (username))
|
|
|
|
username = "xxx";
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
free (c->username);
|
|
|
|
c->username = xstrdup (username);
|
|
|
|
free (c->realname);
|
|
|
|
c->realname = xstrdup (realname);
|
2014-07-14 02:35:38 +02:00
|
|
|
|
|
|
|
unsigned long m;
|
|
|
|
if (xstrtoul (&m, mode, 10))
|
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
if (m & 4) c->mode |= IRC_USER_MODE_RX_WALLOPS;
|
|
|
|
if (m & 8) c->mode |= IRC_USER_MODE_INVISIBLE;
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_try_finish_registration (c);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
|
|
|
|
2014-08-02 22:58:18 +02:00
|
|
|
static void
|
|
|
|
irc_handle_userhost (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
2014-08-02 22:58:18 +02:00
|
|
|
|
|
|
|
struct str reply;
|
|
|
|
str_init (&reply);
|
|
|
|
for (size_t i = 0; i < 5 && i < msg->params.len; i++)
|
|
|
|
{
|
|
|
|
const char *nick = msg->params.vector[i];
|
|
|
|
struct client *target = str_map_find (&c->ctx->users, nick);
|
|
|
|
if (!target)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (i)
|
|
|
|
str_append_c (&reply, ' ');
|
|
|
|
str_append (&reply, nick);
|
|
|
|
if (target->mode & IRC_USER_MODE_OPERATOR)
|
|
|
|
str_append_c (&reply, '*');
|
|
|
|
str_append_printf (&reply, "=%c%s@%s",
|
|
|
|
target->away_message ? '-' : '+',
|
|
|
|
target->username, target->hostname);
|
|
|
|
}
|
|
|
|
irc_send_reply (c, IRC_RPL_USERHOST, reply.str);
|
|
|
|
str_free (&reply);
|
|
|
|
}
|
|
|
|
|
2014-07-17 23:51:34 +02:00
|
|
|
static void
|
|
|
|
irc_handle_lusers (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len > 1 && !irc_is_this_me (c->ctx, msg->params.vector[1]))
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[1]);
|
|
|
|
else
|
|
|
|
irc_send_lusers (c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_motd (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len > 0 && !irc_is_this_me (c->ctx, msg->params.vector[0]))
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[0]);
|
|
|
|
else
|
|
|
|
irc_send_motd (c);
|
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_handle_ping (const struct irc_message *msg, struct client *c)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
|
|
|
// XXX: the RFC is pretty incomprehensible about the exact usage
|
2014-07-17 23:51:34 +02:00
|
|
|
if (msg->params.len > 1 && !irc_is_this_me (c->ctx, msg->params.vector[1]))
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[1]);
|
|
|
|
else if (msg->params.len < 1)
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_send_reply (c, IRC_ERR_NOORIGIN);
|
2014-07-14 02:35:38 +02:00
|
|
|
else
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, ":%s PONG :%s",
|
2014-07-14 20:54:47 +02:00
|
|
|
c->ctx->server_name, msg->params.vector[0]);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
|
|
|
|
2014-08-02 00:09:23 +02:00
|
|
|
static void
|
|
|
|
irc_handle_pong (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
// We are the only server, so we don't have to care too much
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
irc_send_reply (c, IRC_ERR_NOORIGIN);
|
|
|
|
else
|
|
|
|
// Set a new timer to send another PING
|
|
|
|
client_set_ping_timer (c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_quit (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
2014-08-04 00:35:01 +02:00
|
|
|
char *reason = xstrdup_printf ("Quit: %s",
|
2014-08-02 00:09:23 +02:00
|
|
|
msg->params.len > 0 ? msg->params.vector[0] : c->nickname);
|
2014-08-09 23:51:27 +02:00
|
|
|
client_close_link (c, reason);
|
2014-08-04 00:35:01 +02:00
|
|
|
free (reason);
|
2014-08-02 00:09:23 +02:00
|
|
|
}
|
|
|
|
|
2014-07-17 23:51:34 +02:00
|
|
|
static void
|
|
|
|
irc_handle_time (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len > 0 && !irc_is_this_me (c->ctx, msg->params.vector[0]))
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[0]);
|
|
|
|
|
|
|
|
char buf[32];
|
|
|
|
time_t now = time (NULL);
|
|
|
|
struct tm tm;
|
|
|
|
strftime (buf, sizeof buf, "%a %b %d %Y %T", localtime_r (&now, &tm));
|
|
|
|
irc_send_reply (c, IRC_RPL_TIME, c->ctx->server_name, buf);
|
2014-07-17 23:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_version (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len > 0 && !irc_is_this_me (c->ctx, msg->params.vector[0]))
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[0]);
|
|
|
|
else
|
|
|
|
irc_send_reply (c, IRC_RPL_VERSION, PROGRAM_VERSION, g_debug_mode,
|
|
|
|
c->ctx->server_name, PROGRAM_NAME " " PROGRAM_VERSION);
|
|
|
|
}
|
|
|
|
|
2014-08-02 17:56:40 +02:00
|
|
|
static void
|
2014-08-05 23:26:30 +02:00
|
|
|
irc_channel_multicast (struct channel *chan, const char *message,
|
|
|
|
struct client *except)
|
2014-08-02 17:56:40 +02:00
|
|
|
{
|
2014-08-04 00:35:01 +02:00
|
|
|
for (struct channel_user *iter = chan->users; iter; iter = iter->next)
|
2014-08-09 22:57:29 +02:00
|
|
|
if (iter->c != except)
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (iter->c, "%s", message);
|
2014-08-04 00:35:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-08-07 20:39:52 +02:00
|
|
|
irc_modify_mode (unsigned *mask, unsigned mode, bool add)
|
|
|
|
{
|
2014-08-09 22:43:18 +02:00
|
|
|
unsigned orig = *mask;
|
2014-08-07 20:39:52 +02:00
|
|
|
if (add)
|
|
|
|
*mask |= mode;
|
|
|
|
else
|
|
|
|
*mask &= ~mode;
|
2014-08-09 22:43:18 +02:00
|
|
|
return *mask != orig;
|
2014-08-07 20:39:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_update_user_mode (struct client *c, unsigned new_mode)
|
|
|
|
{
|
|
|
|
unsigned old_mode = c->mode;
|
|
|
|
c->mode = new_mode;
|
|
|
|
|
|
|
|
unsigned added = new_mode & ~old_mode;
|
|
|
|
unsigned removed = old_mode & ~new_mode;
|
|
|
|
|
|
|
|
struct str diff;
|
|
|
|
str_init (&diff);
|
|
|
|
|
|
|
|
if (added)
|
|
|
|
{
|
|
|
|
str_append_c (&diff, '+');
|
|
|
|
client_mode_to_str (added, &diff);
|
|
|
|
}
|
|
|
|
if (removed)
|
|
|
|
{
|
|
|
|
str_append_c (&diff, '-');
|
|
|
|
client_mode_to_str (removed, &diff);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (diff.len)
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, ":%s MODE %s :%s",
|
2014-08-07 20:39:52 +02:00
|
|
|
c->nickname, c->nickname, diff.str);
|
|
|
|
str_free (&diff);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_user_mode_change (struct client *c, const char *mode_string)
|
|
|
|
{
|
|
|
|
unsigned new_mode = c->mode;
|
|
|
|
bool adding = true;
|
|
|
|
|
|
|
|
while (*mode_string)
|
|
|
|
switch (*mode_string++)
|
|
|
|
{
|
|
|
|
case '+': adding = true; break;
|
|
|
|
case '-': adding = false; break;
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
// Ignore, the client should use AWAY
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
irc_modify_mode (&new_mode, IRC_USER_MODE_INVISIBLE, adding);
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
irc_modify_mode (&new_mode, IRC_USER_MODE_RX_WALLOPS, adding);
|
|
|
|
break;
|
|
|
|
case 'r':
|
2014-08-09 22:43:18 +02:00
|
|
|
// It's not possible to un-restrict yourself
|
2014-08-07 20:39:52 +02:00
|
|
|
if (adding)
|
2014-08-09 22:43:18 +02:00
|
|
|
new_mode |= IRC_USER_MODE_RESTRICTED;
|
2014-08-07 20:39:52 +02:00
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
if (!adding)
|
2014-08-09 22:43:18 +02:00
|
|
|
new_mode &= ~IRC_USER_MODE_OPERATOR;
|
2014-08-08 01:26:56 +02:00
|
|
|
else if (c->ssl_cert_fingerprint
|
|
|
|
&& str_map_find (&c->ctx->operators, c->ssl_cert_fingerprint))
|
2014-08-09 22:43:18 +02:00
|
|
|
new_mode |= IRC_USER_MODE_OPERATOR;
|
2014-08-08 01:26:56 +02:00
|
|
|
else
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, ":%s NOTICE %s :Either you're not using an SSL"
|
2014-08-08 01:26:56 +02:00
|
|
|
" client certificate, or the fingerprint doesn't match",
|
|
|
|
c->ctx->server_name, c->nickname);
|
2014-08-07 20:39:52 +02:00
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
irc_modify_mode (&new_mode, IRC_USER_MODE_RX_SERVER_NOTICES, adding);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_UMODEUNKNOWNFLAG);
|
|
|
|
}
|
|
|
|
irc_update_user_mode (c, new_mode);
|
|
|
|
}
|
|
|
|
|
2014-08-09 22:43:18 +02:00
|
|
|
static void
|
|
|
|
irc_send_channel_list (struct client *c, const char *channel_name,
|
|
|
|
const struct str_vector *list, int reply, int end_reply)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < list->len; i++)
|
|
|
|
irc_send_reply (c, reply, channel_name, list->vector[i]);
|
2014-08-10 19:18:48 +02:00
|
|
|
irc_send_reply (c, end_reply, channel_name);
|
2014-08-09 22:43:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
irc_check_expand_user_mask (const char *mask)
|
|
|
|
{
|
|
|
|
struct str result;
|
|
|
|
str_init (&result);
|
|
|
|
str_append (&result, mask);
|
|
|
|
|
|
|
|
// Make sure it is a complete mask
|
|
|
|
if (!strchr (result.str, '!'))
|
|
|
|
str_append (&result, "!*");
|
|
|
|
if (!strchr (result.str, '@'))
|
|
|
|
str_append (&result, "@*");
|
|
|
|
|
|
|
|
// And validate whatever the result is
|
|
|
|
if (!irc_is_valid_user_mask (result.str))
|
|
|
|
{
|
|
|
|
str_free (&result);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return str_steal (&result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_chan_mode_change (struct client *c,
|
|
|
|
struct channel *chan, char *params[])
|
|
|
|
{
|
|
|
|
struct channel_user *user = channel_get_user (chan, c);
|
|
|
|
|
|
|
|
// This is by far the worst command to implement from the whole RFC;
|
|
|
|
// don't blame me if it doesn't work exactly as expected.
|
|
|
|
|
|
|
|
struct str added; struct str_vector added_params;
|
|
|
|
struct str removed; struct str_vector removed_params;
|
|
|
|
|
|
|
|
str_init (&added); str_vector_init (&added_params);
|
|
|
|
str_init (&removed); str_vector_init (&removed_params);
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
|
|
|
// TODO: try to convert this madness into functions; that will most
|
|
|
|
// likely require creating a special parser class
|
|
|
|
#define NEEDS_OPER \
|
|
|
|
if (!user || (!(user->modes & IRC_CHAN_MODE_OPERATOR) \
|
|
|
|
&& !(c->mode & IRC_USER_MODE_OPERATOR))) \
|
|
|
|
{ \
|
|
|
|
irc_send_reply (c, IRC_ERR_CHANOPRIVSNEEDED, chan->name); \
|
|
|
|
continue; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define HANDLE_USER(mode) \
|
|
|
|
if (!(target = *params)) \
|
|
|
|
continue; \
|
|
|
|
params++; \
|
|
|
|
NEEDS_OPER \
|
|
|
|
if (!(client = str_map_find (&c->ctx->users, target))) \
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHNICK, target); \
|
|
|
|
else if (!(target_user = channel_get_user (chan, client))) \
|
|
|
|
irc_send_reply (c, IRC_ERR_USERNOTINCHANNEL, \
|
|
|
|
target, chan->name); \
|
|
|
|
else if (irc_modify_mode (&target_user->modes, (mode), adding)) \
|
|
|
|
{ \
|
|
|
|
str_append_c (output, mode_char); \
|
2014-08-09 22:57:29 +02:00
|
|
|
str_vector_add (output_params, client->nickname); \
|
2014-08-09 22:43:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define HANDLE_LIST(list, list_msg, end_msg) \
|
|
|
|
{ \
|
|
|
|
if (!(target = *params)) \
|
|
|
|
{ \
|
|
|
|
if (adding) \
|
|
|
|
irc_send_channel_list (c, chan->name, list, list_msg, end_msg); \
|
|
|
|
continue; \
|
|
|
|
} \
|
|
|
|
params++; \
|
|
|
|
NEEDS_OPER \
|
|
|
|
char *mask = irc_check_expand_user_mask (target); \
|
|
|
|
if (!mask) \
|
|
|
|
continue; \
|
|
|
|
size_t i; \
|
|
|
|
for (i = 0; i < (list)->len; i++) \
|
|
|
|
if (!irc_strcmp ((list)->vector[i], mask)) \
|
|
|
|
break; \
|
|
|
|
if (!((i != (list)->len) ^ adding)) \
|
|
|
|
{ \
|
|
|
|
free (mask); \
|
|
|
|
continue; \
|
|
|
|
} \
|
|
|
|
if (adding) \
|
|
|
|
str_vector_add ((list), mask); \
|
|
|
|
else \
|
|
|
|
str_vector_remove ((list), i); \
|
|
|
|
str_append_c (output, mode_char); \
|
|
|
|
str_vector_add (output_params, mask); \
|
|
|
|
free (mask); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define HANDLE_MODE(mode) \
|
|
|
|
NEEDS_OPER \
|
|
|
|
if (irc_modify_mode (&chan->modes, (mode), adding)) \
|
|
|
|
str_append_c (output, mode_char);
|
|
|
|
|
|
|
|
#define REMOVE_MODE(removed_mode, removed_char) \
|
|
|
|
if (adding && irc_modify_mode (&chan->modes, (removed_mode), false)) \
|
|
|
|
str_append_c (&removed, (removed_char));
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
|
|
|
const char *mode_string;
|
|
|
|
while ((mode_string = *params++))
|
|
|
|
{
|
|
|
|
bool adding = true;
|
|
|
|
struct str *output = &added;
|
|
|
|
struct str_vector *output_params = &added_params;
|
|
|
|
|
|
|
|
const char *target;
|
|
|
|
struct channel_user *target_user;
|
|
|
|
struct client *client;
|
|
|
|
|
|
|
|
char mode_char;
|
|
|
|
while (*mode_string)
|
|
|
|
switch ((mode_char = *mode_string++))
|
|
|
|
{
|
|
|
|
case '+':
|
|
|
|
adding = true;
|
|
|
|
output = &added;
|
|
|
|
output_params = &added_params;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
adding = false;
|
|
|
|
output = &removed;
|
|
|
|
output_params = &removed_params;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'o': HANDLE_USER (IRC_CHAN_MODE_OPERATOR) break;
|
|
|
|
case 'v': HANDLE_USER (IRC_CHAN_MODE_VOICE) break;
|
|
|
|
|
|
|
|
case 'i': HANDLE_MODE (IRC_CHAN_MODE_INVITE_ONLY) break;
|
|
|
|
case 'm': HANDLE_MODE (IRC_CHAN_MODE_MODERATED) break;
|
|
|
|
case 'n': HANDLE_MODE (IRC_CHAN_MODE_NO_OUTSIDE_MSGS) break;
|
|
|
|
case 'q': HANDLE_MODE (IRC_CHAN_MODE_QUIET) break;
|
|
|
|
case 't': HANDLE_MODE (IRC_CHAN_MODE_PROTECTED_TOPIC) break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
HANDLE_MODE (IRC_CHAN_MODE_PRIVATE)
|
|
|
|
REMOVE_MODE (IRC_CHAN_MODE_SECRET, 's')
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
HANDLE_MODE (IRC_CHAN_MODE_SECRET)
|
|
|
|
REMOVE_MODE (IRC_CHAN_MODE_PRIVATE, 'p')
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
HANDLE_LIST (&chan->ban_list,
|
|
|
|
IRC_RPL_BANLIST, IRC_RPL_ENDOFBANLIST)
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
HANDLE_LIST (&chan->exception_list,
|
|
|
|
IRC_RPL_EXCEPTLIST, IRC_RPL_ENDOFEXCEPTLIST)
|
|
|
|
break;
|
|
|
|
case 'I':
|
|
|
|
HANDLE_LIST (&chan->invite_list,
|
|
|
|
IRC_RPL_INVITELIST, IRC_RPL_ENDOFINVITELIST)
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'k':
|
|
|
|
NEEDS_OPER
|
|
|
|
if (!adding)
|
|
|
|
{
|
|
|
|
if (!(target = *params))
|
|
|
|
continue;
|
|
|
|
params++;
|
|
|
|
if (!chan->key || irc_strcmp (target, chan->key))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
str_append_c (&removed, mode_char);
|
|
|
|
str_vector_add (&removed_params, chan->key);
|
|
|
|
free (chan->key);
|
|
|
|
chan->key = NULL;
|
|
|
|
}
|
|
|
|
else if (!(target = *params))
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
params++;
|
|
|
|
if (chan->key)
|
|
|
|
irc_send_reply (c, IRC_ERR_KEYSET, chan->name);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
chan->key = xstrdup (target);
|
|
|
|
str_append_c (&added, mode_char);
|
|
|
|
str_vector_add (&added_params, chan->key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
NEEDS_OPER
|
|
|
|
if (!adding)
|
|
|
|
{
|
|
|
|
if (chan->user_limit == -1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
chan->user_limit = -1;
|
|
|
|
str_append_c (&removed, mode_char);
|
|
|
|
}
|
|
|
|
else if (!(target = *params))
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
params++;
|
|
|
|
unsigned long x;
|
|
|
|
if (xstrtoul (&x, target, 10) && x > 0 && x <= LONG_MAX)
|
|
|
|
{
|
|
|
|
chan->user_limit = x;
|
|
|
|
str_append_c (&added, mode_char);
|
|
|
|
str_vector_add (&added_params, target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_UNKNOWNMODE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef NEEDS_OPER
|
|
|
|
#undef HANDLE_USER
|
|
|
|
#undef HANDLE_LIST
|
|
|
|
#undef HANDLE_MODE
|
|
|
|
#undef REMOVE_MODE
|
|
|
|
|
|
|
|
if (added.len || removed.len)
|
|
|
|
{
|
|
|
|
struct str message;
|
|
|
|
str_init (&message);
|
|
|
|
str_append_printf (&message, ":%s!%s@%s MODE %s ",
|
|
|
|
c->nickname, c->username, c->hostname, chan->name);
|
|
|
|
if (added.len)
|
|
|
|
str_append_printf (&message, "+%s", added.str);
|
|
|
|
if (removed.len)
|
|
|
|
str_append_printf (&message, "-%s", removed.str);
|
|
|
|
for (size_t i = 0; i < added_params.len; i++)
|
|
|
|
str_append_printf (&message, " %s", added_params.vector[i]);
|
|
|
|
for (size_t i = 0; i < removed_params.len; i++)
|
|
|
|
str_append_printf (&message, " %s", removed_params.vector[i]);
|
|
|
|
irc_channel_multicast (chan, message.str, NULL);
|
|
|
|
str_free (&message);
|
|
|
|
}
|
|
|
|
|
|
|
|
str_free (&added); str_vector_free (&added_params);
|
|
|
|
str_free (&removed); str_vector_free (&removed_params);
|
|
|
|
}
|
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
static void
|
|
|
|
irc_handle_mode (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
|
|
|
|
const char *target = msg->params.vector[0];
|
|
|
|
struct client *client = str_map_find (&c->ctx->users, target);
|
|
|
|
if (client)
|
|
|
|
{
|
|
|
|
if (irc_strcmp (target, c->nickname))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_USERSDONTMATCH);
|
|
|
|
|
2014-08-07 20:39:52 +02:00
|
|
|
if (msg->params.len < 2)
|
|
|
|
{
|
|
|
|
char *mode = client_get_mode (client);
|
|
|
|
irc_send_reply (c, IRC_RPL_UMODEIS, mode);
|
|
|
|
free (mode);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
irc_handle_user_mode_change (c, msg->params.vector[1]);
|
2014-08-04 00:35:01 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct channel *chan = str_map_find (&c->ctx->channels, target);
|
|
|
|
if (chan)
|
2014-08-02 17:56:40 +02:00
|
|
|
{
|
2014-08-04 00:35:01 +02:00
|
|
|
if (msg->params.len < 2)
|
2014-08-02 17:56:40 +02:00
|
|
|
{
|
2014-08-04 00:35:01 +02:00
|
|
|
char *mode = channel_get_mode (chan, channel_get_user (chan, c));
|
|
|
|
irc_send_reply (c, IRC_RPL_CHANNELMODEIS, target, mode);
|
|
|
|
free (mode);
|
2014-08-02 17:56:40 +02:00
|
|
|
}
|
2014-08-09 22:43:18 +02:00
|
|
|
else
|
|
|
|
irc_handle_chan_mode_change (c, chan, &msg->params.vector[1]);
|
2014-08-04 00:35:01 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-08-02 17:56:40 +02:00
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHNICK, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-08-05 01:04:21 +02:00
|
|
|
irc_handle_user_message (const struct irc_message *msg, struct client *c,
|
|
|
|
const char *command, bool allow_away_reply)
|
2014-08-04 00:35:01 +02:00
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NORECIPIENT, msg->command);
|
|
|
|
if (msg->params.len < 2 || !*msg->params.vector[1])
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOTEXTTOSEND);
|
|
|
|
|
|
|
|
const char *target = msg->params.vector[0];
|
|
|
|
const char *text = msg->params.vector[1];
|
|
|
|
struct client *client = str_map_find (&c->ctx->users, target);
|
|
|
|
if (client)
|
|
|
|
{
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (client, ":%s!%s@%s %s %s :%s",
|
2014-08-05 01:04:21 +02:00
|
|
|
c->nickname, c->username, c->hostname, command, target, text);
|
|
|
|
if (allow_away_reply && client->away_message)
|
2014-08-04 08:17:34 +02:00
|
|
|
irc_send_reply (c, IRC_RPL_AWAY, target, client->away_message);
|
2014-08-04 00:35:01 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct channel *chan = str_map_find (&c->ctx->channels, target);
|
|
|
|
if (chan)
|
|
|
|
{
|
|
|
|
struct channel_user *user = channel_get_user (chan, c);
|
|
|
|
if ((chan->modes & IRC_CHAN_MODE_NO_OUTSIDE_MSGS) && !user)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_CANNOTSENDTOCHAN, target);
|
|
|
|
if ((chan->modes & IRC_CHAN_MODE_MODERATED) && (!user ||
|
|
|
|
!(user->modes & (IRC_CHAN_MODE_VOICE | IRC_CHAN_MODE_OPERATOR))))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_CANNOTSENDTOCHAN, target);
|
|
|
|
if (client_in_mask_list (c, &chan->ban_list)
|
|
|
|
&& !client_in_mask_list (c, &chan->exception_list))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_CANNOTSENDTOCHAN, target);
|
|
|
|
|
2014-08-05 01:04:21 +02:00
|
|
|
char *message = xstrdup_printf (":%s!%s@%s %s %s :%s",
|
|
|
|
c->nickname, c->username, c->hostname, command, target, text);
|
2014-08-05 23:26:30 +02:00
|
|
|
irc_channel_multicast (chan, message, c);
|
2014-08-04 00:35:01 +02:00
|
|
|
free (message);
|
|
|
|
return;
|
2014-08-02 17:56:40 +02:00
|
|
|
}
|
2014-08-04 00:35:01 +02:00
|
|
|
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHNICK, target);
|
2014-08-02 17:56:40 +02:00
|
|
|
}
|
|
|
|
|
2014-08-05 01:04:21 +02:00
|
|
|
static void
|
|
|
|
irc_handle_privmsg (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
irc_handle_user_message (msg, c, "PRIVMSG", true);
|
2014-08-05 23:11:53 +02:00
|
|
|
// Let's not care too much about success or failure
|
|
|
|
c->last_active = time (NULL);
|
2014-08-05 01:04:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_notice (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
irc_handle_user_message (msg, c, "NOTICE", false);
|
|
|
|
}
|
|
|
|
|
2014-08-02 23:31:41 +02:00
|
|
|
static void
|
|
|
|
irc_send_rpl_list (struct client *c, const struct channel *chan)
|
|
|
|
{
|
|
|
|
int visible = 0;
|
|
|
|
for (struct channel_user *user = chan->users;
|
|
|
|
user; user = user->next)
|
|
|
|
visible++;
|
|
|
|
|
|
|
|
irc_send_reply (c, IRC_RPL_LIST, chan->name, visible, chan->topic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_list (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len > 1 && !irc_is_this_me (c->ctx, msg->params.vector[1]))
|
2014-08-04 00:35:01 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[1]);
|
2014-08-02 23:31:41 +02:00
|
|
|
|
|
|
|
struct channel *chan;
|
|
|
|
if (msg->params.len == 0)
|
|
|
|
{
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
|
|
|
while ((chan = str_map_iter_next (&iter)))
|
|
|
|
if (!(chan->modes & (IRC_CHAN_MODE_PRIVATE | IRC_CHAN_MODE_SECRET))
|
2014-08-04 00:35:01 +02:00
|
|
|
|| channel_get_user (chan, c))
|
2014-08-02 23:31:41 +02:00
|
|
|
irc_send_rpl_list (c, chan);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct str_vector channels;
|
|
|
|
str_vector_init (&channels);
|
|
|
|
split_str_ignore_empty (msg->params.vector[0], ',', &channels);
|
|
|
|
for (size_t i = 0; i < channels.len; i++)
|
|
|
|
if ((chan = str_map_find (&c->ctx->channels, channels.vector[i]))
|
|
|
|
&& (!(chan->modes & IRC_CHAN_MODE_SECRET)
|
2014-08-04 00:35:01 +02:00
|
|
|
|| channel_get_user (chan, c)))
|
2014-08-02 23:31:41 +02:00
|
|
|
irc_send_rpl_list (c, chan);
|
|
|
|
str_vector_free (&channels);
|
|
|
|
}
|
|
|
|
irc_send_reply (c, IRC_RPL_LISTEND);
|
|
|
|
}
|
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
static void
|
|
|
|
irc_send_rpl_namreply (struct client *c, const struct channel *chan)
|
|
|
|
{
|
|
|
|
struct str_vector nicks;
|
|
|
|
str_vector_init (&nicks);
|
|
|
|
|
|
|
|
char type = '=';
|
|
|
|
if (chan->modes & IRC_CHAN_MODE_SECRET)
|
|
|
|
type = '@';
|
|
|
|
else if (chan->modes & IRC_CHAN_MODE_PRIVATE)
|
|
|
|
type = '*';
|
|
|
|
|
|
|
|
bool on_channel = channel_get_user (chan, c);
|
|
|
|
for (struct channel_user *iter = chan->users; iter; iter = iter->next)
|
|
|
|
{
|
2014-08-09 22:57:29 +02:00
|
|
|
if (!on_channel && (iter->c->mode & IRC_USER_MODE_INVISIBLE))
|
2014-08-04 00:35:01 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
struct str result;
|
|
|
|
str_init (&result);
|
|
|
|
if (iter->modes & IRC_CHAN_MODE_OPERATOR)
|
|
|
|
str_append_c (&result, '@');
|
|
|
|
else if (iter->modes & IRC_CHAN_MODE_VOICE)
|
|
|
|
str_append_c (&result, '+');
|
2014-08-09 22:57:29 +02:00
|
|
|
str_append (&result, iter->c->nickname);
|
2014-08-04 00:35:01 +02:00
|
|
|
str_vector_add_owned (&nicks, str_steal (&result));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nicks.len)
|
|
|
|
{
|
2014-08-09 23:58:10 +02:00
|
|
|
// FIXME: split it into multiple messages if it's too long
|
2014-08-04 00:35:01 +02:00
|
|
|
char *reply = join_str_vector (&nicks, ' ');
|
|
|
|
irc_send_reply (c, IRC_RPL_NAMREPLY, type, chan->name, reply);
|
|
|
|
free (reply);
|
|
|
|
}
|
|
|
|
str_vector_free (&nicks);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_names (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len > 1 && !irc_is_this_me (c->ctx, msg->params.vector[1]))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[1]);
|
|
|
|
|
|
|
|
struct channel *chan;
|
|
|
|
if (msg->params.len == 0)
|
|
|
|
{
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
|
|
|
while ((chan = str_map_iter_next (&iter)))
|
|
|
|
if (!(chan->modes & (IRC_CHAN_MODE_PRIVATE | IRC_CHAN_MODE_SECRET))
|
|
|
|
|| channel_get_user (chan, c))
|
|
|
|
irc_send_rpl_namreply (c, chan);
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
// If no <channel> parameter is given, a list of all channels and their
|
|
|
|
// occupants is returned. At the end of this list, a list of users who
|
|
|
|
// are visible but either not on any channel or not on a visible channel
|
|
|
|
// are listed as being on `channel' "*".
|
|
|
|
irc_send_reply (c, IRC_RPL_ENDOFNAMES, "*");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct str_vector channels;
|
|
|
|
str_vector_init (&channels);
|
|
|
|
split_str_ignore_empty (msg->params.vector[0], ',', &channels);
|
|
|
|
for (size_t i = 0; i < channels.len; i++)
|
|
|
|
if ((chan = str_map_find (&c->ctx->channels, channels.vector[i]))
|
|
|
|
&& (!(chan->modes & IRC_CHAN_MODE_SECRET)
|
|
|
|
|| channel_get_user (chan, c)))
|
|
|
|
{
|
|
|
|
irc_send_rpl_namreply (c, chan);
|
|
|
|
irc_send_reply (c, IRC_RPL_ENDOFNAMES, channels.vector[i]);
|
|
|
|
}
|
|
|
|
str_vector_free (&channels);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-04 23:36:35 +02:00
|
|
|
static void
|
|
|
|
irc_send_rpl_whoreply (struct client *c, const struct channel *chan,
|
|
|
|
const struct client *target)
|
|
|
|
{
|
|
|
|
struct str chars;
|
|
|
|
str_init (&chars);
|
|
|
|
|
|
|
|
str_append_c (&chars, target->away_message ? 'G' : 'H');
|
|
|
|
if (target->mode & IRC_USER_MODE_OPERATOR)
|
|
|
|
str_append_c (&chars, '*');
|
|
|
|
|
|
|
|
struct channel_user *user;
|
|
|
|
if (chan && (user = channel_get_user (chan, target)))
|
|
|
|
{
|
|
|
|
if (user->modes & IRC_CHAN_MODE_OPERATOR)
|
|
|
|
str_append_c (&chars, '@');
|
|
|
|
else if (user->modes & IRC_CHAN_MODE_VOICE)
|
|
|
|
str_append_c (&chars, '+');
|
|
|
|
}
|
|
|
|
|
|
|
|
irc_send_reply (c, IRC_RPL_WHOREPLY, chan ? chan->name : "*",
|
|
|
|
target->username, target->hostname, target->ctx->server_name,
|
|
|
|
target->nickname, chars.str, 0 /* hop count */, target->realname);
|
|
|
|
str_free (&chars);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_match_send_rpl_whoreply (struct client *c, struct client *target,
|
|
|
|
const char *mask)
|
|
|
|
{
|
|
|
|
bool is_roommate = false;
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
|
|
|
struct channel *chan;
|
|
|
|
while ((chan = str_map_iter_next (&iter)))
|
|
|
|
if (channel_get_user (chan, target) && channel_get_user (chan, c))
|
|
|
|
{
|
|
|
|
is_roommate = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((target->mode & IRC_USER_MODE_INVISIBLE) && !is_roommate)
|
|
|
|
return;
|
|
|
|
|
2014-08-05 23:08:29 +02:00
|
|
|
if (irc_fnmatch (mask, target->hostname)
|
|
|
|
&& irc_fnmatch (mask, target->nickname)
|
|
|
|
&& irc_fnmatch (mask, target->realname)
|
|
|
|
&& irc_fnmatch (mask, c->ctx->server_name))
|
2014-08-04 23:36:35 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Try to find a channel they're on that's visible to us
|
|
|
|
struct channel *user_chan = NULL;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
|
|
|
while ((chan = str_map_iter_next (&iter)))
|
|
|
|
if (channel_get_user (chan, target)
|
|
|
|
&& (!(chan->modes & (IRC_CHAN_MODE_PRIVATE | IRC_CHAN_MODE_SECRET))
|
|
|
|
|| channel_get_user (chan, c)))
|
|
|
|
{
|
|
|
|
user_chan = chan;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
irc_send_rpl_whoreply (c, user_chan, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_who (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
bool only_ops = msg->params.len > 1 && !strcmp (msg->params.vector[1], "o");
|
|
|
|
|
|
|
|
const char *shown_mask = msg->params.vector[0], *used_mask;
|
|
|
|
if (!shown_mask)
|
|
|
|
used_mask = shown_mask = "*";
|
|
|
|
else if (!strcmp (shown_mask, "0"))
|
|
|
|
used_mask = "*";
|
|
|
|
else
|
|
|
|
used_mask = shown_mask;
|
|
|
|
|
|
|
|
struct channel *chan;
|
|
|
|
if ((chan = str_map_find (&c->ctx->channels, used_mask)))
|
|
|
|
{
|
|
|
|
bool on_chan = !!channel_get_user (chan, c);
|
|
|
|
if (on_chan || !(chan->modes & IRC_CHAN_MODE_SECRET))
|
|
|
|
for (struct channel_user *iter = chan->users;
|
|
|
|
iter; iter = iter->next)
|
|
|
|
{
|
2014-08-09 22:57:29 +02:00
|
|
|
if ((on_chan || !(iter->c->mode & IRC_USER_MODE_INVISIBLE))
|
|
|
|
&& (!only_ops || (iter->c->mode & IRC_USER_MODE_OPERATOR)))
|
|
|
|
irc_send_rpl_whoreply (c, chan, iter->c);
|
2014-08-04 23:36:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->users);
|
|
|
|
struct client *target;
|
|
|
|
while ((target = str_map_iter_next (&iter)))
|
|
|
|
if (!only_ops || (target->mode & IRC_USER_MODE_OPERATOR))
|
|
|
|
irc_match_send_rpl_whoreply (c, target, used_mask);
|
|
|
|
}
|
|
|
|
irc_send_reply (c, IRC_RPL_ENDOFWHO, shown_mask);
|
|
|
|
}
|
|
|
|
|
2014-08-05 23:11:53 +02:00
|
|
|
static void
|
|
|
|
irc_send_whois_reply (struct client *c, const struct client *target)
|
|
|
|
{
|
|
|
|
const char *nick = target->nickname;
|
|
|
|
irc_send_reply (c, IRC_RPL_WHOISUSER, nick, target->username,
|
|
|
|
target->hostname, target->realname);
|
|
|
|
irc_send_reply (c, IRC_RPL_WHOISSERVER, nick, target->ctx->server_name,
|
|
|
|
str_map_find (&c->ctx->config, "server_info"));
|
|
|
|
if (target->mode & IRC_USER_MODE_OPERATOR)
|
|
|
|
irc_send_reply (c, IRC_RPL_WHOISOPERATOR, nick);
|
|
|
|
irc_send_reply (c, IRC_RPL_WHOISIDLE, nick,
|
|
|
|
(int) (time (NULL) - target->last_active));
|
2014-08-10 19:38:00 +02:00
|
|
|
if (target->away_message)
|
|
|
|
irc_send_reply (c, IRC_RPL_AWAY, nick, target->away_message);
|
2014-08-05 23:11:53 +02:00
|
|
|
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
|
|
|
struct channel *chan;
|
|
|
|
struct channel_user *channel_user;
|
|
|
|
while ((chan = str_map_iter_next (&iter)))
|
|
|
|
if ((channel_user = channel_get_user (chan, target))
|
|
|
|
&& (!(chan->modes & (IRC_CHAN_MODE_PRIVATE | IRC_CHAN_MODE_SECRET))
|
|
|
|
|| channel_get_user (chan, c)))
|
|
|
|
{
|
|
|
|
struct str item;
|
|
|
|
str_init (&item);
|
|
|
|
if (channel_user->modes & IRC_CHAN_MODE_OPERATOR)
|
|
|
|
str_append_c (&item, '@');
|
|
|
|
else if (channel_user->modes & IRC_CHAN_MODE_VOICE)
|
|
|
|
str_append_c (&item, '+');
|
|
|
|
str_append (&item, chan->name);
|
|
|
|
str_append_c (&item, ' ');
|
|
|
|
|
|
|
|
// TODO: try to merge the results into as few messages as possible
|
|
|
|
irc_send_reply (c, IRC_RPL_WHOISCHANNELS, nick, item.str);
|
|
|
|
|
|
|
|
str_free (&item);
|
|
|
|
}
|
|
|
|
|
|
|
|
irc_send_reply (c, IRC_RPL_ENDOFWHOIS, nick);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_whois (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
if (msg->params.len > 1 && !irc_is_this_me (c->ctx, msg->params.vector[0]))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[0]);
|
|
|
|
|
|
|
|
struct str_vector masks;
|
|
|
|
str_vector_init (&masks);
|
|
|
|
const char *masks_str = msg->params.vector[msg->params.len > 1];
|
|
|
|
split_str_ignore_empty (masks_str, ',', &masks);
|
|
|
|
for (size_t i = 0; i < masks.len; i++)
|
|
|
|
{
|
|
|
|
const char *mask = masks.vector[i];
|
|
|
|
struct client *target;
|
|
|
|
if (!strpbrk (mask, "*?"))
|
|
|
|
{
|
|
|
|
if (!(target = str_map_find (&c->ctx->users, mask)))
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHNICK, mask);
|
|
|
|
else
|
|
|
|
irc_send_whois_reply (c, target);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->users);
|
|
|
|
bool found = false;
|
|
|
|
while ((target = str_map_iter_next (&iter))
|
|
|
|
&& !irc_fnmatch (mask, target->nickname))
|
|
|
|
{
|
|
|
|
irc_send_whois_reply (c, target);
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
irc_send_reply (c, IRC_ERR_NOSUCHNICK, mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
str_vector_free (&masks);
|
|
|
|
}
|
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
static void
|
|
|
|
irc_send_rpl_topic (struct client *c, struct channel *chan)
|
|
|
|
{
|
|
|
|
if (!*chan->topic)
|
|
|
|
irc_send_reply (c, IRC_RPL_NOTOPIC, chan->name);
|
|
|
|
else
|
|
|
|
irc_send_reply (c, IRC_RPL_TOPIC, chan->name, chan->topic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_topic (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
|
|
|
|
const char *target = msg->params.vector[0];
|
|
|
|
struct channel *chan = str_map_find (&c->ctx->channels, target);
|
|
|
|
if (!chan)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHCHANNEL, target);
|
|
|
|
|
|
|
|
if (msg->params.len < 2)
|
|
|
|
{
|
|
|
|
irc_send_rpl_topic (c, chan);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct channel_user *user = channel_get_user (chan, c);
|
|
|
|
if (!user)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOTONCHANNEL, target);
|
|
|
|
|
|
|
|
if ((chan->modes & IRC_CHAN_MODE_PROTECTED_TOPIC)
|
|
|
|
&& !(user->modes & IRC_CHAN_MODE_OPERATOR))
|
2014-08-05 01:38:49 +02:00
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_CHANOPRIVSNEEDED, target);
|
2014-08-04 00:35:01 +02:00
|
|
|
|
|
|
|
free (chan->topic);
|
|
|
|
chan->topic = xstrdup (msg->params.vector[1]);
|
|
|
|
|
|
|
|
char *message = xstrdup_printf (":%s!%s@%s TOPIC %s :%s",
|
|
|
|
c->nickname, c->username, c->hostname, target, chan->topic);
|
2014-08-05 23:26:30 +02:00
|
|
|
irc_channel_multicast (chan, message, NULL);
|
2014-08-04 00:35:01 +02:00
|
|
|
free (message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_try_part (struct client *c, const char *channel_name, const char *reason)
|
|
|
|
{
|
|
|
|
if (!reason)
|
|
|
|
reason = c->nickname;
|
|
|
|
|
|
|
|
struct channel *chan;
|
|
|
|
if (!(chan = str_map_find (&c->ctx->channels, channel_name)))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHCHANNEL, channel_name);
|
|
|
|
|
|
|
|
struct channel_user *user;
|
|
|
|
if (!(user = channel_get_user (chan, c)))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOTONCHANNEL, channel_name);
|
|
|
|
|
|
|
|
char *message = xstrdup_printf (":%s!%s@%s PART %s :%s",
|
|
|
|
c->nickname, c->username, c->hostname, channel_name, reason);
|
|
|
|
if (!(chan->modes & IRC_CHAN_MODE_QUIET))
|
2014-08-05 23:26:30 +02:00
|
|
|
irc_channel_multicast (chan, message, NULL);
|
2014-08-04 00:35:01 +02:00
|
|
|
else
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, "%s", message);
|
2014-08-04 00:35:01 +02:00
|
|
|
free (message);
|
|
|
|
|
|
|
|
channel_remove_user (chan, user);
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_channel_destroy_if_empty (c->ctx, chan);
|
2014-08-04 00:35:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_part_all_channels (struct client *c)
|
|
|
|
{
|
|
|
|
struct str_map_iter iter;
|
|
|
|
str_map_iter_init (&iter, &c->ctx->channels);
|
2014-08-10 17:27:58 +02:00
|
|
|
struct channel *chan, *next = str_map_iter_next (&iter);
|
|
|
|
for (chan = next; chan; chan = next)
|
2014-08-04 00:35:01 +02:00
|
|
|
{
|
|
|
|
// We have to be careful here, the channel might get destroyed
|
|
|
|
next = str_map_iter_next (&iter);
|
|
|
|
if (channel_get_user (chan, c))
|
|
|
|
irc_try_part (c, chan->name, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_part (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
|
|
|
|
const char *reason = msg->params.len > 1 ? msg->params.vector[1] : NULL;
|
|
|
|
struct str_vector channels;
|
|
|
|
str_vector_init (&channels);
|
|
|
|
split_str_ignore_empty (msg->params.vector[0], ',', &channels);
|
|
|
|
for (size_t i = 0; i < channels.len; i++)
|
|
|
|
irc_try_part (c, channels.vector[i], reason);
|
|
|
|
str_vector_free (&channels);
|
|
|
|
}
|
|
|
|
|
2014-08-05 01:38:49 +02:00
|
|
|
static void
|
|
|
|
irc_try_kick (struct client *c, const char *channel_name, const char *nick,
|
|
|
|
const char *reason)
|
|
|
|
{
|
|
|
|
struct channel *chan;
|
|
|
|
if (!(chan = str_map_find (&c->ctx->channels, channel_name)))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHCHANNEL, channel_name);
|
|
|
|
|
|
|
|
struct channel_user *user;
|
|
|
|
if (!(user = channel_get_user (chan, c)))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOTONCHANNEL, channel_name);
|
|
|
|
if (!(user->modes & IRC_CHAN_MODE_OPERATOR))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_CHANOPRIVSNEEDED, channel_name);
|
|
|
|
|
|
|
|
struct client *client;
|
|
|
|
if (!(client = str_map_find (&c->ctx->users, nick))
|
|
|
|
|| !(user = channel_get_user (chan, client)))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_USERNOTINCHANNEL, nick, channel_name);
|
|
|
|
|
|
|
|
char *message = xstrdup_printf (":%s!%s@%s KICK %s %s :%s",
|
|
|
|
c->nickname, c->username, c->hostname, channel_name, nick, reason);
|
|
|
|
if (!(chan->modes & IRC_CHAN_MODE_QUIET))
|
2014-08-05 23:26:30 +02:00
|
|
|
irc_channel_multicast (chan, message, NULL);
|
2014-08-05 01:38:49 +02:00
|
|
|
else
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, "%s", message);
|
2014-08-05 01:38:49 +02:00
|
|
|
free (message);
|
|
|
|
|
|
|
|
channel_remove_user (chan, user);
|
2014-08-09 23:51:27 +02:00
|
|
|
irc_channel_destroy_if_empty (c->ctx, chan);
|
2014-08-05 01:38:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_kick (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 2)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
|
|
|
|
const char *reason = c->nickname;
|
|
|
|
if (msg->params.len > 2)
|
|
|
|
reason = msg->params.vector[2];
|
|
|
|
|
|
|
|
struct str_vector channels;
|
|
|
|
struct str_vector users;
|
|
|
|
str_vector_init (&channels);
|
|
|
|
str_vector_init (&users);
|
|
|
|
split_str_ignore_empty (msg->params.vector[0], ',', &channels);
|
|
|
|
split_str_ignore_empty (msg->params.vector[1], ',', &users);
|
|
|
|
|
|
|
|
if (channels.len == 1)
|
|
|
|
for (size_t i = 0; i < users.len; i++)
|
|
|
|
irc_try_kick (c, channels.vector[0], users.vector[i], reason);
|
|
|
|
else
|
|
|
|
for (size_t i = 0; i < channels.len && i < users.len; i++)
|
|
|
|
irc_try_kick (c, channels.vector[i], users.vector[i], reason);
|
|
|
|
|
|
|
|
str_vector_free (&channels);
|
|
|
|
str_vector_free (&users);
|
|
|
|
}
|
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
static void
|
|
|
|
irc_try_join (struct client *c, const char *channel_name, const char *key)
|
|
|
|
{
|
|
|
|
struct channel *chan = str_map_find (&c->ctx->channels, channel_name);
|
|
|
|
unsigned user_mode = 0;
|
|
|
|
if (!chan)
|
|
|
|
{
|
|
|
|
if (irc_validate_channel_name (channel_name) != VALIDATION_OK)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_BADCHANMASK, channel_name);
|
2014-08-09 23:51:27 +02:00
|
|
|
chan = irc_channel_create (c->ctx, channel_name);
|
2014-08-04 00:35:01 +02:00
|
|
|
user_mode = IRC_CHAN_MODE_OPERATOR;
|
|
|
|
}
|
|
|
|
else if (channel_get_user (chan, c))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((chan->modes & IRC_CHAN_MODE_INVITE_ONLY)
|
|
|
|
&& !client_in_mask_list (c, &chan->invite_list))
|
|
|
|
// TODO: exceptions caused by INVITE
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_INVITEONLYCHAN, channel_name);
|
|
|
|
if (chan->key && (!key || strcmp (key, chan->key)))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_BADCHANNELKEY, channel_name);
|
|
|
|
if (chan->user_limit != -1
|
|
|
|
&& channel_user_count (chan) >= (size_t) chan->user_limit)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_CHANNELISFULL, channel_name);
|
|
|
|
if (client_in_mask_list (c, &chan->ban_list)
|
|
|
|
&& !client_in_mask_list (c, &chan->exception_list))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_BANNEDFROMCHAN, channel_name);
|
|
|
|
|
|
|
|
channel_add_user (chan, c)->modes = user_mode;
|
|
|
|
|
|
|
|
char *message = xstrdup_printf (":%s!%s@%s JOIN %s",
|
|
|
|
c->nickname, c->username, c->hostname, channel_name);
|
|
|
|
if (!(chan->modes & IRC_CHAN_MODE_QUIET))
|
2014-08-05 23:26:30 +02:00
|
|
|
irc_channel_multicast (chan, message, NULL);
|
2014-08-04 00:35:01 +02:00
|
|
|
else
|
2014-08-09 23:51:27 +02:00
|
|
|
client_send (c, "%s", message);
|
2014-08-04 00:35:01 +02:00
|
|
|
free (message);
|
|
|
|
|
|
|
|
irc_send_rpl_topic (c, chan);
|
|
|
|
irc_send_rpl_namreply (c, chan);
|
2014-08-04 23:52:58 +02:00
|
|
|
irc_send_reply (c, IRC_RPL_ENDOFNAMES, chan->name);
|
2014-08-04 00:35:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_join (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
|
|
|
|
if (!strcmp (msg->params.vector[0], "0"))
|
|
|
|
{
|
|
|
|
irc_part_all_channels (c);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct str_vector channels;
|
|
|
|
struct str_vector keys;
|
|
|
|
str_vector_init (&channels);
|
|
|
|
str_vector_init (&keys);
|
|
|
|
split_str_ignore_empty (msg->params.vector[0], ',', &channels);
|
|
|
|
if (msg->params.len > 1)
|
|
|
|
split_str_ignore_empty (msg->params.vector[1], ',', &keys);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < channels.len; i++)
|
|
|
|
irc_try_join (c, channels.vector[i],
|
|
|
|
i < keys.len ? keys.vector[i] : NULL);
|
|
|
|
|
|
|
|
str_vector_free (&channels);
|
|
|
|
str_vector_free (&keys);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_summon (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
(void) msg;
|
|
|
|
irc_send_reply (c, IRC_ERR_SUMMONDISABLED);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_users (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
(void) msg;
|
|
|
|
irc_send_reply (c, IRC_ERR_USERSDISABLED);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_away (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
{
|
|
|
|
free (c->away_message);
|
|
|
|
c->away_message = NULL;
|
|
|
|
irc_send_reply (c, IRC_RPL_UNAWAY);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
free (c->away_message);
|
|
|
|
c->away_message = xstrdup (msg->params.vector[0]);
|
|
|
|
irc_send_reply (c, IRC_RPL_NOWAWAY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-05 23:10:59 +02:00
|
|
|
static void
|
|
|
|
irc_handle_ison (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 1)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
|
|
|
|
struct str result;
|
|
|
|
str_init (&result);
|
|
|
|
|
|
|
|
const char *nick;
|
|
|
|
if (str_map_find (&c->ctx->users, (nick = msg->params.vector[0])))
|
|
|
|
str_append (&result, nick);
|
|
|
|
for (size_t i = 1; i < msg->params.len; i++)
|
|
|
|
if (str_map_find (&c->ctx->users, (nick = msg->params.vector[i])))
|
|
|
|
str_append_printf (&result, " %s", nick);
|
|
|
|
|
|
|
|
irc_send_reply (c, IRC_RPL_ISON, result.str);
|
|
|
|
str_free (&result);
|
|
|
|
}
|
|
|
|
|
2014-08-09 03:58:37 +02:00
|
|
|
static void
|
|
|
|
irc_handle_admin (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len > 0 && !irc_is_this_me (c->ctx, msg->params.vector[0]))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[0]);
|
|
|
|
irc_send_reply (c, IRC_ERR_NOADMININFO, c->ctx->server_name);
|
|
|
|
}
|
|
|
|
|
2014-08-07 23:41:22 +02:00
|
|
|
static void
|
|
|
|
irc_handle_kill (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
if (msg->params.len < 2)
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NEEDMOREPARAMS, msg->command);
|
|
|
|
if (!(c->mode & IRC_USER_MODE_OPERATOR))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOPRIVILEGES);
|
|
|
|
|
|
|
|
struct client *target;
|
|
|
|
if (!(target = str_map_find (&c->ctx->users, msg->params.vector[0])))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOSUCHNICK, msg->params.vector[0]);
|
|
|
|
char *reason = xstrdup_printf ("Killed by %s: %s",
|
|
|
|
c->nickname, msg->params.vector[1]);
|
2014-08-09 23:51:27 +02:00
|
|
|
client_close_link (target, reason);
|
2014-08-07 23:41:22 +02:00
|
|
|
free (reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_handle_die (const struct irc_message *msg, struct client *c)
|
|
|
|
{
|
|
|
|
(void) msg;
|
|
|
|
|
|
|
|
if (!(c->mode & IRC_USER_MODE_OPERATOR))
|
|
|
|
RETURN_WITH_REPLY (c, IRC_ERR_NOPRIVILEGES);
|
|
|
|
if (!c->ctx->quitting)
|
|
|
|
irc_initiate_quit (c->ctx);
|
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct irc_command
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
bool requires_registration;
|
2014-07-14 20:54:47 +02:00
|
|
|
void (*handler) (const struct irc_message *, struct client *);
|
2014-07-14 02:35:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_register_handlers (struct server_context *ctx)
|
|
|
|
{
|
2014-07-17 23:51:34 +02:00
|
|
|
// TODO: add an index for IRC_ERR_NOSUCHSERVER validation?
|
2014-08-04 00:35:01 +02:00
|
|
|
// TODO: add a minimal parameter count?
|
2014-08-07 23:41:22 +02:00
|
|
|
// TODO: add a field for oper-only commands?
|
2014-07-14 02:35:38 +02:00
|
|
|
static const struct irc_command message_handlers[] =
|
|
|
|
{
|
2014-08-02 22:58:18 +02:00
|
|
|
{ "PASS", false, irc_handle_pass },
|
|
|
|
{ "NICK", false, irc_handle_nick },
|
|
|
|
{ "USER", false, irc_handle_user },
|
|
|
|
|
|
|
|
{ "USERHOST", true, irc_handle_userhost },
|
|
|
|
{ "LUSERS", true, irc_handle_lusers },
|
|
|
|
{ "MOTD", true, irc_handle_motd },
|
|
|
|
{ "PING", true, irc_handle_ping },
|
|
|
|
{ "PONG", false, irc_handle_pong },
|
|
|
|
{ "QUIT", false, irc_handle_quit },
|
|
|
|
{ "TIME", true, irc_handle_time },
|
|
|
|
{ "VERSION", true, irc_handle_version },
|
2014-08-04 00:35:01 +02:00
|
|
|
{ "USERS", true, irc_handle_users },
|
|
|
|
{ "SUMMON", true, irc_handle_summon },
|
|
|
|
{ "AWAY", true, irc_handle_away },
|
2014-08-09 03:58:37 +02:00
|
|
|
{ "ADMIN", true, irc_handle_admin },
|
2014-08-02 22:58:18 +02:00
|
|
|
|
2014-08-04 00:35:01 +02:00
|
|
|
{ "MODE", true, irc_handle_mode },
|
2014-08-02 22:58:18 +02:00
|
|
|
{ "PRIVMSG", true, irc_handle_privmsg },
|
2014-08-05 01:04:21 +02:00
|
|
|
{ "NOTICE", true, irc_handle_notice },
|
2014-08-04 00:35:01 +02:00
|
|
|
{ "JOIN", true, irc_handle_join },
|
|
|
|
{ "PART", true, irc_handle_part },
|
2014-08-05 01:38:49 +02:00
|
|
|
{ "KICK", true, irc_handle_kick },
|
2014-08-04 00:35:01 +02:00
|
|
|
{ "TOPIC", true, irc_handle_topic },
|
2014-08-02 23:31:41 +02:00
|
|
|
{ "LIST", true, irc_handle_list },
|
2014-08-04 00:35:01 +02:00
|
|
|
{ "NAMES", true, irc_handle_names },
|
2014-08-04 23:36:35 +02:00
|
|
|
{ "WHO", true, irc_handle_who },
|
2014-08-05 23:11:53 +02:00
|
|
|
{ "WHOIS", true, irc_handle_whois },
|
2014-08-05 23:10:59 +02:00
|
|
|
{ "ISON", true, irc_handle_ison },
|
2014-08-07 23:41:22 +02:00
|
|
|
|
|
|
|
{ "KILL", true, irc_handle_kill },
|
|
|
|
{ "DIE", true, irc_handle_die },
|
2014-07-14 02:35:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < N_ELEMENTS (message_handlers); i++)
|
|
|
|
{
|
|
|
|
const struct irc_command *cmd = &message_handlers[i];
|
2014-07-15 23:28:00 +02:00
|
|
|
str_map_set (&ctx->handlers, cmd->name, (void *) cmd);
|
2014-07-14 02:35:38 +02:00
|
|
|
}
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
irc_process_message (const struct irc_message *msg,
|
|
|
|
const char *raw, void *user_data)
|
|
|
|
{
|
2014-07-14 02:35:38 +02:00
|
|
|
(void) raw;
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
struct client *c = user_data;
|
2014-08-02 00:09:23 +02:00
|
|
|
if (c->closing_link)
|
|
|
|
return;
|
|
|
|
|
2014-08-10 02:22:52 +02:00
|
|
|
if (!flood_detector_check (&c->antiflood))
|
|
|
|
{
|
|
|
|
client_close_link (c, "Excess flood");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
struct irc_command *cmd = str_map_find (&c->ctx->handlers, msg->command);
|
2014-07-14 02:35:38 +02:00
|
|
|
if (!cmd)
|
2014-07-15 23:28:00 +02:00
|
|
|
irc_send_reply (c, IRC_ERR_UNKNOWNCOMMAND, msg->command);
|
2014-07-14 20:54:47 +02:00
|
|
|
else if (cmd->requires_registration && !c->registered)
|
|
|
|
irc_send_reply (c, IRC_ERR_NOTREGISTERED);
|
2014-07-14 02:35:38 +02:00
|
|
|
else
|
2014-07-14 20:54:47 +02:00
|
|
|
cmd->handler (msg, c);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
// --- Network I/O -------------------------------------------------------------
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
static bool
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_try_read (struct client *c)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
struct str *buf = &c->read_buffer;
|
2014-07-12 23:06:39 +02:00
|
|
|
ssize_t n_read;
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
str_ensure_space (buf, 512);
|
2014-07-14 20:54:47 +02:00
|
|
|
n_read = recv (c->socket_fd, buf->str + buf->len,
|
2014-07-12 23:06:39 +02:00
|
|
|
buf->alloc - buf->len - 1 /* null byte */, 0);
|
|
|
|
|
|
|
|
if (n_read > 0)
|
|
|
|
{
|
|
|
|
buf->str[buf->len += n_read] = '\0';
|
|
|
|
// TODO: discard characters above the 512 character limit
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_process_buffer (buf, irc_process_message, c);
|
2014-07-12 23:06:39 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (n_read == 0)
|
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, NULL);
|
2014-07-12 23:06:39 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errno == EAGAIN)
|
|
|
|
return true;
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
print_debug ("%s: %s: %s", __func__, "recv", strerror (errno));
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, strerror (errno));
|
2014-07-12 23:06:39 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_try_read_ssl (struct client *c)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->ssl_tx_want_rx)
|
2014-07-09 01:54:50 +02:00
|
|
|
return true;
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
struct str *buf = &c->read_buffer;
|
|
|
|
c->ssl_rx_want_tx = false;
|
2014-07-09 01:54:50 +02:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
str_ensure_space (buf, 512);
|
2014-07-14 20:54:47 +02:00
|
|
|
int n_read = SSL_read (c->ssl, buf->str + buf->len,
|
2014-07-09 01:54:50 +02:00
|
|
|
buf->alloc - buf->len - 1 /* null byte */);
|
|
|
|
|
|
|
|
const char *error_info = NULL;
|
2014-07-14 20:54:47 +02:00
|
|
|
switch (xssl_get_error (c->ssl, n_read, &error_info))
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
case SSL_ERROR_NONE:
|
|
|
|
buf->str[buf->len += n_read] = '\0';
|
|
|
|
// TODO: discard characters above the 512 character limit
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_process_buffer (buf, irc_process_message, c);
|
2014-07-09 01:54:50 +02:00
|
|
|
continue;
|
|
|
|
case SSL_ERROR_ZERO_RETURN:
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, NULL);
|
2014-07-09 01:54:50 +02:00
|
|
|
return false;
|
|
|
|
case SSL_ERROR_WANT_READ:
|
|
|
|
return true;
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
2014-07-14 20:54:47 +02:00
|
|
|
c->ssl_rx_want_tx = true;
|
2014-07-12 22:54:35 +02:00
|
|
|
return true;
|
2014-07-09 01:54:50 +02:00
|
|
|
case XSSL_ERROR_TRY_AGAIN:
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
print_debug ("%s: %s: %s", __func__, "SSL_read", error_info);
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, error_info);
|
2014-07-09 01:54:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_try_write (struct client *c)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
struct str *buf = &c->write_buffer;
|
2014-07-12 23:13:13 +02:00
|
|
|
ssize_t n_written;
|
|
|
|
|
|
|
|
while (buf->len)
|
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
n_written = send (c->socket_fd, buf->str, buf->len, 0);
|
2014-07-12 23:13:13 +02:00
|
|
|
if (n_written >= 0)
|
|
|
|
{
|
|
|
|
str_remove_slice (buf, 0, n_written);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errno == EAGAIN)
|
|
|
|
return true;
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
print_debug ("%s: %s: %s", __func__, "send", strerror (errno));
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, strerror (errno));
|
2014-07-12 23:13:13 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-12 22:54:35 +02:00
|
|
|
return true;
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_try_write_ssl (struct client *c)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->ssl_rx_want_tx)
|
2014-07-09 01:54:50 +02:00
|
|
|
return true;
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
struct str *buf = &c->write_buffer;
|
|
|
|
c->ssl_tx_want_rx = false;
|
2014-07-09 01:54:50 +02:00
|
|
|
while (buf->len)
|
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
int n_written = SSL_write (c->ssl, buf->str, buf->len);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
const char *error_info = NULL;
|
2014-07-14 20:54:47 +02:00
|
|
|
switch (xssl_get_error (c->ssl, n_written, &error_info))
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
case SSL_ERROR_NONE:
|
|
|
|
str_remove_slice (buf, 0, n_written);
|
|
|
|
continue;
|
|
|
|
case SSL_ERROR_ZERO_RETURN:
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, NULL);
|
2014-07-09 01:54:50 +02:00
|
|
|
return false;
|
|
|
|
case SSL_ERROR_WANT_WRITE:
|
|
|
|
return true;
|
|
|
|
case SSL_ERROR_WANT_READ:
|
2014-07-14 20:54:47 +02:00
|
|
|
c->ssl_tx_want_rx = true;
|
2014-07-12 22:54:35 +02:00
|
|
|
return true;
|
2014-07-09 01:54:50 +02:00
|
|
|
case XSSL_ERROR_TRY_AGAIN:
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
print_debug ("%s: %s: %s", __func__, "SSL_write", error_info);
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, error_info);
|
2014-07-09 01:54:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-14 02:35:38 +02:00
|
|
|
static bool
|
2014-07-14 20:54:47 +02:00
|
|
|
irc_autodetect_ssl (struct client *c)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
|
|
|
// Trivial SSL/TLS autodetection. The first block of data returned by
|
|
|
|
// recv() must be at least three bytes long for this to work reliably,
|
|
|
|
// but that should not pose a problem in practice.
|
|
|
|
//
|
|
|
|
// SSL2: 1xxx xxxx | xxxx xxxx | <1>
|
|
|
|
// (message length) (client hello)
|
|
|
|
// SSL3/TLS: <22> | <3> | xxxx xxxx
|
|
|
|
// (handshake)| (protocol version)
|
|
|
|
//
|
|
|
|
// Such byte sequences should never occur at the beginning of regular IRC
|
|
|
|
// communication, which usually begins with USER/NICK/PASS/SERVICE.
|
|
|
|
|
|
|
|
char buf[3];
|
|
|
|
start:
|
2014-07-14 20:54:47 +02:00
|
|
|
switch (recv (c->socket_fd, buf, sizeof buf, MSG_PEEK))
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
|
|
|
case 3:
|
|
|
|
if ((buf[0] & 0x80) && buf[2] == 1)
|
|
|
|
return true;
|
|
|
|
case 2:
|
|
|
|
if (buf[0] == 22 && buf[1] == 3)
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (buf[0] == 22)
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (errno == EINTR)
|
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-07-14 20:54:47 +02:00
|
|
|
client_initialize_ssl (struct client *c)
|
2014-07-14 02:35:38 +02:00
|
|
|
{
|
2014-08-19 20:54:16 +02:00
|
|
|
const char *error_info = NULL;
|
2014-07-14 20:54:47 +02:00
|
|
|
if (!c->ctx->ssl_ctx)
|
2014-08-19 20:54:16 +02:00
|
|
|
{
|
|
|
|
error_info = "SSL support disabled";
|
|
|
|
goto error_ssl_1;
|
|
|
|
}
|
2014-07-14 02:35:38 +02:00
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
c->ssl = SSL_new (c->ctx->ssl_ctx);
|
|
|
|
if (!c->ssl)
|
2014-07-14 02:35:38 +02:00
|
|
|
goto error_ssl_1;
|
2014-07-14 20:54:47 +02:00
|
|
|
if (!SSL_set_fd (c->ssl, c->socket_fd))
|
2014-07-14 02:35:38 +02:00
|
|
|
goto error_ssl_2;
|
2014-08-19 20:54:16 +02:00
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
SSL_set_accept_state (c->ssl);
|
2014-07-14 02:35:38 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error_ssl_2:
|
2014-07-14 20:54:47 +02:00
|
|
|
SSL_free (c->ssl);
|
|
|
|
c->ssl = NULL;
|
2014-07-14 02:35:38 +02:00
|
|
|
error_ssl_1:
|
|
|
|
// XXX: these error strings are really nasty; also there could be
|
|
|
|
// multiple errors on the OpenSSL stack.
|
2014-08-19 20:54:16 +02:00
|
|
|
if (!error_info)
|
|
|
|
error_info = ERR_error_string (ERR_get_error (), NULL);
|
|
|
|
print_debug ("could not initialize SSL for %s: %s", c->address, error_info);
|
2014-07-14 02:35:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
static void
|
2014-08-09 23:51:27 +02:00
|
|
|
on_client_ready (const struct pollfd *pfd, void *user_data)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
struct client *c = user_data;
|
|
|
|
if (!c->initialized)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
hard_assert (pfd->events == POLLIN);
|
2014-07-14 20:54:47 +02:00
|
|
|
if (irc_autodetect_ssl (c) && !client_initialize_ssl (c))
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
client_kill (c, NULL);
|
2014-07-09 01:54:50 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-07-14 20:54:47 +02:00
|
|
|
c->initialized = true;
|
2014-08-02 00:09:23 +02:00
|
|
|
client_set_ping_timer (c);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->ssl)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
// Reads may want to write, writes may want to read, poll() may
|
|
|
|
// return unexpected things in `revents'... let's try both
|
2014-07-14 20:54:47 +02:00
|
|
|
if (!irc_try_read_ssl (c) || !irc_try_write_ssl (c))
|
2014-07-12 22:54:35 +02:00
|
|
|
return;
|
2014-08-02 20:50:33 +02:00
|
|
|
}
|
|
|
|
else if (!irc_try_read (c) || !irc_try_write (c))
|
|
|
|
return;
|
|
|
|
|
|
|
|
client_update_poller (c, pfd);
|
|
|
|
|
|
|
|
// The purpose of the `closing_link' state is to transfer the `ERROR'
|
2015-03-23 22:57:13 +01:00
|
|
|
if (c->closing_link && !c->half_closed && !c->write_buffer.len)
|
|
|
|
{
|
|
|
|
// To make sure the client has received our ERROR message, we must
|
|
|
|
// first half-close the connection, otherwise it could happen that they
|
|
|
|
// receive a RST from our TCP stack first when we receive further data
|
|
|
|
|
|
|
|
// We only send the "close notify" alert if libssl can write to the
|
|
|
|
// socket at this moment. All the other data has been already written,
|
|
|
|
// though, and the client will receive a TCP half-close as usual, so
|
|
|
|
// it's not that important if the alert actually gets through.
|
|
|
|
if (c->ssl)
|
|
|
|
(void) SSL_shutdown (c->ssl);
|
|
|
|
|
|
|
|
// Either the shutdown succeeds, in which case we set a flag so that
|
|
|
|
// we don't retry this action and wait until we get an EOF, or it fails
|
|
|
|
// and we just kill the client straight away
|
|
|
|
if (!shutdown (c->socket_fd, SHUT_WR))
|
|
|
|
c->half_closed = true;
|
|
|
|
else
|
|
|
|
client_kill (c, NULL);
|
|
|
|
}
|
2014-08-02 20:50:33 +02:00
|
|
|
}
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-08-02 20:50:33 +02:00
|
|
|
static void
|
|
|
|
client_update_poller (struct client *c, const struct pollfd *pfd)
|
|
|
|
{
|
|
|
|
int new_events = POLLIN;
|
|
|
|
if (c->ssl)
|
|
|
|
{
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->write_buffer.len || c->ssl_rx_want_tx)
|
2014-07-09 01:54:50 +02:00
|
|
|
new_events |= POLLOUT;
|
|
|
|
|
|
|
|
// While we're waiting for an opposite event, we ignore the original
|
2014-07-14 20:54:47 +02:00
|
|
|
if (c->ssl_rx_want_tx) new_events &= ~POLLIN;
|
|
|
|
if (c->ssl_tx_want_rx) new_events &= ~POLLOUT;
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
2014-08-02 20:50:33 +02:00
|
|
|
else if (c->write_buffer.len)
|
|
|
|
new_events |= POLLOUT;
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
hard_assert (new_events != 0);
|
2014-08-02 20:50:33 +02:00
|
|
|
if (!pfd || pfd->events != new_events)
|
2015-02-12 01:53:03 +01:00
|
|
|
poller_fd_set (&c->socket_event, new_events);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-07-14 20:54:47 +02:00
|
|
|
on_irc_client_available (const struct pollfd *pfd, void *user_data)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
(void) pfd;
|
|
|
|
struct server_context *ctx = user_data;
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
// XXX: `struct sockaddr_storage' is not the most portable thing
|
|
|
|
struct sockaddr_storage peer;
|
|
|
|
socklen_t peer_len = sizeof peer;
|
|
|
|
|
2014-08-09 00:01:33 +02:00
|
|
|
int fd = accept (pfd->fd, (struct sockaddr *) &peer, &peer_len);
|
2014-07-09 01:54:50 +02:00
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
if (errno == EAGAIN)
|
|
|
|
break;
|
2014-08-02 15:01:48 +02:00
|
|
|
if (errno == EINTR
|
|
|
|
|| errno == ECONNABORTED)
|
2014-07-09 01:54:50 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// TODO: handle resource exhaustion (EMFILE, ENFILE) specially
|
2014-08-10 17:28:10 +02:00
|
|
|
// (stop accepting new connections and wait until we close some;
|
|
|
|
// also set a timer in case of ENFILE).
|
|
|
|
print_fatal ("%s: %s", "accept", strerror (errno));
|
|
|
|
irc_initiate_quit (ctx);
|
|
|
|
break;
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-08-02 17:01:05 +02:00
|
|
|
if (ctx->max_connections != 0 && ctx->n_clients >= ctx->max_connections)
|
2014-08-02 15:01:48 +02:00
|
|
|
{
|
|
|
|
print_debug ("connection limit reached, refusing connection");
|
|
|
|
close (fd);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
char host[NI_MAXHOST] = "unknown", port[NI_MAXSERV] = "unknown";
|
|
|
|
int err = getnameinfo ((struct sockaddr *) &peer, peer_len,
|
2014-07-15 23:28:00 +02:00
|
|
|
host, sizeof host, port, sizeof port, NI_NUMERICSERV);
|
2014-07-09 01:54:50 +02:00
|
|
|
if (err)
|
|
|
|
print_debug ("%s: %s", "getnameinfo", gai_strerror (err));
|
2014-08-17 16:17:11 +02:00
|
|
|
|
|
|
|
char *address = format_host_port_pair (host, port);
|
|
|
|
print_debug ("accepted connection from %s", address);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-14 20:54:47 +02:00
|
|
|
struct client *c = xmalloc (sizeof *c);
|
|
|
|
client_init (c);
|
2014-07-15 23:28:00 +02:00
|
|
|
c->ctx = ctx;
|
2014-07-14 20:54:47 +02:00
|
|
|
c->socket_fd = fd;
|
|
|
|
c->hostname = xstrdup (host);
|
2014-08-19 20:54:16 +02:00
|
|
|
c->address = address;
|
2014-08-05 23:11:53 +02:00
|
|
|
c->last_active = time (NULL);
|
2014-07-14 20:54:47 +02:00
|
|
|
LIST_PREPEND (ctx->clients, c);
|
2014-08-02 15:01:48 +02:00
|
|
|
ctx->n_clients++;
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2015-02-12 01:53:03 +01:00
|
|
|
poller_fd_init (&c->socket_event, &c->ctx->poller, c->socket_fd);
|
|
|
|
c->socket_event.dispatcher = (poller_fd_fn) on_client_ready;
|
|
|
|
c->socket_event.user_data = c;
|
|
|
|
|
|
|
|
poller_timer_init (&c->kill_timer, &c->ctx->poller);
|
|
|
|
c->kill_timer.dispatcher = on_client_kill_timer;
|
|
|
|
c->kill_timer.user_data = c;
|
|
|
|
|
|
|
|
poller_timer_init (&c->timeout_timer, &c->ctx->poller);
|
|
|
|
c->timeout_timer.dispatcher = on_client_timeout_timer;
|
|
|
|
c->timeout_timer.user_data = c;
|
|
|
|
|
|
|
|
poller_timer_init (&c->ping_timer, &c->ctx->poller);
|
|
|
|
c->ping_timer.dispatcher = on_client_ping_timer;
|
|
|
|
c->ping_timer.user_data = c;
|
|
|
|
|
2014-07-15 23:28:00 +02:00
|
|
|
set_blocking (fd, false);
|
2014-08-02 20:50:33 +02:00
|
|
|
client_update_poller (c, NULL);
|
2014-08-02 00:09:23 +02:00
|
|
|
client_set_kill_timer (c);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
// --- Application setup -------------------------------------------------------
|
2014-07-14 02:35:38 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
irc_ssl_verify_callback (int verify_ok, X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
(void) verify_ok;
|
|
|
|
(void) ctx;
|
|
|
|
|
|
|
|
// We only want to provide additional privileges based on the client's
|
|
|
|
// certificate, so let's not terminate the connection because of a failure.
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-12 21:59:17 +02:00
|
|
|
static bool
|
2015-02-14 07:58:38 +01:00
|
|
|
irc_initialize_ssl_ctx (struct server_context *ctx,
|
|
|
|
const char *cert_path, const char *key_path, struct error **e)
|
2014-07-12 21:59:17 +02:00
|
|
|
{
|
|
|
|
ctx->ssl_ctx = SSL_CTX_new (SSLv23_server_method ());
|
|
|
|
if (!ctx->ssl_ctx)
|
2014-07-16 22:06:36 +02:00
|
|
|
{
|
|
|
|
// XXX: these error strings are really nasty; also there could be
|
|
|
|
// multiple errors on the OpenSSL stack.
|
2014-07-17 08:43:21 +02:00
|
|
|
error_set (e, "%s: %s", "could not initialize SSL",
|
2014-07-16 22:06:36 +02:00
|
|
|
ERR_error_string (ERR_get_error (), NULL));
|
2015-02-14 07:58:38 +01:00
|
|
|
return false;
|
2014-07-16 22:06:36 +02:00
|
|
|
}
|
2014-07-12 21:59:17 +02:00
|
|
|
SSL_CTX_set_verify (ctx->ssl_ctx,
|
|
|
|
SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE, irc_ssl_verify_callback);
|
|
|
|
// XXX: maybe we should call SSL_CTX_set_options() for some workarounds
|
|
|
|
|
2014-08-05 21:15:24 +02:00
|
|
|
const unsigned char session_id_context[SSL_MAX_SSL_SESSION_ID_LENGTH]
|
|
|
|
= PROGRAM_NAME;
|
|
|
|
(void) SSL_CTX_set_session_id_context (ctx->ssl_ctx,
|
|
|
|
session_id_context, sizeof session_id_context);
|
|
|
|
|
2015-02-14 07:58:38 +01:00
|
|
|
// Gah, spare me your awkward semantics, I just want to push data!
|
|
|
|
// XXX: do we want SSL_MODE_AUTO_RETRY as well? I guess not.
|
|
|
|
SSL_CTX_set_mode (ctx->ssl_ctx,
|
|
|
|
SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | SSL_MODE_ENABLE_PARTIAL_WRITE);
|
|
|
|
|
2014-07-12 21:59:17 +02:00
|
|
|
// XXX: perhaps we should read the files ourselves for better messages
|
2014-07-14 22:12:04 +02:00
|
|
|
if (!SSL_CTX_use_certificate_chain_file (ctx->ssl_ctx, cert_path))
|
2014-07-17 08:43:21 +02:00
|
|
|
error_set (e, "%s: %s", "setting the SSL client certificate failed",
|
2014-07-12 21:59:17 +02:00
|
|
|
ERR_error_string (ERR_get_error (), NULL));
|
2015-02-14 07:58:38 +01:00
|
|
|
else if (!SSL_CTX_use_PrivateKey_file
|
|
|
|
(ctx->ssl_ctx, key_path, SSL_FILETYPE_PEM))
|
2014-07-17 08:43:21 +02:00
|
|
|
error_set (e, "%s: %s", "setting the SSL private key failed",
|
2014-07-12 21:59:17 +02:00
|
|
|
ERR_error_string (ERR_get_error (), NULL));
|
2015-02-14 07:58:38 +01:00
|
|
|
else
|
|
|
|
// TODO: SSL_CTX_check_private_key()? It has probably already been
|
|
|
|
// checked by SSL_CTX_use_PrivateKey_file() above.
|
|
|
|
return true;
|
2014-07-12 21:59:17 +02:00
|
|
|
|
|
|
|
SSL_CTX_free (ctx->ssl_ctx);
|
|
|
|
ctx->ssl_ctx = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-14 07:58:38 +01:00
|
|
|
static bool
|
|
|
|
irc_initialize_ssl (struct server_context *ctx, struct error **e)
|
|
|
|
{
|
|
|
|
const char *ssl_cert = str_map_find (&ctx->config, "ssl_cert");
|
|
|
|
const char *ssl_key = str_map_find (&ctx->config, "ssl_key");
|
|
|
|
|
|
|
|
// Only try to enable SSL support if the user configures it; it is not
|
|
|
|
// a failure if no one has requested it.
|
|
|
|
if (!ssl_cert && !ssl_key)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!ssl_cert)
|
|
|
|
error_set (e, "no SSL certificate set");
|
|
|
|
else if (!ssl_key)
|
|
|
|
error_set (e, "no SSL private key set");
|
|
|
|
if (!ssl_cert || !ssl_key)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
char *cert_path = resolve_config_filename (ssl_cert);
|
|
|
|
char *key_path = resolve_config_filename (ssl_key);
|
|
|
|
if (!cert_path)
|
|
|
|
error_set (e, "%s: %s", "cannot open file", ssl_cert);
|
|
|
|
else if (!key_path)
|
|
|
|
error_set (e, "%s: %s", "cannot open file", ssl_key);
|
|
|
|
else
|
|
|
|
result = irc_initialize_ssl_ctx (ctx, cert_path, key_path, e);
|
|
|
|
|
|
|
|
free (cert_path);
|
|
|
|
free (key_path);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-07-13 23:47:29 +02:00
|
|
|
static bool
|
|
|
|
irc_initialize_catalog (struct server_context *ctx, struct error **e)
|
|
|
|
{
|
|
|
|
hard_assert (ctx->catalog == (nl_catd) -1);
|
|
|
|
const char *catalog = str_map_find (&ctx->config, "catalog");
|
|
|
|
if (!catalog)
|
|
|
|
return true;
|
|
|
|
|
2014-07-14 22:12:04 +02:00
|
|
|
char *path = resolve_config_filename (catalog);
|
|
|
|
if (!path)
|
|
|
|
{
|
2014-07-15 22:54:39 +02:00
|
|
|
error_set (e, "%s: %s", "cannot open file", catalog);
|
2014-07-14 22:12:04 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ctx->catalog = catopen (path, NL_CAT_LOCALE);
|
|
|
|
free (path);
|
|
|
|
|
2014-07-13 23:47:29 +02:00
|
|
|
if (ctx->catalog == (nl_catd) -1)
|
|
|
|
{
|
2014-07-15 22:54:39 +02:00
|
|
|
error_set (e, "%s: %s",
|
2014-07-13 23:47:29 +02:00
|
|
|
"failed reading the message catalog file", strerror (errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-13 21:27:38 +02:00
|
|
|
static bool
|
|
|
|
irc_initialize_motd (struct server_context *ctx, struct error **e)
|
|
|
|
{
|
|
|
|
hard_assert (ctx->motd.len == 0);
|
|
|
|
const char *motd = str_map_find (&ctx->config, "motd");
|
|
|
|
if (!motd)
|
|
|
|
return true;
|
|
|
|
|
2014-07-14 22:12:04 +02:00
|
|
|
char *path = resolve_config_filename (motd);
|
|
|
|
if (!path)
|
|
|
|
{
|
2014-07-15 22:54:39 +02:00
|
|
|
error_set (e, "%s: %s", "cannot open file", motd);
|
2014-07-14 22:12:04 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
FILE *fp = fopen (path, "r");
|
|
|
|
free (path);
|
|
|
|
|
2014-07-13 21:27:38 +02:00
|
|
|
if (!fp)
|
|
|
|
{
|
2014-07-15 22:54:39 +02:00
|
|
|
error_set (e, "%s: %s",
|
2014-07-14 22:12:04 +02:00
|
|
|
"failed reading the MOTD file", strerror (errno));
|
2014-07-13 21:27:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct str line;
|
|
|
|
str_init (&line);
|
|
|
|
while (read_line (fp, &line))
|
|
|
|
str_vector_add_owned (&ctx->motd, str_steal (&line));
|
|
|
|
str_free (&line);
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-01 20:50:56 +02:00
|
|
|
/// This function handles values that require validation before their first use,
|
|
|
|
/// or some kind of a transformation (such as conversion to an integer) needs
|
|
|
|
/// to be done before they can be used directly.
|
|
|
|
static bool
|
|
|
|
irc_parse_config (struct server_context *ctx, struct error **e)
|
|
|
|
{
|
|
|
|
unsigned long ul;
|
2014-08-02 15:01:48 +02:00
|
|
|
#define PARSE_UNSIGNED(name, min, max) \
|
|
|
|
const char *name = str_map_find (&ctx->config, #name); \
|
|
|
|
hard_assert (name != NULL); \
|
|
|
|
if (!xstrtoul (&ul, name, 10) || ul > max || ul < min) \
|
|
|
|
{ \
|
|
|
|
error_set (e, "invalid configuration value for `%s': %s", \
|
|
|
|
#name, "the number is invalid or out of range"); \
|
|
|
|
return false; \
|
|
|
|
} \
|
|
|
|
ctx->name = ul
|
|
|
|
|
|
|
|
PARSE_UNSIGNED (ping_interval, 1, UINT_MAX);
|
|
|
|
PARSE_UNSIGNED (max_connections, 0, UINT_MAX);
|
2014-08-08 01:26:56 +02:00
|
|
|
|
|
|
|
bool result = true;
|
|
|
|
struct str_vector fingerprints;
|
|
|
|
str_vector_init (&fingerprints);
|
|
|
|
const char *operators = str_map_find (&ctx->config, "operators");
|
|
|
|
if (operators)
|
|
|
|
split_str_ignore_empty (operators, ',', &fingerprints);
|
|
|
|
for (size_t i = 0; i < fingerprints.len; i++)
|
|
|
|
{
|
|
|
|
const char *key = fingerprints.vector[i];
|
|
|
|
if (!irc_is_valid_fingerprint (key))
|
|
|
|
{
|
|
|
|
error_set (e, "invalid configuration value for `%s': %s",
|
|
|
|
"operators", "invalid fingerprint value");
|
|
|
|
result = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
str_map_set (&ctx->operators, key, (void *) 1);
|
|
|
|
}
|
|
|
|
str_vector_free (&fingerprints);
|
|
|
|
return result;
|
2014-08-01 20:50:56 +02:00
|
|
|
}
|
|
|
|
|
2014-07-13 04:59:22 +02:00
|
|
|
static bool
|
|
|
|
irc_initialize_server_name (struct server_context *ctx, struct error **e)
|
|
|
|
{
|
|
|
|
enum validation_result res;
|
|
|
|
const char *server_name = str_map_find (&ctx->config, "server_name");
|
|
|
|
if (server_name)
|
|
|
|
{
|
|
|
|
res = irc_validate_hostname (server_name);
|
|
|
|
if (res != VALIDATION_OK)
|
|
|
|
{
|
2014-07-15 22:54:39 +02:00
|
|
|
error_set (e, "invalid configuration value for `%s': %s",
|
|
|
|
"server_name", irc_validate_to_str (res));
|
2014-07-13 04:59:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ctx->server_name = xstrdup (server_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-18 23:02:54 +02:00
|
|
|
long host_name_max = sysconf (_SC_HOST_NAME_MAX);
|
|
|
|
if (host_name_max <= 0)
|
|
|
|
host_name_max = _POSIX_HOST_NAME_MAX;
|
|
|
|
|
|
|
|
char hostname[host_name_max + 1];
|
2014-07-13 04:59:22 +02:00
|
|
|
if (gethostname (hostname, sizeof hostname))
|
|
|
|
{
|
2014-07-15 22:54:39 +02:00
|
|
|
error_set (e, "%s: %s",
|
|
|
|
"getting the hostname failed", strerror (errno));
|
2014-07-13 04:59:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
res = irc_validate_hostname (hostname);
|
|
|
|
if (res != VALIDATION_OK)
|
|
|
|
{
|
2014-07-15 22:54:39 +02:00
|
|
|
error_set (e,
|
2014-07-13 04:59:22 +02:00
|
|
|
"`%s' is not set and the hostname (`%s') cannot be used: %s",
|
|
|
|
"server_name", hostname, irc_validate_to_str (res));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ctx->server_name = xstrdup (hostname);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-09 00:01:33 +02:00
|
|
|
static int
|
|
|
|
irc_listen (struct addrinfo *gai_iter)
|
|
|
|
{
|
|
|
|
int fd = socket (gai_iter->ai_family,
|
|
|
|
gai_iter->ai_socktype, gai_iter->ai_protocol);
|
|
|
|
if (fd == -1)
|
|
|
|
return -1;
|
|
|
|
set_cloexec (fd);
|
|
|
|
|
|
|
|
int yes = 1;
|
|
|
|
soft_assert (setsockopt (fd, SOL_SOCKET, SO_KEEPALIVE,
|
|
|
|
&yes, sizeof yes) != -1);
|
|
|
|
soft_assert (setsockopt (fd, SOL_SOCKET, SO_REUSEADDR,
|
|
|
|
&yes, sizeof yes) != -1);
|
|
|
|
|
2014-08-17 16:17:11 +02:00
|
|
|
char host[NI_MAXHOST], port[NI_MAXSERV];
|
|
|
|
host[0] = port[0] = '\0';
|
2014-08-09 00:01:33 +02:00
|
|
|
int err = getnameinfo (gai_iter->ai_addr, gai_iter->ai_addrlen,
|
2014-08-17 16:17:11 +02:00
|
|
|
host, sizeof host, port, sizeof port,
|
2014-08-09 00:01:33 +02:00
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV);
|
|
|
|
if (err)
|
|
|
|
print_debug ("%s: %s", "getnameinfo", gai_strerror (err));
|
|
|
|
|
2014-08-17 16:17:11 +02:00
|
|
|
char *address = format_host_port_pair (host, port);
|
2014-08-09 00:01:33 +02:00
|
|
|
if (bind (fd, gai_iter->ai_addr, gai_iter->ai_addrlen))
|
2014-08-17 16:17:11 +02:00
|
|
|
print_error ("bind to %s failed: %s", address, strerror (errno));
|
2014-08-09 00:01:33 +02:00
|
|
|
else if (listen (fd, 16 /* arbitrary number */))
|
2014-08-17 16:17:11 +02:00
|
|
|
print_error ("listen on %s failed: %s", address, strerror (errno));
|
2014-08-09 00:01:33 +02:00
|
|
|
else
|
|
|
|
{
|
2014-08-17 16:17:11 +02:00
|
|
|
print_status ("listening on %s", address);
|
|
|
|
free (address);
|
2014-08-09 00:01:33 +02:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2014-08-17 16:17:11 +02:00
|
|
|
free (address);
|
2014-08-09 00:01:33 +02:00
|
|
|
xclose (fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-08-10 02:53:36 +02:00
|
|
|
static void
|
|
|
|
irc_listen_resolve (struct server_context *ctx,
|
|
|
|
const char *host, const char *port, struct addrinfo *gai_hints)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-08-10 02:53:36 +02:00
|
|
|
struct addrinfo *gai_result, *gai_iter;
|
|
|
|
int err = getaddrinfo (host, port, gai_hints, &gai_result);
|
2014-07-09 01:54:50 +02:00
|
|
|
if (err)
|
|
|
|
{
|
2014-08-17 16:17:11 +02:00
|
|
|
char *address = format_host_port_pair (host, port);
|
|
|
|
print_error ("bind to %s failed: %s: %s",
|
|
|
|
address, "getaddrinfo", gai_strerror (err));
|
|
|
|
free (address);
|
2014-08-10 02:53:36 +02:00
|
|
|
return;
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-08-09 00:01:33 +02:00
|
|
|
int fd;
|
2014-07-09 01:54:50 +02:00
|
|
|
for (gai_iter = gai_result; gai_iter; gai_iter = gai_iter->ai_next)
|
|
|
|
{
|
2014-08-09 00:01:33 +02:00
|
|
|
if ((fd = irc_listen (gai_iter)) == -1)
|
|
|
|
continue;
|
2015-02-12 01:53:03 +01:00
|
|
|
set_blocking (fd, false);
|
|
|
|
|
|
|
|
struct poller_fd *event = &ctx->listen_events[ctx->n_listen_fds];
|
|
|
|
poller_fd_init (event, &ctx->poller, fd);
|
|
|
|
event->dispatcher = (poller_fd_fn) on_irc_client_available;
|
|
|
|
event->user_data = ctx;
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-08-09 00:01:33 +02:00
|
|
|
ctx->listen_fds[ctx->n_listen_fds++] = fd;
|
2015-02-12 01:53:03 +01:00
|
|
|
poller_fd_set (event, POLLIN);
|
2014-08-09 00:01:33 +02:00
|
|
|
break;
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
freeaddrinfo (gai_result);
|
2014-08-10 02:53:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
irc_setup_listen_fds (struct server_context *ctx, struct error **e)
|
|
|
|
{
|
|
|
|
const char *bind_host = str_map_find (&ctx->config, "bind_host");
|
|
|
|
const char *bind_port = str_map_find (&ctx->config, "bind_port");
|
|
|
|
hard_assert (bind_port != NULL); // We have a default value for this
|
|
|
|
|
|
|
|
struct addrinfo gai_hints;
|
|
|
|
memset (&gai_hints, 0, sizeof gai_hints);
|
|
|
|
|
|
|
|
gai_hints.ai_socktype = SOCK_STREAM;
|
|
|
|
gai_hints.ai_flags = AI_PASSIVE;
|
|
|
|
|
|
|
|
struct str_vector ports;
|
|
|
|
str_vector_init (&ports);
|
|
|
|
split_str_ignore_empty (bind_port, ',', &ports);
|
|
|
|
ctx->listen_fds = xcalloc (ports.len, sizeof *ctx->listen_fds);
|
2015-02-12 01:53:03 +01:00
|
|
|
ctx->listen_events = xcalloc (ports.len, sizeof *ctx->listen_events);
|
2014-08-10 02:53:36 +02:00
|
|
|
for (size_t i = 0; i < ports.len; i++)
|
|
|
|
irc_listen_resolve (ctx, bind_host, ports.vector[i], &gai_hints);
|
|
|
|
str_vector_free (&ports);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-08-09 00:01:33 +02:00
|
|
|
if (!ctx->n_listen_fds)
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2014-08-10 02:53:36 +02:00
|
|
|
error_set (e, "%s: %s",
|
|
|
|
"network setup failed", "no ports to listen on");
|
2014-07-09 01:54:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-09 23:51:27 +02:00
|
|
|
// --- Main --------------------------------------------------------------------
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
static void
|
|
|
|
on_signal_pipe_readable (const struct pollfd *fd, struct server_context *ctx)
|
|
|
|
{
|
|
|
|
char *dummy;
|
|
|
|
(void) read (fd->fd, &dummy, 1);
|
|
|
|
|
|
|
|
if (g_termination_requested && !ctx->quitting)
|
2014-08-07 23:41:22 +02:00
|
|
|
irc_initiate_quit (ctx);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-16 23:26:50 +02:00
|
|
|
static void
|
|
|
|
daemonize (void)
|
|
|
|
{
|
|
|
|
// TODO: create and lock a PID file?
|
|
|
|
print_status ("daemonizing...");
|
|
|
|
|
|
|
|
if (chdir ("/"))
|
|
|
|
exit_fatal ("%s: %s", "chdir", strerror (errno));
|
|
|
|
|
|
|
|
pid_t pid;
|
|
|
|
if ((pid = fork ()) < 0)
|
|
|
|
exit_fatal ("%s: %s", "fork", strerror (errno));
|
|
|
|
else if (pid)
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
|
|
|
setsid ();
|
|
|
|
signal (SIGHUP, SIG_IGN);
|
|
|
|
|
|
|
|
if ((pid = fork ()) < 0)
|
|
|
|
exit_fatal ("%s: %s", "fork", strerror (errno));
|
|
|
|
else if (pid)
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
|
|
|
|
openlog (PROGRAM_NAME, LOG_NDELAY | LOG_NOWAIT | LOG_PID, 0);
|
|
|
|
g_log_message_real = log_message_syslog;
|
|
|
|
|
|
|
|
// XXX: we may close our own descriptors this way, crippling ourselves
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
xclose (i);
|
|
|
|
|
|
|
|
int tty = open ("/dev/null", O_RDWR);
|
|
|
|
if (tty != 0 || dup (0) != 1 || dup (0) != 2)
|
|
|
|
exit_fatal ("failed to reopen FD's: %s", strerror (errno));
|
|
|
|
}
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
2015-02-11 02:07:52 +01:00
|
|
|
static const struct opt opts[] =
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
2015-02-11 02:07:52 +01:00
|
|
|
{ 'd', "debug", NULL, 0, "run in debug mode (do not daemonize)" },
|
|
|
|
{ 'h', "help", NULL, 0, "display this help and exit" },
|
|
|
|
{ 'V', "version", NULL, 0, "output version information and exit" },
|
|
|
|
{ 'w', "write-default-cfg", "FILENAME",
|
|
|
|
OPT_OPTIONAL_ARG | OPT_LONG_ONLY,
|
|
|
|
"write a default configuration file and exit" },
|
|
|
|
{ 0, NULL, NULL, 0, NULL }
|
2014-07-09 01:54:50 +02:00
|
|
|
};
|
|
|
|
|
2015-02-11 02:07:52 +01:00
|
|
|
struct opt_handler oh;
|
|
|
|
opt_handler_init (&oh, argc, argv, opts, NULL, "Experimental IRC daemon.");
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2015-02-11 02:07:52 +01:00
|
|
|
int c;
|
|
|
|
while ((c = opt_handler_get (&oh)) != -1)
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'd':
|
|
|
|
g_debug_mode = true;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
opt_handler_usage (&oh, stdout);
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
case 'V':
|
|
|
|
printf (PROGRAM_NAME " " PROGRAM_VERSION "\n");
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
case 'w':
|
|
|
|
call_write_default_config (optarg, g_config_table);
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
default:
|
|
|
|
print_error ("wrong options");
|
|
|
|
opt_handler_usage (&oh, stderr);
|
|
|
|
exit (EXIT_FAILURE);
|
2014-07-09 01:54:50 +02:00
|
|
|
}
|
|
|
|
|
2015-02-11 02:07:52 +01:00
|
|
|
opt_handler_free (&oh);
|
|
|
|
|
2014-07-09 01:54:50 +02:00
|
|
|
print_status (PROGRAM_NAME " " PROGRAM_VERSION " starting");
|
|
|
|
setup_signal_handlers ();
|
|
|
|
|
|
|
|
SSL_library_init ();
|
|
|
|
atexit (EVP_cleanup);
|
|
|
|
SSL_load_error_strings ();
|
|
|
|
// XXX: ERR_load_BIO_strings()? Anything else?
|
|
|
|
atexit (ERR_free_strings);
|
|
|
|
|
|
|
|
struct server_context ctx;
|
|
|
|
server_context_init (&ctx);
|
2014-07-14 02:35:38 +02:00
|
|
|
irc_register_handlers (&ctx);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-13 23:50:44 +02:00
|
|
|
struct error *e = NULL;
|
2014-07-09 01:54:50 +02:00
|
|
|
if (!read_config_file (&ctx.config, &e))
|
|
|
|
{
|
2014-07-16 23:23:03 +02:00
|
|
|
print_error ("error loading configuration: %s", e->message);
|
2014-07-09 01:54:50 +02:00
|
|
|
error_free (e);
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2015-02-12 01:53:03 +01:00
|
|
|
poller_fd_init (&ctx.signal_event, &ctx.poller, g_signal_pipe[0]);
|
|
|
|
ctx.signal_event.dispatcher = (poller_fd_fn) on_signal_pipe_readable;
|
|
|
|
ctx.signal_event.user_data = &ctx;
|
|
|
|
poller_fd_set (&ctx.signal_event, POLLIN);
|
2014-07-09 01:54:50 +02:00
|
|
|
|
2014-07-17 08:43:21 +02:00
|
|
|
if (!irc_initialize_ssl (&ctx, &e)
|
|
|
|
|| !irc_initialize_server_name (&ctx, &e)
|
2014-07-14 00:10:59 +02:00
|
|
|
|| !irc_initialize_motd (&ctx, &e)
|
|
|
|
|| !irc_initialize_catalog (&ctx, &e)
|
2014-08-01 20:50:56 +02:00
|
|
|
|| !irc_parse_config (&ctx, &e)
|
2014-08-09 00:01:33 +02:00
|
|
|
|| !irc_setup_listen_fds (&ctx, &e))
|
2014-07-09 01:54:50 +02:00
|
|
|
{
|
|
|
|
print_error ("%s", e->message);
|
|
|
|
error_free (e);
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2014-07-15 22:23:53 +02:00
|
|
|
if (!g_debug_mode)
|
2014-07-16 23:26:50 +02:00
|
|
|
daemonize ();
|
2014-07-09 01:54:50 +02:00
|
|
|
|
|
|
|
ctx.polling = true;
|
|
|
|
while (ctx.polling)
|
|
|
|
poller_run (&ctx.poller);
|
|
|
|
|
|
|
|
server_context_free (&ctx);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|