2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* modules.c: A module loader.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* This program 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; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "modules.h"
|
2008-04-03 04:52:01 +02:00
|
|
|
#include "logger.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "ircd.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "send.h"
|
|
|
|
#include "s_conf.h"
|
|
|
|
#include "s_newconf.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "ircd_defs.h"
|
2008-04-20 07:47:38 +02:00
|
|
|
#include "match.h"
|
2016-01-12 07:37:54 +01:00
|
|
|
#include "s_serv.h"
|
2016-03-06 23:53:03 +01:00
|
|
|
#include "capability.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-01-06 04:39:09 +01:00
|
|
|
#include <ltdl.h>
|
|
|
|
|
2016-03-13 03:10:46 +01:00
|
|
|
#ifndef LT_MODULE_EXT
|
|
|
|
# error "Charybdis requires loadable module support."
|
|
|
|
#endif
|
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
rb_dlink_list module_list;
|
|
|
|
rb_dlink_list mod_paths;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
static const char *core_module_table[] = {
|
2010-03-05 18:36:44 +01:00
|
|
|
"m_ban",
|
2007-01-25 07:40:21 +01:00
|
|
|
"m_die",
|
|
|
|
"m_error",
|
|
|
|
"m_join",
|
|
|
|
"m_kick",
|
|
|
|
"m_kill",
|
|
|
|
"m_message",
|
|
|
|
"m_mode",
|
2016-04-07 11:00:25 +02:00
|
|
|
"m_modules",
|
2007-01-25 07:40:21 +01:00
|
|
|
"m_nick",
|
|
|
|
"m_part",
|
|
|
|
"m_quit",
|
|
|
|
"m_server",
|
|
|
|
"m_squit",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2016-03-08 01:10:22 +01:00
|
|
|
#define MOD_WARN_DELTA (90 * 86400) /* time in seconds, 86400 seconds in a day */
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
void
|
2016-06-18 07:38:40 +02:00
|
|
|
init_modules(void)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-01-06 04:39:09 +01:00
|
|
|
if(lt_dlinit())
|
|
|
|
{
|
|
|
|
ilog(L_MAIN, "lt_dlinit failed");
|
2016-04-25 23:27:57 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2016-01-06 04:39:09 +01:00
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/* Add the default paths we look in to the module system --nenolod */
|
2016-03-25 00:45:28 +01:00
|
|
|
mod_add_path(ircd_paths[IRCD_PATH_MODULES]);
|
|
|
|
mod_add_path(ircd_paths[IRCD_PATH_AUTOLOAD_MODULES]);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* mod_find_path()
|
|
|
|
*
|
|
|
|
* input - path
|
|
|
|
* output - none
|
|
|
|
* side effects - returns a module path from path
|
|
|
|
*/
|
2014-02-23 23:47:27 +01:00
|
|
|
static char *
|
2007-01-25 07:40:21 +01:00
|
|
|
mod_find_path(const char *path)
|
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2014-02-23 23:47:27 +01:00
|
|
|
char *mpath;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, mod_paths.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
mpath = ptr->data;
|
|
|
|
|
2014-02-23 23:47:27 +01:00
|
|
|
if(!strcmp(path, mpath))
|
2007-01-25 07:40:21 +01:00
|
|
|
return mpath;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mod_add_path
|
|
|
|
*
|
|
|
|
* input - path
|
2014-03-03 05:25:47 +01:00
|
|
|
* ouput -
|
2007-01-25 07:40:21 +01:00
|
|
|
* side effects - adds path to list
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mod_add_path(const char *path)
|
|
|
|
{
|
2014-02-23 23:47:27 +01:00
|
|
|
char *pathst;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(mod_find_path(path))
|
|
|
|
return;
|
|
|
|
|
2014-02-23 23:47:27 +01:00
|
|
|
pathst = rb_strdup(path);
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkAddAlloc(pathst, &mod_paths);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* mod_clear_paths()
|
|
|
|
*
|
|
|
|
* input -
|
|
|
|
* output -
|
|
|
|
* side effects - clear the lists of paths
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mod_clear_paths(void)
|
|
|
|
{
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *ptr, *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, mod_paths.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_free(ptr->data);
|
2008-04-02 03:03:13 +02:00
|
|
|
rb_free_rb_dlink_node(ptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
mod_paths.head = mod_paths.tail = NULL;
|
|
|
|
mod_paths.length = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* findmodule_byname
|
|
|
|
*
|
2016-04-03 08:51:26 +02:00
|
|
|
* input - module to load
|
|
|
|
* output - index of module on success, -1 on failure
|
|
|
|
* side effects - none
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
2016-06-18 07:52:16 +02:00
|
|
|
struct module *
|
2007-01-25 07:40:21 +01:00
|
|
|
findmodule_byname(const char *name)
|
|
|
|
{
|
2016-06-18 07:52:16 +02:00
|
|
|
rb_dlink_node *ptr;
|
2016-03-20 12:00:20 +01:00
|
|
|
char name_ext[PATH_MAX + 1];
|
|
|
|
|
2016-03-20 12:01:12 +01:00
|
|
|
rb_strlcpy(name_ext, name, sizeof name_ext);
|
|
|
|
rb_strlcat(name_ext, LT_MODULE_EXT, sizeof name_ext);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, module_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-06-18 07:52:16 +02:00
|
|
|
struct module *mod = ptr->data;
|
|
|
|
|
|
|
|
if(!irccmp(mod->name, name))
|
|
|
|
return mod;
|
2016-03-20 12:00:20 +01:00
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
if(!irccmp(mod->name, name_ext))
|
|
|
|
return mod;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2016-03-20 12:00:20 +01:00
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
return NULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* load_all_modules()
|
|
|
|
*
|
|
|
|
* input -
|
|
|
|
* output -
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
void
|
2016-04-03 08:51:26 +02:00
|
|
|
load_all_modules(bool warn)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
DIR *system_module_dir = NULL;
|
|
|
|
struct dirent *ldirent = NULL;
|
|
|
|
char module_fq_name[PATH_MAX + 1];
|
2016-03-18 21:32:33 +01:00
|
|
|
size_t module_ext_len = strlen(LT_MODULE_EXT);
|
|
|
|
|
2016-03-25 00:45:28 +01:00
|
|
|
system_module_dir = opendir(ircd_paths[IRCD_PATH_AUTOLOAD_MODULES]);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(system_module_dir == NULL)
|
|
|
|
{
|
2016-03-25 00:45:28 +01:00
|
|
|
ilog(L_MAIN, "Could not load modules from %s: %s", ircd_paths[IRCD_PATH_AUTOLOAD_MODULES], strerror(errno));
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((ldirent = readdir(system_module_dir)) != NULL)
|
|
|
|
{
|
2016-04-03 08:21:06 +02:00
|
|
|
size_t len = strlen(ldirent->d_name);
|
2016-03-13 03:10:46 +01:00
|
|
|
|
2016-04-03 08:21:06 +02:00
|
|
|
if(len > module_ext_len &&
|
2016-04-05 12:39:59 +02:00
|
|
|
rb_strncasecmp(ldirent->d_name + (len - module_ext_len), LT_MODULE_EXT, module_ext_len) == 0)
|
2016-02-10 02:25:32 +01:00
|
|
|
{
|
2016-04-03 08:21:06 +02:00
|
|
|
(void) snprintf(module_fq_name, sizeof(module_fq_name), "%s%c%s",
|
|
|
|
ircd_paths[IRCD_PATH_AUTOLOAD_MODULES], RB_PATH_SEPARATOR, ldirent->d_name);
|
2016-04-03 08:51:26 +02:00
|
|
|
(void) load_a_module(module_fq_name, warn, MAPI_ORIGIN_CORE, false);
|
2016-02-10 02:25:32 +01:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
(void) closedir(system_module_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* load_core_modules()
|
|
|
|
*
|
|
|
|
* input -
|
|
|
|
* output -
|
|
|
|
* side effects - core modules are loaded, if any fail, kill ircd
|
|
|
|
*/
|
|
|
|
void
|
2016-04-03 08:51:26 +02:00
|
|
|
load_core_modules(bool warn)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2011-10-28 16:45:18 +02:00
|
|
|
char module_name[PATH_MAX];
|
2007-01-25 07:40:21 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; core_module_table[i]; i++)
|
|
|
|
{
|
2016-04-03 08:51:26 +02:00
|
|
|
snprintf(module_name, sizeof(module_name), "%s%c%s", ircd_paths[IRCD_PATH_MODULES], RB_PATH_SEPARATOR,
|
|
|
|
core_module_table[i]);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-04-03 08:51:26 +02:00
|
|
|
if(load_a_module(module_name, warn, MAPI_ORIGIN_CORE, true) == false)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
ilog(L_MAIN,
|
2016-03-13 03:10:46 +01:00
|
|
|
"Error loading core module %s: terminating ircd",
|
|
|
|
core_module_table[i]);
|
2016-04-25 23:27:57 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* load_one_module()
|
|
|
|
*
|
|
|
|
* input -
|
|
|
|
* output -
|
|
|
|
* side effects -
|
|
|
|
*/
|
2016-04-03 08:51:26 +02:00
|
|
|
bool
|
|
|
|
load_one_module(const char *path, int origin, bool coremodule)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2011-10-28 16:45:18 +02:00
|
|
|
char modpath[PATH_MAX];
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *pathst;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-09 09:19:31 +01:00
|
|
|
if (server_state_foreground)
|
2014-03-03 05:25:47 +01:00
|
|
|
inotice("loading module %s ...", path);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-04-03 08:51:26 +02:00
|
|
|
if(coremodule)
|
2016-03-07 01:56:45 +01:00
|
|
|
origin = MAPI_ORIGIN_CORE;
|
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(pathst, mod_paths.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-04-03 08:51:26 +02:00
|
|
|
struct stat statbuf;
|
|
|
|
const char *mpath = pathst->data;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-04-03 08:51:26 +02:00
|
|
|
snprintf(modpath, sizeof(modpath), "%s%c%s%s", mpath, RB_PATH_SEPARATOR, path, LT_MODULE_EXT);
|
2007-01-25 07:40:21 +01:00
|
|
|
if((strstr(modpath, "../") == NULL) && (strstr(modpath, "/..") == NULL))
|
|
|
|
{
|
2016-04-03 08:51:26 +02:00
|
|
|
if(stat(modpath, &statbuf) == 0 && S_ISREG(statbuf.st_mode))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-04-03 08:51:26 +02:00
|
|
|
/* Regular files only please */
|
|
|
|
return load_a_module(modpath, true, origin, coremodule);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "Cannot locate module %s", path);
|
2016-04-03 08:51:26 +02:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static char unknown_ver[] = "<unknown>";
|
2016-03-06 23:53:03 +01:00
|
|
|
static char unknown_description[] = "<none>";
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* unload_one_module()
|
|
|
|
*
|
|
|
|
* inputs - name of module to unload
|
2016-04-03 08:51:26 +02:00
|
|
|
* - true to say modules unloaded, false to not
|
|
|
|
* output - true if successful, false if error
|
2007-01-25 07:40:21 +01:00
|
|
|
* side effects - module is unloaded
|
|
|
|
*/
|
2016-04-03 08:51:26 +02:00
|
|
|
bool
|
|
|
|
unload_one_module(const char *name, bool warn)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-06-18 07:52:16 +02:00
|
|
|
struct module *mod;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
if((mod = findmodule_byname(name)) == NULL)
|
2016-04-03 08:51:26 +02:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** XXX - The type system in C does not allow direct conversion between
|
|
|
|
** data and function pointers, but as it happens, most C compilers will
|
2014-03-03 05:25:47 +01:00
|
|
|
** safely do this, however it is a theoretical overlow to cast as we
|
|
|
|
** must do here. I have library functions to take care of this, but
|
|
|
|
** despite being more "correct" for the C language, this is more
|
2007-01-25 07:40:21 +01:00
|
|
|
** practical. Removing the abuse of the ability to cast ANY pointer
|
|
|
|
** to and from an integer value here will break some compilers.
|
|
|
|
** -jmallett
|
|
|
|
*/
|
|
|
|
/* Left the comment in but the code isn't here any more -larne */
|
2016-06-18 07:52:16 +02:00
|
|
|
switch (mod->mapi_version)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
2016-06-18 07:52:16 +02:00
|
|
|
struct mapi_mheader_av1 *mheader = mod->mapi_header;
|
2007-01-25 07:40:21 +01:00
|
|
|
if(mheader->mapi_command_list)
|
|
|
|
{
|
|
|
|
struct Message **m;
|
|
|
|
for (m = mheader->mapi_command_list; *m; ++m)
|
|
|
|
mod_del_cmd(*m);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* hook events are never removed, we simply lose the
|
|
|
|
* ability to call them --fl
|
|
|
|
*/
|
|
|
|
if(mheader->mapi_hfn_list)
|
|
|
|
{
|
|
|
|
mapi_hfn_list_av1 *m;
|
|
|
|
for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
|
|
|
|
remove_hook(m->hapi_name, m->fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mheader->mapi_unregister)
|
|
|
|
mheader->mapi_unregister();
|
|
|
|
break;
|
|
|
|
}
|
2016-03-06 23:53:03 +01:00
|
|
|
case 2:
|
|
|
|
{
|
2016-06-18 07:52:16 +02:00
|
|
|
struct mapi_mheader_av2 *mheader = mod->mapi_header;
|
2016-03-06 23:53:03 +01:00
|
|
|
|
|
|
|
/* XXX duplicate code :( */
|
|
|
|
if(mheader->mapi_command_list)
|
|
|
|
{
|
|
|
|
struct Message **m;
|
|
|
|
for (m = mheader->mapi_command_list; *m; ++m)
|
|
|
|
mod_del_cmd(*m);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* hook events are never removed, we simply lose the
|
|
|
|
* ability to call them --fl
|
|
|
|
*/
|
|
|
|
if(mheader->mapi_hfn_list)
|
|
|
|
{
|
|
|
|
mapi_hfn_list_av1 *m;
|
|
|
|
for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
|
|
|
|
remove_hook(m->hapi_name, m->fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mheader->mapi_unregister)
|
|
|
|
mheader->mapi_unregister();
|
|
|
|
|
|
|
|
if(mheader->mapi_cap_list)
|
|
|
|
{
|
|
|
|
mapi_cap_list_av2 *m;
|
|
|
|
for (m = mheader->mapi_cap_list; m->cap_name; ++m)
|
|
|
|
{
|
|
|
|
struct CapabilityIndex *idx;
|
|
|
|
|
2016-03-07 06:21:08 +01:00
|
|
|
switch (m->cap_index)
|
2016-03-06 23:53:03 +01:00
|
|
|
{
|
|
|
|
case MAPI_CAP_CLIENT:
|
|
|
|
idx = cli_capindex;
|
|
|
|
break;
|
|
|
|
case MAPI_CAP_SERVER:
|
|
|
|
idx = serv_capindex;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Unknown/unsupported CAP index found of type %d on capability %s when unloading %s",
|
2016-06-18 07:52:16 +02:00
|
|
|
m->cap_index, m->cap_name, mod->name);
|
2016-03-06 23:53:03 +01:00
|
|
|
ilog(L_MAIN,
|
|
|
|
"Unknown/unsupported CAP index found of type %d on capability %s when unloading %s",
|
2016-06-18 07:52:16 +02:00
|
|
|
m->cap_index, m->cap_name, mod->name);
|
2016-03-06 23:53:03 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-04-04 09:30:00 +02:00
|
|
|
if (m->cap_id != NULL)
|
|
|
|
{
|
|
|
|
capability_orphan(idx, m->cap_name);
|
|
|
|
sendto_local_clients_with_capability(CLICAP_CAP_NOTIFY, ":%s CAP * DEL :%s", me.name, m->cap_name);
|
|
|
|
}
|
2016-03-06 23:53:03 +01:00
|
|
|
}
|
|
|
|
}
|
2016-04-24 00:35:27 +02:00
|
|
|
break;
|
2016-03-06 23:53:03 +01:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
default:
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Unknown/unsupported MAPI version %d when unloading %s!",
|
2016-06-18 07:52:16 +02:00
|
|
|
mod->mapi_version, mod->name);
|
2007-01-25 07:40:21 +01:00
|
|
|
ilog(L_MAIN, "Unknown/unsupported MAPI version %d when unloading %s!",
|
2016-06-18 07:52:16 +02:00
|
|
|
mod->mapi_version, mod->name);
|
2007-01-25 07:40:21 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
lt_dlclose(mod->address);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
rb_dlinkDelete(&mod->node, &module_list);
|
|
|
|
rb_free(mod->name);
|
|
|
|
rb_free(mod);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-04-03 08:51:26 +02:00
|
|
|
if(warn)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
ilog(L_MAIN, "Module %s unloaded", name);
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "Module %s unloaded", name);
|
|
|
|
}
|
|
|
|
|
2016-04-03 08:51:26 +02:00
|
|
|
return true;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* load_a_module()
|
|
|
|
*
|
2016-04-03 08:51:26 +02:00
|
|
|
* inputs - path name of module, bool to notice, int of origin, bool if core
|
|
|
|
* output - false if error true if success
|
2007-01-25 07:40:21 +01:00
|
|
|
* side effects - loads a module if successful
|
|
|
|
*/
|
2016-04-03 08:51:26 +02:00
|
|
|
bool
|
|
|
|
load_a_module(const char *path, bool warn, int origin, bool core)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-06-18 07:52:16 +02:00
|
|
|
struct module *mod;
|
2016-01-06 04:39:09 +01:00
|
|
|
lt_dlhandle tmpptr;
|
2016-04-07 11:15:12 +02:00
|
|
|
char *mod_displayname, *c;
|
2016-03-06 23:53:03 +01:00
|
|
|
const char *ver, *description = NULL;
|
2016-04-07 11:15:12 +02:00
|
|
|
size_t module_ext_len = strlen(LT_MODULE_EXT);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
int *mapi_version;
|
|
|
|
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname = rb_basename(path);
|
|
|
|
|
|
|
|
/* Trim off the ending for the display name if we have to */
|
|
|
|
if((c = rb_strcasestr(mod_displayname, LT_MODULE_EXT)) != NULL)
|
|
|
|
*c = '\0';
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-13 03:10:46 +01:00
|
|
|
tmpptr = lt_dlopenext(path);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(tmpptr == NULL)
|
|
|
|
{
|
2016-01-06 04:39:09 +01:00
|
|
|
const char *err = lt_dlerror();
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
2016-04-07 11:15:12 +02:00
|
|
|
"Error loading module %s: %s", mod_displayname, err);
|
|
|
|
ilog(L_MAIN, "Error loading module %s: %s", mod_displayname, err);
|
|
|
|
rb_free(mod_displayname);
|
2016-04-03 08:51:26 +02:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* _mheader is actually a struct mapi_mheader_*, but mapi_version
|
|
|
|
* is always the first member of this structure, so we treate it
|
|
|
|
* as a single int in order to determine the API version.
|
|
|
|
* -larne.
|
|
|
|
*/
|
2016-01-06 04:39:09 +01:00
|
|
|
mapi_version = (int *) (uintptr_t) lt_dlsym(tmpptr, "_mheader");
|
2007-01-25 07:40:21 +01:00
|
|
|
if((mapi_version == NULL
|
2016-01-06 04:39:09 +01:00
|
|
|
&& (mapi_version = (int *) (uintptr_t) lt_dlsym(tmpptr, "__mheader")) == NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
|| MAPI_MAGIC(*mapi_version) != MAPI_MAGIC_HDR)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Data format error: module %s has no MAPI header.",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname);
|
|
|
|
ilog(L_MAIN, "Data format error: module %s has no MAPI header.", mod_displayname);
|
2016-01-06 04:39:09 +01:00
|
|
|
(void) lt_dlclose(tmpptr);
|
2016-04-07 11:15:12 +02:00
|
|
|
rb_free(mod_displayname);
|
2016-04-03 08:51:26 +02:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (MAPI_VERSION(*mapi_version))
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
2015-04-20 07:55:20 +02:00
|
|
|
struct mapi_mheader_av1 *mheader = (struct mapi_mheader_av1 *)(void *)mapi_version; /* see above */
|
2007-01-25 07:40:21 +01:00
|
|
|
if(mheader->mapi_register && (mheader->mapi_register() == -1))
|
|
|
|
{
|
|
|
|
ilog(L_MAIN, "Module %s indicated failure during load.",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname);
|
2007-01-25 07:40:21 +01:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Module %s indicated failure during load.",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname);
|
2016-01-06 04:39:09 +01:00
|
|
|
lt_dlclose(tmpptr);
|
2016-04-07 11:15:12 +02:00
|
|
|
rb_free(mod_displayname);
|
2016-04-03 08:51:26 +02:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
if(mheader->mapi_command_list)
|
|
|
|
{
|
|
|
|
struct Message **m;
|
|
|
|
for (m = mheader->mapi_command_list; *m; ++m)
|
|
|
|
mod_add_cmd(*m);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mheader->mapi_hook_list)
|
|
|
|
{
|
|
|
|
mapi_hlist_av1 *m;
|
|
|
|
for (m = mheader->mapi_hook_list; m->hapi_name; ++m)
|
|
|
|
*m->hapi_id = register_hook(m->hapi_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mheader->mapi_hfn_list)
|
|
|
|
{
|
|
|
|
mapi_hfn_list_av1 *m;
|
|
|
|
for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
|
|
|
|
add_hook(m->hapi_name, m->fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
ver = mheader->mapi_module_version;
|
|
|
|
break;
|
|
|
|
}
|
2016-03-06 23:53:03 +01:00
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
struct mapi_mheader_av2 *mheader = (struct mapi_mheader_av2 *)(void *)mapi_version; /* see above */
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-06 23:53:03 +01:00
|
|
|
/* XXX duplicated code :( */
|
2016-04-04 02:14:36 +02:00
|
|
|
if(mheader->mapi_register && (mheader->mapi_register() == -1))
|
2016-03-06 23:53:03 +01:00
|
|
|
{
|
|
|
|
ilog(L_MAIN, "Module %s indicated failure during load.",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname);
|
2016-03-06 23:53:03 +01:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Module %s indicated failure during load.",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname);
|
2016-03-06 23:53:03 +01:00
|
|
|
lt_dlclose(tmpptr);
|
2016-04-07 11:15:12 +02:00
|
|
|
rb_free(mod_displayname);
|
2016-04-03 08:51:26 +02:00
|
|
|
return false;
|
2016-03-06 23:53:03 +01:00
|
|
|
}
|
2016-03-08 01:10:22 +01:00
|
|
|
|
|
|
|
/* Basic date code checks
|
|
|
|
*
|
|
|
|
* Don't make them fatal, but do complain about differences within a certain time frame.
|
|
|
|
* Later on if there are major API changes we can add fatal checks.
|
|
|
|
* -- Elizafox
|
|
|
|
*/
|
|
|
|
if(mheader->mapi_datecode != datecode && mheader->mapi_datecode > 0)
|
|
|
|
{
|
2016-03-08 20:46:19 +01:00
|
|
|
long int delta = datecode - mheader->mapi_datecode;
|
2016-03-08 01:10:22 +01:00
|
|
|
if (delta > MOD_WARN_DELTA)
|
|
|
|
{
|
|
|
|
delta /= 86400;
|
2016-03-08 20:47:41 +01:00
|
|
|
iwarn("Module %s build date is out of sync with ircd build date by %ld days, expect problems",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname, delta);
|
2016-03-08 01:10:22 +01:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Module %s build date is out of sync with ircd build date by %ld days, expect problems",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname, delta);
|
2016-03-08 01:10:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-06 23:53:03 +01:00
|
|
|
if(mheader->mapi_command_list)
|
|
|
|
{
|
|
|
|
struct Message **m;
|
|
|
|
for (m = mheader->mapi_command_list; *m; ++m)
|
|
|
|
mod_add_cmd(*m);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mheader->mapi_hook_list)
|
|
|
|
{
|
|
|
|
mapi_hlist_av1 *m;
|
|
|
|
for (m = mheader->mapi_hook_list; m->hapi_name; ++m)
|
|
|
|
*m->hapi_id = register_hook(m->hapi_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mheader->mapi_hfn_list)
|
|
|
|
{
|
|
|
|
mapi_hfn_list_av1 *m;
|
|
|
|
for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
|
|
|
|
add_hook(m->hapi_name, m->fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* New in MAPI v2 - version replacement */
|
|
|
|
ver = mheader->mapi_module_version ? mheader->mapi_module_version : ircd_version;
|
|
|
|
description = mheader->mapi_module_description;
|
|
|
|
|
|
|
|
if(mheader->mapi_cap_list)
|
|
|
|
{
|
|
|
|
mapi_cap_list_av2 *m;
|
|
|
|
for (m = mheader->mapi_cap_list; m->cap_name; ++m)
|
|
|
|
{
|
|
|
|
struct CapabilityIndex *idx;
|
|
|
|
int result;
|
|
|
|
|
2016-03-07 06:21:08 +01:00
|
|
|
switch (m->cap_index)
|
2016-03-06 23:53:03 +01:00
|
|
|
{
|
|
|
|
case MAPI_CAP_CLIENT:
|
|
|
|
idx = cli_capindex;
|
|
|
|
break;
|
|
|
|
case MAPI_CAP_SERVER:
|
|
|
|
idx = serv_capindex;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Unknown/unsupported CAP index found of type %d on capability %s when loading %s",
|
2016-04-07 11:15:12 +02:00
|
|
|
m->cap_index, m->cap_name, mod_displayname);
|
2016-03-06 23:53:03 +01:00
|
|
|
ilog(L_MAIN,
|
|
|
|
"Unknown/unsupported CAP index found of type %d on capability %s when loading %s",
|
2016-04-07 11:15:12 +02:00
|
|
|
m->cap_index, m->cap_name, mod_displayname);
|
2016-03-06 23:53:03 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = capability_put(idx, m->cap_name, m->cap_ownerdata);
|
|
|
|
if (m->cap_id != NULL)
|
2016-04-04 09:30:00 +02:00
|
|
|
{
|
2016-03-06 23:53:03 +01:00
|
|
|
*(m->cap_id) = result;
|
2016-04-04 09:30:00 +02:00
|
|
|
sendto_local_clients_with_capability(CLICAP_CAP_NOTIFY, ":%s CAP * ADD :%s", me.name, m->cap_name);
|
|
|
|
}
|
2016-03-06 23:53:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-07 00:08:44 +01:00
|
|
|
|
|
|
|
break;
|
2007-01-25 07:40:21 +01:00
|
|
|
default:
|
|
|
|
ilog(L_MAIN, "Module %s has unknown/unsupported MAPI version %d.",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname, MAPI_VERSION(*mapi_version));
|
2007-01-25 07:40:21 +01:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Module %s has unknown/unsupported MAPI version %d.",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname, *mapi_version);
|
2016-01-06 04:39:09 +01:00
|
|
|
lt_dlclose(tmpptr);
|
2016-04-07 11:15:12 +02:00
|
|
|
rb_free(mod_displayname);
|
2016-04-03 08:51:26 +02:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(ver == NULL)
|
|
|
|
ver = unknown_ver;
|
|
|
|
|
2016-03-06 23:53:03 +01:00
|
|
|
if(description == NULL)
|
|
|
|
description = unknown_description;
|
|
|
|
|
2016-06-18 07:52:16 +02:00
|
|
|
mod = rb_malloc(sizeof(struct module));
|
|
|
|
mod->address = tmpptr;
|
|
|
|
mod->version = ver;
|
|
|
|
mod->description = description;
|
|
|
|
mod->core = core;
|
|
|
|
mod->name = rb_strdup(mod_displayname);
|
|
|
|
mod->mapi_header = mapi_version;
|
|
|
|
mod->mapi_version = MAPI_VERSION(*mapi_version);
|
|
|
|
mod->origin = origin;
|
|
|
|
rb_dlinkAdd(mod, &mod->node, &module_list);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-04-03 08:51:26 +02:00
|
|
|
if(warn)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-03-07 00:52:49 +01:00
|
|
|
const char *o;
|
|
|
|
|
2016-03-07 06:21:08 +01:00
|
|
|
switch (origin)
|
2016-03-07 00:52:49 +01:00
|
|
|
{
|
|
|
|
case MAPI_ORIGIN_EXTENSION:
|
|
|
|
o = "extension";
|
|
|
|
break;
|
|
|
|
case MAPI_ORIGIN_CORE:
|
|
|
|
o = "core";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
o = "unknown";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
2016-03-20 08:42:42 +01:00
|
|
|
"Module %s [version: %s; MAPI version: %d; origin: %s; description: \"%s\"] loaded at %p",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname, ver, MAPI_VERSION(*mapi_version), o, description,
|
2016-03-20 08:42:42 +01:00
|
|
|
(void *) tmpptr);
|
|
|
|
ilog(L_MAIN, "Module %s [version: %s; MAPI version: %d; origin: %s; description: \"%s\"] loaded at %p",
|
2016-04-07 11:15:12 +02:00
|
|
|
mod_displayname, ver, MAPI_VERSION(*mapi_version), o, description, (void *) tmpptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2016-04-07 11:15:12 +02:00
|
|
|
rb_free(mod_displayname);
|
2016-04-03 08:51:26 +02:00
|
|
|
return true;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|