2013-08-11 04:09:45 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-04-25 19:38:08 +02:00
|
|
|
#include "scripting_server.h"
|
2014-04-27 23:55:49 +02:00
|
|
|
#include "server.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "log.h"
|
2014-09-06 02:08:51 +02:00
|
|
|
#include "settings.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "cpp_api/s_internal.h"
|
2015-07-11 02:24:00 +02:00
|
|
|
#include "lua_api/l_areastore.h"
|
2018-08-05 13:13:38 +02:00
|
|
|
#include "lua_api/l_auth.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "lua_api/l_base.h"
|
|
|
|
#include "lua_api/l_craft.h"
|
|
|
|
#include "lua_api/l_env.h"
|
|
|
|
#include "lua_api/l_inventory.h"
|
|
|
|
#include "lua_api/l_item.h"
|
2017-01-31 20:49:01 +01:00
|
|
|
#include "lua_api/l_itemstackmeta.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "lua_api/l_mapgen.h"
|
2017-09-26 00:11:20 +02:00
|
|
|
#include "lua_api/l_modchannels.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "lua_api/l_nodemeta.h"
|
|
|
|
#include "lua_api/l_nodetimer.h"
|
|
|
|
#include "lua_api/l_noise.h"
|
|
|
|
#include "lua_api/l_object.h"
|
2018-04-06 10:52:29 +02:00
|
|
|
#include "lua_api/l_playermeta.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "lua_api/l_particles.h"
|
|
|
|
#include "lua_api/l_rollback.h"
|
|
|
|
#include "lua_api/l_server.h"
|
|
|
|
#include "lua_api/l_util.h"
|
|
|
|
#include "lua_api/l_vmanip.h"
|
2013-09-09 22:50:25 +02:00
|
|
|
#include "lua_api/l_settings.h"
|
2016-02-18 11:38:47 +01:00
|
|
|
#include "lua_api/l_http.h"
|
2017-02-08 00:15:55 +01:00
|
|
|
#include "lua_api/l_storage.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
extern "C" {
|
2022-05-02 20:55:04 +02:00
|
|
|
#include <lualib.h>
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 08:21:12 +01:00
|
|
|
ServerScripting::ServerScripting(Server* server):
|
2022-05-02 20:55:04 +02:00
|
|
|
ScriptApiBase(ScriptingType::Server),
|
|
|
|
asyncEngine(server)
|
2013-08-11 04:09:45 +02:00
|
|
|
{
|
2017-01-21 15:02:08 +01:00
|
|
|
setGameDef(server);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
// setEnv(env) is called by ScriptApiEnv::initializeEnvironment()
|
|
|
|
// once the environment has been created
|
|
|
|
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-09-06 02:08:51 +02:00
|
|
|
if (g_settings->getBool("secure.enable_security")) {
|
|
|
|
initializeSecurity();
|
2020-06-20 14:21:38 +02:00
|
|
|
} else {
|
|
|
|
warningstream << "\\!/ Mod security should never be disabled, as it allows any mod to "
|
|
|
|
<< "access the host machine."
|
|
|
|
<< "Mods should use minetest.request_insecure_environment() instead \\!/" << std::endl;
|
2014-09-06 02:08:51 +02:00
|
|
|
}
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
lua_getglobal(L, "core");
|
2014-04-15 19:41:07 +02:00
|
|
|
int top = lua_gettop(L);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
lua_newtable(L);
|
|
|
|
lua_setfield(L, -2, "object_refs");
|
|
|
|
|
|
|
|
lua_newtable(L);
|
|
|
|
lua_setfield(L, -2, "luaentities");
|
|
|
|
|
|
|
|
// Initialize our lua_api modules
|
|
|
|
InitializeModApi(L, top);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
2014-04-27 23:55:49 +02:00
|
|
|
// Push builtin initialization type
|
|
|
|
lua_pushstring(L, "game");
|
|
|
|
lua_setglobal(L, "INIT");
|
|
|
|
|
2014-04-15 19:41:07 +02:00
|
|
|
infostream << "SCRIPTAPI: Initialized game modules" << std::endl;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
2022-05-02 20:55:04 +02:00
|
|
|
void ServerScripting::initAsync()
|
|
|
|
{
|
|
|
|
// Save globals to transfer
|
|
|
|
{
|
|
|
|
lua_State *L = getStack();
|
|
|
|
lua_getglobal(L, "core");
|
|
|
|
luaL_checktype(L, -1, LUA_TTABLE);
|
|
|
|
lua_getfield(L, -1, "get_globals_to_transfer");
|
|
|
|
lua_call(L, 0, 1);
|
2022-05-09 18:20:10 +02:00
|
|
|
auto *data = script_pack(L, -1);
|
|
|
|
assert(!data->contains_userdata);
|
|
|
|
getServer()->m_async_globals_data.reset(data);
|
2022-05-02 20:55:04 +02:00
|
|
|
lua_pushnil(L);
|
|
|
|
lua_setfield(L, -3, "get_globals_to_transfer"); // unset function too
|
|
|
|
lua_pop(L, 2); // pop 'core', return value
|
|
|
|
}
|
|
|
|
|
|
|
|
infostream << "SCRIPTAPI: Initializing async engine" << std::endl;
|
|
|
|
asyncEngine.registerStateInitializer(InitializeAsync);
|
|
|
|
asyncEngine.registerStateInitializer(ModApiUtil::InitializeAsync);
|
|
|
|
asyncEngine.registerStateInitializer(ModApiCraft::InitializeAsync);
|
|
|
|
asyncEngine.registerStateInitializer(ModApiItemMod::InitializeAsync);
|
|
|
|
asyncEngine.registerStateInitializer(ModApiServer::InitializeAsync);
|
|
|
|
// not added: ModApiMapgen is a minefield for thread safety
|
|
|
|
// not added: ModApiHttp async api can't really work together with our jobs
|
|
|
|
// not added: ModApiStorage is probably not thread safe(?)
|
|
|
|
|
|
|
|
asyncEngine.initialize(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServerScripting::stepAsync()
|
|
|
|
{
|
|
|
|
asyncEngine.step(getStack());
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 ServerScripting::queueAsync(std::string &&serialized_func,
|
|
|
|
PackedValue *param, const std::string &mod_origin)
|
|
|
|
{
|
|
|
|
return asyncEngine.queueAsyncJob(std::move(serialized_func),
|
|
|
|
param, mod_origin);
|
|
|
|
}
|
|
|
|
|
2017-01-21 15:02:08 +01:00
|
|
|
void ServerScripting::InitializeModApi(lua_State *L, int top)
|
2013-08-11 04:09:45 +02:00
|
|
|
{
|
|
|
|
// Register reference classes (userdata)
|
|
|
|
InvRef::Register(L);
|
2017-01-31 20:49:01 +01:00
|
|
|
ItemStackMetaRef::Register(L);
|
2015-07-11 02:24:00 +02:00
|
|
|
LuaAreaStore::Register(L);
|
2013-08-11 04:09:45 +02:00
|
|
|
LuaItemStack::Register(L);
|
|
|
|
LuaPerlinNoise::Register(L);
|
|
|
|
LuaPerlinNoiseMap::Register(L);
|
|
|
|
LuaPseudoRandom::Register(L);
|
2015-03-22 05:01:46 +01:00
|
|
|
LuaPcgRandom::Register(L);
|
2016-07-23 21:11:20 +02:00
|
|
|
LuaRaycast::Register(L);
|
2015-08-06 08:57:13 +02:00
|
|
|
LuaSecureRandom::Register(L);
|
2013-08-11 04:09:45 +02:00
|
|
|
LuaVoxelManip::Register(L);
|
|
|
|
NodeMetaRef::Register(L);
|
|
|
|
NodeTimerRef::Register(L);
|
|
|
|
ObjectRef::Register(L);
|
2018-04-06 10:52:29 +02:00
|
|
|
PlayerMetaRef::Register(L);
|
2013-09-09 22:50:25 +02:00
|
|
|
LuaSettings::Register(L);
|
2017-02-08 00:15:55 +01:00
|
|
|
StorageRef::Register(L);
|
2017-09-26 00:11:20 +02:00
|
|
|
ModChannelRef::Register(L);
|
2014-12-12 20:49:19 +01:00
|
|
|
|
|
|
|
// Initialize mod api modules
|
2018-08-05 13:13:38 +02:00
|
|
|
ModApiAuth::Initialize(L, top);
|
2014-12-12 20:49:19 +01:00
|
|
|
ModApiCraft::Initialize(L, top);
|
|
|
|
ModApiEnvMod::Initialize(L, top);
|
|
|
|
ModApiInventory::Initialize(L, top);
|
|
|
|
ModApiItemMod::Initialize(L, top);
|
|
|
|
ModApiMapgen::Initialize(L, top);
|
|
|
|
ModApiParticles::Initialize(L, top);
|
|
|
|
ModApiRollback::Initialize(L, top);
|
|
|
|
ModApiServer::Initialize(L, top);
|
|
|
|
ModApiUtil::Initialize(L, top);
|
|
|
|
ModApiHttp::Initialize(L, top);
|
|
|
|
ModApiStorage::Initialize(L, top);
|
2017-09-26 00:11:20 +02:00
|
|
|
ModApiChannels::Initialize(L, top);
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
2022-05-02 20:55:04 +02:00
|
|
|
|
|
|
|
void ServerScripting::InitializeAsync(lua_State *L, int top)
|
|
|
|
{
|
|
|
|
// classes
|
|
|
|
LuaItemStack::Register(L);
|
|
|
|
LuaPerlinNoise::Register(L);
|
|
|
|
LuaPerlinNoiseMap::Register(L);
|
|
|
|
LuaPseudoRandom::Register(L);
|
|
|
|
LuaPcgRandom::Register(L);
|
|
|
|
LuaSecureRandom::Register(L);
|
|
|
|
LuaVoxelManip::Register(L);
|
|
|
|
LuaSettings::Register(L);
|
|
|
|
|
|
|
|
// globals data
|
2022-05-09 18:20:10 +02:00
|
|
|
auto *data = ModApiBase::getServer(L)->m_async_globals_data.get();
|
|
|
|
script_unpack(L, data);
|
2022-12-28 23:37:31 +01:00
|
|
|
lua_setfield(L, top, "transferred_globals");
|
2022-05-02 20:55:04 +02:00
|
|
|
}
|