2009-02-19 16:14:09 +00:00
|
|
|
/*
|
|
|
|
* uhub - A tiny ADC p2p connection hub
|
2010-01-17 21:59:51 +00:00
|
|
|
* Copyright (C) 2007-2010, Jan Vidar Krey
|
2009-02-19 16:14:09 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "uhub.h"
|
|
|
|
|
2009-05-18 14:30:17 +00:00
|
|
|
struct hub_info* g_hub = 0;
|
|
|
|
|
2010-04-05 13:51:18 +00:00
|
|
|
#define CHECK_CHAT_ONLY \
|
2010-07-12 15:00:42 +00:00
|
|
|
if (hub->config->chat_only && u->credentials < auth_cred_operator) \
|
2010-04-05 13:51:18 +00:00
|
|
|
break
|
|
|
|
|
2010-08-03 21:19:39 +00:00
|
|
|
/* FIXME: Flood control should be done in a plugin! */
|
2010-04-05 13:51:18 +00:00
|
|
|
#define CHECK_FLOOD(TYPE, WARN) \
|
|
|
|
if (flood_control_check(&u->flood_ ## TYPE , hub->config->flood_ctl_ ## TYPE, hub->config->flood_ctl_interval, net_get_time())) \
|
|
|
|
{ \
|
|
|
|
if (WARN) \
|
|
|
|
{ \
|
|
|
|
hub_send_flood_warning(hub, u, hub->config->msg_user_flood_ ## TYPE); \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ROUTE_MSG \
|
|
|
|
if (user_is_logged_in(u)) \
|
|
|
|
{ \
|
|
|
|
ret = route_message(hub, u, cmd); \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
ret = -1; \
|
|
|
|
} \
|
|
|
|
break;
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
int hub_handle_message(struct hub_info* hub, struct hub_user* u, const char* line, size_t length)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
struct adc_message* cmd = 0;
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-07-25 23:38:38 +00:00
|
|
|
LOG_PROTO("recv %s: %s", sid_to_string(u->id.sid), line);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (user_is_disconnecting(u))
|
|
|
|
return -1;
|
2009-06-22 17:50:10 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
cmd = adc_msg_parse_verify(u, line, length);
|
|
|
|
if (cmd)
|
|
|
|
{
|
|
|
|
switch (cmd->cmd)
|
|
|
|
{
|
2010-04-05 13:51:18 +00:00
|
|
|
case ADC_CMD_HSUP:
|
|
|
|
CHECK_FLOOD(extras, 0);
|
|
|
|
ret = hub_handle_support(hub, u, cmd);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ADC_CMD_HPAS:
|
|
|
|
CHECK_FLOOD(extras, 0);
|
|
|
|
ret = hub_handle_password(hub, u, cmd);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ADC_CMD_BINF:
|
|
|
|
CHECK_FLOOD(update, 1);
|
|
|
|
ret = hub_handle_info(hub, u, cmd);
|
|
|
|
break;
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
case ADC_CMD_DINF:
|
|
|
|
case ADC_CMD_EINF:
|
|
|
|
case ADC_CMD_FINF:
|
2010-04-05 13:51:18 +00:00
|
|
|
/* these must never be allowed for security reasons, so we ignore them. */
|
2009-02-19 16:14:09 +00:00
|
|
|
break;
|
|
|
|
|
2009-03-16 11:28:58 +00:00
|
|
|
case ADC_CMD_EMSG:
|
|
|
|
case ADC_CMD_DMSG:
|
|
|
|
case ADC_CMD_BMSG:
|
|
|
|
case ADC_CMD_FMSG:
|
2010-04-05 13:51:18 +00:00
|
|
|
CHECK_FLOOD(chat, 1);
|
2009-05-15 16:45:26 +00:00
|
|
|
ret = hub_handle_chat_message(hub, u, cmd);
|
2009-03-16 11:28:58 +00:00
|
|
|
break;
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
case ADC_CMD_BSCH:
|
|
|
|
case ADC_CMD_DSCH:
|
|
|
|
case ADC_CMD_ESCH:
|
|
|
|
case ADC_CMD_FSCH:
|
2010-04-05 13:51:18 +00:00
|
|
|
cmd->priority = -1;
|
|
|
|
CHECK_CHAT_ONLY;
|
|
|
|
CHECK_FLOOD(search, 1);
|
|
|
|
ROUTE_MSG;
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
case ADC_CMD_DRES:
|
2010-04-05 13:51:18 +00:00
|
|
|
cmd->priority = -1;
|
|
|
|
CHECK_CHAT_ONLY;
|
|
|
|
/* CHECK_FLOOD(search, 0); */
|
|
|
|
ROUTE_MSG;
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
case ADC_CMD_DRCM:
|
|
|
|
case ADC_CMD_DCTM:
|
2009-03-16 11:28:58 +00:00
|
|
|
cmd->priority = -1;
|
2010-04-05 13:51:18 +00:00
|
|
|
CHECK_CHAT_ONLY;
|
|
|
|
CHECK_FLOOD(connect, 1);
|
|
|
|
ROUTE_MSG;
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
default:
|
2010-04-05 13:51:18 +00:00
|
|
|
CHECK_FLOOD(extras, 1);
|
|
|
|
ROUTE_MSG;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
adc_msg_free(cmd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!user_is_logged_in(u))
|
|
|
|
{
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
}
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
int hub_handle_support(struct hub_info* hub, struct hub_user* u, struct adc_message* cmd)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int index = 0;
|
|
|
|
int ok = 1;
|
|
|
|
char* arg = adc_msg_get_argument(cmd, index);
|
|
|
|
|
2009-05-15 16:45:26 +00:00
|
|
|
if (hub->status == hub_status_disabled && u->state == state_protocol)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-05-15 16:45:26 +00:00
|
|
|
on_login_failure(hub, u, status_msg_hub_disabled);
|
2009-11-18 16:41:28 +00:00
|
|
|
hub_free(arg);
|
2009-02-19 16:14:09 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2009-08-03 21:59:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
while (arg)
|
|
|
|
{
|
|
|
|
if (strlen(arg) == 6)
|
|
|
|
{
|
|
|
|
fourcc_t fourcc = FOURCC(arg[2], arg[3], arg[4], arg[5]);
|
|
|
|
if (strncmp(arg, ADC_SUP_FLAG_ADD, 2) == 0)
|
|
|
|
{
|
|
|
|
user_support_add(u, fourcc);
|
|
|
|
}
|
|
|
|
else if (strncmp(arg, ADC_SUP_FLAG_REMOVE, 2) == 0)
|
|
|
|
{
|
|
|
|
user_support_remove(u, fourcc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ok = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ok = 0;
|
|
|
|
}
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
index++;
|
|
|
|
hub_free(arg);
|
|
|
|
arg = adc_msg_get_argument(cmd, index);
|
|
|
|
}
|
2009-08-03 21:59:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (u->state == state_protocol)
|
|
|
|
{
|
|
|
|
if (index == 0) ok = 0; /* Need to support *SOMETHING*, at least BASE */
|
2010-04-05 10:45:35 +00:00
|
|
|
if (!ok)
|
|
|
|
{
|
|
|
|
/* disconnect user. Do not send crap during initial handshake! */
|
|
|
|
hub_disconnect_user(hub, u, quit_logon_error);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user_flag_get(u, feature_base))
|
|
|
|
{
|
|
|
|
/* User supports ADC/1.0 and a hash we know */
|
|
|
|
if (user_flag_get(u, feature_tiger))
|
|
|
|
{
|
|
|
|
hub_send_handshake(hub, u);
|
|
|
|
net_con_set_timeout(u->connection, TIMEOUT_HANDSHAKE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// no common hash algorithm.
|
|
|
|
hub_send_status(hub, u, status_msg_proto_no_common_hash, status_level_fatal);
|
|
|
|
hub_disconnect_user(hub, u, quit_protocol_error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (user_flag_get(u, feature_bas0))
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2010-04-05 10:45:35 +00:00
|
|
|
if (hub->config->obsolete_clients)
|
|
|
|
{
|
|
|
|
hub_send_handshake(hub, u);
|
|
|
|
net_con_set_timeout(u->connection, TIMEOUT_HANDSHAKE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* disconnect user for using an obsolete client. */
|
2010-04-11 18:16:20 +00:00
|
|
|
char* tmp = adc_msg_escape(hub->config->msg_proto_obsolete_adc0);
|
|
|
|
struct adc_message* message = adc_msg_construct(ADC_CMD_IMSG, 6 + strlen(tmp));
|
|
|
|
adc_msg_add_argument(message, tmp);
|
|
|
|
hub_free(tmp);
|
2010-04-11 18:13:05 +00:00
|
|
|
route_to_user(hub, u, message);
|
|
|
|
adc_msg_free(message);
|
2010-04-05 10:45:35 +00:00
|
|
|
hub_disconnect_user(hub, u, quit_protocol_error);
|
|
|
|
}
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-04-05 10:45:35 +00:00
|
|
|
/* Not speaking a compatible protocol - just disconnect. */
|
2009-05-18 14:30:17 +00:00
|
|
|
hub_disconnect_user(hub, u, quit_logon_error);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-03 21:59:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
int hub_handle_password(struct hub_info* hub, struct hub_user* u, struct adc_message* cmd)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
char* password = adc_msg_get_argument(cmd, 0);
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (u->state == state_verify)
|
|
|
|
{
|
2010-07-29 06:43:22 +00:00
|
|
|
if (acl_password_verify(hub, u, password))
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-05-15 16:45:26 +00:00
|
|
|
on_login_success(hub, u);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-05-15 16:45:26 +00:00
|
|
|
on_login_failure(hub, u, status_msg_auth_invalid_password);
|
2009-02-19 16:14:09 +00:00
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
}
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
hub_free(password);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
int hub_handle_chat_message(struct hub_info* hub, struct hub_user* u, struct adc_message* cmd)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
char* message = adc_msg_get_argument(cmd, 0);
|
|
|
|
int ret = 0;
|
|
|
|
int relay = 1;
|
2010-08-03 21:19:39 +00:00
|
|
|
int broadcast;
|
2010-08-11 16:44:02 +00:00
|
|
|
int private_msg;
|
2010-08-03 21:19:39 +00:00
|
|
|
int command;
|
2010-01-28 00:06:41 +00:00
|
|
|
int offset;
|
2009-12-09 18:30:08 +00:00
|
|
|
|
2010-05-25 20:47:30 +00:00
|
|
|
if (!message)
|
2009-12-09 18:30:08 +00:00
|
|
|
return 0;
|
|
|
|
|
2010-05-25 20:47:30 +00:00
|
|
|
if (!user_is_logged_in(u))
|
|
|
|
{
|
|
|
|
hub_free(message);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-11 16:44:02 +00:00
|
|
|
broadcast = (cmd->cache[0] == 'B');
|
|
|
|
private_msg = (cmd->cache[0] == 'D' || cmd->cache[0] == 'E');
|
2010-08-03 21:19:39 +00:00
|
|
|
command = (message[0] == '!' || message[0] == '+');
|
|
|
|
|
|
|
|
if (broadcast && command)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-10-06 16:02:37 +00:00
|
|
|
/*
|
|
|
|
* A message such as "++message" is handled as "+message", by removing the first character.
|
|
|
|
* The first character is removed by memmoving the string one byte to the left.
|
|
|
|
*/
|
|
|
|
if (message[1] == message[0])
|
|
|
|
{
|
|
|
|
relay = 1;
|
2010-01-28 00:06:41 +00:00
|
|
|
offset = adc_msg_get_arg_offset(cmd);
|
2009-10-06 16:02:37 +00:00
|
|
|
memmove(cmd->cache+offset+1, cmd->cache+offset+2, cmd->length - offset);
|
|
|
|
cmd->length--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
relay = command_dipatcher(hub, u, message);
|
|
|
|
}
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 21:19:39 +00:00
|
|
|
/* FIXME: Plugin should do this! */
|
|
|
|
if (relay && (((hub->config->chat_is_privileged && !user_is_protected(u)) || (user_flag_get(u, flag_muted))) && broadcast))
|
2009-07-25 01:33:36 +00:00
|
|
|
{
|
|
|
|
relay = 0;
|
|
|
|
}
|
|
|
|
|
2010-08-03 21:19:39 +00:00
|
|
|
if (relay)
|
|
|
|
{
|
|
|
|
plugin_st status;
|
|
|
|
if (broadcast)
|
|
|
|
{
|
|
|
|
status = plugin_handle_chat_message(hub, u, message, 0);
|
|
|
|
}
|
2010-08-11 16:44:02 +00:00
|
|
|
else if (private_msg)
|
2010-08-03 21:19:39 +00:00
|
|
|
{
|
|
|
|
struct hub_user* target = uman_get_user_by_sid(hub, cmd->target);
|
2010-12-20 10:52:15 +00:00
|
|
|
if (target)
|
|
|
|
status = plugin_handle_private_message(hub, u, target, message, 0);
|
|
|
|
else
|
|
|
|
relay = 0;
|
2010-08-03 21:19:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (status == st_deny)
|
|
|
|
relay = 0;
|
|
|
|
}
|
|
|
|
|
2009-12-09 18:40:12 +00:00
|
|
|
if (relay)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
/* adc_msg_remove_named_argument(cmd, "PM"); */
|
2010-08-11 16:44:02 +00:00
|
|
|
if (broadcast)
|
|
|
|
{
|
2009-07-26 13:08:34 +00:00
|
|
|
hub_chat_history_add(hub, u, cmd);
|
2010-08-11 16:44:02 +00:00
|
|
|
plugin_log_chat_message(hub, u, message, 0);
|
|
|
|
}
|
2009-05-18 14:30:17 +00:00
|
|
|
ret = route_message(hub, u, cmd);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
2009-07-26 03:23:56 +00:00
|
|
|
hub_free(message);
|
2009-02-19 16:14:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-07-26 03:23:56 +00:00
|
|
|
void hub_chat_history_add(struct hub_info* hub, struct hub_user* user, struct adc_message* cmd)
|
|
|
|
{
|
2009-07-26 16:22:53 +00:00
|
|
|
char* msg_esc = adc_msg_get_argument(cmd, 0);
|
|
|
|
char* message = adc_msg_unescape(msg_esc);
|
2011-11-30 11:19:37 +00:00
|
|
|
size_t loglen = strlen(message) + strlen(user->id.nick) + 13;
|
|
|
|
char* log = hub_malloc(loglen + 1);
|
|
|
|
snprintf(log, loglen, "%s <%s> %s\n", get_timestamp(time(NULL)), user->id.nick, message);
|
|
|
|
log[loglen] = '\0';
|
2009-07-26 03:23:56 +00:00
|
|
|
list_append(hub->chat_history, log);
|
|
|
|
while (list_size(hub->chat_history) > (size_t) hub->config->max_chat_history)
|
|
|
|
{
|
|
|
|
char* msg = list_get_first(hub->chat_history);
|
|
|
|
list_remove(hub->chat_history, msg);
|
|
|
|
hub_free(msg);
|
|
|
|
}
|
|
|
|
hub_free(message);
|
2009-07-26 16:22:53 +00:00
|
|
|
hub_free(msg_esc);
|
2009-07-26 03:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void hub_chat_history_clear(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
list_clear(hub->chat_history, &hub_free);
|
|
|
|
}
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_send_support(struct hub_info* hub, struct hub_user* u)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
if (user_is_connecting(u) || user_is_logged_in(u))
|
|
|
|
{
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, u, hub->command_support);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_send_sid(struct hub_info* hub, struct hub_user* u)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-08-02 19:04:10 +00:00
|
|
|
sid_t sid;
|
2009-02-19 16:14:09 +00:00
|
|
|
struct adc_message* command;
|
|
|
|
if (user_is_connecting(u))
|
|
|
|
{
|
|
|
|
command = adc_msg_construct(ADC_CMD_ISID, 10);
|
2009-08-02 19:04:10 +00:00
|
|
|
sid = uman_get_free_sid(hub, u);
|
|
|
|
adc_msg_add_argument(command, (const char*) sid_to_string(sid));
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, u, command);
|
2009-02-19 16:14:09 +00:00
|
|
|
adc_msg_free(command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_send_ping(struct hub_info* hub, struct hub_user* user)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
/* This will just send a newline, despite appearing to do more below. */
|
|
|
|
struct adc_message* ping = adc_msg_construct(0, 0);
|
|
|
|
ping->cache[0] = '\n';
|
|
|
|
ping->cache[1] = 0;
|
|
|
|
ping->length = 1;
|
|
|
|
ping->priority = 1;
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, user, ping);
|
2009-02-19 16:14:09 +00:00
|
|
|
adc_msg_free(ping);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_send_hubinfo(struct hub_info* hub, struct hub_user* u)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-05-15 16:45:26 +00:00
|
|
|
struct adc_message* info = adc_msg_copy(hub->command_info);
|
2009-02-19 16:14:09 +00:00
|
|
|
int value = 0;
|
2011-01-02 01:39:25 +00:00
|
|
|
uint64_t size = 0;
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (user_flag_get(u, feature_ping))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
FIXME: These are missing:
|
|
|
|
HH - Hub Host address ( DNS or IP )
|
|
|
|
WS - Hub Website
|
|
|
|
NE - Hub Network
|
|
|
|
OW - Hub Owner name
|
|
|
|
*/
|
2009-05-15 16:45:26 +00:00
|
|
|
adc_msg_add_named_argument(info, "UC", uhub_itoa(hub_get_user_count(hub)));
|
|
|
|
adc_msg_add_named_argument(info, "MC", uhub_itoa(hub_get_max_user_count(hub)));
|
|
|
|
adc_msg_add_named_argument(info, "SS", uhub_ulltoa(hub_get_shared_size(hub)));
|
2011-01-02 01:39:25 +00:00
|
|
|
adc_msg_add_named_argument(info, "SF", uhub_ulltoa(hub_get_shared_files(hub)));
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* Maximum/minimum share size */
|
2011-01-02 01:39:25 +00:00
|
|
|
size = hub_get_max_share(hub);
|
|
|
|
if (size) adc_msg_add_named_argument(info, "XS", uhub_ulltoa(size));
|
|
|
|
size = hub_get_min_share(hub);
|
|
|
|
if (size) adc_msg_add_named_argument(info, "MS", uhub_ulltoa(size));
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* Maximum/minimum upload slots allowed per user */
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_max_slots(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "XL", uhub_itoa(value));
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_min_slots(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "ML", uhub_itoa(value));
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* guest users must be on min/max hubs */
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_max_hubs_user(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "XU", uhub_itoa(value));
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_min_hubs_user(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "MU", uhub_itoa(value));
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* registered users must be on min/max hubs */
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_max_hubs_reg(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "XR", uhub_itoa(value));
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_min_hubs_reg(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "MR", uhub_itoa(value));
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* operators must be on min/max hubs */
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_max_hubs_op(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "XO", uhub_itoa(value));
|
2009-05-15 16:45:26 +00:00
|
|
|
value = hub_get_min_hubs_op(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (value) adc_msg_add_named_argument(info, "MO", uhub_itoa(value));
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* uptime in seconds */
|
2009-05-15 16:45:26 +00:00
|
|
|
adc_msg_add_named_argument(info, "UP", uhub_itoa((int) difftime(time(0), hub->tm_started)));
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (user_is_connecting(u) || user_is_logged_in(u))
|
|
|
|
{
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, u, info);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
adc_msg_free(info);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* Only send banner when connecting */
|
2009-05-15 16:45:26 +00:00
|
|
|
if (hub->config->show_banner && user_is_connecting(u))
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, u, hub->command_banner);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_send_handshake(struct hub_info* hub, struct hub_user* u)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-07-25 01:54:59 +00:00
|
|
|
user_flag_set(u, flag_pipeline);
|
2009-05-15 16:45:26 +00:00
|
|
|
hub_send_support(hub, u);
|
|
|
|
hub_send_sid(hub, u);
|
|
|
|
hub_send_hubinfo(hub, u);
|
2009-07-25 01:54:59 +00:00
|
|
|
route_flush_pipeline(hub, u);
|
2009-02-19 16:14:09 +00:00
|
|
|
|
|
|
|
if (!user_is_disconnecting(u))
|
|
|
|
{
|
|
|
|
user_set_state(u, state_identify);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-19 22:20:19 +00:00
|
|
|
int hub_send_motd(struct hub_info* hub, struct hub_user* u)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-05-15 16:45:26 +00:00
|
|
|
if (hub->command_motd)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, u, hub->command_motd);
|
2010-01-19 22:20:19 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int hub_send_rules(struct hub_info* hub, struct hub_user* u)
|
|
|
|
{
|
|
|
|
if (hub->command_rules)
|
|
|
|
{
|
|
|
|
route_to_user(hub, u, hub->command_rules);
|
|
|
|
return 1;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
2010-01-19 22:20:19 +00:00
|
|
|
return 0;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
2010-01-19 22:20:19 +00:00
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_send_password_challenge(struct hub_info* hub, struct hub_user* u)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
struct adc_message* igpa;
|
|
|
|
igpa = adc_msg_construct(ADC_CMD_IGPA, 38);
|
2010-07-29 06:43:22 +00:00
|
|
|
adc_msg_add_argument(igpa, acl_password_generate_challenge(hub, u));
|
2009-02-19 16:14:09 +00:00
|
|
|
user_set_state(u, state_verify);
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, u, igpa);
|
2009-02-19 16:14:09 +00:00
|
|
|
adc_msg_free(igpa);
|
|
|
|
}
|
|
|
|
|
2010-04-05 13:51:18 +00:00
|
|
|
void hub_send_flood_warning(struct hub_info* hub, struct hub_user* u, const char* message)
|
|
|
|
{
|
|
|
|
struct adc_message* msg;
|
|
|
|
char* tmp;
|
|
|
|
|
|
|
|
if (user_flag_get(u, flag_flood))
|
|
|
|
return;
|
|
|
|
|
|
|
|
msg = adc_msg_construct(ADC_CMD_ISTA, 128);
|
|
|
|
if (msg)
|
|
|
|
{
|
|
|
|
tmp = adc_msg_escape(message);
|
|
|
|
adc_msg_add_argument(msg, "110");
|
|
|
|
adc_msg_add_argument(msg, tmp);
|
|
|
|
hub_free(tmp);
|
|
|
|
|
2010-05-25 20:47:30 +00:00
|
|
|
route_to_user(hub, u, msg);
|
|
|
|
user_flag_set(u, flag_flood);
|
|
|
|
adc_msg_free(msg);
|
|
|
|
}
|
2010-04-05 13:51:18 +00:00
|
|
|
}
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
static void hub_event_dispatcher(void* callback_data, struct event_data* message)
|
|
|
|
{
|
|
|
|
struct hub_info* hub = (struct hub_info*) callback_data;
|
2009-07-25 23:47:17 +00:00
|
|
|
struct hub_user* user = (struct hub_user*) message->ptr;
|
2009-05-19 07:15:14 +00:00
|
|
|
assert(hub != NULL);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
switch (message->id)
|
|
|
|
{
|
|
|
|
case UHUB_EVENT_USER_JOIN:
|
|
|
|
{
|
2009-05-19 07:15:14 +00:00
|
|
|
if (user_is_disconnecting(user))
|
2009-02-19 16:14:09 +00:00
|
|
|
break;
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (message->flags)
|
|
|
|
{
|
2009-05-19 07:15:14 +00:00
|
|
|
hub_send_password_challenge(hub, user);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-05-19 07:15:14 +00:00
|
|
|
on_login_success(hub, user);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case UHUB_EVENT_USER_QUIT:
|
|
|
|
{
|
2009-05-19 07:15:14 +00:00
|
|
|
uman_remove(hub, user);
|
|
|
|
uman_send_quit_message(hub, user);
|
|
|
|
on_logout_user(hub, user);
|
|
|
|
hub_schedule_destroy_user(hub, user);
|
2009-02-19 16:14:09 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
case UHUB_EVENT_USER_DESTROY:
|
|
|
|
{
|
2009-05-19 07:15:14 +00:00
|
|
|
user_destroy(user);
|
2009-02-19 16:14:09 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-08-03 21:59:02 +00:00
|
|
|
|
|
|
|
case UHUB_EVENT_HUB_SHUTDOWN:
|
|
|
|
{
|
|
|
|
struct hub_user* u = (struct hub_user*) list_get_first(hub->users->list);
|
|
|
|
while (u)
|
|
|
|
{
|
|
|
|
uman_remove(hub, u);
|
|
|
|
user_destroy(u);
|
|
|
|
u = (struct hub_user*) list_get_first(hub->users->list);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
default:
|
|
|
|
/* FIXME: ignored */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-21 16:26:27 +00:00
|
|
|
static struct net_connection* start_listening_socket(const char* bind_addr, uint16_t port, int backlog, struct hub_info* hub)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2010-01-21 16:26:27 +00:00
|
|
|
struct net_connection* server;
|
2009-02-19 16:14:09 +00:00
|
|
|
struct sockaddr_storage addr;
|
|
|
|
socklen_t sockaddr_size;
|
2010-01-21 16:26:27 +00:00
|
|
|
int sd, ret;
|
2010-01-21 00:54:41 +00:00
|
|
|
|
|
|
|
if (ip_convert_address(bind_addr, port, (struct sockaddr*) &addr, &sockaddr_size) == -1)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2010-01-21 16:26:27 +00:00
|
|
|
return 0;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
2010-01-21 16:26:27 +00:00
|
|
|
sd = net_socket_create(addr.ss_family, SOCK_STREAM, IPPROTO_TCP);
|
2010-01-21 00:54:41 +00:00
|
|
|
if (sd == -1)
|
|
|
|
{
|
2010-01-21 16:26:27 +00:00
|
|
|
return 0;
|
2010-01-21 00:54:41 +00:00
|
|
|
}
|
2009-02-19 16:14:09 +00:00
|
|
|
|
2010-01-21 00:54:41 +00:00
|
|
|
if ((net_set_reuseaddress(sd, 1) == -1) || (net_set_nonblocking(sd, 1) == -1))
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2010-01-21 00:54:41 +00:00
|
|
|
net_close(sd);
|
2010-01-21 16:26:27 +00:00
|
|
|
return 0;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
2010-01-21 00:54:41 +00:00
|
|
|
|
|
|
|
ret = net_bind(sd, (struct sockaddr*) &addr, sockaddr_size);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (ret == -1)
|
|
|
|
{
|
2010-01-21 00:54:41 +00:00
|
|
|
LOG_ERROR("hub_start_service(): Unable to bind to TCP local address. errno=%d, str=%s", net_error(), net_error_string(net_error()));
|
|
|
|
net_close(sd);
|
2010-01-21 16:26:27 +00:00
|
|
|
return 0;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
2010-01-21 00:54:41 +00:00
|
|
|
|
|
|
|
ret = net_listen(sd, backlog);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (ret == -1)
|
|
|
|
{
|
2010-01-21 00:54:41 +00:00
|
|
|
LOG_ERROR("hub_start_service(): Unable to listen to socket");
|
|
|
|
net_close(sd);
|
2010-01-21 16:26:27 +00:00
|
|
|
return 0;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
2010-01-21 16:26:27 +00:00
|
|
|
|
|
|
|
server = net_con_create();
|
|
|
|
net_con_initialize(server, sd, net_on_accept, hub, NET_EVENT_READ);
|
|
|
|
|
|
|
|
return server;
|
2010-01-21 00:54:41 +00:00
|
|
|
}
|
|
|
|
|
2010-01-27 22:55:52 +00:00
|
|
|
struct server_alt_port_data
|
|
|
|
{
|
|
|
|
struct hub_info* hub;
|
|
|
|
struct hub_config* config;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int server_alt_port_start_one(char* line, int count, void* ptr)
|
|
|
|
{
|
|
|
|
struct server_alt_port_data* data = (struct server_alt_port_data*) ptr;
|
|
|
|
|
|
|
|
int port = uhub_atoi(line);
|
|
|
|
struct net_connection* con = start_listening_socket(data->config->server_bind_addr, port, data->config->server_listen_backlog, data->hub);
|
|
|
|
if (con)
|
|
|
|
{
|
|
|
|
list_append(data->hub->server_alt_ports, con);
|
|
|
|
LOG_INFO("Listening on alternate port %d...", port);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void server_alt_port_start(struct hub_info* hub, struct hub_config* config)
|
|
|
|
{
|
2010-01-28 00:06:41 +00:00
|
|
|
struct server_alt_port_data data;
|
|
|
|
|
2010-01-27 22:55:52 +00:00
|
|
|
if (!config->server_alt_ports || !*config->server_alt_ports)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hub->server_alt_ports = (struct linked_list*) list_create();
|
|
|
|
|
|
|
|
data.hub = hub;
|
|
|
|
data.config = config;
|
|
|
|
|
|
|
|
string_split(config->server_alt_ports, ",", &data, server_alt_port_start_one);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void server_alt_port_clear(void* ptr)
|
|
|
|
{
|
|
|
|
struct net_connection* con = (struct net_connection*) ptr;
|
|
|
|
if (con)
|
|
|
|
{
|
|
|
|
net_con_close(con);
|
|
|
|
hub_free(con);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void server_alt_port_stop(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
if (hub->server_alt_ports)
|
|
|
|
{
|
|
|
|
list_clear(hub->server_alt_ports, &server_alt_port_clear);
|
|
|
|
list_destroy(hub->server_alt_ports);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-15 18:02:31 +00:00
|
|
|
#ifdef SSL_SUPPORT
|
|
|
|
static int load_ssl_certificates(struct hub_info* hub, struct hub_config* config)
|
|
|
|
{
|
|
|
|
if (config->tls_enable)
|
|
|
|
{
|
|
|
|
hub->ssl_method = SSLv23_method(); /* TLSv1_method() */
|
|
|
|
hub->ssl_ctx = SSL_CTX_new(hub->ssl_method);
|
|
|
|
|
|
|
|
/* Disable SSLv2 */
|
|
|
|
SSL_CTX_set_options(hub->ssl_ctx, SSL_OP_NO_SSLv2);
|
2010-09-01 21:57:55 +00:00
|
|
|
SSL_CTX_set_quiet_shutdown(hub->ssl_ctx, 1);
|
2010-01-27 22:55:52 +00:00
|
|
|
|
2010-02-15 18:02:31 +00:00
|
|
|
if (SSL_CTX_use_certificate_file(hub->ssl_ctx, config->tls_certificate, SSL_FILETYPE_PEM) < 0)
|
|
|
|
{
|
|
|
|
LOG_ERROR("SSL_CTX_use_certificate_file: %s", ERR_error_string(ERR_get_error(), NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SSL_CTX_use_PrivateKey_file(hub->ssl_ctx, config->tls_private_key, SSL_FILETYPE_PEM) < 0)
|
|
|
|
{
|
|
|
|
LOG_ERROR("SSL_CTX_use_PrivateKey_file: %s", ERR_error_string(ERR_get_error(), NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SSL_CTX_check_private_key(hub->ssl_ctx) != 1)
|
|
|
|
{
|
|
|
|
LOG_FATAL("SSL_CTX_check_private_key: Private key does not match the certificate public key: %s", ERR_error_string(ERR_get_error(), NULL));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
LOG_INFO("Enabling TLS, using certificate: %s, private key: %s", config->tls_certificate, config->tls_private_key);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void unload_ssl_certificates(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
if (hub->ssl_ctx)
|
|
|
|
{
|
|
|
|
SSL_CTX_free(hub->ssl_ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2010-01-27 22:55:52 +00:00
|
|
|
|
2010-01-21 00:54:41 +00:00
|
|
|
struct hub_info* hub_start_service(struct hub_config* config)
|
|
|
|
{
|
|
|
|
struct hub_info* hub = 0;
|
2010-01-21 16:26:27 +00:00
|
|
|
int ipv6_supported;
|
2010-01-21 00:54:41 +00:00
|
|
|
|
|
|
|
hub = hub_malloc_zero(sizeof(struct hub_info));
|
|
|
|
if (!hub)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2010-01-21 00:54:41 +00:00
|
|
|
LOG_FATAL("Unable to allocate memory for hub");
|
2009-02-19 16:14:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-21 00:54:41 +00:00
|
|
|
hub->tm_started = time(0);
|
|
|
|
ipv6_supported = net_is_ipv6_supported();
|
|
|
|
if (ipv6_supported)
|
|
|
|
LOG_DEBUG("IPv6 supported.");
|
|
|
|
else
|
|
|
|
LOG_DEBUG("IPv6 not supported.");
|
|
|
|
|
2010-01-21 16:26:27 +00:00
|
|
|
hub->server = start_listening_socket(config->server_bind_addr, config->server_port, config->server_listen_backlog, hub);
|
|
|
|
if (!hub->server)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
|
|
|
hub_free(hub);
|
2010-01-21 00:54:41 +00:00
|
|
|
LOG_FATAL("Unable to start hub service");
|
2009-02-19 16:14:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-01-21 16:26:27 +00:00
|
|
|
LOG_INFO("Starting " PRODUCT "/" VERSION ", listening on %s:%d...", net_get_local_address(hub->server->sd), config->server_port);
|
2009-08-03 14:20:32 +00:00
|
|
|
|
|
|
|
#ifdef SSL_SUPPORT
|
2010-02-15 18:02:31 +00:00
|
|
|
if (!load_ssl_certificates(hub, config))
|
2009-08-03 14:20:32 +00:00
|
|
|
{
|
2010-02-15 18:02:31 +00:00
|
|
|
hub_free(hub);
|
|
|
|
return 0;
|
2009-08-03 14:20:32 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
hub->config = config;
|
|
|
|
hub->users = NULL;
|
2009-08-03 14:20:32 +00:00
|
|
|
|
2009-05-16 01:14:20 +00:00
|
|
|
if (uman_init(hub) == -1)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2010-01-21 16:26:27 +00:00
|
|
|
net_con_close(hub->server);
|
2009-02-19 16:14:09 +00:00
|
|
|
hub_free(hub);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-10-07 15:37:31 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (event_queue_initialize(&hub->queue, hub_event_dispatcher, (void*) hub) == -1)
|
|
|
|
{
|
2010-01-21 16:26:27 +00:00
|
|
|
net_con_close(hub->server);
|
2009-05-16 01:14:20 +00:00
|
|
|
uman_shutdown(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
hub_free(hub);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-10-07 15:37:31 +00:00
|
|
|
|
2009-05-26 19:05:06 +00:00
|
|
|
hub->recvbuf = hub_malloc(MAX_RECV_BUF);
|
|
|
|
hub->sendbuf = hub_malloc(MAX_SEND_BUF);
|
|
|
|
if (!hub->recvbuf || !hub->sendbuf)
|
|
|
|
{
|
2010-01-21 16:26:27 +00:00
|
|
|
net_con_close(hub->server);
|
2009-05-26 19:05:06 +00:00
|
|
|
hub_free(hub->recvbuf);
|
|
|
|
hub_free(hub->sendbuf);
|
|
|
|
uman_shutdown(hub);
|
|
|
|
hub_free(hub);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-26 03:23:56 +00:00
|
|
|
hub->chat_history = (struct linked_list*) list_create();
|
2009-07-26 04:03:43 +00:00
|
|
|
hub->logout_info = (struct linked_list*) list_create();
|
2009-07-26 03:23:56 +00:00
|
|
|
if (!hub->chat_history)
|
|
|
|
{
|
2010-01-21 16:26:27 +00:00
|
|
|
net_con_close(hub->server);
|
2009-07-26 04:03:43 +00:00
|
|
|
list_destroy(hub->chat_history);
|
|
|
|
list_destroy(hub->logout_info);
|
2009-07-26 03:23:56 +00:00
|
|
|
hub_free(hub->recvbuf);
|
|
|
|
hub_free(hub->sendbuf);
|
|
|
|
uman_shutdown(hub);
|
|
|
|
hub_free(hub);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-27 22:55:52 +00:00
|
|
|
server_alt_port_start(hub, config);
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
hub->status = hub_status_running;
|
2009-05-26 19:05:06 +00:00
|
|
|
|
2009-05-18 14:30:17 +00:00
|
|
|
g_hub = hub;
|
2009-02-19 16:14:09 +00:00
|
|
|
return hub;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void hub_shutdown_service(struct hub_info* hub)
|
|
|
|
{
|
2009-08-03 21:59:02 +00:00
|
|
|
LOG_DEBUG("hub_shutdown_service()");
|
2009-02-19 16:14:09 +00:00
|
|
|
|
2010-02-15 18:02:31 +00:00
|
|
|
#ifdef SSL_SUPPORT
|
|
|
|
unload_ssl_certificates(hub);
|
|
|
|
#endif
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
event_queue_shutdown(hub->queue);
|
2010-01-17 21:59:51 +00:00
|
|
|
net_con_close(hub->server);
|
2010-01-27 22:55:52 +00:00
|
|
|
server_alt_port_stop(hub);
|
2009-05-16 01:14:20 +00:00
|
|
|
uman_shutdown(hub);
|
2009-02-19 16:14:09 +00:00
|
|
|
hub->status = hub_status_stopped;
|
2009-06-25 23:16:07 +00:00
|
|
|
hub_free(hub->sendbuf);
|
|
|
|
hub_free(hub->recvbuf);
|
2009-07-26 03:23:56 +00:00
|
|
|
hub_chat_history_clear(hub);
|
|
|
|
list_destroy(hub->chat_history);
|
2009-07-26 04:03:43 +00:00
|
|
|
list_clear(hub->logout_info, &hub_free);
|
|
|
|
list_destroy(hub->logout_info);
|
2009-02-19 16:14:09 +00:00
|
|
|
hub_free(hub);
|
|
|
|
hub = 0;
|
2009-05-18 14:30:17 +00:00
|
|
|
g_hub = 0;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
2010-06-12 00:54:53 +00:00
|
|
|
#ifdef PLUGIN_SUPPORT
|
2011-08-16 12:46:11 +00:00
|
|
|
int hub_plugins_load(struct hub_info* hub)
|
2010-06-12 00:54:53 +00:00
|
|
|
{
|
|
|
|
if (!hub->config->file_plugins || !*hub->config->file_plugins)
|
2011-08-16 12:46:11 +00:00
|
|
|
return 0;
|
2010-06-12 00:54:53 +00:00
|
|
|
|
|
|
|
hub->plugins = hub_malloc_zero(sizeof(struct uhub_plugins));
|
|
|
|
if (!hub->plugins)
|
2011-08-16 12:46:11 +00:00
|
|
|
return -1;
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2010-06-12 00:54:53 +00:00
|
|
|
if (plugin_initialize(hub->config, hub->plugins) < 0)
|
|
|
|
{
|
|
|
|
hub_free(hub->plugins);
|
|
|
|
hub->plugins = 0;
|
2011-08-16 12:46:11 +00:00
|
|
|
return -1;
|
2010-06-12 00:54:53 +00:00
|
|
|
}
|
2011-08-16 12:46:11 +00:00
|
|
|
return 0;
|
2010-06-12 00:54:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void hub_plugins_unload(struct hub_info* hub)
|
|
|
|
{
|
2010-07-29 06:41:26 +00:00
|
|
|
if (hub->plugins)
|
2010-06-22 14:04:33 +00:00
|
|
|
{
|
2010-07-29 06:41:26 +00:00
|
|
|
plugin_shutdown(hub->plugins);
|
|
|
|
hub_free(hub->plugins);
|
|
|
|
hub->plugins = 0;
|
2010-06-12 00:54:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
void hub_set_variables(struct hub_info* hub, struct acl_handle* acl)
|
|
|
|
{
|
|
|
|
int fd, ret;
|
|
|
|
char buf[MAX_RECV_BUF];
|
|
|
|
char* tmp;
|
2010-02-10 22:45:51 +00:00
|
|
|
char* server = adc_msg_escape(PRODUCT_STRING); /* FIXME: OOM */
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
hub->acl = acl;
|
2010-02-10 22:45:51 +00:00
|
|
|
hub->command_info = adc_msg_construct(ADC_CMD_IINF, 15);
|
2009-02-19 16:14:09 +00:00
|
|
|
if (hub->command_info)
|
|
|
|
{
|
|
|
|
adc_msg_add_named_argument(hub->command_info, ADC_INF_FLAG_CLIENT_TYPE, ADC_CLIENT_TYPE_HUB);
|
2009-06-25 20:04:48 +00:00
|
|
|
adc_msg_add_named_argument(hub->command_info, ADC_INF_FLAG_USER_AGENT, server);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
tmp = adc_msg_escape(hub->config->hub_name);
|
|
|
|
adc_msg_add_named_argument(hub->command_info, ADC_INF_FLAG_NICK, tmp);
|
|
|
|
hub_free(tmp);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
tmp = adc_msg_escape(hub->config->hub_description);
|
|
|
|
adc_msg_add_named_argument(hub->command_info, ADC_INF_FLAG_DESCRIPTION, tmp);
|
|
|
|
hub_free(tmp);
|
|
|
|
}
|
2009-10-07 15:37:31 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
/* (Re-)read the message of the day */
|
|
|
|
hub->command_motd = 0;
|
2009-11-18 16:28:36 +00:00
|
|
|
fd = (hub->config->file_motd && *hub->config->file_motd) ? open(hub->config->file_motd, 0) : -1;
|
2009-02-19 16:14:09 +00:00
|
|
|
if (fd != -1)
|
|
|
|
{
|
|
|
|
ret = read(fd, buf, MAX_RECV_BUF);
|
|
|
|
if (ret > 0)
|
|
|
|
{
|
|
|
|
buf[ret] = 0;
|
|
|
|
tmp = adc_msg_escape(buf);
|
|
|
|
hub->command_motd = adc_msg_construct(ADC_CMD_IMSG, 6 + strlen(tmp));
|
2009-11-18 16:28:36 +00:00
|
|
|
adc_msg_add_argument(hub->command_motd, tmp);
|
2009-02-19 16:14:09 +00:00
|
|
|
hub_free(tmp);
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
2009-11-18 16:28:36 +00:00
|
|
|
|
2010-01-19 22:20:19 +00:00
|
|
|
hub->command_rules = 0;
|
|
|
|
fd = (hub->config->file_rules && *hub->config->file_rules) ? open(hub->config->file_rules, 0) : -1;
|
|
|
|
if (fd != -1)
|
|
|
|
{
|
|
|
|
ret = read(fd, buf, MAX_RECV_BUF);
|
|
|
|
if (ret > 0)
|
|
|
|
{
|
|
|
|
buf[ret] = 0;
|
|
|
|
tmp = adc_msg_escape(buf);
|
|
|
|
hub->command_rules = adc_msg_construct(ADC_CMD_IMSG, 6 + strlen(tmp));
|
|
|
|
adc_msg_add_argument(hub->command_rules, tmp);
|
|
|
|
hub_free(tmp);
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
hub->command_support = adc_msg_construct(ADC_CMD_ISUP, 6 + strlen(ADC_PROTO_SUPPORT));
|
|
|
|
if (hub->command_support)
|
|
|
|
{
|
|
|
|
adc_msg_add_argument(hub->command_support, ADC_PROTO_SUPPORT);
|
|
|
|
}
|
2009-11-18 16:28:36 +00:00
|
|
|
|
2010-02-10 22:45:51 +00:00
|
|
|
hub->command_banner = adc_msg_construct(ADC_CMD_ISTA, 100 + strlen(server));
|
2009-02-19 16:14:09 +00:00
|
|
|
if (hub->command_banner)
|
|
|
|
{
|
2010-02-10 22:45:51 +00:00
|
|
|
if (hub->config->show_banner_sys_info)
|
|
|
|
tmp = adc_msg_escape("Powered by " PRODUCT_STRING " on " OPSYS "/" CPUINFO);
|
|
|
|
else
|
|
|
|
tmp = adc_msg_escape("Powered by " PRODUCT_STRING);
|
2009-06-25 20:04:48 +00:00
|
|
|
adc_msg_add_argument(hub->command_banner, "000");
|
|
|
|
adc_msg_add_argument(hub->command_banner, tmp);
|
|
|
|
hub_free(tmp);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
2009-11-18 16:28:36 +00:00
|
|
|
|
2010-06-12 00:54:53 +00:00
|
|
|
#ifdef PLUGIN_SUPPORT
|
2011-08-16 12:46:11 +00:00
|
|
|
if (hub_plugins_load(hub) < 0)
|
|
|
|
{
|
|
|
|
hub->status = hub_status_shutdown;
|
|
|
|
}
|
|
|
|
else
|
2010-06-12 00:54:53 +00:00
|
|
|
#endif
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
hub->status = (hub->config->hub_enabled ? hub_status_running : hub_status_disabled);
|
2009-06-25 20:04:48 +00:00
|
|
|
hub_free(server);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void hub_free_variables(struct hub_info* hub)
|
|
|
|
{
|
2010-06-12 00:54:53 +00:00
|
|
|
#ifdef PLUGIN_SUPPORT
|
|
|
|
hub_plugins_unload(hub);
|
|
|
|
#endif
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
adc_msg_free(hub->command_info);
|
|
|
|
adc_msg_free(hub->command_banner);
|
2009-11-18 16:28:36 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (hub->command_motd)
|
|
|
|
adc_msg_free(hub->command_motd);
|
2009-11-18 16:28:36 +00:00
|
|
|
|
2010-01-19 22:20:19 +00:00
|
|
|
if (hub->command_rules)
|
|
|
|
adc_msg_free(hub->command_rules);
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
adc_msg_free(hub->command_support);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_status_code(enum msg_status_level level, int code, char buffer[4])
|
|
|
|
{
|
|
|
|
buffer[0] = ('0' + (int) level);
|
|
|
|
buffer[1] = ('0' + (code / 10));
|
|
|
|
buffer[2] = ('0' + (code % 10));
|
|
|
|
buffer[3] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param hub The hub instance this message is sent from.
|
|
|
|
* @param user The user this message is sent to.
|
|
|
|
* @param msg See enum status_message
|
|
|
|
* @param level See enum status_level
|
|
|
|
*/
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_send_status(struct hub_info* hub, struct hub_user* user, enum status_message msg, enum msg_status_level level)
|
2009-02-19 16:14:09 +00:00
|
|
|
{
|
2009-05-15 16:45:26 +00:00
|
|
|
struct hub_config* cfg = hub->config;
|
2009-02-19 16:14:09 +00:00
|
|
|
struct adc_message* cmd = adc_msg_construct(ADC_CMD_ISTA, 6);
|
2010-04-22 19:07:46 +00:00
|
|
|
struct adc_message* qui = adc_msg_construct(ADC_CMD_IQUI, 512);
|
2009-02-19 16:14:09 +00:00
|
|
|
char code[4];
|
2010-05-25 20:23:40 +00:00
|
|
|
char buf[256];
|
2009-02-19 16:14:09 +00:00
|
|
|
const char* text = 0;
|
|
|
|
const char* flag = 0;
|
|
|
|
char* escaped_text = 0;
|
2010-02-07 22:08:04 +00:00
|
|
|
int reconnect_time = 0;
|
2010-04-22 19:07:46 +00:00
|
|
|
int redirect = 0;
|
2010-01-28 00:06:41 +00:00
|
|
|
|
2010-04-21 16:34:55 +00:00
|
|
|
if (!cmd || !qui)
|
|
|
|
{
|
|
|
|
adc_msg_free(cmd);
|
|
|
|
adc_msg_free(qui);
|
|
|
|
return;
|
|
|
|
}
|
2010-02-07 22:08:04 +00:00
|
|
|
|
2010-04-22 19:07:46 +00:00
|
|
|
#define STATUS(CODE, MSG, FLAG, RCONTIME, REDIRECT) case status_ ## MSG : set_status_code(level, CODE, code); text = cfg->MSG; flag = FLAG; reconnect_time = RCONTIME; redirect = REDIRECT; break
|
2009-02-19 16:14:09 +00:00
|
|
|
switch (msg)
|
|
|
|
{
|
2010-04-22 19:07:46 +00:00
|
|
|
STATUS(11, msg_hub_full, 0, 600, 1); /* FIXME: Proper timeout? */
|
|
|
|
STATUS(12, msg_hub_disabled, 0, -1, 1);
|
|
|
|
STATUS(26, msg_hub_registered_users_only, 0, 0, 1);
|
|
|
|
STATUS(43, msg_inf_error_nick_missing, 0, 0, 0);
|
|
|
|
STATUS(43, msg_inf_error_nick_multiple, 0, 0, 0);
|
|
|
|
STATUS(21, msg_inf_error_nick_invalid, 0, 0, 0);
|
|
|
|
STATUS(21, msg_inf_error_nick_long, 0, 0, 0);
|
|
|
|
STATUS(21, msg_inf_error_nick_short, 0, 0, 0);
|
|
|
|
STATUS(21, msg_inf_error_nick_spaces, 0, 0, 0);
|
|
|
|
STATUS(21, msg_inf_error_nick_bad_chars, 0, 0, 0);
|
|
|
|
STATUS(21, msg_inf_error_nick_not_utf8, 0, 0, 0);
|
|
|
|
STATUS(22, msg_inf_error_nick_taken, 0, 0, 0);
|
|
|
|
STATUS(21, msg_inf_error_nick_restricted, 0, 0, 0);
|
|
|
|
STATUS(43, msg_inf_error_cid_invalid, "FBID", 0, 0);
|
|
|
|
STATUS(43, msg_inf_error_cid_missing, "FMID", 0, 0);
|
|
|
|
STATUS(24, msg_inf_error_cid_taken, 0, 0, 0);
|
|
|
|
STATUS(43, msg_inf_error_pid_missing, "FMPD", 0, 0);
|
|
|
|
STATUS(27, msg_inf_error_pid_invalid, "FBPD", 0, 0);
|
|
|
|
STATUS(31, msg_ban_permanently, 0, 0, 0);
|
|
|
|
STATUS(32, msg_ban_temporarily, "TL600", 600, 0); /* FIXME: Proper timeout? */
|
|
|
|
STATUS(23, msg_auth_invalid_password, 0, 0, 0);
|
|
|
|
STATUS(20, msg_auth_user_not_found, 0, 0, 0);
|
|
|
|
STATUS(30, msg_error_no_memory, 0, 0, 0);
|
|
|
|
STATUS(43, msg_user_share_size_low, "FB" ADC_INF_FLAG_SHARED_SIZE, 0, 1);
|
|
|
|
STATUS(43, msg_user_share_size_high, "FB" ADC_INF_FLAG_SHARED_SIZE, 0, 1);
|
|
|
|
STATUS(43, msg_user_slots_low, "FB" ADC_INF_FLAG_UPLOAD_SLOTS, 0, 1);
|
|
|
|
STATUS(43, msg_user_slots_high, "FB" ADC_INF_FLAG_UPLOAD_SLOTS, 0, 1);
|
|
|
|
STATUS(43, msg_user_hub_limit_low, 0, 0, 1);
|
|
|
|
STATUS(43, msg_user_hub_limit_high, 0, 0, 1);
|
|
|
|
STATUS(47, msg_proto_no_common_hash, 0, -1, 1);
|
|
|
|
STATUS(40, msg_proto_obsolete_adc0, 0, -1, 1);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
#undef STATUS
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
escaped_text = adc_msg_escape(text);
|
2010-02-07 22:08:04 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
adc_msg_add_argument(cmd, code);
|
|
|
|
adc_msg_add_argument(cmd, escaped_text);
|
2010-02-07 22:08:04 +00:00
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
if (flag)
|
|
|
|
{
|
|
|
|
adc_msg_add_argument(cmd, flag);
|
|
|
|
}
|
2010-02-07 22:08:04 +00:00
|
|
|
|
2009-05-18 14:30:17 +00:00
|
|
|
route_to_user(hub, user, cmd);
|
2010-02-07 22:08:04 +00:00
|
|
|
|
|
|
|
if (level >= status_level_fatal)
|
|
|
|
{
|
2010-12-29 13:40:23 +00:00
|
|
|
adc_msg_add_argument(qui, sid_to_string(user->id.sid));
|
|
|
|
|
2010-02-07 22:08:04 +00:00
|
|
|
snprintf(buf, 230, "MS%s", escaped_text);
|
2010-02-12 18:25:09 +00:00
|
|
|
adc_msg_add_argument(qui, buf);
|
2010-02-07 22:08:04 +00:00
|
|
|
|
|
|
|
if (reconnect_time != 0)
|
|
|
|
{
|
|
|
|
snprintf(buf, 10, "TL%d", reconnect_time);
|
2010-02-12 18:25:09 +00:00
|
|
|
adc_msg_add_argument(qui, buf);
|
2010-02-07 22:08:04 +00:00
|
|
|
}
|
2010-04-22 19:07:46 +00:00
|
|
|
|
|
|
|
if (redirect && *hub->config->redirect_addr)
|
|
|
|
{
|
|
|
|
snprintf(buf, 255, "RD%s", hub->config->redirect_addr);
|
|
|
|
adc_msg_add_argument(qui, buf);
|
|
|
|
}
|
2010-02-12 18:25:09 +00:00
|
|
|
route_to_user(hub, user, qui);
|
2010-02-07 22:08:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hub_free(escaped_text);
|
2009-02-19 16:14:09 +00:00
|
|
|
adc_msg_free(cmd);
|
2010-02-07 22:08:04 +00:00
|
|
|
adc_msg_free(qui);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* hub_get_status_message(struct hub_info* hub, enum status_message msg)
|
|
|
|
{
|
|
|
|
#define STATUS(MSG) case status_ ## MSG : return cfg->MSG; break
|
|
|
|
struct hub_config* cfg = hub->config;
|
|
|
|
switch (msg)
|
|
|
|
{
|
|
|
|
STATUS(msg_hub_full);
|
|
|
|
STATUS(msg_hub_disabled);
|
|
|
|
STATUS(msg_hub_registered_users_only);
|
|
|
|
STATUS(msg_inf_error_nick_missing);
|
|
|
|
STATUS(msg_inf_error_nick_multiple);
|
|
|
|
STATUS(msg_inf_error_nick_invalid);
|
|
|
|
STATUS(msg_inf_error_nick_long);
|
|
|
|
STATUS(msg_inf_error_nick_short);
|
|
|
|
STATUS(msg_inf_error_nick_spaces);
|
|
|
|
STATUS(msg_inf_error_nick_bad_chars);
|
|
|
|
STATUS(msg_inf_error_nick_not_utf8);
|
|
|
|
STATUS(msg_inf_error_nick_taken);
|
|
|
|
STATUS(msg_inf_error_nick_restricted);
|
|
|
|
STATUS(msg_inf_error_cid_invalid);
|
|
|
|
STATUS(msg_inf_error_cid_missing);
|
|
|
|
STATUS(msg_inf_error_cid_taken);
|
|
|
|
STATUS(msg_inf_error_pid_missing);
|
|
|
|
STATUS(msg_inf_error_pid_invalid);
|
|
|
|
STATUS(msg_ban_permanently);
|
|
|
|
STATUS(msg_ban_temporarily);
|
|
|
|
STATUS(msg_auth_invalid_password);
|
|
|
|
STATUS(msg_auth_user_not_found);
|
|
|
|
STATUS(msg_error_no_memory);
|
|
|
|
STATUS(msg_user_share_size_low);
|
|
|
|
STATUS(msg_user_share_size_high);
|
|
|
|
STATUS(msg_user_slots_low);
|
|
|
|
STATUS(msg_user_slots_high);
|
|
|
|
STATUS(msg_user_hub_limit_low);
|
|
|
|
STATUS(msg_user_hub_limit_high);
|
2010-04-05 10:45:35 +00:00
|
|
|
STATUS(msg_proto_no_common_hash);
|
|
|
|
STATUS(msg_proto_obsolete_adc0);
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
#undef STATUS
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
|
2009-03-23 14:47:54 +00:00
|
|
|
const char* hub_get_status_message_log(struct hub_info* hub, enum status_message msg)
|
|
|
|
{
|
|
|
|
#define STATUS(MSG) case status_ ## MSG : return #MSG; break
|
2010-08-11 16:44:02 +00:00
|
|
|
switch (msg)
|
|
|
|
{
|
|
|
|
STATUS(msg_hub_full);
|
|
|
|
STATUS(msg_hub_disabled);
|
|
|
|
STATUS(msg_hub_registered_users_only);
|
|
|
|
STATUS(msg_inf_error_nick_missing);
|
|
|
|
STATUS(msg_inf_error_nick_multiple);
|
|
|
|
STATUS(msg_inf_error_nick_invalid);
|
|
|
|
STATUS(msg_inf_error_nick_long);
|
|
|
|
STATUS(msg_inf_error_nick_short);
|
|
|
|
STATUS(msg_inf_error_nick_spaces);
|
|
|
|
STATUS(msg_inf_error_nick_bad_chars);
|
|
|
|
STATUS(msg_inf_error_nick_not_utf8);
|
|
|
|
STATUS(msg_inf_error_nick_taken);
|
|
|
|
STATUS(msg_inf_error_nick_restricted);
|
|
|
|
STATUS(msg_inf_error_cid_invalid);
|
|
|
|
STATUS(msg_inf_error_cid_missing);
|
|
|
|
STATUS(msg_inf_error_cid_taken);
|
|
|
|
STATUS(msg_inf_error_pid_missing);
|
|
|
|
STATUS(msg_inf_error_pid_invalid);
|
|
|
|
STATUS(msg_ban_permanently);
|
|
|
|
STATUS(msg_ban_temporarily);
|
|
|
|
STATUS(msg_auth_invalid_password);
|
|
|
|
STATUS(msg_auth_user_not_found);
|
|
|
|
STATUS(msg_error_no_memory);
|
|
|
|
STATUS(msg_user_share_size_low);
|
|
|
|
STATUS(msg_user_share_size_high);
|
|
|
|
STATUS(msg_user_slots_low);
|
|
|
|
STATUS(msg_user_slots_high);
|
|
|
|
STATUS(msg_user_hub_limit_low);
|
|
|
|
STATUS(msg_user_hub_limit_high);
|
2010-04-05 10:45:35 +00:00
|
|
|
STATUS(msg_proto_no_common_hash);
|
|
|
|
STATUS(msg_proto_obsolete_adc0);
|
2010-08-11 16:44:02 +00:00
|
|
|
}
|
2009-03-23 14:47:54 +00:00
|
|
|
#undef STATUS
|
2010-08-11 16:44:02 +00:00
|
|
|
return "unknown";
|
2009-03-23 14:47:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-19 16:14:09 +00:00
|
|
|
size_t hub_get_user_count(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->users->count;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_max_user_count(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->max_users;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t hub_get_shared_size(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->users->shared_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t hub_get_shared_files(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->users->shared_files;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t hub_get_min_share(struct hub_info* hub)
|
|
|
|
{
|
2010-12-20 22:18:26 +00:00
|
|
|
uint64_t size = hub->config->limit_min_share;
|
|
|
|
size *= (1024 * 1024);
|
|
|
|
return size;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t hub_get_max_share(struct hub_info* hub)
|
|
|
|
{
|
2010-12-20 22:18:26 +00:00
|
|
|
uint64_t size = hub->config->limit_max_share;
|
|
|
|
size *= (1024 * 1024);
|
|
|
|
return size;
|
2009-02-19 16:14:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_min_slots(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_min_slots;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_max_slots(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_max_slots;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_max_hubs_total(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_max_hubs;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_max_hubs_user(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_max_hubs_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_min_hubs_user(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_min_hubs_user;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_max_hubs_reg(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_max_hubs_reg;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_min_hubs_reg(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_min_hubs_reg;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_max_hubs_op(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_max_hubs_op;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t hub_get_min_hubs_op(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
return hub->config->limit_min_hubs_op;
|
|
|
|
}
|
|
|
|
|
2009-08-03 21:59:02 +00:00
|
|
|
void hub_schedule_destroy_user(struct hub_info* hub, struct hub_user* user)
|
|
|
|
{
|
|
|
|
struct event_data post;
|
|
|
|
memset(&post, 0, sizeof(post));
|
|
|
|
post.id = UHUB_EVENT_USER_DESTROY;
|
|
|
|
post.ptr = user;
|
|
|
|
event_queue_post(hub->queue, &post);
|
|
|
|
|
|
|
|
if (user->id.sid)
|
|
|
|
{
|
|
|
|
sid_free(hub->users->sids, user->id.sid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void hub_disconnect_all(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
struct event_data post;
|
|
|
|
memset(&post, 0, sizeof(post));
|
|
|
|
post.id = UHUB_EVENT_HUB_SHUTDOWN;
|
|
|
|
post.ptr = 0;
|
|
|
|
event_queue_post(hub->queue, &post);
|
|
|
|
}
|
|
|
|
|
2009-03-18 01:32:00 +00:00
|
|
|
void hub_event_loop(struct hub_info* hub)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
2010-01-17 21:59:51 +00:00
|
|
|
net_backend_process();
|
|
|
|
event_queue_process(hub->queue);
|
2009-03-18 01:32:00 +00:00
|
|
|
}
|
2009-03-24 21:06:26 +00:00
|
|
|
while (hub->status == hub_status_running || hub->status == hub_status_disabled);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-08-02 19:04:10 +00:00
|
|
|
|
2009-08-03 21:59:02 +00:00
|
|
|
if (hub->status == hub_status_shutdown)
|
2009-08-02 19:04:10 +00:00
|
|
|
{
|
2009-08-03 21:59:02 +00:00
|
|
|
LOG_DEBUG("Removing all users...");
|
|
|
|
event_queue_process(hub->queue);
|
|
|
|
event_queue_process(hub->queue);
|
|
|
|
hub_disconnect_all(hub);
|
|
|
|
event_queue_process(hub->queue);
|
|
|
|
hub->status = hub_status_stopped;
|
2009-08-02 19:04:10 +00:00
|
|
|
}
|
2009-05-18 14:30:17 +00:00
|
|
|
}
|
|
|
|
|
2009-08-03 21:59:02 +00:00
|
|
|
|
2009-07-25 23:47:17 +00:00
|
|
|
void hub_disconnect_user(struct hub_info* hub, struct hub_user* user, int reason)
|
2009-05-18 14:30:17 +00:00
|
|
|
{
|
|
|
|
struct event_data post;
|
|
|
|
int need_notify = 0;
|
2009-08-04 02:58:55 +00:00
|
|
|
|
2009-05-18 14:30:17 +00:00
|
|
|
/* is user already being disconnected ? */
|
|
|
|
if (user_is_disconnecting(user))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-19 00:12:50 +00:00
|
|
|
/* stop reading from user */
|
2009-12-10 22:12:04 +00:00
|
|
|
net_shutdown_r(net_con_get_sd(user->connection));
|
2009-11-21 10:47:26 +00:00
|
|
|
net_con_close(user->connection);
|
2009-10-07 15:37:31 +00:00
|
|
|
user->connection = 0;
|
2009-08-04 02:58:55 +00:00
|
|
|
|
2009-07-25 23:38:38 +00:00
|
|
|
LOG_TRACE("hub_disconnect_user(), user=%p, reason=%d, state=%d", user, reason, user->state);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-08-03 21:59:02 +00:00
|
|
|
need_notify = user_is_logged_in(user) && hub->status == hub_status_running;
|
2009-05-18 14:30:17 +00:00
|
|
|
user->quit_reason = reason;
|
|
|
|
user_set_state(user, state_cleanup);
|
2010-08-11 16:44:02 +00:00
|
|
|
|
2009-05-18 14:30:17 +00:00
|
|
|
if (need_notify)
|
|
|
|
{
|
|
|
|
memset(&post, 0, sizeof(post));
|
|
|
|
post.id = UHUB_EVENT_USER_QUIT;
|
|
|
|
post.ptr = user;
|
|
|
|
event_queue_post(hub->queue, &post);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hub_schedule_destroy_user(hub, user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-26 04:03:43 +00:00
|
|
|
void hub_logout_log(struct hub_info* hub, struct hub_user* user)
|
|
|
|
{
|
|
|
|
struct hub_logout_info* loginfo = hub_malloc_zero(sizeof(struct hub_logout_info));
|
|
|
|
if (!loginfo) return;
|
|
|
|
loginfo->time = time(NULL);
|
2011-11-30 11:19:37 +00:00
|
|
|
memcpy(loginfo->cid, user->id.cid, sizeof(loginfo->cid));
|
|
|
|
memcpy(loginfo->nick, user->id.nick, sizeof(loginfo->nick));
|
2009-09-28 21:15:15 +00:00
|
|
|
memcpy(&loginfo->addr, &user->id.addr, sizeof(struct ip_addr_encap));
|
2009-07-26 04:03:43 +00:00
|
|
|
loginfo->reason = user->quit_reason;
|
|
|
|
|
|
|
|
list_append(hub->logout_info, loginfo);
|
|
|
|
while (list_size(hub->logout_info) > (size_t) hub->config->max_logout_log)
|
|
|
|
{
|
|
|
|
struct hub_logout_info* entry = list_get_first(hub->logout_info);
|
|
|
|
list_remove(hub->logout_info, entry);
|
|
|
|
hub_free(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|