X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcoremods%2Fcore_loadmodule.cpp;h=1f999fa6e65764236d48c74c835f00072b499c44;hb=f3f2388a81b6463e1229fa5bf2b8c427440bf406;hp=69c6bbcef2dd24e86bc1b1ca0b1b4054601b9e7f;hpb=384ef31bc01e4a1a2e59d082c9066002410ba54a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/coremods/core_loadmodule.cpp b/src/coremods/core_loadmodule.cpp index 69c6bbcef..1f999fa6e 100644 --- a/src/coremods/core_loadmodule.cpp +++ b/src/coremods/core_loadmodule.cpp @@ -1,8 +1,14 @@ /* * InspIRCd -- Internet Relay Chat Daemon * + * Copyright (C) 2018 linuxdaemon + * Copyright (C) 2017-2018, 2020 Sadie Powell + * Copyright (C) 2013-2014, 2016 Attila Molnar + * Copyright (C) 2012 Robby * Copyright (C) 2009 Daniel De Graaf - * Copyright (C) 2007 Robin Burchell + * Copyright (C) 2008 Thomas Stagner + * Copyright (C) 2007 Dennis Friis + * Copyright (C) 2006, 2010 Craig Edwards * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -27,7 +33,13 @@ class CommandLoadmodule : public Command public: /** Constructor for loadmodule. */ - CommandLoadmodule ( Module* parent) : Command(parent,"LOADMODULE",1,1) { flags_needed='o'; syntax = ""; } + CommandLoadmodule(Module* parent) + : Command(parent,"LOADMODULE", 1, 1) + { + flags_needed = 'o'; + syntax = ""; + } + /** Handle command. * @param parameters The parameters to the command * @param user The user issuing the command @@ -58,10 +70,13 @@ CmdResult CommandLoadmodule::Handle(User* user, const Params& parameters) class CommandUnloadmodule : public Command { public: + bool allowcoreunload; + /** Constructor for unloadmodule. */ CommandUnloadmodule(Module* parent) - : Command(parent,"UNLOADMODULE", 1) + : Command(parent, "UNLOADMODULE", 1) + , allowcoreunload(false) { flags_needed = 'o'; syntax = ""; @@ -77,8 +92,7 @@ class CommandUnloadmodule : public Command CmdResult CommandUnloadmodule::Handle(User* user, const Params& parameters) { - if (!ServerInstance->Config->ConfValue("security")->getBool("allowcoreunload") && - InspIRCd::Match(parameters[0], "core_*.so", ascii_case_insensitive_map)) + if (!allowcoreunload && InspIRCd::Match(parameters[0], "core_*.so", ascii_case_insensitive_map)) { user->WriteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "You cannot unload core commands!"); return CMD_FAILURE; @@ -120,6 +134,12 @@ class CoreModLoadModule : public Module { return Version("Provides the LOADMODULE and UNLOADMODULE commands", VF_VENDOR|VF_CORE); } + + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE + { + ConfigTag* tag = ServerInstance->Config->ConfValue("security"); + cmdunloadmod.allowcoreunload = tag->getBool("allowcoreunload"); + } }; MODULE_INIT(CoreModLoadModule)