47 #include <boost/algorithm/string.hpp>
48 #include <boost/scope_exit.hpp>
67 #define ERR_SERVER LOG_STREAM(err, log_server)
70 #define WRN_SERVER LOG_STREAM(warn, log_server)
73 #define LOG_SERVER LOG_STREAM(info, log_server)
74 #define DBG_SERVER LOG_STREAM(debug, log_server)
77 #define ERR_CONFIG LOG_STREAM(err, log_config)
78 #define WRN_CONFIG LOG_STREAM(warn, log_config)
80 using namespace std::chrono_literals;
91 if(!out.
child(
"gamelist_diff")) {
104 assert(!children.empty());
107 index = children.size() - 1;
110 assert(
index <
static_cast<int>(children.size()));
117 const char* gamelist,
122 if(!out.
child(
"gamelist_diff")) {
136 if(itor == children.end()) {
140 const int index = std::distance(children.begin(), itor);
150 const char* gamelist,
155 if(!out.
child(
"gamelist_diff")) {
167 const auto itor =
std::find(children.begin(), children.end(), item);
169 if(itor == children.end()) {
176 const int index = std::distance(children.begin(), itor);
193 std::ostringstream out;
196 <<
d.count() <<
" days, "
197 <<
h.count() <<
" hours, "
198 << m.count() <<
" minutes, "
199 <<
s.count() <<
" seconds";
203 const std::string
denied_msg =
"You're not allowed to execute this command.";
205 "Available commands are: adminmsg <msg>,"
206 " ban <mask> <time> <reason>, bans [deleted] [<ipmask>], clones,"
207 " dul|deny_unregistered_login [yes|no], kick <mask> [<reason>],"
208 " k[ick]ban <mask> <time> <reason>, help, games, metrics,"
209 " [lobby]msg <message>, motd [<message>],"
210 " pm|privatemsg <nickname> <message>, requests, roll <sides>, sample, searchlog <mask>,"
211 " signout, stats, status [<mask>], stopgame <nick> [<reason>], reset_queues, unban <ipmask>\n"
212 "Specific strings (those not in between <> like the command names)"
213 " are case insensitive.";
215 server::server(
int port,
217 const std::string& config_file)
222 , user_handler_(nullptr)
223 , die_(static_cast<unsigned>(std::time(nullptr)))
228 , config_file_(config_file)
229 , cfg_(read_config())
230 , accepted_versions_()
231 , redirected_versions_()
233 , disallowed_names_()
240 , default_max_messages_(0)
241 , default_time_period_(0)
242 , concurrent_connections_(0)
243 , graceful_restart(false)
246 , max_ip_log_size_(0)
247 , deny_unregistered_login_(false)
248 , save_replays_(false)
249 , replay_save_path_()
250 , allow_remote_shutdown_(false)
253 , failed_login_limit_()
254 , failed_login_ban_()
255 , failed_login_buffer_size_()
260 , dump_stats_timer_(io_service_)
261 , tournaments_timer_(io_service_)
263 , timer_(io_service_)
264 , lan_server_timer_(io_service_)
265 , dummy_player_timer_(io_service_)
266 , dummy_player_timer_interval_(30)
283 WRN_SERVER <<
"SIGHUP caught, reloading config";
296 if(
games().empty()) {
297 process_command(
"msg All games ended. Shutting down now. Reconnect to the new server instance.",
"system");
328 if(res != 0 && errno != EEXIST) {
332 int fifo = open(
input_path_.c_str(), O_RDWR | O_NONBLOCK);
338 LOG_SERVER <<
"opened fifo at '" <<
input_path_ <<
"'. Server commands may be written to this file.";
348 std::cout << error.message() << std::endl;
354 std::getline(is, cmd);
361 if(!cmd.empty() && cmd.at(0) ==
'+') {
364 <<
"[/admin_command_response]";
376 #define SETUP_HANDLER(name, function) \
377 cmd_handlers_[name] = std::bind(function, this, \
378 std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4);
439 #warning No FIFODIR set
440 #define FIFODIR "/var/run/wesnothd"
442 const std::string fifo_path
443 = (
cfg_[
"fifo_path"].
empty() ? std::string(
FIFODIR) +
"/socket" : std::string(
cfg_[
"fifo_path"]));
464 const config&
game = queue.mandatory_child(
"game");
465 queue_info q =
queue_info(queue[
"id"].to_int(),
game[
"scenario"].str(), queue[
"display_name"].str(), queue[
"players_required"].to_int(),
game);
469 std::map<int, queue_info> new_queue_info;
471 const config&
game = queue.mandatory_child(
"game");
472 queue_info q =
queue_info(queue[
"id"].to_int(),
game[
"scenario"].str(), queue[
"display_name"].str(), queue[
"players_required"].to_int(),
game);
473 new_queue_info.emplace(q.
id, q);
477 for(
auto& [
id,
info] : new_queue_info) {
482 update.set_attr_dup(
"action",
"add");
483 update.set_attr_dup(
"scenario_id",
info.scenario_id.c_str());
484 update.set_attr_dup(
"display_name",
info.display_name.c_str());
485 update.set_attr_int(
"players_required",
info.players_required);
498 update.set_attr_dup(
"action",
"update");
499 update.set_attr_dup(
"scenario_id",
info.scenario_id.c_str());
500 update.set_attr_dup(
"display_name",
info.display_name.c_str());
501 update.set_attr_int(
"players_required",
info.players_required);
509 if(new_queue_info.count(
id) == 0) {
513 update.set_attr_dup(
"action",
"remove");
533 for(
const std::string& source :
utils::split(
cfg_[
"client_sources"].str())) {
538 if(
cfg_[
"disallow_names"].empty()) {
569 const std::string& versions =
cfg_[
"versions_accepted"];
570 if(versions.empty() ==
false) {
586 for(
const std::string& version :
utils::split(proxy[
"version"])) {
602 ERR_SERVER <<
"The server id must be set when database support is used";
614 if(
cfg_[
"dummy_player_count"].to_int() > 0) {
615 for(
int i = 0;
i <
cfg_[
"dummy_player_count"].to_int();
i++) {
622 dummy_user.
set_attr_dup(
"name", (
"player"+std::to_string(
i)).c_str());
626 if(
cfg_[
"dummy_player_timer_interval"].to_int() > 0) {
639 std::size_t connections = 0;
641 if(
player.client_ip() == ip) {
658 server_ban_info->get_reason(),
659 server_ban_info->get_remaining_ban_time()
675 ERR_SERVER <<
"Error waiting for dump stats timer: " << ec.message();
679 <<
"\tnumber_of_games = " <<
games().size()
693 ERR_SERVER <<
"Error waiting for dummy player timer: " << ec.message();
736 ERR_SERVER <<
"Error waiting for tournament refresh timer: " << ec.message();
747 boost::asio::spawn(
io_service_, [socket,
this](boost::asio::yield_context yield) {
login_client(std::move(yield), socket); }
748 #if BOOST_VERSION >= 108000
749 , [](
const std::exception_ptr&
e) {
if (
e) std::rethrow_exception(
e); }
756 boost::asio::spawn(
io_service_, [socket,
this](boost::asio::yield_context yield) {
login_client(std::move(yield), socket); }
757 #if BOOST_VERSION >= 108000
758 , [](
const std::exception_ptr&
e) {
if (
e) std::rethrow_exception(
e); }
763 template<
class SocketPtr>
771 std::string client_version, client_source;
774 client_version = std::string { version_str_span.
begin(), version_str_span.
end() };
777 client_source = std::string { source_str_span.
begin(), source_str_span.
end() };
785 <<
":\ttelling them to log in.";
794 <<
":\tredirecting them to " << redirect_version.second[
"host"] <<
":"
795 << redirect_version.second[
"port"];
798 for(
const auto& attr : redirect_version.second.attribute_range()) {
799 redirect.set_attr_dup(attr.first.c_str(), attr.second.str().c_str());
808 <<
":\trejecting them";
823 std::string username;
824 bool registered, is_moderator;
831 username = (*login)[
"username"].to_string();
833 if(
is_login_allowed(yield, socket, login, username, registered, is_moderator)) {
856 assert(inserted &&
"unexpected duplicate username");
859 join_lobby_response.
root().
add_child(
"join_lobby").
set_attr(
"is_moderator", is_moderator ?
"yes" :
"no");
866 queue_node.
set_attr_dup(
"scenario_id", queue.scenario_id.c_str());
867 queue_node.
set_attr_dup(
"display_name", queue.display_name.c_str());
868 queue_node.
set_attr_int(
"players_required", queue.players_required);
874 [
this, socket, new_player](boost::asio::yield_context yield) {
handle_player(std::move(yield), socket, new_player); }
875 #if BOOST_VERSION >= 108000
876 , [](
const std::exception_ptr&
e) {
if (
e) std::rethrow_exception(
e); }
881 << (registered ?
" to a registered account" :
"");
883 std::shared_ptr<game> last_sent;
885 auto g_ptr = record.get_game();
886 if(g_ptr != last_sent) {
888 g_ptr->send_server_message_to_all(username +
" has logged into the lobby");
908 template<
class SocketPtr>
bool server::is_login_allowed(boost::asio::yield_context yield, SocketPtr socket,
const simple_wml::node*
const login,
const std::string& username,
bool& registered,
bool& is_moderator)
913 "The nickname '" + username +
"' contains invalid "
914 "characters. Only alpha-numeric characters, underscores and hyphens are allowed.",
921 if(username.size() > 20) {
922 async_send_error(socket,
"The nickname '" + username +
"' is too long. Nicks must be 20 characters or less.",
931 async_send_error(socket,
"The nickname '" + username +
"' is reserved and cannot be used by players",
944 if(!
authenticate(socket, username, (*login)[
"password"].to_string(), name_taken, registered))
950 "The nickname '" + username +
"' is not registered. This server disallows unregistered nicknames.",
965 std::string ban_type_desc;
966 std::string ban_reason;
967 const char* msg_numeric;
968 std::string ban_duration = std::to_string(auth_ban.
duration.count());
970 switch(auth_ban.
type) {
972 ban_type_desc =
"account";
974 ban_reason =
"a ban has been issued on your user account.";
977 ban_type_desc =
"IP address";
979 ban_reason =
"a ban has been issued on your IP address.";
982 ban_type_desc =
"email address";
984 ban_reason =
"a ban has been issued on your email address.";
987 ban_type_desc =
"<unknown ban type>";
989 ban_reason = ban_type_desc;
992 ban_reason +=
" (" + ban_duration +
")";
995 LOG_SERVER <<
log_address(socket) <<
"\t" << username <<
"\tis banned by user_handler (" << ban_type_desc
999 async_send_error(socket,
"You are banned from this server: " + ban_reason, msg_numeric, {{
"duration", ban_duration}});
1002 async_send_error(socket,
"You are banned from this server: " + ban_reason, msg_numeric);
1006 LOG_SERVER <<
log_address(socket) <<
"\t" << username <<
"\tis banned by user_handler (" << ban_type_desc
1007 <<
"), " <<
"ignoring due to moderator flag";
1014 process_command(
"kick " + username +
" autokick by registered user", username);
1017 boost::asio::post(yield);
1026 send_server_message(socket,
"You are currently banned by the forum administration.",
"alert");
1033 SocketPtr socket,
const std::string& username,
const std::string& password,
bool name_taken,
bool& registered)
1049 "The nickname '" + username +
"' is inactive. You cannot claim ownership of this "
1050 "nickname until you activate your account via email or ask an administrator to do it for you.",
1053 const std::string salt =
user_handler_->extract_salt(username);
1056 "Even though your nickname is registered on this server you "
1057 "cannot log in due to an error in the hashing algorithm. "
1058 "Logging into your forum account on https://forums.wesnoth.org "
1059 "may fix this problem.");
1062 const std::string hashed_password =
hash_password(password, salt, username);
1065 if(password.empty()) {
1070 "The nickname '" + username +
"' is registered on this server."
1071 "\n\nWARNING: There is already a client using this username, "
1072 "logging in will cause that client to be kicked!",
1082 if(hashed_password.empty()) {
1087 else if(!(
user_handler_->login(username, hashed_password))) {
1088 const auto steady_now = std::chrono::steady_clock::now();
1114 "Maximum login attempts exceeded",
"automatic",
"", username);
1119 "The password you provided for the nickname '" + username +
"' was incorrect.",
1125 <<
"Login attempt with incorrect password for nickname '" << username <<
"'.";
1139 const std::string&
msg,
1140 const char* error_code,
1141 bool force_confirmation)
1145 e.set_attr_dup(
"message",
msg.c_str());
1146 e.set_attr(
"password_request",
"yes");
1147 e.set_attr(
"force_confirmation", force_confirmation ?
"yes" :
"no");
1149 if(*error_code !=
'\0') {
1150 e.set_attr(
"error_code", error_code);
1161 BOOST_SCOPE_EXIT_ALL(
this, &
player) {
1169 if(!
motd_.empty()) {
1191 if(doc->child(
"refresh_lobby")) {
1253 int offset = request->attr(
"offset").to_int();
1258 if(request->has_attr(
"search_player") && request->attr(
"search_player").to_string() !=
"") {
1259 std::string player_name = request->attr(
"search_player").to_string();
1264 player_id = player_ptr->info().config_address()->attr(
"forum_id").to_int();
1268 std::string search_game_name = request->attr(
"search_game_name").to_string();
1269 int search_content_type = request->attr(
"search_content_type").to_int();
1270 std::string search_content = request->attr(
"search_content").to_string();
1271 LOG_SERVER <<
"Querying game history requested by player `" <<
player->info().
name() <<
"` for player id `" << player_id <<
"`."
1272 <<
"Searching for game name `" << search_game_name <<
"`, search content type `" << search_content_type <<
"`, search content `" << search_content <<
"`.";
1273 user_handler_->async_get_and_send_game_history(
io_service_, *
this,
player->socket(), player_id, offset, search_game_name, search_content_type, search_content);
1281 if((whisper[
"receiver"].empty()) || (whisper[
"message"].empty())) {
1284 "message=\"Invalid number of arguments\"\n"
1285 "sender=\"server\"\n"
1294 whisper.set_attr_dup(
"sender",
player->
name().c_str());
1311 whisper.copy_into(trunc_whisper);
1323 const std::string command(query[
"type"].to_string());
1324 std::ostringstream response;
1326 const std::string& query_help_msg =
1327 "Available commands are: adminmsg <msg>, help, games, metrics,"
1328 " motd, requests, roll <sides>, sample, stats, status, version, wml.";
1331 if(command ==
"status") {
1334 command.compare(0, 8,
"adminmsg") == 0 ||
1335 command.compare(0, 6,
"report") == 0 ||
1336 command ==
"games" ||
1337 command ==
"metrics" ||
1338 command ==
"motd" ||
1339 command.compare(0, 7,
"version") == 0 ||
1340 command ==
"requests" ||
1341 command.compare(0, 4,
"roll") == 0 ||
1342 command ==
"sample" ||
1343 command ==
"stats" ||
1349 if(command ==
"signout") {
1353 response <<
"You are no longer recognized as an administrator.";
1358 LOG_SERVER <<
"Admin Command: type: " << command <<
"\tIP: " << iter->client_ip()
1363 }
else if(command ==
"help" || command.empty()) {
1364 response << query_help_msg;
1365 }
else if(command ==
"admin" || command.compare(0, 6,
"admin ") == 0) {
1372 if(command.size() >= 6) {
1373 passwd = command.substr(6);
1377 LOG_SERVER <<
"New Admin recognized: IP: " << iter->client_ip() <<
"\tnick: " <<
player.
name();
1380 response <<
"You are now recognized as an administrator.";
1386 WRN_SERVER <<
"FAILED Admin attempt with password: '" << passwd <<
"'\tIP: " << iter->client_ip()
1388 response <<
"Error: wrong password";
1391 response <<
"Error: unrecognized query: '" << command <<
"'\n" << query_help_msg;
1406 if(nickserv.
child(
"info")) {
1408 std::string res =
user_handler_->user_info((*nickserv.
child(
"info"))[
"name"].to_string());
1412 "There was an error looking up the details of the user '"
1413 + (*nickserv.
child(
"info"))[
"name"].to_string() +
"'. "
1414 +
" The error message was: " +
e.message,
"error"
1442 if(user->info().is_message_flooding()) {
1444 "Warning: you are sending too many messages too fast. Your message has not been relayed.",
"error");
1449 message.set_attr_dup(
"sender", user->name().c_str());
1452 message.copy_into(trunc_message);
1458 LOG_SERVER << user->client_ip() <<
"\t<" << user->name()
1461 LOG_SERVER << user->client_ip() <<
"\t<" << user->name() <<
"> " <<
msg;
1471 update.set_attr_int(
"queue_id", queue.
id);
1472 update.set_attr_dup(
"action",
"update");
1485 "This server is shutting down. You aren't allowed to make new games. Please "
1486 "reconnect to the new server.",
"error");
1492 const std::string game_name = create_game[
"name"].to_string();
1493 const std::string game_password = create_game[
"password"].to_string();
1494 const std::string initial_bans = create_game[
"ignored"].to_string();
1496 int queue_id = create_game[
"queue_id"].to_int();
1499 <<
"\tcreates a new game: \"" << game_name <<
"\".";
1512 DBG_SERVER <<
"initial bans: " << initial_bans;
1513 if(initial_bans !=
"") {
1517 if(game_password.empty() ==
false) {
1518 g.set_password(game_password);
1542 assert(gamelist !=
nullptr);
1555 const std::size_t
index = std::distance(
games.begin(),
g);
1559 LOG_SERVER <<
"Could not find game (" << game_ptr->
id() <<
", " << game_ptr->
db_id() <<
") to delete in games_and_users_list_.";
1569 int game_id =
join[
"id"].to_int();
1572 const std::string& password =
join[
"password"].to_string();
1576 std::shared_ptr<game>
g;
1578 g = g_iter->get_game();
1584 <<
"\tattempted to join unknown game:\t" << game_id <<
".";
1589 }
else if(!
g->level_init()) {
1591 <<
"\tattempted to join uninitialized game:\t\"" <<
g->name() <<
"\" (" << game_id <<
").";
1600 <<
"\tReject banned player: " <<
player->info().
name()
1601 <<
"\tfrom game:\t\"" <<
g->name() <<
"\" (" << game_id <<
").";
1606 }
else if(!
g->password_matches(password)) {
1608 <<
"\tattempted to join game:\t\"" <<
g->name() <<
"\" (" << game_id <<
") with bad password";
1618 <<
"\tattempted to observe game:\t\"" <<
g->name() <<
"\" (" << game_id
1619 <<
") which doesn't allow observers.";
1623 "Attempt to observe a game that doesn't allow observers. (You probably joined the "
1624 "game shortly after it filled up.)",
"error");
1633 g->describe_slots();
1640 if(diff1 || diff2) {
1656 int queue_id =
data.attr(
"queue_id").to_int();
1659 ERR_SERVER <<
"player " <<
p->info().name() <<
" attempted to join non-existing server-side queue " <<
data.attr(
"queue_id");
1665 DBG_SERVER <<
"player " <<
p->info().name() <<
" already in server-side queue " <<
data.attr(
"queue_id");
1671 p->info().add_queue(queue.
id);
1685 game.set_attr_dup(
"scenario", queue.
settings[
"scenario"].str().c_str());
1686 game.set_attr_dup(
"era", queue.
settings[
"era"].str().c_str());
1687 game.set_attr_int(
"fog", queue.
settings[
"fog"].to_int());
1688 game.set_attr_int(
"shroud", queue.
settings[
"shroud"].to_int());
1689 game.set_attr_int(
"village_gold", queue.
settings[
"village_gold"].to_int());
1690 game.set_attr_int(
"village_support", queue.
settings[
"village_support"].to_int());
1691 game.set_attr_int(
"experience_modifier", queue.
settings[
"experience_modifier"].to_int());
1692 game.set_attr_int(
"countdown", queue.
settings[
"countdown"].to_int());
1693 game.set_attr_int(
"random_start_time", queue.
settings[
"random_start_time"].to_int());
1694 game.set_attr_int(
"shuffle_sides", queue.
settings[
"shuffle_sides"].to_int());
1700 if(
game->is_open_queue_game(queue.
id)) {
1714 int queue_id =
data.attr(
"queue_id").to_int();
1717 ERR_SERVER <<
"player " <<
p->info().name() <<
" attempted to leave non-existing server-side queue " <<
data.attr(
"queue_id");
1726 p->info().clear_queues();
1730 ERR_SERVER <<
"player " <<
p->info().name() <<
" already not in server-side queue " <<
data.attr(
"queue_id");
1740 game&
g = *(
p->get_game());
1741 std::weak_ptr<game> g_ptr{
p->get_game()};
1744 if(
data.child(
"snapshot") ||
data.child(
"scenario")) {
1745 if(!
g.is_owner(
p)) {
1755 if(!
g.level_init()) {
1757 <<
g.id() <<
", " <<
g.db_id() <<
").";
1761 assert(gamelist !=
nullptr);
1764 g.level().root().copy_into(desc);
1770 <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
") without a 'multiplayer' child.";
1772 g.set_description(&desc);
1776 "The scenario data is missing the [multiplayer] tag which contains the "
1777 "game settings. Game aborted.",
"error");
1781 g.set_description(&desc);
1785 <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
") although it's already initialized.";
1799 if(!
data[
"mp_shroud"].to_bool()) {
1804 if(!
e->attr(
"require_era").to_bool(
true)) {
1805 desc.
set_attr(
"require_era",
"no");
1809 if(
s[
"require_scenario"].to_bool(
false)) {
1810 desc.
set_attr(
"require_scenario",
"yes");
1819 desc.
child(
"modification")->
set_attr_dup(
"require_modification", m->attr(
"require_modification"));
1823 g.level().swap(
data);
1828 g.update_side_data();
1839 if(
g.q_type() == queue_type::type::server_preset) {
1840 int queue_id =
g.queue_id();
1841 int game_id =
g.id();
1848 std::size_t joined_count = 1;
1849 for(
const std::string& name :
info.players_in_queue) {
1861 for(
int queue : player_ptr->info().get_queues()) {
1869 if(joined_count ==
info.players_required) {
1883 }
else if(!
g.level_init()) {
1885 <<
" while the scenario wasn't yet initialized."
1890 if(!
g.is_owner(
p)) {
1894 if(!
g.level_init()) {
1896 <<
"\tsent [store_next_scenario] in game:\t\"" <<
g.name() <<
"\" (" <<
g.id()
1897 <<
", " <<
g.db_id() <<
") while the scenario is not yet initialized.";
1907 g.reset_last_synced_context_id();
1911 scenario->copy_into(
g.level().root());
1914 if(
g.description() ==
nullptr) {
1915 ERR_SERVER <<
p->client_ip() <<
"\tERROR: \"" <<
g.name() <<
"\" (" <<
g.id()
1916 <<
", " <<
g.db_id() <<
") is initialized but has no description_.";
1927 <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
") without a 'multiplayer' child.";
1932 "The scenario data is missing the [multiplayer] tag which contains the game "
1933 "settings. Game aborted.",
"error");
1940 desc.
set_attr_dup(
"map_data",
s[
"mp_shroud"].to_bool() ?
"" :
s[
"map_data"]);
1943 if(!
e->attr(
"require_era").to_bool(
true)) {
1944 desc.
set_attr(
"require_era",
"no");
1948 if(
s[
"require_scenario"].to_bool(
false)) {
1949 desc.
set_attr(
"require_scenario",
"yes");
1955 g.send_data(notify_next_scenario,
p);
1961 }
else if(
data.child(
"load_next_scenario")) {
1962 g.load_next_scenario(
p);
1964 }
else if(
data.child(
"start_game")) {
1965 if(!
g.is_owner(
p)) {
1970 g.perform_controller_tweaks();
1982 std::set<std::string> primary_keys;
1983 for(
const auto& addon : m.
children(
"addon")) {
1984 for(
const auto& content : addon->children(
"content")) {
1985 std::string key =
uuid_+
"-"+std::to_string(
g.db_id())+
"-"+content->attr(
"type").to_string()+
"-"+content->attr(
"id").to_string()+
"-"+addon->attr(
"id").to_string();
1986 if(primary_keys.count(key) == 0) {
1987 primary_keys.emplace(key);
1988 unsigned long long rows_inserted =
user_handler_->db_insert_game_content_info(
uuid_,
g.db_id(), content->attr(
"type").to_string(), content->attr(
"name").to_string(), content->attr(
"id").to_string(), addon->attr(
"id").to_string(), addon->attr(
"version").to_string());
1989 if(rows_inserted == 0) {
1990 WRN_SERVER <<
"Did not insert content row for [addon] data with uuid '" <<
uuid_ <<
"', game ID '" <<
g.db_id() <<
"', type '" << content->attr(
"type").to_string() <<
"', and content ID '" << content->attr(
"id").to_string() <<
"'";
1995 if(m.
children(
"addon").size() == 0) {
1996 WRN_SERVER <<
"Game content info missing for game with uuid '" <<
uuid_ <<
"', game ID '" <<
g.db_id() <<
"', named '" <<
g.name() <<
"'";
1999 user_handler_->db_insert_game_info(
uuid_,
g.db_id(),
server_id_,
g.name(),
g.is_reload(), m[
"observer"].to_bool(), !m[
"private_replay"].to_bool(),
g.has_password());
2002 for(
unsigned side_index = 0; side_index < sides.size(); ++side_index) {
2005 std::string version;
2024 std::vector<std::string> leaders;
2026 if(side.
attr(
"type") !=
"") {
2031 if(
unit->attr(
"canrecruit") ==
"yes") {
2032 leaders.emplace_back(
unit->attr(
"type").to_string());
2036 for(
const auto leader : side.
children(
"leader")) {
2037 leaders.emplace_back(leader->attr(
"type").to_string());
2040 user_handler_->db_insert_game_player_info(
uuid_,
g.db_id(), side[
"player_id"].to_string(), side[
"side"].to_int(), side[
"is_host"].to_bool(), side[
"faction"].to_string(), version, source, side[
"current_player"].to_string(),
utils::join(leaders));
2047 }
else if(
data.child(
"leave_game")) {
2048 if(
g.remove_player(
p)) {
2051 bool has_diff =
false;
2058 if(
auto gStrong = g_ptr.lock()) {
2059 gStrong->describe_slots();
2080 update.set_attr_dup(
"action",
"update");
2089 if(!
g.is_owner(
p)) {
2093 g.level().root().apply_diff(*scenario_diff);
2097 g.update_side_data();
2106 }
else if(
data.child(
"change_faction")) {
2111 g.transfer_side_control(
p, *change);
2117 }
else if(
data.child(
"muteall")) {
2118 if(!
g.is_owner(
p)) {
2119 g.send_server_message(
"You cannot mute: not the game host.",
p);
2123 g.mute_all_observers();
2127 g.mute_observer(*mute,
p);
2131 g.unmute_observer(*unmute,
p);
2134 }
else if(
data.child(
"kick") ||
data.child(
"ban")) {
2135 bool ban = (
data.child(
"ban") !=
nullptr);
2137 ?
g.ban_user(*
data.child(
"ban"),
p)
2138 :
g.kick_member(*
data.child(
"kick"),
p)};
2159 g.unban_user(*unban,
p);
2163 if(!
g.is_player(
p)) {
2167 if((*
info)[
"type"] ==
"termination") {
2168 g.set_termination_reason((*
info)[
"condition"].to_string());
2169 if((*
info)[
"condition"].to_string() ==
"out of sync") {
2170 g.send_and_record_server_message(
player.
name() +
" reports out of sync errors.");
2178 }
else if(
data.child(
"turn")) {
2186 }
else if(
data.child(
"whiteboard")) {
2187 g.process_whiteboard(
data,
p);
2189 }
else if(
data.child(
"change_turns_wml")) {
2190 g.process_change_turns_wml(
data,
p);
2194 g.handle_choice(*sch,
p);
2196 }
else if(
data.child(
"message")) {
2197 g.process_message(
data,
p);
2199 }
else if(
data.child(
"stop_updates")) {
2204 data.child(
"error") ||
2205 data.child(
"side_secured") ||
2206 data.root().has_attr(
"failed") ||
2207 data.root().has_attr(
"side")
2213 <<
" in game: \"" <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
")\n"
2221 msg.set_attr(
"sender",
"server");
2222 msg.set_attr_esc(
"message", message);
2223 msg.set_attr_dup(
"type",
type.c_str());
2230 utils::visit([](
auto&& socket) {
2232 socket->async_shutdown([socket](...) {});
2233 const char buffer[] =
"";
2234 async_write(*socket, boost::asio::buffer(buffer), [socket](...) { socket->lowest_layer().close(); });
2236 socket->lowest_layer().shutdown(boost::asio::ip::tcp::socket::shutdown_receive);
2243 std::string ip = iter->client_ip();
2245 const std::shared_ptr<game>
g = iter->get_game();
2246 bool game_ended =
false;
2248 game_ended =
g->remove_player(iter,
true,
false);
2252 const std::size_t
index =
2253 std::distance(users.begin(),
std::find(users.begin(), users.end(), iter->info().config_address()));
2263 LOG_SERVER << ip <<
"\t" << iter->info().name() <<
"\thas logged off";
2267 user_handler_->db_update_logout(iter->info().get_login_id());
2273 i->log_off = std::chrono::system_clock::now();
2278 if(!queue.players_in_queue.empty()) {
2279 queue.players_in_queue.erase(
std::remove(queue.players_in_queue.begin(), queue.players_in_queue.end(), iter->info().name()));
2341 if(issuer_name ==
"*socket*" && !query.empty() && query.at(0) ==
'+') {
2345 auto issuer_end =
std::find(query.begin(), query.end(),
':');
2347 std::string issuer(query.begin() + 1, issuer_end);
2348 if(!issuer.empty()) {
2349 issuer_name =
"+" + issuer +
"+";
2350 query = std::string(issuer_end + 1, query.end());
2355 const auto i =
std::find(query.begin(), query.end(),
' ');
2358 const std::string command =
utf8::lowercase(std::string(query.begin(),
i));
2360 std::string parameters = (
i == query.end() ?
"" : std::string(
i + 1, query.end()));
2363 std::ostringstream out;
2367 out <<
"Command '" << command <<
"' is not recognized.\n" <<
help_msg;
2369 const cmd_handler& handler = handler_itor->second;
2371 handler(issuer_name, query, parameters, &out);
2372 }
catch(
const std::bad_function_call& ex) {
2373 ERR_SERVER <<
"While handling a command '" << command
2374 <<
"', caught a std::bad_function_call exception.";
2376 out <<
"An internal server error occurred (std::bad_function_call) while executing '" << command
2384 std::string
msg =
"While handling a command, caught an invalid utf8 exception: ";
2387 return (
msg +
'\n');
2393 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2395 assert(out !=
nullptr);
2402 if(parameters ==
"now") {
2414 "msg The server is shutting down. You may finish your games but can't start new ones. Once all "
2415 "games have ended the server will exit.",
2419 *out <<
"Server is doing graceful shut down.";
2424 const std::string& ,
2426 std::ostringstream* out)
2428 assert(out !=
nullptr);
2436 *out <<
"No restart_command configured! Not restarting.";
2447 "msg The server has been restarted. You may finish current games but can't start new ones and "
2448 "new players can't join this (old) server instance. (So if a player of your game disconnects "
2449 "you have to save, reconnect and reload the game on the new server instance. It is actually "
2450 "recommended to do that right away.)",
2454 *out <<
"New server started.";
2459 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2461 assert(out !=
nullptr);
2463 if(parameters.empty()) {
2466 }
else if(issuer_name !=
"*socket*") {
2473 *out <<
"Sampling turned off.";
2480 const std::string& ,
2482 std::ostringstream* out)
2484 assert(out !=
nullptr);
2489 const std::string& ,
2491 std::ostringstream* out)
2493 assert(out !=
nullptr);
2499 const std::string& ,
2501 std::ostringstream* out)
2503 assert(out !=
nullptr);
2508 const std::string& ,
2510 std::ostringstream* out)
2512 assert(out !=
nullptr);
2517 const std::string& ,
2518 std::string& parameters,
2519 std::ostringstream* out)
2521 assert(out !=
nullptr);
2522 if(parameters.empty()) {
2529 }
catch(
const std::invalid_argument&) {
2530 *out <<
"The number of die sides must be a number!";
2532 }
catch(
const std::out_of_range&) {
2533 *out <<
"The number of sides is too big for the die!";
2538 *out <<
"The die cannot have less than 1 side!";
2541 std::uniform_int_distribution<int> dice_distro(1, N);
2542 std::string value = std::to_string(dice_distro(
die_));
2544 *out <<
"You rolled a die [1 - " + parameters +
"] and got a " + value +
".";
2551 auto g_ptr = player_ptr->get_game();
2553 g_ptr->send_server_message_to_all(issuer_name +
" rolled a die [1 - " + parameters +
"] and got a " + value +
".",
player_connections_.project<0>(player_ptr));
2555 *out <<
" (The result is shown to others only in a game.)";
2560 const std::string& ,
2562 std::ostringstream* out)
2564 assert(out !=
nullptr);
2569 const std::string& ,
2571 std::ostringstream* out)
2573 assert(out !=
nullptr);
2578 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2580 assert(out !=
nullptr);
2582 if(parameters.empty()) {
2583 *out <<
"You must type a message.";
2587 const std::string& sender = issuer_name;
2588 const std::string& message = parameters;
2590 << (message.find(
"/me ") == 0 ? std::string(message.begin() + 3, message.end()) +
">" :
"> " + message);
2594 msg.set_attr_dup(
"sender", (
"admin message from " + sender).c_str());
2595 msg.set_attr_dup(
"message", message.c_str());
2605 bool is_admin =
false;
2615 *out <<
"Your report has been logged and sent to the server administrators. Thanks!";
2619 *out <<
"Your report has been logged and sent to " <<
n <<
" online administrators. Thanks!";
2623 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2625 assert(out !=
nullptr);
2627 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2628 if(first_space == parameters.end()) {
2629 *out <<
"You must name a receiver.";
2633 const std::string& sender = issuer_name;
2634 const std::string receiver(parameters.begin(), first_space);
2636 std::string message(first_space + 1, parameters.end());
2639 if(message.empty()) {
2640 *out <<
"You must type a message.";
2648 msg.set_attr_dup(
"sender", (
"server message from " + sender).c_str());
2649 msg.set_attr_dup(
"message", message.c_str());
2652 if(receiver !=
player.info().
name().c_str()) {
2657 *out <<
"Message to " << receiver <<
" successfully sent.";
2661 *out <<
"No such nick: " << receiver;
2665 const std::string& ,
2666 std::string& parameters,
2667 std::ostringstream* out)
2669 assert(out !=
nullptr);
2671 if(parameters.empty()) {
2672 *out <<
"You must type a message.";
2679 << (parameters.find(
"/me ") == 0
2680 ? std::string(parameters.begin() + 3, parameters.end()) +
">"
2681 :
"> " + parameters);
2683 *out <<
"message '" << parameters <<
"' relayed to players";
2687 const std::string& ,
2688 std::string& parameters,
2689 std::ostringstream* out)
2691 assert(out !=
nullptr);
2693 if(parameters.empty()) {
2694 *out <<
"You must type a message.";
2700 << (parameters.find(
"/me ") == 0
2701 ? std::string(parameters.begin() + 3, parameters.end()) +
">"
2702 :
"> " + parameters);
2704 *out <<
"message '" << parameters <<
"' relayed to players";
2708 const std::string& ,
const std::string& , std::string& parameters, std::ostringstream* out)
2710 assert(out !=
nullptr);
2712 if(parameters.empty()) {
2719 *out <<
"Player " << parameters <<
" is using wesnoth " <<
player.info().
version();
2724 *out <<
"Player '" << parameters <<
"' not found.";
2728 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2730 assert(out !=
nullptr);
2732 *out <<
"STATUS REPORT for '" << parameters <<
"'";
2733 bool found_something =
false;
2739 parameters =
player.client_ip();
2740 found_something =
true;
2745 if(!found_something) {
2753 const bool match_ip = ((std::count(parameters.begin(), parameters.end(),
'.') >= 1) || (std::count(parameters.begin(), parameters.end(),
':') >= 1));
2755 if(parameters.empty() || parameters ==
"*" ||
2759 found_something =
true;
2764 if(!found_something) {
2765 *out <<
"\nNo match found. You may want to check with 'searchlog'.";
2770 const std::string& ,
2772 std::ostringstream* out)
2774 assert(out !=
nullptr);
2775 *out <<
"CLONES STATUS REPORT";
2777 std::set<std::string> clones;
2780 if(clones.find(it->client_ip()) != clones.end()) {
2786 if(it->client_ip() == clone->client_ip()) {
2789 clones.insert(it->client_ip());
2798 if(clones.empty()) {
2799 *out << std::endl <<
"No clones found.";
2804 const std::string& ,
2805 std::string& parameters,
2806 std::ostringstream* out)
2808 assert(out !=
nullptr);
2811 if(parameters.empty()) {
2816 std::string mask = parameters.substr(7);
2824 ERR_SERVER <<
"While handling bans, caught an invalid utf8 exception: " <<
e.what();
2829 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2831 assert(out !=
nullptr);
2834 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2836 if(first_space == parameters.end()) {
2841 auto second_space =
std::find(first_space + 1, parameters.end(),
' ');
2842 const std::string target(parameters.begin(), first_space);
2843 const std::string duration(first_space + 1, second_space);
2851 if(second_space == parameters.end()) {
2855 std::string reason(second_space + 1, parameters.end());
2858 if(reason.empty()) {
2859 *out <<
"You need to give a reason for the ban.";
2863 std::string dummy_group;
2867 if(std::count(target.begin(), target.end(),
'.') >= 1) {
2870 *out <<
ban_manager_.
ban(target, parsed_time, reason, issuer_name, dummy_group);
2880 const std::string ip =
player.client_ip();
2881 *out <<
ban_manager_.
ban(ip, parsed_time, reason, issuer_name, dummy_group, target);
2886 *out <<
"Nickname mask '" << target <<
"' did not match, no bans set.";
2892 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2894 assert(out !=
nullptr);
2897 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2898 if(first_space == parameters.end()) {
2903 auto second_space =
std::find(first_space + 1, parameters.end(),
' ');
2904 const std::string target(parameters.begin(), first_space);
2905 const std::string duration(first_space + 1, second_space);
2913 if(second_space == parameters.end()) {
2917 std::string reason(second_space + 1, parameters.end());
2920 if(reason.empty()) {
2921 *out <<
"You need to give a reason for the ban.";
2925 std::string dummy_group;
2926 std::vector<player_iterator> users_to_kick;
2930 if(std::count(target.begin(), target.end(),
'.') >= 1) {
2933 *out <<
ban_manager_.
ban(target, parsed_time, reason, issuer_name, dummy_group);
2937 users_to_kick.push_back(
player);
2949 const std::string ip =
player->client_ip();
2950 *out <<
ban_manager_.
ban(ip, parsed_time, reason, issuer_name, dummy_group, target);
2951 users_to_kick.push_back(
player);
2956 *out <<
"Nickname mask '" << target <<
"' did not match, no bans set.";
2960 for(
auto user : users_to_kick) {
2961 *out <<
"\nKicked " << user->info().name() <<
" (" << user->client_ip() <<
").";
2962 utils::visit([
this,reason](
auto&& socket) {
async_send_error(socket,
"You have been banned. Reason: " + reason); }, user->socket());
2968 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2970 assert(out !=
nullptr);
2973 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2974 if(first_space == parameters.end()) {
2979 auto second_space =
std::find(first_space + 1, parameters.end(),
' ');
2980 const std::string target(parameters.begin(), first_space);
2982 std::string group = std::string(first_space + 1, second_space);
2983 first_space = second_space;
2984 second_space =
std::find(first_space + 1, parameters.end(),
' ');
2986 const std::string duration(first_space + 1, second_space);
2994 if(second_space == parameters.end()) {
2998 std::string reason(second_space + 1, parameters.end());
3001 if(reason.empty()) {
3002 *out <<
"You need to give a reason for the ban.";
3008 if(std::count(target.begin(), target.end(),
'.') >= 1) {
3011 *out <<
ban_manager_.
ban(target, parsed_time, reason, issuer_name, group);
3021 const std::string ip =
player.client_ip();
3022 *out <<
ban_manager_.
ban(ip, parsed_time, reason, issuer_name, group, target);
3027 *out <<
"Nickname mask '" << target <<
"' did not match, no bans set.";
3033 const std::string& ,
3034 std::string& parameters,
3035 std::ostringstream* out)
3037 assert(out !=
nullptr);
3039 if(parameters.empty()) {
3040 *out <<
"You must enter an ipmask to unban.";
3048 const std::string& ,
3049 std::string& parameters,
3050 std::ostringstream* out)
3052 assert(out !=
nullptr);
3054 if(parameters.empty()) {
3055 *out <<
"You must enter an ipmask to ungban.";
3063 const std::string& ,
3064 std::string& parameters,
3065 std::ostringstream* out)
3067 assert(out !=
nullptr);
3069 if(parameters.empty()) {
3070 *out <<
"You must enter a mask to kick.";
3074 auto i =
std::find(parameters.begin(), parameters.end(),
' ');
3075 const std::string kick_mask = std::string(parameters.begin(),
i);
3076 const std::string kick_message = (
i == parameters.end()
3077 ?
"You have been kicked."
3078 :
"You have been kicked. Reason: " + std::string(
i + 1, parameters.end()));
3080 bool kicked =
false;
3083 const bool match_ip = (std::count(kick_mask.begin(), kick_mask.end(),
'.') >= 1);
3085 std::vector<player_iterator> users_to_kick;
3090 users_to_kick.push_back(
player);
3094 for(
const auto&
player : users_to_kick) {
3101 *out <<
"Kicked " <<
player->
name() <<
" (" <<
player->client_ip() <<
"). '"
3102 << kick_message <<
"'";
3104 utils::visit([
this, &kick_message](
auto&& socket) {
async_send_error(socket, kick_message); },
player->socket());
3109 *out <<
"No user matched '" << kick_mask <<
"'.";
3114 const std::string& ,
3115 std::string& parameters,
3116 std::ostringstream* out)
3118 assert(out !=
nullptr);
3120 if(parameters.empty()) {
3121 if(!
motd_.empty()) {
3122 *out <<
"Message of the day:\n" <<
motd_;
3125 *out <<
"No message of the day set.";
3131 *out <<
"Message of the day set to: " <<
motd_;
3135 const std::string& ,
3136 std::string& parameters,
3137 std::ostringstream* out)
3139 assert(out !=
nullptr);
3141 if(parameters.empty()) {
3142 *out <<
"You must enter a mask to search for.";
3146 *out <<
"IP/NICK LOG for '" << parameters <<
"'";
3150 const bool match_ip = (std::count(parameters.begin(), parameters.end(),
'.') >= 1);
3153 bool found_something =
false;
3156 const std::string& username =
i.nick;
3157 const std::string& ip =
i.ip;
3162 found_something =
true;
3168 *out <<
"\n'" << username <<
"' @ " << ip
3174 if(!found_something) {
3175 *out <<
"\nNo match found.";
3188 const std::string& ,
3189 std::string& parameters,
3190 std::ostringstream* out)
3192 assert(out !=
nullptr);
3195 if(parameters.empty()) {
3203 ERR_SERVER <<
"While handling dul (deny unregistered logins), caught an invalid utf8 exception: " <<
e.what();
3208 const std::string& ,
3209 std::string& parameters,
3210 std::ostringstream* out)
3212 assert(out !=
nullptr);
3214 const std::string nick = parameters.substr(0, parameters.find(
' '));
3215 const std::string reason = parameters.length() > nick.length()+1 ? parameters.substr(nick.length()+1) :
"";
3219 std::shared_ptr<game>
g =
player->get_game();
3221 *out <<
"Player '" << nick <<
"' is in game with id '" <<
g->id() <<
", " <<
g->db_id() <<
"' named '" <<
g->name() <<
"'. Ending game for reason: '" << reason <<
"'...";
3224 *out <<
"Player '" << nick <<
"' is not currently in a game.";
3227 *out <<
"Player '" << nick <<
"' is not currently logged in.";
3232 const std::string& ,
3234 std::ostringstream* out)
3236 assert(out !=
nullptr);
3243 queue.players_in_queue.clear();
3247 *out <<
"Reset all queues";
3257 std::vector<decltype(range_pair)::first_type> range_vctor;
3259 for(
auto it = range_pair.first; it != range_pair.second; ++it) {
3260 range_vctor.push_back(it);
3261 it->info().mark_available();
3267 ERR_SERVER <<
"ERROR: delete_game(): Could not find user in players_.";
3274 for(
const auto& it : range_vctor) {
3281 for(
const auto& it : range_vctor) {
3285 leave_game_doc_reason.
child(
"leave_game")->
set_attr_dup(
"reason", reason.c_str());
3297 if(
auto p_desc =
g.changed_description()) {
3309 bool keep_alive =
false;
3311 srand(
static_cast<unsigned>(std::time(
nullptr)));
3313 std::string config_file;
3322 for(
int arg = 1; arg != argc; ++arg) {
3323 const std::string val(argv[arg]);
3328 if((val ==
"--config" || val ==
"-c") && arg + 1 != argc) {
3329 config_file = argv[++arg];
3330 }
else if(val ==
"--verbose" || val ==
"-v") {
3332 }
else if(val ==
"--dump-wml" || val ==
"-w") {
3334 }
else if(val.substr(0, 6) ==
"--log-") {
3335 std::size_t
p = val.find(
'=');
3336 if(
p == std::string::npos) {
3341 std::string
s = val.substr(6,
p - 6);
3346 }
else if(
s ==
"warning") {
3348 }
else if(
s ==
"info") {
3350 }
else if(
s ==
"debug") {
3357 while(
p != std::string::npos) {
3358 std::size_t q = val.find(
',',
p + 1);
3359 s = val.substr(
p + 1, q == std::string::npos ? q : q - (
p + 1));
3368 }
else if((val ==
"--port" || val ==
"-p") && arg + 1 != argc) {
3369 port = atoi(argv[++arg]);
3370 }
else if(val ==
"--keepalive") {
3372 }
else if(val ==
"--help" || val ==
"-h") {
3373 std::cout <<
"usage: " << argv[0]
3374 <<
" [-dvwV] [-c path] [-p port]\n"
3375 <<
" -c, --config <path> Tells wesnothd where to find the config file to use.\n"
3376 <<
" -d, --daemon Runs wesnothd as a daemon.\n"
3377 <<
" -h, --help Shows this usage message.\n"
3378 <<
" --log-<level>=<domain1>,<domain2>,...\n"
3379 <<
" sets the severity level of the debug domains.\n"
3380 <<
" 'all' can be used to match any debug domain.\n"
3381 <<
" Available levels: error, warning, info, debug.\n"
3382 <<
" -p, --port <port> Binds the server to the specified port.\n"
3383 <<
" --keepalive Enable TCP keepalive.\n"
3384 <<
" -v --verbose Turns on more verbose logging.\n"
3385 <<
" -V, --version Returns the server version.\n"
3386 <<
" -w, --dump-wml Print all WML sent to clients to stdout.\n";
3388 }
else if(val ==
"--version" || val ==
"-V") {
3391 }
else if(val ==
"--daemon" || val ==
"-d") {
3393 ERR_SERVER <<
"Running as a daemon is not supported on this platform";
3396 const pid_t pid = fork();
3398 ERR_SERVER <<
"Could not fork and run as a daemon";
3400 }
else if(pid > 0) {
3401 std::cout <<
"Started wesnothd as a daemon with process id " << pid <<
"\n";
3407 }
else if(val ==
"--request_sample_frequency" && arg + 1 != argc) {
int main(int argc, char **argv)
A config object defines a single node in a WML file, with access to child nodes.
config & mandatory_child(config_key_type key, int n=0)
Returns the nth child with the given key, or throws an error if there is none.
bool has_child(config_key_type key) const
Determine whether a config has a child or not.
child_itors child_range(config_key_type key)
optional_config_impl< config > optional_child(config_key_type key, int n=0)
Equivalent to mandatory_child, but returns an empty optional if the nth child was not found.
A class to handle the non-SQL logic for connecting to the phpbb forum database.
severity get_severity() const
std::ostream & requests(std::ostream &out) const
std::ostream & games(std::ostream &out) const
void game_terminated(const std::string &reason)
Base class for implementing servers that use gzipped-WML network protocol.
void async_send_warning(const SocketPtr &socket, const std::string &msg, const char *warning_code="", const info_table &info={})
std::string hash_password(const std::string &pw, const std::string &salt, const std::string &username)
Handles hashing the password provided by the player before comparing it to the hashed password in the...
boost::asio::signal_set sighup_
boost::asio::streambuf admin_cmd_
void async_send_error(SocketPtr socket, const std::string &msg, const char *error_code="", const info_table &info={})
boost::asio::ip::tcp::acceptor acceptor_v4_
std::unique_ptr< simple_wml::document > coro_receive_doc(const SocketPtr &socket, const boost::asio::yield_context &yield)
Receive WML document from a coroutine.
boost::asio::io_context io_service_
void async_send_doc_queued(const SocketPtr &socket, simple_wml::document &doc)
High level wrapper for sending a WML document.
boost::asio::posix::stream_descriptor input_
void load_tls_config(const config &cfg)
void coro_send_doc(const SocketPtr &socket, simple_wml::document &doc, const boost::asio::yield_context &yield)
Send a WML document from within a coroutine.
boost::asio::ip::tcp::acceptor acceptor_v6_
node & set_attr_dup(const char *key, const char *value)
static std::string stats()
node * child(const char *name)
const string_span & attr(const char *key) const
void remove_child(const char *name, std::size_t index)
const child_list & children(const char *name) const
node & set_attr_int(const char *key, int value)
node * child(const char *name)
std::vector< node * > child_list
node & add_child(const char *name)
node & set_attr(const char *key, const char *value)
node & add_child_at(const char *name, std::size_t index)
void copy_into(node &n) const
node & set_attr_dup(const char *key, const char *value)
std::string to_string() const
const char * begin() const
This class represents a single unit of a specific type.
An interface class to handle nick registration To activate it put a [user_handler] section into the s...
@ BAN_EMAIL
Account email address ban.
@ BAN_USER
User account/name ban.
Thrown by operations encountering invalid UTF-8 data.
Represents version numbers.
std::string str() const
Serializes the version number into string form.
std::string ban(const std::string &ip, const utils::optional< std::chrono::system_clock::time_point > &end_time, const std::string &reason, const std::string &who_banned, const std::string &group, const std::string &nick="")
void list_bans(std::ostringstream &out, const std::string &mask="*")
void unban(std::ostringstream &os, const std::string &ip, bool immediate_write=true)
std::pair< bool, utils::optional< std::chrono::system_clock::time_point > > parse_time(const std::string &duration, std::chrono::system_clock::time_point start_time) const
Parses the given duration and adds it to *time except if the duration is '0' or 'permanent' in which ...
banned_ptr get_ban_info(const std::string &ip)
void unban_group(std::ostringstream &os, const std::string &group)
const std::string & get_ban_help() const
void list_deleted_bans(std::ostringstream &out, const std::string &mask="*") const
void load_config(const config &)
static simple_wml::node * starting_pos(simple_wml::node &data)
The non-const version.
simple_wml::node * description() const
int db_id() const
This ID is not reused between scenarios of MP campaigns.
int id() const
This ID is reused between scenarios of MP campaigns.
const std::string & termination_reason() const
Provides the reason the game was ended.
std::string get_replay_filename()
void set_game(std::shared_ptr< game > new_game)
const std::shared_ptr< game > get_game() const
const std::string & version() const
const simple_wml::node * config_address() const
void set_moderator(bool moderator)
const std::set< int > & get_queues() const
const std::string & name() const
bool is_moderator() const
const std::string & source() const
utils::optional< server_base::login_ban_info > is_ip_banned(const std::string &ip)
void update_game_in_lobby(game &g, utils::optional< player_iterator > exclude={})
void send_to_lobby(simple_wml::document &data, utils::optional< player_iterator > exclude={})
void stopgame_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::unique_ptr< user_handler > user_handler_
void handle_leave_server_queue(player_iterator p, simple_wml::node &data)
const std::string config_file_
boost::asio::steady_timer dummy_player_timer_
void handle_message(player_iterator player, simple_wml::node &message)
void searchlog_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::vector< std::string > disallowed_names_
void clones_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void ban_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void start_dummy_player_updates()
void load_config(bool reload)
Parse the server config into local variables.
std::string input_path_
server socket/fifo.
void unban_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::map< std::string, config > proxy_versions_
void handle_sighup(const boost::system::error_code &error, int signal_number)
void stats_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::chrono::seconds dummy_player_timer_interval_
void delete_game(int, const std::string &reason="")
void refresh_tournaments(const boost::system::error_code &ec)
std::string recommended_version_
void gban_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void pm_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::function< void(const std::string &, const std::string &, std::string &, std::ostringstream *)> cmd_handler
void adminmsg_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void start_tournaments_timer()
std::string replay_save_path_
void handle_query(player_iterator player, simple_wml::node &query)
void handle_player_in_game(player_iterator player, simple_wml::document &doc)
std::string restart_command
void lobbymsg_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
bool ip_exceeds_connection_limit(const std::string &ip) const
std::chrono::seconds failed_login_ban_
void handle_graceful_timeout(const boost::system::error_code &error)
void cleanup_game(game *)
void handle_whisper(player_iterator player, simple_wml::node &whisper)
bool is_login_allowed(boost::asio::yield_context yield, SocketPtr socket, const simple_wml::node *const login, const std::string &username, bool ®istered, bool &is_moderator)
void handle_new_client(socket_ptr socket)
void status_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void send_queue_update(const queue_info &queue, utils::optional< player_iterator > exclude={})
std::string announcements_
std::deque< connection_log > ip_log_
void bans_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void kick_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void dul_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void handle_join_server_queue(player_iterator p, simple_wml::node &data)
void handle_join_game(player_iterator player, simple_wml::node &join)
std::deque< login_log >::size_type failed_login_buffer_size_
void wml_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void send_server_message(SocketPtr socket, const std::string &message, const std::string &type)
void handle_player(boost::asio::yield_context yield, SocketPtr socket, player_iterator player)
player_connections player_connections_
simple_wml::document games_and_users_list_
void help_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void requests_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void dump_stats(const boost::system::error_code &ec)
void remove_player(player_iterator player)
boost::asio::steady_timer timer_
void handle_read_from_fifo(const boost::system::error_code &error, std::size_t bytes_transferred)
simple_wml::document login_response_
boost::asio::steady_timer tournaments_timer_
std::set< std::string > client_sources_
bool player_is_in_game(player_iterator player) const
void abort_lan_server_timer()
void handle_lan_server_shutdown(const boost::system::error_code &error)
bool authenticate(SocketPtr socket, const std::string &username, const std::string &password, bool name_taken, bool ®istered)
void reset_queues_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::string admin_passwd_
void motd_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
bool deny_unregistered_login_
std::vector< std::string > accepted_versions_
std::chrono::seconds lan_server_
void dummy_player_updates(const boost::system::error_code &ec)
void handle_create_game(player_iterator player, simple_wml::node &create_game)
void send_server_message_to_lobby(const std::string &message, utils::optional< player_iterator > exclude={})
void kickban_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void send_server_message_to_all(const std::string &message, utils::optional< player_iterator > exclude={})
void handle_nickserv(player_iterator player, simple_wml::node &nickserv)
std::string process_command(std::string cmd, std::string issuer_name)
Process commands from admins and users.
std::map< int, queue_info > queue_info_
void login_client(boost::asio::yield_context yield, SocketPtr socket)
void handle_ping(player_iterator player, simple_wml::node &nickserv)
std::deque< login_log > failed_logins_
std::size_t default_max_messages_
std::size_t max_ip_log_size_
void restart_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void msg_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
boost::asio::steady_timer lan_server_timer_
void shut_down_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::map< std::string, config > redirected_versions_
void metrics_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::map< std::string, cmd_handler > cmd_handlers_
void send_to_player(player_iterator player, simple_wml::document &data)
wesnothd::ban_manager ban_manager_
config read_config() const
Read the server config from file 'config_file_'.
boost::asio::steady_timer dump_stats_timer_
void handle_player_in_lobby(player_iterator player, simple_wml::document &doc)
std::vector< std::string > tor_ip_list_
void roll_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void games_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::deque< std::shared_ptr< game > > games() const
simple_wml::document version_query_response_
void version_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::size_t concurrent_connections_
void send_password_request(SocketPtr socket, const std::string &msg, const char *error_code="", bool force_confirmation=false)
void sample_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
void start_lan_server_timer()
void disconnect_player(player_iterator player)
bool allow_remote_shutdown_
void ungban_handler(const std::string &, const std::string &, std::string &, std::ostringstream *)
std::chrono::seconds default_time_period_
Definitions for the interface to Wesnoth Markup Language (WML).
Declarations for File-IO.
Interfaces for manipulating version numbers of engine, add-ons, etc.
Standard logging facilities (interface).
Define the errors the server may send during the login procedure.
#define MP_INCORRECT_PASSWORD_ERROR
#define MP_NAME_AUTH_BAN_USER_ERROR
#define MP_NAME_RESERVED_ERROR
#define MP_PASSWORD_REQUEST_FOR_LOGGED_IN_NAME
#define MP_NAME_AUTH_BAN_EMAIL_ERROR
#define MP_TOO_MANY_ATTEMPTS_ERROR
#define MP_HASHING_PASSWORD_FAILED
#define MP_SERVER_IP_BAN_ERROR
#define MP_NAME_TOO_LONG_ERROR
#define MP_NAME_AUTH_BAN_IP_ERROR
#define MP_PASSWORD_REQUEST
#define MP_NAME_INACTIVE_WARNING
#define MP_NAME_UNREGISTERED_ERROR
#define MP_INVALID_CHARS_IN_NAME_ERROR
#define MP_NAME_TAKEN_ERROR
std::string client_address(const any_socket_ptr &sock)
auto serialize_timestamp(const std::chrono::system_clock::time_point &time)
auto parse_duration(const config_attribute_value &val, const Duration &def=Duration{0})
auto format_local_timestamp(const std::chrono::system_clock::time_point &time, std::string_view format="%F %T")
constexpr auto deconstruct_duration(const std::tuple< Ts... > &, const std::chrono::duration< Rep, Period > &span)
std::string read_file(const std::string &fname)
Basic disk I/O - read file.
void set_user_data_dir(std::string newprefdir)
const version_info wesnoth_version(VERSION)
void remove()
Removes a tip.
bool exists(const image::locator &i_locator)
Returns true if the given image actually exists, without loading it.
config read(std::istream &in, abstract_validator *validator)
bool set_log_domain_severity(const std::string &name, severity severity)
std::string node_to_string(const node &n)
std::string lowercase(std::string_view s)
Returns a lowercased version of the string.
std::string & insert(std::string &str, const std::size_t pos, const std::string &insert)
Insert a UTF-8 string at the specified position.
std::size_t size(std::string_view str)
Length in characters of a UTF-8 string.
std::size_t index(std::string_view str, const std::size_t index)
Codepoint index corresponding to the nth character in a UTF-8 string.
constexpr bool decayed_is_same
Equivalent to as std::is_same_v except both types are passed through std::decay first.
void trim(std::string_view &s)
int stoi(std::string_view str)
Same interface as std::stoi and meant as a drop in replacement, except:
bool contains(const Container &container, const Value &value)
Returns true iff value is found in container.
bool wildcard_string_match(std::string_view str, std::string_view pat) noexcept
Performs pattern matching with wildcards.
void to_sql_wildcards(std::string &str, bool underscores)
Converts '*' to '' and optionally escapes '_'.
bool isvalid_username(const std::string &username)
Check if the username contains only valid characters.
std::string join(const T &v, const std::string &s=",")
Generates a new string joining container items in a list.
std::vector< std::string > split(const config_attribute_value &val)
auto * find(Container &container, const Value &value)
Convenience wrapper for using find on a container without needing to comare to end()
void truncate_message(const simple_wml::string_span &str, simple_wml::node &message)
Function to ensure a text message is within the allowed length.
static void make_add_diff(const simple_wml::node &src, const char *gamelist, const char *type, simple_wml::document &out, int index=-1)
static bool make_change_diff(const simple_wml::node &src, const char *gamelist, const char *type, const simple_wml::node *item, simple_wml::document &out)
int request_sample_frequency
const std::string help_msg
player_connections::const_iterator player_iterator
static std::string player_status(const wesnothd::player_record &player)
static bool make_delete_diff(const simple_wml::node &src, const char *gamelist, const char *type, const simple_wml::node *remove, simple_wml::document &out)
version_info secure_version
const std::string denied_msg
static void msg(const char *act, debug_info &i, const char *to="", const char *result="")
filesystem::scoped_istream preprocess_file(const std::string &fname, preproc_map *defines)
Function to use the WML preprocessor on a file.
std::shared_ptr< boost::asio::ssl::stream< socket_ptr::element_type > > tls_socket_ptr
std::string log_address(SocketPtr socket)
std::shared_ptr< boost::asio::ip::tcp::socket > socket_ptr
rect src
Non-transparent portion of the surface to compose.
The base template for associating string values with enum values.
static constexpr utils::optional< enum_type > get_enum(const std::string_view value)
Converts a string into its enum equivalent.
std::chrono::seconds duration
Ban duration (0 if permanent)
std::size_t players_required
std::vector< std::string > players_in_queue
static map_location::direction n
static map_location::direction s
#define LOG_SERVER
normal events
#define WRN_SERVER
clients send wrong/unexpected data
#define SETUP_HANDLER(name, function)
#define ERR_SERVER
fatal and directly server related errors/warnings, ie not caused by erroneous client data
static lg::log_domain log_server("server")
static lg::log_domain log_config("config")