48 #include <boost/algorithm/string.hpp>
49 #include <boost/scope_exit.hpp>
68 #define ERR_SERVER LOG_STREAM(err, log_server)
71 #define WRN_SERVER LOG_STREAM(warn, log_server)
74 #define LOG_SERVER LOG_STREAM(info, log_server)
75 #define DBG_SERVER LOG_STREAM(debug, log_server)
78 #define ERR_CONFIG LOG_STREAM(err, log_config)
79 #define WRN_CONFIG LOG_STREAM(warn, log_config)
81 using namespace std::chrono_literals;
92 if(!out.
child(
"gamelist_diff")) {
105 assert(!children.empty());
108 index = children.size() - 1;
111 assert(
index <
static_cast<int>(children.size()));
118 const char* gamelist,
123 if(!out.
child(
"gamelist_diff")) {
137 if(itor == children.end()) {
141 const int index = std::distance(children.begin(), itor);
151 const char* gamelist,
156 if(!out.
child(
"gamelist_diff")) {
168 const auto itor =
std::find(children.begin(), children.end(), item);
170 if(itor == children.end()) {
177 const int index = std::distance(children.begin(), itor);
194 std::ostringstream out;
197 <<
d.count() <<
" days, "
198 <<
h.count() <<
" hours, "
199 << m.count() <<
" minutes, "
200 <<
s.count() <<
" seconds";
204 const std::string
denied_msg =
"You're not allowed to execute this command.";
206 "Available commands are: adminmsg <msg>,"
207 " ban <mask> <time> <reason>, bans [deleted] [<ipmask>], clones,"
208 " dul|deny_unregistered_login [yes|no], kick <mask> [<reason>],"
209 " k[ick]ban <mask> <time> <reason>, help, games, metrics,"
210 " [lobby]msg <message>, motd [<message>],"
211 " pm|privatemsg <nickname> <message>, requests, roll <sides>, sample, searchlog <mask>,"
212 " signout, stats, status [<mask>], stopgame <nick> [<reason>], reset_queues, unban <ipmask>\n"
213 "Specific strings (those not in between <> like the command names)"
214 " are case insensitive.";
216 server::server(
int port,
218 const std::string& config_file)
224 , user_handler_(nullptr)
225 , die_(static_cast<unsigned>(std::time(nullptr)))
230 , config_file_(config_file)
231 , cfg_(read_config())
232 , accepted_versions_()
233 , redirected_versions_()
235 , disallowed_names_()
242 , default_max_messages_(0)
243 , default_time_period_(0)
244 , concurrent_connections_(0)
245 , graceful_restart(false)
248 , max_ip_log_size_(0)
249 , deny_unregistered_login_(false)
250 , save_replays_(false)
251 , replay_save_path_()
252 , allow_remote_shutdown_(false)
255 , failed_login_limit_()
256 , failed_login_ban_()
257 , failed_login_buffer_size_()
262 , dump_stats_timer_(io_service_)
263 , tournaments_timer_(io_service_)
265 , timer_(io_service_)
266 , lan_server_timer_(io_service_)
267 , dummy_player_timer_(io_service_)
268 , dummy_player_timer_interval_(30)
285 WRN_SERVER <<
"SIGHUP caught, reloading config";
298 if(
games().empty()) {
299 process_command(
"msg All games ended. Shutting down now. Reconnect to the new server instance.",
"system");
330 if(res != 0 && errno != EEXIST) {
334 int fifo = open(
input_path_.c_str(), O_RDWR | O_NONBLOCK);
340 LOG_SERVER <<
"opened fifo at '" <<
input_path_ <<
"'. Server commands may be written to this file.";
350 std::cout << error.message() << std::endl;
356 std::getline(is, cmd);
363 if(!cmd.empty() && cmd.at(0) ==
'+') {
366 <<
"[/admin_command_response]";
378 #define SETUP_HANDLER(name, function) \
379 cmd_handlers_[name] = std::bind(function, this, \
380 std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4);
441 #warning No FIFODIR set
442 #define FIFODIR "/var/run/wesnothd"
444 const std::string fifo_path
445 = (
cfg_[
"fifo_path"].
empty() ? std::string(
FIFODIR) +
"/socket" : std::string(
cfg_[
"fifo_path"]));
466 const config&
game = queue.mandatory_child(
"game");
467 queue_info q =
queue_info(queue[
"id"].to_int(), queue[
"display_name"].str(), queue[
"players_required"].to_int(),
game);
471 std::map<int, queue_info> new_queue_info;
473 const config&
game = queue.mandatory_child(
"game");
474 queue_info q =
queue_info(queue[
"id"].to_int(), queue[
"display_name"].str(), queue[
"players_required"].to_int(),
game);
475 new_queue_info.emplace(q.
id, q);
479 for(
auto& [
id,
info] : new_queue_info) {
484 update.set_attr_dup(
"action",
"add");
485 update.set_attr_dup(
"display_name",
info.display_name.c_str());
486 update.set_attr_int(
"players_required",
info.players_required);
498 update.set_attr_dup(
"action",
"update");
499 update.set_attr_dup(
"display_name",
info.display_name.c_str());
500 update.set_attr_int(
"players_required",
info.players_required);
508 if(new_queue_info.count(
id) == 0) {
512 update.set_attr_dup(
"action",
"remove");
532 for(
const std::string& source :
utils::split(
cfg_[
"client_sources"].str())) {
537 if(
cfg_[
"disallow_names"].empty()) {
568 const std::string& versions =
cfg_[
"versions_accepted"];
569 if(versions.empty() ==
false) {
585 for(
const std::string& version :
utils::split(proxy[
"version"])) {
601 ERR_SERVER <<
"The server id must be set when database support is used";
613 if(
cfg_[
"dummy_player_count"].to_int() > 0) {
614 for(
int i = 0;
i <
cfg_[
"dummy_player_count"].to_int();
i++) {
621 dummy_user.
set_attr_dup(
"name", (
"player"+std::to_string(
i)).c_str());
625 if(
cfg_[
"dummy_player_timer_interval"].to_int() > 0) {
638 std::size_t connections = 0;
640 if(
player.client_ip() == ip) {
657 server_ban_info->get_reason(),
658 server_ban_info->get_remaining_ban_time()
674 ERR_SERVER <<
"Error waiting for dump stats timer: " << ec.message();
678 <<
"\tnumber_of_games = " <<
games().size()
692 ERR_SERVER <<
"Error waiting for dummy player timer: " << ec.message();
735 ERR_SERVER <<
"Error waiting for tournament refresh timer: " << ec.message();
746 boost::asio::spawn(
io_service_, [socket,
this](boost::asio::yield_context yield) {
login_client(std::move(yield), socket); }
747 #if BOOST_VERSION >= 108000
748 , [](
const std::exception_ptr&
e) {
if (
e) std::rethrow_exception(
e); }
755 boost::asio::spawn(
io_service_, [socket,
this](boost::asio::yield_context yield) {
login_client(std::move(yield), socket); }
756 #if BOOST_VERSION >= 108000
757 , [](
const std::exception_ptr&
e) {
if (
e) std::rethrow_exception(
e); }
762 template<
class SocketPtr>
770 std::string client_version, client_source;
773 client_version = std::string { version_str_span.
begin(), version_str_span.
end() };
776 client_source = std::string { source_str_span.
begin(), source_str_span.
end() };
784 <<
":\ttelling them to log in.";
793 <<
":\tredirecting them to " << redirect_version.second[
"host"] <<
":"
794 << redirect_version.second[
"port"];
797 for(
const auto& attr : redirect_version.second.attribute_range()) {
798 redirect.set_attr_dup(attr.first.c_str(), attr.second.str().c_str());
807 <<
":\trejecting them";
822 std::string username;
823 bool registered, is_moderator;
830 username = (*login)[
"username"].to_string();
832 if(
is_login_allowed(yield, socket, login, username, registered, is_moderator)) {
855 assert(inserted &&
"unexpected duplicate username");
858 join_lobby_response.
root().
add_child(
"join_lobby").
set_attr(
"is_moderator", is_moderator ?
"yes" :
"no");
865 queue_node.
set_attr_dup(
"display_name", queue.display_name.c_str());
866 queue_node.
set_attr_int(
"players_required", queue.players_required);
872 [
this, socket, new_player](boost::asio::yield_context yield) {
handle_player(std::move(yield), socket, new_player); }
873 #if BOOST_VERSION >= 108000
874 , [](
const std::exception_ptr&
e) {
if (
e) std::rethrow_exception(
e); }
879 << (registered ?
" to a registered account" :
"");
881 std::shared_ptr<game> last_sent;
883 auto g_ptr = record.get_game();
884 if(g_ptr != last_sent) {
886 g_ptr->send_server_message_to_all(username +
" has logged into the lobby");
906 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)
911 "The nickname '" + username +
"' contains invalid "
912 "characters. Only alpha-numeric characters, underscores and hyphens are allowed.",
919 if(username.size() > 20) {
920 async_send_error(socket,
"The nickname '" + username +
"' is too long. Nicks must be 20 characters or less.",
929 async_send_error(socket,
"The nickname '" + username +
"' is reserved and cannot be used by players",
942 if(!
authenticate(socket, username, (*login)[
"password"].to_string(), name_taken, registered))
948 "The nickname '" + username +
"' is not registered. This server disallows unregistered nicknames.",
963 std::string ban_type_desc;
964 std::string ban_reason;
965 const char* msg_numeric;
966 std::string ban_duration = std::to_string(auth_ban.
duration.count());
968 switch(auth_ban.
type) {
970 ban_type_desc =
"account";
972 ban_reason =
"a ban has been issued on your user account.";
975 ban_type_desc =
"IP address";
977 ban_reason =
"a ban has been issued on your IP address.";
980 ban_type_desc =
"email address";
982 ban_reason =
"a ban has been issued on your email address.";
985 ban_type_desc =
"<unknown ban type>";
987 ban_reason = ban_type_desc;
990 ban_reason +=
" (" + ban_duration +
")";
993 LOG_SERVER <<
log_address(socket) <<
"\t" << username <<
"\tis banned by user_handler (" << ban_type_desc
997 async_send_error(socket,
"You are banned from this server: " + ban_reason, msg_numeric, {{
"duration", ban_duration}});
1000 async_send_error(socket,
"You are banned from this server: " + ban_reason, msg_numeric);
1004 LOG_SERVER <<
log_address(socket) <<
"\t" << username <<
"\tis banned by user_handler (" << ban_type_desc
1005 <<
"), " <<
"ignoring due to moderator flag";
1012 process_command(
"kick " + username +
" autokick by registered user", username);
1015 boost::asio::post(yield);
1024 send_server_message(socket,
"You are currently banned by the forum administration.",
"alert");
1031 SocketPtr socket,
const std::string& username,
const std::string& password,
bool name_taken,
bool& registered)
1047 "The nickname '" + username +
"' is inactive. You cannot claim ownership of this "
1048 "nickname until you activate your account via email or ask an administrator to do it for you.",
1051 const std::string salt =
user_handler_->extract_salt(username);
1054 "Even though your nickname is registered on this server you "
1055 "cannot log in due to an error in the hashing algorithm. "
1056 "Logging into your forum account on https://forums.wesnoth.org "
1057 "may fix this problem.");
1060 const std::string hashed_password =
hash_password(password, salt, username);
1063 if(password.empty()) {
1068 "The nickname '" + username +
"' is registered on this server."
1069 "\n\nWARNING: There is already a client using this username, "
1070 "logging in will cause that client to be kicked!",
1080 if(hashed_password.empty()) {
1085 else if(!(
user_handler_->login(username, hashed_password))) {
1086 const auto steady_now = std::chrono::steady_clock::now();
1112 "Maximum login attempts exceeded",
"automatic",
"", username);
1117 "The password you provided for the nickname '" + username +
"' was incorrect.",
1123 <<
"Login attempt with incorrect password for nickname '" << username <<
"'.";
1137 const std::string&
msg,
1138 const char* error_code,
1139 bool force_confirmation)
1143 e.set_attr_dup(
"message",
msg.c_str());
1144 e.set_attr(
"password_request",
"yes");
1145 e.set_attr(
"force_confirmation", force_confirmation ?
"yes" :
"no");
1147 if(*error_code !=
'\0') {
1148 e.set_attr(
"error_code", error_code);
1159 BOOST_SCOPE_EXIT_ALL(
this, &
player) {
1167 if(!
motd_.empty()) {
1189 if(doc->child(
"refresh_lobby")) {
1251 int offset = request->attr(
"offset").to_int();
1256 if(request->has_attr(
"search_player") && request->attr(
"search_player").to_string() !=
"") {
1257 std::string player_name = request->attr(
"search_player").to_string();
1262 player_id = player_ptr->info().config_address()->attr(
"forum_id").to_int();
1266 std::string search_game_name = request->attr(
"search_game_name").to_string();
1267 int search_content_type = request->attr(
"search_content_type").to_int();
1268 std::string search_content = request->attr(
"search_content").to_string();
1269 LOG_SERVER <<
"Querying game history requested by player `" <<
player->info().
name() <<
"` for player id `" << player_id <<
"`."
1270 <<
"Searching for game name `" << search_game_name <<
"`, search content type `" << search_content_type <<
"`, search content `" << search_content <<
"`.";
1271 user_handler_->async_get_and_send_game_history(
io_service_, *
this,
player->socket(), player_id, offset, search_game_name, search_content_type, search_content);
1279 if((whisper[
"receiver"].empty()) || (whisper[
"message"].empty())) {
1282 "message=\"Invalid number of arguments\"\n"
1283 "sender=\"server\"\n"
1292 whisper.set_attr_dup(
"sender",
player->
name().c_str());
1309 whisper.copy_into(trunc_whisper);
1321 const std::string command(query[
"type"].to_string());
1322 std::ostringstream response;
1324 const std::string& query_help_msg =
1325 "Available commands are: adminmsg <msg>, help, games, metrics,"
1326 " motd, requests, roll <sides>, sample, stats, status, version, wml.";
1329 if(command ==
"status") {
1332 command.compare(0, 8,
"adminmsg") == 0 ||
1333 command.compare(0, 6,
"report") == 0 ||
1334 command ==
"games" ||
1335 command ==
"metrics" ||
1336 command ==
"motd" ||
1337 command.compare(0, 7,
"version") == 0 ||
1338 command ==
"requests" ||
1339 command.compare(0, 4,
"roll") == 0 ||
1340 command ==
"sample" ||
1341 command ==
"stats" ||
1347 if(command ==
"signout") {
1351 response <<
"You are no longer recognized as an administrator.";
1356 LOG_SERVER <<
"Admin Command: type: " << command <<
"\tIP: " << iter->client_ip()
1361 }
else if(command ==
"help" || command.empty()) {
1362 response << query_help_msg;
1363 }
else if(command ==
"admin" || command.compare(0, 6,
"admin ") == 0) {
1370 if(command.size() >= 6) {
1371 passwd = command.substr(6);
1375 LOG_SERVER <<
"New Admin recognized: IP: " << iter->client_ip() <<
"\tnick: " <<
player.
name();
1378 response <<
"You are now recognized as an administrator.";
1384 WRN_SERVER <<
"FAILED Admin attempt with password: '" << passwd <<
"'\tIP: " << iter->client_ip()
1386 response <<
"Error: wrong password";
1389 response <<
"Error: unrecognized query: '" << command <<
"'\n" << query_help_msg;
1404 if(nickserv.
child(
"info")) {
1406 std::string res =
user_handler_->user_info((*nickserv.
child(
"info"))[
"name"].to_string());
1410 "There was an error looking up the details of the user '"
1411 + (*nickserv.
child(
"info"))[
"name"].to_string() +
"'. "
1412 +
" The error message was: " +
e.message,
"error"
1440 if(user->info().is_message_flooding()) {
1442 "Warning: you are sending too many messages too fast. Your message has not been relayed.",
"error");
1447 message.set_attr_dup(
"sender", user->name().c_str());
1450 message.copy_into(trunc_message);
1456 LOG_SERVER << user->client_ip() <<
"\t<" << user->name()
1459 LOG_SERVER << user->client_ip() <<
"\t<" << user->name() <<
"> " <<
msg;
1469 update.set_attr_int(
"queue_id", queue.
id);
1470 update.set_attr_dup(
"action",
"update");
1483 "This server is shutting down. You aren't allowed to make new games. Please "
1484 "reconnect to the new server.",
"error");
1490 const std::string game_name = create_game[
"name"].to_string();
1491 const std::string game_password = create_game[
"password"].to_string();
1492 const std::string initial_bans = create_game[
"ignored"].to_string();
1494 int queue_id = create_game[
"queue_id"].to_int();
1497 <<
"\tcreates a new game: \"" << game_name <<
"\".";
1510 DBG_SERVER <<
"initial bans: " << initial_bans;
1511 if(initial_bans !=
"") {
1515 if(game_password.empty() ==
false) {
1516 g.set_password(game_password);
1540 assert(gamelist !=
nullptr);
1553 const std::size_t
index = std::distance(
games.begin(),
g);
1557 LOG_SERVER <<
"Could not find game (" << game_ptr->
id() <<
", " << game_ptr->
db_id() <<
") to delete in games_and_users_list_.";
1567 int game_id =
join[
"id"].to_int();
1570 const std::string& password =
join[
"password"].to_string();
1574 std::shared_ptr<game>
g;
1576 g = g_iter->get_game();
1582 <<
"\tattempted to join unknown game:\t" << game_id <<
".";
1587 }
else if(!
g->level_init()) {
1589 <<
"\tattempted to join uninitialized game:\t\"" <<
g->name() <<
"\" (" << game_id <<
").";
1598 <<
"\tReject banned player: " <<
player->info().
name()
1599 <<
"\tfrom game:\t\"" <<
g->name() <<
"\" (" << game_id <<
").";
1604 }
else if(!
g->password_matches(password)) {
1606 <<
"\tattempted to join game:\t\"" <<
g->name() <<
"\" (" << game_id <<
") with bad password";
1616 <<
"\tattempted to observe game:\t\"" <<
g->name() <<
"\" (" << game_id
1617 <<
") which doesn't allow observers.";
1621 "Attempt to observe a game that doesn't allow observers. (You probably joined the "
1622 "game shortly after it filled up.)",
"error");
1631 g->describe_slots();
1638 if(diff1 || diff2) {
1654 int queue_id =
data.attr(
"queue_id").to_int();
1657 ERR_SERVER <<
"player " <<
p->info().name() <<
" attempted to join non-existing server-side queue " <<
data.attr(
"queue_id");
1663 DBG_SERVER <<
"player " <<
p->info().name() <<
" already in server-side queue " <<
data.attr(
"queue_id");
1669 p->info().add_queue(queue.
id);
1687 game.set_attr_dup(
"scenario", scenarios[
index].c_str());
1688 game.set_attr_dup(
"era", queue.
settings[
"era"].str().c_str());
1689 game.set_attr_int(
"fog", queue.
settings[
"fog"].to_int());
1690 game.set_attr_int(
"shroud", queue.
settings[
"shroud"].to_int());
1691 game.set_attr_int(
"village_gold", queue.
settings[
"village_gold"].to_int());
1692 game.set_attr_int(
"village_support", queue.
settings[
"village_support"].to_int());
1693 game.set_attr_int(
"experience_modifier", queue.
settings[
"experience_modifier"].to_int());
1694 game.set_attr_int(
"countdown", queue.
settings[
"countdown"].to_int());
1695 game.set_attr_int(
"random_start_time", queue.
settings[
"random_start_time"].to_int());
1696 game.set_attr_int(
"shuffle_sides", queue.
settings[
"shuffle_sides"].to_int());
1702 if(
game->is_open_queue_game(queue.
id)) {
1716 int queue_id =
data.attr(
"queue_id").to_int();
1719 ERR_SERVER <<
"player " <<
p->info().name() <<
" attempted to leave non-existing server-side queue " <<
data.attr(
"queue_id");
1728 p->info().clear_queues();
1732 ERR_SERVER <<
"player " <<
p->info().name() <<
" already not in server-side queue " <<
data.attr(
"queue_id");
1742 game&
g = *(
p->get_game());
1743 std::weak_ptr<game> g_ptr{
p->get_game()};
1746 if(
data.child(
"snapshot") ||
data.child(
"scenario")) {
1747 if(!
g.is_owner(
p)) {
1757 if(!
g.level_init()) {
1759 <<
g.id() <<
", " <<
g.db_id() <<
").";
1763 assert(gamelist !=
nullptr);
1766 g.level().root().copy_into(desc);
1772 <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
") without a 'multiplayer' child.";
1774 g.set_description(&desc);
1778 "The scenario data is missing the [multiplayer] tag which contains the "
1779 "game settings. Game aborted.",
"error");
1783 g.set_description(&desc);
1787 <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
") although it's already initialized.";
1801 if(!
data[
"mp_shroud"].to_bool()) {
1806 if(!
e->attr(
"require_era").to_bool(
true)) {
1807 desc.
set_attr(
"require_era",
"no");
1811 if(
s[
"require_scenario"].to_bool(
false)) {
1812 desc.
set_attr(
"require_scenario",
"yes");
1821 desc.
child(
"modification")->
set_attr_dup(
"require_modification", m->attr(
"require_modification"));
1825 g.level().swap(
data);
1830 g.update_side_data();
1841 if(
g.q_type() == queue_type::type::server_preset) {
1842 int queue_id =
g.queue_id();
1843 int game_id =
g.id();
1850 std::size_t joined_count = 1;
1851 for(
const std::string& name :
info.players_in_queue) {
1863 for(
int queue : player_ptr->info().get_queues()) {
1871 if(joined_count ==
info.players_required) {
1885 }
else if(!
g.level_init()) {
1887 <<
" while the scenario wasn't yet initialized."
1892 if(!
g.is_owner(
p)) {
1896 if(!
g.level_init()) {
1898 <<
"\tsent [store_next_scenario] in game:\t\"" <<
g.name() <<
"\" (" <<
g.id()
1899 <<
", " <<
g.db_id() <<
") while the scenario is not yet initialized.";
1909 g.reset_last_synced_context_id();
1913 scenario->copy_into(
g.level().root());
1916 if(
g.description() ==
nullptr) {
1917 ERR_SERVER <<
p->client_ip() <<
"\tERROR: \"" <<
g.name() <<
"\" (" <<
g.id()
1918 <<
", " <<
g.db_id() <<
") is initialized but has no description_.";
1929 <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
") without a 'multiplayer' child.";
1934 "The scenario data is missing the [multiplayer] tag which contains the game "
1935 "settings. Game aborted.",
"error");
1942 desc.
set_attr_dup(
"map_data",
s[
"mp_shroud"].to_bool() ?
"" :
s[
"map_data"]);
1945 if(!
e->attr(
"require_era").to_bool(
true)) {
1946 desc.
set_attr(
"require_era",
"no");
1950 if(
s[
"require_scenario"].to_bool(
false)) {
1951 desc.
set_attr(
"require_scenario",
"yes");
1957 g.send_data(notify_next_scenario,
p);
1963 }
else if(
data.child(
"load_next_scenario")) {
1964 g.load_next_scenario(
p);
1966 }
else if(
data.child(
"start_game")) {
1967 if(!
g.is_owner(
p)) {
1972 g.perform_controller_tweaks();
1984 std::set<std::string> primary_keys;
1985 for(
const auto& addon : m.
children(
"addon")) {
1986 for(
const auto& content : addon->children(
"content")) {
1987 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();
1988 if(primary_keys.count(key) == 0) {
1989 primary_keys.emplace(key);
1990 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());
1991 if(rows_inserted == 0) {
1992 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() <<
"'";
1997 if(m.
children(
"addon").size() == 0) {
1998 WRN_SERVER <<
"Game content info missing for game with uuid '" <<
uuid_ <<
"', game ID '" <<
g.db_id() <<
"', named '" <<
g.name() <<
"'";
2001 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());
2004 for(
unsigned side_index = 0; side_index < sides.size(); ++side_index) {
2007 std::string version;
2026 std::vector<std::string> leaders;
2028 if(side.
attr(
"type") !=
"") {
2033 if(
unit->attr(
"canrecruit") ==
"yes") {
2034 leaders.emplace_back(
unit->attr(
"type").to_string());
2038 for(
const auto leader : side.
children(
"leader")) {
2039 leaders.emplace_back(leader->attr(
"type").to_string());
2042 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));
2049 }
else if(
data.child(
"leave_game")) {
2050 if(
g.remove_player(
p)) {
2053 bool has_diff =
false;
2060 if(
auto gStrong = g_ptr.lock()) {
2061 gStrong->describe_slots();
2082 update.set_attr_dup(
"action",
"update");
2091 if(!
g.is_owner(
p)) {
2095 g.level().root().apply_diff(*scenario_diff);
2099 g.update_side_data();
2108 }
else if(
data.child(
"change_faction")) {
2113 g.transfer_side_control(
p, *change);
2119 }
else if(
data.child(
"muteall")) {
2120 if(!
g.is_owner(
p)) {
2121 g.send_server_message(
"You cannot mute: not the game host.",
p);
2125 g.mute_all_observers();
2129 g.mute_observer(*mute,
p);
2133 g.unmute_observer(*unmute,
p);
2136 }
else if(
data.child(
"kick") ||
data.child(
"ban")) {
2137 bool ban = (
data.child(
"ban") !=
nullptr);
2139 ?
g.ban_user(*
data.child(
"ban"),
p)
2140 :
g.kick_member(*
data.child(
"kick"),
p)};
2161 g.unban_user(*unban,
p);
2165 if(!
g.is_player(
p)) {
2169 if((*
info)[
"type"] ==
"termination") {
2170 g.set_termination_reason((*
info)[
"condition"].to_string());
2171 if((*
info)[
"condition"].to_string() ==
"out of sync") {
2172 g.send_and_record_server_message(
player.
name() +
" reports out of sync errors.");
2180 }
else if(
data.child(
"turn")) {
2188 }
else if(
data.child(
"whiteboard")) {
2189 g.process_whiteboard(
data,
p);
2191 }
else if(
data.child(
"change_turns_wml")) {
2192 g.process_change_turns_wml(
data,
p);
2196 g.handle_choice(*sch,
p);
2198 }
else if(
data.child(
"message")) {
2199 g.process_message(
data,
p);
2201 }
else if(
data.child(
"stop_updates")) {
2206 data.child(
"error") ||
2207 data.child(
"side_secured") ||
2208 data.root().has_attr(
"failed") ||
2209 data.root().has_attr(
"side")
2215 <<
" in game: \"" <<
g.name() <<
"\" (" <<
g.id() <<
", " <<
g.db_id() <<
")\n"
2223 msg.set_attr(
"sender",
"server");
2224 msg.set_attr_esc(
"message", message);
2225 msg.set_attr_dup(
"type",
type.c_str());
2232 utils::visit([](
auto&& socket) {
2234 socket->async_shutdown([socket](...) {});
2235 const char buffer[] =
"";
2236 async_write(*socket, boost::asio::buffer(buffer), [socket](...) { socket->lowest_layer().close(); });
2238 socket->lowest_layer().shutdown(boost::asio::ip::tcp::socket::shutdown_receive);
2245 std::string ip = iter->client_ip();
2247 const std::shared_ptr<game>
g = iter->get_game();
2248 bool game_ended =
false;
2250 game_ended =
g->remove_player(iter,
true,
false);
2254 const std::size_t
index =
2255 std::distance(users.begin(),
std::find(users.begin(), users.end(), iter->info().config_address()));
2265 LOG_SERVER << ip <<
"\t" << iter->info().name() <<
"\thas logged off";
2269 user_handler_->db_update_logout(iter->info().get_login_id());
2275 i->log_off = std::chrono::system_clock::now();
2280 if(!queue.players_in_queue.empty()) {
2281 queue.players_in_queue.erase(
std::remove(queue.players_in_queue.begin(), queue.players_in_queue.end(), iter->info().name()));
2343 if(issuer_name ==
"*socket*" && !query.empty() && query.at(0) ==
'+') {
2347 auto issuer_end =
std::find(query.begin(), query.end(),
':');
2349 std::string issuer(query.begin() + 1, issuer_end);
2350 if(!issuer.empty()) {
2351 issuer_name =
"+" + issuer +
"+";
2352 query = std::string(issuer_end + 1, query.end());
2357 const auto i =
std::find(query.begin(), query.end(),
' ');
2360 const std::string command =
utf8::lowercase(std::string(query.begin(),
i));
2362 std::string parameters = (
i == query.end() ?
"" : std::string(
i + 1, query.end()));
2365 std::ostringstream out;
2369 out <<
"Command '" << command <<
"' is not recognized.\n" <<
help_msg;
2371 const cmd_handler& handler = handler_itor->second;
2373 handler(issuer_name, query, parameters, &out);
2374 }
catch(
const std::bad_function_call& ex) {
2375 ERR_SERVER <<
"While handling a command '" << command
2376 <<
"', caught a std::bad_function_call exception.";
2378 out <<
"An internal server error occurred (std::bad_function_call) while executing '" << command
2386 std::string
msg =
"While handling a command, caught an invalid utf8 exception: ";
2389 return (
msg +
'\n');
2395 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2397 assert(out !=
nullptr);
2404 if(parameters ==
"now") {
2416 "msg The server is shutting down. You may finish your games but can't start new ones. Once all "
2417 "games have ended the server will exit.",
2421 *out <<
"Server is doing graceful shut down.";
2426 const std::string& ,
2428 std::ostringstream* out)
2430 assert(out !=
nullptr);
2438 *out <<
"No restart_command configured! Not restarting.";
2449 "msg The server has been restarted. You may finish current games but can't start new ones and "
2450 "new players can't join this (old) server instance. (So if a player of your game disconnects "
2451 "you have to save, reconnect and reload the game on the new server instance. It is actually "
2452 "recommended to do that right away.)",
2456 *out <<
"New server started.";
2461 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2463 assert(out !=
nullptr);
2465 if(parameters.empty()) {
2468 }
else if(issuer_name !=
"*socket*") {
2475 *out <<
"Sampling turned off.";
2482 const std::string& ,
2484 std::ostringstream* out)
2486 assert(out !=
nullptr);
2491 const std::string& ,
2493 std::ostringstream* out)
2495 assert(out !=
nullptr);
2501 const std::string& ,
2503 std::ostringstream* out)
2505 assert(out !=
nullptr);
2510 const std::string& ,
2512 std::ostringstream* out)
2514 assert(out !=
nullptr);
2519 const std::string& ,
2520 std::string& parameters,
2521 std::ostringstream* out)
2523 assert(out !=
nullptr);
2524 if(parameters.empty()) {
2531 }
catch(
const std::invalid_argument&) {
2532 *out <<
"The number of die sides must be a number!";
2534 }
catch(
const std::out_of_range&) {
2535 *out <<
"The number of sides is too big for the die!";
2540 *out <<
"The die cannot have less than 1 side!";
2543 std::uniform_int_distribution<int> dice_distro(1, N);
2544 std::string value = std::to_string(dice_distro(
die_));
2546 *out <<
"You rolled a die [1 - " + parameters +
"] and got a " + value +
".";
2553 auto g_ptr = player_ptr->get_game();
2555 g_ptr->send_server_message_to_all(issuer_name +
" rolled a die [1 - " + parameters +
"] and got a " + value +
".",
player_connections_.project<0>(player_ptr));
2557 *out <<
" (The result is shown to others only in a game.)";
2562 const std::string& ,
2564 std::ostringstream* out)
2566 assert(out !=
nullptr);
2571 const std::string& ,
2573 std::ostringstream* out)
2575 assert(out !=
nullptr);
2580 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2582 assert(out !=
nullptr);
2584 if(parameters.empty()) {
2585 *out <<
"You must type a message.";
2589 const std::string& sender = issuer_name;
2590 const std::string& message = parameters;
2592 << (message.find(
"/me ") == 0 ? std::string(message.begin() + 3, message.end()) +
">" :
"> " + message);
2596 msg.set_attr_dup(
"sender", (
"admin message from " + sender).c_str());
2597 msg.set_attr_dup(
"message", message.c_str());
2607 bool is_admin =
false;
2617 *out <<
"Your report has been logged and sent to the server administrators. Thanks!";
2621 *out <<
"Your report has been logged and sent to " <<
n <<
" online administrators. Thanks!";
2625 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2627 assert(out !=
nullptr);
2629 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2630 if(first_space == parameters.end()) {
2631 *out <<
"You must name a receiver.";
2635 const std::string& sender = issuer_name;
2636 const std::string receiver(parameters.begin(), first_space);
2638 std::string message(first_space + 1, parameters.end());
2641 if(message.empty()) {
2642 *out <<
"You must type a message.";
2650 msg.set_attr_dup(
"sender", (
"server message from " + sender).c_str());
2651 msg.set_attr_dup(
"message", message.c_str());
2654 if(receiver !=
player.info().
name().c_str()) {
2659 *out <<
"Message to " << receiver <<
" successfully sent.";
2663 *out <<
"No such nick: " << receiver;
2667 const std::string& ,
2668 std::string& parameters,
2669 std::ostringstream* out)
2671 assert(out !=
nullptr);
2673 if(parameters.empty()) {
2674 *out <<
"You must type a message.";
2681 << (parameters.find(
"/me ") == 0
2682 ? std::string(parameters.begin() + 3, parameters.end()) +
">"
2683 :
"> " + parameters);
2685 *out <<
"message '" << parameters <<
"' relayed to players";
2689 const std::string& ,
2690 std::string& parameters,
2691 std::ostringstream* out)
2693 assert(out !=
nullptr);
2695 if(parameters.empty()) {
2696 *out <<
"You must type a message.";
2702 << (parameters.find(
"/me ") == 0
2703 ? std::string(parameters.begin() + 3, parameters.end()) +
">"
2704 :
"> " + parameters);
2706 *out <<
"message '" << parameters <<
"' relayed to players";
2710 const std::string& ,
const std::string& , std::string& parameters, std::ostringstream* out)
2712 assert(out !=
nullptr);
2714 if(parameters.empty()) {
2721 *out <<
"Player " << parameters <<
" is using wesnoth " <<
player.info().
version();
2726 *out <<
"Player '" << parameters <<
"' not found.";
2730 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2732 assert(out !=
nullptr);
2734 *out <<
"STATUS REPORT for '" << parameters <<
"'";
2735 bool found_something =
false;
2741 parameters =
player.client_ip();
2742 found_something =
true;
2747 if(!found_something) {
2755 const bool match_ip = ((std::count(parameters.begin(), parameters.end(),
'.') >= 1) || (std::count(parameters.begin(), parameters.end(),
':') >= 1));
2757 if(parameters.empty() || parameters ==
"*" ||
2761 found_something =
true;
2766 if(!found_something) {
2767 *out <<
"\nNo match found. You may want to check with 'searchlog'.";
2772 const std::string& ,
2774 std::ostringstream* out)
2776 assert(out !=
nullptr);
2777 *out <<
"CLONES STATUS REPORT";
2779 std::set<std::string> clones;
2782 if(clones.find(it->client_ip()) != clones.end()) {
2788 if(it->client_ip() == clone->client_ip()) {
2791 clones.insert(it->client_ip());
2800 if(clones.empty()) {
2801 *out << std::endl <<
"No clones found.";
2806 const std::string& ,
2807 std::string& parameters,
2808 std::ostringstream* out)
2810 assert(out !=
nullptr);
2813 if(parameters.empty()) {
2818 std::string mask = parameters.substr(7);
2826 ERR_SERVER <<
"While handling bans, caught an invalid utf8 exception: " <<
e.what();
2831 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2833 assert(out !=
nullptr);
2836 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2838 if(first_space == parameters.end()) {
2843 auto second_space =
std::find(first_space + 1, parameters.end(),
' ');
2844 const std::string target(parameters.begin(), first_space);
2845 const std::string duration(first_space + 1, second_space);
2853 if(second_space == parameters.end()) {
2857 std::string reason(second_space + 1, parameters.end());
2860 if(reason.empty()) {
2861 *out <<
"You need to give a reason for the ban.";
2865 std::string dummy_group;
2869 if(std::count(target.begin(), target.end(),
'.') >= 1) {
2872 *out <<
ban_manager_.
ban(target, parsed_time, reason, issuer_name, dummy_group);
2882 const std::string ip =
player.client_ip();
2883 *out <<
ban_manager_.
ban(ip, parsed_time, reason, issuer_name, dummy_group, target);
2888 *out <<
"Nickname mask '" << target <<
"' did not match, no bans set.";
2894 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2896 assert(out !=
nullptr);
2899 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2900 if(first_space == parameters.end()) {
2905 auto second_space =
std::find(first_space + 1, parameters.end(),
' ');
2906 const std::string target(parameters.begin(), first_space);
2907 const std::string duration(first_space + 1, second_space);
2915 if(second_space == parameters.end()) {
2919 std::string reason(second_space + 1, parameters.end());
2922 if(reason.empty()) {
2923 *out <<
"You need to give a reason for the ban.";
2927 std::string dummy_group;
2928 std::vector<player_iterator> users_to_kick;
2932 if(std::count(target.begin(), target.end(),
'.') >= 1) {
2935 *out <<
ban_manager_.
ban(target, parsed_time, reason, issuer_name, dummy_group);
2939 users_to_kick.push_back(
player);
2951 const std::string ip =
player->client_ip();
2952 *out <<
ban_manager_.
ban(ip, parsed_time, reason, issuer_name, dummy_group, target);
2953 users_to_kick.push_back(
player);
2958 *out <<
"Nickname mask '" << target <<
"' did not match, no bans set.";
2962 for(
auto user : users_to_kick) {
2963 *out <<
"\nKicked " << user->info().name() <<
" (" << user->client_ip() <<
").";
2964 utils::visit([
this,reason](
auto&& socket) {
async_send_error(socket,
"You have been banned. Reason: " + reason); }, user->socket());
2970 const std::string& issuer_name,
const std::string& , std::string& parameters, std::ostringstream* out)
2972 assert(out !=
nullptr);
2975 auto first_space =
std::find(parameters.begin(), parameters.end(),
' ');
2976 if(first_space == parameters.end()) {
2981 auto second_space =
std::find(first_space + 1, parameters.end(),
' ');
2982 const std::string target(parameters.begin(), first_space);
2984 std::string group = std::string(first_space + 1, second_space);
2985 first_space = second_space;
2986 second_space =
std::find(first_space + 1, parameters.end(),
' ');
2988 const std::string duration(first_space + 1, second_space);
2996 if(second_space == parameters.end()) {
3000 std::string reason(second_space + 1, parameters.end());
3003 if(reason.empty()) {
3004 *out <<
"You need to give a reason for the ban.";
3010 if(std::count(target.begin(), target.end(),
'.') >= 1) {
3013 *out <<
ban_manager_.
ban(target, parsed_time, reason, issuer_name, group);
3023 const std::string ip =
player.client_ip();
3024 *out <<
ban_manager_.
ban(ip, parsed_time, reason, issuer_name, group, target);
3029 *out <<
"Nickname mask '" << target <<
"' did not match, no bans set.";
3035 const std::string& ,
3036 std::string& parameters,
3037 std::ostringstream* out)
3039 assert(out !=
nullptr);
3041 if(parameters.empty()) {
3042 *out <<
"You must enter an ipmask to unban.";
3050 const std::string& ,
3051 std::string& parameters,
3052 std::ostringstream* out)
3054 assert(out !=
nullptr);
3056 if(parameters.empty()) {
3057 *out <<
"You must enter an ipmask to ungban.";
3065 const std::string& ,
3066 std::string& parameters,
3067 std::ostringstream* out)
3069 assert(out !=
nullptr);
3071 if(parameters.empty()) {
3072 *out <<
"You must enter a mask to kick.";
3076 auto i =
std::find(parameters.begin(), parameters.end(),
' ');
3077 const std::string kick_mask = std::string(parameters.begin(),
i);
3078 const std::string kick_message = (
i == parameters.end()
3079 ?
"You have been kicked."
3080 :
"You have been kicked. Reason: " + std::string(
i + 1, parameters.end()));
3082 bool kicked =
false;
3085 const bool match_ip = (std::count(kick_mask.begin(), kick_mask.end(),
'.') >= 1);
3087 std::vector<player_iterator> users_to_kick;
3092 users_to_kick.push_back(
player);
3096 for(
const auto&
player : users_to_kick) {
3103 *out <<
"Kicked " <<
player->
name() <<
" (" <<
player->client_ip() <<
"). '"
3104 << kick_message <<
"'";
3106 utils::visit([
this, &kick_message](
auto&& socket) {
async_send_error(socket, kick_message); },
player->socket());
3111 *out <<
"No user matched '" << kick_mask <<
"'.";
3116 const std::string& ,
3117 std::string& parameters,
3118 std::ostringstream* out)
3120 assert(out !=
nullptr);
3122 if(parameters.empty()) {
3123 if(!
motd_.empty()) {
3124 *out <<
"Message of the day:\n" <<
motd_;
3127 *out <<
"No message of the day set.";
3133 *out <<
"Message of the day set to: " <<
motd_;
3137 const std::string& ,
3138 std::string& parameters,
3139 std::ostringstream* out)
3141 assert(out !=
nullptr);
3143 if(parameters.empty()) {
3144 *out <<
"You must enter a mask to search for.";
3148 *out <<
"IP/NICK LOG for '" << parameters <<
"'";
3152 const bool match_ip = (std::count(parameters.begin(), parameters.end(),
'.') >= 1);
3155 bool found_something =
false;
3158 const std::string& username =
i.nick;
3159 const std::string& ip =
i.ip;
3164 found_something =
true;
3170 *out <<
"\n'" << username <<
"' @ " << ip
3176 if(!found_something) {
3177 *out <<
"\nNo match found.";
3190 const std::string& ,
3191 std::string& parameters,
3192 std::ostringstream* out)
3194 assert(out !=
nullptr);
3197 if(parameters.empty()) {
3205 ERR_SERVER <<
"While handling dul (deny unregistered logins), caught an invalid utf8 exception: " <<
e.what();
3210 const std::string& ,
3211 std::string& parameters,
3212 std::ostringstream* out)
3214 assert(out !=
nullptr);
3216 const std::string nick = parameters.substr(0, parameters.find(
' '));
3217 const std::string reason = parameters.length() > nick.length()+1 ? parameters.substr(nick.length()+1) :
"";
3221 std::shared_ptr<game>
g =
player->get_game();
3223 *out <<
"Player '" << nick <<
"' is in game with id '" <<
g->id() <<
", " <<
g->db_id() <<
"' named '" <<
g->name() <<
"'. Ending game for reason: '" << reason <<
"'...";
3226 *out <<
"Player '" << nick <<
"' is not currently in a game.";
3229 *out <<
"Player '" << nick <<
"' is not currently logged in.";
3234 const std::string& ,
3236 std::ostringstream* out)
3238 assert(out !=
nullptr);
3245 queue.players_in_queue.clear();
3249 *out <<
"Reset all queues";
3259 std::vector<decltype(range_pair)::first_type> range_vctor;
3261 for(
auto it = range_pair.first; it != range_pair.second; ++it) {
3262 range_vctor.push_back(it);
3263 it->info().mark_available();
3269 ERR_SERVER <<
"ERROR: delete_game(): Could not find user in players_.";
3276 for(
const auto& it : range_vctor) {
3283 for(
const auto& it : range_vctor) {
3287 leave_game_doc_reason.
child(
"leave_game")->
set_attr_dup(
"reason", reason.c_str());
3299 if(
auto p_desc =
g.changed_description()) {
3311 bool keep_alive =
false;
3313 srand(
static_cast<unsigned>(std::time(
nullptr)));
3315 std::string config_file;
3324 for(
int arg = 1; arg != argc; ++arg) {
3325 const std::string val(argv[arg]);
3330 if((val ==
"--config" || val ==
"-c") && arg + 1 != argc) {
3331 config_file = argv[++arg];
3332 }
else if(val ==
"--verbose" || val ==
"-v") {
3334 }
else if(val ==
"--dump-wml" || val ==
"-w") {
3336 }
else if(val.substr(0, 6) ==
"--log-") {
3337 std::size_t
p = val.find(
'=');
3338 if(
p == std::string::npos) {
3343 std::string
s = val.substr(6,
p - 6);
3348 }
else if(
s ==
"warning") {
3350 }
else if(
s ==
"info") {
3352 }
else if(
s ==
"debug") {
3359 while(
p != std::string::npos) {
3360 std::size_t q = val.find(
',',
p + 1);
3361 s = val.substr(
p + 1, q == std::string::npos ? q : q - (
p + 1));
3370 }
else if((val ==
"--port" || val ==
"-p") && arg + 1 != argc) {
3371 port = utils::from_chars<int>(argv[++arg]).value_or(0);
3372 }
else if(val ==
"--keepalive") {
3374 }
else if(val ==
"--help" || val ==
"-h") {
3375 std::cout <<
"usage: " << argv[0]
3376 <<
" [-dvwV] [-c path] [-p port]\n"
3377 <<
" -c, --config <path> Tells wesnothd where to find the config file to use.\n"
3378 <<
" -d, --daemon Runs wesnothd as a daemon.\n"
3379 <<
" -h, --help Shows this usage message.\n"
3380 <<
" --log-<level>=<domain1>,<domain2>,...\n"
3381 <<
" sets the severity level of the debug domains.\n"
3382 <<
" 'all' can be used to match any debug domain.\n"
3383 <<
" Available levels: error, warning, info, debug.\n"
3384 <<
" -p, --port <port> Binds the server to the specified port.\n"
3385 <<
" --keepalive Enable TCP keepalive.\n"
3386 <<
" -v --verbose Turns on more verbose logging.\n"
3387 <<
" -V, --version Returns the server version.\n"
3388 <<
" -w, --dump-wml Print all WML sent to clients to stdout.\n";
3390 }
else if(val ==
"--version" || val ==
"-V") {
3393 }
else if(val ==
"--daemon" || val ==
"-d") {
3395 ERR_SERVER <<
"Running as a daemon is not supported on this platform";
3398 const pid_t pid = fork();
3400 ERR_SERVER <<
"Could not fork and run as a daemon";
3402 }
else if(pid > 0) {
3403 std::cout <<
"Started wesnothd as a daemon with process id " << pid <<
"\n";
3409 }
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.
optional_config_impl< config > optional_child(std::string_view key, int n=0)
Equivalent to mandatory_child, but returns an empty optional if the nth child was not found.
child_itors child_range(std::string_view key)
bool has_child(std::string_view key) const
Determine whether a config has a child or not.
config & mandatory_child(std::string_view key, int n=0)
Returns the nth child with the given key, or throws an error if there is none.
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)
uint32_t get_next_random()
Get a new random number.
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")