2024-10-28 15:57:39 +01:00
|
|
|
// Luanti
|
|
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2017-04-25 13:38:08 -04:00
|
|
|
#include "scripting_server.h"
|
2025-05-10 20:38:44 +02:00
|
|
|
#include "lua_api/l_rotation.h"
|
|
|
|
#include "lua_api/l_matrix4.h"
|
2014-04-27 17:55:49 -04:00
|
|
|
#include "server.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "log.h"
|
2014-09-05 20:08:51 -04:00
|
|
|
#include "settings.h"
|
2024-03-03 19:51:49 +01:00
|
|
|
#include "filesys.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 19:49:01 +00: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 09:52:29 +01: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"
|
2024-05-14 22:24:05 +02:00
|
|
|
#include "lua_api/l_ipc.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 07:21:12 +00: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-05 20:08:51 -04:00
|
|
|
if (g_settings->getBool("secure.enable_security")) {
|
|
|
|
initializeSecurity();
|
2020-06-20 13:21:38 +01: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-05 20:08:51 -04:00
|
|
|
}
|
|
|
|
|
2014-04-27 21:02:48 -04:00
|
|
|
lua_getglobal(L, "core");
|
2014-04-15 13:41:07 -04: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 17:55:49 -04:00
|
|
|
// Push builtin initialization type
|
|
|
|
lua_pushstring(L, "game");
|
|
|
|
lua_setglobal(L, "INIT");
|
|
|
|
|
2014-04-15 13:41:07 -04:00
|
|
|
infostream << "SCRIPTAPI: Initialized game modules" << std::endl;
|
2013-08-11 04:09:45 +02:00
|
|
|
}
|
|
|
|
|
2024-03-03 19:51:49 +01:00
|
|
|
void ServerScripting::loadBuiltin()
|
|
|
|
{
|
|
|
|
loadMod(Server::getBuiltinLuaPath() + DIR_DELIM "init.lua", BUILTIN_MOD_NAME);
|
|
|
|
checkSetByBuiltin();
|
|
|
|
}
|
|
|
|
|
2022-12-30 15:04:46 +01:00
|
|
|
void ServerScripting::saveGlobals()
|
2022-05-02 20:55:04 +02:00
|
|
|
{
|
2022-12-30 15:04:46 +01:00
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
|
|
|
lua_getglobal(L, "core");
|
|
|
|
luaL_checktype(L, -1, LUA_TTABLE);
|
|
|
|
lua_getfield(L, -1, "get_globals_to_transfer");
|
|
|
|
lua_call(L, 0, 1);
|
|
|
|
auto *data = script_pack(L, -1);
|
|
|
|
assert(!data->contains_userdata);
|
|
|
|
getServer()->m_lua_globals_data.reset(data);
|
|
|
|
// unset the function
|
|
|
|
lua_pushnil(L);
|
|
|
|
lua_setfield(L, -3, "get_globals_to_transfer");
|
|
|
|
lua_pop(L, 2); // pop 'core', return value
|
|
|
|
}
|
2022-05-02 20:55:04 +02:00
|
|
|
|
2022-12-30 15:04:46 +01:00
|
|
|
void ServerScripting::initAsync()
|
|
|
|
{
|
2022-05-02 20:55:04 +02:00
|
|
|
infostream << "SCRIPTAPI: Initializing async engine" << std::endl;
|
|
|
|
asyncEngine.registerStateInitializer(InitializeAsync);
|
|
|
|
asyncEngine.registerStateInitializer(ModApiUtil::InitializeAsync);
|
|
|
|
asyncEngine.registerStateInitializer(ModApiCraft::InitializeAsync);
|
2023-06-17 16:07:45 +02:00
|
|
|
asyncEngine.registerStateInitializer(ModApiItem::InitializeAsync);
|
2022-05-02 20:55:04 +02:00
|
|
|
asyncEngine.registerStateInitializer(ModApiServer::InitializeAsync);
|
2024-05-14 22:24:05 +02:00
|
|
|
asyncEngine.registerStateInitializer(ModApiIPC::Initialize);
|
2022-05-02 20:55:04 +02:00
|
|
|
// 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 19:49:01 +00: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);
|
2025-04-10 14:39:40 +02:00
|
|
|
LuaValueNoise::Register(L);
|
|
|
|
LuaValueNoiseMap::Register(L);
|
2013-08-11 04:09:45 +02:00
|
|
|
LuaPseudoRandom::Register(L);
|
2015-03-22 00:01:46 -04: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);
|
2025-05-10 20:38:44 +02:00
|
|
|
LuaRotation::Register(L);
|
|
|
|
LuaMatrix4::Register(L);
|
2013-08-11 04:09:45 +02:00
|
|
|
NodeMetaRef::Register(L);
|
|
|
|
NodeTimerRef::Register(L);
|
|
|
|
ObjectRef::Register(L);
|
2018-04-06 09:52:29 +01: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 14:49:19 -05:00
|
|
|
|
|
|
|
// Initialize mod api modules
|
2018-08-05 13:13:38 +02:00
|
|
|
ModApiAuth::Initialize(L, top);
|
2014-12-12 14:49:19 -05:00
|
|
|
ModApiCraft::Initialize(L, top);
|
2023-06-17 16:07:45 +02:00
|
|
|
ModApiEnv::Initialize(L, top);
|
2014-12-12 14:49:19 -05:00
|
|
|
ModApiInventory::Initialize(L, top);
|
2023-06-17 16:07:45 +02:00
|
|
|
ModApiItem::Initialize(L, top);
|
2014-12-12 14:49:19 -05:00
|
|
|
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);
|
2024-05-14 22:24:05 +02:00
|
|
|
ModApiIPC::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
|
2023-06-17 19:52:40 +02:00
|
|
|
ItemStackMetaRef::Register(L);
|
|
|
|
LuaAreaStore::Register(L);
|
2022-05-02 20:55:04 +02:00
|
|
|
LuaItemStack::Register(L);
|
2025-04-10 14:39:40 +02:00
|
|
|
LuaValueNoise::Register(L);
|
|
|
|
LuaValueNoiseMap::Register(L);
|
2022-05-02 20:55:04 +02:00
|
|
|
LuaPseudoRandom::Register(L);
|
|
|
|
LuaPcgRandom::Register(L);
|
|
|
|
LuaSecureRandom::Register(L);
|
|
|
|
LuaVoxelManip::Register(L);
|
|
|
|
LuaSettings::Register(L);
|
2025-05-10 20:38:44 +02:00
|
|
|
LuaRotation::Register(L);
|
|
|
|
LuaMatrix4::Register(L);
|
2022-05-02 20:55:04 +02:00
|
|
|
|
2024-04-28 00:24:22 +02:00
|
|
|
// globals data
|
|
|
|
auto *data = ModApiBase::getServer(L)->m_lua_globals_data.get();
|
2022-12-30 15:04:46 +01:00
|
|
|
assert(data);
|
2022-05-09 18:20:10 +02:00
|
|
|
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
|
|
|
}
|