You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
351 lines
12 KiB
C++
351 lines
12 KiB
C++
#include <iostream>
|
|
|
|
#include <boost/filesystem/fstream.hpp>
|
|
#include <boost/iostreams/concepts.hpp>
|
|
#include <boost/iostreams/stream_buffer.hpp>
|
|
|
|
#include <components/files/configurationmanager.hpp>
|
|
#include <components/files/escape.hpp>
|
|
#include <components/settings/settings.hpp>
|
|
#include <components/version/version.hpp>
|
|
|
|
#include <components/openmw-mp/ErrorMessages.hpp>
|
|
#include <components/openmw-mp/Log.hpp>
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include <components/openmw-mp/Utils.hpp>
|
|
#include <components/openmw-mp/Version.hpp>
|
|
|
|
#include <BitStream.h>
|
|
#include <MessageIdentifiers.h>
|
|
#include <RakPeer.h>
|
|
#include <RakPeerInterface.h>
|
|
|
|
#include "Player.hpp"
|
|
#include "Networking.hpp"
|
|
#include "MasterClient.hpp"
|
|
#include "Utils.hpp"
|
|
|
|
#include <apps/openmw-mp/Script/Script.hpp>
|
|
|
|
#ifdef ENABLE_BREAKPAD
|
|
#include <handler/exception_handler.h>
|
|
#endif
|
|
|
|
using namespace std;
|
|
using namespace mwmp;
|
|
|
|
#ifdef ENABLE_BREAKPAD
|
|
google_breakpad::ExceptionHandler *pHandler = 0;
|
|
#if defined(_WIN32)
|
|
bool DumpCallback(const wchar_t* _dump_dir,const wchar_t* _minidump_id,void* context,EXCEPTION_POINTERS* exinfo,MDRawAssertionInfo* assertion,bool success)
|
|
#elif defined(__linux)
|
|
bool DumpCallback(const google_breakpad::MinidumpDescriptor &md, void *context, bool success)
|
|
#endif
|
|
{
|
|
// NO STACK USE, NO HEAP USE THERE !!!
|
|
return success;
|
|
}
|
|
|
|
void breakpad(std::string pathToDump)
|
|
{
|
|
#ifdef _WIN32
|
|
pHandler = new google_breakpad::ExceptionHandler(
|
|
L"crashdumps\\",
|
|
/*FilterCallback*/ 0,
|
|
DumpCallback,
|
|
0,
|
|
google_breakpad::ExceptionHandler::HANDLER_ALL);
|
|
#else
|
|
google_breakpad::MinidumpDescriptor md(pathToDump);
|
|
pHandler = new google_breakpad::ExceptionHandler(
|
|
md,
|
|
/*FilterCallback*/ 0,
|
|
DumpCallback,
|
|
/*context*/ 0,
|
|
true,
|
|
-1
|
|
);
|
|
#endif
|
|
}
|
|
|
|
void breakpad_close()
|
|
{
|
|
delete pHandler;
|
|
}
|
|
#else
|
|
void breakpad(std::string pathToDump){}
|
|
void breakpad_close(){}
|
|
#endif
|
|
|
|
std::string loadSettings (Settings::Manager & settings)
|
|
{
|
|
Files::ConfigurationManager mCfgMgr;
|
|
// Create the settings manager and load default settings file
|
|
const std::string localdefault = (mCfgMgr.getLocalPath() / "tes3mp-server-default.cfg").string();
|
|
const std::string globaldefault = (mCfgMgr.getGlobalPath() / "tes3mp-server-default.cfg").string();
|
|
|
|
// prefer local
|
|
if (boost::filesystem::exists(localdefault))
|
|
settings.loadDefault(localdefault);
|
|
else if (boost::filesystem::exists(globaldefault))
|
|
settings.loadDefault(globaldefault);
|
|
else
|
|
throw std::runtime_error ("No default settings file found! Make sure the file \"tes3mp-server-default.cfg\" was properly installed.");
|
|
|
|
// load user settings if they exist
|
|
const std::string settingspath = (mCfgMgr.getUserConfigPath() / "tes3mp-server.cfg").string();
|
|
if (boost::filesystem::exists(settingspath))
|
|
settings.loadUser(settingspath);
|
|
|
|
return settingspath;
|
|
}
|
|
|
|
class Tee : public boost::iostreams::sink
|
|
{
|
|
public:
|
|
Tee(std::ostream &stream, std::ostream &stream2)
|
|
: out(stream), out2(stream2)
|
|
{
|
|
}
|
|
|
|
std::streamsize write(const char *str, std::streamsize size)
|
|
{
|
|
out.write (str, size);
|
|
out.flush();
|
|
out2.write (str, size);
|
|
out2.flush();
|
|
return size;
|
|
}
|
|
|
|
private:
|
|
std::ostream &out;
|
|
std::ostream &out2;
|
|
};
|
|
|
|
boost::program_options::variables_map launchOptions(int argc, char *argv[], Files::ConfigurationManager cfgMgr)
|
|
{
|
|
namespace bpo = boost::program_options;
|
|
bpo::variables_map variables;
|
|
bpo::options_description desc;
|
|
|
|
desc.add_options()
|
|
("resources", bpo::value<Files::EscapeHashString>()->default_value("resources"), "set resources directory")
|
|
("no-logs", bpo::value<bool>()->implicit_value(true)->default_value(false),
|
|
"Do not write logs. Useful for daemonizing.");
|
|
|
|
cfgMgr.readConfiguration(variables, desc, true);
|
|
|
|
bpo::parsed_options valid_opts = bpo::command_line_parser(argc, argv).options(desc).allow_unregistered().run();
|
|
|
|
bpo::store(valid_opts, variables);
|
|
bpo::notify(variables);
|
|
|
|
return variables;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Settings::Manager mgr;
|
|
Files::ConfigurationManager cfgMgr;
|
|
|
|
breakpad(boost::filesystem::path(cfgMgr.getLogPath()).string());
|
|
|
|
loadSettings(mgr);
|
|
|
|
auto variables = launchOptions(argc, argv, cfgMgr);
|
|
|
|
auto version = Version::getOpenmwVersion(variables["resources"].as<Files::EscapeHashString>().toStdString());
|
|
|
|
int logLevel = mgr.getInt("logLevel", "General");
|
|
if (logLevel < Log::LOG_VERBOSE || logLevel > Log::LOG_FATAL)
|
|
logLevel = Log::LOG_VERBOSE;
|
|
|
|
// Some objects used to redirect cout and cerr
|
|
// Scope must be here, so this still works inside the catch block for logging exceptions
|
|
std::streambuf* cout_rdbuf = std::cout.rdbuf ();
|
|
std::streambuf* cerr_rdbuf = std::cerr.rdbuf ();
|
|
|
|
boost::iostreams::stream_buffer<Tee> coutsb;
|
|
boost::iostreams::stream_buffer<Tee> cerrsb;
|
|
|
|
std::ostream oldcout(cout_rdbuf);
|
|
std::ostream oldcerr(cerr_rdbuf);
|
|
|
|
boost::filesystem::ofstream logfile;
|
|
|
|
if (!variables["no-logs"].as<bool>())
|
|
{
|
|
// Redirect cout and cerr to tes3mp server log
|
|
|
|
logfile.open(boost::filesystem::path(
|
|
cfgMgr.getLogPath() / "/tes3mp-server-" += Log::getFilenameTimestamp() += ".log"));
|
|
|
|
coutsb.open(Tee(logfile, oldcout));
|
|
cerrsb.open(Tee(logfile, oldcerr));
|
|
|
|
std::cout.rdbuf(&coutsb);
|
|
std::cerr.rdbuf(&cerrsb);
|
|
}
|
|
|
|
LOG_INIT(logLevel);
|
|
|
|
int players = mgr.getInt("maximumPlayers", "General");
|
|
string addr = mgr.getString("localAddress", "General");
|
|
int port = mgr.getInt("port", "General");
|
|
|
|
string passw = mgr.getString("password", "General");
|
|
|
|
string plugin_home = mgr.getString("home", "Plugins");
|
|
string moddir = Utils::convertPath(plugin_home + "/data");
|
|
|
|
vector<string> plugins (Utils::split(mgr.getString("plugins", "Plugins"), ','));
|
|
|
|
Utils::printVersion("TES3MP dedicated server", TES3MP_VERSION, version.mCommitHash, TES3MP_PROTO_VERSION);
|
|
|
|
// Check for unmodified tes3mp-credits file; this makes it so people can't repackage official releases with
|
|
// their own made-up credits, though it obviously has no bearing on unofficial releases that change
|
|
// the checksum below
|
|
boost::filesystem::path folderPath(boost::filesystem::initial_path<boost::filesystem::path>());
|
|
folderPath = boost::filesystem::system_complete(boost::filesystem::path(argv[0])).remove_filename();
|
|
std::string creditsPath = folderPath.string() + "/tes3mp-credits";
|
|
|
|
unsigned int expectedChecksumInt = Utils::hexStrToInt(TES3MP_CREDITS_CHECKSUM);
|
|
bool hasValidCredits = Utils::doesFileHaveChecksum(creditsPath + ".md", expectedChecksumInt);
|
|
|
|
if (!hasValidCredits)
|
|
hasValidCredits = Utils::doesFileHaveChecksum(creditsPath + ".txt", expectedChecksumInt);
|
|
|
|
if (!hasValidCredits)
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_FATAL, "The server is shutting down");
|
|
LOG_APPEND(Log::LOG_FATAL, "- %s", TES3MP_CREDITS_ERROR);
|
|
return 1;
|
|
}
|
|
|
|
Script::SetModDir(moddir);
|
|
|
|
#ifdef ENABLE_LUA
|
|
LangLua::AddPackagePath(Utils::convertPath(plugin_home + "/scripts/?.lua" + ";"
|
|
+ plugin_home + "/lib/lua/?.lua" + ";"));
|
|
#ifdef _WIN32
|
|
LangLua::AddPackageCPath(Utils::convertPath(plugin_home + "/lib/?.dll"));
|
|
#else
|
|
LangLua::AddPackageCPath(Utils::convertPath(plugin_home + "/lib/?.so"));
|
|
#endif
|
|
|
|
#endif
|
|
|
|
int code;
|
|
|
|
RakNet::RakPeerInterface *peer = RakNet::RakPeerInterface::GetInstance();
|
|
|
|
stringstream sstr;
|
|
sstr << TES3MP_VERSION;
|
|
sstr << TES3MP_PROTO_VERSION;
|
|
sstr << version.mCommitHash;
|
|
|
|
peer->SetIncomingPassword(sstr.str().c_str(), (int) sstr.str().size());
|
|
|
|
if (RakNet::NonNumericHostString(addr.c_str()))
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_ERROR, "You cannot use non-numeric addresses for the server.");
|
|
return 1;
|
|
}
|
|
|
|
RakNet::SocketDescriptor sd((unsigned short) port, addr.c_str());
|
|
|
|
try
|
|
{
|
|
for (auto plugin : plugins)
|
|
Script::LoadScript(plugin.c_str(), plugin_home.c_str());
|
|
|
|
switch (peer->Startup((unsigned) players, &sd, 1))
|
|
{
|
|
case RakNet::CRABNET_STARTED:
|
|
break;
|
|
case RakNet::CRABNET_ALREADY_STARTED:
|
|
throw runtime_error("Already started");
|
|
case RakNet::INVALID_SOCKET_DESCRIPTORS:
|
|
throw runtime_error("Incorrect port or address");
|
|
case RakNet::INVALID_MAX_CONNECTIONS:
|
|
throw runtime_error("Max players cannot be negative or 0");
|
|
case RakNet::SOCKET_FAILED_TO_BIND:
|
|
case RakNet::SOCKET_PORT_ALREADY_IN_USE:
|
|
case RakNet::PORT_CANNOT_BE_ZERO:
|
|
throw runtime_error("Failed to bind port. Make sure a server isn't already running on that port.");
|
|
case RakNet::SOCKET_FAILED_TEST_SEND:
|
|
case RakNet::SOCKET_FAMILY_NOT_SUPPORTED:
|
|
case RakNet::FAILED_TO_CREATE_NETWORK_THREAD:
|
|
case RakNet::COULD_NOT_GENERATE_GUID:
|
|
case RakNet::STARTUP_OTHER_FAILURE:
|
|
throw runtime_error("Cannot start server");
|
|
}
|
|
|
|
peer->SetMaximumIncomingConnections((unsigned short) (players));
|
|
|
|
Networking networking(peer);
|
|
networking.setServerPassword(passw);
|
|
|
|
if (mgr.getBool("enabled", "MasterServer"))
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Sharing server query info to master enabled.");
|
|
string masterAddr = mgr.getString("address", "MasterServer");
|
|
int masterPort = mgr.getInt("port", "MasterServer");
|
|
int updateRate = mgr.getInt("rate", "MasterServer");
|
|
|
|
// Is this an attempt to connect to the official master server at the old port? If so,
|
|
// redirect it to the correct port for the currently used fork of RakNet
|
|
if (Misc::StringUtils::ciEqual(masterAddr, "master.tes3mp.com") && masterPort == 25560)
|
|
{
|
|
masterPort = 25561;
|
|
LOG_APPEND(Log::LOG_INFO, "- switching to port %i because the correct official master server for this version is on that port",
|
|
masterPort);
|
|
}
|
|
|
|
if (updateRate < 8000)
|
|
{
|
|
updateRate = 8000;
|
|
LOG_APPEND(Log::LOG_INFO, "- switching to updateRate %i because the one in the server config was too low", updateRate);
|
|
}
|
|
|
|
networking.InitQuery(masterAddr, (unsigned short) masterPort);
|
|
networking.getMasterClient()->SetMaxPlayers((unsigned) players);
|
|
networking.getMasterClient()->SetUpdateRate((unsigned) updateRate);
|
|
string hostname = mgr.getString("hostname", "General");
|
|
networking.getMasterClient()->SetHostname(hostname);
|
|
networking.getMasterClient()->SetRuleString("CommitHash", version.mCommitHash.substr(0, 10));
|
|
|
|
networking.getMasterClient()->Start();
|
|
}
|
|
|
|
networking.postInit();
|
|
|
|
code = networking.mainLoop();
|
|
|
|
networking.getMasterClient()->Stop();
|
|
}
|
|
catch (std::exception &e)
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_ERROR, e.what());
|
|
throw; //fall through
|
|
}
|
|
|
|
RakNet::RakPeerInterface::DestroyInstance(peer);
|
|
|
|
if (code == 0)
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Quitting peacefully.");
|
|
|
|
LOG_QUIT();
|
|
|
|
if (!variables["no-logs"].as<bool>())
|
|
{
|
|
// Restore cout and cerr
|
|
std::cout.rdbuf(cout_rdbuf);
|
|
std::cerr.rdbuf(cerr_rdbuf);
|
|
}
|
|
|
|
|
|
breakpad_close();
|
|
return code;
|
|
}
|