2 * module.h Interface to the RADIUS module system.
4 * Version: $Id: modules.h,v 1.1 2010/08/14 04:13:52 faust Exp $
8 #ifndef RADIUS_MODULES_H
9 #define RADIUS_MODULES_H
11 //#include <freeradius/ident.h>
12 //RCSIDH(modules_h, "$Id: modules.h,v 1.1 2010/08/14 04:13:52 faust Exp $")
14 //#include "conffile.h"
17 typedef int (*packetmethod)(void *instance, REQUEST *request);
20 RLM_COMPONENT_AUTH = 0,
21 RLM_COMPONENT_AUTZ, /* 1 */
22 RLM_COMPONENT_PREACCT, /* 2 */
23 RLM_COMPONENT_ACCT, /* 3 */
24 RLM_COMPONENT_SESS, /* 4 */
25 RLM_COMPONENT_PRE_PROXY, /* 5 */
26 RLM_COMPONENT_POST_PROXY, /* 6 */
27 RLM_COMPONENT_POST_AUTH, /* 7 */
29 RLM_COMPONENT_RECV_COA, /* 8 */
30 RLM_COMPONENT_SEND_COA, /* 9 */
32 RLM_COMPONENT_COUNT /* 8 / 10: How many components are there */
35 #define RLM_TYPE_THREAD_SAFE (0 << 0)
36 #define RLM_TYPE_THREAD_UNSAFE (1 << 0)
37 #define RLM_TYPE_CHECK_CONFIG_SAFE (1 << 1)
38 #define RLM_TYPE_HUP_SAFE (1 << 2)
40 #define RLM_MODULE_MAGIC_NUMBER ((uint32_t) (0xf4ee4ad2))
41 #define RLM_MODULE_INIT RLM_MODULE_MAGIC_NUMBER
43 typedef struct module_t {
44 uint32_t magic; /* may later be opaque struct */
47 int (*instantiate)(CONF_SECTION *mod_cs, void **instance);
48 int (*detach)(void *instance);
49 packetmethod methods[RLM_COMPONENT_COUNT];
53 RLM_MODULE_REJECT, /* immediately reject the request */
54 RLM_MODULE_FAIL, /* module failed, don't reply */
55 RLM_MODULE_OK, /* the module is OK, continue */
56 RLM_MODULE_HANDLED, /* the module handled the request, so stop. */
57 RLM_MODULE_INVALID, /* the module considers the request invalid. */
58 RLM_MODULE_USERLOCK, /* reject the request (user is locked out) */
59 RLM_MODULE_NOTFOUND, /* user not found */
60 RLM_MODULE_NOOP, /* module succeeded without doing anything */
61 RLM_MODULE_UPDATED, /* OK (pairs modified) */
62 RLM_MODULE_NUMCODES /* How many return codes there are */
65 int setup_modules(int, CONF_SECTION *);
66 int detach_modules(void);
67 int module_hup(CONF_SECTION *modules);
68 int module_authorize(int type, REQUEST *request);
69 int module_authenticate(int type, REQUEST *request);
70 int module_preacct(REQUEST *request);
71 int module_accounting(int type, REQUEST *request);
72 int module_checksimul(int type, REQUEST *request, int maxsimul);
73 int module_pre_proxy(int type, REQUEST *request);
74 int module_post_proxy(int type, REQUEST *request);
75 int module_post_auth(int type, REQUEST *request);
77 int module_recv_coa(int type, REQUEST *request);
78 int module_send_coa(int type, REQUEST *request);
79 #define MODULE_NULL_COA_FUNCS ,NULL,NULL
81 #define MODULE_NULL_COA_FUNCS
83 int indexed_modcall(int comp, int idx, REQUEST *request);
86 * For now, these are strongly tied together.
88 int virtual_servers_load(CONF_SECTION *config);
89 void virtual_servers_free(time_t when);
92 #endif /* RADIUS_MODULES_H */