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