]> jfr.im git - solanum.git/blame - include/modules.h
modules: tag origin at load time.
[solanum.git] / include / modules.h
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * modules.h: A header for the modules functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
212380e3
AC
23 */
24
25#ifndef INCLUDED_modules_h
26#define INCLUDED_modules_h
27#include "config.h"
28#include "setup.h"
29#include "parse.h"
30
8e9c6a75 31#define MAPI_CHARYBDIS 2
212380e3 32
f272e7ab 33#include <ltdl.h>
212380e3
AC
34
35#include "msg.h"
212380e3
AC
36#include "hook.h"
37
38struct module
39{
40 char *name;
41 const char *version;
0eb7d9c0 42 const char *description;
f272e7ab 43 lt_dlhandle address;
212380e3 44 int core;
c63aeb44 45 int origin;
212380e3 46 int mapi_version;
8e9c6a75 47 void *mapi_header; /* actually struct mapi_mheader_av<mapi_version> */
212380e3
AC
48};
49
212380e3
AC
50#define MAPI_MAGIC_HDR 0x4D410000
51
52#define MAPI_V1 (MAPI_MAGIC_HDR | 0x1)
8e9c6a75 53#define MAPI_V2 (MAPI_MAGIC_HDR | 0x2)
212380e3
AC
54
55#define MAPI_MAGIC(x) ((x) & 0xffff0000)
56#define MAPI_VERSION(x) ((x) & 0x0000ffff)
57
58typedef struct Message* mapi_clist_av1;
59
60typedef struct
61{
8e9c6a75
EM
62 const char *hapi_name;
63 int *hapi_id;
212380e3
AC
64} mapi_hlist_av1;
65
66typedef struct
67{
8e9c6a75
EM
68 const char *hapi_name;
69 hookfn fn;
212380e3
AC
70} mapi_hfn_list_av1;
71
8e9c6a75
EM
72
73#define MAPI_CAP_CLIENT 1
74#define MAPI_CAP_SERVER 2
75
76typedef struct
77{
78 int cap_index; /* Which cap index does this belong to? */
79 const char *cap_name; /* Capability name */
80 void *cap_ownerdata; /* Not used much but why not... */
81 int *cap_id; /* May be set to non-NULL to store cap id */
82} mapi_cap_list_av2;
83
212380e3
AC
84struct mapi_mheader_av1
85{
8e9c6a75
EM
86 int mapi_version; /* Module API version */
87 int (*mapi_register)(void); /* Register function; ret -1 = failure (unload) */
88 void (*mapi_unregister)(void); /* Unregister function. */
89 mapi_clist_av1 *mapi_command_list; /* List of commands to add. */
90 mapi_hlist_av1 *mapi_hook_list; /* List of hooks to add. */
91 mapi_hfn_list_av1 *mapi_hfn_list; /* List of hook_add_hook's to do */
92 const char *mapi_module_version; /* Module's version (freeform) */
212380e3
AC
93};
94
c63aeb44 95#define MAPI_ORIGIN_UNKNOWN 0 /* Unknown provenance (AV1 etc.) */
216d70e9
EM
96#define MAPI_ORIGIN_EXTENSION 1 /* Charybdis extension */
97#define MAPI_ORIGIN_CORE 2 /* Charybdis core module */
c63aeb44 98
8e9c6a75
EM
99struct mapi_mheader_av2
100{
101 int mapi_version; /* Module API version */
102 int (*mapi_register)(void); /* Register function; ret -1 = failure (unload) */
103 void (*mapi_unregister)(void); /* Unregister function. */
104 mapi_clist_av1 *mapi_command_list; /* List of commands to add. */
105 mapi_hlist_av1 *mapi_hook_list; /* List of hooks to add. */
106 mapi_hfn_list_av1 *mapi_hfn_list; /* List of hook_add_hook's to do */
107 mapi_cap_list_av2 *mapi_cap_list; /* List of CAPs to add */
108 const char *mapi_module_version; /* Module's version (freeform), replaced with ircd version if NULL */
109 const char *mapi_module_description; /* Module's description (freeform) */
110};
111
112#define DECLARE_MODULE_AV1(name, reg, unreg, cl, hl, hfnlist, v) \
212380e3 113 struct mapi_mheader_av1 _mheader = { MAPI_V1, reg, unreg, cl, hl, hfnlist, v}
212380e3 114
216d70e9
EM
115#define DECLARE_MODULE_AV2(name, reg, unreg, cl, hl, hfnlist, caplist, v, desc) \
116 struct mapi_mheader_av2 _mheader = { MAPI_V2, reg, unreg, cl, hl, hfnlist, caplist, v, desc}
8e9c6a75 117
212380e3
AC
118/* add a path */
119void mod_add_path(const char *path);
120void mod_clear_paths(void);
121
122/* load a module */
123extern void load_module(char *path);
124
125/* load all modules */
126extern void load_all_modules(int warn);
127
128/* load core modules */
129extern void load_core_modules(int);
130
131extern int unload_one_module(const char *, int);
216d70e9
EM
132extern int load_one_module(const char *, int, int);
133extern int load_a_module(const char *, int, int, int);
212380e3 134extern int findmodule_byname(const char *);
212380e3
AC
135extern void modules_init(void);
136
137#endif /* INCLUDED_modules_h */