X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_globalload.cpp;h=71a455a34f7da7c7b62f6510210bb7b41ebc3e6d;hb=581d1d8fa0ef62e20409543570390613c78e6f5b;hp=4456a13528f281ae76b7b48c1d5630396a6ab206;hpb=5c1affaf21d2b4aa32d39262d1c5e6e0bc711c64;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp index 4456a1352..71a455a34 100644 --- a/src/modules/m_globalload.cpp +++ b/src/modules/m_globalload.cpp @@ -1,127 +1,179 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. - * This program is free but copyrighted software; see - * the file COPYING for details. + * Copyright (C) 2013, 2017-2018, 2020 Sadie Powell + * Copyright (C) 2012, 2019 Robby + * Copyright (C) 2012, 2014-2016 Attila Molnar + * Copyright (C) 2009-2010 Daniel De Graaf + * Copyright (C) 2007-2008, 2010 Craig Edwards + * Copyright (C) 2007-2008 Dennis Friis + * Copyright (C) 2007, 2009 Robin Burchell + * Copyright (C) 2007 John Brooks * - * --------------------------------------------------- - */ - -using namespace std; - -/* - * DEVOICE module for InspIRCd - * Syntax: /DEVOICE <#chan> + * 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 + * License as published by the Free Software Foundation, version 2. + * + * 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 General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ -/* $ModDesc: Provides voiced users with the ability to devoice themselves. */ -#include -#include "users.h" -#include "channels.h" -#include "modules.h" #include "inspircd.h" -#include "helperfuncs.h" -extern InspIRCd *ServerInstance; - -class cmd_gloadmodule : public command_t +/** Handle /GLOADMODULE + */ +class CommandGloadmodule : public Command { public: - cmd_gloadmodule () : command_t("GLOADMODULE", 'o', 1) + CommandGloadmodule(Module* Creator) : Command(Creator,"GLOADMODULE", 1) + { + flags_needed = 'o'; + syntax = " []"; + } + + CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE { - this->source = "m_globalload.so"; + std::string servername = parameters.size() > 1 ? parameters[1] : "*"; + + if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername)) + { + if (ServerInstance->Modules->Load(parameters[0].c_str())) + { + ServerInstance->SNO->WriteToSnoMask('a', "NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0].c_str(), user->nick.c_str()); + user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "Module successfully loaded."); + } + else + { + user->WriteNumeric(ERR_CANTLOADMODULE, parameters[0], ServerInstance->Modules->LastError()); + } + } + else + ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL LOAD BY '%s' (not loaded here)",parameters[0].c_str(), user->nick.c_str()); + + return CMD_SUCCESS; } - void Handle (char **parameters, int pcnt, userrec *user) + RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE { - if (ServerInstance->LoadModule(parameters[0])) - { - WriteOpers("*** NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0],user->nick); - WriteServ(user->fd,"975 %s %s :Module successfully loaded.",user->nick, parameters[0]); - } - else - { - WriteServ(user->fd,"974 %s %s :Failed to load module: %s",user->nick, parameters[0],ServerInstance->ModuleError()); - } + return ROUTE_BROADCAST; } }; -class cmd_gunloadmodule : public command_t +/** Handle /GUNLOADMODULE + */ +class CommandGunloadmodule : public Command { public: - cmd_gunloadmodule () : command_t("GUNLOADMODULE", 'o', 1) + CommandGunloadmodule(Module* Creator) : Command(Creator,"GUNLOADMODULE", 1) { - this->source = "m_globalload.so"; + flags_needed = 'o'; + syntax = " []"; } - void Handle (char **parameters, int pcnt, userrec *user) + CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE { - if (ServerInstance->UnloadModule(parameters[0])) - { - WriteOpers("*** MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0],user->nick); - WriteServ(user->fd,"973 %s %s :Module successfully unloaded.",user->nick, parameters[0]); - } - else + if (!ServerInstance->Config->ConfValue("security")->getBool("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; + } + + std::string servername = parameters.size() > 1 ? parameters[1] : "*"; + + if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername)) { - WriteServ(user->fd,"972 %s %s :Failed to unload module: %s",user->nick, parameters[0],ServerInstance->ModuleError()); + Module* m = ServerInstance->Modules->Find(parameters[0]); + if (m) + { + if (ServerInstance->Modules->Unload(m)) + { + ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0].c_str(), user->nick.c_str()); + user->WriteRemoteNumeric(RPL_UNLOADEDMODULE, parameters[0], "Module successfully unloaded."); + } + else + { + user->WriteNumeric(ERR_CANTUNLOADMODULE, parameters[0], ServerInstance->Modules->LastError()); + } + } + else + user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "No such module"); } + else + ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL UNLOAD BY '%s' (not unloaded here)",parameters[0].c_str(), user->nick.c_str()); + + return CMD_SUCCESS; + } + + RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE + { + return ROUTE_BROADCAST; } }; -class ModuleGlobalLoad : public Module +/** Handle /GRELOADMODULE + */ +class CommandGreloadmodule : public Command { - cmd_gloadmodule *mycommand; - cmd_gunloadmodule *mycommand2; - Server *Srv; public: - ModuleGlobalLoad(Server* Me) : Module::Module(Me) + CommandGreloadmodule(Module* Creator) : Command(Creator, "GRELOADMODULE", 1) { - Srv = Me; - mycommand = new cmd_gloadmodule(); - mycommand2 = new cmd_gunloadmodule(); - Srv->AddCommand(mycommand); - Srv->AddCommand(mycommand2); + flags_needed = 'o'; + syntax = " []"; } - - virtual ~ModuleGlobalLoad() + + CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE { + std::string servername = parameters.size() > 1 ? parameters[1] : "*"; + + if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername)) + { + Module* m = ServerInstance->Modules->Find(parameters[0]); + if (m) + { + ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY RELOADED BY '%s'", parameters[0].c_str(), user->nick.c_str()); + ServerInstance->Parser.CallHandler("RELOADMODULE", parameters, user); + } + else + { + user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "Could not find module by that name"); + return CMD_FAILURE; + } + } + else + ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL RELOAD BY '%s' (not reloaded here)",parameters[0].c_str(), user->nick.c_str()); + + return CMD_SUCCESS; } - - virtual Version GetVersion() + + RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE { - return Version(1, 0, 0, 0, VF_VENDOR); + return ROUTE_BROADCAST; } }; - -class ModuleGlobalLoadFactory : public ModuleFactory +class ModuleGlobalLoad : public Module { + CommandGloadmodule cmd1; + CommandGunloadmodule cmd2; + CommandGreloadmodule cmd3; + public: - ModuleGlobalLoadFactory() + ModuleGlobalLoad() + : cmd1(this), cmd2(this), cmd3(this) { } - - ~ModuleGlobalLoadFactory() - { - } - - virtual Module * CreateModule(Server* Me) + + Version GetVersion() CXX11_OVERRIDE { - return new ModuleGlobalLoad(Me); + return Version("Adds the /GLOADMODULE, /GRELOADMODULE, and /GUNLOADMODULE commands which allows server operators to load, reload, and unload modules on remote servers.", VF_COMMON | VF_VENDOR); } - }; - -extern "C" void * init_module( void ) -{ - return new ModuleGlobalLoadFactory; -} +MODULE_INIT(ModuleGlobalLoad)