2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-02-11 22:28:45 +03:00
metamod-r/metamod/src/reg_support.cpp

188 lines
6.4 KiB
C++
Raw Normal View History

2016-07-26 07:22:47 +07:00
#include "precompiled.h"
2016-07-04 12:07:29 +06:00
// "Register" support.
//
// This code is necessary to support the different "register" engine
// functions that can be called by plugins, so that the plugins can be
// safely unloaded without incurring segmentation faults.
//
// The problem was that, when a plugin called, say:
// REG_SVR_COMMAND("stub_version", svr_stub_version);
//
// the engine stored the address to the "stub_version" string, as well as,
// of course, the svr_stub_version() function pointer. If the plugin was
// unloaded, and dlclose()'d, the memory locations for both the string and
// function became invalid and unavailable. If the engine tried to
// strcmp() against the string, or tried to call the function pointer, it
// generated a segfault and killed the process.
//
// The solution used here is to create strings and functions allocated
// locally, in metamod.dll, which won't become unavailable or invalid due
// to a dlclose(). These local copies are passed to the engine instead of
// those allocated in the plugin DLLs. Thus, when a plugin is later
// unloaded and dlclose'd, the engine can still reference the memory
// locations of registered strings and functions, without segfaulting.
//
// Now, what happens with a registered string or function after a plugin is
// unloaded not quite as nice as I'd like.
//
// Console commands will print a message along the lines of:
// [metamod: command '%s' unavailable; plugin unloaded]
//
// Cvars though, have their value unaffected. This can be convenient when
// reloading a plugin, as the cvars keep their old values. However it can
// also be confusing, as there is no indication when viewing/setting cvars
// from the console that they no longer have an effect.
//
// Also note, the console commands for listing registered cmds and cvars
2016-07-26 07:22:47 +07:00
// will try to show the name of the associated plugin.
2016-07-04 12:07:29 +06:00
// Generic command handler, passed to the engine for any AddServerCommand
// calls made by the plugin. It finds the appropriate plugin function
// pointer to call based on CMD_ARGV(0).
2016-07-26 07:22:47 +07:00
void meta_command_handler()
{
2016-07-04 12:07:29 +06:00
MRegCmd *icmd;
const char *cmd;
META_DEBUG(5, ("called: meta_command_handler; arg0=%s args='%s'", CMD_ARGV(0), CMD_ARGS()));
2016-07-26 07:22:47 +07:00
cmd = CMD_ARGV(0);
if (!cmd)
{
2016-07-04 12:07:29 +06:00
META_WARNING("Null command name in meta_command_handler() ??");
return;
}
2016-07-26 07:22:47 +07:00
icmd = RegCmds->find(cmd);
if (!icmd)
{
2016-07-04 12:07:29 +06:00
META_WARNING("Couldn't find registered plugin command: %s", cmd);
return;
}
2016-07-26 07:22:47 +07:00
if (icmd->call() != mTRUE)
2016-07-04 12:07:29 +06:00
META_CONS("[metamod: command '%s' unavailable; plugin unloaded]", cmd);
}
// Replacement for engine routine AddServerCommand; called by plugins.
// Rather then handing the engine the plugin's command string and function
// pointer (both of which are allocated in the plugin DLL), this hands the
// engine a command string and function pointer allocated locally (in the
// metamod DLL).
//
// The string handed to the engine is just a strdup() of the plugin's
// string. The function pointer handed to the engine is actually a pointer
// to a generic command-handler function (see above).
2016-07-26 07:22:47 +07:00
void meta_AddServerCommand(char *cmd_name, void (*function)())
{
MPlugin *iplug=NULL;
2016-07-04 12:07:29 +06:00
MRegCmd *icmd=NULL;
META_DEBUG(4, ("called: meta_AddServerCommand; cmd_name=%s, function=%d", cmd_name, function));
// try to find which plugin is registering this command
2016-07-26 07:22:47 +07:00
if (!(iplug=Plugins->find_memloc((void *)function))) {
2016-07-04 12:07:29 +06:00
// if this isn't supported on this OS, don't log an error
2016-07-26 07:22:47 +07:00
if (meta_errno != ME_OSNOTSUP)
2016-07-04 12:07:29 +06:00
META_WARNING("Failed to find memloc for regcmd '%s'", cmd_name);
}
// See if this command was previously registered, ie a "reloaded" plugin.
icmd=RegCmds->find(cmd_name);
2016-07-26 07:22:47 +07:00
if (!icmd) {
2016-07-04 12:07:29 +06:00
// If not found, add.
icmd=RegCmds->add(cmd_name);
2016-07-26 07:22:47 +07:00
if (!icmd) {
2016-07-04 12:07:29 +06:00
// error details logged in add()
return;
}
// Only register if not previously registered..
REG_SVR_COMMAND(icmd->name, meta_command_handler);
}
icmd->pfnCmd=function;
icmd->status=RG_VALID;
// Store which plugin this is for, if we know. We can use '0' for
// unknown plugin, since plugin index starts at 1.
2016-07-26 07:22:47 +07:00
if (iplug)
2016-07-04 12:07:29 +06:00
icmd->plugid = iplug->index;
else
icmd->plugid = 0;
}
// Replacement for engine routine CVarRegister; called by plugins. Rather
// then handing the engine the plugin's cvar structure (which is allocated
// in the plugin DLL), this hands the engine a cvar structure allocated
// locally (in the metamod DLL).
//
// The cvar handed to the engine is globally allocated in the metamod.dll;
// the "name" and "string" fields are strdup()'s of the plugin's strings.
// Note that, once this is done, the cvar_t allocated in the plugin is no
// longer used for _anything_. As long as everything sets/gets the cvar
// values via the engine functions, this will work fine. If the plugin
// code tries to _directly_ read/set the fields of its own cvar structures,
// it will fail to work properly.
2016-07-26 07:22:47 +07:00
void meta_CVarRegister(cvar_t *pCvar)
{
MPlugin *iplug = nullptr;
MRegCvar *icvar = nullptr;
2016-07-04 12:07:29 +06:00
META_DEBUG(4, ("called: meta_CVarRegister; name=%s", pCvar->name));
// try to find which plugin is registering this cvar
2016-07-26 07:22:47 +07:00
if (!(iplug = Plugins->find_memloc((void *)pCvar)))
{
2016-07-04 12:07:29 +06:00
// if this isn't supported on this OS, don't log an error
2016-07-26 07:22:47 +07:00
if (meta_errno != ME_OSNOTSUP)
{
2016-07-04 12:07:29 +06:00
// Note: if cvar_t was malloc'd by the plugin, we can't
// determine the calling plugin. Thus, this becomes a Debug
// rather than Error message.
2016-07-26 07:22:47 +07:00
META_DEBUG(1, ("Failed to find memloc for regcvar '%s'", pCvar->name));
}
2016-07-04 12:07:29 +06:00
}
// See if this cvar was previously registered, ie a "reloaded" plugin.
2016-07-26 07:22:47 +07:00
icvar = RegCvars->find(pCvar->name);
if (!icvar)
{
2016-07-04 12:07:29 +06:00
// If not found, add.
2016-07-26 07:22:47 +07:00
icvar = RegCvars->add(pCvar->name);
if (!icvar)
{
2016-07-04 12:07:29 +06:00
// error details logged in add()
return;
}
2016-07-26 07:22:47 +07:00
2016-07-04 12:07:29 +06:00
// Reset to given value
icvar->set(pCvar);
CVAR_REGISTER(icvar->data);
}
// Note: if not a new cvar, then we don't set the values, and just keep
// the pre-existing value.
2016-07-26 07:22:47 +07:00
icvar->status = RG_VALID;
2016-07-04 12:07:29 +06:00
// Store which plugin this is for, if we know. Use '0' for unknown
// plugin, as plugin index starts at 1.
2016-07-26 07:22:47 +07:00
if (iplug)
2016-07-04 12:07:29 +06:00
icvar->plugid = iplug->index;
else
icvar->plugid = 0;
}
2016-07-26 07:22:47 +07:00
// Replacement for engine routine RegUserMsg; called by plugins.
int meta_RegUserMsg(const char *pszName, int iSize) {
return REG_USER_MSG(strdup(pszName), iSize);
2016-07-04 12:07:29 +06:00
}
// Intercept and record queries
2016-07-26 07:22:47 +07:00
void meta_QueryClientCvarValue(const edict_t *player, const char *cvarName)
2016-07-04 13:11:20 +06:00
{
2016-07-04 12:07:29 +06:00
g_Players.set_player_cvar_query(player, cvarName);
(*g_engfuncs.pfnQueryClientCvarValue)(player, cvarName);
}