2007-01-25 06:40:21 +00:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* modules.h: A header for the modules functions.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2004 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_modules_h
|
|
|
|
#define INCLUDED_modules_h
|
2016-03-08 00:10:22 +00:00
|
|
|
#include "serno.h"
|
2016-03-20 00:14:26 +00:00
|
|
|
#include "defaults.h"
|
2007-01-25 06:40:21 +00:00
|
|
|
#include "setup.h"
|
|
|
|
#include "parse.h"
|
2019-11-17 11:15:47 +00:00
|
|
|
#include "client.h" /* for IDLEN */
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2020-10-15 14:51:12 +00:00
|
|
|
#define MAPI_SOLANUM 2
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2016-01-06 03:39:09 +00:00
|
|
|
#include <ltdl.h>
|
2007-01-25 06:40:21 +00:00
|
|
|
|
|
|
|
#include "msg.h"
|
|
|
|
#include "hook.h"
|
|
|
|
|
|
|
|
struct module
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
const char *version;
|
2016-03-06 23:14:31 +00:00
|
|
|
const char *description;
|
2016-01-06 03:39:09 +00:00
|
|
|
lt_dlhandle address;
|
2016-04-03 06:51:26 +00:00
|
|
|
int core; /* This is int for backwards compat reasons */
|
|
|
|
int origin; /* Ditto */
|
2020-06-02 15:17:26 +00:00
|
|
|
char *path;
|
2007-01-25 06:40:21 +00:00
|
|
|
int mapi_version;
|
2016-03-06 22:53:03 +00:00
|
|
|
void *mapi_header; /* actually struct mapi_mheader_av<mapi_version> */
|
2016-06-18 05:52:16 +00:00
|
|
|
rb_dlink_node node;
|
2007-01-25 06:40:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define MAPI_MAGIC_HDR 0x4D410000
|
|
|
|
|
|
|
|
#define MAPI_V1 (MAPI_MAGIC_HDR | 0x1)
|
2016-03-06 22:53:03 +00:00
|
|
|
#define MAPI_V2 (MAPI_MAGIC_HDR | 0x2)
|
2007-01-25 06:40:21 +00:00
|
|
|
|
|
|
|
#define MAPI_MAGIC(x) ((x) & 0xffff0000)
|
|
|
|
#define MAPI_VERSION(x) ((x) & 0x0000ffff)
|
|
|
|
|
|
|
|
typedef struct Message* mapi_clist_av1;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2016-03-06 22:53:03 +00:00
|
|
|
const char *hapi_name;
|
|
|
|
int *hapi_id;
|
2007-01-25 06:40:21 +00:00
|
|
|
} mapi_hlist_av1;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2016-03-06 22:53:03 +00:00
|
|
|
const char *hapi_name;
|
|
|
|
hookfn fn;
|
2020-04-26 23:14:56 +00:00
|
|
|
enum hook_priority priority;
|
2007-01-25 06:40:21 +00:00
|
|
|
} mapi_hfn_list_av1;
|
|
|
|
|
2016-03-06 22:53:03 +00:00
|
|
|
#define MAPI_CAP_CLIENT 1
|
|
|
|
#define MAPI_CAP_SERVER 2
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int cap_index; /* Which cap index does this belong to? */
|
|
|
|
const char *cap_name; /* Capability name */
|
|
|
|
void *cap_ownerdata; /* Not used much but why not... */
|
2016-03-09 07:29:41 +00:00
|
|
|
unsigned int *cap_id; /* May be set to non-NULL to store cap id */
|
2016-03-06 22:53:03 +00:00
|
|
|
} mapi_cap_list_av2;
|
|
|
|
|
2007-01-25 06:40:21 +00:00
|
|
|
struct mapi_mheader_av1
|
|
|
|
{
|
2016-03-06 22:53:03 +00:00
|
|
|
int mapi_version; /* Module API version */
|
|
|
|
int (*mapi_register)(void); /* Register function; ret -1 = failure (unload) */
|
|
|
|
void (*mapi_unregister)(void); /* Unregister function. */
|
|
|
|
mapi_clist_av1 *mapi_command_list; /* List of commands to add. */
|
|
|
|
mapi_hlist_av1 *mapi_hook_list; /* List of hooks to add. */
|
|
|
|
mapi_hfn_list_av1 *mapi_hfn_list; /* List of hook_add_hook's to do */
|
|
|
|
const char *mapi_module_version; /* Module's version (freeform) */
|
2007-01-25 06:40:21 +00:00
|
|
|
};
|
|
|
|
|
2016-03-06 23:52:49 +00:00
|
|
|
#define MAPI_ORIGIN_UNKNOWN 0 /* Unknown provenance (AV1 etc.) */
|
2020-10-15 14:51:12 +00:00
|
|
|
#define MAPI_ORIGIN_EXTENSION 1 /* Solanum extension */
|
|
|
|
#define MAPI_ORIGIN_CORE 2 /* Solanum core module */
|
2016-03-06 23:52:49 +00:00
|
|
|
|
2016-03-06 22:53:03 +00:00
|
|
|
struct mapi_mheader_av2
|
|
|
|
{
|
|
|
|
int mapi_version; /* Module API version */
|
|
|
|
int (*mapi_register)(void); /* Register function; ret -1 = failure (unload) */
|
|
|
|
void (*mapi_unregister)(void); /* Unregister function. */
|
|
|
|
mapi_clist_av1 *mapi_command_list; /* List of commands to add. */
|
|
|
|
mapi_hlist_av1 *mapi_hook_list; /* List of hooks to add. */
|
|
|
|
mapi_hfn_list_av1 *mapi_hfn_list; /* List of hook_add_hook's to do */
|
|
|
|
mapi_cap_list_av2 *mapi_cap_list; /* List of CAPs to add */
|
|
|
|
const char *mapi_module_version; /* Module's version (freeform), replaced with ircd version if NULL */
|
|
|
|
const char *mapi_module_description; /* Module's description (freeform) */
|
2016-03-08 00:10:22 +00:00
|
|
|
unsigned long int mapi_datecode; /* Unix timestamp of module's build */
|
2016-03-06 22:53:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define DECLARE_MODULE_AV1(name, reg, unreg, cl, hl, hfnlist, v) \
|
2007-01-25 06:40:21 +00:00
|
|
|
struct mapi_mheader_av1 _mheader = { MAPI_V1, reg, unreg, cl, hl, hfnlist, v}
|
|
|
|
|
2016-03-07 00:56:45 +00:00
|
|
|
#define DECLARE_MODULE_AV2(name, reg, unreg, cl, hl, hfnlist, caplist, v, desc) \
|
2016-03-08 00:10:22 +00:00
|
|
|
struct mapi_mheader_av2 _mheader = { MAPI_V2, reg, unreg, cl, hl, hfnlist, caplist, v, desc, DATECODE}
|
2016-03-06 22:53:03 +00:00
|
|
|
|
2019-11-17 11:15:47 +00:00
|
|
|
struct modreload
|
|
|
|
{
|
|
|
|
char module[BUFSIZE];
|
|
|
|
char id[IDLEN];
|
|
|
|
};
|
|
|
|
|
2007-01-25 06:40:21 +00:00
|
|
|
/* add a path */
|
|
|
|
void mod_add_path(const char *path);
|
|
|
|
void mod_clear_paths(void);
|
|
|
|
|
2019-07-08 02:53:29 +00:00
|
|
|
/* cap-notify utilities */
|
|
|
|
extern void mod_remember_clicaps(void);
|
|
|
|
extern void mod_notify_clicaps(void);
|
|
|
|
|
2007-01-25 06:40:21 +00:00
|
|
|
/* load a module */
|
|
|
|
extern void load_module(char *path);
|
|
|
|
|
|
|
|
/* load all modules */
|
2016-04-03 06:51:26 +00:00
|
|
|
extern void load_all_modules(bool warn);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
|
|
|
/* load core modules */
|
2016-04-03 06:51:26 +00:00
|
|
|
extern void load_core_modules(bool);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2016-04-03 06:51:26 +00:00
|
|
|
extern bool unload_one_module(const char *, bool);
|
|
|
|
extern bool load_one_module(const char *, int, bool);
|
|
|
|
extern bool load_a_module(const char *, bool, int, bool);
|
2016-06-18 05:52:16 +00:00
|
|
|
extern struct module *findmodule_byname(const char *);
|
2016-06-18 05:38:40 +00:00
|
|
|
extern void init_modules(void);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2016-06-18 05:52:16 +00:00
|
|
|
extern rb_dlink_list module_list;
|
|
|
|
extern rb_dlink_list mod_paths;
|
2016-04-07 09:00:25 +00:00
|
|
|
|
2007-01-25 06:40:21 +00:00
|
|
|
#endif /* INCLUDED_modules_h */
|