Made listener_print be CONST
[freeradius.git] / src / include / radiusd.h
1 #ifndef RADIUSD_H
2 #define RADIUSD_H
3 /*
4  * radiusd.h    Structures, prototypes and global variables
5  *              for the FreeRADIUS server.
6  *
7  * Version:     $Id$
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  *
23  * Copyright 1999,2000,2002,2003,2004,2005,2006,2007,2008  The FreeRADIUS server project
24  *
25  */
26
27 #include <freeradius-devel/ident.h>
28 RCSIDH(radiusd_h, "$Id$")
29
30 #include <freeradius-devel/libradius.h>
31 #include <freeradius-devel/radpaths.h>
32 #include <freeradius-devel/conf.h>
33 #include <freeradius-devel/conffile.h>
34 #include <freeradius-devel/event.h>
35
36 typedef struct auth_req REQUEST;
37
38 #ifdef HAVE_PTHREAD_H
39 #include        <pthread.h>
40 #endif
41
42 #ifndef NDEBUG
43 #define REQUEST_MAGIC (0xdeadbeef)
44 #endif
45
46 /*
47  *      New defines for minimizing the size of the server, to strip
48  *      out functionality.  In order to ensure that people don't have
49  *      to re-run "configure", after "cvs update", we play some
50  *      special games with the defines.  i.e. any top-level "configure"
51  *      option should set both WITH_FOO and WITHOUT_FOO.  After a few
52  *      weeks, the WITHOUT_FOO can be deleted from the configure script.
53  */
54 #ifndef WITHOUT_PROXY
55 #define WITH_PROXY (1)
56 #endif
57
58 #ifndef WITHOUT_DETAIL
59 #define WITH_DETAIL (1)
60 #endif
61
62 #ifndef WITHOUT_SESSION_MGMT
63 #define WITH_SESSION_MGMT (1)
64 #endif
65
66 #ifndef WITHOUT_UNLANG
67 #define WITH_UNLANG (1)
68 #endif
69
70 #ifndef WITHOUT_ACCOUNTING
71 #define WITH_ACCOUNTING (1)
72 #else
73 #ifdef WITH_SESSION_MGMT
74 #error WITH_SESSION_MGMT is defined, but WITH_ACCOUNTING is not.  Session management requires accounting.
75 #endif
76 #ifdef WITH_DETAIL
77 #error WITH_DETAIL is defined, but WITH_ACCOUNTING is not.  Detail file reading requires accounting.
78 #endif
79 #endif
80
81 #ifndef WITHOUT_DYNAMIC_CLIENTS
82 #define WITH_DYNAMIC_CLIENTS (1)
83 #endif
84
85 #ifndef WITHOUT_STATS
86 #define WITH_STATS
87 #endif
88
89 #ifndef WITHOUT_COMMAND_SOCKET
90 #ifdef HAVE_SYS_UN_H
91 #define WITH_COMMAND_SOCKET (1)
92 #else
93 #define WITHOUT_COMMAND_SOCKET (1)
94 #endif
95 #endif
96
97 #ifndef WITHOUT_COA
98 #define WITH_COA (1)
99 #ifndef WITH_PROXY
100 #error WITH_COA requires WITH_PROXY
101 #endif
102 #endif
103
104 #include <freeradius-devel/stats.h>
105 #include <freeradius-devel/realms.h>
106
107
108 /*
109  *      See util.c
110  */
111 typedef struct request_data_t request_data_t;
112
113 typedef struct radclient {
114         fr_ipaddr_t             ipaddr;
115         int                     prefix;
116         char                    *longname;
117         char                    *secret;
118         char                    *shortname;
119         int                     message_authenticator;
120         char                    *nastype;
121         char                    *login;
122         char                    *password;
123         char                    *server;
124         int                     number; /* internal use only */
125         const CONF_SECTION      *cs;
126 #ifdef WITH_STATS
127         fr_stats_t              *auth;
128 #ifdef WITH_ACCOUNTING
129         fr_stats_t              *acct;
130 #endif
131 #endif
132
133 #ifdef WITH_DYNAMIC_CLIENTS
134         int                     lifetime;
135         int                     dynamic; /* was dynamically defined */
136         time_t                  created;
137         time_t                  last_new_client;
138         char                    *client_server;
139         int                     rate_limit;
140 #endif
141
142 #ifdef WITH_COA
143         char                    *coa_name;
144         home_server             *coa_server;
145         home_pool_t             *coa_pool;
146 #endif
147 } RADCLIENT;
148
149 /*
150  *      Types of listeners.
151  *
152  *      Ordered by priority!
153  */
154 typedef enum RAD_LISTEN_TYPE {
155         RAD_LISTEN_NONE = 0,
156 #ifdef WITH_PROXY
157         RAD_LISTEN_PROXY,
158 #endif
159         RAD_LISTEN_AUTH,
160 #ifdef WITH_ACCOUNTING
161         RAD_LISTEN_ACCT,
162 #endif
163 #ifdef WITH_DETAIL
164         RAD_LISTEN_DETAIL,
165 #endif
166 #ifdef WITH_VMPS
167         RAD_LISTEN_VQP,
168 #endif
169 #ifdef WITH_DHCP
170         RAD_LISTEN_DHCP,
171 #endif
172 #ifdef WITH_COMMAND_SOCKET
173         RAD_LISTEN_COMMAND,
174 #endif
175 #ifdef WITH_COA
176         RAD_LISTEN_COA,
177 #endif
178         RAD_LISTEN_MAX
179 } RAD_LISTEN_TYPE;
180
181
182 /*
183  *      For listening on multiple IP's and ports.
184  */
185 typedef struct rad_listen_t rad_listen_t;
186 typedef         void (*radlog_func_t)(int, int, REQUEST *, const char *, ...);
187
188 #define REQUEST_DATA_REGEX (0xadbeef00)
189 #define REQUEST_MAX_REGEX (8)
190
191 struct auth_req {
192 #ifndef NDEBUG
193         uint32_t                magic; /* for debugging only */
194 #endif
195         RADIUS_PACKET           *packet;
196 #ifdef WITH_PROXY
197         RADIUS_PACKET           *proxy;
198 #endif
199         RADIUS_PACKET           *reply;
200 #ifdef WITH_PROXY
201         RADIUS_PACKET           *proxy_reply;
202 #endif
203         VALUE_PAIR              *config_items;
204         VALUE_PAIR              *username;
205         VALUE_PAIR              *password;
206
207         struct main_config_t    *root;
208
209         request_data_t          *data;
210         RADCLIENT               *client;
211 #ifdef HAVE_PTHREAD_H
212         pthread_t               child_pid;
213 #endif
214         time_t                  timestamp;
215         unsigned int            number; /* internal server number */
216
217         rad_listen_t            *listener;
218 #ifdef WITH_PROXY
219         rad_listen_t            *proxy_listener;
220 #endif
221
222
223         int                     simul_max; /* see modcall.c && xlat.c */
224 #ifdef WITH_SESSION_MGMT
225         int                     simul_count;
226         int                     simul_mpp; /* WEIRD: 1 is false, 2 is true */
227 #endif
228
229         int                     options; /* miscellanous options */
230         const char              *module; /* for debugging unresponsive children */
231         const char              *component; /* ditto */
232
233         struct timeval          received;
234         struct timeval          when;           /* to wake up */
235         int                     delay;
236
237         int                     master_state;
238         int                     child_state;
239         RAD_LISTEN_TYPE         priority;
240
241         fr_event_t              *ev;
242         struct timeval          next_when;
243         fr_event_callback_t     next_callback;
244
245         int                     in_request_hash;
246 #ifdef WITH_PROXY
247         int                     in_proxy_hash;
248
249         home_server             *home_server;
250         home_pool_t             *home_pool; /* for dynamic failover */
251
252         struct timeval          proxy_when;
253
254         int                     num_proxied_requests;
255         int                     num_proxied_responses;
256 #endif
257
258         const char              *server;
259         REQUEST                 *parent;
260         radlog_func_t           radlog; /* logging function, if set */
261 #ifdef WITH_COA
262         REQUEST                 *coa;
263         int                     num_coa_requests;
264 #endif
265 };                              /* REQUEST typedef */
266
267 #define RAD_REQUEST_OPTION_NONE            (0)
268 #define RAD_REQUEST_OPTION_DEBUG           (1)
269 #define RAD_REQUEST_OPTION_DEBUG2          (2)
270 #define RAD_REQUEST_OPTION_DEBUG3          (3)
271 #define RAD_REQUEST_OPTION_DEBUG4          (4)
272
273 #define REQUEST_ACTIVE          (1)
274 #define REQUEST_STOP_PROCESSING (2)
275 #define REQUEST_COUNTED         (3)
276
277 #define REQUEST_QUEUED          (1)
278 #define REQUEST_RUNNING         (2)
279 #define REQUEST_PROXIED         (3)
280 #define REQUEST_REJECT_DELAY    (4)
281 #define REQUEST_CLEANUP_DELAY   (5)
282 #define REQUEST_DONE            (6)
283
284 /*
285  *  Function handler for requests.
286  */
287 typedef         int (*RAD_REQUEST_FUNP)(REQUEST *);
288
289 typedef struct radclient_list RADCLIENT_LIST;
290
291 typedef struct pair_list {
292         const char              *name;
293         VALUE_PAIR              *check;
294         VALUE_PAIR              *reply;
295         int                     lineno;
296         int                     order;
297         struct pair_list        *next;
298         struct pair_list        *lastdefault;
299 } PAIR_LIST;
300
301
302 typedef int (*rad_listen_recv_t)(rad_listen_t *, RAD_REQUEST_FUNP *, REQUEST **);
303 typedef int (*rad_listen_send_t)(rad_listen_t *, REQUEST *);
304 typedef int (*rad_listen_print_t)(const rad_listen_t *, char *, size_t);
305 typedef int (*rad_listen_encode_t)(rad_listen_t *, REQUEST *);
306 typedef int (*rad_listen_decode_t)(rad_listen_t *, REQUEST *);
307
308 struct rad_listen_t {
309         struct rad_listen_t *next; /* should be rbtree stuff */
310
311         /*
312          *      For normal sockets.
313          */
314         RAD_LISTEN_TYPE type;
315         int             fd;
316         const char      *server;
317         int             status;
318
319         rad_listen_recv_t recv;
320         rad_listen_send_t send;
321         rad_listen_encode_t encode;
322         rad_listen_decode_t decode;
323         rad_listen_print_t print;
324
325         void            *data;
326
327 #ifdef WITH_STATS
328         fr_stats_t      stats;
329 #endif
330 };
331
332 #define RAD_LISTEN_STATUS_INIT   (0)
333 #define RAD_LISTEN_STATUS_KNOWN  (1)
334 #define RAD_LISTEN_STATUS_CLOSED (2)
335 #define RAD_LISTEN_STATUS_FINISH (3)
336
337 typedef enum radlog_dest_t {
338   RADLOG_STDOUT = 0,
339   RADLOG_FILES,
340   RADLOG_SYSLOG,
341   RADLOG_STDERR,
342   RADLOG_NULL,
343   RADLOG_NUM_DEST
344 } radlog_dest_t;
345
346 typedef struct main_config_t {
347         struct main_config *next;
348         int             refcount;
349         fr_ipaddr_t     myip;   /* from the command-line only */
350         int             port;   /* from the command-line only */
351         int             log_auth;
352         int             log_auth_badpass;
353         int             log_auth_goodpass;
354         int             allow_core_dumps;
355         int             debug_level;
356         int             proxy_requests;
357         int             reject_delay;
358         int             status_server;
359         int             max_request_time;
360         int             cleanup_delay;
361         int             max_requests;
362 #ifdef DELETE_BLOCKED_REQUESTS
363         int             kill_unresponsive_children;
364 #endif
365         char            *log_file;
366         char            *checkrad;
367         const char      *pid_file;
368         rad_listen_t    *listen;
369         int             syslog_facility;
370         int             radlog_fd;
371         radlog_dest_t   radlog_dest;
372         CONF_SECTION    *config;
373         const char      *name;
374         const char      *auth_badpass_msg;
375         const char      *auth_goodpass_msg;
376 } MAIN_CONFIG_T;
377
378 #define DEBUG   if(debug_flag)log_debug
379 #define DEBUG2  if (debug_flag > 1)log_debug
380 #define DEBUG3  if (debug_flag > 2)log_debug
381 #define DEBUG4  if (debug_flag > 3)log_debug
382
383 #if __GNUC__ >= 3
384 #define RDEBUG(fmt, ...)   if(request && request->radlog) request->radlog(L_DBG, 1, request, fmt, ## __VA_ARGS__)
385 #define RDEBUG2(fmt, ...)  if(request && request->radlog) request->radlog(L_DBG, 2, request, fmt, ## __VA_ARGS__)
386 #define RDEBUG3(fmt, ...)  if(request && request->radlog) request->radlog(L_DBG, 3, request, fmt, ## __VA_ARGS__)
387 #define RDEBUG4(fmt, ...)  if(request && request->radlog) request->radlog(L_DBG, 4, request, fmt, ## __VA_ARGS__)
388 #else
389 #define RDEBUG  DEBUG
390 #define RDEBUG2 DEBUG2
391 #define RDEBUG3 DEBUG3
392 #define RDEBUG4 DEBUG4
393 #endif
394
395 #define SECONDS_PER_DAY         86400
396 #define MAX_REQUEST_TIME        30
397 #define CLEANUP_DELAY           5
398 #define MAX_REQUESTS            256
399 #define RETRY_DELAY             5
400 #define RETRY_COUNT             3
401 #define DEAD_TIME               120
402
403 #define L_DBG                   1
404 #define L_AUTH                  2
405 #define L_INFO                  3
406 #define L_ERR                   4
407 #define L_PROXY                 5
408 #define L_ACCT                  6
409 #define L_CONS                  128
410
411 #ifndef FALSE
412 #define FALSE 0
413 #endif
414 #ifndef TRUE
415 /*
416  *      This definition of true as NOT false is definitive. :) Making
417  *      it '1' can cause problems on stupid platforms.  See articles
418  *      on C portability for more information.
419  */
420 #define TRUE (!FALSE)
421 #endif
422
423 /* for paircompare_register */
424 typedef int (*RAD_COMPARE_FUNC)(void *instance, REQUEST *,VALUE_PAIR *, VALUE_PAIR *, VALUE_PAIR *, VALUE_PAIR **);
425
426 typedef enum request_fail_t {
427   REQUEST_FAIL_UNKNOWN = 0,
428   REQUEST_FAIL_NO_THREADS,      /* no threads to handle it */
429   REQUEST_FAIL_DECODE,          /* rad_decode didn't like it */
430   REQUEST_FAIL_PROXY,           /* call to proxy modules failed */
431   REQUEST_FAIL_PROXY_SEND,      /* proxy_send didn't like it */
432   REQUEST_FAIL_NO_RESPONSE,     /* we weren't told to respond, so we reject */
433   REQUEST_FAIL_HOME_SERVER,     /* the home server didn't respond */
434   REQUEST_FAIL_HOME_SERVER2,    /* another case of the above */
435   REQUEST_FAIL_HOME_SERVER3,    /* another case of the above */
436   REQUEST_FAIL_NORMAL_REJECT,   /* authentication failure */
437   REQUEST_FAIL_SERVER_TIMEOUT   /* the server took too long to process the request */
438 } request_fail_t;
439
440 /*
441  *      Global variables.
442  *
443  *      We really shouldn't have this many.
444  */
445 extern const char       *progname;
446 extern int              debug_flag;
447 extern const char       *radacct_dir;
448 extern const char       *radlog_dir;
449 extern const char       *radlib_dir;
450 extern const char       *radius_dir;
451 extern const char       *radius_libdir;
452 extern uint32_t         expiration_seconds;
453 extern int              log_stripped_names;
454 extern int              log_auth_detail;
455 extern const char      *radiusd_version;
456 void                    radius_signal_self(int flag);
457
458 #define RADIUS_SIGNAL_SELF_NONE         (0)
459 #define RADIUS_SIGNAL_SELF_HUP          (1 << 0)
460 #define RADIUS_SIGNAL_SELF_TERM         (1 << 1)
461 #define RADIUS_SIGNAL_SELF_EXIT         (1 << 2)
462 #define RADIUS_SIGNAL_SELF_DETAIL       (1 << 3)
463 #define RADIUS_SIGNAL_SELF_NEW_FD       (1 << 4)
464 #define RADIUS_SIGNAL_SELF_MAX          (1 << 5)
465
466
467 /*
468  *      Function prototypes.
469  */
470
471 /* acct.c */
472 int             rad_accounting(REQUEST *);
473
474 /* session.c */
475 int             rad_check_ts(uint32_t nasaddr, unsigned int port, const char *user,
476                              const char *sessionid);
477 int             session_zap(REQUEST *request, uint32_t nasaddr,
478                             unsigned int port, const char *user,
479                             const char *sessionid, uint32_t cliaddr,
480                             char proto,int session_time);
481
482 /* radiusd.c */
483 #undef debug_pair
484 void            debug_pair(VALUE_PAIR *);
485 void            debug_pair_list(VALUE_PAIR *);
486 int             log_err (char *);
487
488 /* util.c */
489 void (*reset_signal(int signo, void (*func)(int)))(int);
490 void            request_free(REQUEST **request);
491 int             rad_mkdir(char *directory, int mode);
492 int             rad_checkfilename(const char *filename);
493 void            *rad_malloc(size_t size); /* calls exit(1) on error! */
494 REQUEST         *request_alloc(void);
495 REQUEST         *request_alloc_fake(REQUEST *oldreq);
496 REQUEST         *request_alloc_coa(REQUEST *request);
497 int             request_data_add(REQUEST *request,
498                                  void *unique_ptr, int unique_int,
499                                  void *opaque, void (*free_opaque)(void *));
500 void            *request_data_get(REQUEST *request,
501                                   void *unique_ptr, int unique_int);
502 void            *request_data_reference(REQUEST *request,
503                                   void *unique_ptr, int unique_int);
504 int             rad_copy_string(char *dst, const char *src);
505 int             rad_copy_variable(char *dst, const char *from);
506
507 /* client.c */
508 RADCLIENT_LIST  *clients_init(void);
509 void            clients_free(RADCLIENT_LIST *clients);
510 RADCLIENT_LIST  *clients_parse_section(CONF_SECTION *section);
511 void            client_free(RADCLIENT *client);
512 int             client_add(RADCLIENT_LIST *clients, RADCLIENT *client);
513 #ifdef WITH_DYNAMIC_CLIENTS
514 void            client_delete(RADCLIENT_LIST *clients, RADCLIENT *client);
515 RADCLIENT       *client_create(RADCLIENT_LIST *clients, REQUEST *request);
516 #endif
517 RADCLIENT       *client_find(const RADCLIENT_LIST *clients,
518                              const fr_ipaddr_t *ipaddr);
519 RADCLIENT       *client_findbynumber(const RADCLIENT_LIST *clients,
520                                      int number);
521 RADCLIENT       *client_find_old(const fr_ipaddr_t *ipaddr);
522 int             client_validate(RADCLIENT_LIST *clients, RADCLIENT *master,
523                                 RADCLIENT *c);
524 RADCLIENT       *client_read(const char *filename, int in_server, int flag);
525
526
527 /* files.c */
528 int             pairlist_read(const char *file, PAIR_LIST **list, int complain);
529 void            pairlist_free(PAIR_LIST **);
530
531 /* version.c */
532 void            version(void);
533
534 /* log.c */
535 int             vradlog(int, const char *, va_list ap);
536 int             radlog(int, const char *, ...)
537 #ifdef __GNUC__
538                 __attribute__ ((format (printf, 2, 3)))
539 #endif
540 ;
541 int             log_debug(const char *, ...)
542 #ifdef __GNUC__
543                 __attribute__ ((format (printf, 1, 2)))
544 #endif
545 ;
546 void            vp_listdebug(VALUE_PAIR *vp);
547 void radlog_request(int lvl, int priority, REQUEST *request, const char *msg, ...)
548 #ifdef __GNUC__
549                 __attribute__ ((format (printf, 4, 5)))
550 #endif
551 ;
552
553 /* auth.c */
554 char    *auth_name(char *buf, size_t buflen, REQUEST *request, int do_cli);
555 int             rad_authenticate (REQUEST *);
556 int             rad_postauth(REQUEST *);
557
558 /* exec.c */
559 int             radius_exec_program(const char *,  REQUEST *, int,
560                                     char *user_msg, int msg_len,
561                                     VALUE_PAIR *input_pairs,
562                                     VALUE_PAIR **output_pairs,
563                                         int shell_escape);
564
565 /* timestr.c */
566 int             timestr_match(char *, time_t);
567
568 /* valuepair.c */
569 int             paircompare_register(int attr, int otherattr,
570                                      RAD_COMPARE_FUNC func,
571                                      void *instance);
572 void            paircompare_unregister(int attr, RAD_COMPARE_FUNC func);
573 int             paircompare(REQUEST *req, VALUE_PAIR *request, VALUE_PAIR *check,
574                             VALUE_PAIR **reply);
575 void            pairxlatmove(REQUEST *, VALUE_PAIR **to, VALUE_PAIR **from);
576 int radius_compare_vps(REQUEST *request, VALUE_PAIR *check, VALUE_PAIR *vp);
577 int radius_callback_compare(REQUEST *req, VALUE_PAIR *request,
578                             VALUE_PAIR *check, VALUE_PAIR *check_pairs,
579                             VALUE_PAIR **reply_pairs);
580 int radius_find_compare(int attribute);
581 VALUE_PAIR      *radius_paircreate(REQUEST *request, VALUE_PAIR **vps,
582                                   int attribute, int type);
583 VALUE_PAIR *radius_pairmake(REQUEST *request, VALUE_PAIR **vps,
584                             const char *attribute, const char *value,
585                             int operator);
586
587 /* xlat.c */
588 typedef size_t (*RADIUS_ESCAPE_STRING)(char *out, size_t outlen, const char *in);
589
590 int            radius_xlat(char * out, int outlen, const char *fmt,
591                            REQUEST * request, RADIUS_ESCAPE_STRING func);
592 typedef size_t (*RAD_XLAT_FUNC)(void *instance, REQUEST *, char *, char *, size_t, RADIUS_ESCAPE_STRING func);
593 int             xlat_register(const char *module, RAD_XLAT_FUNC func,
594                               void *instance);
595 void            xlat_unregister(const char *module, RAD_XLAT_FUNC func);
596 void            xlat_free(void);
597
598 /* threads.c */
599 extern          int thread_pool_init(CONF_SECTION *cs, int *spawn_flag);
600 extern          int thread_pool_addrequest(REQUEST *, RAD_REQUEST_FUNP);
601 extern          pid_t rad_fork(void);
602 extern          pid_t rad_waitpid(pid_t pid, int *status);
603 extern          int total_active_threads(void);
604 extern          void thread_pool_lock(void);
605 extern          void thread_pool_unlock(void);
606 extern          void thread_pool_queue_stats(int *array);
607
608 #ifndef HAVE_PTHREAD_H
609 #define rad_fork(n) fork()
610 #define rad_waitpid(a,b) waitpid(a,b, 0)
611 #endif
612
613 /* mainconfig.c */
614 /* Define a global config structure */
615 extern struct main_config_t mainconfig;
616
617 int read_mainconfig(int reload);
618 int free_mainconfig(void);
619 void hup_mainconfig(void);
620 void fr_suid_down(void);
621 void fr_suid_up(void);
622 void fr_suid_down_permanent(void);
623
624 /* listen.c */
625 void listen_free(rad_listen_t **head);
626 int listen_init(CONF_SECTION *cs, rad_listen_t **head);
627 rad_listen_t *proxy_new_listener(fr_ipaddr_t *ipaddr, int exists);
628 RADCLIENT *client_listener_find(const rad_listen_t *listener,
629                                 const fr_ipaddr_t *ipaddr, int src_port);
630 #ifdef WITH_STATS
631 RADCLIENT_LIST *listener_find_client_list(const fr_ipaddr_t *ipaddr,
632                                           int port);
633 rad_listen_t *listener_find_byipaddr(const fr_ipaddr_t *ipaddr, int port);
634 #endif
635
636 /* event.c */
637 int radius_event_init(CONF_SECTION *cs, int spawn_flag);
638 void radius_event_free(void);
639 int radius_event_process(void);
640 void radius_handle_request(REQUEST *request, RAD_REQUEST_FUNP fun);
641 int received_request(rad_listen_t *listener,
642                      RADIUS_PACKET *packet, REQUEST **prequest,
643                      RADCLIENT *client);
644 REQUEST *received_proxy_response(RADIUS_PACKET *packet);
645 void event_new_fd(rad_listen_t *listener);
646
647 /* evaluate.c */
648 int radius_evaluate_condition(REQUEST *request, int modreturn, int depth,
649                               const char **ptr, int evaluate_it, int *presult);
650 int radius_update_attrlist(REQUEST *request, CONF_SECTION *cs,
651                            VALUE_PAIR *input_vps, const char *name);
652 void radius_pairmove(REQUEST *request, VALUE_PAIR **to, VALUE_PAIR *from);
653 #endif /*RADIUSD_H*/