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