2012-04-19 20:58:29 +02:00
|
|
|
/*
|
|
|
|
* InspIRCd -- Internet Relay Chat Daemon
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* Copyright (C) 2011 Jackmcbarn <jackmcbarn@jackmcbarn.no-ip.org>
|
|
|
|
* Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
|
|
|
|
* Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
|
|
|
|
* Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
|
|
|
|
* Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
|
|
|
|
* Copyright (C) 2006 John Brooks <john.brooks@dereferenced.net>
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* 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.
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
2007-07-16 17:30:04 +00:00
|
|
|
*/
|
|
|
|
|
2012-04-19 20:58:29 +02:00
|
|
|
|
2007-07-16 17:30:04 +00:00
|
|
|
#include "inspircd.h"
|
|
|
|
|
|
|
|
/** Handle /GLOADMODULE
|
|
|
|
*/
|
2007-10-21 21:43:48 +00:00
|
|
|
class CommandGloadmodule : public Command
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-09-13 20:32:27 +00:00
|
|
|
CommandGloadmodule(Module* Creator) : Command(Creator,"GLOADMODULE", 1)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-10-14 22:12:55 +00:00
|
|
|
flags_needed = 'o';
|
|
|
|
syntax = "<modulename> [servermask]";
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-26 19:43:54 +01:00
|
|
|
CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2008-05-05 00:18:01 +00:00
|
|
|
std::string servername = parameters.size() > 1 ? parameters[1] : "*";
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2009-10-03 01:52:59 +00:00
|
|
|
if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2008-05-05 00:18:01 +00:00
|
|
|
if (ServerInstance->Modules->Load(parameters[0].c_str()))
|
2007-08-25 11:26:44 +00:00
|
|
|
{
|
2009-04-16 15:51:05 +00:00
|
|
|
ServerInstance->SNO->WriteToSnoMask('a', "NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0].c_str(), user->nick.c_str());
|
2016-02-25 16:12:09 +01:00
|
|
|
user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "Module successfully loaded.");
|
2007-08-25 11:26:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-25 16:12:09 +01:00
|
|
|
user->WriteNumeric(ERR_CANTLOADMODULE, parameters[0], ServerInstance->Modules->LastError());
|
2007-08-25 11:26:44 +00:00
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2007-08-25 11:26:44 +00:00
|
|
|
else
|
2009-04-16 15:51:05 +00:00
|
|
|
ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL LOAD BY '%s' (not loaded here)",parameters[0].c_str(), user->nick.c_str());
|
2007-08-25 11:26:44 +00:00
|
|
|
|
|
|
|
return CMD_SUCCESS;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2009-09-03 15:53:15 +00:00
|
|
|
|
2018-07-26 19:43:54 +01:00
|
|
|
RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
|
2009-09-03 15:53:15 +00:00
|
|
|
{
|
|
|
|
return ROUTE_BROADCAST;
|
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Handle /GUNLOADMODULE
|
|
|
|
*/
|
2007-10-21 21:43:48 +00:00
|
|
|
class CommandGunloadmodule : public Command
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-09-13 20:32:27 +00:00
|
|
|
CommandGunloadmodule(Module* Creator) : Command(Creator,"GUNLOADMODULE", 1)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-10-14 22:12:55 +00:00
|
|
|
flags_needed = 'o';
|
|
|
|
syntax = "<modulename> [servermask]";
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-26 19:43:54 +01:00
|
|
|
CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-07 17:02:37 +01:00
|
|
|
if (!ServerInstance->Config->ConfValue("security")->getBool("allowcoreunload") &&
|
2014-03-06 12:24:36 +01:00
|
|
|
InspIRCd::Match(parameters[0], "core_*.so", ascii_case_insensitive_map))
|
2013-04-07 17:02:37 +01:00
|
|
|
{
|
2016-02-25 16:12:09 +01:00
|
|
|
user->WriteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "You cannot unload core commands!");
|
2013-04-07 17:02:37 +01:00
|
|
|
return CMD_FAILURE;
|
|
|
|
}
|
|
|
|
|
2008-05-05 00:18:01 +00:00
|
|
|
std::string servername = parameters.size() > 1 ? parameters[1] : "*";
|
2007-08-25 11:26:44 +00:00
|
|
|
|
2009-10-03 01:52:59 +00:00
|
|
|
if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-10-14 22:12:55 +00:00
|
|
|
Module* m = ServerInstance->Modules->Find(parameters[0]);
|
2012-11-16 23:13:12 +01:00
|
|
|
if (m)
|
2007-08-25 11:26:44 +00:00
|
|
|
{
|
2012-11-16 23:13:12 +01:00
|
|
|
if (ServerInstance->Modules->Unload(m))
|
|
|
|
{
|
|
|
|
ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0].c_str(), user->nick.c_str());
|
2017-09-05 17:54:40 +01:00
|
|
|
user->WriteRemoteNumeric(RPL_UNLOADEDMODULE, parameters[0], "Module successfully unloaded.");
|
2012-11-16 23:13:12 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-25 16:12:09 +01:00
|
|
|
user->WriteNumeric(ERR_CANTUNLOADMODULE, parameters[0], ServerInstance->Modules->LastError());
|
2012-11-16 23:13:12 +01:00
|
|
|
}
|
2007-08-25 11:26:44 +00:00
|
|
|
}
|
|
|
|
else
|
2016-02-25 16:40:50 +01:00
|
|
|
user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "No such module");
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
else
|
2009-04-16 15:51:05 +00:00
|
|
|
ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL UNLOAD BY '%s' (not unloaded here)",parameters[0].c_str(), user->nick.c_str());
|
2007-08-25 11:26:44 +00:00
|
|
|
|
2007-07-16 17:30:04 +00:00
|
|
|
return CMD_SUCCESS;
|
|
|
|
}
|
2009-09-03 15:53:15 +00:00
|
|
|
|
2018-07-26 19:43:54 +01:00
|
|
|
RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
|
2009-09-03 15:53:15 +00:00
|
|
|
{
|
|
|
|
return ROUTE_BROADCAST;
|
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Handle /GRELOADMODULE
|
|
|
|
*/
|
2007-10-21 21:43:48 +00:00
|
|
|
class CommandGreloadmodule : public Command
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-09-13 20:32:27 +00:00
|
|
|
CommandGreloadmodule(Module* Creator) : Command(Creator, "GRELOADMODULE", 1)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-09-13 20:32:27 +00:00
|
|
|
flags_needed = 'o'; syntax = "<modulename> [servermask]";
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-26 19:43:54 +01:00
|
|
|
CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2008-05-05 00:18:01 +00:00
|
|
|
std::string servername = parameters.size() > 1 ? parameters[1] : "*";
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2009-10-03 01:52:59 +00:00
|
|
|
if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-10-14 22:12:55 +00:00
|
|
|
Module* m = ServerInstance->Modules->Find(parameters[0]);
|
2010-02-16 01:07:57 +00:00
|
|
|
if (m)
|
2014-03-26 17:24:51 +01:00
|
|
|
{
|
2015-11-26 13:36:44 +01:00
|
|
|
ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY RELOADED BY '%s'", parameters[0].c_str(), user->nick.c_str());
|
|
|
|
ServerInstance->Parser.CallHandler("RELOADMODULE", parameters, user);
|
2014-03-26 17:24:51 +01:00
|
|
|
}
|
2010-02-16 01:07:57 +00:00
|
|
|
else
|
|
|
|
{
|
2016-02-25 16:12:09 +01:00
|
|
|
user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "Could not find module by that name");
|
2010-02-16 01:07:57 +00:00
|
|
|
return CMD_FAILURE;
|
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2007-08-25 11:26:44 +00:00
|
|
|
else
|
2009-04-16 15:51:05 +00:00
|
|
|
ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL RELOAD BY '%s' (not reloaded here)",parameters[0].c_str(), user->nick.c_str());
|
2007-07-16 17:30:04 +00:00
|
|
|
|
|
|
|
return CMD_SUCCESS;
|
|
|
|
}
|
2009-09-03 15:53:15 +00:00
|
|
|
|
2018-07-26 19:43:54 +01:00
|
|
|
RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
|
2009-09-03 15:53:15 +00:00
|
|
|
{
|
|
|
|
return ROUTE_BROADCAST;
|
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModuleGlobalLoad : public Module
|
|
|
|
{
|
2009-09-02 00:43:04 +00:00
|
|
|
CommandGloadmodule cmd1;
|
|
|
|
CommandGunloadmodule cmd2;
|
|
|
|
CommandGreloadmodule cmd3;
|
2008-06-11 11:35:23 +00:00
|
|
|
|
2007-07-16 17:30:04 +00:00
|
|
|
public:
|
2009-09-26 14:13:13 +00:00
|
|
|
ModuleGlobalLoad()
|
|
|
|
: cmd1(this), cmd2(this), cmd3(this)
|
2012-10-13 03:12:29 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-04-30 08:38:33 +01:00
|
|
|
Version GetVersion() CXX11_OVERRIDE
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-10-14 22:12:55 +00:00
|
|
|
return Version("Allows global loading of a module.", VF_COMMON | VF_VENDOR);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_INIT(ModuleGlobalLoad)
|