1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef FR_MODCALL_H
#define FR_MODCALL_H
/* modcall.h: the outside interface to the module-calling tree. Includes
* functions to build the tree from the config file, and to call it by
* feeding it REQUESTs.
*
* Version: $Id$ */
#include <freeradius-devel/conffile.h> /* Need CONF_* definitions */
#include <freeradius-devel/modules.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* For each authorize/authtype/etc, we have an ordered
* tree of instances to call. This data structure keeps track
* of that order.
*/
typedef struct modcallable modcallable;
int modcall_fixup_update(vp_map_t *map, void *ctx);
int modcall(rlm_components_t component, modcallable *c, REQUEST *request);
/* Parse a module-method's config section (e.g. authorize{}) into a tree that
* may be called with modcall() */
modcallable *compile_modgroup(modcallable *parent,
rlm_components_t component, CONF_SECTION *cs);
/* Create a single modcallable node that references a module instance. This
* may be a CONF_SECTION containing action specifiers like "notfound = return"
* or a simple CONF_PAIR, in which case the default actions are used. */
modcallable *compile_modsingle(TALLOC_CTX *ctx, modcallable **parent, rlm_components_t component, CONF_ITEM *ci,
char const **modname);
/*
* Do the second pass on compiling the modules.
*/
bool modcall_pass2(modcallable *mc);
/* Add an entry to the end of a modgroup */
void add_to_modcallable(modcallable *parent, modcallable *this);
void modcall_debug(modcallable *mc, int depth);
int modcall_pass2_condition(fr_cond_t *c);
#ifdef __cplusplus
}
#endif
#endif
|